diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS deleted file mode 100644 index c58980fb3..000000000 --- a/.github/CODEOWNERS +++ /dev/null @@ -1 +0,0 @@ -* @StephenHodgson \ No newline at end of file diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml deleted file mode 100644 index f2a18d6b8..000000000 --- a/.github/FUNDING.yml +++ /dev/null @@ -1,6 +0,0 @@ -# These are supported funding model platforms - -github: [StephenHodgson,SimonDarksideJ,FejZa] # [XRTK, SimonDarksideJ, StephenHodgson] -ko_fi: xrtk_team -issuehunt: # simondarksidej -custom: http://paypal.me/XRTK diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index 262080005..000000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,46 +0,0 @@ ---- -name: Bug report -about: Create a report to identify a potential issue -title: '' -labels: Bug -assignees: '' ---- - -# XRTK - Mixed Reality Toolkit Bug Report - -## Describe the bug - - -## To Reproduce - - -1. Go to '...' -2. Click on '....' -3. Scroll down to '....' -4. See error - -## Expected behavior - - -## Actual behavior - - -## Screenshots - - -## Your Setup - - -- **Operation System:** - - [ ] Windows - - [ ] MacOs - - [ ] Linux - - [ ] Other -- **Unity Version:** 2019.4.19f -- **XRTK Packages** - - [ ] com.xrtk.core 0.2.0 - - [ ] com.xrtk.sdk 0.2.0 - - -## Additional context - diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index 1f2564093..000000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -name: Feature request -about: Suggest an idea for the XRTK -title: '' -labels: Feature Request -assignees: '' ---- - -# XRTK - Mixed Reality Toolkit Feature Request - -## Is your feature request related to a problem? Please describe - - - -## How would you classify your suggestion - - -- New platform support -- Usability / Configuration -- Architecture / Services - -## Describe the solution you'd like - - -## Describe alternatives you've considered - - -## Additional context - diff --git a/.github/ISSUE_TEMPLATE/request_for_information.md b/.github/ISSUE_TEMPLATE/request_for_information.md deleted file mode 100644 index d84258cb0..000000000 --- a/.github/ISSUE_TEMPLATE/request_for_information.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -name: Request for Information -about: Not sure how to do something, just ask. -title: '' -labels: Question -assignees: '' ---- - -# XRTK - Mixed Reality Toolkit Request for Information - - - -## What are you trying to achieve? - - - -## What have you already tried - - - -## What material have you referenced that didn't answer your question - - diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md deleted file mode 100644 index d3ae57179..000000000 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ /dev/null @@ -1,19 +0,0 @@ -# XRTK - Mixed Reality Toolkit Pull Request - -## Overview - - -## Changes - - -- Fixes: - -## Breaking Changes - - -- Breaks - -## Related Submodule Changes - - -- URL diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index a3406b38f..000000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,93 +0,0 @@ -name: XRTK CI - -on: - push: - branches: - - 'main' - pull_request: - branches: - - '*' - - # Allows you to run this workflow manually from the Actions tab - workflow_dispatch: - -concurrency: - group: ${{ github.ref }} - cancel-in-progress: true - -jobs: - validate-editor-installation: - runs-on: ${{ matrix.os }} - strategy: - fail-fast: false - matrix: - include: - - os: windows - - os: macos - - steps: - - uses: actions/checkout@v2 - with: - clean: true - - - name: validate editor installation - uses: xrtk/unity-validate@main - - build: - needs: validate-editor-installation - runs-on: ${{ matrix.os }} - strategy: - matrix: - include: - - os: windows - build-target: Android - - os: windows - build-target: StandaloneWindows64 - - os: macos - build-target: Android - - steps: - - name: clean git - run: | - if (Test-Path -Path '.git') { - Remove-Item '.git' -Recurse -Force - } - - if (Test-Path -Path 'Submodules') { - Remove-Item 'Submodules' -Recurse -Force - } - shell: pwsh - - - uses: actions/checkout@v2 - with: - submodules: recursive - clean: true - - - name: Unity Build (${{ matrix.build-target }}) - uses: xrtk/unity-build@main - with: - build-target: ${{ matrix.build-target }} - - build-success: - if: ${{ github.ref != 'refs/heads/main' || github.base_ref != 'main' }} - needs: build - runs-on: ubuntu-latest - steps: - - run: echo success! - - publish: - if: ${{ github.ref == 'refs/heads/main' || github.base_ref == 'main' }} - needs: build - runs-on: ubuntu-latest - - steps: - - uses: xrtk/upm-release@main - name: publish upm package - with: - upm-username: 'xrtk-build-bot' - upm-email: 'xrtk-build-bot@xrtk.io' - upm-server-address: 'http://upm.xrtk.io:4873' - upm-auth-token: '${{ secrets.UPM_CREDENTIALS }}' - github-username: 'XRTK-Build-Bot' - github-pat: '${{ secrets.GIT_TOKEN }}' - github-token: '${{ secrets.GITHUB_TOKEN }}' diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 73c25215e..000000000 --- a/.gitignore +++ /dev/null @@ -1,89 +0,0 @@ -# =============== # -# Unity generated # -# =============== # -[Tt]emp/ -[Oo]bj/ -[Bb]in/ -[Bb]uilds/ -[Uu]serSettings/ -[Bb]uild/ -[Ll]ibrary/ -[Aa]pp/ -[Aa]pp.meta -UserSettings/ -UWP/ -WindowsStoreApp/ -UnityGenerated/ -UnityPackageManager/ -.out/ -.gradle/ -project.json -project.lock.json -*.package -TextMesh Pro.meta -TextMesh Pro/ -UIElementsSchema/ -*packages-lock.json - -# ============ # -# Certificates # -# ============ # -*.cert -*.privkey -*.pfx -*.pfx.meta - -# ===================================== # -# Visual Studio / MonoDevelop generated # -# ===================================== # -.vs/ -ExportedObj/ -obj/ -*.svd -*.userprefs -/*.csproj -*.csproj -*.pidb -*.suo -/*.sln -*.sln -*.user -*.unityproj -*.ipch -*.opensdf -*.sdf -*.tlog -*.log -*.idb -*.opendb -*.vsconfig - -# ============================ # -# Visual Studio Code Generated # -# ============================ # -.vscode/ - -# ========================= # -# Jetbrains Rider Generated # -# ========================= # -.idea/ -_ReSharper.Caches - -# ===================== # -# System Specific List # -# ===================== # -.DS_Store - -# ===================== # -# Project Specific List # -# ===================== # -artifacts/ -ThirdParty/ -ThirdParty.meta ---Version/ -XRTK-Core/Assets/MagicLeap/ -XRTK-Core/Assets/MagicLeap.meta -XRTK-Core/Assets/Plugins/Lumin/Editor/ -XRTK-Core/Assets/Plugins/Lumin/Editor.meta -XRTK-Core/Assets/StreamingAssets/ -XRTK-Core/Assets/StreamingAssets.meta diff --git a/.gitmodules b/.gitmodules deleted file mode 100644 index d1cfe2530..000000000 --- a/.gitmodules +++ /dev/null @@ -1,27 +0,0 @@ -[submodule "Submodules/Examples"] - path = Submodules/Examples - url = https://github.com/XRTK/Examples.git -[submodule "Submodules/Lumin"] - path = Submodules/Lumin - url = https://github.com/XRTK/Lumin.git -[submodule "Submodules/Oculus"] - path = Submodules/Oculus - url = https://github.com/XRTK/Oculus.git -[submodule "Submodules/SDK"] - path = Submodules/SDK - url = https://github.com/XRTK/SDK.git -[submodule "Submodules/Ultraleap"] - path = Submodules/Ultraleap - url = https://github.com/XRTK/Ultraleap.git -[submodule "Submodules/WindowsMixedReality"] - path = Submodules/WindowsMixedReality - url = https://github.com/XRTK/WindowsMixedReality.git -[submodule "Submodules/glTF"] - path = Submodules/glTF - url = https://github.com/XRTK/glTF.git -[submodule "Submodules/SpatialPersistence"] - path = Submodules/SpatialPersistence - url = https://github.com/XRTK/SpatialPersistence.git -[submodule "Submodules/SpatialPersistence.ASA"] - path = Submodules/SpatialPersistence.ASA - url = https://github.com/XRTK/SpatialPersistence.ASA.git \ No newline at end of file diff --git a/XRTK-Core/Packages/com.xrtk.core/CHANGELOG.md b/CHANGELOG.md similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/CHANGELOG.md rename to CHANGELOG.md diff --git a/XRTK-Core/Packages/com.xrtk.core/CHANGELOG.md.meta b/CHANGELOG.md.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/CHANGELOG.md.meta rename to CHANGELOG.md.meta diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md deleted file mode 100644 index 07ea2f9b0..000000000 --- a/CODE_OF_CONDUCT.md +++ /dev/null @@ -1,76 +0,0 @@ -# Contributor Covenant Code of Conduct - -## Our Pledge - -In the interest of fostering an open and welcoming environment, we as -contributors and maintainers pledge to making participation in our project and -our community a harassment-free experience for everyone, regardless of age, body -size, disability, ethnicity, sex characteristics, gender identity and expression, -level of experience, education, socio-economic status, nationality, personal -appearance, race, religion, or sexual identity and orientation. - -## Our Standards - -Examples of behavior that contributes to creating a positive environment -include: - -* Using welcoming and inclusive language -* Being respectful of differing viewpoints and experiences -* Gracefully accepting constructive criticism -* Focusing on what is best for the community -* Showing empathy towards other community members - -Examples of unacceptable behavior by participants include: - -* The use of sexualized language or imagery and unwelcome sexual attention or - advances -* Trolling, insulting/derogatory comments, and personal or political attacks -* Public or private harassment -* Publishing others' private information, such as a physical or electronic - address, without explicit permission -* Other conduct which could reasonably be considered inappropriate in a - professional setting - -## Our Responsibilities - -Project maintainers are responsible for clarifying the standards of acceptable -behavior and are expected to take appropriate and fair corrective action in -response to any instances of unacceptable behavior. - -Project maintainers have the right and responsibility to remove, edit, or -reject comments, commits, code, wiki edits, issues, and other contributions -that are not aligned to this Code of Conduct, or to ban temporarily or -permanently any contributor for other behaviors that they deem inappropriate, -threatening, offensive, or harmful. - -## Scope - -This Code of Conduct applies both within project spaces and in public spaces -when an individual is representing the project or its community. Examples of -representing a project or community include using an official project e-mail -address, posting via an official social media account, or acting as an appointed -representative at an online or offline event. Representation of a project may be -further defined and clarified by project maintainers. - -## Enforcement - -Instances of abusive, harassing, or otherwise unacceptable behavior should be -reported. All -complaints will be reviewed and investigated and will result in a response that -is deemed necessary and appropriate to the circumstances. The project team is -obligated to maintain confidentiality with regard to the reporter of an incident. -Further details of specific enforcement policies may be posted separately. - -Project maintainers who do not follow or enforce the Code of Conduct in good -faith may face temporary or permanent repercussions as determined by other -members of the project's leadership. - -## Attribution - -This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, -available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html - -[homepage]: https://www.contributor-covenant.org - -For answers to common questions about this code of conduct, see -https://www.contributor-covenant.org/faq diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md deleted file mode 100644 index 152760606..000000000 --- a/CONTRIBUTING.md +++ /dev/null @@ -1,48 +0,0 @@ -# Contribution Guidelines - -Mixed Reality Toolkit is under the [MIT license](https://github.com/nunit/nunit/blob/master/LICENSE.txt). By contributing to the Mixed Reality Toolkit, you assert that: - -* The contribution is your own original work. -* The contribution adheres to the [Coding Guidelines](articles/appendices/A01-CodingGuidelines.md) -* You have the right to assign the copyright for the work (it is not owned by your employer, or - you have been given copyright assignment in writing). - -## How to contribute - -### Prerequisites - -* A GitHub Account -* Familiarization with projects with Git Source control versioning. Atlassian has a wonderful guide for [getting started with Git](https://www.atlassian.com/git). -* Install Git on your local machine and have git assigned as an environment variable. -* Install a Git client like [Fork](https://git-fork.com/) or [GitHub for Desktop](https://desktop.github.com/) for staging and committing code to source control -* Follow any [Getting Started Guidelines](articles/00-GettingStarted.md#prerequisites) for setting up your development environment not covered here. - -### Steps - -1. Fork the repository you'd like to open a pull request for. -2. Clone or sync any changes from the source repository to your local disk. - > **Note:** When initially cloning the repository be sure to recursively check out all submodules! -3. Create a new branch based on the last source development commit. -4. Make the changes you'd like to contribute. -5. Stage and commit your changes with thoughtful messages detailing the work. -6. Push your local changes to your fork's remote server. -7. Navigate to the repository's source repository on GitHub. - > **Note:** by now a prompt to open a new pull request should be available on the repository's main landing page. -8. Open a pull request detailing the changes and fill out the Pull Request Template. -9. Typically Code Reviews are performed in around 24-48 hours. -10. Iterate on any feedback from reviews. - > **Note:** Typically you can push the changes directly to the branch you've opened the pull request for. -11. Once the pull request is accepted and the build validation passes, changes are then squashed and merged into the target branch, and the process is repeated. - -### Branching Strategies - -The master, development, and any feature branches are all protected by branch policies. Each branch must be up to date and pass test and build validation before it can be merged. - -* All merges to the feature and development branches are squashed and merged into a single commit to keep the history clean and focused on specific pull request changes. -* All merges from the master and development branches are just traditionally merged together to ensure they stay in sync and share the same histories. - ---- - -### [**Raise an Information Request**](https://github.com/XRTK/XRTK-Core/issues/new?assignees=&labels=question&template=request_for_information.md&title=) - -If there is anything not mentioned in this document or you simply want to know more, raise an [RFI (Request for Information) request here](https://github.com/XRTK/XRTK-Core/issues/new?assignees=&labels=question&template=request_for_information.md&title=). diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md deleted file mode 100644 index ce95b3c3a..000000000 --- a/CONTRIBUTORS.md +++ /dev/null @@ -1,18 +0,0 @@ -# Project Contributors - -The following people have helped make this project as awesome as it is today (in alphabetical order): - -> If you'd like to add your name, please submit a pull request with your full name or GitHub username if you wish to remain anon. You may also add a link to your name to any social media accounts. - -- Addison Linville -- Andrew Hall -- Cameron Micka -- David Kline -- Dong Yoon Park -- Eric Carter -- Jarrod Show -- Kurtis Eveleigh -- Lars Simpkins -- Simon (Darkside) Jackson -- Stefan Wasserbauer -- [Stephen Hodgson](https://github.com/StephenHodgson) diff --git a/CleanupSymlinks.ps1 b/CleanupSymlinks.ps1 deleted file mode 100644 index 15055c718..000000000 --- a/CleanupSymlinks.ps1 +++ /dev/null @@ -1 +0,0 @@ -Get-ChildItem -Path $PSScriptRoot -Force -Recurse -ErrorAction 'silentlycontinue' -Attributes ReparsePoint | ForEach-Object { $_.delete() } \ No newline at end of file diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor.meta b/Editor.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor.meta rename to Editor.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/AssemblyInfo.cs b/Editor/AssemblyInfo.cs similarity index 90% rename from XRTK-Core/Packages/com.xrtk.core/Editor/AssemblyInfo.cs rename to Editor/AssemblyInfo.cs index be7fc6ff7..651c2542b 100644 --- a/XRTK-Core/Packages/com.xrtk.core/Editor/AssemblyInfo.cs +++ b/Editor/AssemblyInfo.cs @@ -5,7 +5,7 @@ using System.Reflection; -[assembly: AssemblyVersion("0.3.5")] +[assembly: AssemblyVersion("0.3.6")] [assembly: AssemblyTitle("com.xrtk.core.editor")] [assembly: AssemblyCompany("XRTK")] [assembly: AssemblyCopyright("Copyright (c) XRTK. All rights reserved.")] diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/AssemblyInfo.cs.meta b/Editor/AssemblyInfo.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/AssemblyInfo.cs.meta rename to Editor/AssemblyInfo.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline.meta b/Editor/BuildPipeline.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline.meta rename to Editor/BuildPipeline.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/AndroidBuildInfo.cs b/Editor/BuildPipeline/AndroidBuildInfo.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/AndroidBuildInfo.cs rename to Editor/BuildPipeline/AndroidBuildInfo.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/AndroidBuildInfo.cs.meta b/Editor/BuildPipeline/AndroidBuildInfo.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/AndroidBuildInfo.cs.meta rename to Editor/BuildPipeline/AndroidBuildInfo.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/AssemblyInfo.cs b/Editor/BuildPipeline/AssemblyInfo.cs similarity index 89% rename from XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/AssemblyInfo.cs rename to Editor/BuildPipeline/AssemblyInfo.cs index 48ba5f179..fb106981d 100644 --- a/XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/AssemblyInfo.cs +++ b/Editor/BuildPipeline/AssemblyInfo.cs @@ -3,7 +3,7 @@ using System.Reflection; -[assembly: AssemblyVersion("0.3.5")] +[assembly: AssemblyVersion("0.3.6")] [assembly: AssemblyTitle("com.xrtk.editor.buildpipeline")] [assembly: AssemblyCompany("XRTK")] [assembly: AssemblyCopyright("Copyright (c) XRTK. All rights reserved.")] diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/AssemblyInfo.cs.meta b/Editor/BuildPipeline/AssemblyInfo.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/AssemblyInfo.cs.meta rename to Editor/BuildPipeline/AssemblyInfo.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/BuildDeployPreferences.cs b/Editor/BuildPipeline/BuildDeployPreferences.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/BuildDeployPreferences.cs rename to Editor/BuildPipeline/BuildDeployPreferences.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/BuildDeployPreferences.cs.meta b/Editor/BuildPipeline/BuildDeployPreferences.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/BuildDeployPreferences.cs.meta rename to Editor/BuildPipeline/BuildDeployPreferences.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/BuildDeployWindow.cs b/Editor/BuildPipeline/BuildDeployWindow.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/BuildDeployWindow.cs rename to Editor/BuildPipeline/BuildDeployWindow.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/BuildDeployWindow.cs.meta b/Editor/BuildPipeline/BuildDeployWindow.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/BuildDeployWindow.cs.meta rename to Editor/BuildPipeline/BuildDeployWindow.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/BuildInfo.cs b/Editor/BuildPipeline/BuildInfo.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/BuildInfo.cs rename to Editor/BuildPipeline/BuildInfo.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/BuildInfo.cs.meta b/Editor/BuildPipeline/BuildInfo.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/BuildInfo.cs.meta rename to Editor/BuildPipeline/BuildInfo.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/BuildInfoExtensions.cs b/Editor/BuildPipeline/BuildInfoExtensions.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/BuildInfoExtensions.cs rename to Editor/BuildPipeline/BuildInfoExtensions.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/BuildInfoExtensions.cs.meta b/Editor/BuildPipeline/BuildInfoExtensions.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/BuildInfoExtensions.cs.meta rename to Editor/BuildPipeline/BuildInfoExtensions.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/BuildInfoInspector.cs b/Editor/BuildPipeline/BuildInfoInspector.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/BuildInfoInspector.cs rename to Editor/BuildPipeline/BuildInfoInspector.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/BuildInfoInspector.cs.meta b/Editor/BuildPipeline/BuildInfoInspector.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/BuildInfoInspector.cs.meta rename to Editor/BuildPipeline/BuildInfoInspector.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/IBuildInfo.cs b/Editor/BuildPipeline/IBuildInfo.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/IBuildInfo.cs rename to Editor/BuildPipeline/IBuildInfo.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/IBuildInfo.cs.meta b/Editor/BuildPipeline/IBuildInfo.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/IBuildInfo.cs.meta rename to Editor/BuildPipeline/IBuildInfo.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/Logging.meta b/Editor/BuildPipeline/Logging.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/Logging.meta rename to Editor/BuildPipeline/Logging.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/Logging/AbstractCILogger.cs b/Editor/BuildPipeline/Logging/AbstractCILogger.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/Logging/AbstractCILogger.cs rename to Editor/BuildPipeline/Logging/AbstractCILogger.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/Logging/AbstractCILogger.cs.meta b/Editor/BuildPipeline/Logging/AbstractCILogger.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/Logging/AbstractCILogger.cs.meta rename to Editor/BuildPipeline/Logging/AbstractCILogger.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/Logging/AzurePipelinesLogger.cs b/Editor/BuildPipeline/Logging/AzurePipelinesLogger.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/Logging/AzurePipelinesLogger.cs rename to Editor/BuildPipeline/Logging/AzurePipelinesLogger.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/Logging/AzurePipelinesLogger.cs.meta b/Editor/BuildPipeline/Logging/AzurePipelinesLogger.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/Logging/AzurePipelinesLogger.cs.meta rename to Editor/BuildPipeline/Logging/AzurePipelinesLogger.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/Logging/CILoggingUtility.cs b/Editor/BuildPipeline/Logging/CILoggingUtility.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/Logging/CILoggingUtility.cs rename to Editor/BuildPipeline/Logging/CILoggingUtility.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/Logging/CILoggingUtility.cs.meta b/Editor/BuildPipeline/Logging/CILoggingUtility.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/Logging/CILoggingUtility.cs.meta rename to Editor/BuildPipeline/Logging/CILoggingUtility.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/Logging/GitHubActionsLogger.cs b/Editor/BuildPipeline/Logging/GitHubActionsLogger.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/Logging/GitHubActionsLogger.cs rename to Editor/BuildPipeline/Logging/GitHubActionsLogger.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/Logging/GitHubActionsLogger.cs.meta b/Editor/BuildPipeline/Logging/GitHubActionsLogger.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/Logging/GitHubActionsLogger.cs.meta rename to Editor/BuildPipeline/Logging/GitHubActionsLogger.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/Logging/ICILogger.cs b/Editor/BuildPipeline/Logging/ICILogger.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/Logging/ICILogger.cs rename to Editor/BuildPipeline/Logging/ICILogger.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/Logging/ICILogger.cs.meta b/Editor/BuildPipeline/Logging/ICILogger.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/Logging/ICILogger.cs.meta rename to Editor/BuildPipeline/Logging/ICILogger.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/MixedRealityAppIcon.cs b/Editor/BuildPipeline/MixedRealityAppIcon.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/MixedRealityAppIcon.cs rename to Editor/BuildPipeline/MixedRealityAppIcon.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/MixedRealityAppIcon.cs.meta b/Editor/BuildPipeline/MixedRealityAppIcon.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/MixedRealityAppIcon.cs.meta rename to Editor/BuildPipeline/MixedRealityAppIcon.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/UnityPlayerBuildTools.cs b/Editor/BuildPipeline/UnityPlayerBuildTools.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/UnityPlayerBuildTools.cs rename to Editor/BuildPipeline/UnityPlayerBuildTools.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/UnityPlayerBuildTools.cs.meta b/Editor/BuildPipeline/UnityPlayerBuildTools.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/UnityPlayerBuildTools.cs.meta rename to Editor/BuildPipeline/UnityPlayerBuildTools.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/XRTK.Editor.BuildPipeline.asmdef b/Editor/BuildPipeline/XRTK.Editor.BuildPipeline.asmdef similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/XRTK.Editor.BuildPipeline.asmdef rename to Editor/BuildPipeline/XRTK.Editor.BuildPipeline.asmdef diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/XRTK.Editor.BuildPipeline.asmdef.meta b/Editor/BuildPipeline/XRTK.Editor.BuildPipeline.asmdef.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/BuildPipeline/XRTK.Editor.BuildPipeline.asmdef.meta rename to Editor/BuildPipeline/XRTK.Editor.BuildPipeline.asmdef.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/ControllerPopupWindow.cs b/Editor/ControllerPopupWindow.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/ControllerPopupWindow.cs rename to Editor/ControllerPopupWindow.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/ControllerPopupWindow.cs.meta b/Editor/ControllerPopupWindow.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/ControllerPopupWindow.cs.meta rename to Editor/ControllerPopupWindow.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Data.meta b/Editor/Data.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Data.meta rename to Editor/Data.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Data/ConfigurationProperty.cs b/Editor/Data/ConfigurationProperty.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Data/ConfigurationProperty.cs rename to Editor/Data/ConfigurationProperty.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Data/ConfigurationProperty.cs.meta b/Editor/Data/ConfigurationProperty.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Data/ConfigurationProperty.cs.meta rename to Editor/Data/ConfigurationProperty.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Data/ControllerInputActionOption.cs b/Editor/Data/ControllerInputActionOption.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Data/ControllerInputActionOption.cs rename to Editor/Data/ControllerInputActionOption.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Data/ControllerInputActionOption.cs.meta b/Editor/Data/ControllerInputActionOption.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Data/ControllerInputActionOption.cs.meta rename to Editor/Data/ControllerInputActionOption.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Data/ControllerInputActionOptions.cs b/Editor/Data/ControllerInputActionOptions.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Data/ControllerInputActionOptions.cs rename to Editor/Data/ControllerInputActionOptions.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Data/ControllerInputActionOptions.cs.meta b/Editor/Data/ControllerInputActionOptions.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Data/ControllerInputActionOptions.cs.meta rename to Editor/Data/ControllerInputActionOptions.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Data/Controllers.meta b/Editor/Data/Controllers.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Data/Controllers.meta rename to Editor/Data/Controllers.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Data/Controllers/Hands.meta b/Editor/Data/Controllers/Hands.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Data/Controllers/Hands.meta rename to Editor/Data/Controllers/Hands.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Data/Controllers/Hands/HandControllerPoseProfileInspector.cs b/Editor/Data/Controllers/Hands/HandControllerPoseProfileInspector.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Data/Controllers/Hands/HandControllerPoseProfileInspector.cs rename to Editor/Data/Controllers/Hands/HandControllerPoseProfileInspector.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Data/Controllers/Hands/HandControllerPoseProfileInspector.cs.meta b/Editor/Data/Controllers/Hands/HandControllerPoseProfileInspector.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Data/Controllers/Hands/HandControllerPoseProfileInspector.cs.meta rename to Editor/Data/Controllers/Hands/HandControllerPoseProfileInspector.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Data/EditorWindowOptions.json b/Editor/Data/EditorWindowOptions.json similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Data/EditorWindowOptions.json rename to Editor/Data/EditorWindowOptions.json diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Data/EditorWindowOptions.json.meta b/Editor/Data/EditorWindowOptions.json.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Data/EditorWindowOptions.json.meta rename to Editor/Data/EditorWindowOptions.json.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/EditorActiveProfileChangeHandler.cs b/Editor/EditorActiveProfileChangeHandler.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/EditorActiveProfileChangeHandler.cs rename to Editor/EditorActiveProfileChangeHandler.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/EditorActiveProfileChangeHandler.cs.meta b/Editor/EditorActiveProfileChangeHandler.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/EditorActiveProfileChangeHandler.cs.meta rename to Editor/EditorActiveProfileChangeHandler.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/EditorHandsShaderGUI.cs b/Editor/EditorHandsShaderGUI.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/EditorHandsShaderGUI.cs rename to Editor/EditorHandsShaderGUI.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/EditorHandsShaderGUI.cs.meta b/Editor/EditorHandsShaderGUI.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/EditorHandsShaderGUI.cs.meta rename to Editor/EditorHandsShaderGUI.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Extensions.meta b/Editor/Extensions.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Extensions.meta rename to Editor/Extensions.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Extensions/EditorGUILayoutExtensions.cs b/Editor/Extensions/EditorGUILayoutExtensions.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Extensions/EditorGUILayoutExtensions.cs rename to Editor/Extensions/EditorGUILayoutExtensions.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Extensions/EditorGUILayoutExtensions.cs.meta b/Editor/Extensions/EditorGUILayoutExtensions.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Extensions/EditorGUILayoutExtensions.cs.meta rename to Editor/Extensions/EditorGUILayoutExtensions.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Extensions/ScriptableObjectExtensions.cs b/Editor/Extensions/ScriptableObjectExtensions.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Extensions/ScriptableObjectExtensions.cs rename to Editor/Extensions/ScriptableObjectExtensions.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Extensions/ScriptableObjectExtensions.cs.meta b/Editor/Extensions/ScriptableObjectExtensions.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Extensions/ScriptableObjectExtensions.cs.meta rename to Editor/Extensions/ScriptableObjectExtensions.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Extensions/SerializedPropertyExtensions.cs b/Editor/Extensions/SerializedPropertyExtensions.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Extensions/SerializedPropertyExtensions.cs rename to Editor/Extensions/SerializedPropertyExtensions.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Extensions/SerializedPropertyExtensions.cs.meta b/Editor/Extensions/SerializedPropertyExtensions.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Extensions/SerializedPropertyExtensions.cs.meta rename to Editor/Extensions/SerializedPropertyExtensions.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/MixedRealityPreferences.cs b/Editor/MixedRealityPreferences.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/MixedRealityPreferences.cs rename to Editor/MixedRealityPreferences.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/MixedRealityPreferences.cs.meta b/Editor/MixedRealityPreferences.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/MixedRealityPreferences.cs.meta rename to Editor/MixedRealityPreferences.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/MixedRealityStandardShaderGUI.cs b/Editor/MixedRealityStandardShaderGUI.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/MixedRealityStandardShaderGUI.cs rename to Editor/MixedRealityStandardShaderGUI.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/MixedRealityStandardShaderGUI.cs.meta b/Editor/MixedRealityStandardShaderGUI.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/MixedRealityStandardShaderGUI.cs.meta rename to Editor/MixedRealityStandardShaderGUI.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/MixedRealityToolkitInspector.cs b/Editor/MixedRealityToolkitInspector.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/MixedRealityToolkitInspector.cs rename to Editor/MixedRealityToolkitInspector.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/MixedRealityToolkitInspector.cs.meta b/Editor/MixedRealityToolkitInspector.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/MixedRealityToolkitInspector.cs.meta rename to Editor/MixedRealityToolkitInspector.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/PackageInstaller.cs b/Editor/PackageInstaller.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/PackageInstaller.cs rename to Editor/PackageInstaller.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/PackageInstaller.cs.meta b/Editor/PackageInstaller.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/PackageInstaller.cs.meta rename to Editor/PackageInstaller.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles.meta b/Editor/Profiles.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles.meta rename to Editor/Profiles.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/BaseMixedRealityCameraDataProviderProfileInspector.cs b/Editor/Profiles/BaseMixedRealityCameraDataProviderProfileInspector.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/BaseMixedRealityCameraDataProviderProfileInspector.cs rename to Editor/Profiles/BaseMixedRealityCameraDataProviderProfileInspector.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/BaseMixedRealityCameraDataProviderProfileInspector.cs.meta b/Editor/Profiles/BaseMixedRealityCameraDataProviderProfileInspector.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/BaseMixedRealityCameraDataProviderProfileInspector.cs.meta rename to Editor/Profiles/BaseMixedRealityCameraDataProviderProfileInspector.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/BaseMixedRealityProfileInspector.cs b/Editor/Profiles/BaseMixedRealityProfileInspector.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/BaseMixedRealityProfileInspector.cs rename to Editor/Profiles/BaseMixedRealityProfileInspector.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/BaseMixedRealityProfileInspector.cs.meta b/Editor/Profiles/BaseMixedRealityProfileInspector.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/BaseMixedRealityProfileInspector.cs.meta rename to Editor/Profiles/BaseMixedRealityProfileInspector.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/DiagnosticsSystem.meta b/Editor/Profiles/DiagnosticsSystem.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/DiagnosticsSystem.meta rename to Editor/Profiles/DiagnosticsSystem.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/DiagnosticsSystem/MixedRealityDiagnosticsSystemProfileInspector.cs b/Editor/Profiles/DiagnosticsSystem/MixedRealityDiagnosticsSystemProfileInspector.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/DiagnosticsSystem/MixedRealityDiagnosticsSystemProfileInspector.cs rename to Editor/Profiles/DiagnosticsSystem/MixedRealityDiagnosticsSystemProfileInspector.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/DiagnosticsSystem/MixedRealityDiagnosticsSystemProfileInspector.cs.meta b/Editor/Profiles/DiagnosticsSystem/MixedRealityDiagnosticsSystemProfileInspector.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/DiagnosticsSystem/MixedRealityDiagnosticsSystemProfileInspector.cs.meta rename to Editor/Profiles/DiagnosticsSystem/MixedRealityDiagnosticsSystemProfileInspector.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem.meta b/Editor/Profiles/InputSystem.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem.meta rename to Editor/Profiles/InputSystem.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem/Controllers.meta b/Editor/Profiles/InputSystem/Controllers.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem/Controllers.meta rename to Editor/Profiles/InputSystem/Controllers.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem/Controllers/BaseMixedRealityControllerDataProviderProfileInspector.cs b/Editor/Profiles/InputSystem/Controllers/BaseMixedRealityControllerDataProviderProfileInspector.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem/Controllers/BaseMixedRealityControllerDataProviderProfileInspector.cs rename to Editor/Profiles/InputSystem/Controllers/BaseMixedRealityControllerDataProviderProfileInspector.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem/Controllers/BaseMixedRealityControllerDataProviderProfileInspector.cs.meta b/Editor/Profiles/InputSystem/Controllers/BaseMixedRealityControllerDataProviderProfileInspector.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem/Controllers/BaseMixedRealityControllerDataProviderProfileInspector.cs.meta rename to Editor/Profiles/InputSystem/Controllers/BaseMixedRealityControllerDataProviderProfileInspector.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem/Controllers/BaseMixedRealityControllerMappingProfileInspector.cs b/Editor/Profiles/InputSystem/Controllers/BaseMixedRealityControllerMappingProfileInspector.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem/Controllers/BaseMixedRealityControllerMappingProfileInspector.cs rename to Editor/Profiles/InputSystem/Controllers/BaseMixedRealityControllerMappingProfileInspector.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem/Controllers/BaseMixedRealityControllerMappingProfileInspector.cs.meta b/Editor/Profiles/InputSystem/Controllers/BaseMixedRealityControllerMappingProfileInspector.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem/Controllers/BaseMixedRealityControllerMappingProfileInspector.cs.meta rename to Editor/Profiles/InputSystem/Controllers/BaseMixedRealityControllerMappingProfileInspector.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem/Controllers/Hands.meta b/Editor/Profiles/InputSystem/Controllers/Hands.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem/Controllers/Hands.meta rename to Editor/Profiles/InputSystem/Controllers/Hands.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem/Controllers/Hands/BaseMixedRealityHandControllerDataProviderProfileInspector.cs b/Editor/Profiles/InputSystem/Controllers/Hands/BaseMixedRealityHandControllerDataProviderProfileInspector.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem/Controllers/Hands/BaseMixedRealityHandControllerDataProviderProfileInspector.cs rename to Editor/Profiles/InputSystem/Controllers/Hands/BaseMixedRealityHandControllerDataProviderProfileInspector.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem/Controllers/Hands/BaseMixedRealityHandControllerDataProviderProfileInspector.cs.meta b/Editor/Profiles/InputSystem/Controllers/Hands/BaseMixedRealityHandControllerDataProviderProfileInspector.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem/Controllers/Hands/BaseMixedRealityHandControllerDataProviderProfileInspector.cs.meta rename to Editor/Profiles/InputSystem/Controllers/Hands/BaseMixedRealityHandControllerDataProviderProfileInspector.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem/Controllers/MixedRealityControllerVisualizationProfileInspector.cs b/Editor/Profiles/InputSystem/Controllers/MixedRealityControllerVisualizationProfileInspector.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem/Controllers/MixedRealityControllerVisualizationProfileInspector.cs rename to Editor/Profiles/InputSystem/Controllers/MixedRealityControllerVisualizationProfileInspector.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem/Controllers/MixedRealityControllerVisualizationProfileInspector.cs.meta b/Editor/Profiles/InputSystem/Controllers/MixedRealityControllerVisualizationProfileInspector.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem/Controllers/MixedRealityControllerVisualizationProfileInspector.cs.meta rename to Editor/Profiles/InputSystem/Controllers/MixedRealityControllerVisualizationProfileInspector.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem/Controllers/MixedRealityInteractionMappingProfileInspector.cs b/Editor/Profiles/InputSystem/Controllers/MixedRealityInteractionMappingProfileInspector.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem/Controllers/MixedRealityInteractionMappingProfileInspector.cs rename to Editor/Profiles/InputSystem/Controllers/MixedRealityInteractionMappingProfileInspector.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem/Controllers/MixedRealityInteractionMappingProfileInspector.cs.meta b/Editor/Profiles/InputSystem/Controllers/MixedRealityInteractionMappingProfileInspector.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem/Controllers/MixedRealityInteractionMappingProfileInspector.cs.meta rename to Editor/Profiles/InputSystem/Controllers/MixedRealityInteractionMappingProfileInspector.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem/Controllers/Simulation.meta b/Editor/Profiles/InputSystem/Controllers/Simulation.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem/Controllers/Simulation.meta rename to Editor/Profiles/InputSystem/Controllers/Simulation.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem/Controllers/Simulation/SimulatedControllerDataProviderProfileInspector.cs b/Editor/Profiles/InputSystem/Controllers/Simulation/SimulatedControllerDataProviderProfileInspector.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem/Controllers/Simulation/SimulatedControllerDataProviderProfileInspector.cs rename to Editor/Profiles/InputSystem/Controllers/Simulation/SimulatedControllerDataProviderProfileInspector.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem/Controllers/Simulation/SimulatedControllerDataProviderProfileInspector.cs.meta b/Editor/Profiles/InputSystem/Controllers/Simulation/SimulatedControllerDataProviderProfileInspector.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem/Controllers/Simulation/SimulatedControllerDataProviderProfileInspector.cs.meta rename to Editor/Profiles/InputSystem/Controllers/Simulation/SimulatedControllerDataProviderProfileInspector.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem/Controllers/Simulation/SimulatedHandControllerDataProviderProfileInspector.cs b/Editor/Profiles/InputSystem/Controllers/Simulation/SimulatedHandControllerDataProviderProfileInspector.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem/Controllers/Simulation/SimulatedHandControllerDataProviderProfileInspector.cs rename to Editor/Profiles/InputSystem/Controllers/Simulation/SimulatedHandControllerDataProviderProfileInspector.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem/Controllers/Simulation/SimulatedHandControllerDataProviderProfileInspector.cs.meta b/Editor/Profiles/InputSystem/Controllers/Simulation/SimulatedHandControllerDataProviderProfileInspector.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem/Controllers/Simulation/SimulatedHandControllerDataProviderProfileInspector.cs.meta rename to Editor/Profiles/InputSystem/Controllers/Simulation/SimulatedHandControllerDataProviderProfileInspector.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem/MixedRealityGesturesProfileInspector.cs b/Editor/Profiles/InputSystem/MixedRealityGesturesProfileInspector.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem/MixedRealityGesturesProfileInspector.cs rename to Editor/Profiles/InputSystem/MixedRealityGesturesProfileInspector.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem/MixedRealityGesturesProfileInspector.cs.meta b/Editor/Profiles/InputSystem/MixedRealityGesturesProfileInspector.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem/MixedRealityGesturesProfileInspector.cs.meta rename to Editor/Profiles/InputSystem/MixedRealityGesturesProfileInspector.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem/MixedRealityInputActionsProfileInspector.cs b/Editor/Profiles/InputSystem/MixedRealityInputActionsProfileInspector.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem/MixedRealityInputActionsProfileInspector.cs rename to Editor/Profiles/InputSystem/MixedRealityInputActionsProfileInspector.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem/MixedRealityInputActionsProfileInspector.cs.meta b/Editor/Profiles/InputSystem/MixedRealityInputActionsProfileInspector.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem/MixedRealityInputActionsProfileInspector.cs.meta rename to Editor/Profiles/InputSystem/MixedRealityInputActionsProfileInspector.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem/MixedRealityInputSystemProfileInspector.cs b/Editor/Profiles/InputSystem/MixedRealityInputSystemProfileInspector.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem/MixedRealityInputSystemProfileInspector.cs rename to Editor/Profiles/InputSystem/MixedRealityInputSystemProfileInspector.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem/MixedRealityInputSystemProfileInspector.cs.meta b/Editor/Profiles/InputSystem/MixedRealityInputSystemProfileInspector.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem/MixedRealityInputSystemProfileInspector.cs.meta rename to Editor/Profiles/InputSystem/MixedRealityInputSystemProfileInspector.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem/MixedRealityPointerProfileInspector.cs b/Editor/Profiles/InputSystem/MixedRealityPointerProfileInspector.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem/MixedRealityPointerProfileInspector.cs rename to Editor/Profiles/InputSystem/MixedRealityPointerProfileInspector.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem/MixedRealityPointerProfileInspector.cs.meta b/Editor/Profiles/InputSystem/MixedRealityPointerProfileInspector.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem/MixedRealityPointerProfileInspector.cs.meta rename to Editor/Profiles/InputSystem/MixedRealityPointerProfileInspector.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem/MixedRealitySpeechCommandsProfileInspector.cs b/Editor/Profiles/InputSystem/MixedRealitySpeechCommandsProfileInspector.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem/MixedRealitySpeechCommandsProfileInspector.cs rename to Editor/Profiles/InputSystem/MixedRealitySpeechCommandsProfileInspector.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem/MixedRealitySpeechCommandsProfileInspector.cs.meta b/Editor/Profiles/InputSystem/MixedRealitySpeechCommandsProfileInspector.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/InputSystem/MixedRealitySpeechCommandsProfileInspector.cs.meta rename to Editor/Profiles/InputSystem/MixedRealitySpeechCommandsProfileInspector.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/LocomotionSystem.meta b/Editor/Profiles/LocomotionSystem.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/LocomotionSystem.meta rename to Editor/Profiles/LocomotionSystem.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/LocomotionSystem/BaseTeleportLocomotionProviderProfileInspector.cs b/Editor/Profiles/LocomotionSystem/BaseTeleportLocomotionProviderProfileInspector.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/LocomotionSystem/BaseTeleportLocomotionProviderProfileInspector.cs rename to Editor/Profiles/LocomotionSystem/BaseTeleportLocomotionProviderProfileInspector.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/LocomotionSystem/BaseTeleportLocomotionProviderProfileInspector.cs.meta b/Editor/Profiles/LocomotionSystem/BaseTeleportLocomotionProviderProfileInspector.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/LocomotionSystem/BaseTeleportLocomotionProviderProfileInspector.cs.meta rename to Editor/Profiles/LocomotionSystem/BaseTeleportLocomotionProviderProfileInspector.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/LocomotionSystem/BlinkTeleportLocomotionProviderProfileInspector.cs b/Editor/Profiles/LocomotionSystem/BlinkTeleportLocomotionProviderProfileInspector.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/LocomotionSystem/BlinkTeleportLocomotionProviderProfileInspector.cs rename to Editor/Profiles/LocomotionSystem/BlinkTeleportLocomotionProviderProfileInspector.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/LocomotionSystem/BlinkTeleportLocomotionProviderProfileInspector.cs.meta b/Editor/Profiles/LocomotionSystem/BlinkTeleportLocomotionProviderProfileInspector.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/LocomotionSystem/BlinkTeleportLocomotionProviderProfileInspector.cs.meta rename to Editor/Profiles/LocomotionSystem/BlinkTeleportLocomotionProviderProfileInspector.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/LocomotionSystem/DashTeleportLocomotionProviderProfileInspector.cs b/Editor/Profiles/LocomotionSystem/DashTeleportLocomotionProviderProfileInspector.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/LocomotionSystem/DashTeleportLocomotionProviderProfileInspector.cs rename to Editor/Profiles/LocomotionSystem/DashTeleportLocomotionProviderProfileInspector.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/LocomotionSystem/DashTeleportLocomotionProviderProfileInspector.cs.meta b/Editor/Profiles/LocomotionSystem/DashTeleportLocomotionProviderProfileInspector.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/LocomotionSystem/DashTeleportLocomotionProviderProfileInspector.cs.meta rename to Editor/Profiles/LocomotionSystem/DashTeleportLocomotionProviderProfileInspector.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/LocomotionSystem/LocomotionProviderProfileInspector.cs b/Editor/Profiles/LocomotionSystem/LocomotionProviderProfileInspector.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/LocomotionSystem/LocomotionProviderProfileInspector.cs rename to Editor/Profiles/LocomotionSystem/LocomotionProviderProfileInspector.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/LocomotionSystem/LocomotionProviderProfileInspector.cs.meta b/Editor/Profiles/LocomotionSystem/LocomotionProviderProfileInspector.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/LocomotionSystem/LocomotionProviderProfileInspector.cs.meta rename to Editor/Profiles/LocomotionSystem/LocomotionProviderProfileInspector.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/LocomotionSystem/LocomotionSystemProfileInspector.cs b/Editor/Profiles/LocomotionSystem/LocomotionSystemProfileInspector.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/LocomotionSystem/LocomotionSystemProfileInspector.cs rename to Editor/Profiles/LocomotionSystem/LocomotionSystemProfileInspector.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/LocomotionSystem/LocomotionSystemProfileInspector.cs.meta b/Editor/Profiles/LocomotionSystem/LocomotionSystemProfileInspector.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/LocomotionSystem/LocomotionSystemProfileInspector.cs.meta rename to Editor/Profiles/LocomotionSystem/LocomotionSystemProfileInspector.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/LocomotionSystem/SmoothLocomotionProviderProfileInspector.cs b/Editor/Profiles/LocomotionSystem/SmoothLocomotionProviderProfileInspector.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/LocomotionSystem/SmoothLocomotionProviderProfileInspector.cs rename to Editor/Profiles/LocomotionSystem/SmoothLocomotionProviderProfileInspector.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/LocomotionSystem/SmoothLocomotionProviderProfileInspector.cs.meta b/Editor/Profiles/LocomotionSystem/SmoothLocomotionProviderProfileInspector.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/LocomotionSystem/SmoothLocomotionProviderProfileInspector.cs.meta rename to Editor/Profiles/LocomotionSystem/SmoothLocomotionProviderProfileInspector.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/LocomotionSystem/TeleportValidationProviderProfileInspector.cs b/Editor/Profiles/LocomotionSystem/TeleportValidationProviderProfileInspector.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/LocomotionSystem/TeleportValidationProviderProfileInspector.cs rename to Editor/Profiles/LocomotionSystem/TeleportValidationProviderProfileInspector.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/LocomotionSystem/TeleportValidationProviderProfileInspector.cs.meta b/Editor/Profiles/LocomotionSystem/TeleportValidationProviderProfileInspector.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/LocomotionSystem/TeleportValidationProviderProfileInspector.cs.meta rename to Editor/Profiles/LocomotionSystem/TeleportValidationProviderProfileInspector.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/MixedRealityBoundaryVisualizationProfileInspector.cs b/Editor/Profiles/MixedRealityBoundaryVisualizationProfileInspector.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/MixedRealityBoundaryVisualizationProfileInspector.cs rename to Editor/Profiles/MixedRealityBoundaryVisualizationProfileInspector.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/MixedRealityBoundaryVisualizationProfileInspector.cs.meta b/Editor/Profiles/MixedRealityBoundaryVisualizationProfileInspector.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/MixedRealityBoundaryVisualizationProfileInspector.cs.meta rename to Editor/Profiles/MixedRealityBoundaryVisualizationProfileInspector.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/MixedRealityCameraSystemProfileInspector.cs b/Editor/Profiles/MixedRealityCameraSystemProfileInspector.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/MixedRealityCameraSystemProfileInspector.cs rename to Editor/Profiles/MixedRealityCameraSystemProfileInspector.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/MixedRealityCameraSystemProfileInspector.cs.meta b/Editor/Profiles/MixedRealityCameraSystemProfileInspector.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/MixedRealityCameraSystemProfileInspector.cs.meta rename to Editor/Profiles/MixedRealityCameraSystemProfileInspector.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/MixedRealityNetworkSystemProfileInspector.cs b/Editor/Profiles/MixedRealityNetworkSystemProfileInspector.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/MixedRealityNetworkSystemProfileInspector.cs rename to Editor/Profiles/MixedRealityNetworkSystemProfileInspector.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/MixedRealityNetworkSystemProfileInspector.cs.meta b/Editor/Profiles/MixedRealityNetworkSystemProfileInspector.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/MixedRealityNetworkSystemProfileInspector.cs.meta rename to Editor/Profiles/MixedRealityNetworkSystemProfileInspector.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/MixedRealityPlatformServiceConfigurationProfileInspector.cs b/Editor/Profiles/MixedRealityPlatformServiceConfigurationProfileInspector.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/MixedRealityPlatformServiceConfigurationProfileInspector.cs rename to Editor/Profiles/MixedRealityPlatformServiceConfigurationProfileInspector.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/MixedRealityPlatformServiceConfigurationProfileInspector.cs.meta b/Editor/Profiles/MixedRealityPlatformServiceConfigurationProfileInspector.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/MixedRealityPlatformServiceConfigurationProfileInspector.cs.meta rename to Editor/Profiles/MixedRealityPlatformServiceConfigurationProfileInspector.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/MixedRealityRegisteredServiceProvidersProfileInspector.cs b/Editor/Profiles/MixedRealityRegisteredServiceProvidersProfileInspector.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/MixedRealityRegisteredServiceProvidersProfileInspector.cs rename to Editor/Profiles/MixedRealityRegisteredServiceProvidersProfileInspector.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/MixedRealityRegisteredServiceProvidersProfileInspector.cs.meta b/Editor/Profiles/MixedRealityRegisteredServiceProvidersProfileInspector.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/MixedRealityRegisteredServiceProvidersProfileInspector.cs.meta rename to Editor/Profiles/MixedRealityRegisteredServiceProvidersProfileInspector.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/MixedRealityServiceProviderProfileInspector.cs b/Editor/Profiles/MixedRealityServiceProviderProfileInspector.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/MixedRealityServiceProviderProfileInspector.cs rename to Editor/Profiles/MixedRealityServiceProviderProfileInspector.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/MixedRealityServiceProviderProfileInspector.cs.meta b/Editor/Profiles/MixedRealityServiceProviderProfileInspector.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/MixedRealityServiceProviderProfileInspector.cs.meta rename to Editor/Profiles/MixedRealityServiceProviderProfileInspector.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/MixedRealityToolkitRootProfileInspector.cs b/Editor/Profiles/MixedRealityToolkitRootProfileInspector.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/MixedRealityToolkitRootProfileInspector.cs rename to Editor/Profiles/MixedRealityToolkitRootProfileInspector.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/MixedRealityToolkitRootProfileInspector.cs.meta b/Editor/Profiles/MixedRealityToolkitRootProfileInspector.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/MixedRealityToolkitRootProfileInspector.cs.meta rename to Editor/Profiles/MixedRealityToolkitRootProfileInspector.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/SpatialAwarenessSystem.meta b/Editor/Profiles/SpatialAwarenessSystem.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/SpatialAwarenessSystem.meta rename to Editor/Profiles/SpatialAwarenessSystem.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/SpatialAwarenessSystem/BaseMixedRealitySpatialMeshObserverProfileInspector.cs b/Editor/Profiles/SpatialAwarenessSystem/BaseMixedRealitySpatialMeshObserverProfileInspector.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/SpatialAwarenessSystem/BaseMixedRealitySpatialMeshObserverProfileInspector.cs rename to Editor/Profiles/SpatialAwarenessSystem/BaseMixedRealitySpatialMeshObserverProfileInspector.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/SpatialAwarenessSystem/BaseMixedRealitySpatialMeshObserverProfileInspector.cs.meta b/Editor/Profiles/SpatialAwarenessSystem/BaseMixedRealitySpatialMeshObserverProfileInspector.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/SpatialAwarenessSystem/BaseMixedRealitySpatialMeshObserverProfileInspector.cs.meta rename to Editor/Profiles/SpatialAwarenessSystem/BaseMixedRealitySpatialMeshObserverProfileInspector.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/SpatialAwarenessSystem/BaseMixedRealitySpatialObserverProfileInspector.cs b/Editor/Profiles/SpatialAwarenessSystem/BaseMixedRealitySpatialObserverProfileInspector.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/SpatialAwarenessSystem/BaseMixedRealitySpatialObserverProfileInspector.cs rename to Editor/Profiles/SpatialAwarenessSystem/BaseMixedRealitySpatialObserverProfileInspector.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/SpatialAwarenessSystem/BaseMixedRealitySpatialObserverProfileInspector.cs.meta b/Editor/Profiles/SpatialAwarenessSystem/BaseMixedRealitySpatialObserverProfileInspector.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/SpatialAwarenessSystem/BaseMixedRealitySpatialObserverProfileInspector.cs.meta rename to Editor/Profiles/SpatialAwarenessSystem/BaseMixedRealitySpatialObserverProfileInspector.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/SpatialAwarenessSystem/BaseMixedRealitySurfaceObserverProfileInspector.cs b/Editor/Profiles/SpatialAwarenessSystem/BaseMixedRealitySurfaceObserverProfileInspector.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/SpatialAwarenessSystem/BaseMixedRealitySurfaceObserverProfileInspector.cs rename to Editor/Profiles/SpatialAwarenessSystem/BaseMixedRealitySurfaceObserverProfileInspector.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/SpatialAwarenessSystem/BaseMixedRealitySurfaceObserverProfileInspector.cs.meta b/Editor/Profiles/SpatialAwarenessSystem/BaseMixedRealitySurfaceObserverProfileInspector.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/SpatialAwarenessSystem/BaseMixedRealitySurfaceObserverProfileInspector.cs.meta rename to Editor/Profiles/SpatialAwarenessSystem/BaseMixedRealitySurfaceObserverProfileInspector.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/SpatialAwarenessSystem/MixedRealitySpatialAwarenessSystemProfileInspector.cs b/Editor/Profiles/SpatialAwarenessSystem/MixedRealitySpatialAwarenessSystemProfileInspector.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/SpatialAwarenessSystem/MixedRealitySpatialAwarenessSystemProfileInspector.cs rename to Editor/Profiles/SpatialAwarenessSystem/MixedRealitySpatialAwarenessSystemProfileInspector.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/SpatialAwarenessSystem/MixedRealitySpatialAwarenessSystemProfileInspector.cs.meta b/Editor/Profiles/SpatialAwarenessSystem/MixedRealitySpatialAwarenessSystemProfileInspector.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Profiles/SpatialAwarenessSystem/MixedRealitySpatialAwarenessSystemProfileInspector.cs.meta rename to Editor/Profiles/SpatialAwarenessSystem/MixedRealitySpatialAwarenessSystemProfileInspector.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/PropertyDrawers.meta b/Editor/PropertyDrawers.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/PropertyDrawers.meta rename to Editor/PropertyDrawers.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/PropertyDrawers/AxisConstraintAttributeDrawer.cs b/Editor/PropertyDrawers/AxisConstraintAttributeDrawer.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/PropertyDrawers/AxisConstraintAttributeDrawer.cs rename to Editor/PropertyDrawers/AxisConstraintAttributeDrawer.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/PropertyDrawers/AxisConstraintAttributeDrawer.cs.meta b/Editor/PropertyDrawers/AxisConstraintAttributeDrawer.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/PropertyDrawers/AxisConstraintAttributeDrawer.cs.meta rename to Editor/PropertyDrawers/AxisConstraintAttributeDrawer.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/PropertyDrawers/EnumFlagsAttributeDrawer.cs b/Editor/PropertyDrawers/EnumFlagsAttributeDrawer.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/PropertyDrawers/EnumFlagsAttributeDrawer.cs rename to Editor/PropertyDrawers/EnumFlagsAttributeDrawer.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/PropertyDrawers/EnumFlagsAttributeDrawer.cs.meta b/Editor/PropertyDrawers/EnumFlagsAttributeDrawer.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/PropertyDrawers/EnumFlagsAttributeDrawer.cs.meta rename to Editor/PropertyDrawers/EnumFlagsAttributeDrawer.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/PropertyDrawers/InputActionPropertyDrawer.cs b/Editor/PropertyDrawers/InputActionPropertyDrawer.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/PropertyDrawers/InputActionPropertyDrawer.cs rename to Editor/PropertyDrawers/InputActionPropertyDrawer.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/PropertyDrawers/InputActionPropertyDrawer.cs.meta b/Editor/PropertyDrawers/InputActionPropertyDrawer.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/PropertyDrawers/InputActionPropertyDrawer.cs.meta rename to Editor/PropertyDrawers/InputActionPropertyDrawer.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/PropertyDrawers/MinPropertyDrawer.cs b/Editor/PropertyDrawers/MinPropertyDrawer.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/PropertyDrawers/MinPropertyDrawer.cs rename to Editor/PropertyDrawers/MinPropertyDrawer.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/PropertyDrawers/MinPropertyDrawer.cs.meta b/Editor/PropertyDrawers/MinPropertyDrawer.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/PropertyDrawers/MinPropertyDrawer.cs.meta rename to Editor/PropertyDrawers/MinPropertyDrawer.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/PropertyDrawers/MixedRealityInputActionDropdown.cs b/Editor/PropertyDrawers/MixedRealityInputActionDropdown.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/PropertyDrawers/MixedRealityInputActionDropdown.cs rename to Editor/PropertyDrawers/MixedRealityInputActionDropdown.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/PropertyDrawers/MixedRealityInputActionDropdown.cs.meta b/Editor/PropertyDrawers/MixedRealityInputActionDropdown.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/PropertyDrawers/MixedRealityInputActionDropdown.cs.meta rename to Editor/PropertyDrawers/MixedRealityInputActionDropdown.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/PropertyDrawers/MixedRealityPosePropertyDrawer.cs b/Editor/PropertyDrawers/MixedRealityPosePropertyDrawer.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/PropertyDrawers/MixedRealityPosePropertyDrawer.cs rename to Editor/PropertyDrawers/MixedRealityPosePropertyDrawer.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/PropertyDrawers/MixedRealityPosePropertyDrawer.cs.meta b/Editor/PropertyDrawers/MixedRealityPosePropertyDrawer.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/PropertyDrawers/MixedRealityPosePropertyDrawer.cs.meta rename to Editor/PropertyDrawers/MixedRealityPosePropertyDrawer.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/PropertyDrawers/MixedRealityProfilePropertyDrawer.cs b/Editor/PropertyDrawers/MixedRealityProfilePropertyDrawer.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/PropertyDrawers/MixedRealityProfilePropertyDrawer.cs rename to Editor/PropertyDrawers/MixedRealityProfilePropertyDrawer.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/PropertyDrawers/MixedRealityProfilePropertyDrawer.cs.meta b/Editor/PropertyDrawers/MixedRealityProfilePropertyDrawer.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/PropertyDrawers/MixedRealityProfilePropertyDrawer.cs.meta rename to Editor/PropertyDrawers/MixedRealityProfilePropertyDrawer.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/PropertyDrawers/PhysicsLayerAttributeDrawer.cs b/Editor/PropertyDrawers/PhysicsLayerAttributeDrawer.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/PropertyDrawers/PhysicsLayerAttributeDrawer.cs rename to Editor/PropertyDrawers/PhysicsLayerAttributeDrawer.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/PropertyDrawers/PhysicsLayerAttributeDrawer.cs.meta b/Editor/PropertyDrawers/PhysicsLayerAttributeDrawer.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/PropertyDrawers/PhysicsLayerAttributeDrawer.cs.meta rename to Editor/PropertyDrawers/PhysicsLayerAttributeDrawer.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/PropertyDrawers/PlatformEntryPropertyDrawer.cs b/Editor/PropertyDrawers/PlatformEntryPropertyDrawer.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/PropertyDrawers/PlatformEntryPropertyDrawer.cs rename to Editor/PropertyDrawers/PlatformEntryPropertyDrawer.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/PropertyDrawers/PlatformEntryPropertyDrawer.cs.meta b/Editor/PropertyDrawers/PlatformEntryPropertyDrawer.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/PropertyDrawers/PlatformEntryPropertyDrawer.cs.meta rename to Editor/PropertyDrawers/PlatformEntryPropertyDrawer.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/PropertyDrawers/PrefabPropertyDrawer.cs b/Editor/PropertyDrawers/PrefabPropertyDrawer.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/PropertyDrawers/PrefabPropertyDrawer.cs rename to Editor/PropertyDrawers/PrefabPropertyDrawer.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/PropertyDrawers/PrefabPropertyDrawer.cs.meta b/Editor/PropertyDrawers/PrefabPropertyDrawer.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/PropertyDrawers/PrefabPropertyDrawer.cs.meta rename to Editor/PropertyDrawers/PrefabPropertyDrawer.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/PropertyDrawers/SpeechCommandPropertyDrawer.cs b/Editor/PropertyDrawers/SpeechCommandPropertyDrawer.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/PropertyDrawers/SpeechCommandPropertyDrawer.cs rename to Editor/PropertyDrawers/SpeechCommandPropertyDrawer.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/PropertyDrawers/SpeechCommandPropertyDrawer.cs.meta b/Editor/PropertyDrawers/SpeechCommandPropertyDrawer.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/PropertyDrawers/SpeechCommandPropertyDrawer.cs.meta rename to Editor/PropertyDrawers/SpeechCommandPropertyDrawer.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/PropertyDrawers/TypeReferencePropertyDrawer.cs b/Editor/PropertyDrawers/TypeReferencePropertyDrawer.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/PropertyDrawers/TypeReferencePropertyDrawer.cs rename to Editor/PropertyDrawers/TypeReferencePropertyDrawer.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/PropertyDrawers/TypeReferencePropertyDrawer.cs.meta b/Editor/PropertyDrawers/TypeReferencePropertyDrawer.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/PropertyDrawers/TypeReferencePropertyDrawer.cs.meta rename to Editor/PropertyDrawers/TypeReferencePropertyDrawer.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/PropertyDrawers/Vector3RangePropertyDrawer.cs b/Editor/PropertyDrawers/Vector3RangePropertyDrawer.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/PropertyDrawers/Vector3RangePropertyDrawer.cs rename to Editor/PropertyDrawers/Vector3RangePropertyDrawer.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/PropertyDrawers/Vector3RangePropertyDrawer.cs.meta b/Editor/PropertyDrawers/Vector3RangePropertyDrawer.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/PropertyDrawers/Vector3RangePropertyDrawer.cs.meta rename to Editor/PropertyDrawers/Vector3RangePropertyDrawer.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/SystemTypeRepairWindow.cs b/Editor/SystemTypeRepairWindow.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/SystemTypeRepairWindow.cs rename to Editor/SystemTypeRepairWindow.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/SystemTypeRepairWindow.cs.meta b/Editor/SystemTypeRepairWindow.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/SystemTypeRepairWindow.cs.meta rename to Editor/SystemTypeRepairWindow.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Templates~/DataProvider.txt b/Editor/Templates~/DataProvider.txt similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Templates~/DataProvider.txt rename to Editor/Templates~/DataProvider.txt diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Templates~/DataProviderProfile.txt b/Editor/Templates~/DataProviderProfile.txt similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Templates~/DataProviderProfile.txt rename to Editor/Templates~/DataProviderProfile.txt diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Templates~/Service.txt b/Editor/Templates~/Service.txt similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Templates~/Service.txt rename to Editor/Templates~/Service.txt diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Templates~/ServiceProfile.txt b/Editor/Templates~/ServiceProfile.txt similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Templates~/ServiceProfile.txt rename to Editor/Templates~/ServiceProfile.txt diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Templates~/System.txt b/Editor/Templates~/System.txt similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Templates~/System.txt rename to Editor/Templates~/System.txt diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Templates~/SystemProfile.txt b/Editor/Templates~/SystemProfile.txt similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Templates~/SystemProfile.txt rename to Editor/Templates~/SystemProfile.txt diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Text3DShaderGUI.cs b/Editor/Text3DShaderGUI.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Text3DShaderGUI.cs rename to Editor/Text3DShaderGUI.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Text3DShaderGUI.cs.meta b/Editor/Text3DShaderGUI.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Text3DShaderGUI.cs.meta rename to Editor/Text3DShaderGUI.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities.meta b/Editor/Utilities.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities.meta rename to Editor/Utilities.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/AssemblyDefinitionEditorExtension.cs b/Editor/Utilities/AssemblyDefinitionEditorExtension.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/AssemblyDefinitionEditorExtension.cs rename to Editor/Utilities/AssemblyDefinitionEditorExtension.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/AssemblyDefinitionEditorExtension.cs.meta b/Editor/Utilities/AssemblyDefinitionEditorExtension.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/AssemblyDefinitionEditorExtension.cs.meta rename to Editor/Utilities/AssemblyDefinitionEditorExtension.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/AssemblyDefinitionPreProcessor.cs b/Editor/Utilities/AssemblyDefinitionPreProcessor.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/AssemblyDefinitionPreProcessor.cs rename to Editor/Utilities/AssemblyDefinitionPreProcessor.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/AssemblyDefinitionPreProcessor.cs.meta b/Editor/Utilities/AssemblyDefinitionPreProcessor.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/AssemblyDefinitionPreProcessor.cs.meta rename to Editor/Utilities/AssemblyDefinitionPreProcessor.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/AutoSceneSwitcher.cs b/Editor/Utilities/AutoSceneSwitcher.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/AutoSceneSwitcher.cs rename to Editor/Utilities/AutoSceneSwitcher.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/AutoSceneSwitcher.cs.meta b/Editor/Utilities/AutoSceneSwitcher.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/AutoSceneSwitcher.cs.meta rename to Editor/Utilities/AutoSceneSwitcher.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/BaseMixedRealityProfileInspectorExtensions.cs b/Editor/Utilities/BaseMixedRealityProfileInspectorExtensions.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/BaseMixedRealityProfileInspectorExtensions.cs rename to Editor/Utilities/BaseMixedRealityProfileInspectorExtensions.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/BaseMixedRealityProfileInspectorExtensions.cs.meta b/Editor/Utilities/BaseMixedRealityProfileInspectorExtensions.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/BaseMixedRealityProfileInspectorExtensions.cs.meta rename to Editor/Utilities/BaseMixedRealityProfileInspectorExtensions.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/CanvasEditorExtension.cs b/Editor/Utilities/CanvasEditorExtension.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/CanvasEditorExtension.cs rename to Editor/Utilities/CanvasEditorExtension.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/CanvasEditorExtension.cs.meta b/Editor/Utilities/CanvasEditorExtension.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/CanvasEditorExtension.cs.meta rename to Editor/Utilities/CanvasEditorExtension.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/ChannelPackerWindow.cs b/Editor/Utilities/ChannelPackerWindow.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/ChannelPackerWindow.cs rename to Editor/Utilities/ChannelPackerWindow.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/ChannelPackerWindow.cs.meta b/Editor/Utilities/ChannelPackerWindow.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/ChannelPackerWindow.cs.meta rename to Editor/Utilities/ChannelPackerWindow.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/ControllerMappingUtilities.cs b/Editor/Utilities/ControllerMappingUtilities.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/ControllerMappingUtilities.cs rename to Editor/Utilities/ControllerMappingUtilities.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/ControllerMappingUtilities.cs.meta b/Editor/Utilities/ControllerMappingUtilities.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/ControllerMappingUtilities.cs.meta rename to Editor/Utilities/ControllerMappingUtilities.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/CorePathFinder.cs b/Editor/Utilities/CorePathFinder.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/CorePathFinder.cs rename to Editor/Utilities/CorePathFinder.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/CorePathFinder.cs.meta b/Editor/Utilities/CorePathFinder.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/CorePathFinder.cs.meta rename to Editor/Utilities/CorePathFinder.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/EditorAssemblyReloadManager.cs b/Editor/Utilities/EditorAssemblyReloadManager.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/EditorAssemblyReloadManager.cs rename to Editor/Utilities/EditorAssemblyReloadManager.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/EditorAssemblyReloadManager.cs.meta b/Editor/Utilities/EditorAssemblyReloadManager.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/EditorAssemblyReloadManager.cs.meta rename to Editor/Utilities/EditorAssemblyReloadManager.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/EditorPreferences.cs b/Editor/Utilities/EditorPreferences.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/EditorPreferences.cs rename to Editor/Utilities/EditorPreferences.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/EditorPreferences.cs.meta b/Editor/Utilities/EditorPreferences.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/EditorPreferences.cs.meta rename to Editor/Utilities/EditorPreferences.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/GitUtilities.cs b/Editor/Utilities/GitUtilities.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/GitUtilities.cs rename to Editor/Utilities/GitUtilities.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/GitUtilities.cs.meta b/Editor/Utilities/GitUtilities.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/GitUtilities.cs.meta rename to Editor/Utilities/GitUtilities.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/GuidRegenerator.cs b/Editor/Utilities/GuidRegenerator.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/GuidRegenerator.cs rename to Editor/Utilities/GuidRegenerator.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/GuidRegenerator.cs.meta b/Editor/Utilities/GuidRegenerator.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/GuidRegenerator.cs.meta rename to Editor/Utilities/GuidRegenerator.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/HoverLightInspector.cs b/Editor/Utilities/HoverLightInspector.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/HoverLightInspector.cs rename to Editor/Utilities/HoverLightInspector.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/HoverLightInspector.cs.meta b/Editor/Utilities/HoverLightInspector.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/HoverLightInspector.cs.meta rename to Editor/Utilities/HoverLightInspector.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/IconEditor.cs b/Editor/Utilities/IconEditor.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/IconEditor.cs rename to Editor/Utilities/IconEditor.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/IconEditor.cs.meta b/Editor/Utilities/IconEditor.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/IconEditor.cs.meta rename to Editor/Utilities/IconEditor.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/InputManagerAxis.cs b/Editor/Utilities/InputManagerAxis.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/InputManagerAxis.cs rename to Editor/Utilities/InputManagerAxis.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/InputManagerAxis.cs.meta b/Editor/Utilities/InputManagerAxis.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/InputManagerAxis.cs.meta rename to Editor/Utilities/InputManagerAxis.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/InputManagerAxisType.cs b/Editor/Utilities/InputManagerAxisType.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/InputManagerAxisType.cs rename to Editor/Utilities/InputManagerAxisType.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/InputManagerAxisType.cs.meta b/Editor/Utilities/InputManagerAxisType.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/InputManagerAxisType.cs.meta rename to Editor/Utilities/InputManagerAxisType.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/InputMappingAxisUtility.cs b/Editor/Utilities/InputMappingAxisUtility.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/InputMappingAxisUtility.cs rename to Editor/Utilities/InputMappingAxisUtility.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/InputMappingAxisUtility.cs.meta b/Editor/Utilities/InputMappingAxisUtility.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/InputMappingAxisUtility.cs.meta rename to Editor/Utilities/InputMappingAxisUtility.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/LayerUtilities.cs b/Editor/Utilities/LayerUtilities.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/LayerUtilities.cs rename to Editor/Utilities/LayerUtilities.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/LayerUtilities.cs.meta b/Editor/Utilities/LayerUtilities.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/LayerUtilities.cs.meta rename to Editor/Utilities/LayerUtilities.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/Lines.meta b/Editor/Utilities/Lines.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/Lines.meta rename to Editor/Utilities/Lines.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/Lines/DataProviders.meta b/Editor/Utilities/Lines/DataProviders.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/Lines/DataProviders.meta rename to Editor/Utilities/Lines/DataProviders.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/Lines/DataProviders/BaseMixedRealityLineDataProviderInspector.cs b/Editor/Utilities/Lines/DataProviders/BaseMixedRealityLineDataProviderInspector.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/Lines/DataProviders/BaseMixedRealityLineDataProviderInspector.cs rename to Editor/Utilities/Lines/DataProviders/BaseMixedRealityLineDataProviderInspector.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/Lines/DataProviders/BaseMixedRealityLineDataProviderInspector.cs.meta b/Editor/Utilities/Lines/DataProviders/BaseMixedRealityLineDataProviderInspector.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/Lines/DataProviders/BaseMixedRealityLineDataProviderInspector.cs.meta rename to Editor/Utilities/Lines/DataProviders/BaseMixedRealityLineDataProviderInspector.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/Lines/DataProviders/BezierDataProviderInspector.cs b/Editor/Utilities/Lines/DataProviders/BezierDataProviderInspector.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/Lines/DataProviders/BezierDataProviderInspector.cs rename to Editor/Utilities/Lines/DataProviders/BezierDataProviderInspector.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/Lines/DataProviders/BezierDataProviderInspector.cs.meta b/Editor/Utilities/Lines/DataProviders/BezierDataProviderInspector.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/Lines/DataProviders/BezierDataProviderInspector.cs.meta rename to Editor/Utilities/Lines/DataProviders/BezierDataProviderInspector.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/Lines/DataProviders/EllipseLineDataProviderInspector.cs b/Editor/Utilities/Lines/DataProviders/EllipseLineDataProviderInspector.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/Lines/DataProviders/EllipseLineDataProviderInspector.cs rename to Editor/Utilities/Lines/DataProviders/EllipseLineDataProviderInspector.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/Lines/DataProviders/EllipseLineDataProviderInspector.cs.meta b/Editor/Utilities/Lines/DataProviders/EllipseLineDataProviderInspector.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/Lines/DataProviders/EllipseLineDataProviderInspector.cs.meta rename to Editor/Utilities/Lines/DataProviders/EllipseLineDataProviderInspector.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/Lines/DataProviders/ParabolaPhysicalLineDataProviderInspector.cs b/Editor/Utilities/Lines/DataProviders/ParabolaPhysicalLineDataProviderInspector.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/Lines/DataProviders/ParabolaPhysicalLineDataProviderInspector.cs rename to Editor/Utilities/Lines/DataProviders/ParabolaPhysicalLineDataProviderInspector.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/Lines/DataProviders/ParabolaPhysicalLineDataProviderInspector.cs.meta b/Editor/Utilities/Lines/DataProviders/ParabolaPhysicalLineDataProviderInspector.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/Lines/DataProviders/ParabolaPhysicalLineDataProviderInspector.cs.meta rename to Editor/Utilities/Lines/DataProviders/ParabolaPhysicalLineDataProviderInspector.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/Lines/DataProviders/ParabolicConstrainedLineDataProviderInspector.cs b/Editor/Utilities/Lines/DataProviders/ParabolicConstrainedLineDataProviderInspector.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/Lines/DataProviders/ParabolicConstrainedLineDataProviderInspector.cs rename to Editor/Utilities/Lines/DataProviders/ParabolicConstrainedLineDataProviderInspector.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/Lines/DataProviders/ParabolicConstrainedLineDataProviderInspector.cs.meta b/Editor/Utilities/Lines/DataProviders/ParabolicConstrainedLineDataProviderInspector.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/Lines/DataProviders/ParabolicConstrainedLineDataProviderInspector.cs.meta rename to Editor/Utilities/Lines/DataProviders/ParabolicConstrainedLineDataProviderInspector.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/Lines/DataProviders/RectangleLineDataProviderInspector.cs b/Editor/Utilities/Lines/DataProviders/RectangleLineDataProviderInspector.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/Lines/DataProviders/RectangleLineDataProviderInspector.cs rename to Editor/Utilities/Lines/DataProviders/RectangleLineDataProviderInspector.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/Lines/DataProviders/RectangleLineDataProviderInspector.cs.meta b/Editor/Utilities/Lines/DataProviders/RectangleLineDataProviderInspector.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/Lines/DataProviders/RectangleLineDataProviderInspector.cs.meta rename to Editor/Utilities/Lines/DataProviders/RectangleLineDataProviderInspector.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/Lines/DataProviders/SimpleLineDataProviderInspector.cs b/Editor/Utilities/Lines/DataProviders/SimpleLineDataProviderInspector.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/Lines/DataProviders/SimpleLineDataProviderInspector.cs rename to Editor/Utilities/Lines/DataProviders/SimpleLineDataProviderInspector.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/Lines/DataProviders/SimpleLineDataProviderInspector.cs.meta b/Editor/Utilities/Lines/DataProviders/SimpleLineDataProviderInspector.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/Lines/DataProviders/SimpleLineDataProviderInspector.cs.meta rename to Editor/Utilities/Lines/DataProviders/SimpleLineDataProviderInspector.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/Lines/DataProviders/SplineDataProviderInspector.cs b/Editor/Utilities/Lines/DataProviders/SplineDataProviderInspector.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/Lines/DataProviders/SplineDataProviderInspector.cs rename to Editor/Utilities/Lines/DataProviders/SplineDataProviderInspector.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/Lines/DataProviders/SplineDataProviderInspector.cs.meta b/Editor/Utilities/Lines/DataProviders/SplineDataProviderInspector.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/Lines/DataProviders/SplineDataProviderInspector.cs.meta rename to Editor/Utilities/Lines/DataProviders/SplineDataProviderInspector.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/MixedRealityEditorSettings.cs b/Editor/Utilities/MixedRealityEditorSettings.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/MixedRealityEditorSettings.cs rename to Editor/Utilities/MixedRealityEditorSettings.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/MixedRealityEditorSettings.cs.meta b/Editor/Utilities/MixedRealityEditorSettings.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/MixedRealityEditorSettings.cs.meta rename to Editor/Utilities/MixedRealityEditorSettings.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/MixedRealityInspectorUtility.cs b/Editor/Utilities/MixedRealityInspectorUtility.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/MixedRealityInspectorUtility.cs rename to Editor/Utilities/MixedRealityInspectorUtility.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/MixedRealityInspectorUtility.cs.meta b/Editor/Utilities/MixedRealityInspectorUtility.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/MixedRealityInspectorUtility.cs.meta rename to Editor/Utilities/MixedRealityInspectorUtility.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/MixedRealityServiceWizard.cs b/Editor/Utilities/MixedRealityServiceWizard.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/MixedRealityServiceWizard.cs rename to Editor/Utilities/MixedRealityServiceWizard.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/MixedRealityServiceWizard.cs.meta b/Editor/Utilities/MixedRealityServiceWizard.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/MixedRealityServiceWizard.cs.meta rename to Editor/Utilities/MixedRealityServiceWizard.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/PathFinderUtility.cs b/Editor/Utilities/PathFinderUtility.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/PathFinderUtility.cs rename to Editor/Utilities/PathFinderUtility.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/PathFinderUtility.cs.meta b/Editor/Utilities/PathFinderUtility.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/PathFinderUtility.cs.meta rename to Editor/Utilities/PathFinderUtility.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/Rendering.meta b/Editor/Utilities/Rendering.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/Rendering.meta rename to Editor/Utilities/Rendering.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/Rendering/ClippingBoxInspector.cs b/Editor/Utilities/Rendering/ClippingBoxInspector.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/Rendering/ClippingBoxInspector.cs rename to Editor/Utilities/Rendering/ClippingBoxInspector.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/Rendering/ClippingBoxInspector.cs.meta b/Editor/Utilities/Rendering/ClippingBoxInspector.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/Rendering/ClippingBoxInspector.cs.meta rename to Editor/Utilities/Rendering/ClippingBoxInspector.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/Rendering/ClippingPlaneInspector.cs b/Editor/Utilities/Rendering/ClippingPlaneInspector.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/Rendering/ClippingPlaneInspector.cs rename to Editor/Utilities/Rendering/ClippingPlaneInspector.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/Rendering/ClippingPlaneInspector.cs.meta b/Editor/Utilities/Rendering/ClippingPlaneInspector.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/Rendering/ClippingPlaneInspector.cs.meta rename to Editor/Utilities/Rendering/ClippingPlaneInspector.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/Rendering/ClippingSphereInspector.cs b/Editor/Utilities/Rendering/ClippingSphereInspector.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/Rendering/ClippingSphereInspector.cs rename to Editor/Utilities/Rendering/ClippingSphereInspector.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/Rendering/ClippingSphereInspector.cs.meta b/Editor/Utilities/Rendering/ClippingSphereInspector.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/Rendering/ClippingSphereInspector.cs.meta rename to Editor/Utilities/Rendering/ClippingSphereInspector.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/SceneHelpers.cs b/Editor/Utilities/SceneHelpers.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/SceneHelpers.cs rename to Editor/Utilities/SceneHelpers.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/SceneHelpers.cs.meta b/Editor/Utilities/SceneHelpers.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/SceneHelpers.cs.meta rename to Editor/Utilities/SceneHelpers.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/SymbolicLinks.meta b/Editor/Utilities/SymbolicLinks.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/SymbolicLinks.meta rename to Editor/Utilities/SymbolicLinks.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/SymbolicLinks/SymbolicLink.cs b/Editor/Utilities/SymbolicLinks/SymbolicLink.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/SymbolicLinks/SymbolicLink.cs rename to Editor/Utilities/SymbolicLinks/SymbolicLink.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/SymbolicLinks/SymbolicLink.cs.meta b/Editor/Utilities/SymbolicLinks/SymbolicLink.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/SymbolicLinks/SymbolicLink.cs.meta rename to Editor/Utilities/SymbolicLinks/SymbolicLink.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/SymbolicLinks/SymbolicLinkSettings.cs b/Editor/Utilities/SymbolicLinks/SymbolicLinkSettings.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/SymbolicLinks/SymbolicLinkSettings.cs rename to Editor/Utilities/SymbolicLinks/SymbolicLinkSettings.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/SymbolicLinks/SymbolicLinkSettings.cs.meta b/Editor/Utilities/SymbolicLinks/SymbolicLinkSettings.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/SymbolicLinks/SymbolicLinkSettings.cs.meta rename to Editor/Utilities/SymbolicLinks/SymbolicLinkSettings.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/SymbolicLinks/SymbolicLinkSettingsInspector.cs b/Editor/Utilities/SymbolicLinks/SymbolicLinkSettingsInspector.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/SymbolicLinks/SymbolicLinkSettingsInspector.cs rename to Editor/Utilities/SymbolicLinks/SymbolicLinkSettingsInspector.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/SymbolicLinks/SymbolicLinkSettingsInspector.cs.meta b/Editor/Utilities/SymbolicLinks/SymbolicLinkSettingsInspector.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/SymbolicLinks/SymbolicLinkSettingsInspector.cs.meta rename to Editor/Utilities/SymbolicLinks/SymbolicLinkSettingsInspector.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/SymbolicLinks/SymbolicLinker.cs b/Editor/Utilities/SymbolicLinks/SymbolicLinker.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/SymbolicLinks/SymbolicLinker.cs rename to Editor/Utilities/SymbolicLinks/SymbolicLinker.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/SymbolicLinks/SymbolicLinker.cs.meta b/Editor/Utilities/SymbolicLinks/SymbolicLinker.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/SymbolicLinks/SymbolicLinker.cs.meta rename to Editor/Utilities/SymbolicLinks/SymbolicLinker.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/SymbolicLinks/SymbolicLinkerWindow.cs b/Editor/Utilities/SymbolicLinks/SymbolicLinkerWindow.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/SymbolicLinks/SymbolicLinkerWindow.cs rename to Editor/Utilities/SymbolicLinks/SymbolicLinkerWindow.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/SymbolicLinks/SymbolicLinkerWindow.cs.meta b/Editor/Utilities/SymbolicLinks/SymbolicLinkerWindow.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/SymbolicLinks/SymbolicLinkerWindow.cs.meta rename to Editor/Utilities/SymbolicLinks/SymbolicLinkerWindow.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/USB.meta b/Editor/Utilities/USB.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/USB.meta rename to Editor/Utilities/USB.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/USB/USBDeviceInfo.cs b/Editor/Utilities/USB/USBDeviceInfo.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/USB/USBDeviceInfo.cs rename to Editor/Utilities/USB/USBDeviceInfo.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/USB/USBDeviceInfo.cs.meta b/Editor/Utilities/USB/USBDeviceInfo.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/USB/USBDeviceInfo.cs.meta rename to Editor/Utilities/USB/USBDeviceInfo.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/USB/USBDeviceListener.cs b/Editor/Utilities/USB/USBDeviceListener.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/USB/USBDeviceListener.cs rename to Editor/Utilities/USB/USBDeviceListener.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/USB/USBDeviceListener.cs.meta b/Editor/Utilities/USB/USBDeviceListener.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/USB/USBDeviceListener.cs.meta rename to Editor/Utilities/USB/USBDeviceListener.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/UnityFileHelper.cs b/Editor/Utilities/UnityFileHelper.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/UnityFileHelper.cs rename to Editor/Utilities/UnityFileHelper.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/UnityFileHelper.cs.meta b/Editor/Utilities/UnityFileHelper.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/UnityFileHelper.cs.meta rename to Editor/Utilities/UnityFileHelper.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/XRPipelineMonitor.cs b/Editor/Utilities/XRPipelineMonitor.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/XRPipelineMonitor.cs rename to Editor/Utilities/XRPipelineMonitor.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/XRPipelineMonitor.cs.meta b/Editor/Utilities/XRPipelineMonitor.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/Utilities/XRPipelineMonitor.cs.meta rename to Editor/Utilities/XRPipelineMonitor.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/XRTK.Editor.asmdef b/Editor/XRTK.Editor.asmdef similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/XRTK.Editor.asmdef rename to Editor/XRTK.Editor.asmdef diff --git a/XRTK-Core/Packages/com.xrtk.core/Editor/XRTK.Editor.asmdef.meta b/Editor/XRTK.Editor.asmdef.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Editor/XRTK.Editor.asmdef.meta rename to Editor/XRTK.Editor.asmdef.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/LICENSE.md.meta b/LICENSE.md.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/LICENSE.md.meta rename to LICENSE.md.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/README.md.meta b/README.md.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/README.md.meta rename to README.md.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime.meta b/Runtime.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime.meta rename to Runtime.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/AssemblyInfo.cs b/Runtime/AssemblyInfo.cs similarity index 96% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/AssemblyInfo.cs rename to Runtime/AssemblyInfo.cs index 63a8f23a0..d5983312d 100644 --- a/XRTK-Core/Packages/com.xrtk.core/Runtime/AssemblyInfo.cs +++ b/Runtime/AssemblyInfo.cs @@ -6,7 +6,7 @@ using System.Reflection; using System.Runtime.CompilerServices; -[assembly: AssemblyVersion("0.3.5")] +[assembly: AssemblyVersion("0.3.6")] [assembly: AssemblyTitle("com.xrtk.core")] [assembly: AssemblyCompany("XRTK")] [assembly: AssemblyCopyright("Copyright (c) XRTK. All rights reserved.")] diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/AssemblyInfo.cs.meta b/Runtime/AssemblyInfo.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/AssemblyInfo.cs.meta rename to Runtime/AssemblyInfo.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Attributes.meta b/Runtime/Attributes.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Attributes.meta rename to Runtime/Attributes.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Attributes/AxisConstraintAttribute.cs b/Runtime/Attributes/AxisConstraintAttribute.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Attributes/AxisConstraintAttribute.cs rename to Runtime/Attributes/AxisConstraintAttribute.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Attributes/AxisConstraintAttribute.cs.meta b/Runtime/Attributes/AxisConstraintAttribute.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Attributes/AxisConstraintAttribute.cs.meta rename to Runtime/Attributes/AxisConstraintAttribute.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Attributes/EnumFlagsAttribute.cs b/Runtime/Attributes/EnumFlagsAttribute.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Attributes/EnumFlagsAttribute.cs rename to Runtime/Attributes/EnumFlagsAttribute.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Attributes/EnumFlagsAttribute.cs.meta b/Runtime/Attributes/EnumFlagsAttribute.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Attributes/EnumFlagsAttribute.cs.meta rename to Runtime/Attributes/EnumFlagsAttribute.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Attributes/ExtendsAttribute.cs b/Runtime/Attributes/ExtendsAttribute.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Attributes/ExtendsAttribute.cs rename to Runtime/Attributes/ExtendsAttribute.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Attributes/ExtendsAttribute.cs.meta b/Runtime/Attributes/ExtendsAttribute.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Attributes/ExtendsAttribute.cs.meta rename to Runtime/Attributes/ExtendsAttribute.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Attributes/Il2CppSetOptionAttribute.cs b/Runtime/Attributes/Il2CppSetOptionAttribute.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Attributes/Il2CppSetOptionAttribute.cs rename to Runtime/Attributes/Il2CppSetOptionAttribute.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Attributes/Il2CppSetOptionAttribute.cs.meta b/Runtime/Attributes/Il2CppSetOptionAttribute.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Attributes/Il2CppSetOptionAttribute.cs.meta rename to Runtime/Attributes/Il2CppSetOptionAttribute.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Attributes/ImplementsAttribute.cs b/Runtime/Attributes/ImplementsAttribute.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Attributes/ImplementsAttribute.cs rename to Runtime/Attributes/ImplementsAttribute.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Attributes/ImplementsAttribute.cs.meta b/Runtime/Attributes/ImplementsAttribute.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Attributes/ImplementsAttribute.cs.meta rename to Runtime/Attributes/ImplementsAttribute.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Attributes/PhysicsLayerAttribute.cs b/Runtime/Attributes/PhysicsLayerAttribute.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Attributes/PhysicsLayerAttribute.cs rename to Runtime/Attributes/PhysicsLayerAttribute.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Attributes/PhysicsLayerAttribute.cs.meta b/Runtime/Attributes/PhysicsLayerAttribute.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Attributes/PhysicsLayerAttribute.cs.meta rename to Runtime/Attributes/PhysicsLayerAttribute.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Attributes/PrefabAttribute.cs b/Runtime/Attributes/PrefabAttribute.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Attributes/PrefabAttribute.cs rename to Runtime/Attributes/PrefabAttribute.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Attributes/PrefabAttribute.cs.meta b/Runtime/Attributes/PrefabAttribute.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Attributes/PrefabAttribute.cs.meta rename to Runtime/Attributes/PrefabAttribute.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Attributes/RuntimePlatformAttribute.cs b/Runtime/Attributes/RuntimePlatformAttribute.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Attributes/RuntimePlatformAttribute.cs rename to Runtime/Attributes/RuntimePlatformAttribute.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Attributes/RuntimePlatformAttribute.cs.meta b/Runtime/Attributes/RuntimePlatformAttribute.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Attributes/RuntimePlatformAttribute.cs.meta rename to Runtime/Attributes/RuntimePlatformAttribute.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Attributes/SystemTypeAttribute.cs b/Runtime/Attributes/SystemTypeAttribute.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Attributes/SystemTypeAttribute.cs rename to Runtime/Attributes/SystemTypeAttribute.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Attributes/SystemTypeAttribute.cs.meta b/Runtime/Attributes/SystemTypeAttribute.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Attributes/SystemTypeAttribute.cs.meta rename to Runtime/Attributes/SystemTypeAttribute.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Attributes/Vector3RangeAttribute.cs b/Runtime/Attributes/Vector3RangeAttribute.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Attributes/Vector3RangeAttribute.cs rename to Runtime/Attributes/Vector3RangeAttribute.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Attributes/Vector3RangeAttribute.cs.meta b/Runtime/Attributes/Vector3RangeAttribute.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Attributes/Vector3RangeAttribute.cs.meta rename to Runtime/Attributes/Vector3RangeAttribute.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions.meta b/Runtime/Definitions.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions.meta rename to Runtime/Definitions.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/BaseMixedRealityExtensionDataProviderProfile.cs b/Runtime/Definitions/BaseMixedRealityExtensionDataProviderProfile.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/BaseMixedRealityExtensionDataProviderProfile.cs rename to Runtime/Definitions/BaseMixedRealityExtensionDataProviderProfile.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/BaseMixedRealityExtensionDataProviderProfile.cs.meta b/Runtime/Definitions/BaseMixedRealityExtensionDataProviderProfile.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/BaseMixedRealityExtensionDataProviderProfile.cs.meta rename to Runtime/Definitions/BaseMixedRealityExtensionDataProviderProfile.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/BaseMixedRealityExtensionServiceProfile.cs b/Runtime/Definitions/BaseMixedRealityExtensionServiceProfile.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/BaseMixedRealityExtensionServiceProfile.cs rename to Runtime/Definitions/BaseMixedRealityExtensionServiceProfile.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/BaseMixedRealityExtensionServiceProfile.cs.meta b/Runtime/Definitions/BaseMixedRealityExtensionServiceProfile.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/BaseMixedRealityExtensionServiceProfile.cs.meta rename to Runtime/Definitions/BaseMixedRealityExtensionServiceProfile.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/BaseMixedRealityProfile.cs b/Runtime/Definitions/BaseMixedRealityProfile.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/BaseMixedRealityProfile.cs rename to Runtime/Definitions/BaseMixedRealityProfile.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/BaseMixedRealityProfile.cs.meta b/Runtime/Definitions/BaseMixedRealityProfile.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/BaseMixedRealityProfile.cs.meta rename to Runtime/Definitions/BaseMixedRealityProfile.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/BaseMixedRealityServiceProfile.cs b/Runtime/Definitions/BaseMixedRealityServiceProfile.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/BaseMixedRealityServiceProfile.cs rename to Runtime/Definitions/BaseMixedRealityServiceProfile.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/BaseMixedRealityServiceProfile.cs.meta b/Runtime/Definitions/BaseMixedRealityServiceProfile.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/BaseMixedRealityServiceProfile.cs.meta rename to Runtime/Definitions/BaseMixedRealityServiceProfile.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/BoundarySystem.meta b/Runtime/Definitions/BoundarySystem.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/BoundarySystem.meta rename to Runtime/Definitions/BoundarySystem.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/BoundarySystem/BoundaryVisibility.cs b/Runtime/Definitions/BoundarySystem/BoundaryVisibility.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/BoundarySystem/BoundaryVisibility.cs rename to Runtime/Definitions/BoundarySystem/BoundaryVisibility.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/BoundarySystem/BoundaryVisibility.cs.meta b/Runtime/Definitions/BoundarySystem/BoundaryVisibility.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/BoundarySystem/BoundaryVisibility.cs.meta rename to Runtime/Definitions/BoundarySystem/BoundaryVisibility.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/BoundarySystem/Edge.cs b/Runtime/Definitions/BoundarySystem/Edge.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/BoundarySystem/Edge.cs rename to Runtime/Definitions/BoundarySystem/Edge.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/BoundarySystem/Edge.cs.meta b/Runtime/Definitions/BoundarySystem/Edge.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/BoundarySystem/Edge.cs.meta rename to Runtime/Definitions/BoundarySystem/Edge.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/BoundarySystem/InscribedRectangle.cs b/Runtime/Definitions/BoundarySystem/InscribedRectangle.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/BoundarySystem/InscribedRectangle.cs rename to Runtime/Definitions/BoundarySystem/InscribedRectangle.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/BoundarySystem/InscribedRectangle.cs.meta b/Runtime/Definitions/BoundarySystem/InscribedRectangle.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/BoundarySystem/InscribedRectangle.cs.meta rename to Runtime/Definitions/BoundarySystem/InscribedRectangle.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/BoundarySystem/MixedRealityBoundaryProfile.cs b/Runtime/Definitions/BoundarySystem/MixedRealityBoundaryProfile.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/BoundarySystem/MixedRealityBoundaryProfile.cs rename to Runtime/Definitions/BoundarySystem/MixedRealityBoundaryProfile.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/BoundarySystem/MixedRealityBoundaryProfile.cs.meta b/Runtime/Definitions/BoundarySystem/MixedRealityBoundaryProfile.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/BoundarySystem/MixedRealityBoundaryProfile.cs.meta rename to Runtime/Definitions/BoundarySystem/MixedRealityBoundaryProfile.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/BoundarySystem/ProximityAlert.cs b/Runtime/Definitions/BoundarySystem/ProximityAlert.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/BoundarySystem/ProximityAlert.cs rename to Runtime/Definitions/BoundarySystem/ProximityAlert.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/BoundarySystem/ProximityAlert.cs.meta b/Runtime/Definitions/BoundarySystem/ProximityAlert.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/BoundarySystem/ProximityAlert.cs.meta rename to Runtime/Definitions/BoundarySystem/ProximityAlert.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/CameraSystem.meta b/Runtime/Definitions/CameraSystem.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/CameraSystem.meta rename to Runtime/Definitions/CameraSystem.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/CameraSystem/BaseMixedRealityCameraDataProviderProfile.cs b/Runtime/Definitions/CameraSystem/BaseMixedRealityCameraDataProviderProfile.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/CameraSystem/BaseMixedRealityCameraDataProviderProfile.cs rename to Runtime/Definitions/CameraSystem/BaseMixedRealityCameraDataProviderProfile.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/CameraSystem/BaseMixedRealityCameraDataProviderProfile.cs.meta b/Runtime/Definitions/CameraSystem/BaseMixedRealityCameraDataProviderProfile.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/CameraSystem/BaseMixedRealityCameraDataProviderProfile.cs.meta rename to Runtime/Definitions/CameraSystem/BaseMixedRealityCameraDataProviderProfile.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/CameraSystem/MixedRealityCameraSystemProfile.cs b/Runtime/Definitions/CameraSystem/MixedRealityCameraSystemProfile.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/CameraSystem/MixedRealityCameraSystemProfile.cs rename to Runtime/Definitions/CameraSystem/MixedRealityCameraSystemProfile.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/CameraSystem/MixedRealityCameraSystemProfile.cs.meta b/Runtime/Definitions/CameraSystem/MixedRealityCameraSystemProfile.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/CameraSystem/MixedRealityCameraSystemProfile.cs.meta rename to Runtime/Definitions/CameraSystem/MixedRealityCameraSystemProfile.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers.meta b/Runtime/Definitions/Controllers.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers.meta rename to Runtime/Definitions/Controllers.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/BaseMixedRealityControllerDataProviderProfile.cs b/Runtime/Definitions/Controllers/BaseMixedRealityControllerDataProviderProfile.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/BaseMixedRealityControllerDataProviderProfile.cs rename to Runtime/Definitions/Controllers/BaseMixedRealityControllerDataProviderProfile.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/BaseMixedRealityControllerDataProviderProfile.cs.meta b/Runtime/Definitions/Controllers/BaseMixedRealityControllerDataProviderProfile.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/BaseMixedRealityControllerDataProviderProfile.cs.meta rename to Runtime/Definitions/Controllers/BaseMixedRealityControllerDataProviderProfile.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/ControllerDefinition.cs b/Runtime/Definitions/Controllers/ControllerDefinition.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/ControllerDefinition.cs rename to Runtime/Definitions/Controllers/ControllerDefinition.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/ControllerDefinition.cs.meta b/Runtime/Definitions/Controllers/ControllerDefinition.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/ControllerDefinition.cs.meta rename to Runtime/Definitions/Controllers/ControllerDefinition.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Hands.meta b/Runtime/Definitions/Controllers/Hands.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Hands.meta rename to Runtime/Definitions/Controllers/Hands.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Hands/BaseHandControllerDataProviderProfile.cs b/Runtime/Definitions/Controllers/Hands/BaseHandControllerDataProviderProfile.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Hands/BaseHandControllerDataProviderProfile.cs rename to Runtime/Definitions/Controllers/Hands/BaseHandControllerDataProviderProfile.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Hands/BaseHandControllerDataProviderProfile.cs.meta b/Runtime/Definitions/Controllers/Hands/BaseHandControllerDataProviderProfile.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Hands/BaseHandControllerDataProviderProfile.cs.meta rename to Runtime/Definitions/Controllers/Hands/BaseHandControllerDataProviderProfile.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Hands/HandBoundsLOD.cs b/Runtime/Definitions/Controllers/Hands/HandBoundsLOD.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Hands/HandBoundsLOD.cs rename to Runtime/Definitions/Controllers/Hands/HandBoundsLOD.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Hands/HandBoundsLOD.cs.meta b/Runtime/Definitions/Controllers/Hands/HandBoundsLOD.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Hands/HandBoundsLOD.cs.meta rename to Runtime/Definitions/Controllers/Hands/HandBoundsLOD.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Hands/HandControllerPoseProfile.cs b/Runtime/Definitions/Controllers/Hands/HandControllerPoseProfile.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Hands/HandControllerPoseProfile.cs rename to Runtime/Definitions/Controllers/Hands/HandControllerPoseProfile.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Hands/HandControllerPoseProfile.cs.meta b/Runtime/Definitions/Controllers/Hands/HandControllerPoseProfile.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Hands/HandControllerPoseProfile.cs.meta rename to Runtime/Definitions/Controllers/Hands/HandControllerPoseProfile.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Hands/HandData.cs b/Runtime/Definitions/Controllers/Hands/HandData.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Hands/HandData.cs rename to Runtime/Definitions/Controllers/Hands/HandData.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Hands/HandData.cs.meta b/Runtime/Definitions/Controllers/Hands/HandData.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Hands/HandData.cs.meta rename to Runtime/Definitions/Controllers/Hands/HandData.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Hands/HandFinger.cs b/Runtime/Definitions/Controllers/Hands/HandFinger.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Hands/HandFinger.cs rename to Runtime/Definitions/Controllers/Hands/HandFinger.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Hands/HandFinger.cs.meta b/Runtime/Definitions/Controllers/Hands/HandFinger.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Hands/HandFinger.cs.meta rename to Runtime/Definitions/Controllers/Hands/HandFinger.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Hands/HandMeshData.cs b/Runtime/Definitions/Controllers/Hands/HandMeshData.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Hands/HandMeshData.cs rename to Runtime/Definitions/Controllers/Hands/HandMeshData.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Hands/HandMeshData.cs.meta b/Runtime/Definitions/Controllers/Hands/HandMeshData.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Hands/HandMeshData.cs.meta rename to Runtime/Definitions/Controllers/Hands/HandMeshData.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Hands/HandRenderingMode.cs b/Runtime/Definitions/Controllers/Hands/HandRenderingMode.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Hands/HandRenderingMode.cs rename to Runtime/Definitions/Controllers/Hands/HandRenderingMode.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Hands/HandRenderingMode.cs.meta b/Runtime/Definitions/Controllers/Hands/HandRenderingMode.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Hands/HandRenderingMode.cs.meta rename to Runtime/Definitions/Controllers/Hands/HandRenderingMode.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Hands/RecordedHandJoint.cs b/Runtime/Definitions/Controllers/Hands/RecordedHandJoint.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Hands/RecordedHandJoint.cs rename to Runtime/Definitions/Controllers/Hands/RecordedHandJoint.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Hands/RecordedHandJoint.cs.meta b/Runtime/Definitions/Controllers/Hands/RecordedHandJoint.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Hands/RecordedHandJoint.cs.meta rename to Runtime/Definitions/Controllers/Hands/RecordedHandJoint.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Hands/RecordedHandJoints.cs b/Runtime/Definitions/Controllers/Hands/RecordedHandJoints.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Hands/RecordedHandJoints.cs rename to Runtime/Definitions/Controllers/Hands/RecordedHandJoints.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Hands/RecordedHandJoints.cs.meta b/Runtime/Definitions/Controllers/Hands/RecordedHandJoints.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Hands/RecordedHandJoints.cs.meta rename to Runtime/Definitions/Controllers/Hands/RecordedHandJoints.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Hands/TrackedHandBounds.cs b/Runtime/Definitions/Controllers/Hands/TrackedHandBounds.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Hands/TrackedHandBounds.cs rename to Runtime/Definitions/Controllers/Hands/TrackedHandBounds.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Hands/TrackedHandBounds.cs.meta b/Runtime/Definitions/Controllers/Hands/TrackedHandBounds.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Hands/TrackedHandBounds.cs.meta rename to Runtime/Definitions/Controllers/Hands/TrackedHandBounds.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Hands/TrackedHandJoint.cs b/Runtime/Definitions/Controllers/Hands/TrackedHandJoint.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Hands/TrackedHandJoint.cs rename to Runtime/Definitions/Controllers/Hands/TrackedHandJoint.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Hands/TrackedHandJoint.cs.meta b/Runtime/Definitions/Controllers/Hands/TrackedHandJoint.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Hands/TrackedHandJoint.cs.meta rename to Runtime/Definitions/Controllers/Hands/TrackedHandJoint.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/MixedRealityControllerMappingProfile.cs b/Runtime/Definitions/Controllers/MixedRealityControllerMappingProfile.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/MixedRealityControllerMappingProfile.cs rename to Runtime/Definitions/Controllers/MixedRealityControllerMappingProfile.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/MixedRealityControllerMappingProfile.cs.meta b/Runtime/Definitions/Controllers/MixedRealityControllerMappingProfile.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/MixedRealityControllerMappingProfile.cs.meta rename to Runtime/Definitions/Controllers/MixedRealityControllerMappingProfile.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/MixedRealityControllerVisualizationProfile.cs b/Runtime/Definitions/Controllers/MixedRealityControllerVisualizationProfile.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/MixedRealityControllerVisualizationProfile.cs rename to Runtime/Definitions/Controllers/MixedRealityControllerVisualizationProfile.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/MixedRealityControllerVisualizationProfile.cs.meta b/Runtime/Definitions/Controllers/MixedRealityControllerVisualizationProfile.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/MixedRealityControllerVisualizationProfile.cs.meta rename to Runtime/Definitions/Controllers/MixedRealityControllerVisualizationProfile.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/MixedRealityInteractionMappingProfile.cs b/Runtime/Definitions/Controllers/MixedRealityInteractionMappingProfile.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/MixedRealityInteractionMappingProfile.cs rename to Runtime/Definitions/Controllers/MixedRealityInteractionMappingProfile.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/MixedRealityInteractionMappingProfile.cs.meta b/Runtime/Definitions/Controllers/MixedRealityInteractionMappingProfile.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/MixedRealityInteractionMappingProfile.cs.meta rename to Runtime/Definitions/Controllers/MixedRealityInteractionMappingProfile.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/OpenVR.meta b/Runtime/Definitions/Controllers/OpenVR.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/OpenVR.meta rename to Runtime/Definitions/Controllers/OpenVR.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/OpenVR/OpenVRControllerDataProviderProfile.cs b/Runtime/Definitions/Controllers/OpenVR/OpenVRControllerDataProviderProfile.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/OpenVR/OpenVRControllerDataProviderProfile.cs rename to Runtime/Definitions/Controllers/OpenVR/OpenVRControllerDataProviderProfile.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/OpenVR/OpenVRControllerDataProviderProfile.cs.meta b/Runtime/Definitions/Controllers/OpenVR/OpenVRControllerDataProviderProfile.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/OpenVR/OpenVRControllerDataProviderProfile.cs.meta rename to Runtime/Definitions/Controllers/OpenVR/OpenVRControllerDataProviderProfile.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Simulation.meta b/Runtime/Definitions/Controllers/Simulation.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Simulation.meta rename to Runtime/Definitions/Controllers/Simulation.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Simulation/Hands.meta b/Runtime/Definitions/Controllers/Simulation/Hands.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Simulation/Hands.meta rename to Runtime/Definitions/Controllers/Simulation/Hands.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Simulation/Hands/SimulatedHandControllerDataProviderProfile.cs b/Runtime/Definitions/Controllers/Simulation/Hands/SimulatedHandControllerDataProviderProfile.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Simulation/Hands/SimulatedHandControllerDataProviderProfile.cs rename to Runtime/Definitions/Controllers/Simulation/Hands/SimulatedHandControllerDataProviderProfile.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Simulation/Hands/SimulatedHandControllerDataProviderProfile.cs.meta b/Runtime/Definitions/Controllers/Simulation/Hands/SimulatedHandControllerDataProviderProfile.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Simulation/Hands/SimulatedHandControllerDataProviderProfile.cs.meta rename to Runtime/Definitions/Controllers/Simulation/Hands/SimulatedHandControllerDataProviderProfile.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Simulation/Hands/SimulatedHandControllerPose.cs b/Runtime/Definitions/Controllers/Simulation/Hands/SimulatedHandControllerPose.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Simulation/Hands/SimulatedHandControllerPose.cs rename to Runtime/Definitions/Controllers/Simulation/Hands/SimulatedHandControllerPose.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Simulation/Hands/SimulatedHandControllerPose.cs.meta b/Runtime/Definitions/Controllers/Simulation/Hands/SimulatedHandControllerPose.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Simulation/Hands/SimulatedHandControllerPose.cs.meta rename to Runtime/Definitions/Controllers/Simulation/Hands/SimulatedHandControllerPose.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Simulation/SimulatedControllerDataProviderProfile.cs b/Runtime/Definitions/Controllers/Simulation/SimulatedControllerDataProviderProfile.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Simulation/SimulatedControllerDataProviderProfile.cs rename to Runtime/Definitions/Controllers/Simulation/SimulatedControllerDataProviderProfile.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Simulation/SimulatedControllerDataProviderProfile.cs.meta b/Runtime/Definitions/Controllers/Simulation/SimulatedControllerDataProviderProfile.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/Simulation/SimulatedControllerDataProviderProfile.cs.meta rename to Runtime/Definitions/Controllers/Simulation/SimulatedControllerDataProviderProfile.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/UnityInput.meta b/Runtime/Definitions/Controllers/UnityInput.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/UnityInput.meta rename to Runtime/Definitions/Controllers/UnityInput.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/UnityInput/MouseControllerDataProviderProfile.cs b/Runtime/Definitions/Controllers/UnityInput/MouseControllerDataProviderProfile.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/UnityInput/MouseControllerDataProviderProfile.cs rename to Runtime/Definitions/Controllers/UnityInput/MouseControllerDataProviderProfile.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/UnityInput/MouseControllerDataProviderProfile.cs.meta b/Runtime/Definitions/Controllers/UnityInput/MouseControllerDataProviderProfile.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/UnityInput/MouseControllerDataProviderProfile.cs.meta rename to Runtime/Definitions/Controllers/UnityInput/MouseControllerDataProviderProfile.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/UnityInput/TouchScreenControllerDataProviderProfile.cs b/Runtime/Definitions/Controllers/UnityInput/TouchScreenControllerDataProviderProfile.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/UnityInput/TouchScreenControllerDataProviderProfile.cs rename to Runtime/Definitions/Controllers/UnityInput/TouchScreenControllerDataProviderProfile.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/UnityInput/TouchScreenControllerDataProviderProfile.cs.meta b/Runtime/Definitions/Controllers/UnityInput/TouchScreenControllerDataProviderProfile.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/UnityInput/TouchScreenControllerDataProviderProfile.cs.meta rename to Runtime/Definitions/Controllers/UnityInput/TouchScreenControllerDataProviderProfile.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/UnityInput/UnityInputControllerDataProfile.cs b/Runtime/Definitions/Controllers/UnityInput/UnityInputControllerDataProfile.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/UnityInput/UnityInputControllerDataProfile.cs rename to Runtime/Definitions/Controllers/UnityInput/UnityInputControllerDataProfile.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/UnityInput/UnityInputControllerDataProfile.cs.meta b/Runtime/Definitions/Controllers/UnityInput/UnityInputControllerDataProfile.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Controllers/UnityInput/UnityInputControllerDataProfile.cs.meta rename to Runtime/Definitions/Controllers/UnityInput/UnityInputControllerDataProfile.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Devices.meta b/Runtime/Definitions/Devices.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Devices.meta rename to Runtime/Definitions/Devices.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Devices/ControllerMappingLibrary.cs b/Runtime/Definitions/Devices/ControllerMappingLibrary.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Devices/ControllerMappingLibrary.cs rename to Runtime/Definitions/Devices/ControllerMappingLibrary.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Devices/ControllerMappingLibrary.cs.meta b/Runtime/Definitions/Devices/ControllerMappingLibrary.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Devices/ControllerMappingLibrary.cs.meta rename to Runtime/Definitions/Devices/ControllerMappingLibrary.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Devices/DeviceInputType.cs b/Runtime/Definitions/Devices/DeviceInputType.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Devices/DeviceInputType.cs rename to Runtime/Definitions/Devices/DeviceInputType.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Devices/DeviceInputType.cs.meta b/Runtime/Definitions/Devices/DeviceInputType.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Devices/DeviceInputType.cs.meta rename to Runtime/Definitions/Devices/DeviceInputType.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Devices/GestureInputType.cs b/Runtime/Definitions/Devices/GestureInputType.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Devices/GestureInputType.cs rename to Runtime/Definitions/Devices/GestureInputType.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Devices/GestureInputType.cs.meta b/Runtime/Definitions/Devices/GestureInputType.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Devices/GestureInputType.cs.meta rename to Runtime/Definitions/Devices/GestureInputType.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Devices/Headset.cs b/Runtime/Definitions/Devices/Headset.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Devices/Headset.cs rename to Runtime/Definitions/Devices/Headset.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Devices/Headset.cs.meta b/Runtime/Definitions/Devices/Headset.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Devices/Headset.cs.meta rename to Runtime/Definitions/Devices/Headset.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Devices/MixedRealityInteractionMapping.cs b/Runtime/Definitions/Devices/MixedRealityInteractionMapping.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Devices/MixedRealityInteractionMapping.cs rename to Runtime/Definitions/Devices/MixedRealityInteractionMapping.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Devices/MixedRealityInteractionMapping.cs.meta b/Runtime/Definitions/Devices/MixedRealityInteractionMapping.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Devices/MixedRealityInteractionMapping.cs.meta rename to Runtime/Definitions/Devices/MixedRealityInteractionMapping.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Devices/SDKType.cs b/Runtime/Definitions/Devices/SDKType.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Devices/SDKType.cs rename to Runtime/Definitions/Devices/SDKType.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Devices/SDKType.cs.meta b/Runtime/Definitions/Devices/SDKType.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Devices/SDKType.cs.meta rename to Runtime/Definitions/Devices/SDKType.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Devices/TrackingState.cs b/Runtime/Definitions/Devices/TrackingState.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Devices/TrackingState.cs rename to Runtime/Definitions/Devices/TrackingState.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Devices/TrackingState.cs.meta b/Runtime/Definitions/Devices/TrackingState.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Devices/TrackingState.cs.meta rename to Runtime/Definitions/Devices/TrackingState.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/DiagnosticsSystem.meta b/Runtime/Definitions/DiagnosticsSystem.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/DiagnosticsSystem.meta rename to Runtime/Definitions/DiagnosticsSystem.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/DiagnosticsSystem/MemoryLimit.cs b/Runtime/Definitions/DiagnosticsSystem/MemoryLimit.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/DiagnosticsSystem/MemoryLimit.cs rename to Runtime/Definitions/DiagnosticsSystem/MemoryLimit.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/DiagnosticsSystem/MemoryLimit.cs.meta b/Runtime/Definitions/DiagnosticsSystem/MemoryLimit.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/DiagnosticsSystem/MemoryLimit.cs.meta rename to Runtime/Definitions/DiagnosticsSystem/MemoryLimit.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/DiagnosticsSystem/MemoryPeak.cs b/Runtime/Definitions/DiagnosticsSystem/MemoryPeak.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/DiagnosticsSystem/MemoryPeak.cs rename to Runtime/Definitions/DiagnosticsSystem/MemoryPeak.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/DiagnosticsSystem/MemoryPeak.cs.meta b/Runtime/Definitions/DiagnosticsSystem/MemoryPeak.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/DiagnosticsSystem/MemoryPeak.cs.meta rename to Runtime/Definitions/DiagnosticsSystem/MemoryPeak.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/DiagnosticsSystem/MemoryUsage.cs b/Runtime/Definitions/DiagnosticsSystem/MemoryUsage.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/DiagnosticsSystem/MemoryUsage.cs rename to Runtime/Definitions/DiagnosticsSystem/MemoryUsage.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/DiagnosticsSystem/MemoryUsage.cs.meta b/Runtime/Definitions/DiagnosticsSystem/MemoryUsage.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/DiagnosticsSystem/MemoryUsage.cs.meta rename to Runtime/Definitions/DiagnosticsSystem/MemoryUsage.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/DiagnosticsSystem/MixedRealityDiagnosticsSystemProfile.cs b/Runtime/Definitions/DiagnosticsSystem/MixedRealityDiagnosticsSystemProfile.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/DiagnosticsSystem/MixedRealityDiagnosticsSystemProfile.cs rename to Runtime/Definitions/DiagnosticsSystem/MixedRealityDiagnosticsSystemProfile.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/DiagnosticsSystem/MixedRealityDiagnosticsSystemProfile.cs.meta b/Runtime/Definitions/DiagnosticsSystem/MixedRealityDiagnosticsSystemProfile.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/DiagnosticsSystem/MixedRealityDiagnosticsSystemProfile.cs.meta rename to Runtime/Definitions/DiagnosticsSystem/MixedRealityDiagnosticsSystemProfile.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/InputSystem.meta b/Runtime/Definitions/InputSystem.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/InputSystem.meta rename to Runtime/Definitions/InputSystem.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/InputSystem/AnimatedCursorData.cs b/Runtime/Definitions/InputSystem/AnimatedCursorData.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/InputSystem/AnimatedCursorData.cs rename to Runtime/Definitions/InputSystem/AnimatedCursorData.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/InputSystem/AnimatedCursorData.cs.meta b/Runtime/Definitions/InputSystem/AnimatedCursorData.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/InputSystem/AnimatedCursorData.cs.meta rename to Runtime/Definitions/InputSystem/AnimatedCursorData.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/InputSystem/CursorStateEnum.cs b/Runtime/Definitions/InputSystem/CursorStateEnum.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/InputSystem/CursorStateEnum.cs rename to Runtime/Definitions/InputSystem/CursorStateEnum.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/InputSystem/CursorStateEnum.cs.meta b/Runtime/Definitions/InputSystem/CursorStateEnum.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/InputSystem/CursorStateEnum.cs.meta rename to Runtime/Definitions/InputSystem/CursorStateEnum.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/InputSystem/InputActionEventPair.cs b/Runtime/Definitions/InputSystem/InputActionEventPair.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/InputSystem/InputActionEventPair.cs rename to Runtime/Definitions/InputSystem/InputActionEventPair.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/InputSystem/InputActionEventPair.cs.meta b/Runtime/Definitions/InputSystem/InputActionEventPair.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/InputSystem/InputActionEventPair.cs.meta rename to Runtime/Definitions/InputSystem/InputActionEventPair.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/InputSystem/KeywordAndResponse.cs b/Runtime/Definitions/InputSystem/KeywordAndResponse.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/InputSystem/KeywordAndResponse.cs rename to Runtime/Definitions/InputSystem/KeywordAndResponse.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/InputSystem/KeywordAndResponse.cs.meta b/Runtime/Definitions/InputSystem/KeywordAndResponse.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/InputSystem/KeywordAndResponse.cs.meta rename to Runtime/Definitions/InputSystem/KeywordAndResponse.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/InputSystem/MixedRealityGestureMapping.cs b/Runtime/Definitions/InputSystem/MixedRealityGestureMapping.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/InputSystem/MixedRealityGestureMapping.cs rename to Runtime/Definitions/InputSystem/MixedRealityGestureMapping.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/InputSystem/MixedRealityGestureMapping.cs.meta b/Runtime/Definitions/InputSystem/MixedRealityGestureMapping.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/InputSystem/MixedRealityGestureMapping.cs.meta rename to Runtime/Definitions/InputSystem/MixedRealityGestureMapping.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/InputSystem/MixedRealityGesturesProfile.cs b/Runtime/Definitions/InputSystem/MixedRealityGesturesProfile.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/InputSystem/MixedRealityGesturesProfile.cs rename to Runtime/Definitions/InputSystem/MixedRealityGesturesProfile.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/InputSystem/MixedRealityGesturesProfile.cs.meta b/Runtime/Definitions/InputSystem/MixedRealityGesturesProfile.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/InputSystem/MixedRealityGesturesProfile.cs.meta rename to Runtime/Definitions/InputSystem/MixedRealityGesturesProfile.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/InputSystem/MixedRealityInputAction.cs b/Runtime/Definitions/InputSystem/MixedRealityInputAction.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/InputSystem/MixedRealityInputAction.cs rename to Runtime/Definitions/InputSystem/MixedRealityInputAction.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/InputSystem/MixedRealityInputAction.cs.meta b/Runtime/Definitions/InputSystem/MixedRealityInputAction.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/InputSystem/MixedRealityInputAction.cs.meta rename to Runtime/Definitions/InputSystem/MixedRealityInputAction.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/InputSystem/MixedRealityInputActionsProfile.cs b/Runtime/Definitions/InputSystem/MixedRealityInputActionsProfile.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/InputSystem/MixedRealityInputActionsProfile.cs rename to Runtime/Definitions/InputSystem/MixedRealityInputActionsProfile.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/InputSystem/MixedRealityInputActionsProfile.cs.meta b/Runtime/Definitions/InputSystem/MixedRealityInputActionsProfile.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/InputSystem/MixedRealityInputActionsProfile.cs.meta rename to Runtime/Definitions/InputSystem/MixedRealityInputActionsProfile.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/InputSystem/MixedRealityInputSystemProfile.cs b/Runtime/Definitions/InputSystem/MixedRealityInputSystemProfile.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/InputSystem/MixedRealityInputSystemProfile.cs rename to Runtime/Definitions/InputSystem/MixedRealityInputSystemProfile.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/InputSystem/MixedRealityInputSystemProfile.cs.meta b/Runtime/Definitions/InputSystem/MixedRealityInputSystemProfile.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/InputSystem/MixedRealityInputSystemProfile.cs.meta rename to Runtime/Definitions/InputSystem/MixedRealityInputSystemProfile.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/InputSystem/MixedRealityPointerProfile.cs b/Runtime/Definitions/InputSystem/MixedRealityPointerProfile.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/InputSystem/MixedRealityPointerProfile.cs rename to Runtime/Definitions/InputSystem/MixedRealityPointerProfile.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/InputSystem/MixedRealityPointerProfile.cs.meta b/Runtime/Definitions/InputSystem/MixedRealityPointerProfile.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/InputSystem/MixedRealityPointerProfile.cs.meta rename to Runtime/Definitions/InputSystem/MixedRealityPointerProfile.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/InputSystem/MixedRealitySpeechCommandsProfile.cs b/Runtime/Definitions/InputSystem/MixedRealitySpeechCommandsProfile.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/InputSystem/MixedRealitySpeechCommandsProfile.cs rename to Runtime/Definitions/InputSystem/MixedRealitySpeechCommandsProfile.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/InputSystem/MixedRealitySpeechCommandsProfile.cs.meta b/Runtime/Definitions/InputSystem/MixedRealitySpeechCommandsProfile.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/InputSystem/MixedRealitySpeechCommandsProfile.cs.meta rename to Runtime/Definitions/InputSystem/MixedRealitySpeechCommandsProfile.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/InputSystem/SpeechCommands.cs b/Runtime/Definitions/InputSystem/SpeechCommands.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/InputSystem/SpeechCommands.cs rename to Runtime/Definitions/InputSystem/SpeechCommands.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/InputSystem/SpeechCommands.cs.meta b/Runtime/Definitions/InputSystem/SpeechCommands.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/InputSystem/SpeechCommands.cs.meta rename to Runtime/Definitions/InputSystem/SpeechCommands.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/InteractionMode.cs b/Runtime/Definitions/InteractionMode.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/InteractionMode.cs rename to Runtime/Definitions/InteractionMode.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/InteractionMode.cs.meta b/Runtime/Definitions/InteractionMode.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/InteractionMode.cs.meta rename to Runtime/Definitions/InteractionMode.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Lines.meta b/Runtime/Definitions/Lines.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Lines.meta rename to Runtime/Definitions/Lines.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Lines/DistortionMode.cs b/Runtime/Definitions/Lines/DistortionMode.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Lines/DistortionMode.cs rename to Runtime/Definitions/Lines/DistortionMode.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Lines/DistortionMode.cs.meta b/Runtime/Definitions/Lines/DistortionMode.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Lines/DistortionMode.cs.meta rename to Runtime/Definitions/Lines/DistortionMode.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Lines/InterpolationMode.cs b/Runtime/Definitions/Lines/InterpolationMode.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Lines/InterpolationMode.cs rename to Runtime/Definitions/Lines/InterpolationMode.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Lines/InterpolationMode.cs.meta b/Runtime/Definitions/Lines/InterpolationMode.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Lines/InterpolationMode.cs.meta rename to Runtime/Definitions/Lines/InterpolationMode.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Lines/InterpolationType.cs b/Runtime/Definitions/Lines/InterpolationType.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Lines/InterpolationType.cs rename to Runtime/Definitions/Lines/InterpolationType.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Lines/InterpolationType.cs.meta b/Runtime/Definitions/Lines/InterpolationType.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Lines/InterpolationType.cs.meta rename to Runtime/Definitions/Lines/InterpolationType.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Lines/LinePointTransformMode.cs b/Runtime/Definitions/Lines/LinePointTransformMode.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Lines/LinePointTransformMode.cs rename to Runtime/Definitions/Lines/LinePointTransformMode.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Lines/LinePointTransformMode.cs.meta b/Runtime/Definitions/Lines/LinePointTransformMode.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Lines/LinePointTransformMode.cs.meta rename to Runtime/Definitions/Lines/LinePointTransformMode.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Lines/LineRotationMode.cs b/Runtime/Definitions/Lines/LineRotationMode.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Lines/LineRotationMode.cs rename to Runtime/Definitions/Lines/LineRotationMode.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Lines/LineRotationMode.cs.meta b/Runtime/Definitions/Lines/LineRotationMode.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Lines/LineRotationMode.cs.meta rename to Runtime/Definitions/Lines/LineRotationMode.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Lines/PointDistributionMode.cs b/Runtime/Definitions/Lines/PointDistributionMode.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Lines/PointDistributionMode.cs rename to Runtime/Definitions/Lines/PointDistributionMode.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Lines/PointDistributionMode.cs.meta b/Runtime/Definitions/Lines/PointDistributionMode.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Lines/PointDistributionMode.cs.meta rename to Runtime/Definitions/Lines/PointDistributionMode.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Lines/StepMode.cs b/Runtime/Definitions/Lines/StepMode.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Lines/StepMode.cs rename to Runtime/Definitions/Lines/StepMode.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Lines/StepMode.cs.meta b/Runtime/Definitions/Lines/StepMode.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Lines/StepMode.cs.meta rename to Runtime/Definitions/Lines/StepMode.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/LocomotionSystem.meta b/Runtime/Definitions/LocomotionSystem.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/LocomotionSystem.meta rename to Runtime/Definitions/LocomotionSystem.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/LocomotionSystem/BaseLocomotionProviderProfile.cs b/Runtime/Definitions/LocomotionSystem/BaseLocomotionProviderProfile.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/LocomotionSystem/BaseLocomotionProviderProfile.cs rename to Runtime/Definitions/LocomotionSystem/BaseLocomotionProviderProfile.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/LocomotionSystem/BaseLocomotionProviderProfile.cs.meta b/Runtime/Definitions/LocomotionSystem/BaseLocomotionProviderProfile.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/LocomotionSystem/BaseLocomotionProviderProfile.cs.meta rename to Runtime/Definitions/LocomotionSystem/BaseLocomotionProviderProfile.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/LocomotionSystem/BaseTeleportLocomotionProviderProfile.cs b/Runtime/Definitions/LocomotionSystem/BaseTeleportLocomotionProviderProfile.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/LocomotionSystem/BaseTeleportLocomotionProviderProfile.cs rename to Runtime/Definitions/LocomotionSystem/BaseTeleportLocomotionProviderProfile.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/LocomotionSystem/BaseTeleportLocomotionProviderProfile.cs.meta b/Runtime/Definitions/LocomotionSystem/BaseTeleportLocomotionProviderProfile.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/LocomotionSystem/BaseTeleportLocomotionProviderProfile.cs.meta rename to Runtime/Definitions/LocomotionSystem/BaseTeleportLocomotionProviderProfile.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/LocomotionSystem/BlinkTeleportLocomotionProviderProfile.cs b/Runtime/Definitions/LocomotionSystem/BlinkTeleportLocomotionProviderProfile.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/LocomotionSystem/BlinkTeleportLocomotionProviderProfile.cs rename to Runtime/Definitions/LocomotionSystem/BlinkTeleportLocomotionProviderProfile.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/LocomotionSystem/BlinkTeleportLocomotionProviderProfile.cs.meta b/Runtime/Definitions/LocomotionSystem/BlinkTeleportLocomotionProviderProfile.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/LocomotionSystem/BlinkTeleportLocomotionProviderProfile.cs.meta rename to Runtime/Definitions/LocomotionSystem/BlinkTeleportLocomotionProviderProfile.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/LocomotionSystem/DashTeleportLocomotionProviderProfile.cs b/Runtime/Definitions/LocomotionSystem/DashTeleportLocomotionProviderProfile.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/LocomotionSystem/DashTeleportLocomotionProviderProfile.cs rename to Runtime/Definitions/LocomotionSystem/DashTeleportLocomotionProviderProfile.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/LocomotionSystem/DashTeleportLocomotionProviderProfile.cs.meta b/Runtime/Definitions/LocomotionSystem/DashTeleportLocomotionProviderProfile.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/LocomotionSystem/DashTeleportLocomotionProviderProfile.cs.meta rename to Runtime/Definitions/LocomotionSystem/DashTeleportLocomotionProviderProfile.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/LocomotionSystem/LocomotionSystemProfile.cs b/Runtime/Definitions/LocomotionSystem/LocomotionSystemProfile.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/LocomotionSystem/LocomotionSystemProfile.cs rename to Runtime/Definitions/LocomotionSystem/LocomotionSystemProfile.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/LocomotionSystem/LocomotionSystemProfile.cs.meta b/Runtime/Definitions/LocomotionSystem/LocomotionSystemProfile.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/LocomotionSystem/LocomotionSystemProfile.cs.meta rename to Runtime/Definitions/LocomotionSystem/LocomotionSystemProfile.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/LocomotionSystem/SmoothLocomotionProviderProfile.cs b/Runtime/Definitions/LocomotionSystem/SmoothLocomotionProviderProfile.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/LocomotionSystem/SmoothLocomotionProviderProfile.cs rename to Runtime/Definitions/LocomotionSystem/SmoothLocomotionProviderProfile.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/LocomotionSystem/SmoothLocomotionProviderProfile.cs.meta b/Runtime/Definitions/LocomotionSystem/SmoothLocomotionProviderProfile.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/LocomotionSystem/SmoothLocomotionProviderProfile.cs.meta rename to Runtime/Definitions/LocomotionSystem/SmoothLocomotionProviderProfile.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/LocomotionSystem/TeleportValidationProviderProfile.cs b/Runtime/Definitions/LocomotionSystem/TeleportValidationProviderProfile.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/LocomotionSystem/TeleportValidationProviderProfile.cs rename to Runtime/Definitions/LocomotionSystem/TeleportValidationProviderProfile.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/LocomotionSystem/TeleportValidationProviderProfile.cs.meta b/Runtime/Definitions/LocomotionSystem/TeleportValidationProviderProfile.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/LocomotionSystem/TeleportValidationProviderProfile.cs.meta rename to Runtime/Definitions/LocomotionSystem/TeleportValidationProviderProfile.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/MixedRealityPlatformServiceConfigurationProfile.cs b/Runtime/Definitions/MixedRealityPlatformServiceConfigurationProfile.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/MixedRealityPlatformServiceConfigurationProfile.cs rename to Runtime/Definitions/MixedRealityPlatformServiceConfigurationProfile.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/MixedRealityPlatformServiceConfigurationProfile.cs.meta b/Runtime/Definitions/MixedRealityPlatformServiceConfigurationProfile.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/MixedRealityPlatformServiceConfigurationProfile.cs.meta rename to Runtime/Definitions/MixedRealityPlatformServiceConfigurationProfile.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/MixedRealityRegisteredServiceProvidersProfile.cs b/Runtime/Definitions/MixedRealityRegisteredServiceProvidersProfile.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/MixedRealityRegisteredServiceProvidersProfile.cs rename to Runtime/Definitions/MixedRealityRegisteredServiceProvidersProfile.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/MixedRealityRegisteredServiceProvidersProfile.cs.meta b/Runtime/Definitions/MixedRealityRegisteredServiceProvidersProfile.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/MixedRealityRegisteredServiceProvidersProfile.cs.meta rename to Runtime/Definitions/MixedRealityRegisteredServiceProvidersProfile.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/MixedRealityServiceConfiguration.cs b/Runtime/Definitions/MixedRealityServiceConfiguration.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/MixedRealityServiceConfiguration.cs rename to Runtime/Definitions/MixedRealityServiceConfiguration.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/MixedRealityServiceConfiguration.cs.meta b/Runtime/Definitions/MixedRealityServiceConfiguration.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/MixedRealityServiceConfiguration.cs.meta rename to Runtime/Definitions/MixedRealityServiceConfiguration.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/MixedRealityToolkitRootProfile.cs b/Runtime/Definitions/MixedRealityToolkitRootProfile.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/MixedRealityToolkitRootProfile.cs rename to Runtime/Definitions/MixedRealityToolkitRootProfile.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/MixedRealityToolkitRootProfile.cs.meta b/Runtime/Definitions/MixedRealityToolkitRootProfile.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/MixedRealityToolkitRootProfile.cs.meta rename to Runtime/Definitions/MixedRealityToolkitRootProfile.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/NetworkingSystem.meta b/Runtime/Definitions/NetworkingSystem.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/NetworkingSystem.meta rename to Runtime/Definitions/NetworkingSystem.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/NetworkingSystem/BaseMixedRealityNetworkProviderProfile.cs b/Runtime/Definitions/NetworkingSystem/BaseMixedRealityNetworkProviderProfile.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/NetworkingSystem/BaseMixedRealityNetworkProviderProfile.cs rename to Runtime/Definitions/NetworkingSystem/BaseMixedRealityNetworkProviderProfile.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/NetworkingSystem/BaseMixedRealityNetworkProviderProfile.cs.meta b/Runtime/Definitions/NetworkingSystem/BaseMixedRealityNetworkProviderProfile.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/NetworkingSystem/BaseMixedRealityNetworkProviderProfile.cs.meta rename to Runtime/Definitions/NetworkingSystem/BaseMixedRealityNetworkProviderProfile.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/NetworkingSystem/MixedRealityNetworkSystemProfile.cs b/Runtime/Definitions/NetworkingSystem/MixedRealityNetworkSystemProfile.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/NetworkingSystem/MixedRealityNetworkSystemProfile.cs rename to Runtime/Definitions/NetworkingSystem/MixedRealityNetworkSystemProfile.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/NetworkingSystem/MixedRealityNetworkSystemProfile.cs.meta b/Runtime/Definitions/NetworkingSystem/MixedRealityNetworkSystemProfile.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/NetworkingSystem/MixedRealityNetworkSystemProfile.cs.meta rename to Runtime/Definitions/NetworkingSystem/MixedRealityNetworkSystemProfile.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/NetworkingSystem/MixedRealityWebRtcNetworkProviderProfile.cs b/Runtime/Definitions/NetworkingSystem/MixedRealityWebRtcNetworkProviderProfile.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/NetworkingSystem/MixedRealityWebRtcNetworkProviderProfile.cs rename to Runtime/Definitions/NetworkingSystem/MixedRealityWebRtcNetworkProviderProfile.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/NetworkingSystem/MixedRealityWebRtcNetworkProviderProfile.cs.meta b/Runtime/Definitions/NetworkingSystem/MixedRealityWebRtcNetworkProviderProfile.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/NetworkingSystem/MixedRealityWebRtcNetworkProviderProfile.cs.meta rename to Runtime/Definitions/NetworkingSystem/MixedRealityWebRtcNetworkProviderProfile.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Physics.meta b/Runtime/Definitions/Physics.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Physics.meta rename to Runtime/Definitions/Physics.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Physics/ComparableRaycastResult.cs b/Runtime/Definitions/Physics/ComparableRaycastResult.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Physics/ComparableRaycastResult.cs rename to Runtime/Definitions/Physics/ComparableRaycastResult.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Physics/ComparableRaycastResult.cs.meta b/Runtime/Definitions/Physics/ComparableRaycastResult.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Physics/ComparableRaycastResult.cs.meta rename to Runtime/Definitions/Physics/ComparableRaycastResult.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Physics/FocusDetails.cs b/Runtime/Definitions/Physics/FocusDetails.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Physics/FocusDetails.cs rename to Runtime/Definitions/Physics/FocusDetails.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Physics/FocusDetails.cs.meta b/Runtime/Definitions/Physics/FocusDetails.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Physics/FocusDetails.cs.meta rename to Runtime/Definitions/Physics/FocusDetails.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Physics/RayStep.cs b/Runtime/Definitions/Physics/RayStep.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Physics/RayStep.cs rename to Runtime/Definitions/Physics/RayStep.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Physics/RayStep.cs.meta b/Runtime/Definitions/Physics/RayStep.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Physics/RayStep.cs.meta rename to Runtime/Definitions/Physics/RayStep.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Physics/RaycastMode.cs b/Runtime/Definitions/Physics/RaycastMode.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Physics/RaycastMode.cs rename to Runtime/Definitions/Physics/RaycastMode.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Physics/RaycastMode.cs.meta b/Runtime/Definitions/Physics/RaycastMode.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Physics/RaycastMode.cs.meta rename to Runtime/Definitions/Physics/RaycastMode.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Platforms.meta b/Runtime/Definitions/Platforms.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Platforms.meta rename to Runtime/Definitions/Platforms.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Platforms/AllPlatforms.cs b/Runtime/Definitions/Platforms/AllPlatforms.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Platforms/AllPlatforms.cs rename to Runtime/Definitions/Platforms/AllPlatforms.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Platforms/AllPlatforms.cs.meta b/Runtime/Definitions/Platforms/AllPlatforms.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Platforms/AllPlatforms.cs.meta rename to Runtime/Definitions/Platforms/AllPlatforms.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Platforms/AndroidPlatform.cs b/Runtime/Definitions/Platforms/AndroidPlatform.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Platforms/AndroidPlatform.cs rename to Runtime/Definitions/Platforms/AndroidPlatform.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Platforms/AndroidPlatform.cs.meta b/Runtime/Definitions/Platforms/AndroidPlatform.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Platforms/AndroidPlatform.cs.meta rename to Runtime/Definitions/Platforms/AndroidPlatform.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Platforms/BasePlatform.cs b/Runtime/Definitions/Platforms/BasePlatform.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Platforms/BasePlatform.cs rename to Runtime/Definitions/Platforms/BasePlatform.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Platforms/BasePlatform.cs.meta b/Runtime/Definitions/Platforms/BasePlatform.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Platforms/BasePlatform.cs.meta rename to Runtime/Definitions/Platforms/BasePlatform.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Platforms/CurrentBuildTargetPlatform.cs b/Runtime/Definitions/Platforms/CurrentBuildTargetPlatform.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Platforms/CurrentBuildTargetPlatform.cs rename to Runtime/Definitions/Platforms/CurrentBuildTargetPlatform.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Platforms/CurrentBuildTargetPlatform.cs.meta b/Runtime/Definitions/Platforms/CurrentBuildTargetPlatform.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Platforms/CurrentBuildTargetPlatform.cs.meta rename to Runtime/Definitions/Platforms/CurrentBuildTargetPlatform.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Platforms/EditorPlatform.cs b/Runtime/Definitions/Platforms/EditorPlatform.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Platforms/EditorPlatform.cs rename to Runtime/Definitions/Platforms/EditorPlatform.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Platforms/EditorPlatform.cs.meta b/Runtime/Definitions/Platforms/EditorPlatform.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Platforms/EditorPlatform.cs.meta rename to Runtime/Definitions/Platforms/EditorPlatform.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Platforms/IOSPlatform.cs b/Runtime/Definitions/Platforms/IOSPlatform.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Platforms/IOSPlatform.cs rename to Runtime/Definitions/Platforms/IOSPlatform.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Platforms/IOSPlatform.cs.meta b/Runtime/Definitions/Platforms/IOSPlatform.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Platforms/IOSPlatform.cs.meta rename to Runtime/Definitions/Platforms/IOSPlatform.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Platforms/OSXPlatform.cs b/Runtime/Definitions/Platforms/OSXPlatform.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Platforms/OSXPlatform.cs rename to Runtime/Definitions/Platforms/OSXPlatform.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Platforms/OSXPlatform.cs.meta b/Runtime/Definitions/Platforms/OSXPlatform.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Platforms/OSXPlatform.cs.meta rename to Runtime/Definitions/Platforms/OSXPlatform.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Platforms/UniversalWindowsPlatform.cs b/Runtime/Definitions/Platforms/UniversalWindowsPlatform.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Platforms/UniversalWindowsPlatform.cs rename to Runtime/Definitions/Platforms/UniversalWindowsPlatform.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Platforms/UniversalWindowsPlatform.cs.meta b/Runtime/Definitions/Platforms/UniversalWindowsPlatform.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Platforms/UniversalWindowsPlatform.cs.meta rename to Runtime/Definitions/Platforms/UniversalWindowsPlatform.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Platforms/WebGlPlatform.cs b/Runtime/Definitions/Platforms/WebGlPlatform.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Platforms/WebGlPlatform.cs rename to Runtime/Definitions/Platforms/WebGlPlatform.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Platforms/WebGlPlatform.cs.meta b/Runtime/Definitions/Platforms/WebGlPlatform.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Platforms/WebGlPlatform.cs.meta rename to Runtime/Definitions/Platforms/WebGlPlatform.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Platforms/WindowsStandalonePlatform.cs b/Runtime/Definitions/Platforms/WindowsStandalonePlatform.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Platforms/WindowsStandalonePlatform.cs rename to Runtime/Definitions/Platforms/WindowsStandalonePlatform.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Platforms/WindowsStandalonePlatform.cs.meta b/Runtime/Definitions/Platforms/WindowsStandalonePlatform.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Platforms/WindowsStandalonePlatform.cs.meta rename to Runtime/Definitions/Platforms/WindowsStandalonePlatform.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Processors.meta b/Runtime/Definitions/Processors.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Processors.meta rename to Runtime/Definitions/Processors.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Processors/InputProcessor.cs b/Runtime/Definitions/Processors/InputProcessor.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Processors/InputProcessor.cs rename to Runtime/Definitions/Processors/InputProcessor.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Processors/InputProcessor.cs.meta b/Runtime/Definitions/Processors/InputProcessor.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Processors/InputProcessor.cs.meta rename to Runtime/Definitions/Processors/InputProcessor.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Processors/InvertDualAxisProcessor.cs b/Runtime/Definitions/Processors/InvertDualAxisProcessor.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Processors/InvertDualAxisProcessor.cs rename to Runtime/Definitions/Processors/InvertDualAxisProcessor.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Processors/InvertDualAxisProcessor.cs.meta b/Runtime/Definitions/Processors/InvertDualAxisProcessor.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Processors/InvertDualAxisProcessor.cs.meta rename to Runtime/Definitions/Processors/InvertDualAxisProcessor.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Processors/InvertSingleAxisProcessor.cs b/Runtime/Definitions/Processors/InvertSingleAxisProcessor.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Processors/InvertSingleAxisProcessor.cs rename to Runtime/Definitions/Processors/InvertSingleAxisProcessor.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Processors/InvertSingleAxisProcessor.cs.meta b/Runtime/Definitions/Processors/InvertSingleAxisProcessor.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Processors/InvertSingleAxisProcessor.cs.meta rename to Runtime/Definitions/Processors/InvertSingleAxisProcessor.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/RuntimePlatformEntry.cs b/Runtime/Definitions/RuntimePlatformEntry.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/RuntimePlatformEntry.cs rename to Runtime/Definitions/RuntimePlatformEntry.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/RuntimePlatformEntry.cs.meta b/Runtime/Definitions/RuntimePlatformEntry.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/RuntimePlatformEntry.cs.meta rename to Runtime/Definitions/RuntimePlatformEntry.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/SpatialAwarenessSystem.meta b/Runtime/Definitions/SpatialAwarenessSystem.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/SpatialAwarenessSystem.meta rename to Runtime/Definitions/SpatialAwarenessSystem.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/SpatialAwarenessSystem/MixedRealitySpatialAwarenessSystemProfile.cs b/Runtime/Definitions/SpatialAwarenessSystem/MixedRealitySpatialAwarenessSystemProfile.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/SpatialAwarenessSystem/MixedRealitySpatialAwarenessSystemProfile.cs rename to Runtime/Definitions/SpatialAwarenessSystem/MixedRealitySpatialAwarenessSystemProfile.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/SpatialAwarenessSystem/MixedRealitySpatialAwarenessSystemProfile.cs.meta b/Runtime/Definitions/SpatialAwarenessSystem/MixedRealitySpatialAwarenessSystemProfile.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/SpatialAwarenessSystem/MixedRealitySpatialAwarenessSystemProfile.cs.meta rename to Runtime/Definitions/SpatialAwarenessSystem/MixedRealitySpatialAwarenessSystemProfile.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/SpatialAwarenessSystem/SpatialAwarenessMeshLevelOfDetail.cs b/Runtime/Definitions/SpatialAwarenessSystem/SpatialAwarenessMeshLevelOfDetail.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/SpatialAwarenessSystem/SpatialAwarenessMeshLevelOfDetail.cs rename to Runtime/Definitions/SpatialAwarenessSystem/SpatialAwarenessMeshLevelOfDetail.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/SpatialAwarenessSystem/SpatialAwarenessMeshLevelOfDetail.cs.meta b/Runtime/Definitions/SpatialAwarenessSystem/SpatialAwarenessMeshLevelOfDetail.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/SpatialAwarenessSystem/SpatialAwarenessMeshLevelOfDetail.cs.meta rename to Runtime/Definitions/SpatialAwarenessSystem/SpatialAwarenessMeshLevelOfDetail.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/SpatialAwarenessSystem/SpatialAwarenessSurfaceTypes.cs b/Runtime/Definitions/SpatialAwarenessSystem/SpatialAwarenessSurfaceTypes.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/SpatialAwarenessSystem/SpatialAwarenessSurfaceTypes.cs rename to Runtime/Definitions/SpatialAwarenessSystem/SpatialAwarenessSurfaceTypes.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/SpatialAwarenessSystem/SpatialAwarenessSurfaceTypes.cs.meta b/Runtime/Definitions/SpatialAwarenessSystem/SpatialAwarenessSurfaceTypes.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/SpatialAwarenessSystem/SpatialAwarenessSurfaceTypes.cs.meta rename to Runtime/Definitions/SpatialAwarenessSystem/SpatialAwarenessSurfaceTypes.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/SpatialAwarenessSystem/SpatialMeshDisplayOptions.cs b/Runtime/Definitions/SpatialAwarenessSystem/SpatialMeshDisplayOptions.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/SpatialAwarenessSystem/SpatialMeshDisplayOptions.cs rename to Runtime/Definitions/SpatialAwarenessSystem/SpatialMeshDisplayOptions.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/SpatialAwarenessSystem/SpatialMeshDisplayOptions.cs.meta b/Runtime/Definitions/SpatialAwarenessSystem/SpatialMeshDisplayOptions.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/SpatialAwarenessSystem/SpatialMeshDisplayOptions.cs.meta rename to Runtime/Definitions/SpatialAwarenessSystem/SpatialMeshDisplayOptions.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/SpatialAwarenessSystem/SpatialMeshObject.cs b/Runtime/Definitions/SpatialAwarenessSystem/SpatialMeshObject.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/SpatialAwarenessSystem/SpatialMeshObject.cs rename to Runtime/Definitions/SpatialAwarenessSystem/SpatialMeshObject.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/SpatialAwarenessSystem/SpatialMeshObject.cs.meta b/Runtime/Definitions/SpatialAwarenessSystem/SpatialMeshObject.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/SpatialAwarenessSystem/SpatialMeshObject.cs.meta rename to Runtime/Definitions/SpatialAwarenessSystem/SpatialMeshObject.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/SpatialAwarenessSystem/SpatialObserverStatus.cs b/Runtime/Definitions/SpatialAwarenessSystem/SpatialObserverStatus.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/SpatialAwarenessSystem/SpatialObserverStatus.cs rename to Runtime/Definitions/SpatialAwarenessSystem/SpatialObserverStatus.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/SpatialAwarenessSystem/SpatialObserverStatus.cs.meta b/Runtime/Definitions/SpatialAwarenessSystem/SpatialObserverStatus.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/SpatialAwarenessSystem/SpatialObserverStatus.cs.meta rename to Runtime/Definitions/SpatialAwarenessSystem/SpatialObserverStatus.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/SpatialObservers.meta b/Runtime/Definitions/SpatialObservers.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/SpatialObservers.meta rename to Runtime/Definitions/SpatialObservers.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/SpatialObservers/BaseMixedRealitySpatialMeshObserverProfile.cs b/Runtime/Definitions/SpatialObservers/BaseMixedRealitySpatialMeshObserverProfile.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/SpatialObservers/BaseMixedRealitySpatialMeshObserverProfile.cs rename to Runtime/Definitions/SpatialObservers/BaseMixedRealitySpatialMeshObserverProfile.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/SpatialObservers/BaseMixedRealitySpatialMeshObserverProfile.cs.meta b/Runtime/Definitions/SpatialObservers/BaseMixedRealitySpatialMeshObserverProfile.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/SpatialObservers/BaseMixedRealitySpatialMeshObserverProfile.cs.meta rename to Runtime/Definitions/SpatialObservers/BaseMixedRealitySpatialMeshObserverProfile.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/SpatialObservers/BaseMixedRealitySpatialObserverProfile.cs b/Runtime/Definitions/SpatialObservers/BaseMixedRealitySpatialObserverProfile.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/SpatialObservers/BaseMixedRealitySpatialObserverProfile.cs rename to Runtime/Definitions/SpatialObservers/BaseMixedRealitySpatialObserverProfile.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/SpatialObservers/BaseMixedRealitySpatialObserverProfile.cs.meta b/Runtime/Definitions/SpatialObservers/BaseMixedRealitySpatialObserverProfile.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/SpatialObservers/BaseMixedRealitySpatialObserverProfile.cs.meta rename to Runtime/Definitions/SpatialObservers/BaseMixedRealitySpatialObserverProfile.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/SpatialObservers/BaseMixedRealitySurfaceObserverProfile.cs b/Runtime/Definitions/SpatialObservers/BaseMixedRealitySurfaceObserverProfile.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/SpatialObservers/BaseMixedRealitySurfaceObserverProfile.cs rename to Runtime/Definitions/SpatialObservers/BaseMixedRealitySurfaceObserverProfile.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/SpatialObservers/BaseMixedRealitySurfaceObserverProfile.cs.meta b/Runtime/Definitions/SpatialObservers/BaseMixedRealitySurfaceObserverProfile.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/SpatialObservers/BaseMixedRealitySurfaceObserverProfile.cs.meta rename to Runtime/Definitions/SpatialObservers/BaseMixedRealitySurfaceObserverProfile.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities.meta b/Runtime/Definitions/Utilities.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities.meta rename to Runtime/Definitions/Utilities.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/AnimatorParameter.cs b/Runtime/Definitions/Utilities/AnimatorParameter.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/AnimatorParameter.cs rename to Runtime/Definitions/Utilities/AnimatorParameter.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/AnimatorParameter.cs.meta b/Runtime/Definitions/Utilities/AnimatorParameter.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/AnimatorParameter.cs.meta rename to Runtime/Definitions/Utilities/AnimatorParameter.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/AutoStartBehavior.cs b/Runtime/Definitions/Utilities/AutoStartBehavior.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/AutoStartBehavior.cs rename to Runtime/Definitions/Utilities/AutoStartBehavior.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/AutoStartBehavior.cs.meta b/Runtime/Definitions/Utilities/AutoStartBehavior.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/AutoStartBehavior.cs.meta rename to Runtime/Definitions/Utilities/AutoStartBehavior.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/AxisType.cs b/Runtime/Definitions/Utilities/AxisType.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/AxisType.cs rename to Runtime/Definitions/Utilities/AxisType.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/AxisType.cs.meta b/Runtime/Definitions/Utilities/AxisType.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/AxisType.cs.meta rename to Runtime/Definitions/Utilities/AxisType.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/CardinalAxis.cs b/Runtime/Definitions/Utilities/CardinalAxis.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/CardinalAxis.cs rename to Runtime/Definitions/Utilities/CardinalAxis.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/CardinalAxis.cs.meta b/Runtime/Definitions/Utilities/CardinalAxis.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/CardinalAxis.cs.meta rename to Runtime/Definitions/Utilities/CardinalAxis.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/CollationOrderType.cs b/Runtime/Definitions/Utilities/CollationOrderType.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/CollationOrderType.cs rename to Runtime/Definitions/Utilities/CollationOrderType.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/CollationOrderType.cs.meta b/Runtime/Definitions/Utilities/CollationOrderType.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/CollationOrderType.cs.meta rename to Runtime/Definitions/Utilities/CollationOrderType.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/FlattenMode.cs b/Runtime/Definitions/Utilities/FlattenMode.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/FlattenMode.cs rename to Runtime/Definitions/Utilities/FlattenMode.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/FlattenMode.cs.meta b/Runtime/Definitions/Utilities/FlattenMode.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/FlattenMode.cs.meta rename to Runtime/Definitions/Utilities/FlattenMode.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/Handedness.cs b/Runtime/Definitions/Utilities/Handedness.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/Handedness.cs rename to Runtime/Definitions/Utilities/Handedness.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/Handedness.cs.meta b/Runtime/Definitions/Utilities/Handedness.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/Handedness.cs.meta rename to Runtime/Definitions/Utilities/Handedness.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/MixedRealityPose.cs b/Runtime/Definitions/Utilities/MixedRealityPose.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/MixedRealityPose.cs rename to Runtime/Definitions/Utilities/MixedRealityPose.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/MixedRealityPose.cs.meta b/Runtime/Definitions/Utilities/MixedRealityPose.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/MixedRealityPose.cs.meta rename to Runtime/Definitions/Utilities/MixedRealityPose.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/OrientationType.cs b/Runtime/Definitions/Utilities/OrientationType.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/OrientationType.cs rename to Runtime/Definitions/Utilities/OrientationType.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/OrientationType.cs.meta b/Runtime/Definitions/Utilities/OrientationType.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/OrientationType.cs.meta rename to Runtime/Definitions/Utilities/OrientationType.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/PivotAxis.cs b/Runtime/Definitions/Utilities/PivotAxis.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/PivotAxis.cs rename to Runtime/Definitions/Utilities/PivotAxis.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/PivotAxis.cs.meta b/Runtime/Definitions/Utilities/PivotAxis.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/PivotAxis.cs.meta rename to Runtime/Definitions/Utilities/PivotAxis.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/ProcessResult.cs b/Runtime/Definitions/Utilities/ProcessResult.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/ProcessResult.cs rename to Runtime/Definitions/Utilities/ProcessResult.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/ProcessResult.cs.meta b/Runtime/Definitions/Utilities/ProcessResult.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/ProcessResult.cs.meta rename to Runtime/Definitions/Utilities/ProcessResult.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/ProfileMenuItemIndices.cs b/Runtime/Definitions/Utilities/ProfileMenuItemIndices.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/ProfileMenuItemIndices.cs rename to Runtime/Definitions/Utilities/ProfileMenuItemIndices.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/ProfileMenuItemIndices.cs.meta b/Runtime/Definitions/Utilities/ProfileMenuItemIndices.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/ProfileMenuItemIndices.cs.meta rename to Runtime/Definitions/Utilities/ProfileMenuItemIndices.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/QuaternionSmoothed.cs b/Runtime/Definitions/Utilities/QuaternionSmoothed.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/QuaternionSmoothed.cs rename to Runtime/Definitions/Utilities/QuaternionSmoothed.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/QuaternionSmoothed.cs.meta b/Runtime/Definitions/Utilities/QuaternionSmoothed.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/QuaternionSmoothed.cs.meta rename to Runtime/Definitions/Utilities/QuaternionSmoothed.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/RecognitionConfidenceLevel.cs b/Runtime/Definitions/Utilities/RecognitionConfidenceLevel.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/RecognitionConfidenceLevel.cs rename to Runtime/Definitions/Utilities/RecognitionConfidenceLevel.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/RecognitionConfidenceLevel.cs.meta b/Runtime/Definitions/Utilities/RecognitionConfidenceLevel.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/RecognitionConfidenceLevel.cs.meta rename to Runtime/Definitions/Utilities/RecognitionConfidenceLevel.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/RenderPipeline.cs b/Runtime/Definitions/Utilities/RenderPipeline.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/RenderPipeline.cs rename to Runtime/Definitions/Utilities/RenderPipeline.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/RenderPipeline.cs.meta b/Runtime/Definitions/Utilities/RenderPipeline.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/RenderPipeline.cs.meta rename to Runtime/Definitions/Utilities/RenderPipeline.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/RotationConstraintType.cs b/Runtime/Definitions/Utilities/RotationConstraintType.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/RotationConstraintType.cs rename to Runtime/Definitions/Utilities/RotationConstraintType.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/RotationConstraintType.cs.meta b/Runtime/Definitions/Utilities/RotationConstraintType.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/RotationConstraintType.cs.meta rename to Runtime/Definitions/Utilities/RotationConstraintType.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/ScaleStateType.cs b/Runtime/Definitions/Utilities/ScaleStateType.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/ScaleStateType.cs rename to Runtime/Definitions/Utilities/ScaleStateType.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/ScaleStateType.cs.meta b/Runtime/Definitions/Utilities/ScaleStateType.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/ScaleStateType.cs.meta rename to Runtime/Definitions/Utilities/ScaleStateType.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/SolverOrientationType.cs b/Runtime/Definitions/Utilities/SolverOrientationType.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/SolverOrientationType.cs rename to Runtime/Definitions/Utilities/SolverOrientationType.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/SolverOrientationType.cs.meta b/Runtime/Definitions/Utilities/SolverOrientationType.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/SolverOrientationType.cs.meta rename to Runtime/Definitions/Utilities/SolverOrientationType.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/StateChangeType.cs b/Runtime/Definitions/Utilities/StateChangeType.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/StateChangeType.cs rename to Runtime/Definitions/Utilities/StateChangeType.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/StateChangeType.cs.meta b/Runtime/Definitions/Utilities/StateChangeType.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/StateChangeType.cs.meta rename to Runtime/Definitions/Utilities/StateChangeType.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/SystemType.cs b/Runtime/Definitions/Utilities/SystemType.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/SystemType.cs rename to Runtime/Definitions/Utilities/SystemType.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/SystemType.cs.meta b/Runtime/Definitions/Utilities/SystemType.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/SystemType.cs.meta rename to Runtime/Definitions/Utilities/SystemType.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/TrackedObjectType.cs b/Runtime/Definitions/Utilities/TrackedObjectType.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/TrackedObjectType.cs rename to Runtime/Definitions/Utilities/TrackedObjectType.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/TrackedObjectType.cs.meta b/Runtime/Definitions/Utilities/TrackedObjectType.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/TrackedObjectType.cs.meta rename to Runtime/Definitions/Utilities/TrackedObjectType.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/TypeGrouping.cs b/Runtime/Definitions/Utilities/TypeGrouping.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/TypeGrouping.cs rename to Runtime/Definitions/Utilities/TypeGrouping.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/TypeGrouping.cs.meta b/Runtime/Definitions/Utilities/TypeGrouping.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/TypeGrouping.cs.meta rename to Runtime/Definitions/Utilities/TypeGrouping.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/Vector3Smoothed.cs b/Runtime/Definitions/Utilities/Vector3Smoothed.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/Vector3Smoothed.cs rename to Runtime/Definitions/Utilities/Vector3Smoothed.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/Vector3Smoothed.cs.meta b/Runtime/Definitions/Utilities/Vector3Smoothed.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Definitions/Utilities/Vector3Smoothed.cs.meta rename to Runtime/Definitions/Utilities/Vector3Smoothed.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum.meta b/Runtime/EventDatum.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum.meta rename to Runtime/EventDatum.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Diagnostics.meta b/Runtime/EventDatum/Diagnostics.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Diagnostics.meta rename to Runtime/EventDatum/Diagnostics.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Diagnostics/BaseDiagnosticsEventData.cs b/Runtime/EventDatum/Diagnostics/BaseDiagnosticsEventData.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Diagnostics/BaseDiagnosticsEventData.cs rename to Runtime/EventDatum/Diagnostics/BaseDiagnosticsEventData.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Diagnostics/BaseDiagnosticsEventData.cs.meta b/Runtime/EventDatum/Diagnostics/BaseDiagnosticsEventData.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Diagnostics/BaseDiagnosticsEventData.cs.meta rename to Runtime/EventDatum/Diagnostics/BaseDiagnosticsEventData.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Diagnostics/ConsoleEventData.cs b/Runtime/EventDatum/Diagnostics/ConsoleEventData.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Diagnostics/ConsoleEventData.cs rename to Runtime/EventDatum/Diagnostics/ConsoleEventData.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Diagnostics/ConsoleEventData.cs.meta b/Runtime/EventDatum/Diagnostics/ConsoleEventData.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Diagnostics/ConsoleEventData.cs.meta rename to Runtime/EventDatum/Diagnostics/ConsoleEventData.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Diagnostics/FrameEventData.cs b/Runtime/EventDatum/Diagnostics/FrameEventData.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Diagnostics/FrameEventData.cs rename to Runtime/EventDatum/Diagnostics/FrameEventData.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Diagnostics/FrameEventData.cs.meta b/Runtime/EventDatum/Diagnostics/FrameEventData.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Diagnostics/FrameEventData.cs.meta rename to Runtime/EventDatum/Diagnostics/FrameEventData.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Diagnostics/MemoryEventData.cs b/Runtime/EventDatum/Diagnostics/MemoryEventData.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Diagnostics/MemoryEventData.cs rename to Runtime/EventDatum/Diagnostics/MemoryEventData.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Diagnostics/MemoryEventData.cs.meta b/Runtime/EventDatum/Diagnostics/MemoryEventData.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Diagnostics/MemoryEventData.cs.meta rename to Runtime/EventDatum/Diagnostics/MemoryEventData.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/GenericBaseEventData.cs b/Runtime/EventDatum/GenericBaseEventData.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/GenericBaseEventData.cs rename to Runtime/EventDatum/GenericBaseEventData.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/GenericBaseEventData.cs.meta b/Runtime/EventDatum/GenericBaseEventData.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/GenericBaseEventData.cs.meta rename to Runtime/EventDatum/GenericBaseEventData.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Input.meta b/Runtime/EventDatum/Input.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Input.meta rename to Runtime/EventDatum/Input.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Input/BaseInputEventData.cs b/Runtime/EventDatum/Input/BaseInputEventData.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Input/BaseInputEventData.cs rename to Runtime/EventDatum/Input/BaseInputEventData.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Input/BaseInputEventData.cs.meta b/Runtime/EventDatum/Input/BaseInputEventData.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Input/BaseInputEventData.cs.meta rename to Runtime/EventDatum/Input/BaseInputEventData.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Input/DictationEventData.cs b/Runtime/EventDatum/Input/DictationEventData.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Input/DictationEventData.cs rename to Runtime/EventDatum/Input/DictationEventData.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Input/DictationEventData.cs.meta b/Runtime/EventDatum/Input/DictationEventData.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Input/DictationEventData.cs.meta rename to Runtime/EventDatum/Input/DictationEventData.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Input/FocusEventData.cs b/Runtime/EventDatum/Input/FocusEventData.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Input/FocusEventData.cs rename to Runtime/EventDatum/Input/FocusEventData.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Input/FocusEventData.cs.meta b/Runtime/EventDatum/Input/FocusEventData.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Input/FocusEventData.cs.meta rename to Runtime/EventDatum/Input/FocusEventData.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Input/GraphicInputEventData.cs b/Runtime/EventDatum/Input/GraphicInputEventData.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Input/GraphicInputEventData.cs rename to Runtime/EventDatum/Input/GraphicInputEventData.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Input/GraphicInputEventData.cs.meta b/Runtime/EventDatum/Input/GraphicInputEventData.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Input/GraphicInputEventData.cs.meta rename to Runtime/EventDatum/Input/GraphicInputEventData.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Input/InputEventData.cs b/Runtime/EventDatum/Input/InputEventData.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Input/InputEventData.cs rename to Runtime/EventDatum/Input/InputEventData.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Input/InputEventData.cs.meta b/Runtime/EventDatum/Input/InputEventData.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Input/InputEventData.cs.meta rename to Runtime/EventDatum/Input/InputEventData.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Input/MixedRealityPointerDragEventData.cs b/Runtime/EventDatum/Input/MixedRealityPointerDragEventData.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Input/MixedRealityPointerDragEventData.cs rename to Runtime/EventDatum/Input/MixedRealityPointerDragEventData.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Input/MixedRealityPointerDragEventData.cs.meta b/Runtime/EventDatum/Input/MixedRealityPointerDragEventData.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Input/MixedRealityPointerDragEventData.cs.meta rename to Runtime/EventDatum/Input/MixedRealityPointerDragEventData.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Input/MixedRealityPointerEventData.cs b/Runtime/EventDatum/Input/MixedRealityPointerEventData.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Input/MixedRealityPointerEventData.cs rename to Runtime/EventDatum/Input/MixedRealityPointerEventData.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Input/MixedRealityPointerEventData.cs.meta b/Runtime/EventDatum/Input/MixedRealityPointerEventData.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Input/MixedRealityPointerEventData.cs.meta rename to Runtime/EventDatum/Input/MixedRealityPointerEventData.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Input/MixedRealityPointerScrollEventData.cs b/Runtime/EventDatum/Input/MixedRealityPointerScrollEventData.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Input/MixedRealityPointerScrollEventData.cs rename to Runtime/EventDatum/Input/MixedRealityPointerScrollEventData.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Input/MixedRealityPointerScrollEventData.cs.meta b/Runtime/EventDatum/Input/MixedRealityPointerScrollEventData.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Input/MixedRealityPointerScrollEventData.cs.meta rename to Runtime/EventDatum/Input/MixedRealityPointerScrollEventData.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Input/SourcePoseEventData.cs b/Runtime/EventDatum/Input/SourcePoseEventData.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Input/SourcePoseEventData.cs rename to Runtime/EventDatum/Input/SourcePoseEventData.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Input/SourcePoseEventData.cs.meta b/Runtime/EventDatum/Input/SourcePoseEventData.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Input/SourcePoseEventData.cs.meta rename to Runtime/EventDatum/Input/SourcePoseEventData.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Input/SourceStateEventData.cs b/Runtime/EventDatum/Input/SourceStateEventData.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Input/SourceStateEventData.cs rename to Runtime/EventDatum/Input/SourceStateEventData.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Input/SourceStateEventData.cs.meta b/Runtime/EventDatum/Input/SourceStateEventData.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Input/SourceStateEventData.cs.meta rename to Runtime/EventDatum/Input/SourceStateEventData.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Input/SpeechEventData.cs b/Runtime/EventDatum/Input/SpeechEventData.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Input/SpeechEventData.cs rename to Runtime/EventDatum/Input/SpeechEventData.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Input/SpeechEventData.cs.meta b/Runtime/EventDatum/Input/SpeechEventData.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Input/SpeechEventData.cs.meta rename to Runtime/EventDatum/Input/SpeechEventData.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Networking.meta b/Runtime/EventDatum/Networking.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Networking.meta rename to Runtime/EventDatum/Networking.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Networking/BaseNetworkingEventData.cs b/Runtime/EventDatum/Networking/BaseNetworkingEventData.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Networking/BaseNetworkingEventData.cs rename to Runtime/EventDatum/Networking/BaseNetworkingEventData.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Networking/BaseNetworkingEventData.cs.meta b/Runtime/EventDatum/Networking/BaseNetworkingEventData.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/Networking/BaseNetworkingEventData.cs.meta rename to Runtime/EventDatum/Networking/BaseNetworkingEventData.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/PlacementEventData.cs b/Runtime/EventDatum/PlacementEventData.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/PlacementEventData.cs rename to Runtime/EventDatum/PlacementEventData.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/PlacementEventData.cs.meta b/Runtime/EventDatum/PlacementEventData.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/PlacementEventData.cs.meta rename to Runtime/EventDatum/PlacementEventData.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/SpatialAwareness.meta b/Runtime/EventDatum/SpatialAwareness.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/SpatialAwareness.meta rename to Runtime/EventDatum/SpatialAwareness.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/SpatialAwareness/MixedRealitySpatialAwarenessEventData.cs b/Runtime/EventDatum/SpatialAwareness/MixedRealitySpatialAwarenessEventData.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/SpatialAwareness/MixedRealitySpatialAwarenessEventData.cs rename to Runtime/EventDatum/SpatialAwareness/MixedRealitySpatialAwarenessEventData.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/SpatialAwareness/MixedRealitySpatialAwarenessEventData.cs.meta b/Runtime/EventDatum/SpatialAwareness/MixedRealitySpatialAwarenessEventData.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/EventDatum/SpatialAwareness/MixedRealitySpatialAwarenessEventData.cs.meta rename to Runtime/EventDatum/SpatialAwareness/MixedRealitySpatialAwarenessEventData.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions.meta b/Runtime/Extensions.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions.meta rename to Runtime/Extensions.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/AnimationCurveExtensions.cs b/Runtime/Extensions/AnimationCurveExtensions.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/AnimationCurveExtensions.cs rename to Runtime/Extensions/AnimationCurveExtensions.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/AnimationCurveExtensions.cs.meta b/Runtime/Extensions/AnimationCurveExtensions.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/AnimationCurveExtensions.cs.meta rename to Runtime/Extensions/AnimationCurveExtensions.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/ArrayExtensions.cs b/Runtime/Extensions/ArrayExtensions.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/ArrayExtensions.cs rename to Runtime/Extensions/ArrayExtensions.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/ArrayExtensions.cs.meta b/Runtime/Extensions/ArrayExtensions.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/ArrayExtensions.cs.meta rename to Runtime/Extensions/ArrayExtensions.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/BoundsExtensions.cs b/Runtime/Extensions/BoundsExtensions.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/BoundsExtensions.cs rename to Runtime/Extensions/BoundsExtensions.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/BoundsExtensions.cs.meta b/Runtime/Extensions/BoundsExtensions.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/BoundsExtensions.cs.meta rename to Runtime/Extensions/BoundsExtensions.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/CameraExtensions.cs b/Runtime/Extensions/CameraExtensions.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/CameraExtensions.cs rename to Runtime/Extensions/CameraExtensions.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/CameraExtensions.cs.meta b/Runtime/Extensions/CameraExtensions.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/CameraExtensions.cs.meta rename to Runtime/Extensions/CameraExtensions.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/CanvasExtensions.cs b/Runtime/Extensions/CanvasExtensions.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/CanvasExtensions.cs rename to Runtime/Extensions/CanvasExtensions.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/CanvasExtensions.cs.meta b/Runtime/Extensions/CanvasExtensions.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/CanvasExtensions.cs.meta rename to Runtime/Extensions/CanvasExtensions.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/CollectionsExtensions.cs b/Runtime/Extensions/CollectionsExtensions.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/CollectionsExtensions.cs rename to Runtime/Extensions/CollectionsExtensions.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/CollectionsExtensions.cs.meta b/Runtime/Extensions/CollectionsExtensions.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/CollectionsExtensions.cs.meta rename to Runtime/Extensions/CollectionsExtensions.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/ColliderExtensions.cs b/Runtime/Extensions/ColliderExtensions.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/ColliderExtensions.cs rename to Runtime/Extensions/ColliderExtensions.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/ColliderExtensions.cs.meta b/Runtime/Extensions/ColliderExtensions.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/ColliderExtensions.cs.meta rename to Runtime/Extensions/ColliderExtensions.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/CollisionExtensions.cs b/Runtime/Extensions/CollisionExtensions.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/CollisionExtensions.cs rename to Runtime/Extensions/CollisionExtensions.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/CollisionExtensions.cs.meta b/Runtime/Extensions/CollisionExtensions.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/CollisionExtensions.cs.meta rename to Runtime/Extensions/CollisionExtensions.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/Color32Extensions.cs b/Runtime/Extensions/Color32Extensions.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/Color32Extensions.cs rename to Runtime/Extensions/Color32Extensions.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/Color32Extensions.cs.meta b/Runtime/Extensions/Color32Extensions.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/Color32Extensions.cs.meta rename to Runtime/Extensions/Color32Extensions.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/ComparerExtensions.cs b/Runtime/Extensions/ComparerExtensions.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/ComparerExtensions.cs rename to Runtime/Extensions/ComparerExtensions.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/ComparerExtensions.cs.meta b/Runtime/Extensions/ComparerExtensions.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/ComparerExtensions.cs.meta rename to Runtime/Extensions/ComparerExtensions.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/ComponentExtensions.cs b/Runtime/Extensions/ComponentExtensions.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/ComponentExtensions.cs rename to Runtime/Extensions/ComponentExtensions.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/ComponentExtensions.cs.meta b/Runtime/Extensions/ComponentExtensions.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/ComponentExtensions.cs.meta rename to Runtime/Extensions/ComponentExtensions.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/ConverterExtensions.cs b/Runtime/Extensions/ConverterExtensions.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/ConverterExtensions.cs rename to Runtime/Extensions/ConverterExtensions.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/ConverterExtensions.cs.meta b/Runtime/Extensions/ConverterExtensions.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/ConverterExtensions.cs.meta rename to Runtime/Extensions/ConverterExtensions.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/DoubleExtensions.cs b/Runtime/Extensions/DoubleExtensions.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/DoubleExtensions.cs rename to Runtime/Extensions/DoubleExtensions.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/DoubleExtensions.cs.meta b/Runtime/Extensions/DoubleExtensions.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/DoubleExtensions.cs.meta rename to Runtime/Extensions/DoubleExtensions.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/EnumExtensions.cs b/Runtime/Extensions/EnumExtensions.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/EnumExtensions.cs rename to Runtime/Extensions/EnumExtensions.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/EnumExtensions.cs.meta b/Runtime/Extensions/EnumExtensions.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/EnumExtensions.cs.meta rename to Runtime/Extensions/EnumExtensions.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/EnumerableExtensions.cs b/Runtime/Extensions/EnumerableExtensions.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/EnumerableExtensions.cs rename to Runtime/Extensions/EnumerableExtensions.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/EnumerableExtensions.cs.meta b/Runtime/Extensions/EnumerableExtensions.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/EnumerableExtensions.cs.meta rename to Runtime/Extensions/EnumerableExtensions.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/EventSystemExtensions.cs b/Runtime/Extensions/EventSystemExtensions.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/EventSystemExtensions.cs rename to Runtime/Extensions/EventSystemExtensions.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/EventSystemExtensions.cs.meta b/Runtime/Extensions/EventSystemExtensions.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/EventSystemExtensions.cs.meta rename to Runtime/Extensions/EventSystemExtensions.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/FloatExtensions.cs b/Runtime/Extensions/FloatExtensions.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/FloatExtensions.cs rename to Runtime/Extensions/FloatExtensions.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/FloatExtensions.cs.meta b/Runtime/Extensions/FloatExtensions.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/FloatExtensions.cs.meta rename to Runtime/Extensions/FloatExtensions.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/GameObjectExtensions.cs b/Runtime/Extensions/GameObjectExtensions.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/GameObjectExtensions.cs rename to Runtime/Extensions/GameObjectExtensions.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/GameObjectExtensions.cs.meta b/Runtime/Extensions/GameObjectExtensions.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/GameObjectExtensions.cs.meta rename to Runtime/Extensions/GameObjectExtensions.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/HandControllerPoseProfileExtensions.cs b/Runtime/Extensions/HandControllerPoseProfileExtensions.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/HandControllerPoseProfileExtensions.cs rename to Runtime/Extensions/HandControllerPoseProfileExtensions.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/HandControllerPoseProfileExtensions.cs.meta b/Runtime/Extensions/HandControllerPoseProfileExtensions.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/HandControllerPoseProfileExtensions.cs.meta rename to Runtime/Extensions/HandControllerPoseProfileExtensions.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/InteractionMappingsExtensions.cs b/Runtime/Extensions/InteractionMappingsExtensions.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/InteractionMappingsExtensions.cs rename to Runtime/Extensions/InteractionMappingsExtensions.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/InteractionMappingsExtensions.cs.meta b/Runtime/Extensions/InteractionMappingsExtensions.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/InteractionMappingsExtensions.cs.meta rename to Runtime/Extensions/InteractionMappingsExtensions.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/LayerExtensions.cs b/Runtime/Extensions/LayerExtensions.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/LayerExtensions.cs rename to Runtime/Extensions/LayerExtensions.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/LayerExtensions.cs.meta b/Runtime/Extensions/LayerExtensions.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/LayerExtensions.cs.meta rename to Runtime/Extensions/LayerExtensions.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/MathfExtensions.cs b/Runtime/Extensions/MathfExtensions.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/MathfExtensions.cs rename to Runtime/Extensions/MathfExtensions.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/MathfExtensions.cs.meta b/Runtime/Extensions/MathfExtensions.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/MathfExtensions.cs.meta rename to Runtime/Extensions/MathfExtensions.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/ProcessExtensions.cs b/Runtime/Extensions/ProcessExtensions.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/ProcessExtensions.cs rename to Runtime/Extensions/ProcessExtensions.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/ProcessExtensions.cs.meta b/Runtime/Extensions/ProcessExtensions.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/ProcessExtensions.cs.meta rename to Runtime/Extensions/ProcessExtensions.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/QuaternionExtensions.cs b/Runtime/Extensions/QuaternionExtensions.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/QuaternionExtensions.cs rename to Runtime/Extensions/QuaternionExtensions.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/QuaternionExtensions.cs.meta b/Runtime/Extensions/QuaternionExtensions.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/QuaternionExtensions.cs.meta rename to Runtime/Extensions/QuaternionExtensions.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/RayExtensions.cs b/Runtime/Extensions/RayExtensions.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/RayExtensions.cs rename to Runtime/Extensions/RayExtensions.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/RayExtensions.cs.meta b/Runtime/Extensions/RayExtensions.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/RayExtensions.cs.meta rename to Runtime/Extensions/RayExtensions.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/StringExtensions.cs b/Runtime/Extensions/StringExtensions.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/StringExtensions.cs rename to Runtime/Extensions/StringExtensions.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/StringExtensions.cs.meta b/Runtime/Extensions/StringExtensions.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/StringExtensions.cs.meta rename to Runtime/Extensions/StringExtensions.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/SystemNumericsExtensions.cs b/Runtime/Extensions/SystemNumericsExtensions.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/SystemNumericsExtensions.cs rename to Runtime/Extensions/SystemNumericsExtensions.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/SystemNumericsExtensions.cs.meta b/Runtime/Extensions/SystemNumericsExtensions.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/SystemNumericsExtensions.cs.meta rename to Runtime/Extensions/SystemNumericsExtensions.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/TextureExtensions.cs b/Runtime/Extensions/TextureExtensions.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/TextureExtensions.cs rename to Runtime/Extensions/TextureExtensions.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/TextureExtensions.cs.meta b/Runtime/Extensions/TextureExtensions.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/TextureExtensions.cs.meta rename to Runtime/Extensions/TextureExtensions.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/TransformExtensions.cs b/Runtime/Extensions/TransformExtensions.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/TransformExtensions.cs rename to Runtime/Extensions/TransformExtensions.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/TransformExtensions.cs.meta b/Runtime/Extensions/TransformExtensions.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/TransformExtensions.cs.meta rename to Runtime/Extensions/TransformExtensions.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/TypeExtensions.cs b/Runtime/Extensions/TypeExtensions.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/TypeExtensions.cs rename to Runtime/Extensions/TypeExtensions.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/TypeExtensions.cs.meta b/Runtime/Extensions/TypeExtensions.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/TypeExtensions.cs.meta rename to Runtime/Extensions/TypeExtensions.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/UnityObjectExtensions.cs b/Runtime/Extensions/UnityObjectExtensions.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/UnityObjectExtensions.cs rename to Runtime/Extensions/UnityObjectExtensions.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/UnityObjectExtensions.cs.meta b/Runtime/Extensions/UnityObjectExtensions.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/UnityObjectExtensions.cs.meta rename to Runtime/Extensions/UnityObjectExtensions.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/VectorExtensions.cs b/Runtime/Extensions/VectorExtensions.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/VectorExtensions.cs rename to Runtime/Extensions/VectorExtensions.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/VectorExtensions.cs.meta b/Runtime/Extensions/VectorExtensions.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Extensions/VectorExtensions.cs.meta rename to Runtime/Extensions/VectorExtensions.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces.meta b/Runtime/Interfaces.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces.meta rename to Runtime/Interfaces.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Audio.meta b/Runtime/Interfaces/Audio.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Audio.meta rename to Runtime/Interfaces/Audio.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Audio/IAudioInfluencer.cs b/Runtime/Interfaces/Audio/IAudioInfluencer.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Audio/IAudioInfluencer.cs rename to Runtime/Interfaces/Audio/IAudioInfluencer.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Audio/IAudioInfluencer.cs.meta b/Runtime/Interfaces/Audio/IAudioInfluencer.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Audio/IAudioInfluencer.cs.meta rename to Runtime/Interfaces/Audio/IAudioInfluencer.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/BoundarySystem.meta b/Runtime/Interfaces/BoundarySystem.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/BoundarySystem.meta rename to Runtime/Interfaces/BoundarySystem.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/BoundarySystem/IMixedRealityBoundaryDataProvider.cs b/Runtime/Interfaces/BoundarySystem/IMixedRealityBoundaryDataProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/BoundarySystem/IMixedRealityBoundaryDataProvider.cs rename to Runtime/Interfaces/BoundarySystem/IMixedRealityBoundaryDataProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/BoundarySystem/IMixedRealityBoundaryDataProvider.cs.meta b/Runtime/Interfaces/BoundarySystem/IMixedRealityBoundaryDataProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/BoundarySystem/IMixedRealityBoundaryDataProvider.cs.meta rename to Runtime/Interfaces/BoundarySystem/IMixedRealityBoundaryDataProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/BoundarySystem/IMixedRealityBoundarySystem.cs b/Runtime/Interfaces/BoundarySystem/IMixedRealityBoundarySystem.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/BoundarySystem/IMixedRealityBoundarySystem.cs rename to Runtime/Interfaces/BoundarySystem/IMixedRealityBoundarySystem.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/BoundarySystem/IMixedRealityBoundarySystem.cs.meta b/Runtime/Interfaces/BoundarySystem/IMixedRealityBoundarySystem.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/BoundarySystem/IMixedRealityBoundarySystem.cs.meta rename to Runtime/Interfaces/BoundarySystem/IMixedRealityBoundarySystem.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/CameraSystem.meta b/Runtime/Interfaces/CameraSystem.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/CameraSystem.meta rename to Runtime/Interfaces/CameraSystem.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/CameraSystem/IMixedRealityCameraDataProvider.cs b/Runtime/Interfaces/CameraSystem/IMixedRealityCameraDataProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/CameraSystem/IMixedRealityCameraDataProvider.cs rename to Runtime/Interfaces/CameraSystem/IMixedRealityCameraDataProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/CameraSystem/IMixedRealityCameraDataProvider.cs.meta b/Runtime/Interfaces/CameraSystem/IMixedRealityCameraDataProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/CameraSystem/IMixedRealityCameraDataProvider.cs.meta rename to Runtime/Interfaces/CameraSystem/IMixedRealityCameraDataProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/CameraSystem/IMixedRealityCameraSystem.cs b/Runtime/Interfaces/CameraSystem/IMixedRealityCameraSystem.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/CameraSystem/IMixedRealityCameraSystem.cs rename to Runtime/Interfaces/CameraSystem/IMixedRealityCameraSystem.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/CameraSystem/IMixedRealityCameraSystem.cs.meta b/Runtime/Interfaces/CameraSystem/IMixedRealityCameraSystem.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/CameraSystem/IMixedRealityCameraSystem.cs.meta rename to Runtime/Interfaces/CameraSystem/IMixedRealityCameraSystem.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/DiagnosticsSystem.meta b/Runtime/Interfaces/DiagnosticsSystem.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/DiagnosticsSystem.meta rename to Runtime/Interfaces/DiagnosticsSystem.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/DiagnosticsSystem/Handlers.meta b/Runtime/Interfaces/DiagnosticsSystem/Handlers.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/DiagnosticsSystem/Handlers.meta rename to Runtime/Interfaces/DiagnosticsSystem/Handlers.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/DiagnosticsSystem/Handlers/IMixedRealityConsoleDiagnosticsHandler.cs b/Runtime/Interfaces/DiagnosticsSystem/Handlers/IMixedRealityConsoleDiagnosticsHandler.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/DiagnosticsSystem/Handlers/IMixedRealityConsoleDiagnosticsHandler.cs rename to Runtime/Interfaces/DiagnosticsSystem/Handlers/IMixedRealityConsoleDiagnosticsHandler.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/DiagnosticsSystem/Handlers/IMixedRealityConsoleDiagnosticsHandler.cs.meta b/Runtime/Interfaces/DiagnosticsSystem/Handlers/IMixedRealityConsoleDiagnosticsHandler.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/DiagnosticsSystem/Handlers/IMixedRealityConsoleDiagnosticsHandler.cs.meta rename to Runtime/Interfaces/DiagnosticsSystem/Handlers/IMixedRealityConsoleDiagnosticsHandler.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/DiagnosticsSystem/Handlers/IMixedRealityDiagnosticsHandler.cs b/Runtime/Interfaces/DiagnosticsSystem/Handlers/IMixedRealityDiagnosticsHandler.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/DiagnosticsSystem/Handlers/IMixedRealityDiagnosticsHandler.cs rename to Runtime/Interfaces/DiagnosticsSystem/Handlers/IMixedRealityDiagnosticsHandler.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/DiagnosticsSystem/Handlers/IMixedRealityDiagnosticsHandler.cs.meta b/Runtime/Interfaces/DiagnosticsSystem/Handlers/IMixedRealityDiagnosticsHandler.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/DiagnosticsSystem/Handlers/IMixedRealityDiagnosticsHandler.cs.meta rename to Runtime/Interfaces/DiagnosticsSystem/Handlers/IMixedRealityDiagnosticsHandler.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/DiagnosticsSystem/Handlers/IMixedRealityFrameDiagnosticsHandler.cs b/Runtime/Interfaces/DiagnosticsSystem/Handlers/IMixedRealityFrameDiagnosticsHandler.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/DiagnosticsSystem/Handlers/IMixedRealityFrameDiagnosticsHandler.cs rename to Runtime/Interfaces/DiagnosticsSystem/Handlers/IMixedRealityFrameDiagnosticsHandler.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/DiagnosticsSystem/Handlers/IMixedRealityFrameDiagnosticsHandler.cs.meta b/Runtime/Interfaces/DiagnosticsSystem/Handlers/IMixedRealityFrameDiagnosticsHandler.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/DiagnosticsSystem/Handlers/IMixedRealityFrameDiagnosticsHandler.cs.meta rename to Runtime/Interfaces/DiagnosticsSystem/Handlers/IMixedRealityFrameDiagnosticsHandler.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/DiagnosticsSystem/Handlers/IMixedRealityMemoryDiagnosticsHandler.cs b/Runtime/Interfaces/DiagnosticsSystem/Handlers/IMixedRealityMemoryDiagnosticsHandler.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/DiagnosticsSystem/Handlers/IMixedRealityMemoryDiagnosticsHandler.cs rename to Runtime/Interfaces/DiagnosticsSystem/Handlers/IMixedRealityMemoryDiagnosticsHandler.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/DiagnosticsSystem/Handlers/IMixedRealityMemoryDiagnosticsHandler.cs.meta b/Runtime/Interfaces/DiagnosticsSystem/Handlers/IMixedRealityMemoryDiagnosticsHandler.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/DiagnosticsSystem/Handlers/IMixedRealityMemoryDiagnosticsHandler.cs.meta rename to Runtime/Interfaces/DiagnosticsSystem/Handlers/IMixedRealityMemoryDiagnosticsHandler.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/DiagnosticsSystem/IMixedRealityDiagnosticsDataProvider.cs b/Runtime/Interfaces/DiagnosticsSystem/IMixedRealityDiagnosticsDataProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/DiagnosticsSystem/IMixedRealityDiagnosticsDataProvider.cs rename to Runtime/Interfaces/DiagnosticsSystem/IMixedRealityDiagnosticsDataProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/DiagnosticsSystem/IMixedRealityDiagnosticsDataProvider.cs.meta b/Runtime/Interfaces/DiagnosticsSystem/IMixedRealityDiagnosticsDataProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/DiagnosticsSystem/IMixedRealityDiagnosticsDataProvider.cs.meta rename to Runtime/Interfaces/DiagnosticsSystem/IMixedRealityDiagnosticsDataProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/DiagnosticsSystem/IMixedRealityDiagnosticsSystem.cs b/Runtime/Interfaces/DiagnosticsSystem/IMixedRealityDiagnosticsSystem.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/DiagnosticsSystem/IMixedRealityDiagnosticsSystem.cs rename to Runtime/Interfaces/DiagnosticsSystem/IMixedRealityDiagnosticsSystem.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/DiagnosticsSystem/IMixedRealityDiagnosticsSystem.cs.meta b/Runtime/Interfaces/DiagnosticsSystem/IMixedRealityDiagnosticsSystem.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/DiagnosticsSystem/IMixedRealityDiagnosticsSystem.cs.meta rename to Runtime/Interfaces/DiagnosticsSystem/IMixedRealityDiagnosticsSystem.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/DiagnosticsSystem/IMixedRealityFrameDiagnosticsDataProvider.cs b/Runtime/Interfaces/DiagnosticsSystem/IMixedRealityFrameDiagnosticsDataProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/DiagnosticsSystem/IMixedRealityFrameDiagnosticsDataProvider.cs rename to Runtime/Interfaces/DiagnosticsSystem/IMixedRealityFrameDiagnosticsDataProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/DiagnosticsSystem/IMixedRealityFrameDiagnosticsDataProvider.cs.meta b/Runtime/Interfaces/DiagnosticsSystem/IMixedRealityFrameDiagnosticsDataProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/DiagnosticsSystem/IMixedRealityFrameDiagnosticsDataProvider.cs.meta rename to Runtime/Interfaces/DiagnosticsSystem/IMixedRealityFrameDiagnosticsDataProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/EventSystem.meta b/Runtime/Interfaces/EventSystem.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/EventSystem.meta rename to Runtime/Interfaces/EventSystem.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/EventSystem/Handlers.meta b/Runtime/Interfaces/EventSystem/Handlers.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/EventSystem/Handlers.meta rename to Runtime/Interfaces/EventSystem/Handlers.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/EventSystem/Handlers/IMixedRealityEventHandler.cs b/Runtime/Interfaces/EventSystem/Handlers/IMixedRealityEventHandler.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/EventSystem/Handlers/IMixedRealityEventHandler.cs rename to Runtime/Interfaces/EventSystem/Handlers/IMixedRealityEventHandler.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/EventSystem/Handlers/IMixedRealityEventHandler.cs.meta b/Runtime/Interfaces/EventSystem/Handlers/IMixedRealityEventHandler.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/EventSystem/Handlers/IMixedRealityEventHandler.cs.meta rename to Runtime/Interfaces/EventSystem/Handlers/IMixedRealityEventHandler.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/EventSystem/Handlers/IMixedRealityPlacementHandler.cs b/Runtime/Interfaces/EventSystem/Handlers/IMixedRealityPlacementHandler.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/EventSystem/Handlers/IMixedRealityPlacementHandler.cs rename to Runtime/Interfaces/EventSystem/Handlers/IMixedRealityPlacementHandler.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/EventSystem/Handlers/IMixedRealityPlacementHandler.cs.meta b/Runtime/Interfaces/EventSystem/Handlers/IMixedRealityPlacementHandler.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/EventSystem/Handlers/IMixedRealityPlacementHandler.cs.meta rename to Runtime/Interfaces/EventSystem/Handlers/IMixedRealityPlacementHandler.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/EventSystem/IMixedRealityEventSource.cs b/Runtime/Interfaces/EventSystem/IMixedRealityEventSource.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/EventSystem/IMixedRealityEventSource.cs rename to Runtime/Interfaces/EventSystem/IMixedRealityEventSource.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/EventSystem/IMixedRealityEventSource.cs.meta b/Runtime/Interfaces/EventSystem/IMixedRealityEventSource.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/EventSystem/IMixedRealityEventSource.cs.meta rename to Runtime/Interfaces/EventSystem/IMixedRealityEventSource.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/EventSystem/IMixedRealityEventSystem.cs b/Runtime/Interfaces/EventSystem/IMixedRealityEventSystem.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/EventSystem/IMixedRealityEventSystem.cs rename to Runtime/Interfaces/EventSystem/IMixedRealityEventSystem.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/EventSystem/IMixedRealityEventSystem.cs.meta b/Runtime/Interfaces/EventSystem/IMixedRealityEventSystem.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/EventSystem/IMixedRealityEventSystem.cs.meta rename to Runtime/Interfaces/EventSystem/IMixedRealityEventSystem.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/IMixedRealityCameraRig.cs b/Runtime/Interfaces/IMixedRealityCameraRig.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/IMixedRealityCameraRig.cs rename to Runtime/Interfaces/IMixedRealityCameraRig.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/IMixedRealityCameraRig.cs.meta b/Runtime/Interfaces/IMixedRealityCameraRig.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/IMixedRealityCameraRig.cs.meta rename to Runtime/Interfaces/IMixedRealityCameraRig.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/IMixedRealityDataProvider.cs b/Runtime/Interfaces/IMixedRealityDataProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/IMixedRealityDataProvider.cs rename to Runtime/Interfaces/IMixedRealityDataProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/IMixedRealityDataProvider.cs.meta b/Runtime/Interfaces/IMixedRealityDataProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/IMixedRealityDataProvider.cs.meta rename to Runtime/Interfaces/IMixedRealityDataProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/IMixedRealityExtensionDataProvider.cs b/Runtime/Interfaces/IMixedRealityExtensionDataProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/IMixedRealityExtensionDataProvider.cs rename to Runtime/Interfaces/IMixedRealityExtensionDataProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/IMixedRealityExtensionDataProvider.cs.meta b/Runtime/Interfaces/IMixedRealityExtensionDataProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/IMixedRealityExtensionDataProvider.cs.meta rename to Runtime/Interfaces/IMixedRealityExtensionDataProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/IMixedRealityExtensionService.cs b/Runtime/Interfaces/IMixedRealityExtensionService.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/IMixedRealityExtensionService.cs rename to Runtime/Interfaces/IMixedRealityExtensionService.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/IMixedRealityExtensionService.cs.meta b/Runtime/Interfaces/IMixedRealityExtensionService.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/IMixedRealityExtensionService.cs.meta rename to Runtime/Interfaces/IMixedRealityExtensionService.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/IMixedRealityPlatform.cs b/Runtime/Interfaces/IMixedRealityPlatform.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/IMixedRealityPlatform.cs rename to Runtime/Interfaces/IMixedRealityPlatform.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/IMixedRealityPlatform.cs.meta b/Runtime/Interfaces/IMixedRealityPlatform.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/IMixedRealityPlatform.cs.meta rename to Runtime/Interfaces/IMixedRealityPlatform.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/IMixedRealityService.cs b/Runtime/Interfaces/IMixedRealityService.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/IMixedRealityService.cs rename to Runtime/Interfaces/IMixedRealityService.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/IMixedRealityService.cs.meta b/Runtime/Interfaces/IMixedRealityService.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/IMixedRealityService.cs.meta rename to Runtime/Interfaces/IMixedRealityService.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/IMixedRealityServiceConfiguration.cs b/Runtime/Interfaces/IMixedRealityServiceConfiguration.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/IMixedRealityServiceConfiguration.cs rename to Runtime/Interfaces/IMixedRealityServiceConfiguration.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/IMixedRealityServiceConfiguration.cs.meta b/Runtime/Interfaces/IMixedRealityServiceConfiguration.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/IMixedRealityServiceConfiguration.cs.meta rename to Runtime/Interfaces/IMixedRealityServiceConfiguration.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/IMixedRealitySystem.cs b/Runtime/Interfaces/IMixedRealitySystem.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/IMixedRealitySystem.cs rename to Runtime/Interfaces/IMixedRealitySystem.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/IMixedRealitySystem.cs.meta b/Runtime/Interfaces/IMixedRealitySystem.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/IMixedRealitySystem.cs.meta rename to Runtime/Interfaces/IMixedRealitySystem.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem.meta b/Runtime/Interfaces/InputSystem.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem.meta rename to Runtime/Interfaces/InputSystem.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/Handlers.meta b/Runtime/Interfaces/InputSystem/Handlers.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/Handlers.meta rename to Runtime/Interfaces/InputSystem/Handlers.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityControllerPoseSynchronizer.cs b/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityControllerPoseSynchronizer.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityControllerPoseSynchronizer.cs rename to Runtime/Interfaces/InputSystem/Handlers/IMixedRealityControllerPoseSynchronizer.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityControllerPoseSynchronizer.cs.meta b/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityControllerPoseSynchronizer.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityControllerPoseSynchronizer.cs.meta rename to Runtime/Interfaces/InputSystem/Handlers/IMixedRealityControllerPoseSynchronizer.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityControllerVisualizer.cs b/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityControllerVisualizer.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityControllerVisualizer.cs rename to Runtime/Interfaces/InputSystem/Handlers/IMixedRealityControllerVisualizer.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityControllerVisualizer.cs.meta b/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityControllerVisualizer.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityControllerVisualizer.cs.meta rename to Runtime/Interfaces/InputSystem/Handlers/IMixedRealityControllerVisualizer.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityDictationHandler.cs b/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityDictationHandler.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityDictationHandler.cs rename to Runtime/Interfaces/InputSystem/Handlers/IMixedRealityDictationHandler.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityDictationHandler.cs.meta b/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityDictationHandler.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityDictationHandler.cs.meta rename to Runtime/Interfaces/InputSystem/Handlers/IMixedRealityDictationHandler.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityFocusChangedHandler.cs b/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityFocusChangedHandler.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityFocusChangedHandler.cs rename to Runtime/Interfaces/InputSystem/Handlers/IMixedRealityFocusChangedHandler.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityFocusChangedHandler.cs.meta b/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityFocusChangedHandler.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityFocusChangedHandler.cs.meta rename to Runtime/Interfaces/InputSystem/Handlers/IMixedRealityFocusChangedHandler.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityFocusHandler.cs b/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityFocusHandler.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityFocusHandler.cs rename to Runtime/Interfaces/InputSystem/Handlers/IMixedRealityFocusHandler.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityFocusHandler.cs.meta b/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityFocusHandler.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityFocusHandler.cs.meta rename to Runtime/Interfaces/InputSystem/Handlers/IMixedRealityFocusHandler.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityGestureHandler.cs b/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityGestureHandler.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityGestureHandler.cs rename to Runtime/Interfaces/InputSystem/Handlers/IMixedRealityGestureHandler.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityGestureHandler.cs.meta b/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityGestureHandler.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityGestureHandler.cs.meta rename to Runtime/Interfaces/InputSystem/Handlers/IMixedRealityGestureHandler.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityInputHandler.cs b/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityInputHandler.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityInputHandler.cs rename to Runtime/Interfaces/InputSystem/Handlers/IMixedRealityInputHandler.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityInputHandler.cs.meta b/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityInputHandler.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityInputHandler.cs.meta rename to Runtime/Interfaces/InputSystem/Handlers/IMixedRealityInputHandler.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityPointerDragHandler.cs b/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityPointerDragHandler.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityPointerDragHandler.cs rename to Runtime/Interfaces/InputSystem/Handlers/IMixedRealityPointerDragHandler.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityPointerDragHandler.cs.meta b/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityPointerDragHandler.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityPointerDragHandler.cs.meta rename to Runtime/Interfaces/InputSystem/Handlers/IMixedRealityPointerDragHandler.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityPointerHandler.cs b/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityPointerHandler.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityPointerHandler.cs rename to Runtime/Interfaces/InputSystem/Handlers/IMixedRealityPointerHandler.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityPointerHandler.cs.meta b/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityPointerHandler.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityPointerHandler.cs.meta rename to Runtime/Interfaces/InputSystem/Handlers/IMixedRealityPointerHandler.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityPointerScrollHandler.cs b/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityPointerScrollHandler.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityPointerScrollHandler.cs rename to Runtime/Interfaces/InputSystem/Handlers/IMixedRealityPointerScrollHandler.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityPointerScrollHandler.cs.meta b/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityPointerScrollHandler.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/Handlers/IMixedRealityPointerScrollHandler.cs.meta rename to Runtime/Interfaces/InputSystem/Handlers/IMixedRealityPointerScrollHandler.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/Handlers/IMixedRealitySourcePoseHandler.cs b/Runtime/Interfaces/InputSystem/Handlers/IMixedRealitySourcePoseHandler.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/Handlers/IMixedRealitySourcePoseHandler.cs rename to Runtime/Interfaces/InputSystem/Handlers/IMixedRealitySourcePoseHandler.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/Handlers/IMixedRealitySourcePoseHandler.cs.meta b/Runtime/Interfaces/InputSystem/Handlers/IMixedRealitySourcePoseHandler.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/Handlers/IMixedRealitySourcePoseHandler.cs.meta rename to Runtime/Interfaces/InputSystem/Handlers/IMixedRealitySourcePoseHandler.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/Handlers/IMixedRealitySourceStateHandler.cs b/Runtime/Interfaces/InputSystem/Handlers/IMixedRealitySourceStateHandler.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/Handlers/IMixedRealitySourceStateHandler.cs rename to Runtime/Interfaces/InputSystem/Handlers/IMixedRealitySourceStateHandler.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/Handlers/IMixedRealitySourceStateHandler.cs.meta b/Runtime/Interfaces/InputSystem/Handlers/IMixedRealitySourceStateHandler.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/Handlers/IMixedRealitySourceStateHandler.cs.meta rename to Runtime/Interfaces/InputSystem/Handlers/IMixedRealitySourceStateHandler.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/Handlers/IMixedRealitySpeechHandler.cs b/Runtime/Interfaces/InputSystem/Handlers/IMixedRealitySpeechHandler.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/Handlers/IMixedRealitySpeechHandler.cs rename to Runtime/Interfaces/InputSystem/Handlers/IMixedRealitySpeechHandler.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/Handlers/IMixedRealitySpeechHandler.cs.meta b/Runtime/Interfaces/InputSystem/Handlers/IMixedRealitySpeechHandler.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/Handlers/IMixedRealitySpeechHandler.cs.meta rename to Runtime/Interfaces/InputSystem/Handlers/IMixedRealitySpeechHandler.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/ICursorModifier.cs b/Runtime/Interfaces/InputSystem/ICursorModifier.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/ICursorModifier.cs rename to Runtime/Interfaces/InputSystem/ICursorModifier.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/ICursorModifier.cs.meta b/Runtime/Interfaces/InputSystem/ICursorModifier.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/ICursorModifier.cs.meta rename to Runtime/Interfaces/InputSystem/ICursorModifier.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/IMixedRealityCursor.cs b/Runtime/Interfaces/InputSystem/IMixedRealityCursor.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/IMixedRealityCursor.cs rename to Runtime/Interfaces/InputSystem/IMixedRealityCursor.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/IMixedRealityCursor.cs.meta b/Runtime/Interfaces/InputSystem/IMixedRealityCursor.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/IMixedRealityCursor.cs.meta rename to Runtime/Interfaces/InputSystem/IMixedRealityCursor.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/IMixedRealityFocusProvider.cs b/Runtime/Interfaces/InputSystem/IMixedRealityFocusProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/IMixedRealityFocusProvider.cs rename to Runtime/Interfaces/InputSystem/IMixedRealityFocusProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/IMixedRealityFocusProvider.cs.meta b/Runtime/Interfaces/InputSystem/IMixedRealityFocusProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/IMixedRealityFocusProvider.cs.meta rename to Runtime/Interfaces/InputSystem/IMixedRealityFocusProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/IMixedRealityGazeProvider.cs b/Runtime/Interfaces/InputSystem/IMixedRealityGazeProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/IMixedRealityGazeProvider.cs rename to Runtime/Interfaces/InputSystem/IMixedRealityGazeProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/IMixedRealityGazeProvider.cs.meta b/Runtime/Interfaces/InputSystem/IMixedRealityGazeProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/IMixedRealityGazeProvider.cs.meta rename to Runtime/Interfaces/InputSystem/IMixedRealityGazeProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/IMixedRealityInputSource.cs b/Runtime/Interfaces/InputSystem/IMixedRealityInputSource.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/IMixedRealityInputSource.cs rename to Runtime/Interfaces/InputSystem/IMixedRealityInputSource.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/IMixedRealityInputSource.cs.meta b/Runtime/Interfaces/InputSystem/IMixedRealityInputSource.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/IMixedRealityInputSource.cs.meta rename to Runtime/Interfaces/InputSystem/IMixedRealityInputSource.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/IMixedRealityInputSystem.cs b/Runtime/Interfaces/InputSystem/IMixedRealityInputSystem.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/IMixedRealityInputSystem.cs rename to Runtime/Interfaces/InputSystem/IMixedRealityInputSystem.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/IMixedRealityInputSystem.cs.meta b/Runtime/Interfaces/InputSystem/IMixedRealityInputSystem.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/IMixedRealityInputSystem.cs.meta rename to Runtime/Interfaces/InputSystem/IMixedRealityInputSystem.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/IMixedRealityMousePointer.cs b/Runtime/Interfaces/InputSystem/IMixedRealityMousePointer.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/IMixedRealityMousePointer.cs rename to Runtime/Interfaces/InputSystem/IMixedRealityMousePointer.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/IMixedRealityMousePointer.cs.meta b/Runtime/Interfaces/InputSystem/IMixedRealityMousePointer.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/IMixedRealityMousePointer.cs.meta rename to Runtime/Interfaces/InputSystem/IMixedRealityMousePointer.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/IMixedRealityPointer.cs b/Runtime/Interfaces/InputSystem/IMixedRealityPointer.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/IMixedRealityPointer.cs rename to Runtime/Interfaces/InputSystem/IMixedRealityPointer.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/IMixedRealityPointer.cs.meta b/Runtime/Interfaces/InputSystem/IMixedRealityPointer.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/IMixedRealityPointer.cs.meta rename to Runtime/Interfaces/InputSystem/IMixedRealityPointer.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/IMixedRealityTouchPointer.cs b/Runtime/Interfaces/InputSystem/IMixedRealityTouchPointer.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/IMixedRealityTouchPointer.cs rename to Runtime/Interfaces/InputSystem/IMixedRealityTouchPointer.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/IMixedRealityTouchPointer.cs.meta b/Runtime/Interfaces/InputSystem/IMixedRealityTouchPointer.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/IMixedRealityTouchPointer.cs.meta rename to Runtime/Interfaces/InputSystem/IMixedRealityTouchPointer.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/IPointerResult.cs b/Runtime/Interfaces/InputSystem/IPointerResult.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/IPointerResult.cs rename to Runtime/Interfaces/InputSystem/IPointerResult.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/IPointerResult.cs.meta b/Runtime/Interfaces/InputSystem/IPointerResult.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/InputSystem/IPointerResult.cs.meta rename to Runtime/Interfaces/InputSystem/IPointerResult.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/LocomotionSystem.meta b/Runtime/Interfaces/LocomotionSystem.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/LocomotionSystem.meta rename to Runtime/Interfaces/LocomotionSystem.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/LocomotionSystem/IFreeLocomotionProvider.cs b/Runtime/Interfaces/LocomotionSystem/IFreeLocomotionProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/LocomotionSystem/IFreeLocomotionProvider.cs rename to Runtime/Interfaces/LocomotionSystem/IFreeLocomotionProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/LocomotionSystem/IFreeLocomotionProvider.cs.meta b/Runtime/Interfaces/LocomotionSystem/IFreeLocomotionProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/LocomotionSystem/IFreeLocomotionProvider.cs.meta rename to Runtime/Interfaces/LocomotionSystem/IFreeLocomotionProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/LocomotionSystem/ILocomotionProvider.cs b/Runtime/Interfaces/LocomotionSystem/ILocomotionProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/LocomotionSystem/ILocomotionProvider.cs rename to Runtime/Interfaces/LocomotionSystem/ILocomotionProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/LocomotionSystem/ILocomotionProvider.cs.meta b/Runtime/Interfaces/LocomotionSystem/ILocomotionProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/LocomotionSystem/ILocomotionProvider.cs.meta rename to Runtime/Interfaces/LocomotionSystem/ILocomotionProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/LocomotionSystem/ILocomotionSystem.cs b/Runtime/Interfaces/LocomotionSystem/ILocomotionSystem.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/LocomotionSystem/ILocomotionSystem.cs rename to Runtime/Interfaces/LocomotionSystem/ILocomotionSystem.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/LocomotionSystem/ILocomotionSystem.cs.meta b/Runtime/Interfaces/LocomotionSystem/ILocomotionSystem.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/LocomotionSystem/ILocomotionSystem.cs.meta rename to Runtime/Interfaces/LocomotionSystem/ILocomotionSystem.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/LocomotionSystem/ILocomotionSystemDataProvider.cs b/Runtime/Interfaces/LocomotionSystem/ILocomotionSystemDataProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/LocomotionSystem/ILocomotionSystemDataProvider.cs rename to Runtime/Interfaces/LocomotionSystem/ILocomotionSystemDataProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/LocomotionSystem/ILocomotionSystemDataProvider.cs.meta b/Runtime/Interfaces/LocomotionSystem/ILocomotionSystemDataProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/LocomotionSystem/ILocomotionSystemDataProvider.cs.meta rename to Runtime/Interfaces/LocomotionSystem/ILocomotionSystemDataProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/LocomotionSystem/ILocomotionSystemHandler.cs b/Runtime/Interfaces/LocomotionSystem/ILocomotionSystemHandler.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/LocomotionSystem/ILocomotionSystemHandler.cs rename to Runtime/Interfaces/LocomotionSystem/ILocomotionSystemHandler.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/LocomotionSystem/ILocomotionSystemHandler.cs.meta b/Runtime/Interfaces/LocomotionSystem/ILocomotionSystemHandler.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/LocomotionSystem/ILocomotionSystemHandler.cs.meta rename to Runtime/Interfaces/LocomotionSystem/ILocomotionSystemHandler.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/LocomotionSystem/IOnRailsLocomotionProvider.cs b/Runtime/Interfaces/LocomotionSystem/IOnRailsLocomotionProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/LocomotionSystem/IOnRailsLocomotionProvider.cs rename to Runtime/Interfaces/LocomotionSystem/IOnRailsLocomotionProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/LocomotionSystem/IOnRailsLocomotionProvider.cs.meta b/Runtime/Interfaces/LocomotionSystem/IOnRailsLocomotionProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/LocomotionSystem/IOnRailsLocomotionProvider.cs.meta rename to Runtime/Interfaces/LocomotionSystem/IOnRailsLocomotionProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/LocomotionSystem/ITeleportAnchor.cs b/Runtime/Interfaces/LocomotionSystem/ITeleportAnchor.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/LocomotionSystem/ITeleportAnchor.cs rename to Runtime/Interfaces/LocomotionSystem/ITeleportAnchor.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/LocomotionSystem/ITeleportAnchor.cs.meta b/Runtime/Interfaces/LocomotionSystem/ITeleportAnchor.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/LocomotionSystem/ITeleportAnchor.cs.meta rename to Runtime/Interfaces/LocomotionSystem/ITeleportAnchor.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/LocomotionSystem/ITeleportLocomotionProvider.cs b/Runtime/Interfaces/LocomotionSystem/ITeleportLocomotionProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/LocomotionSystem/ITeleportLocomotionProvider.cs rename to Runtime/Interfaces/LocomotionSystem/ITeleportLocomotionProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/LocomotionSystem/ITeleportLocomotionProvider.cs.meta b/Runtime/Interfaces/LocomotionSystem/ITeleportLocomotionProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/LocomotionSystem/ITeleportLocomotionProvider.cs.meta rename to Runtime/Interfaces/LocomotionSystem/ITeleportLocomotionProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/LocomotionSystem/ITeleportTargetProvider.cs b/Runtime/Interfaces/LocomotionSystem/ITeleportTargetProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/LocomotionSystem/ITeleportTargetProvider.cs rename to Runtime/Interfaces/LocomotionSystem/ITeleportTargetProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/LocomotionSystem/ITeleportTargetProvider.cs.meta b/Runtime/Interfaces/LocomotionSystem/ITeleportTargetProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/LocomotionSystem/ITeleportTargetProvider.cs.meta rename to Runtime/Interfaces/LocomotionSystem/ITeleportTargetProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/LocomotionSystem/ITeleportValidationProvider.cs b/Runtime/Interfaces/LocomotionSystem/ITeleportValidationProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/LocomotionSystem/ITeleportValidationProvider.cs rename to Runtime/Interfaces/LocomotionSystem/ITeleportValidationProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/LocomotionSystem/ITeleportValidationProvider.cs.meta b/Runtime/Interfaces/LocomotionSystem/ITeleportValidationProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/LocomotionSystem/ITeleportValidationProvider.cs.meta rename to Runtime/Interfaces/LocomotionSystem/ITeleportValidationProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/NetworkingSystem.meta b/Runtime/Interfaces/NetworkingSystem.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/NetworkingSystem.meta rename to Runtime/Interfaces/NetworkingSystem.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/NetworkingSystem/Handlers.meta b/Runtime/Interfaces/NetworkingSystem/Handlers.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/NetworkingSystem/Handlers.meta rename to Runtime/Interfaces/NetworkingSystem/Handlers.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/NetworkingSystem/Handlers/IMixedRealityNetworkingHandler.cs b/Runtime/Interfaces/NetworkingSystem/Handlers/IMixedRealityNetworkingHandler.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/NetworkingSystem/Handlers/IMixedRealityNetworkingHandler.cs rename to Runtime/Interfaces/NetworkingSystem/Handlers/IMixedRealityNetworkingHandler.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/NetworkingSystem/Handlers/IMixedRealityNetworkingHandler.cs.meta b/Runtime/Interfaces/NetworkingSystem/Handlers/IMixedRealityNetworkingHandler.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/NetworkingSystem/Handlers/IMixedRealityNetworkingHandler.cs.meta rename to Runtime/Interfaces/NetworkingSystem/Handlers/IMixedRealityNetworkingHandler.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/NetworkingSystem/IMixedRealityNetworkDataProvider.cs b/Runtime/Interfaces/NetworkingSystem/IMixedRealityNetworkDataProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/NetworkingSystem/IMixedRealityNetworkDataProvider.cs rename to Runtime/Interfaces/NetworkingSystem/IMixedRealityNetworkDataProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/NetworkingSystem/IMixedRealityNetworkDataProvider.cs.meta b/Runtime/Interfaces/NetworkingSystem/IMixedRealityNetworkDataProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/NetworkingSystem/IMixedRealityNetworkDataProvider.cs.meta rename to Runtime/Interfaces/NetworkingSystem/IMixedRealityNetworkDataProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/NetworkingSystem/IMixedRealityNetworkingSystem.cs b/Runtime/Interfaces/NetworkingSystem/IMixedRealityNetworkingSystem.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/NetworkingSystem/IMixedRealityNetworkingSystem.cs rename to Runtime/Interfaces/NetworkingSystem/IMixedRealityNetworkingSystem.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/NetworkingSystem/IMixedRealityNetworkingSystem.cs.meta b/Runtime/Interfaces/NetworkingSystem/IMixedRealityNetworkingSystem.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/NetworkingSystem/IMixedRealityNetworkingSystem.cs.meta rename to Runtime/Interfaces/NetworkingSystem/IMixedRealityNetworkingSystem.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Physics.meta b/Runtime/Interfaces/Physics.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Physics.meta rename to Runtime/Interfaces/Physics.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Physics/IBaseRayStabilizer.cs b/Runtime/Interfaces/Physics/IBaseRayStabilizer.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Physics/IBaseRayStabilizer.cs rename to Runtime/Interfaces/Physics/IBaseRayStabilizer.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Physics/IBaseRayStabilizer.cs.meta b/Runtime/Interfaces/Physics/IBaseRayStabilizer.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Physics/IBaseRayStabilizer.cs.meta rename to Runtime/Interfaces/Physics/IBaseRayStabilizer.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers.meta b/Runtime/Interfaces/Providers.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers.meta rename to Runtime/Interfaces/Providers.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/Controllers.meta b/Runtime/Interfaces/Providers/Controllers.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/Controllers.meta rename to Runtime/Interfaces/Providers/Controllers.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/Controllers/Hands.meta b/Runtime/Interfaces/Providers/Controllers/Hands.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/Controllers/Hands.meta rename to Runtime/Interfaces/Providers/Controllers/Hands.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/Controllers/Hands/IHandDataPostProcessor.cs b/Runtime/Interfaces/Providers/Controllers/Hands/IHandDataPostProcessor.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/Controllers/Hands/IHandDataPostProcessor.cs rename to Runtime/Interfaces/Providers/Controllers/Hands/IHandDataPostProcessor.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/Controllers/Hands/IHandDataPostProcessor.cs.meta b/Runtime/Interfaces/Providers/Controllers/Hands/IHandDataPostProcessor.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/Controllers/Hands/IHandDataPostProcessor.cs.meta rename to Runtime/Interfaces/Providers/Controllers/Hands/IHandDataPostProcessor.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/Controllers/Hands/IMixedRealityHandController.cs b/Runtime/Interfaces/Providers/Controllers/Hands/IMixedRealityHandController.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/Controllers/Hands/IMixedRealityHandController.cs rename to Runtime/Interfaces/Providers/Controllers/Hands/IMixedRealityHandController.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/Controllers/Hands/IMixedRealityHandController.cs.meta b/Runtime/Interfaces/Providers/Controllers/Hands/IMixedRealityHandController.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/Controllers/Hands/IMixedRealityHandController.cs.meta rename to Runtime/Interfaces/Providers/Controllers/Hands/IMixedRealityHandController.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/Controllers/Hands/IMixedRealityHandControllerDataProvider.cs b/Runtime/Interfaces/Providers/Controllers/Hands/IMixedRealityHandControllerDataProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/Controllers/Hands/IMixedRealityHandControllerDataProvider.cs rename to Runtime/Interfaces/Providers/Controllers/Hands/IMixedRealityHandControllerDataProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/Controllers/Hands/IMixedRealityHandControllerDataProvider.cs.meta b/Runtime/Interfaces/Providers/Controllers/Hands/IMixedRealityHandControllerDataProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/Controllers/Hands/IMixedRealityHandControllerDataProvider.cs.meta rename to Runtime/Interfaces/Providers/Controllers/Hands/IMixedRealityHandControllerDataProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/Controllers/Hands/ISimulatedHandControllerDataProvider.cs b/Runtime/Interfaces/Providers/Controllers/Hands/ISimulatedHandControllerDataProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/Controllers/Hands/ISimulatedHandControllerDataProvider.cs rename to Runtime/Interfaces/Providers/Controllers/Hands/ISimulatedHandControllerDataProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/Controllers/Hands/ISimulatedHandControllerDataProvider.cs.meta b/Runtime/Interfaces/Providers/Controllers/Hands/ISimulatedHandControllerDataProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/Controllers/Hands/ISimulatedHandControllerDataProvider.cs.meta rename to Runtime/Interfaces/Providers/Controllers/Hands/ISimulatedHandControllerDataProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/Controllers/IMixedRealityController.cs b/Runtime/Interfaces/Providers/Controllers/IMixedRealityController.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/Controllers/IMixedRealityController.cs rename to Runtime/Interfaces/Providers/Controllers/IMixedRealityController.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/Controllers/IMixedRealityController.cs.meta b/Runtime/Interfaces/Providers/Controllers/IMixedRealityController.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/Controllers/IMixedRealityController.cs.meta rename to Runtime/Interfaces/Providers/Controllers/IMixedRealityController.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/Controllers/IMixedRealityControllerDataProvider.cs b/Runtime/Interfaces/Providers/Controllers/IMixedRealityControllerDataProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/Controllers/IMixedRealityControllerDataProvider.cs rename to Runtime/Interfaces/Providers/Controllers/IMixedRealityControllerDataProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/Controllers/IMixedRealityControllerDataProvider.cs.meta b/Runtime/Interfaces/Providers/Controllers/IMixedRealityControllerDataProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/Controllers/IMixedRealityControllerDataProvider.cs.meta rename to Runtime/Interfaces/Providers/Controllers/IMixedRealityControllerDataProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/Controllers/IMixedRealitySimulatedController.cs b/Runtime/Interfaces/Providers/Controllers/IMixedRealitySimulatedController.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/Controllers/IMixedRealitySimulatedController.cs rename to Runtime/Interfaces/Providers/Controllers/IMixedRealitySimulatedController.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/Controllers/IMixedRealitySimulatedController.cs.meta b/Runtime/Interfaces/Providers/Controllers/IMixedRealitySimulatedController.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/Controllers/IMixedRealitySimulatedController.cs.meta rename to Runtime/Interfaces/Providers/Controllers/IMixedRealitySimulatedController.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/Controllers/ISimulatedControllerDataProvider.cs b/Runtime/Interfaces/Providers/Controllers/ISimulatedControllerDataProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/Controllers/ISimulatedControllerDataProvider.cs rename to Runtime/Interfaces/Providers/Controllers/ISimulatedControllerDataProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/Controllers/ISimulatedControllerDataProvider.cs.meta b/Runtime/Interfaces/Providers/Controllers/ISimulatedControllerDataProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/Controllers/ISimulatedControllerDataProvider.cs.meta rename to Runtime/Interfaces/Providers/Controllers/ISimulatedControllerDataProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/IMixedRealityInputDataProvider.cs b/Runtime/Interfaces/Providers/IMixedRealityInputDataProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/IMixedRealityInputDataProvider.cs rename to Runtime/Interfaces/Providers/IMixedRealityInputDataProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/IMixedRealityInputDataProvider.cs.meta b/Runtime/Interfaces/Providers/IMixedRealityInputDataProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/IMixedRealityInputDataProvider.cs.meta rename to Runtime/Interfaces/Providers/IMixedRealityInputDataProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/SpatialObservers.meta b/Runtime/Interfaces/Providers/SpatialObservers.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/SpatialObservers.meta rename to Runtime/Interfaces/Providers/SpatialObservers.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/SpatialObservers/IMixedRealitySpatialAwarenessDataProvider.cs b/Runtime/Interfaces/Providers/SpatialObservers/IMixedRealitySpatialAwarenessDataProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/SpatialObservers/IMixedRealitySpatialAwarenessDataProvider.cs rename to Runtime/Interfaces/Providers/SpatialObservers/IMixedRealitySpatialAwarenessDataProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/SpatialObservers/IMixedRealitySpatialAwarenessDataProvider.cs.meta b/Runtime/Interfaces/Providers/SpatialObservers/IMixedRealitySpatialAwarenessDataProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/SpatialObservers/IMixedRealitySpatialAwarenessDataProvider.cs.meta rename to Runtime/Interfaces/Providers/SpatialObservers/IMixedRealitySpatialAwarenessDataProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/SpatialObservers/IMixedRealitySpatialMeshObserver.cs b/Runtime/Interfaces/Providers/SpatialObservers/IMixedRealitySpatialMeshObserver.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/SpatialObservers/IMixedRealitySpatialMeshObserver.cs rename to Runtime/Interfaces/Providers/SpatialObservers/IMixedRealitySpatialMeshObserver.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/SpatialObservers/IMixedRealitySpatialMeshObserver.cs.meta b/Runtime/Interfaces/Providers/SpatialObservers/IMixedRealitySpatialMeshObserver.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/SpatialObservers/IMixedRealitySpatialMeshObserver.cs.meta rename to Runtime/Interfaces/Providers/SpatialObservers/IMixedRealitySpatialMeshObserver.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/SpatialObservers/IMixedRealitySpatialSurfaceObserver.cs b/Runtime/Interfaces/Providers/SpatialObservers/IMixedRealitySpatialSurfaceObserver.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/SpatialObservers/IMixedRealitySpatialSurfaceObserver.cs rename to Runtime/Interfaces/Providers/SpatialObservers/IMixedRealitySpatialSurfaceObserver.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/SpatialObservers/IMixedRealitySpatialSurfaceObserver.cs.meta b/Runtime/Interfaces/Providers/SpatialObservers/IMixedRealitySpatialSurfaceObserver.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/SpatialObservers/IMixedRealitySpatialSurfaceObserver.cs.meta rename to Runtime/Interfaces/Providers/SpatialObservers/IMixedRealitySpatialSurfaceObserver.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/Speech.meta b/Runtime/Interfaces/Providers/Speech.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/Speech.meta rename to Runtime/Interfaces/Providers/Speech.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/Speech/IMixedRealityDictationDataProvider.cs b/Runtime/Interfaces/Providers/Speech/IMixedRealityDictationDataProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/Speech/IMixedRealityDictationDataProvider.cs rename to Runtime/Interfaces/Providers/Speech/IMixedRealityDictationDataProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/Speech/IMixedRealityDictationDataProvider.cs.meta b/Runtime/Interfaces/Providers/Speech/IMixedRealityDictationDataProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/Speech/IMixedRealityDictationDataProvider.cs.meta rename to Runtime/Interfaces/Providers/Speech/IMixedRealityDictationDataProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/Speech/IMixedRealitySpeechDataProvider.cs b/Runtime/Interfaces/Providers/Speech/IMixedRealitySpeechDataProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/Speech/IMixedRealitySpeechDataProvider.cs rename to Runtime/Interfaces/Providers/Speech/IMixedRealitySpeechDataProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/Speech/IMixedRealitySpeechDataProvider.cs.meta b/Runtime/Interfaces/Providers/Speech/IMixedRealitySpeechDataProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/Providers/Speech/IMixedRealitySpeechDataProvider.cs.meta rename to Runtime/Interfaces/Providers/Speech/IMixedRealitySpeechDataProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/SpatialAwareness.meta b/Runtime/Interfaces/SpatialAwareness.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/SpatialAwareness.meta rename to Runtime/Interfaces/SpatialAwareness.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/SpatialAwareness/Handlers.meta b/Runtime/Interfaces/SpatialAwareness/Handlers.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/SpatialAwareness/Handlers.meta rename to Runtime/Interfaces/SpatialAwareness/Handlers.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/SpatialAwareness/Handlers/IMixedRealitySpatialAwarenessMeshHandler.cs b/Runtime/Interfaces/SpatialAwareness/Handlers/IMixedRealitySpatialAwarenessMeshHandler.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/SpatialAwareness/Handlers/IMixedRealitySpatialAwarenessMeshHandler.cs rename to Runtime/Interfaces/SpatialAwareness/Handlers/IMixedRealitySpatialAwarenessMeshHandler.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/SpatialAwareness/Handlers/IMixedRealitySpatialAwarenessMeshHandler.cs.meta b/Runtime/Interfaces/SpatialAwareness/Handlers/IMixedRealitySpatialAwarenessMeshHandler.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/SpatialAwareness/Handlers/IMixedRealitySpatialAwarenessMeshHandler.cs.meta rename to Runtime/Interfaces/SpatialAwareness/Handlers/IMixedRealitySpatialAwarenessMeshHandler.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/SpatialAwareness/Handlers/IMixedRealitySpatialAwarenessSurfaceFindingHandler.cs b/Runtime/Interfaces/SpatialAwareness/Handlers/IMixedRealitySpatialAwarenessSurfaceFindingHandler.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/SpatialAwareness/Handlers/IMixedRealitySpatialAwarenessSurfaceFindingHandler.cs rename to Runtime/Interfaces/SpatialAwareness/Handlers/IMixedRealitySpatialAwarenessSurfaceFindingHandler.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/SpatialAwareness/Handlers/IMixedRealitySpatialAwarenessSurfaceFindingHandler.cs.meta b/Runtime/Interfaces/SpatialAwareness/Handlers/IMixedRealitySpatialAwarenessSurfaceFindingHandler.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/SpatialAwareness/Handlers/IMixedRealitySpatialAwarenessSurfaceFindingHandler.cs.meta rename to Runtime/Interfaces/SpatialAwareness/Handlers/IMixedRealitySpatialAwarenessSurfaceFindingHandler.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/SpatialAwareness/IMixedRealitySpatialAwarenessSystem.cs b/Runtime/Interfaces/SpatialAwareness/IMixedRealitySpatialAwarenessSystem.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/SpatialAwareness/IMixedRealitySpatialAwarenessSystem.cs rename to Runtime/Interfaces/SpatialAwareness/IMixedRealitySpatialAwarenessSystem.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/SpatialAwareness/IMixedRealitySpatialAwarenessSystem.cs.meta b/Runtime/Interfaces/SpatialAwareness/IMixedRealitySpatialAwarenessSystem.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Interfaces/SpatialAwareness/IMixedRealitySpatialAwarenessSystem.cs.meta rename to Runtime/Interfaces/SpatialAwareness/IMixedRealitySpatialAwarenessSystem.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers.meta b/Runtime/Providers.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers.meta rename to Runtime/Providers.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/CameraSystem.meta b/Runtime/Providers/CameraSystem.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/CameraSystem.meta rename to Runtime/Providers/CameraSystem.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/CameraSystem/BaseCameraDataProvider.cs b/Runtime/Providers/CameraSystem/BaseCameraDataProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/CameraSystem/BaseCameraDataProvider.cs rename to Runtime/Providers/CameraSystem/BaseCameraDataProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/CameraSystem/BaseCameraDataProvider.cs.meta b/Runtime/Providers/CameraSystem/BaseCameraDataProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/CameraSystem/BaseCameraDataProvider.cs.meta rename to Runtime/Providers/CameraSystem/BaseCameraDataProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers.meta b/Runtime/Providers/Controllers.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers.meta rename to Runtime/Providers/Controllers.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/BaseController.cs b/Runtime/Providers/Controllers/BaseController.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/BaseController.cs rename to Runtime/Providers/Controllers/BaseController.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/BaseController.cs.meta b/Runtime/Providers/Controllers/BaseController.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/BaseController.cs.meta rename to Runtime/Providers/Controllers/BaseController.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/BaseControllerDataProvider.cs b/Runtime/Providers/Controllers/BaseControllerDataProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/BaseControllerDataProvider.cs rename to Runtime/Providers/Controllers/BaseControllerDataProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/BaseControllerDataProvider.cs.meta b/Runtime/Providers/Controllers/BaseControllerDataProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/BaseControllerDataProvider.cs.meta rename to Runtime/Providers/Controllers/BaseControllerDataProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/Hands.meta b/Runtime/Providers/Controllers/Hands.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/Hands.meta rename to Runtime/Providers/Controllers/Hands.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/Hands/BaseHandControllerDataProvider.cs b/Runtime/Providers/Controllers/Hands/BaseHandControllerDataProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/Hands/BaseHandControllerDataProvider.cs rename to Runtime/Providers/Controllers/Hands/BaseHandControllerDataProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/Hands/BaseHandControllerDataProvider.cs.meta b/Runtime/Providers/Controllers/Hands/BaseHandControllerDataProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/Hands/BaseHandControllerDataProvider.cs.meta rename to Runtime/Providers/Controllers/Hands/BaseHandControllerDataProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/Hands/HandDataPostProcessor.cs b/Runtime/Providers/Controllers/Hands/HandDataPostProcessor.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/Hands/HandDataPostProcessor.cs rename to Runtime/Providers/Controllers/Hands/HandDataPostProcessor.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/Hands/HandDataPostProcessor.cs.meta b/Runtime/Providers/Controllers/Hands/HandDataPostProcessor.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/Hands/HandDataPostProcessor.cs.meta rename to Runtime/Providers/Controllers/Hands/HandDataPostProcessor.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/Hands/HandGripPostProcessor.cs b/Runtime/Providers/Controllers/Hands/HandGripPostProcessor.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/Hands/HandGripPostProcessor.cs rename to Runtime/Providers/Controllers/Hands/HandGripPostProcessor.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/Hands/HandGripPostProcessor.cs.meta b/Runtime/Providers/Controllers/Hands/HandGripPostProcessor.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/Hands/HandGripPostProcessor.cs.meta rename to Runtime/Providers/Controllers/Hands/HandGripPostProcessor.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/Hands/HandTrackedPosePostProcessor.cs b/Runtime/Providers/Controllers/Hands/HandTrackedPosePostProcessor.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/Hands/HandTrackedPosePostProcessor.cs rename to Runtime/Providers/Controllers/Hands/HandTrackedPosePostProcessor.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/Hands/HandTrackedPosePostProcessor.cs.meta b/Runtime/Providers/Controllers/Hands/HandTrackedPosePostProcessor.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/Hands/HandTrackedPosePostProcessor.cs.meta rename to Runtime/Providers/Controllers/Hands/HandTrackedPosePostProcessor.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/Hands/MixedRealityHandController.cs b/Runtime/Providers/Controllers/Hands/MixedRealityHandController.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/Hands/MixedRealityHandController.cs rename to Runtime/Providers/Controllers/Hands/MixedRealityHandController.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/Hands/MixedRealityHandController.cs.meta b/Runtime/Providers/Controllers/Hands/MixedRealityHandController.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/Hands/MixedRealityHandController.cs.meta rename to Runtime/Providers/Controllers/Hands/MixedRealityHandController.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/OpenVR.meta b/Runtime/Providers/Controllers/OpenVR.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/OpenVR.meta rename to Runtime/Providers/Controllers/OpenVR.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/OpenVR/GenericOpenVRController.cs b/Runtime/Providers/Controllers/OpenVR/GenericOpenVRController.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/OpenVR/GenericOpenVRController.cs rename to Runtime/Providers/Controllers/OpenVR/GenericOpenVRController.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/OpenVR/GenericOpenVRController.cs.meta b/Runtime/Providers/Controllers/OpenVR/GenericOpenVRController.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/OpenVR/GenericOpenVRController.cs.meta rename to Runtime/Providers/Controllers/OpenVR/GenericOpenVRController.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/OpenVR/OculusGoOpenVRController.cs b/Runtime/Providers/Controllers/OpenVR/OculusGoOpenVRController.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/OpenVR/OculusGoOpenVRController.cs rename to Runtime/Providers/Controllers/OpenVR/OculusGoOpenVRController.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/OpenVR/OculusGoOpenVRController.cs.meta b/Runtime/Providers/Controllers/OpenVR/OculusGoOpenVRController.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/OpenVR/OculusGoOpenVRController.cs.meta rename to Runtime/Providers/Controllers/OpenVR/OculusGoOpenVRController.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/OpenVR/OculusRemoteOpenVRController.cs b/Runtime/Providers/Controllers/OpenVR/OculusRemoteOpenVRController.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/OpenVR/OculusRemoteOpenVRController.cs rename to Runtime/Providers/Controllers/OpenVR/OculusRemoteOpenVRController.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/OpenVR/OculusRemoteOpenVRController.cs.meta b/Runtime/Providers/Controllers/OpenVR/OculusRemoteOpenVRController.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/OpenVR/OculusRemoteOpenVRController.cs.meta rename to Runtime/Providers/Controllers/OpenVR/OculusRemoteOpenVRController.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/OpenVR/OculusTouchOpenVRController.cs b/Runtime/Providers/Controllers/OpenVR/OculusTouchOpenVRController.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/OpenVR/OculusTouchOpenVRController.cs rename to Runtime/Providers/Controllers/OpenVR/OculusTouchOpenVRController.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/OpenVR/OculusTouchOpenVRController.cs.meta b/Runtime/Providers/Controllers/OpenVR/OculusTouchOpenVRController.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/OpenVR/OculusTouchOpenVRController.cs.meta rename to Runtime/Providers/Controllers/OpenVR/OculusTouchOpenVRController.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/OpenVR/OpenVRControllerDataProvider.cs b/Runtime/Providers/Controllers/OpenVR/OpenVRControllerDataProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/OpenVR/OpenVRControllerDataProvider.cs rename to Runtime/Providers/Controllers/OpenVR/OpenVRControllerDataProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/OpenVR/OpenVRControllerDataProvider.cs.meta b/Runtime/Providers/Controllers/OpenVR/OpenVRControllerDataProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/OpenVR/OpenVRControllerDataProvider.cs.meta rename to Runtime/Providers/Controllers/OpenVR/OpenVRControllerDataProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/OpenVR/ViveKnucklesOpenVRController.cs b/Runtime/Providers/Controllers/OpenVR/ViveKnucklesOpenVRController.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/OpenVR/ViveKnucklesOpenVRController.cs rename to Runtime/Providers/Controllers/OpenVR/ViveKnucklesOpenVRController.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/OpenVR/ViveKnucklesOpenVRController.cs.meta b/Runtime/Providers/Controllers/OpenVR/ViveKnucklesOpenVRController.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/OpenVR/ViveKnucklesOpenVRController.cs.meta rename to Runtime/Providers/Controllers/OpenVR/ViveKnucklesOpenVRController.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/OpenVR/ViveWandOpenVRController.cs b/Runtime/Providers/Controllers/OpenVR/ViveWandOpenVRController.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/OpenVR/ViveWandOpenVRController.cs rename to Runtime/Providers/Controllers/OpenVR/ViveWandOpenVRController.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/OpenVR/ViveWandOpenVRController.cs.meta b/Runtime/Providers/Controllers/OpenVR/ViveWandOpenVRController.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/OpenVR/ViveWandOpenVRController.cs.meta rename to Runtime/Providers/Controllers/OpenVR/ViveWandOpenVRController.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/OpenVR/WindowsMixedRealityOpenVRMotionController.cs b/Runtime/Providers/Controllers/OpenVR/WindowsMixedRealityOpenVRMotionController.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/OpenVR/WindowsMixedRealityOpenVRMotionController.cs rename to Runtime/Providers/Controllers/OpenVR/WindowsMixedRealityOpenVRMotionController.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/OpenVR/WindowsMixedRealityOpenVRMotionController.cs.meta b/Runtime/Providers/Controllers/OpenVR/WindowsMixedRealityOpenVRMotionController.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/OpenVR/WindowsMixedRealityOpenVRMotionController.cs.meta rename to Runtime/Providers/Controllers/OpenVR/WindowsMixedRealityOpenVRMotionController.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/Simulation.meta b/Runtime/Providers/Controllers/Simulation.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/Simulation.meta rename to Runtime/Providers/Controllers/Simulation.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/Simulation/BaseSimulatedControllerDataProvider.cs b/Runtime/Providers/Controllers/Simulation/BaseSimulatedControllerDataProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/Simulation/BaseSimulatedControllerDataProvider.cs rename to Runtime/Providers/Controllers/Simulation/BaseSimulatedControllerDataProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/Simulation/BaseSimulatedControllerDataProvider.cs.meta b/Runtime/Providers/Controllers/Simulation/BaseSimulatedControllerDataProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/Simulation/BaseSimulatedControllerDataProvider.cs.meta rename to Runtime/Providers/Controllers/Simulation/BaseSimulatedControllerDataProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/Simulation/Hands.meta b/Runtime/Providers/Controllers/Simulation/Hands.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/Simulation/Hands.meta rename to Runtime/Providers/Controllers/Simulation/Hands.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/Simulation/Hands/SimulatedHandControllerDataProvider.cs b/Runtime/Providers/Controllers/Simulation/Hands/SimulatedHandControllerDataProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/Simulation/Hands/SimulatedHandControllerDataProvider.cs rename to Runtime/Providers/Controllers/Simulation/Hands/SimulatedHandControllerDataProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/Simulation/Hands/SimulatedHandControllerDataProvider.cs.meta b/Runtime/Providers/Controllers/Simulation/Hands/SimulatedHandControllerDataProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/Simulation/Hands/SimulatedHandControllerDataProvider.cs.meta rename to Runtime/Providers/Controllers/Simulation/Hands/SimulatedHandControllerDataProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/Simulation/Hands/SimulatedHandDataConverter.cs b/Runtime/Providers/Controllers/Simulation/Hands/SimulatedHandDataConverter.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/Simulation/Hands/SimulatedHandDataConverter.cs rename to Runtime/Providers/Controllers/Simulation/Hands/SimulatedHandDataConverter.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/Simulation/Hands/SimulatedHandDataConverter.cs.meta b/Runtime/Providers/Controllers/Simulation/Hands/SimulatedHandDataConverter.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/Simulation/Hands/SimulatedHandDataConverter.cs.meta rename to Runtime/Providers/Controllers/Simulation/Hands/SimulatedHandDataConverter.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/Simulation/Hands/SimulatedMixedRealityHandController.cs b/Runtime/Providers/Controllers/Simulation/Hands/SimulatedMixedRealityHandController.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/Simulation/Hands/SimulatedMixedRealityHandController.cs rename to Runtime/Providers/Controllers/Simulation/Hands/SimulatedMixedRealityHandController.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/Simulation/Hands/SimulatedMixedRealityHandController.cs.meta b/Runtime/Providers/Controllers/Simulation/Hands/SimulatedMixedRealityHandController.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/Simulation/Hands/SimulatedMixedRealityHandController.cs.meta rename to Runtime/Providers/Controllers/Simulation/Hands/SimulatedMixedRealityHandController.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/UnityInput.meta b/Runtime/Providers/Controllers/UnityInput.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/UnityInput.meta rename to Runtime/Providers/Controllers/UnityInput.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/UnityInput/GenericJoystickController.cs b/Runtime/Providers/Controllers/UnityInput/GenericJoystickController.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/UnityInput/GenericJoystickController.cs rename to Runtime/Providers/Controllers/UnityInput/GenericJoystickController.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/UnityInput/GenericJoystickController.cs.meta b/Runtime/Providers/Controllers/UnityInput/GenericJoystickController.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/UnityInput/GenericJoystickController.cs.meta rename to Runtime/Providers/Controllers/UnityInput/GenericJoystickController.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/UnityInput/MouseController.cs b/Runtime/Providers/Controllers/UnityInput/MouseController.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/UnityInput/MouseController.cs rename to Runtime/Providers/Controllers/UnityInput/MouseController.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/UnityInput/MouseController.cs.meta b/Runtime/Providers/Controllers/UnityInput/MouseController.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/UnityInput/MouseController.cs.meta rename to Runtime/Providers/Controllers/UnityInput/MouseController.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/UnityInput/MouseDataProvider.cs b/Runtime/Providers/Controllers/UnityInput/MouseDataProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/UnityInput/MouseDataProvider.cs rename to Runtime/Providers/Controllers/UnityInput/MouseDataProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/UnityInput/MouseDataProvider.cs.meta b/Runtime/Providers/Controllers/UnityInput/MouseDataProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/UnityInput/MouseDataProvider.cs.meta rename to Runtime/Providers/Controllers/UnityInput/MouseDataProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/UnityInput/UnityJoystickDataProvider.cs b/Runtime/Providers/Controllers/UnityInput/UnityJoystickDataProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/UnityInput/UnityJoystickDataProvider.cs rename to Runtime/Providers/Controllers/UnityInput/UnityJoystickDataProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/UnityInput/UnityJoystickDataProvider.cs.meta b/Runtime/Providers/Controllers/UnityInput/UnityJoystickDataProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/UnityInput/UnityJoystickDataProvider.cs.meta rename to Runtime/Providers/Controllers/UnityInput/UnityJoystickDataProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/UnityInput/UnityTouchController.cs b/Runtime/Providers/Controllers/UnityInput/UnityTouchController.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/UnityInput/UnityTouchController.cs rename to Runtime/Providers/Controllers/UnityInput/UnityTouchController.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/UnityInput/UnityTouchController.cs.meta b/Runtime/Providers/Controllers/UnityInput/UnityTouchController.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/UnityInput/UnityTouchController.cs.meta rename to Runtime/Providers/Controllers/UnityInput/UnityTouchController.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/UnityInput/UnityTouchDataProvider.cs b/Runtime/Providers/Controllers/UnityInput/UnityTouchDataProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/UnityInput/UnityTouchDataProvider.cs rename to Runtime/Providers/Controllers/UnityInput/UnityTouchDataProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/UnityInput/UnityTouchDataProvider.cs.meta b/Runtime/Providers/Controllers/UnityInput/UnityTouchDataProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/UnityInput/UnityTouchDataProvider.cs.meta rename to Runtime/Providers/Controllers/UnityInput/UnityTouchDataProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/UnityInput/XboxController.cs b/Runtime/Providers/Controllers/UnityInput/XboxController.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/UnityInput/XboxController.cs rename to Runtime/Providers/Controllers/UnityInput/XboxController.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/UnityInput/XboxController.cs.meta b/Runtime/Providers/Controllers/UnityInput/XboxController.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Controllers/UnityInput/XboxController.cs.meta rename to Runtime/Providers/Controllers/UnityInput/XboxController.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/LocomotionSystem.meta b/Runtime/Providers/LocomotionSystem.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/LocomotionSystem.meta rename to Runtime/Providers/LocomotionSystem.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/LocomotionSystem/BaseLocomotionProvider.cs b/Runtime/Providers/LocomotionSystem/BaseLocomotionProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/LocomotionSystem/BaseLocomotionProvider.cs rename to Runtime/Providers/LocomotionSystem/BaseLocomotionProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/LocomotionSystem/BaseLocomotionProvider.cs.meta b/Runtime/Providers/LocomotionSystem/BaseLocomotionProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/LocomotionSystem/BaseLocomotionProvider.cs.meta rename to Runtime/Providers/LocomotionSystem/BaseLocomotionProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/LocomotionSystem/BaseTeleportLocomotionProvider.cs b/Runtime/Providers/LocomotionSystem/BaseTeleportLocomotionProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/LocomotionSystem/BaseTeleportLocomotionProvider.cs rename to Runtime/Providers/LocomotionSystem/BaseTeleportLocomotionProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/LocomotionSystem/BaseTeleportLocomotionProvider.cs.meta b/Runtime/Providers/LocomotionSystem/BaseTeleportLocomotionProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/LocomotionSystem/BaseTeleportLocomotionProvider.cs.meta rename to Runtime/Providers/LocomotionSystem/BaseTeleportLocomotionProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/LocomotionSystem/BlinkTeleportLocomotionProvider.cs b/Runtime/Providers/LocomotionSystem/BlinkTeleportLocomotionProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/LocomotionSystem/BlinkTeleportLocomotionProvider.cs rename to Runtime/Providers/LocomotionSystem/BlinkTeleportLocomotionProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/LocomotionSystem/BlinkTeleportLocomotionProvider.cs.meta b/Runtime/Providers/LocomotionSystem/BlinkTeleportLocomotionProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/LocomotionSystem/BlinkTeleportLocomotionProvider.cs.meta rename to Runtime/Providers/LocomotionSystem/BlinkTeleportLocomotionProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/LocomotionSystem/DashTeleportLocomotionProvider.cs b/Runtime/Providers/LocomotionSystem/DashTeleportLocomotionProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/LocomotionSystem/DashTeleportLocomotionProvider.cs rename to Runtime/Providers/LocomotionSystem/DashTeleportLocomotionProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/LocomotionSystem/DashTeleportLocomotionProvider.cs.meta b/Runtime/Providers/LocomotionSystem/DashTeleportLocomotionProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/LocomotionSystem/DashTeleportLocomotionProvider.cs.meta rename to Runtime/Providers/LocomotionSystem/DashTeleportLocomotionProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/LocomotionSystem/InstantTeleportLocomotionProvider.cs b/Runtime/Providers/LocomotionSystem/InstantTeleportLocomotionProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/LocomotionSystem/InstantTeleportLocomotionProvider.cs rename to Runtime/Providers/LocomotionSystem/InstantTeleportLocomotionProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/LocomotionSystem/InstantTeleportLocomotionProvider.cs.meta b/Runtime/Providers/LocomotionSystem/InstantTeleportLocomotionProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/LocomotionSystem/InstantTeleportLocomotionProvider.cs.meta rename to Runtime/Providers/LocomotionSystem/InstantTeleportLocomotionProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/LocomotionSystem/SmoothLocomotionProvider.cs b/Runtime/Providers/LocomotionSystem/SmoothLocomotionProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/LocomotionSystem/SmoothLocomotionProvider.cs rename to Runtime/Providers/LocomotionSystem/SmoothLocomotionProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/LocomotionSystem/SmoothLocomotionProvider.cs.meta b/Runtime/Providers/LocomotionSystem/SmoothLocomotionProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/LocomotionSystem/SmoothLocomotionProvider.cs.meta rename to Runtime/Providers/LocomotionSystem/SmoothLocomotionProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/LocomotionSystem/TeleportValidationProvider.cs b/Runtime/Providers/LocomotionSystem/TeleportValidationProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/LocomotionSystem/TeleportValidationProvider.cs rename to Runtime/Providers/LocomotionSystem/TeleportValidationProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/LocomotionSystem/TeleportValidationProvider.cs.meta b/Runtime/Providers/LocomotionSystem/TeleportValidationProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/LocomotionSystem/TeleportValidationProvider.cs.meta rename to Runtime/Providers/LocomotionSystem/TeleportValidationProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Networking.meta b/Runtime/Providers/Networking.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Networking.meta rename to Runtime/Providers/Networking.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Networking/WebRTC.meta b/Runtime/Providers/Networking/WebRTC.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Networking/WebRTC.meta rename to Runtime/Providers/Networking/WebRTC.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Networking/WebRTC/MixedRealityWebRtcDataProvider.cs b/Runtime/Providers/Networking/WebRTC/MixedRealityWebRtcDataProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Networking/WebRTC/MixedRealityWebRtcDataProvider.cs rename to Runtime/Providers/Networking/WebRTC/MixedRealityWebRtcDataProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Networking/WebRTC/MixedRealityWebRtcDataProvider.cs.meta b/Runtime/Providers/Networking/WebRTC/MixedRealityWebRtcDataProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Networking/WebRTC/MixedRealityWebRtcDataProvider.cs.meta rename to Runtime/Providers/Networking/WebRTC/MixedRealityWebRtcDataProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Networking/WebRTC/WebRtcPeerConnection.cs b/Runtime/Providers/Networking/WebRTC/WebRtcPeerConnection.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Networking/WebRTC/WebRtcPeerConnection.cs rename to Runtime/Providers/Networking/WebRTC/WebRtcPeerConnection.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Networking/WebRTC/WebRtcPeerConnection.cs.meta b/Runtime/Providers/Networking/WebRTC/WebRtcPeerConnection.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Networking/WebRTC/WebRtcPeerConnection.cs.meta rename to Runtime/Providers/Networking/WebRTC/WebRtcPeerConnection.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/SpatialObservers.meta b/Runtime/Providers/SpatialObservers.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/SpatialObservers.meta rename to Runtime/Providers/SpatialObservers.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/SpatialObservers/BaseMixedRealitySpatialMeshObserver.cs b/Runtime/Providers/SpatialObservers/BaseMixedRealitySpatialMeshObserver.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/SpatialObservers/BaseMixedRealitySpatialMeshObserver.cs rename to Runtime/Providers/SpatialObservers/BaseMixedRealitySpatialMeshObserver.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/SpatialObservers/BaseMixedRealitySpatialMeshObserver.cs.meta b/Runtime/Providers/SpatialObservers/BaseMixedRealitySpatialMeshObserver.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/SpatialObservers/BaseMixedRealitySpatialMeshObserver.cs.meta rename to Runtime/Providers/SpatialObservers/BaseMixedRealitySpatialMeshObserver.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/SpatialObservers/BaseMixedRealitySpatialObserverDataProvider.cs b/Runtime/Providers/SpatialObservers/BaseMixedRealitySpatialObserverDataProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/SpatialObservers/BaseMixedRealitySpatialObserverDataProvider.cs rename to Runtime/Providers/SpatialObservers/BaseMixedRealitySpatialObserverDataProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/SpatialObservers/BaseMixedRealitySpatialObserverDataProvider.cs.meta b/Runtime/Providers/SpatialObservers/BaseMixedRealitySpatialObserverDataProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/SpatialObservers/BaseMixedRealitySpatialObserverDataProvider.cs.meta rename to Runtime/Providers/SpatialObservers/BaseMixedRealitySpatialObserverDataProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/SpatialObservers/BaseMixedRealitySpatialSurfaceObserver.cs b/Runtime/Providers/SpatialObservers/BaseMixedRealitySpatialSurfaceObserver.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/SpatialObservers/BaseMixedRealitySpatialSurfaceObserver.cs rename to Runtime/Providers/SpatialObservers/BaseMixedRealitySpatialSurfaceObserver.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/SpatialObservers/BaseMixedRealitySpatialSurfaceObserver.cs.meta b/Runtime/Providers/SpatialObservers/BaseMixedRealitySpatialSurfaceObserver.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/SpatialObservers/BaseMixedRealitySpatialSurfaceObserver.cs.meta rename to Runtime/Providers/SpatialObservers/BaseMixedRealitySpatialSurfaceObserver.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Speech.meta b/Runtime/Providers/Speech.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Speech.meta rename to Runtime/Providers/Speech.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Speech/BaseDictationDataProvider.cs b/Runtime/Providers/Speech/BaseDictationDataProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Speech/BaseDictationDataProvider.cs rename to Runtime/Providers/Speech/BaseDictationDataProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Speech/BaseDictationDataProvider.cs.meta b/Runtime/Providers/Speech/BaseDictationDataProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Speech/BaseDictationDataProvider.cs.meta rename to Runtime/Providers/Speech/BaseDictationDataProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Speech/BaseSpeechDataProvider.cs b/Runtime/Providers/Speech/BaseSpeechDataProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Speech/BaseSpeechDataProvider.cs rename to Runtime/Providers/Speech/BaseSpeechDataProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Speech/BaseSpeechDataProvider.cs.meta b/Runtime/Providers/Speech/BaseSpeechDataProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Speech/BaseSpeechDataProvider.cs.meta rename to Runtime/Providers/Speech/BaseSpeechDataProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Speech/WindowsDictationDataProvider.cs b/Runtime/Providers/Speech/WindowsDictationDataProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Speech/WindowsDictationDataProvider.cs rename to Runtime/Providers/Speech/WindowsDictationDataProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Speech/WindowsDictationDataProvider.cs.meta b/Runtime/Providers/Speech/WindowsDictationDataProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Speech/WindowsDictationDataProvider.cs.meta rename to Runtime/Providers/Speech/WindowsDictationDataProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Speech/WindowsSpeechDataProvider.cs b/Runtime/Providers/Speech/WindowsSpeechDataProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Speech/WindowsSpeechDataProvider.cs rename to Runtime/Providers/Speech/WindowsSpeechDataProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Speech/WindowsSpeechDataProvider.cs.meta b/Runtime/Providers/Speech/WindowsSpeechDataProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Providers/Speech/WindowsSpeechDataProvider.cs.meta rename to Runtime/Providers/Speech/WindowsSpeechDataProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services.meta b/Runtime/Services.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services.meta rename to Runtime/Services.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/BaseDataProvider.cs b/Runtime/Services/BaseDataProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/BaseDataProvider.cs rename to Runtime/Services/BaseDataProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/BaseDataProvider.cs.meta b/Runtime/Services/BaseDataProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/BaseDataProvider.cs.meta rename to Runtime/Services/BaseDataProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/BaseEventSystem.cs b/Runtime/Services/BaseEventSystem.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/BaseEventSystem.cs rename to Runtime/Services/BaseEventSystem.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/BaseEventSystem.cs.meta b/Runtime/Services/BaseEventSystem.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/BaseEventSystem.cs.meta rename to Runtime/Services/BaseEventSystem.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/BaseExtensionDataProvider.cs b/Runtime/Services/BaseExtensionDataProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/BaseExtensionDataProvider.cs rename to Runtime/Services/BaseExtensionDataProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/BaseExtensionDataProvider.cs.meta b/Runtime/Services/BaseExtensionDataProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/BaseExtensionDataProvider.cs.meta rename to Runtime/Services/BaseExtensionDataProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/BaseExtensionService.cs b/Runtime/Services/BaseExtensionService.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/BaseExtensionService.cs rename to Runtime/Services/BaseExtensionService.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/BaseExtensionService.cs.meta b/Runtime/Services/BaseExtensionService.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/BaseExtensionService.cs.meta rename to Runtime/Services/BaseExtensionService.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/BaseService.cs b/Runtime/Services/BaseService.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/BaseService.cs rename to Runtime/Services/BaseService.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/BaseService.cs.meta b/Runtime/Services/BaseService.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/BaseService.cs.meta rename to Runtime/Services/BaseService.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/BaseServiceWithConstructor.cs b/Runtime/Services/BaseServiceWithConstructor.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/BaseServiceWithConstructor.cs rename to Runtime/Services/BaseServiceWithConstructor.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/BaseServiceWithConstructor.cs.meta b/Runtime/Services/BaseServiceWithConstructor.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/BaseServiceWithConstructor.cs.meta rename to Runtime/Services/BaseServiceWithConstructor.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/BaseSystem.cs b/Runtime/Services/BaseSystem.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/BaseSystem.cs rename to Runtime/Services/BaseSystem.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/BaseSystem.cs.meta b/Runtime/Services/BaseSystem.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/BaseSystem.cs.meta rename to Runtime/Services/BaseSystem.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/BoundarySystem.meta b/Runtime/Services/BoundarySystem.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/BoundarySystem.meta rename to Runtime/Services/BoundarySystem.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/BoundarySystem/MixedRealityBoundarySystem.cs b/Runtime/Services/BoundarySystem/MixedRealityBoundarySystem.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/BoundarySystem/MixedRealityBoundarySystem.cs rename to Runtime/Services/BoundarySystem/MixedRealityBoundarySystem.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/BoundarySystem/MixedRealityBoundarySystem.cs.meta b/Runtime/Services/BoundarySystem/MixedRealityBoundarySystem.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/BoundarySystem/MixedRealityBoundarySystem.cs.meta rename to Runtime/Services/BoundarySystem/MixedRealityBoundarySystem.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/CameraSystem.meta b/Runtime/Services/CameraSystem.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/CameraSystem.meta rename to Runtime/Services/CameraSystem.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/CameraSystem/DefaultCameraRig.cs b/Runtime/Services/CameraSystem/DefaultCameraRig.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/CameraSystem/DefaultCameraRig.cs rename to Runtime/Services/CameraSystem/DefaultCameraRig.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/CameraSystem/DefaultCameraRig.cs.meta b/Runtime/Services/CameraSystem/DefaultCameraRig.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/CameraSystem/DefaultCameraRig.cs.meta rename to Runtime/Services/CameraSystem/DefaultCameraRig.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/CameraSystem/MixedRealityCameraSystem.cs b/Runtime/Services/CameraSystem/MixedRealityCameraSystem.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/CameraSystem/MixedRealityCameraSystem.cs rename to Runtime/Services/CameraSystem/MixedRealityCameraSystem.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/CameraSystem/MixedRealityCameraSystem.cs.meta b/Runtime/Services/CameraSystem/MixedRealityCameraSystem.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/CameraSystem/MixedRealityCameraSystem.cs.meta rename to Runtime/Services/CameraSystem/MixedRealityCameraSystem.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/CameraSystem/TrackingType.cs b/Runtime/Services/CameraSystem/TrackingType.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/CameraSystem/TrackingType.cs rename to Runtime/Services/CameraSystem/TrackingType.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/CameraSystem/TrackingType.cs.meta b/Runtime/Services/CameraSystem/TrackingType.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/CameraSystem/TrackingType.cs.meta rename to Runtime/Services/CameraSystem/TrackingType.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/DiagnosticsSystem.meta b/Runtime/Services/DiagnosticsSystem.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/DiagnosticsSystem.meta rename to Runtime/Services/DiagnosticsSystem.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/DiagnosticsSystem/BaseMixedRealityDiagnosticsDataProvider.cs b/Runtime/Services/DiagnosticsSystem/BaseMixedRealityDiagnosticsDataProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/DiagnosticsSystem/BaseMixedRealityDiagnosticsDataProvider.cs rename to Runtime/Services/DiagnosticsSystem/BaseMixedRealityDiagnosticsDataProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/DiagnosticsSystem/BaseMixedRealityDiagnosticsDataProvider.cs.meta b/Runtime/Services/DiagnosticsSystem/BaseMixedRealityDiagnosticsDataProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/DiagnosticsSystem/BaseMixedRealityDiagnosticsDataProvider.cs.meta rename to Runtime/Services/DiagnosticsSystem/BaseMixedRealityDiagnosticsDataProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/DiagnosticsSystem/DiagnosticsUtils.cs b/Runtime/Services/DiagnosticsSystem/DiagnosticsUtils.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/DiagnosticsSystem/DiagnosticsUtils.cs rename to Runtime/Services/DiagnosticsSystem/DiagnosticsUtils.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/DiagnosticsSystem/DiagnosticsUtils.cs.meta b/Runtime/Services/DiagnosticsSystem/DiagnosticsUtils.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/DiagnosticsSystem/DiagnosticsUtils.cs.meta rename to Runtime/Services/DiagnosticsSystem/DiagnosticsUtils.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/DiagnosticsSystem/MixedRealityConsoleDiagnosticsDataProvider.cs b/Runtime/Services/DiagnosticsSystem/MixedRealityConsoleDiagnosticsDataProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/DiagnosticsSystem/MixedRealityConsoleDiagnosticsDataProvider.cs rename to Runtime/Services/DiagnosticsSystem/MixedRealityConsoleDiagnosticsDataProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/DiagnosticsSystem/MixedRealityConsoleDiagnosticsDataProvider.cs.meta b/Runtime/Services/DiagnosticsSystem/MixedRealityConsoleDiagnosticsDataProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/DiagnosticsSystem/MixedRealityConsoleDiagnosticsDataProvider.cs.meta rename to Runtime/Services/DiagnosticsSystem/MixedRealityConsoleDiagnosticsDataProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/DiagnosticsSystem/MixedRealityDiagnosticsSystem.cs b/Runtime/Services/DiagnosticsSystem/MixedRealityDiagnosticsSystem.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/DiagnosticsSystem/MixedRealityDiagnosticsSystem.cs rename to Runtime/Services/DiagnosticsSystem/MixedRealityDiagnosticsSystem.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/DiagnosticsSystem/MixedRealityDiagnosticsSystem.cs.meta b/Runtime/Services/DiagnosticsSystem/MixedRealityDiagnosticsSystem.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/DiagnosticsSystem/MixedRealityDiagnosticsSystem.cs.meta rename to Runtime/Services/DiagnosticsSystem/MixedRealityDiagnosticsSystem.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/DiagnosticsSystem/MixedRealityFrameDiagnosticsDataProvider.cs b/Runtime/Services/DiagnosticsSystem/MixedRealityFrameDiagnosticsDataProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/DiagnosticsSystem/MixedRealityFrameDiagnosticsDataProvider.cs rename to Runtime/Services/DiagnosticsSystem/MixedRealityFrameDiagnosticsDataProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/DiagnosticsSystem/MixedRealityFrameDiagnosticsDataProvider.cs.meta b/Runtime/Services/DiagnosticsSystem/MixedRealityFrameDiagnosticsDataProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/DiagnosticsSystem/MixedRealityFrameDiagnosticsDataProvider.cs.meta rename to Runtime/Services/DiagnosticsSystem/MixedRealityFrameDiagnosticsDataProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/DiagnosticsSystem/MixedRealityMemoryDiagnosticsDataProvider.cs b/Runtime/Services/DiagnosticsSystem/MixedRealityMemoryDiagnosticsDataProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/DiagnosticsSystem/MixedRealityMemoryDiagnosticsDataProvider.cs rename to Runtime/Services/DiagnosticsSystem/MixedRealityMemoryDiagnosticsDataProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/DiagnosticsSystem/MixedRealityMemoryDiagnosticsDataProvider.cs.meta b/Runtime/Services/DiagnosticsSystem/MixedRealityMemoryDiagnosticsDataProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/DiagnosticsSystem/MixedRealityMemoryDiagnosticsDataProvider.cs.meta rename to Runtime/Services/DiagnosticsSystem/MixedRealityMemoryDiagnosticsDataProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/InputSystem.meta b/Runtime/Services/InputSystem.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/InputSystem.meta rename to Runtime/Services/InputSystem.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/InputSystem/BaseGenericInputSource.cs b/Runtime/Services/InputSystem/BaseGenericInputSource.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/InputSystem/BaseGenericInputSource.cs rename to Runtime/Services/InputSystem/BaseGenericInputSource.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/InputSystem/BaseGenericInputSource.cs.meta b/Runtime/Services/InputSystem/BaseGenericInputSource.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/InputSystem/BaseGenericInputSource.cs.meta rename to Runtime/Services/InputSystem/BaseGenericInputSource.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/InputSystem/FocusProvider.cs b/Runtime/Services/InputSystem/FocusProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/InputSystem/FocusProvider.cs rename to Runtime/Services/InputSystem/FocusProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/InputSystem/FocusProvider.cs.meta b/Runtime/Services/InputSystem/FocusProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/InputSystem/FocusProvider.cs.meta rename to Runtime/Services/InputSystem/FocusProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/InputSystem/GazeProvider.cs b/Runtime/Services/InputSystem/GazeProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/InputSystem/GazeProvider.cs rename to Runtime/Services/InputSystem/GazeProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/InputSystem/GazeProvider.cs.meta b/Runtime/Services/InputSystem/GazeProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/InputSystem/GazeProvider.cs.meta rename to Runtime/Services/InputSystem/GazeProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/InputSystem/GenericPointer.cs b/Runtime/Services/InputSystem/GenericPointer.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/InputSystem/GenericPointer.cs rename to Runtime/Services/InputSystem/GenericPointer.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/InputSystem/GenericPointer.cs.meta b/Runtime/Services/InputSystem/GenericPointer.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/InputSystem/GenericPointer.cs.meta rename to Runtime/Services/InputSystem/GenericPointer.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/InputSystem/MixedRealityInputSystem.cs b/Runtime/Services/InputSystem/MixedRealityInputSystem.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/InputSystem/MixedRealityInputSystem.cs rename to Runtime/Services/InputSystem/MixedRealityInputSystem.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/InputSystem/MixedRealityInputSystem.cs.meta b/Runtime/Services/InputSystem/MixedRealityInputSystem.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/InputSystem/MixedRealityInputSystem.cs.meta rename to Runtime/Services/InputSystem/MixedRealityInputSystem.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/LocomotionSystem.meta b/Runtime/Services/LocomotionSystem.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/LocomotionSystem.meta rename to Runtime/Services/LocomotionSystem.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/LocomotionSystem/LocomotionEventData.cs b/Runtime/Services/LocomotionSystem/LocomotionEventData.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/LocomotionSystem/LocomotionEventData.cs rename to Runtime/Services/LocomotionSystem/LocomotionEventData.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/LocomotionSystem/LocomotionEventData.cs.meta b/Runtime/Services/LocomotionSystem/LocomotionEventData.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/LocomotionSystem/LocomotionEventData.cs.meta rename to Runtime/Services/LocomotionSystem/LocomotionEventData.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/LocomotionSystem/LocomotionProviderEventDriver.cs b/Runtime/Services/LocomotionSystem/LocomotionProviderEventDriver.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/LocomotionSystem/LocomotionProviderEventDriver.cs rename to Runtime/Services/LocomotionSystem/LocomotionProviderEventDriver.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/LocomotionSystem/LocomotionProviderEventDriver.cs.meta b/Runtime/Services/LocomotionSystem/LocomotionProviderEventDriver.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/LocomotionSystem/LocomotionProviderEventDriver.cs.meta rename to Runtime/Services/LocomotionSystem/LocomotionProviderEventDriver.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/LocomotionSystem/LocomotionSystem.cs b/Runtime/Services/LocomotionSystem/LocomotionSystem.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/LocomotionSystem/LocomotionSystem.cs rename to Runtime/Services/LocomotionSystem/LocomotionSystem.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/LocomotionSystem/LocomotionSystem.cs.meta b/Runtime/Services/LocomotionSystem/LocomotionSystem.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/LocomotionSystem/LocomotionSystem.cs.meta rename to Runtime/Services/LocomotionSystem/LocomotionSystem.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/LocomotionSystem/LocomotionTargetOverride.cs b/Runtime/Services/LocomotionSystem/LocomotionTargetOverride.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/LocomotionSystem/LocomotionTargetOverride.cs rename to Runtime/Services/LocomotionSystem/LocomotionTargetOverride.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/LocomotionSystem/LocomotionTargetOverride.cs.meta b/Runtime/Services/LocomotionSystem/LocomotionTargetOverride.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/LocomotionSystem/LocomotionTargetOverride.cs.meta rename to Runtime/Services/LocomotionSystem/LocomotionTargetOverride.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/LocomotionSystem/TeleportValidationResult.cs b/Runtime/Services/LocomotionSystem/TeleportValidationResult.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/LocomotionSystem/TeleportValidationResult.cs rename to Runtime/Services/LocomotionSystem/TeleportValidationResult.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/LocomotionSystem/TeleportValidationResult.cs.meta b/Runtime/Services/LocomotionSystem/TeleportValidationResult.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/LocomotionSystem/TeleportValidationResult.cs.meta rename to Runtime/Services/LocomotionSystem/TeleportValidationResult.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/MixedRealityToolkit.cs b/Runtime/Services/MixedRealityToolkit.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/MixedRealityToolkit.cs rename to Runtime/Services/MixedRealityToolkit.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/MixedRealityToolkit.cs.meta b/Runtime/Services/MixedRealityToolkit.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/MixedRealityToolkit.cs.meta rename to Runtime/Services/MixedRealityToolkit.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/NetworkingSystem.meta b/Runtime/Services/NetworkingSystem.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/NetworkingSystem.meta rename to Runtime/Services/NetworkingSystem.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/NetworkingSystem/MixedRealityNetworkingSystem.cs b/Runtime/Services/NetworkingSystem/MixedRealityNetworkingSystem.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/NetworkingSystem/MixedRealityNetworkingSystem.cs rename to Runtime/Services/NetworkingSystem/MixedRealityNetworkingSystem.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/NetworkingSystem/MixedRealityNetworkingSystem.cs.meta b/Runtime/Services/NetworkingSystem/MixedRealityNetworkingSystem.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/NetworkingSystem/MixedRealityNetworkingSystem.cs.meta rename to Runtime/Services/NetworkingSystem/MixedRealityNetworkingSystem.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/SpatialAwarenessSystem.meta b/Runtime/Services/SpatialAwarenessSystem.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/SpatialAwarenessSystem.meta rename to Runtime/Services/SpatialAwarenessSystem.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/SpatialAwarenessSystem/MixedRealitySpatialAwarenessSystem.cs b/Runtime/Services/SpatialAwarenessSystem/MixedRealitySpatialAwarenessSystem.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/SpatialAwarenessSystem/MixedRealitySpatialAwarenessSystem.cs rename to Runtime/Services/SpatialAwarenessSystem/MixedRealitySpatialAwarenessSystem.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Services/SpatialAwarenessSystem/MixedRealitySpatialAwarenessSystem.cs.meta b/Runtime/Services/SpatialAwarenessSystem/MixedRealitySpatialAwarenessSystem.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Services/SpatialAwarenessSystem/MixedRealitySpatialAwarenessSystem.cs.meta rename to Runtime/Services/SpatialAwarenessSystem/MixedRealitySpatialAwarenessSystem.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets.meta b/Runtime/StandardAssets.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets.meta rename to Runtime/StandardAssets.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Fonts.meta b/Runtime/StandardAssets/Fonts.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Fonts.meta rename to Runtime/StandardAssets/Fonts.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Fonts/LICENSE.txt b/Runtime/StandardAssets/Fonts/LICENSE.txt similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Fonts/LICENSE.txt rename to Runtime/StandardAssets/Fonts/LICENSE.txt diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Fonts/LICENSE.txt.meta b/Runtime/StandardAssets/Fonts/LICENSE.txt.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Fonts/LICENSE.txt.meta rename to Runtime/StandardAssets/Fonts/LICENSE.txt.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Fonts/selawk.ttf b/Runtime/StandardAssets/Fonts/selawk.ttf similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Fonts/selawk.ttf rename to Runtime/StandardAssets/Fonts/selawk.ttf diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Fonts/selawk.ttf.meta b/Runtime/StandardAssets/Fonts/selawk.ttf.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Fonts/selawk.ttf.meta rename to Runtime/StandardAssets/Fonts/selawk.ttf.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Fonts/selawkb.ttf b/Runtime/StandardAssets/Fonts/selawkb.ttf similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Fonts/selawkb.ttf rename to Runtime/StandardAssets/Fonts/selawkb.ttf diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Fonts/selawkb.ttf.meta b/Runtime/StandardAssets/Fonts/selawkb.ttf.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Fonts/selawkb.ttf.meta rename to Runtime/StandardAssets/Fonts/selawkb.ttf.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Fonts/selawkl.ttf b/Runtime/StandardAssets/Fonts/selawkl.ttf similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Fonts/selawkl.ttf rename to Runtime/StandardAssets/Fonts/selawkl.ttf diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Fonts/selawkl.ttf.meta b/Runtime/StandardAssets/Fonts/selawkl.ttf.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Fonts/selawkl.ttf.meta rename to Runtime/StandardAssets/Fonts/selawkl.ttf.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Fonts/selawksb.ttf b/Runtime/StandardAssets/Fonts/selawksb.ttf similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Fonts/selawksb.ttf rename to Runtime/StandardAssets/Fonts/selawksb.ttf diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Fonts/selawksb.ttf.meta b/Runtime/StandardAssets/Fonts/selawksb.ttf.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Fonts/selawksb.ttf.meta rename to Runtime/StandardAssets/Fonts/selawksb.ttf.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Fonts/selawksl.ttf b/Runtime/StandardAssets/Fonts/selawksl.ttf similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Fonts/selawksl.ttf rename to Runtime/StandardAssets/Fonts/selawksl.ttf diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Fonts/selawksl.ttf.meta b/Runtime/StandardAssets/Fonts/selawksl.ttf.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Fonts/selawksl.ttf.meta rename to Runtime/StandardAssets/Fonts/selawksl.ttf.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Icons.meta b/Runtime/StandardAssets/Icons.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Icons.meta rename to Runtime/StandardAssets/Icons.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Icons/mic_icon.png b/Runtime/StandardAssets/Icons/mic_icon.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Icons/mic_icon.png rename to Runtime/StandardAssets/Icons/mic_icon.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Icons/mic_icon.png.meta b/Runtime/StandardAssets/Icons/mic_icon.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Icons/mic_icon.png.meta rename to Runtime/StandardAssets/Icons/mic_icon.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Icons/mixed_reality_icon.png b/Runtime/StandardAssets/Icons/mixed_reality_icon.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Icons/mixed_reality_icon.png rename to Runtime/StandardAssets/Icons/mixed_reality_icon.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Icons/mixed_reality_icon.png.meta b/Runtime/StandardAssets/Icons/mixed_reality_icon.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Icons/mixed_reality_icon.png.meta rename to Runtime/StandardAssets/Icons/mixed_reality_icon.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Icons/script_icon.png b/Runtime/StandardAssets/Icons/script_icon.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Icons/script_icon.png rename to Runtime/StandardAssets/Icons/script_icon.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Icons/script_icon.png.meta b/Runtime/StandardAssets/Icons/script_icon.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Icons/script_icon.png.meta rename to Runtime/StandardAssets/Icons/script_icon.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Icons/settings_icon.png b/Runtime/StandardAssets/Icons/settings_icon.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Icons/settings_icon.png rename to Runtime/StandardAssets/Icons/settings_icon.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Icons/settings_icon.png.meta b/Runtime/StandardAssets/Icons/settings_icon.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Icons/settings_icon.png.meta rename to Runtime/StandardAssets/Icons/settings_icon.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Icons/shapes_icon.png b/Runtime/StandardAssets/Icons/shapes_icon.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Icons/shapes_icon.png rename to Runtime/StandardAssets/Icons/shapes_icon.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Icons/shapes_icon.png.meta b/Runtime/StandardAssets/Icons/shapes_icon.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Icons/shapes_icon.png.meta rename to Runtime/StandardAssets/Icons/shapes_icon.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Icons/spatial_icon.png b/Runtime/StandardAssets/Icons/spatial_icon.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Icons/spatial_icon.png rename to Runtime/StandardAssets/Icons/spatial_icon.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Icons/spatial_icon.png.meta b/Runtime/StandardAssets/Icons/spatial_icon.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Icons/spatial_icon.png.meta rename to Runtime/StandardAssets/Icons/spatial_icon.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Icons/spatial_understanding_icon.png b/Runtime/StandardAssets/Icons/spatial_understanding_icon.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Icons/spatial_understanding_icon.png rename to Runtime/StandardAssets/Icons/spatial_understanding_icon.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Icons/spatial_understanding_icon.png.meta b/Runtime/StandardAssets/Icons/spatial_understanding_icon.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Icons/spatial_understanding_icon.png.meta rename to Runtime/StandardAssets/Icons/spatial_understanding_icon.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Icons/toolkit_icon.png b/Runtime/StandardAssets/Icons/toolkit_icon.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Icons/toolkit_icon.png rename to Runtime/StandardAssets/Icons/toolkit_icon.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Icons/toolkit_icon.png.meta b/Runtime/StandardAssets/Icons/toolkit_icon.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Icons/toolkit_icon.png.meta rename to Runtime/StandardAssets/Icons/toolkit_icon.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Icons/ux_icon.png b/Runtime/StandardAssets/Icons/ux_icon.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Icons/ux_icon.png rename to Runtime/StandardAssets/Icons/ux_icon.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Icons/ux_icon.png.meta b/Runtime/StandardAssets/Icons/ux_icon.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Icons/ux_icon.png.meta rename to Runtime/StandardAssets/Icons/ux_icon.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Materials.meta b/Runtime/StandardAssets/Materials.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Materials.meta rename to Runtime/StandardAssets/Materials.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Materials/3DTextSelawik.mat b/Runtime/StandardAssets/Materials/3DTextSelawik.mat similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Materials/3DTextSelawik.mat rename to Runtime/StandardAssets/Materials/3DTextSelawik.mat diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Materials/3DTextSelawik.mat.meta b/Runtime/StandardAssets/Materials/3DTextSelawik.mat.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Materials/3DTextSelawik.mat.meta rename to Runtime/StandardAssets/Materials/3DTextSelawik.mat.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Materials/3DTextSelawikBold.mat b/Runtime/StandardAssets/Materials/3DTextSelawikBold.mat similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Materials/3DTextSelawikBold.mat rename to Runtime/StandardAssets/Materials/3DTextSelawikBold.mat diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Materials/3DTextSelawikBold.mat.meta b/Runtime/StandardAssets/Materials/3DTextSelawikBold.mat.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Materials/3DTextSelawikBold.mat.meta rename to Runtime/StandardAssets/Materials/3DTextSelawikBold.mat.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Materials/3DTextSelawikLight.mat b/Runtime/StandardAssets/Materials/3DTextSelawikLight.mat similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Materials/3DTextSelawikLight.mat rename to Runtime/StandardAssets/Materials/3DTextSelawikLight.mat diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Materials/3DTextSelawikLight.mat.meta b/Runtime/StandardAssets/Materials/3DTextSelawikLight.mat.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Materials/3DTextSelawikLight.mat.meta rename to Runtime/StandardAssets/Materials/3DTextSelawikLight.mat.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Materials/3DTextSelawikSemibold.mat b/Runtime/StandardAssets/Materials/3DTextSelawikSemibold.mat similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Materials/3DTextSelawikSemibold.mat rename to Runtime/StandardAssets/Materials/3DTextSelawikSemibold.mat diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Materials/3DTextSelawikSemibold.mat.meta b/Runtime/StandardAssets/Materials/3DTextSelawikSemibold.mat.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Materials/3DTextSelawikSemibold.mat.meta rename to Runtime/StandardAssets/Materials/3DTextSelawikSemibold.mat.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Materials/3DTextSelawikSemilight.mat b/Runtime/StandardAssets/Materials/3DTextSelawikSemilight.mat similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Materials/3DTextSelawikSemilight.mat rename to Runtime/StandardAssets/Materials/3DTextSelawikSemilight.mat diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Materials/3DTextSelawikSemilight.mat.meta b/Runtime/StandardAssets/Materials/3DTextSelawikSemilight.mat.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Materials/3DTextSelawikSemilight.mat.meta rename to Runtime/StandardAssets/Materials/3DTextSelawikSemilight.mat.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Materials/UIDarkGray.mat b/Runtime/StandardAssets/Materials/UIDarkGray.mat similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Materials/UIDarkGray.mat rename to Runtime/StandardAssets/Materials/UIDarkGray.mat diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Materials/UIDarkGray.mat.meta b/Runtime/StandardAssets/Materials/UIDarkGray.mat.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Materials/UIDarkGray.mat.meta rename to Runtime/StandardAssets/Materials/UIDarkGray.mat.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Models.meta b/Runtime/StandardAssets/Models.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Models.meta rename to Runtime/StandardAssets/Models.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Models/GizmoLeft.fbx b/Runtime/StandardAssets/Models/GizmoLeft.fbx similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Models/GizmoLeft.fbx rename to Runtime/StandardAssets/Models/GizmoLeft.fbx diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Models/GizmoLeft.fbx.meta b/Runtime/StandardAssets/Models/GizmoLeft.fbx.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Models/GizmoLeft.fbx.meta rename to Runtime/StandardAssets/Models/GizmoLeft.fbx.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Models/GizmoRight.fbx b/Runtime/StandardAssets/Models/GizmoRight.fbx similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Models/GizmoRight.fbx rename to Runtime/StandardAssets/Models/GizmoRight.fbx diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Models/GizmoRight.fbx.meta b/Runtime/StandardAssets/Models/GizmoRight.fbx.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Models/GizmoRight.fbx.meta rename to Runtime/StandardAssets/Models/GizmoRight.fbx.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Prefabs.meta b/Runtime/StandardAssets/Prefabs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Prefabs.meta rename to Runtime/StandardAssets/Prefabs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Prefabs/Gizmos.meta b/Runtime/StandardAssets/Prefabs/Gizmos.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Prefabs/Gizmos.meta rename to Runtime/StandardAssets/Prefabs/Gizmos.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Prefabs/Gizmos/GizmoLeft.prefab b/Runtime/StandardAssets/Prefabs/Gizmos/GizmoLeft.prefab similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Prefabs/Gizmos/GizmoLeft.prefab rename to Runtime/StandardAssets/Prefabs/Gizmos/GizmoLeft.prefab diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Prefabs/Gizmos/GizmoLeft.prefab.meta b/Runtime/StandardAssets/Prefabs/Gizmos/GizmoLeft.prefab.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Prefabs/Gizmos/GizmoLeft.prefab.meta rename to Runtime/StandardAssets/Prefabs/Gizmos/GizmoLeft.prefab.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Prefabs/Gizmos/GizmoRight.prefab b/Runtime/StandardAssets/Prefabs/Gizmos/GizmoRight.prefab similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Prefabs/Gizmos/GizmoRight.prefab rename to Runtime/StandardAssets/Prefabs/Gizmos/GizmoRight.prefab diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Prefabs/Gizmos/GizmoRight.prefab.meta b/Runtime/StandardAssets/Prefabs/Gizmos/GizmoRight.prefab.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Prefabs/Gizmos/GizmoRight.prefab.meta rename to Runtime/StandardAssets/Prefabs/Gizmos/GizmoRight.prefab.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Shaders.meta b/Runtime/StandardAssets/Shaders.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Shaders.meta rename to Runtime/StandardAssets/Shaders.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Shaders/ChannelPacker.shader b/Runtime/StandardAssets/Shaders/ChannelPacker.shader similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Shaders/ChannelPacker.shader rename to Runtime/StandardAssets/Shaders/ChannelPacker.shader diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Shaders/ChannelPacker.shader.meta b/Runtime/StandardAssets/Shaders/ChannelPacker.shader.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Shaders/ChannelPacker.shader.meta rename to Runtime/StandardAssets/Shaders/ChannelPacker.shader.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Shaders/InstancedColored.shader b/Runtime/StandardAssets/Shaders/InstancedColored.shader similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Shaders/InstancedColored.shader rename to Runtime/StandardAssets/Shaders/InstancedColored.shader diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Shaders/InstancedColored.shader.meta b/Runtime/StandardAssets/Shaders/InstancedColored.shader.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Shaders/InstancedColored.shader.meta rename to Runtime/StandardAssets/Shaders/InstancedColored.shader.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Shaders/InvisibleShader.shader b/Runtime/StandardAssets/Shaders/InvisibleShader.shader similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Shaders/InvisibleShader.shader rename to Runtime/StandardAssets/Shaders/InvisibleShader.shader diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Shaders/InvisibleShader.shader.meta b/Runtime/StandardAssets/Shaders/InvisibleShader.shader.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Shaders/InvisibleShader.shader.meta rename to Runtime/StandardAssets/Shaders/InvisibleShader.shader.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Shaders/MixedRealityStandard.shader b/Runtime/StandardAssets/Shaders/MixedRealityStandard.shader similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Shaders/MixedRealityStandard.shader rename to Runtime/StandardAssets/Shaders/MixedRealityStandard.shader diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Shaders/MixedRealityStandard.shader.meta b/Runtime/StandardAssets/Shaders/MixedRealityStandard.shader.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Shaders/MixedRealityStandard.shader.meta rename to Runtime/StandardAssets/Shaders/MixedRealityStandard.shader.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Shaders/MixedRealityTextMeshPro.shader b/Runtime/StandardAssets/Shaders/MixedRealityTextMeshPro.shader similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Shaders/MixedRealityTextMeshPro.shader rename to Runtime/StandardAssets/Shaders/MixedRealityTextMeshPro.shader diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Shaders/MixedRealityTextMeshPro.shader.meta b/Runtime/StandardAssets/Shaders/MixedRealityTextMeshPro.shader.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Shaders/MixedRealityTextMeshPro.shader.meta rename to Runtime/StandardAssets/Shaders/MixedRealityTextMeshPro.shader.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Shaders/Text3DShader.shader b/Runtime/StandardAssets/Shaders/Text3DShader.shader similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Shaders/Text3DShader.shader rename to Runtime/StandardAssets/Shaders/Text3DShader.shader diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Shaders/Text3DShader.shader.meta b/Runtime/StandardAssets/Shaders/Text3DShader.shader.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Shaders/Text3DShader.shader.meta rename to Runtime/StandardAssets/Shaders/Text3DShader.shader.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures.meta b/Runtime/StandardAssets/Textures.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures.meta rename to Runtime/StandardAssets/Textures.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/DefaultPointerDottedLine.png b/Runtime/StandardAssets/Textures/DefaultPointerDottedLine.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/DefaultPointerDottedLine.png rename to Runtime/StandardAssets/Textures/DefaultPointerDottedLine.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/DefaultPointerDottedLine.png.meta b/Runtime/StandardAssets/Textures/DefaultPointerDottedLine.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/DefaultPointerDottedLine.png.meta rename to Runtime/StandardAssets/Textures/DefaultPointerDottedLine.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/Generic_controller_left_black_scaled.png b/Runtime/StandardAssets/Textures/Generic_controller_left_black_scaled.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/Generic_controller_left_black_scaled.png rename to Runtime/StandardAssets/Textures/Generic_controller_left_black_scaled.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/Generic_controller_left_black_scaled.png.meta b/Runtime/StandardAssets/Textures/Generic_controller_left_black_scaled.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/Generic_controller_left_black_scaled.png.meta rename to Runtime/StandardAssets/Textures/Generic_controller_left_black_scaled.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/Generic_controller_left_white_scaled.png b/Runtime/StandardAssets/Textures/Generic_controller_left_white_scaled.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/Generic_controller_left_white_scaled.png rename to Runtime/StandardAssets/Textures/Generic_controller_left_white_scaled.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/Generic_controller_left_white_scaled.png.meta b/Runtime/StandardAssets/Textures/Generic_controller_left_white_scaled.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/Generic_controller_left_white_scaled.png.meta rename to Runtime/StandardAssets/Textures/Generic_controller_left_white_scaled.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/Generic_controller_right_black_scaled.png b/Runtime/StandardAssets/Textures/Generic_controller_right_black_scaled.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/Generic_controller_right_black_scaled.png rename to Runtime/StandardAssets/Textures/Generic_controller_right_black_scaled.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/Generic_controller_right_black_scaled.png.meta b/Runtime/StandardAssets/Textures/Generic_controller_right_black_scaled.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/Generic_controller_right_black_scaled.png.meta rename to Runtime/StandardAssets/Textures/Generic_controller_right_black_scaled.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/Generic_controller_right_white_scaled.png b/Runtime/StandardAssets/Textures/Generic_controller_right_white_scaled.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/Generic_controller_right_white_scaled.png rename to Runtime/StandardAssets/Textures/Generic_controller_right_white_scaled.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/Generic_controller_right_white_scaled.png.meta b/Runtime/StandardAssets/Textures/Generic_controller_right_white_scaled.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/Generic_controller_right_white_scaled.png.meta rename to Runtime/StandardAssets/Textures/Generic_controller_right_white_scaled.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/LuminController_left_black.png b/Runtime/StandardAssets/Textures/LuminController_left_black.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/LuminController_left_black.png rename to Runtime/StandardAssets/Textures/LuminController_left_black.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/LuminController_left_black.png.meta b/Runtime/StandardAssets/Textures/LuminController_left_black.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/LuminController_left_black.png.meta rename to Runtime/StandardAssets/Textures/LuminController_left_black.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/LuminController_left_black_scaled.png b/Runtime/StandardAssets/Textures/LuminController_left_black_scaled.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/LuminController_left_black_scaled.png rename to Runtime/StandardAssets/Textures/LuminController_left_black_scaled.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/LuminController_left_black_scaled.png.meta b/Runtime/StandardAssets/Textures/LuminController_left_black_scaled.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/LuminController_left_black_scaled.png.meta rename to Runtime/StandardAssets/Textures/LuminController_left_black_scaled.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/LuminController_left_white.png b/Runtime/StandardAssets/Textures/LuminController_left_white.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/LuminController_left_white.png rename to Runtime/StandardAssets/Textures/LuminController_left_white.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/LuminController_left_white.png.meta b/Runtime/StandardAssets/Textures/LuminController_left_white.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/LuminController_left_white.png.meta rename to Runtime/StandardAssets/Textures/LuminController_left_white.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/LuminController_left_white_scaled.png b/Runtime/StandardAssets/Textures/LuminController_left_white_scaled.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/LuminController_left_white_scaled.png rename to Runtime/StandardAssets/Textures/LuminController_left_white_scaled.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/LuminController_left_white_scaled.png.meta b/Runtime/StandardAssets/Textures/LuminController_left_white_scaled.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/LuminController_left_white_scaled.png.meta rename to Runtime/StandardAssets/Textures/LuminController_left_white_scaled.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/LuminController_right_black.png b/Runtime/StandardAssets/Textures/LuminController_right_black.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/LuminController_right_black.png rename to Runtime/StandardAssets/Textures/LuminController_right_black.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/LuminController_right_black.png.meta b/Runtime/StandardAssets/Textures/LuminController_right_black.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/LuminController_right_black.png.meta rename to Runtime/StandardAssets/Textures/LuminController_right_black.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/LuminController_right_black_scaled.png b/Runtime/StandardAssets/Textures/LuminController_right_black_scaled.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/LuminController_right_black_scaled.png rename to Runtime/StandardAssets/Textures/LuminController_right_black_scaled.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/LuminController_right_black_scaled.png.meta b/Runtime/StandardAssets/Textures/LuminController_right_black_scaled.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/LuminController_right_black_scaled.png.meta rename to Runtime/StandardAssets/Textures/LuminController_right_black_scaled.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/LuminController_right_white.png b/Runtime/StandardAssets/Textures/LuminController_right_white.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/LuminController_right_white.png rename to Runtime/StandardAssets/Textures/LuminController_right_white.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/LuminController_right_white.png.meta b/Runtime/StandardAssets/Textures/LuminController_right_white.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/LuminController_right_white.png.meta rename to Runtime/StandardAssets/Textures/LuminController_right_white.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/LuminController_right_white_scaled.png b/Runtime/StandardAssets/Textures/LuminController_right_white_scaled.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/LuminController_right_white_scaled.png rename to Runtime/StandardAssets/Textures/LuminController_right_white_scaled.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/LuminController_right_white_scaled.png.meta b/Runtime/StandardAssets/Textures/LuminController_right_white_scaled.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/LuminController_right_white_scaled.png.meta rename to Runtime/StandardAssets/Textures/LuminController_right_white_scaled.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/MixedRealityHandController_left_black.png b/Runtime/StandardAssets/Textures/MixedRealityHandController_left_black.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/MixedRealityHandController_left_black.png rename to Runtime/StandardAssets/Textures/MixedRealityHandController_left_black.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/MixedRealityHandController_left_black.png.meta b/Runtime/StandardAssets/Textures/MixedRealityHandController_left_black.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/MixedRealityHandController_left_black.png.meta rename to Runtime/StandardAssets/Textures/MixedRealityHandController_left_black.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/MixedRealityHandController_left_black_scaled.png b/Runtime/StandardAssets/Textures/MixedRealityHandController_left_black_scaled.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/MixedRealityHandController_left_black_scaled.png rename to Runtime/StandardAssets/Textures/MixedRealityHandController_left_black_scaled.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/MixedRealityHandController_left_black_scaled.png.meta b/Runtime/StandardAssets/Textures/MixedRealityHandController_left_black_scaled.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/MixedRealityHandController_left_black_scaled.png.meta rename to Runtime/StandardAssets/Textures/MixedRealityHandController_left_black_scaled.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/MixedRealityHandController_left_white.png b/Runtime/StandardAssets/Textures/MixedRealityHandController_left_white.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/MixedRealityHandController_left_white.png rename to Runtime/StandardAssets/Textures/MixedRealityHandController_left_white.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/MixedRealityHandController_left_white.png.meta b/Runtime/StandardAssets/Textures/MixedRealityHandController_left_white.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/MixedRealityHandController_left_white.png.meta rename to Runtime/StandardAssets/Textures/MixedRealityHandController_left_white.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/MixedRealityHandController_left_white_scaled.png b/Runtime/StandardAssets/Textures/MixedRealityHandController_left_white_scaled.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/MixedRealityHandController_left_white_scaled.png rename to Runtime/StandardAssets/Textures/MixedRealityHandController_left_white_scaled.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/MixedRealityHandController_left_white_scaled.png.meta b/Runtime/StandardAssets/Textures/MixedRealityHandController_left_white_scaled.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/MixedRealityHandController_left_white_scaled.png.meta rename to Runtime/StandardAssets/Textures/MixedRealityHandController_left_white_scaled.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/MixedRealityHandController_right_black.png b/Runtime/StandardAssets/Textures/MixedRealityHandController_right_black.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/MixedRealityHandController_right_black.png rename to Runtime/StandardAssets/Textures/MixedRealityHandController_right_black.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/MixedRealityHandController_right_black.png.meta b/Runtime/StandardAssets/Textures/MixedRealityHandController_right_black.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/MixedRealityHandController_right_black.png.meta rename to Runtime/StandardAssets/Textures/MixedRealityHandController_right_black.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/MixedRealityHandController_right_black_scaled.png b/Runtime/StandardAssets/Textures/MixedRealityHandController_right_black_scaled.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/MixedRealityHandController_right_black_scaled.png rename to Runtime/StandardAssets/Textures/MixedRealityHandController_right_black_scaled.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/MixedRealityHandController_right_black_scaled.png.meta b/Runtime/StandardAssets/Textures/MixedRealityHandController_right_black_scaled.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/MixedRealityHandController_right_black_scaled.png.meta rename to Runtime/StandardAssets/Textures/MixedRealityHandController_right_black_scaled.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/MixedRealityHandController_right_white.png b/Runtime/StandardAssets/Textures/MixedRealityHandController_right_white.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/MixedRealityHandController_right_white.png rename to Runtime/StandardAssets/Textures/MixedRealityHandController_right_white.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/MixedRealityHandController_right_white.png.meta b/Runtime/StandardAssets/Textures/MixedRealityHandController_right_white.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/MixedRealityHandController_right_white.png.meta rename to Runtime/StandardAssets/Textures/MixedRealityHandController_right_white.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/MixedRealityHandController_right_white_scaled.png b/Runtime/StandardAssets/Textures/MixedRealityHandController_right_white_scaled.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/MixedRealityHandController_right_white_scaled.png rename to Runtime/StandardAssets/Textures/MixedRealityHandController_right_white_scaled.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/MixedRealityHandController_right_white_scaled.png.meta b/Runtime/StandardAssets/Textures/MixedRealityHandController_right_white_scaled.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/MixedRealityHandController_right_white_scaled.png.meta rename to Runtime/StandardAssets/Textures/MixedRealityHandController_right_white_scaled.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/MouseCursor.png b/Runtime/StandardAssets/Textures/MouseCursor.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/MouseCursor.png rename to Runtime/StandardAssets/Textures/MouseCursor.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/MouseCursor.png.meta b/Runtime/StandardAssets/Textures/MouseCursor.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/MouseCursor.png.meta rename to Runtime/StandardAssets/Textures/MouseCursor.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/Oculus lineart attribution.txt b/Runtime/StandardAssets/Textures/Oculus lineart attribution.txt similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/Oculus lineart attribution.txt rename to Runtime/StandardAssets/Textures/Oculus lineart attribution.txt diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/Oculus lineart attribution.txt.meta b/Runtime/StandardAssets/Textures/Oculus lineart attribution.txt.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/Oculus lineart attribution.txt.meta rename to Runtime/StandardAssets/Textures/Oculus lineart attribution.txt.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusGoController_black.png b/Runtime/StandardAssets/Textures/OculusGoController_black.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusGoController_black.png rename to Runtime/StandardAssets/Textures/OculusGoController_black.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusGoController_black.png.meta b/Runtime/StandardAssets/Textures/OculusGoController_black.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusGoController_black.png.meta rename to Runtime/StandardAssets/Textures/OculusGoController_black.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusGoController_black_scaled.png b/Runtime/StandardAssets/Textures/OculusGoController_black_scaled.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusGoController_black_scaled.png rename to Runtime/StandardAssets/Textures/OculusGoController_black_scaled.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusGoController_black_scaled.png.meta b/Runtime/StandardAssets/Textures/OculusGoController_black_scaled.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusGoController_black_scaled.png.meta rename to Runtime/StandardAssets/Textures/OculusGoController_black_scaled.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusGoController_white.png b/Runtime/StandardAssets/Textures/OculusGoController_white.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusGoController_white.png rename to Runtime/StandardAssets/Textures/OculusGoController_white.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusGoController_white.png.meta b/Runtime/StandardAssets/Textures/OculusGoController_white.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusGoController_white.png.meta rename to Runtime/StandardAssets/Textures/OculusGoController_white.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusGoController_white_scaled.png b/Runtime/StandardAssets/Textures/OculusGoController_white_scaled.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusGoController_white_scaled.png rename to Runtime/StandardAssets/Textures/OculusGoController_white_scaled.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusGoController_white_scaled.png.meta b/Runtime/StandardAssets/Textures/OculusGoController_white_scaled.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusGoController_white_scaled.png.meta rename to Runtime/StandardAssets/Textures/OculusGoController_white_scaled.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusRemoteController_black.png b/Runtime/StandardAssets/Textures/OculusRemoteController_black.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusRemoteController_black.png rename to Runtime/StandardAssets/Textures/OculusRemoteController_black.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusRemoteController_black.png.meta b/Runtime/StandardAssets/Textures/OculusRemoteController_black.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusRemoteController_black.png.meta rename to Runtime/StandardAssets/Textures/OculusRemoteController_black.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusRemoteController_black_scaled.png b/Runtime/StandardAssets/Textures/OculusRemoteController_black_scaled.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusRemoteController_black_scaled.png rename to Runtime/StandardAssets/Textures/OculusRemoteController_black_scaled.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusRemoteController_black_scaled.png.meta b/Runtime/StandardAssets/Textures/OculusRemoteController_black_scaled.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusRemoteController_black_scaled.png.meta rename to Runtime/StandardAssets/Textures/OculusRemoteController_black_scaled.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusRemoteController_white.png b/Runtime/StandardAssets/Textures/OculusRemoteController_white.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusRemoteController_white.png rename to Runtime/StandardAssets/Textures/OculusRemoteController_white.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusRemoteController_white.png.meta b/Runtime/StandardAssets/Textures/OculusRemoteController_white.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusRemoteController_white.png.meta rename to Runtime/StandardAssets/Textures/OculusRemoteController_white.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusRemoteController_white_scaled.png b/Runtime/StandardAssets/Textures/OculusRemoteController_white_scaled.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusRemoteController_white_scaled.png rename to Runtime/StandardAssets/Textures/OculusRemoteController_white_scaled.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusRemoteController_white_scaled.png.meta b/Runtime/StandardAssets/Textures/OculusRemoteController_white_scaled.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusRemoteController_white_scaled.png.meta rename to Runtime/StandardAssets/Textures/OculusRemoteController_white_scaled.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusTouchController_left_black.png b/Runtime/StandardAssets/Textures/OculusTouchController_left_black.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusTouchController_left_black.png rename to Runtime/StandardAssets/Textures/OculusTouchController_left_black.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusTouchController_left_black.png.meta b/Runtime/StandardAssets/Textures/OculusTouchController_left_black.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusTouchController_left_black.png.meta rename to Runtime/StandardAssets/Textures/OculusTouchController_left_black.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusTouchController_left_black_scaled.png b/Runtime/StandardAssets/Textures/OculusTouchController_left_black_scaled.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusTouchController_left_black_scaled.png rename to Runtime/StandardAssets/Textures/OculusTouchController_left_black_scaled.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusTouchController_left_black_scaled.png.meta b/Runtime/StandardAssets/Textures/OculusTouchController_left_black_scaled.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusTouchController_left_black_scaled.png.meta rename to Runtime/StandardAssets/Textures/OculusTouchController_left_black_scaled.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusTouchController_left_white.png b/Runtime/StandardAssets/Textures/OculusTouchController_left_white.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusTouchController_left_white.png rename to Runtime/StandardAssets/Textures/OculusTouchController_left_white.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusTouchController_left_white.png.meta b/Runtime/StandardAssets/Textures/OculusTouchController_left_white.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusTouchController_left_white.png.meta rename to Runtime/StandardAssets/Textures/OculusTouchController_left_white.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusTouchController_left_white_scaled.png b/Runtime/StandardAssets/Textures/OculusTouchController_left_white_scaled.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusTouchController_left_white_scaled.png rename to Runtime/StandardAssets/Textures/OculusTouchController_left_white_scaled.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusTouchController_left_white_scaled.png.meta b/Runtime/StandardAssets/Textures/OculusTouchController_left_white_scaled.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusTouchController_left_white_scaled.png.meta rename to Runtime/StandardAssets/Textures/OculusTouchController_left_white_scaled.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusTouchController_right_black.png b/Runtime/StandardAssets/Textures/OculusTouchController_right_black.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusTouchController_right_black.png rename to Runtime/StandardAssets/Textures/OculusTouchController_right_black.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusTouchController_right_black.png.meta b/Runtime/StandardAssets/Textures/OculusTouchController_right_black.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusTouchController_right_black.png.meta rename to Runtime/StandardAssets/Textures/OculusTouchController_right_black.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusTouchController_right_black_scaled.png b/Runtime/StandardAssets/Textures/OculusTouchController_right_black_scaled.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusTouchController_right_black_scaled.png rename to Runtime/StandardAssets/Textures/OculusTouchController_right_black_scaled.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusTouchController_right_black_scaled.png.meta b/Runtime/StandardAssets/Textures/OculusTouchController_right_black_scaled.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusTouchController_right_black_scaled.png.meta rename to Runtime/StandardAssets/Textures/OculusTouchController_right_black_scaled.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusTouchController_right_white.png b/Runtime/StandardAssets/Textures/OculusTouchController_right_white.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusTouchController_right_white.png rename to Runtime/StandardAssets/Textures/OculusTouchController_right_white.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusTouchController_right_white.png.meta b/Runtime/StandardAssets/Textures/OculusTouchController_right_white.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusTouchController_right_white.png.meta rename to Runtime/StandardAssets/Textures/OculusTouchController_right_white.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusTouchController_right_white_scaled.png b/Runtime/StandardAssets/Textures/OculusTouchController_right_white_scaled.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusTouchController_right_white_scaled.png rename to Runtime/StandardAssets/Textures/OculusTouchController_right_white_scaled.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusTouchController_right_white_scaled.png.meta b/Runtime/StandardAssets/Textures/OculusTouchController_right_white_scaled.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/OculusTouchController_right_white_scaled.png.meta rename to Runtime/StandardAssets/Textures/OculusTouchController_right_white_scaled.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/ViveWandController_left_black.png b/Runtime/StandardAssets/Textures/ViveWandController_left_black.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/ViveWandController_left_black.png rename to Runtime/StandardAssets/Textures/ViveWandController_left_black.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/ViveWandController_left_black.png.meta b/Runtime/StandardAssets/Textures/ViveWandController_left_black.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/ViveWandController_left_black.png.meta rename to Runtime/StandardAssets/Textures/ViveWandController_left_black.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/ViveWandController_left_black_scaled.png b/Runtime/StandardAssets/Textures/ViveWandController_left_black_scaled.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/ViveWandController_left_black_scaled.png rename to Runtime/StandardAssets/Textures/ViveWandController_left_black_scaled.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/ViveWandController_left_black_scaled.png.meta b/Runtime/StandardAssets/Textures/ViveWandController_left_black_scaled.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/ViveWandController_left_black_scaled.png.meta rename to Runtime/StandardAssets/Textures/ViveWandController_left_black_scaled.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/ViveWandController_left_white.png b/Runtime/StandardAssets/Textures/ViveWandController_left_white.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/ViveWandController_left_white.png rename to Runtime/StandardAssets/Textures/ViveWandController_left_white.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/ViveWandController_left_white.png.meta b/Runtime/StandardAssets/Textures/ViveWandController_left_white.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/ViveWandController_left_white.png.meta rename to Runtime/StandardAssets/Textures/ViveWandController_left_white.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/ViveWandController_left_white_scaled.png b/Runtime/StandardAssets/Textures/ViveWandController_left_white_scaled.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/ViveWandController_left_white_scaled.png rename to Runtime/StandardAssets/Textures/ViveWandController_left_white_scaled.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/ViveWandController_left_white_scaled.png.meta b/Runtime/StandardAssets/Textures/ViveWandController_left_white_scaled.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/ViveWandController_left_white_scaled.png.meta rename to Runtime/StandardAssets/Textures/ViveWandController_left_white_scaled.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/ViveWandController_right_black.png b/Runtime/StandardAssets/Textures/ViveWandController_right_black.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/ViveWandController_right_black.png rename to Runtime/StandardAssets/Textures/ViveWandController_right_black.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/ViveWandController_right_black.png.meta b/Runtime/StandardAssets/Textures/ViveWandController_right_black.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/ViveWandController_right_black.png.meta rename to Runtime/StandardAssets/Textures/ViveWandController_right_black.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/ViveWandController_right_black_scaled.png b/Runtime/StandardAssets/Textures/ViveWandController_right_black_scaled.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/ViveWandController_right_black_scaled.png rename to Runtime/StandardAssets/Textures/ViveWandController_right_black_scaled.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/ViveWandController_right_black_scaled.png.meta b/Runtime/StandardAssets/Textures/ViveWandController_right_black_scaled.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/ViveWandController_right_black_scaled.png.meta rename to Runtime/StandardAssets/Textures/ViveWandController_right_black_scaled.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/ViveWandController_right_white.png b/Runtime/StandardAssets/Textures/ViveWandController_right_white.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/ViveWandController_right_white.png rename to Runtime/StandardAssets/Textures/ViveWandController_right_white.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/ViveWandController_right_white.png.meta b/Runtime/StandardAssets/Textures/ViveWandController_right_white.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/ViveWandController_right_white.png.meta rename to Runtime/StandardAssets/Textures/ViveWandController_right_white.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/ViveWandController_right_white_scaled.png b/Runtime/StandardAssets/Textures/ViveWandController_right_white_scaled.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/ViveWandController_right_white_scaled.png rename to Runtime/StandardAssets/Textures/ViveWandController_right_white_scaled.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/ViveWandController_right_white_scaled.png.meta b/Runtime/StandardAssets/Textures/ViveWandController_right_white_scaled.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/ViveWandController_right_white_scaled.png.meta rename to Runtime/StandardAssets/Textures/ViveWandController_right_white_scaled.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_left_black.png b/Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_left_black.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_left_black.png rename to Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_left_black.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_left_black.png.meta b/Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_left_black.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_left_black.png.meta rename to Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_left_black.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_left_black_scaled.png b/Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_left_black_scaled.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_left_black_scaled.png rename to Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_left_black_scaled.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_left_black_scaled.png.meta b/Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_left_black_scaled.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_left_black_scaled.png.meta rename to Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_left_black_scaled.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_left_white.png b/Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_left_white.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_left_white.png rename to Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_left_white.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_left_white.png.meta b/Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_left_white.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_left_white.png.meta rename to Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_left_white.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_left_white_scaled.png b/Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_left_white_scaled.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_left_white_scaled.png rename to Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_left_white_scaled.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_left_white_scaled.png.meta b/Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_left_white_scaled.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_left_white_scaled.png.meta rename to Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_left_white_scaled.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_right_black.png b/Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_right_black.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_right_black.png rename to Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_right_black.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_right_black.png.meta b/Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_right_black.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_right_black.png.meta rename to Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_right_black.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_right_black_scaled.png b/Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_right_black_scaled.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_right_black_scaled.png rename to Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_right_black_scaled.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_right_black_scaled.png.meta b/Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_right_black_scaled.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_right_black_scaled.png.meta rename to Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_right_black_scaled.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_right_white.png b/Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_right_white.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_right_white.png rename to Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_right_white.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_right_white.png.meta b/Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_right_white.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_right_white.png.meta rename to Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_right_white.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_right_white_scaled.png b/Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_right_white_scaled.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_right_white_scaled.png rename to Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_right_white_scaled.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_right_white_scaled.png.meta b/Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_right_white_scaled.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_right_white_scaled.png.meta rename to Runtime/StandardAssets/Textures/WindowsMixedRealityMotionController_right_white_scaled.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/XRTK_Logo.png b/Runtime/StandardAssets/Textures/XRTK_Logo.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/XRTK_Logo.png rename to Runtime/StandardAssets/Textures/XRTK_Logo.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/XRTK_Logo.png.meta b/Runtime/StandardAssets/Textures/XRTK_Logo.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/XRTK_Logo.png.meta rename to Runtime/StandardAssets/Textures/XRTK_Logo.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/XboxController_black.png b/Runtime/StandardAssets/Textures/XboxController_black.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/XboxController_black.png rename to Runtime/StandardAssets/Textures/XboxController_black.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/XboxController_black.png.meta b/Runtime/StandardAssets/Textures/XboxController_black.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/XboxController_black.png.meta rename to Runtime/StandardAssets/Textures/XboxController_black.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/XboxController_black_scaled.png b/Runtime/StandardAssets/Textures/XboxController_black_scaled.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/XboxController_black_scaled.png rename to Runtime/StandardAssets/Textures/XboxController_black_scaled.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/XboxController_black_scaled.png.meta b/Runtime/StandardAssets/Textures/XboxController_black_scaled.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/XboxController_black_scaled.png.meta rename to Runtime/StandardAssets/Textures/XboxController_black_scaled.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/XboxController_white.png b/Runtime/StandardAssets/Textures/XboxController_white.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/XboxController_white.png rename to Runtime/StandardAssets/Textures/XboxController_white.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/XboxController_white.png.meta b/Runtime/StandardAssets/Textures/XboxController_white.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/XboxController_white.png.meta rename to Runtime/StandardAssets/Textures/XboxController_white.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/XboxController_white_scaled.png b/Runtime/StandardAssets/Textures/XboxController_white_scaled.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/XboxController_white_scaled.png rename to Runtime/StandardAssets/Textures/XboxController_white_scaled.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/XboxController_white_scaled.png.meta b/Runtime/StandardAssets/Textures/XboxController_white_scaled.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/XboxController_white_scaled.png.meta rename to Runtime/StandardAssets/Textures/XboxController_white_scaled.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/xrtk_logo_transparent_square.png b/Runtime/StandardAssets/Textures/xrtk_logo_transparent_square.png similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/xrtk_logo_transparent_square.png rename to Runtime/StandardAssets/Textures/xrtk_logo_transparent_square.png diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/xrtk_logo_transparent_square.png.meta b/Runtime/StandardAssets/Textures/xrtk_logo_transparent_square.png.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/StandardAssets/Textures/xrtk_logo_transparent_square.png.meta rename to Runtime/StandardAssets/Textures/xrtk_logo_transparent_square.png.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities.meta b/Runtime/Utilities.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities.meta rename to Runtime/Utilities.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Async.meta b/Runtime/Utilities/Async.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Async.meta rename to Runtime/Utilities/Async.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Async/AwaitYieldInstructions.meta b/Runtime/Utilities/Async/AwaitYieldInstructions.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Async/AwaitYieldInstructions.meta rename to Runtime/Utilities/Async/AwaitYieldInstructions.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Async/AwaitYieldInstructions/BackgroundThread.cs b/Runtime/Utilities/Async/AwaitYieldInstructions/BackgroundThread.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Async/AwaitYieldInstructions/BackgroundThread.cs rename to Runtime/Utilities/Async/AwaitYieldInstructions/BackgroundThread.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Async/AwaitYieldInstructions/BackgroundThread.cs.meta b/Runtime/Utilities/Async/AwaitYieldInstructions/BackgroundThread.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Async/AwaitYieldInstructions/BackgroundThread.cs.meta rename to Runtime/Utilities/Async/AwaitYieldInstructions/BackgroundThread.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Async/AwaitYieldInstructions/UnityMainThread.cs b/Runtime/Utilities/Async/AwaitYieldInstructions/UnityMainThread.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Async/AwaitYieldInstructions/UnityMainThread.cs rename to Runtime/Utilities/Async/AwaitYieldInstructions/UnityMainThread.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Async/AwaitYieldInstructions/UnityMainThread.cs.meta b/Runtime/Utilities/Async/AwaitYieldInstructions/UnityMainThread.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Async/AwaitYieldInstructions/UnityMainThread.cs.meta rename to Runtime/Utilities/Async/AwaitYieldInstructions/UnityMainThread.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Async/AwaiterExtensions.cs b/Runtime/Utilities/Async/AwaiterExtensions.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Async/AwaiterExtensions.cs rename to Runtime/Utilities/Async/AwaiterExtensions.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Async/AwaiterExtensions.cs.meta b/Runtime/Utilities/Async/AwaiterExtensions.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Async/AwaiterExtensions.cs.meta rename to Runtime/Utilities/Async/AwaiterExtensions.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Async/Awaiters.cs b/Runtime/Utilities/Async/Awaiters.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Async/Awaiters.cs rename to Runtime/Utilities/Async/Awaiters.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Async/Awaiters.cs.meta b/Runtime/Utilities/Async/Awaiters.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Async/Awaiters.cs.meta rename to Runtime/Utilities/Async/Awaiters.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Async/Internal.meta b/Runtime/Utilities/Async/Internal.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Async/Internal.meta rename to Runtime/Utilities/Async/Internal.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Async/Internal/SyncContextUtility.cs b/Runtime/Utilities/Async/Internal/SyncContextUtility.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Async/Internal/SyncContextUtility.cs rename to Runtime/Utilities/Async/Internal/SyncContextUtility.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Async/Internal/SyncContextUtility.cs.meta b/Runtime/Utilities/Async/Internal/SyncContextUtility.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Async/Internal/SyncContextUtility.cs.meta rename to Runtime/Utilities/Async/Internal/SyncContextUtility.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Async/License.md b/Runtime/Utilities/Async/License.md similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Async/License.md rename to Runtime/Utilities/Async/License.md diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Async/License.md.meta b/Runtime/Utilities/Async/License.md.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Async/License.md.meta rename to Runtime/Utilities/Async/License.md.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Async/ReadMe.md b/Runtime/Utilities/Async/ReadMe.md similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Async/ReadMe.md rename to Runtime/Utilities/Async/ReadMe.md diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Async/ReadMe.md.meta b/Runtime/Utilities/Async/ReadMe.md.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Async/ReadMe.md.meta rename to Runtime/Utilities/Async/ReadMe.md.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/BoundsCache.cs b/Runtime/Utilities/BoundsCache.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/BoundsCache.cs rename to Runtime/Utilities/BoundsCache.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/BoundsCache.cs.meta b/Runtime/Utilities/BoundsCache.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/BoundsCache.cs.meta rename to Runtime/Utilities/BoundsCache.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/CalibrationSpace.cs b/Runtime/Utilities/CalibrationSpace.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/CalibrationSpace.cs rename to Runtime/Utilities/CalibrationSpace.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/CalibrationSpace.cs.meta b/Runtime/Utilities/CalibrationSpace.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/CalibrationSpace.cs.meta rename to Runtime/Utilities/CalibrationSpace.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/CameraCache.cs b/Runtime/Utilities/CameraCache.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/CameraCache.cs rename to Runtime/Utilities/CameraCache.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/CameraCache.cs.meta b/Runtime/Utilities/CameraCache.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/CameraCache.cs.meta rename to Runtime/Utilities/CameraCache.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/CanvasUtility.cs b/Runtime/Utilities/CanvasUtility.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/CanvasUtility.cs rename to Runtime/Utilities/CanvasUtility.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/CanvasUtility.cs.meta b/Runtime/Utilities/CanvasUtility.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/CanvasUtility.cs.meta rename to Runtime/Utilities/CanvasUtility.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/DebugUtilities.cs b/Runtime/Utilities/DebugUtilities.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/DebugUtilities.cs rename to Runtime/Utilities/DebugUtilities.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/DebugUtilities.cs.meta b/Runtime/Utilities/DebugUtilities.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/DebugUtilities.cs.meta rename to Runtime/Utilities/DebugUtilities.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/EdgeUtilities.cs b/Runtime/Utilities/EdgeUtilities.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/EdgeUtilities.cs rename to Runtime/Utilities/EdgeUtilities.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/EdgeUtilities.cs.meta b/Runtime/Utilities/EdgeUtilities.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/EdgeUtilities.cs.meta rename to Runtime/Utilities/EdgeUtilities.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/FastSimplexNoise.cs b/Runtime/Utilities/FastSimplexNoise.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/FastSimplexNoise.cs rename to Runtime/Utilities/FastSimplexNoise.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/FastSimplexNoise.cs.meta b/Runtime/Utilities/FastSimplexNoise.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/FastSimplexNoise.cs.meta rename to Runtime/Utilities/FastSimplexNoise.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/HandUtilities.cs b/Runtime/Utilities/HandUtilities.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/HandUtilities.cs rename to Runtime/Utilities/HandUtilities.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/HandUtilities.cs.meta b/Runtime/Utilities/HandUtilities.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/HandUtilities.cs.meta rename to Runtime/Utilities/HandUtilities.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/HoverLight.cs b/Runtime/Utilities/HoverLight.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/HoverLight.cs rename to Runtime/Utilities/HoverLight.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/HoverLight.cs.meta b/Runtime/Utilities/HoverLight.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/HoverLight.cs.meta rename to Runtime/Utilities/HoverLight.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines.meta b/Runtime/Utilities/Lines.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines.meta rename to Runtime/Utilities/Lines.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/DataProviders.meta b/Runtime/Utilities/Lines/DataProviders.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/DataProviders.meta rename to Runtime/Utilities/Lines/DataProviders.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/DataProviders/BaseMixedRealityLineDataProvider.cs b/Runtime/Utilities/Lines/DataProviders/BaseMixedRealityLineDataProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/DataProviders/BaseMixedRealityLineDataProvider.cs rename to Runtime/Utilities/Lines/DataProviders/BaseMixedRealityLineDataProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/DataProviders/BaseMixedRealityLineDataProvider.cs.meta b/Runtime/Utilities/Lines/DataProviders/BaseMixedRealityLineDataProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/DataProviders/BaseMixedRealityLineDataProvider.cs.meta rename to Runtime/Utilities/Lines/DataProviders/BaseMixedRealityLineDataProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/DataProviders/BezierLineDataProvider.cs b/Runtime/Utilities/Lines/DataProviders/BezierLineDataProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/DataProviders/BezierLineDataProvider.cs rename to Runtime/Utilities/Lines/DataProviders/BezierLineDataProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/DataProviders/BezierLineDataProvider.cs.meta b/Runtime/Utilities/Lines/DataProviders/BezierLineDataProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/DataProviders/BezierLineDataProvider.cs.meta rename to Runtime/Utilities/Lines/DataProviders/BezierLineDataProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/DataProviders/EllipseLineDataProvider.cs b/Runtime/Utilities/Lines/DataProviders/EllipseLineDataProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/DataProviders/EllipseLineDataProvider.cs rename to Runtime/Utilities/Lines/DataProviders/EllipseLineDataProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/DataProviders/EllipseLineDataProvider.cs.meta b/Runtime/Utilities/Lines/DataProviders/EllipseLineDataProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/DataProviders/EllipseLineDataProvider.cs.meta rename to Runtime/Utilities/Lines/DataProviders/EllipseLineDataProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/DataProviders/ParabolaConstrainedLineDataProvider.cs b/Runtime/Utilities/Lines/DataProviders/ParabolaConstrainedLineDataProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/DataProviders/ParabolaConstrainedLineDataProvider.cs rename to Runtime/Utilities/Lines/DataProviders/ParabolaConstrainedLineDataProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/DataProviders/ParabolaConstrainedLineDataProvider.cs.meta b/Runtime/Utilities/Lines/DataProviders/ParabolaConstrainedLineDataProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/DataProviders/ParabolaConstrainedLineDataProvider.cs.meta rename to Runtime/Utilities/Lines/DataProviders/ParabolaConstrainedLineDataProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/DataProviders/ParabolaLineDataProvider.cs b/Runtime/Utilities/Lines/DataProviders/ParabolaLineDataProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/DataProviders/ParabolaLineDataProvider.cs rename to Runtime/Utilities/Lines/DataProviders/ParabolaLineDataProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/DataProviders/ParabolaLineDataProvider.cs.meta b/Runtime/Utilities/Lines/DataProviders/ParabolaLineDataProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/DataProviders/ParabolaLineDataProvider.cs.meta rename to Runtime/Utilities/Lines/DataProviders/ParabolaLineDataProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/DataProviders/ParabolaPhysicalLineDataProvider.cs b/Runtime/Utilities/Lines/DataProviders/ParabolaPhysicalLineDataProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/DataProviders/ParabolaPhysicalLineDataProvider.cs rename to Runtime/Utilities/Lines/DataProviders/ParabolaPhysicalLineDataProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/DataProviders/ParabolaPhysicalLineDataProvider.cs.meta b/Runtime/Utilities/Lines/DataProviders/ParabolaPhysicalLineDataProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/DataProviders/ParabolaPhysicalLineDataProvider.cs.meta rename to Runtime/Utilities/Lines/DataProviders/ParabolaPhysicalLineDataProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/DataProviders/RectangleLineDataProvider.cs b/Runtime/Utilities/Lines/DataProviders/RectangleLineDataProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/DataProviders/RectangleLineDataProvider.cs rename to Runtime/Utilities/Lines/DataProviders/RectangleLineDataProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/DataProviders/RectangleLineDataProvider.cs.meta b/Runtime/Utilities/Lines/DataProviders/RectangleLineDataProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/DataProviders/RectangleLineDataProvider.cs.meta rename to Runtime/Utilities/Lines/DataProviders/RectangleLineDataProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/DataProviders/SimpleLineDataProvider.cs b/Runtime/Utilities/Lines/DataProviders/SimpleLineDataProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/DataProviders/SimpleLineDataProvider.cs rename to Runtime/Utilities/Lines/DataProviders/SimpleLineDataProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/DataProviders/SimpleLineDataProvider.cs.meta b/Runtime/Utilities/Lines/DataProviders/SimpleLineDataProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/DataProviders/SimpleLineDataProvider.cs.meta rename to Runtime/Utilities/Lines/DataProviders/SimpleLineDataProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/DataProviders/SplineDataProvider.cs b/Runtime/Utilities/Lines/DataProviders/SplineDataProvider.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/DataProviders/SplineDataProvider.cs rename to Runtime/Utilities/Lines/DataProviders/SplineDataProvider.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/DataProviders/SplineDataProvider.cs.meta b/Runtime/Utilities/Lines/DataProviders/SplineDataProvider.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/DataProviders/SplineDataProvider.cs.meta rename to Runtime/Utilities/Lines/DataProviders/SplineDataProvider.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/LineFollower.cs b/Runtime/Utilities/Lines/LineFollower.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/LineFollower.cs rename to Runtime/Utilities/Lines/LineFollower.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/LineFollower.cs.meta b/Runtime/Utilities/Lines/LineFollower.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/LineFollower.cs.meta rename to Runtime/Utilities/Lines/LineFollower.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/LineUtility.cs b/Runtime/Utilities/Lines/LineUtility.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/LineUtility.cs rename to Runtime/Utilities/Lines/LineUtility.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/LineUtility.cs.meta b/Runtime/Utilities/Lines/LineUtility.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/LineUtility.cs.meta rename to Runtime/Utilities/Lines/LineUtility.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/Renderers.meta b/Runtime/Utilities/Lines/Renderers.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/Renderers.meta rename to Runtime/Utilities/Lines/Renderers.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/Renderers/BaseMixedRealityLineRenderer.cs b/Runtime/Utilities/Lines/Renderers/BaseMixedRealityLineRenderer.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/Renderers/BaseMixedRealityLineRenderer.cs rename to Runtime/Utilities/Lines/Renderers/BaseMixedRealityLineRenderer.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/Renderers/BaseMixedRealityLineRenderer.cs.meta b/Runtime/Utilities/Lines/Renderers/BaseMixedRealityLineRenderer.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/Renderers/BaseMixedRealityLineRenderer.cs.meta rename to Runtime/Utilities/Lines/Renderers/BaseMixedRealityLineRenderer.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/Renderers/MeshLineRenderer.cs b/Runtime/Utilities/Lines/Renderers/MeshLineRenderer.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/Renderers/MeshLineRenderer.cs rename to Runtime/Utilities/Lines/Renderers/MeshLineRenderer.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/Renderers/MeshLineRenderer.cs.meta b/Runtime/Utilities/Lines/Renderers/MeshLineRenderer.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/Renderers/MeshLineRenderer.cs.meta rename to Runtime/Utilities/Lines/Renderers/MeshLineRenderer.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/Renderers/MixedRealityLineRenderer.cs b/Runtime/Utilities/Lines/Renderers/MixedRealityLineRenderer.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/Renderers/MixedRealityLineRenderer.cs rename to Runtime/Utilities/Lines/Renderers/MixedRealityLineRenderer.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/Renderers/MixedRealityLineRenderer.cs.meta b/Runtime/Utilities/Lines/Renderers/MixedRealityLineRenderer.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/Renderers/MixedRealityLineRenderer.cs.meta rename to Runtime/Utilities/Lines/Renderers/MixedRealityLineRenderer.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/Renderers/ParticleSystemLineRenderer.cs b/Runtime/Utilities/Lines/Renderers/ParticleSystemLineRenderer.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/Renderers/ParticleSystemLineRenderer.cs rename to Runtime/Utilities/Lines/Renderers/ParticleSystemLineRenderer.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/Renderers/ParticleSystemLineRenderer.cs.meta b/Runtime/Utilities/Lines/Renderers/ParticleSystemLineRenderer.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/Renderers/ParticleSystemLineRenderer.cs.meta rename to Runtime/Utilities/Lines/Renderers/ParticleSystemLineRenderer.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/Renderers/StripMeshLineRenderer.cs b/Runtime/Utilities/Lines/Renderers/StripMeshLineRenderer.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/Renderers/StripMeshLineRenderer.cs rename to Runtime/Utilities/Lines/Renderers/StripMeshLineRenderer.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/Renderers/StripMeshLineRenderer.cs.meta b/Runtime/Utilities/Lines/Renderers/StripMeshLineRenderer.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Lines/Renderers/StripMeshLineRenderer.cs.meta rename to Runtime/Utilities/Lines/Renderers/StripMeshLineRenderer.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/MathUtilities.cs b/Runtime/Utilities/MathUtilities.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/MathUtilities.cs rename to Runtime/Utilities/MathUtilities.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/MathUtilities.cs.meta b/Runtime/Utilities/MathUtilities.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/MathUtilities.cs.meta rename to Runtime/Utilities/MathUtilities.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics.meta b/Runtime/Utilities/Physics.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics.meta rename to Runtime/Utilities/Physics.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/BaseRayStabilizer.cs b/Runtime/Utilities/Physics/BaseRayStabilizer.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/BaseRayStabilizer.cs rename to Runtime/Utilities/Physics/BaseRayStabilizer.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/BaseRayStabilizer.cs.meta b/Runtime/Utilities/Physics/BaseRayStabilizer.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/BaseRayStabilizer.cs.meta rename to Runtime/Utilities/Physics/BaseRayStabilizer.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/Distorters.meta b/Runtime/Utilities/Physics/Distorters.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/Distorters.meta rename to Runtime/Utilities/Physics/Distorters.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/Distorters/Distorter.cs b/Runtime/Utilities/Physics/Distorters/Distorter.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/Distorters/Distorter.cs rename to Runtime/Utilities/Physics/Distorters/Distorter.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/Distorters/Distorter.cs.meta b/Runtime/Utilities/Physics/Distorters/Distorter.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/Distorters/Distorter.cs.meta rename to Runtime/Utilities/Physics/Distorters/Distorter.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/Distorters/DistorterBulge.cs b/Runtime/Utilities/Physics/Distorters/DistorterBulge.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/Distorters/DistorterBulge.cs rename to Runtime/Utilities/Physics/Distorters/DistorterBulge.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/Distorters/DistorterBulge.cs.meta b/Runtime/Utilities/Physics/Distorters/DistorterBulge.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/Distorters/DistorterBulge.cs.meta rename to Runtime/Utilities/Physics/Distorters/DistorterBulge.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/Distorters/DistorterGravity.cs b/Runtime/Utilities/Physics/Distorters/DistorterGravity.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/Distorters/DistorterGravity.cs rename to Runtime/Utilities/Physics/Distorters/DistorterGravity.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/Distorters/DistorterGravity.cs.meta b/Runtime/Utilities/Physics/Distorters/DistorterGravity.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/Distorters/DistorterGravity.cs.meta rename to Runtime/Utilities/Physics/Distorters/DistorterGravity.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/Distorters/DistorterSimplex.cs b/Runtime/Utilities/Physics/Distorters/DistorterSimplex.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/Distorters/DistorterSimplex.cs rename to Runtime/Utilities/Physics/Distorters/DistorterSimplex.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/Distorters/DistorterSimplex.cs.meta b/Runtime/Utilities/Physics/Distorters/DistorterSimplex.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/Distorters/DistorterSimplex.cs.meta rename to Runtime/Utilities/Physics/Distorters/DistorterSimplex.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/Distorters/DistorterSphere.cs b/Runtime/Utilities/Physics/Distorters/DistorterSphere.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/Distorters/DistorterSphere.cs rename to Runtime/Utilities/Physics/Distorters/DistorterSphere.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/Distorters/DistorterSphere.cs.meta b/Runtime/Utilities/Physics/Distorters/DistorterSphere.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/Distorters/DistorterSphere.cs.meta rename to Runtime/Utilities/Physics/Distorters/DistorterSphere.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/Distorters/DistorterWiggly.cs b/Runtime/Utilities/Physics/Distorters/DistorterWiggly.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/Distorters/DistorterWiggly.cs rename to Runtime/Utilities/Physics/Distorters/DistorterWiggly.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/Distorters/DistorterWiggly.cs.meta b/Runtime/Utilities/Physics/Distorters/DistorterWiggly.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/Distorters/DistorterWiggly.cs.meta rename to Runtime/Utilities/Physics/Distorters/DistorterWiggly.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/GenericStabilizer.cs b/Runtime/Utilities/Physics/GenericStabilizer.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/GenericStabilizer.cs rename to Runtime/Utilities/Physics/GenericStabilizer.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/GenericStabilizer.cs.meta b/Runtime/Utilities/Physics/GenericStabilizer.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/GenericStabilizer.cs.meta rename to Runtime/Utilities/Physics/GenericStabilizer.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/InterpolationUtilities.cs b/Runtime/Utilities/Physics/InterpolationUtilities.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/InterpolationUtilities.cs rename to Runtime/Utilities/Physics/InterpolationUtilities.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/InterpolationUtilities.cs.meta b/Runtime/Utilities/Physics/InterpolationUtilities.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/InterpolationUtilities.cs.meta rename to Runtime/Utilities/Physics/InterpolationUtilities.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/Interpolator.cs b/Runtime/Utilities/Physics/Interpolator.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/Interpolator.cs rename to Runtime/Utilities/Physics/Interpolator.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/Interpolator.cs.meta b/Runtime/Utilities/Physics/Interpolator.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/Interpolator.cs.meta rename to Runtime/Utilities/Physics/Interpolator.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/MixedRealityRaycaster.cs b/Runtime/Utilities/Physics/MixedRealityRaycaster.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/MixedRealityRaycaster.cs rename to Runtime/Utilities/Physics/MixedRealityRaycaster.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/MixedRealityRaycaster.cs.meta b/Runtime/Utilities/Physics/MixedRealityRaycaster.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/MixedRealityRaycaster.cs.meta rename to Runtime/Utilities/Physics/MixedRealityRaycaster.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/RaycastResultComparer.cs b/Runtime/Utilities/Physics/RaycastResultComparer.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/RaycastResultComparer.cs rename to Runtime/Utilities/Physics/RaycastResultComparer.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/RaycastResultComparer.cs.meta b/Runtime/Utilities/Physics/RaycastResultComparer.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/RaycastResultComparer.cs.meta rename to Runtime/Utilities/Physics/RaycastResultComparer.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/TwoHandMoveLogic.cs b/Runtime/Utilities/Physics/TwoHandMoveLogic.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/TwoHandMoveLogic.cs rename to Runtime/Utilities/Physics/TwoHandMoveLogic.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/TwoHandMoveLogic.cs.meta b/Runtime/Utilities/Physics/TwoHandMoveLogic.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/TwoHandMoveLogic.cs.meta rename to Runtime/Utilities/Physics/TwoHandMoveLogic.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/TwoHandRotateLogic.cs b/Runtime/Utilities/Physics/TwoHandRotateLogic.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/TwoHandRotateLogic.cs rename to Runtime/Utilities/Physics/TwoHandRotateLogic.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/TwoHandRotateLogic.cs.meta b/Runtime/Utilities/Physics/TwoHandRotateLogic.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/TwoHandRotateLogic.cs.meta rename to Runtime/Utilities/Physics/TwoHandRotateLogic.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/TwoHandScaleLogic.cs b/Runtime/Utilities/Physics/TwoHandScaleLogic.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/TwoHandScaleLogic.cs rename to Runtime/Utilities/Physics/TwoHandScaleLogic.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/TwoHandScaleLogic.cs.meta b/Runtime/Utilities/Physics/TwoHandScaleLogic.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/TwoHandScaleLogic.cs.meta rename to Runtime/Utilities/Physics/TwoHandScaleLogic.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/VectorRollingStatistics.cs b/Runtime/Utilities/Physics/VectorRollingStatistics.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/VectorRollingStatistics.cs rename to Runtime/Utilities/Physics/VectorRollingStatistics.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/VectorRollingStatistics.cs.meta b/Runtime/Utilities/Physics/VectorRollingStatistics.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Physics/VectorRollingStatistics.cs.meta rename to Runtime/Utilities/Physics/VectorRollingStatistics.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/ProximityLight.cs b/Runtime/Utilities/ProximityLight.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/ProximityLight.cs rename to Runtime/Utilities/ProximityLight.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/ProximityLight.cs.meta b/Runtime/Utilities/ProximityLight.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/ProximityLight.cs.meta rename to Runtime/Utilities/ProximityLight.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/RenderPipelineUtilities.cs b/Runtime/Utilities/RenderPipelineUtilities.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/RenderPipelineUtilities.cs rename to Runtime/Utilities/RenderPipelineUtilities.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/RenderPipelineUtilities.cs.meta b/Runtime/Utilities/RenderPipelineUtilities.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/RenderPipelineUtilities.cs.meta rename to Runtime/Utilities/RenderPipelineUtilities.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Rendering.meta b/Runtime/Utilities/Rendering.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Rendering.meta rename to Runtime/Utilities/Rendering.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Rendering/ClippingBox.cs b/Runtime/Utilities/Rendering/ClippingBox.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Rendering/ClippingBox.cs rename to Runtime/Utilities/Rendering/ClippingBox.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Rendering/ClippingBox.cs.meta b/Runtime/Utilities/Rendering/ClippingBox.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Rendering/ClippingBox.cs.meta rename to Runtime/Utilities/Rendering/ClippingBox.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Rendering/ClippingPlane.cs b/Runtime/Utilities/Rendering/ClippingPlane.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Rendering/ClippingPlane.cs rename to Runtime/Utilities/Rendering/ClippingPlane.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Rendering/ClippingPlane.cs.meta b/Runtime/Utilities/Rendering/ClippingPlane.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Rendering/ClippingPlane.cs.meta rename to Runtime/Utilities/Rendering/ClippingPlane.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Rendering/ClippingPrimitive.cs b/Runtime/Utilities/Rendering/ClippingPrimitive.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Rendering/ClippingPrimitive.cs rename to Runtime/Utilities/Rendering/ClippingPrimitive.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Rendering/ClippingPrimitive.cs.meta b/Runtime/Utilities/Rendering/ClippingPrimitive.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Rendering/ClippingPrimitive.cs.meta rename to Runtime/Utilities/Rendering/ClippingPrimitive.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Rendering/ClippingSphere.cs b/Runtime/Utilities/Rendering/ClippingSphere.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Rendering/ClippingSphere.cs rename to Runtime/Utilities/Rendering/ClippingSphere.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Rendering/ClippingSphere.cs.meta b/Runtime/Utilities/Rendering/ClippingSphere.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Rendering/ClippingSphere.cs.meta rename to Runtime/Utilities/Rendering/ClippingSphere.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Solvers.meta b/Runtime/Utilities/Solvers.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Solvers.meta rename to Runtime/Utilities/Solvers.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Solvers/ConstantViewSize.cs b/Runtime/Utilities/Solvers/ConstantViewSize.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Solvers/ConstantViewSize.cs rename to Runtime/Utilities/Solvers/ConstantViewSize.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Solvers/ConstantViewSize.cs.meta b/Runtime/Utilities/Solvers/ConstantViewSize.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Solvers/ConstantViewSize.cs.meta rename to Runtime/Utilities/Solvers/ConstantViewSize.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Solvers/ControllerFinder.cs b/Runtime/Utilities/Solvers/ControllerFinder.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Solvers/ControllerFinder.cs rename to Runtime/Utilities/Solvers/ControllerFinder.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Solvers/ControllerFinder.cs.meta b/Runtime/Utilities/Solvers/ControllerFinder.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Solvers/ControllerFinder.cs.meta rename to Runtime/Utilities/Solvers/ControllerFinder.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Solvers/InBetween.cs b/Runtime/Utilities/Solvers/InBetween.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Solvers/InBetween.cs rename to Runtime/Utilities/Solvers/InBetween.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Solvers/InBetween.cs.meta b/Runtime/Utilities/Solvers/InBetween.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Solvers/InBetween.cs.meta rename to Runtime/Utilities/Solvers/InBetween.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Solvers/Momentum.cs b/Runtime/Utilities/Solvers/Momentum.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Solvers/Momentum.cs rename to Runtime/Utilities/Solvers/Momentum.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Solvers/Momentum.cs.meta b/Runtime/Utilities/Solvers/Momentum.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Solvers/Momentum.cs.meta rename to Runtime/Utilities/Solvers/Momentum.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Solvers/Orbital.cs b/Runtime/Utilities/Solvers/Orbital.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Solvers/Orbital.cs rename to Runtime/Utilities/Solvers/Orbital.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Solvers/Orbital.cs.meta b/Runtime/Utilities/Solvers/Orbital.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Solvers/Orbital.cs.meta rename to Runtime/Utilities/Solvers/Orbital.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Solvers/Overlap.cs b/Runtime/Utilities/Solvers/Overlap.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Solvers/Overlap.cs rename to Runtime/Utilities/Solvers/Overlap.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Solvers/Overlap.cs.meta b/Runtime/Utilities/Solvers/Overlap.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Solvers/Overlap.cs.meta rename to Runtime/Utilities/Solvers/Overlap.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Solvers/RadialView.cs b/Runtime/Utilities/Solvers/RadialView.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Solvers/RadialView.cs rename to Runtime/Utilities/Solvers/RadialView.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Solvers/RadialView.cs.meta b/Runtime/Utilities/Solvers/RadialView.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Solvers/RadialView.cs.meta rename to Runtime/Utilities/Solvers/RadialView.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Solvers/Solver.cs b/Runtime/Utilities/Solvers/Solver.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Solvers/Solver.cs rename to Runtime/Utilities/Solvers/Solver.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Solvers/Solver.cs.meta b/Runtime/Utilities/Solvers/Solver.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Solvers/Solver.cs.meta rename to Runtime/Utilities/Solvers/Solver.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Solvers/SolverHandler.cs b/Runtime/Utilities/Solvers/SolverHandler.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Solvers/SolverHandler.cs rename to Runtime/Utilities/Solvers/SolverHandler.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Solvers/SolverHandler.cs.meta b/Runtime/Utilities/Solvers/SolverHandler.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Solvers/SolverHandler.cs.meta rename to Runtime/Utilities/Solvers/SolverHandler.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Solvers/SurfaceMagnetism.cs b/Runtime/Utilities/Solvers/SurfaceMagnetism.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Solvers/SurfaceMagnetism.cs rename to Runtime/Utilities/Solvers/SurfaceMagnetism.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Solvers/SurfaceMagnetism.cs.meta b/Runtime/Utilities/Solvers/SurfaceMagnetism.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/Solvers/SurfaceMagnetism.cs.meta rename to Runtime/Utilities/Solvers/SurfaceMagnetism.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/StopWatch.cs b/Runtime/Utilities/StopWatch.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/StopWatch.cs rename to Runtime/Utilities/StopWatch.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/StopWatch.cs.meta b/Runtime/Utilities/StopWatch.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/StopWatch.cs.meta rename to Runtime/Utilities/StopWatch.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/ValidateConfiguration.cs b/Runtime/Utilities/ValidateConfiguration.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/ValidateConfiguration.cs rename to Runtime/Utilities/ValidateConfiguration.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/ValidateConfiguration.cs.meta b/Runtime/Utilities/ValidateConfiguration.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/ValidateConfiguration.cs.meta rename to Runtime/Utilities/ValidateConfiguration.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WebRequestRest.meta b/Runtime/Utilities/WebRequestRest.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WebRequestRest.meta rename to Runtime/Utilities/WebRequestRest.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WebRequestRest/Response.cs b/Runtime/Utilities/WebRequestRest/Response.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WebRequestRest/Response.cs rename to Runtime/Utilities/WebRequestRest/Response.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WebRequestRest/Response.cs.meta b/Runtime/Utilities/WebRequestRest/Response.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WebRequestRest/Response.cs.meta rename to Runtime/Utilities/WebRequestRest/Response.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WebRequestRest/Rest.cs b/Runtime/Utilities/WebRequestRest/Rest.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WebRequestRest/Rest.cs rename to Runtime/Utilities/WebRequestRest/Rest.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WebRequestRest/Rest.cs.meta b/Runtime/Utilities/WebRequestRest/Rest.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WebRequestRest/Rest.cs.meta rename to Runtime/Utilities/WebRequestRest/Rest.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal.meta b/Runtime/Utilities/WindowsDevicePortal.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal.meta rename to Runtime/Utilities/WindowsDevicePortal.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures.meta b/Runtime/Utilities/WindowsDevicePortal/DataStructures.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures.meta rename to Runtime/Utilities/WindowsDevicePortal/DataStructures.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/ActivePowerSchemeInfo.cs b/Runtime/Utilities/WindowsDevicePortal/DataStructures/ActivePowerSchemeInfo.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/ActivePowerSchemeInfo.cs rename to Runtime/Utilities/WindowsDevicePortal/DataStructures/ActivePowerSchemeInfo.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/ActivePowerSchemeInfo.cs.meta b/Runtime/Utilities/WindowsDevicePortal/DataStructures/ActivePowerSchemeInfo.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/ActivePowerSchemeInfo.cs.meta rename to Runtime/Utilities/WindowsDevicePortal/DataStructures/ActivePowerSchemeInfo.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/AdapterInfo.cs b/Runtime/Utilities/WindowsDevicePortal/DataStructures/AdapterInfo.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/AdapterInfo.cs rename to Runtime/Utilities/WindowsDevicePortal/DataStructures/AdapterInfo.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/AdapterInfo.cs.meta b/Runtime/Utilities/WindowsDevicePortal/DataStructures/AdapterInfo.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/AdapterInfo.cs.meta rename to Runtime/Utilities/WindowsDevicePortal/DataStructures/AdapterInfo.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/ApplicationInfo.cs b/Runtime/Utilities/WindowsDevicePortal/DataStructures/ApplicationInfo.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/ApplicationInfo.cs rename to Runtime/Utilities/WindowsDevicePortal/DataStructures/ApplicationInfo.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/ApplicationInfo.cs.meta b/Runtime/Utilities/WindowsDevicePortal/DataStructures/ApplicationInfo.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/ApplicationInfo.cs.meta rename to Runtime/Utilities/WindowsDevicePortal/DataStructures/ApplicationInfo.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/AvailableWiFiNetworks.cs b/Runtime/Utilities/WindowsDevicePortal/DataStructures/AvailableWiFiNetworks.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/AvailableWiFiNetworks.cs rename to Runtime/Utilities/WindowsDevicePortal/DataStructures/AvailableWiFiNetworks.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/AvailableWiFiNetworks.cs.meta b/Runtime/Utilities/WindowsDevicePortal/DataStructures/AvailableWiFiNetworks.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/AvailableWiFiNetworks.cs.meta rename to Runtime/Utilities/WindowsDevicePortal/DataStructures/AvailableWiFiNetworks.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/BatteryInfo.cs b/Runtime/Utilities/WindowsDevicePortal/DataStructures/BatteryInfo.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/BatteryInfo.cs rename to Runtime/Utilities/WindowsDevicePortal/DataStructures/BatteryInfo.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/BatteryInfo.cs.meta b/Runtime/Utilities/WindowsDevicePortal/DataStructures/BatteryInfo.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/BatteryInfo.cs.meta rename to Runtime/Utilities/WindowsDevicePortal/DataStructures/BatteryInfo.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/DHCPInfo.cs b/Runtime/Utilities/WindowsDevicePortal/DataStructures/DHCPInfo.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/DHCPInfo.cs rename to Runtime/Utilities/WindowsDevicePortal/DataStructures/DHCPInfo.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/DHCPInfo.cs.meta b/Runtime/Utilities/WindowsDevicePortal/DataStructures/DHCPInfo.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/DHCPInfo.cs.meta rename to Runtime/Utilities/WindowsDevicePortal/DataStructures/DHCPInfo.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/DeviceInfo.cs b/Runtime/Utilities/WindowsDevicePortal/DataStructures/DeviceInfo.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/DeviceInfo.cs rename to Runtime/Utilities/WindowsDevicePortal/DataStructures/DeviceInfo.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/DeviceInfo.cs.meta b/Runtime/Utilities/WindowsDevicePortal/DataStructures/DeviceInfo.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/DeviceInfo.cs.meta rename to Runtime/Utilities/WindowsDevicePortal/DataStructures/DeviceInfo.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/DeviceOsInfo.cs b/Runtime/Utilities/WindowsDevicePortal/DataStructures/DeviceOsInfo.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/DeviceOsInfo.cs rename to Runtime/Utilities/WindowsDevicePortal/DataStructures/DeviceOsInfo.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/DeviceOsInfo.cs.meta b/Runtime/Utilities/WindowsDevicePortal/DataStructures/DeviceOsInfo.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/DeviceOsInfo.cs.meta rename to Runtime/Utilities/WindowsDevicePortal/DataStructures/DeviceOsInfo.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/DevicePortalConnections.cs b/Runtime/Utilities/WindowsDevicePortal/DataStructures/DevicePortalConnections.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/DevicePortalConnections.cs rename to Runtime/Utilities/WindowsDevicePortal/DataStructures/DevicePortalConnections.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/DevicePortalConnections.cs.meta b/Runtime/Utilities/WindowsDevicePortal/DataStructures/DevicePortalConnections.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/DevicePortalConnections.cs.meta rename to Runtime/Utilities/WindowsDevicePortal/DataStructures/DevicePortalConnections.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/FileInfo.cs b/Runtime/Utilities/WindowsDevicePortal/DataStructures/FileInfo.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/FileInfo.cs rename to Runtime/Utilities/WindowsDevicePortal/DataStructures/FileInfo.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/FileInfo.cs.meta b/Runtime/Utilities/WindowsDevicePortal/DataStructures/FileInfo.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/FileInfo.cs.meta rename to Runtime/Utilities/WindowsDevicePortal/DataStructures/FileInfo.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/FileList.cs b/Runtime/Utilities/WindowsDevicePortal/DataStructures/FileList.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/FileList.cs rename to Runtime/Utilities/WindowsDevicePortal/DataStructures/FileList.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/FileList.cs.meta b/Runtime/Utilities/WindowsDevicePortal/DataStructures/FileList.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/FileList.cs.meta rename to Runtime/Utilities/WindowsDevicePortal/DataStructures/FileList.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/InstallStatus.cs b/Runtime/Utilities/WindowsDevicePortal/DataStructures/InstallStatus.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/InstallStatus.cs rename to Runtime/Utilities/WindowsDevicePortal/DataStructures/InstallStatus.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/InstallStatus.cs.meta b/Runtime/Utilities/WindowsDevicePortal/DataStructures/InstallStatus.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/InstallStatus.cs.meta rename to Runtime/Utilities/WindowsDevicePortal/DataStructures/InstallStatus.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/InstalledApps.cs b/Runtime/Utilities/WindowsDevicePortal/DataStructures/InstalledApps.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/InstalledApps.cs rename to Runtime/Utilities/WindowsDevicePortal/DataStructures/InstalledApps.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/InstalledApps.cs.meta b/Runtime/Utilities/WindowsDevicePortal/DataStructures/InstalledApps.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/InstalledApps.cs.meta rename to Runtime/Utilities/WindowsDevicePortal/DataStructures/InstalledApps.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/InterfaceInfo.cs b/Runtime/Utilities/WindowsDevicePortal/DataStructures/InterfaceInfo.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/InterfaceInfo.cs rename to Runtime/Utilities/WindowsDevicePortal/DataStructures/InterfaceInfo.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/InterfaceInfo.cs.meta b/Runtime/Utilities/WindowsDevicePortal/DataStructures/InterfaceInfo.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/InterfaceInfo.cs.meta rename to Runtime/Utilities/WindowsDevicePortal/DataStructures/InterfaceInfo.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/IpAddressInfo.cs b/Runtime/Utilities/WindowsDevicePortal/DataStructures/IpAddressInfo.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/IpAddressInfo.cs rename to Runtime/Utilities/WindowsDevicePortal/DataStructures/IpAddressInfo.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/IpAddressInfo.cs.meta b/Runtime/Utilities/WindowsDevicePortal/DataStructures/IpAddressInfo.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/IpAddressInfo.cs.meta rename to Runtime/Utilities/WindowsDevicePortal/DataStructures/IpAddressInfo.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/IpConfigInfo.cs b/Runtime/Utilities/WindowsDevicePortal/DataStructures/IpConfigInfo.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/IpConfigInfo.cs rename to Runtime/Utilities/WindowsDevicePortal/DataStructures/IpConfigInfo.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/IpConfigInfo.cs.meta b/Runtime/Utilities/WindowsDevicePortal/DataStructures/IpConfigInfo.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/IpConfigInfo.cs.meta rename to Runtime/Utilities/WindowsDevicePortal/DataStructures/IpConfigInfo.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/MachineName.cs b/Runtime/Utilities/WindowsDevicePortal/DataStructures/MachineName.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/MachineName.cs rename to Runtime/Utilities/WindowsDevicePortal/DataStructures/MachineName.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/MachineName.cs.meta b/Runtime/Utilities/WindowsDevicePortal/DataStructures/MachineName.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/MachineName.cs.meta rename to Runtime/Utilities/WindowsDevicePortal/DataStructures/MachineName.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/NetworkInterfaces.cs b/Runtime/Utilities/WindowsDevicePortal/DataStructures/NetworkInterfaces.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/NetworkInterfaces.cs rename to Runtime/Utilities/WindowsDevicePortal/DataStructures/NetworkInterfaces.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/NetworkInterfaces.cs.meta b/Runtime/Utilities/WindowsDevicePortal/DataStructures/NetworkInterfaces.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/NetworkInterfaces.cs.meta rename to Runtime/Utilities/WindowsDevicePortal/DataStructures/NetworkInterfaces.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/NetworkProfileInfo.cs b/Runtime/Utilities/WindowsDevicePortal/DataStructures/NetworkProfileInfo.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/NetworkProfileInfo.cs rename to Runtime/Utilities/WindowsDevicePortal/DataStructures/NetworkProfileInfo.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/NetworkProfileInfo.cs.meta b/Runtime/Utilities/WindowsDevicePortal/DataStructures/NetworkProfileInfo.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/NetworkProfileInfo.cs.meta rename to Runtime/Utilities/WindowsDevicePortal/DataStructures/NetworkProfileInfo.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/PowerStateInfo.cs b/Runtime/Utilities/WindowsDevicePortal/DataStructures/PowerStateInfo.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/PowerStateInfo.cs rename to Runtime/Utilities/WindowsDevicePortal/DataStructures/PowerStateInfo.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/PowerStateInfo.cs.meta b/Runtime/Utilities/WindowsDevicePortal/DataStructures/PowerStateInfo.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/PowerStateInfo.cs.meta rename to Runtime/Utilities/WindowsDevicePortal/DataStructures/PowerStateInfo.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/ProcessInfo.cs b/Runtime/Utilities/WindowsDevicePortal/DataStructures/ProcessInfo.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/ProcessInfo.cs rename to Runtime/Utilities/WindowsDevicePortal/DataStructures/ProcessInfo.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/ProcessInfo.cs.meta b/Runtime/Utilities/WindowsDevicePortal/DataStructures/ProcessInfo.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/ProcessInfo.cs.meta rename to Runtime/Utilities/WindowsDevicePortal/DataStructures/ProcessInfo.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/ProcessList.cs b/Runtime/Utilities/WindowsDevicePortal/DataStructures/ProcessList.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/ProcessList.cs rename to Runtime/Utilities/WindowsDevicePortal/DataStructures/ProcessList.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/ProcessList.cs.meta b/Runtime/Utilities/WindowsDevicePortal/DataStructures/ProcessList.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/ProcessList.cs.meta rename to Runtime/Utilities/WindowsDevicePortal/DataStructures/ProcessList.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/WirelessNetworkInfo.cs b/Runtime/Utilities/WindowsDevicePortal/DataStructures/WirelessNetworkInfo.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/WirelessNetworkInfo.cs rename to Runtime/Utilities/WindowsDevicePortal/DataStructures/WirelessNetworkInfo.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/WirelessNetworkInfo.cs.meta b/Runtime/Utilities/WindowsDevicePortal/DataStructures/WirelessNetworkInfo.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DataStructures/WirelessNetworkInfo.cs.meta rename to Runtime/Utilities/WindowsDevicePortal/DataStructures/WirelessNetworkInfo.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DevicePortal.cs b/Runtime/Utilities/WindowsDevicePortal/DevicePortal.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DevicePortal.cs rename to Runtime/Utilities/WindowsDevicePortal/DevicePortal.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DevicePortal.cs.meta b/Runtime/Utilities/WindowsDevicePortal/DevicePortal.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/WindowsDevicePortal/DevicePortal.cs.meta rename to Runtime/Utilities/WindowsDevicePortal/DevicePortal.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/XRDeviceUtilities.cs b/Runtime/Utilities/XRDeviceUtilities.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/XRDeviceUtilities.cs rename to Runtime/Utilities/XRDeviceUtilities.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/XRDeviceUtilities.cs.meta b/Runtime/Utilities/XRDeviceUtilities.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/Utilities/XRDeviceUtilities.cs.meta rename to Runtime/Utilities/XRDeviceUtilities.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/XRTK.asmdef b/Runtime/XRTK.asmdef similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/XRTK.asmdef rename to Runtime/XRTK.asmdef diff --git a/XRTK-Core/Packages/com.xrtk.core/Runtime/XRTK.asmdef.meta b/Runtime/XRTK.asmdef.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Runtime/XRTK.asmdef.meta rename to Runtime/XRTK.asmdef.meta diff --git a/Submodules/Examples b/Submodules/Examples deleted file mode 160000 index be999e114..000000000 --- a/Submodules/Examples +++ /dev/null @@ -1 +0,0 @@ -Subproject commit be999e11463483fd97f93efd5f89d6af2a1d8d5f diff --git a/Submodules/Lumin b/Submodules/Lumin deleted file mode 160000 index c30827c55..000000000 --- a/Submodules/Lumin +++ /dev/null @@ -1 +0,0 @@ -Subproject commit c30827c55fb90f1cb6ea58b5f201e8d4247707f5 diff --git a/Submodules/Oculus b/Submodules/Oculus deleted file mode 160000 index 593cdf885..000000000 --- a/Submodules/Oculus +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 593cdf88538aae3ad95262f5171ce1c2a2f89cd4 diff --git a/Submodules/SDK b/Submodules/SDK deleted file mode 160000 index 1c2300eb0..000000000 --- a/Submodules/SDK +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 1c2300eb0e997ad3e3066322598ba2fd292b84fb diff --git a/Submodules/SpatialPersistence b/Submodules/SpatialPersistence deleted file mode 160000 index 7d5bfd733..000000000 --- a/Submodules/SpatialPersistence +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 7d5bfd733255ddc9922fa4617b52f6421bc62d12 diff --git a/Submodules/SpatialPersistence.ASA b/Submodules/SpatialPersistence.ASA deleted file mode 160000 index ba82f2e6c..000000000 --- a/Submodules/SpatialPersistence.ASA +++ /dev/null @@ -1 +0,0 @@ -Subproject commit ba82f2e6cd9cf628a08e07292602783d073c5524 diff --git a/Submodules/Ultraleap b/Submodules/Ultraleap deleted file mode 160000 index b61a8e4f7..000000000 --- a/Submodules/Ultraleap +++ /dev/null @@ -1 +0,0 @@ -Subproject commit b61a8e4f782ed4ec433d68adb69ed287f54d5f66 diff --git a/Submodules/WindowsMixedReality b/Submodules/WindowsMixedReality deleted file mode 160000 index cb77279b3..000000000 --- a/Submodules/WindowsMixedReality +++ /dev/null @@ -1 +0,0 @@ -Subproject commit cb77279b39d2fdd46a599ee9c0f481d2b97c6fba diff --git a/Submodules/glTF b/Submodules/glTF deleted file mode 160000 index afc50ce5c..000000000 --- a/Submodules/glTF +++ /dev/null @@ -1 +0,0 @@ -Subproject commit afc50ce5c9d42541bf1bd21416ab48923128f92c diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests.meta b/Tests.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests.meta rename to Tests.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/AssemblyInfo.cs b/Tests/AssemblyInfo.cs similarity index 89% rename from XRTK-Core/Packages/com.xrtk.core/Tests/AssemblyInfo.cs rename to Tests/AssemblyInfo.cs index da52d0442..d4ec59514 100644 --- a/XRTK-Core/Packages/com.xrtk.core/Tests/AssemblyInfo.cs +++ b/Tests/AssemblyInfo.cs @@ -3,7 +3,7 @@ using System.Reflection; -[assembly: AssemblyVersion("0.3.5")] +[assembly: AssemblyVersion("0.3.6")] [assembly: AssemblyTitle("com.xrtk.tests")] [assembly: AssemblyCompany("XRTK")] [assembly: AssemblyCopyright("Copyright (c) XRTK. All rights reserved.")] diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/AssemblyInfo.cs.meta b/Tests/AssemblyInfo.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/AssemblyInfo.cs.meta rename to Tests/AssemblyInfo.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/Core.meta b/Tests/Core.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/Core.meta rename to Tests/Core.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/Core/TestFixture_01_MixedRealityToolkitTests.cs b/Tests/Core/TestFixture_01_MixedRealityToolkitTests.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/Core/TestFixture_01_MixedRealityToolkitTests.cs rename to Tests/Core/TestFixture_01_MixedRealityToolkitTests.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/Core/TestFixture_01_MixedRealityToolkitTests.cs.meta b/Tests/Core/TestFixture_01_MixedRealityToolkitTests.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/Core/TestFixture_01_MixedRealityToolkitTests.cs.meta rename to Tests/Core/TestFixture_01_MixedRealityToolkitTests.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/Core/TestFixture_02_MixedRealityToolkitUtilityTests.cs b/Tests/Core/TestFixture_02_MixedRealityToolkitUtilityTests.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/Core/TestFixture_02_MixedRealityToolkitUtilityTests.cs rename to Tests/Core/TestFixture_02_MixedRealityToolkitUtilityTests.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/Core/TestFixture_02_MixedRealityToolkitUtilityTests.cs.meta b/Tests/Core/TestFixture_02_MixedRealityToolkitUtilityTests.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/Core/TestFixture_02_MixedRealityToolkitUtilityTests.cs.meta rename to Tests/Core/TestFixture_02_MixedRealityToolkitUtilityTests.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/Core/TestFixture_03_ExtensionsTests.cs b/Tests/Core/TestFixture_03_ExtensionsTests.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/Core/TestFixture_03_ExtensionsTests.cs rename to Tests/Core/TestFixture_03_ExtensionsTests.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/Core/TestFixture_03_ExtensionsTests.cs.meta b/Tests/Core/TestFixture_03_ExtensionsTests.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/Core/TestFixture_03_ExtensionsTests.cs.meta rename to Tests/Core/TestFixture_03_ExtensionsTests.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/Extensions.meta b/Tests/Extensions.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/Extensions.meta rename to Tests/Extensions.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/Extensions/EnumExtensionTests.cs b/Tests/Extensions/EnumExtensionTests.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/Extensions/EnumExtensionTests.cs rename to Tests/Extensions/EnumExtensionTests.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/Extensions/EnumExtensionTests.cs.meta b/Tests/Extensions/EnumExtensionTests.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/Extensions/EnumExtensionTests.cs.meta rename to Tests/Extensions/EnumExtensionTests.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/InputSystem.meta b/Tests/InputSystem.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/InputSystem.meta rename to Tests/InputSystem.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/InputSystem/InputSystemTestUtilities.cs b/Tests/InputSystem/InputSystemTestUtilities.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/InputSystem/InputSystemTestUtilities.cs rename to Tests/InputSystem/InputSystemTestUtilities.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/InputSystem/InputSystemTestUtilities.cs.meta b/Tests/InputSystem/InputSystemTestUtilities.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/InputSystem/InputSystemTestUtilities.cs.meta rename to Tests/InputSystem/InputSystemTestUtilities.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/InputSystem/TestFixture_01_UnityInputManagerHelperTests.cs b/Tests/InputSystem/TestFixture_01_UnityInputManagerHelperTests.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/InputSystem/TestFixture_01_UnityInputManagerHelperTests.cs rename to Tests/InputSystem/TestFixture_01_UnityInputManagerHelperTests.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/InputSystem/TestFixture_01_UnityInputManagerHelperTests.cs.meta b/Tests/InputSystem/TestFixture_01_UnityInputManagerHelperTests.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/InputSystem/TestFixture_01_UnityInputManagerHelperTests.cs.meta rename to Tests/InputSystem/TestFixture_01_UnityInputManagerHelperTests.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/InputSystem/TestFixture_02_InteractionDefinitionTests.cs b/Tests/InputSystem/TestFixture_02_InteractionDefinitionTests.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/InputSystem/TestFixture_02_InteractionDefinitionTests.cs rename to Tests/InputSystem/TestFixture_02_InteractionDefinitionTests.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/InputSystem/TestFixture_02_InteractionDefinitionTests.cs.meta b/Tests/InputSystem/TestFixture_02_InteractionDefinitionTests.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/InputSystem/TestFixture_02_InteractionDefinitionTests.cs.meta rename to Tests/InputSystem/TestFixture_02_InteractionDefinitionTests.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/InputSystem/TestFixture_03_InputSystemTests.cs b/Tests/InputSystem/TestFixture_03_InputSystemTests.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/InputSystem/TestFixture_03_InputSystemTests.cs rename to Tests/InputSystem/TestFixture_03_InputSystemTests.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/InputSystem/TestFixture_03_InputSystemTests.cs.meta b/Tests/InputSystem/TestFixture_03_InputSystemTests.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/InputSystem/TestFixture_03_InputSystemTests.cs.meta rename to Tests/InputSystem/TestFixture_03_InputSystemTests.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/InputSystem/TestFixture_04_InputActionTests.cs b/Tests/InputSystem/TestFixture_04_InputActionTests.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/InputSystem/TestFixture_04_InputActionTests.cs rename to Tests/InputSystem/TestFixture_04_InputActionTests.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/InputSystem/TestFixture_04_InputActionTests.cs.meta b/Tests/InputSystem/TestFixture_04_InputActionTests.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/InputSystem/TestFixture_04_InputActionTests.cs.meta rename to Tests/InputSystem/TestFixture_04_InputActionTests.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/Services.meta b/Tests/Services.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/Services.meta rename to Tests/Services.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/Services/AssemblyInfo.cs b/Tests/Services/AssemblyInfo.cs similarity index 93% rename from XRTK-Core/Packages/com.xrtk.core/Tests/Services/AssemblyInfo.cs rename to Tests/Services/AssemblyInfo.cs index 6b99c9078..1b0d6b850 100644 --- a/XRTK-Core/Packages/com.xrtk.core/Tests/Services/AssemblyInfo.cs +++ b/Tests/Services/AssemblyInfo.cs @@ -4,7 +4,7 @@ using System.Reflection; using System.Runtime.CompilerServices; -[assembly: AssemblyVersion("0.3.5")] +[assembly: AssemblyVersion("0.3.6")] [assembly: AssemblyTitle("com.xrtk.core.tests.services")] [assembly: AssemblyCompany("XRTK")] [assembly: AssemblyCopyright("Copyright (c) XRTK. All rights reserved.")] diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/Services/AssemblyInfo.cs.meta b/Tests/Services/AssemblyInfo.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/Services/AssemblyInfo.cs.meta rename to Tests/Services/AssemblyInfo.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/Services/ITestDataProvider1.cs b/Tests/Services/ITestDataProvider1.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/Services/ITestDataProvider1.cs rename to Tests/Services/ITestDataProvider1.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/Services/ITestDataProvider1.cs.meta b/Tests/Services/ITestDataProvider1.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/Services/ITestDataProvider1.cs.meta rename to Tests/Services/ITestDataProvider1.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/Services/ITestDataProvider2.cs b/Tests/Services/ITestDataProvider2.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/Services/ITestDataProvider2.cs rename to Tests/Services/ITestDataProvider2.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/Services/ITestDataProvider2.cs.meta b/Tests/Services/ITestDataProvider2.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/Services/ITestDataProvider2.cs.meta rename to Tests/Services/ITestDataProvider2.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/Services/ITestExtensionDataProvider1.cs b/Tests/Services/ITestExtensionDataProvider1.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/Services/ITestExtensionDataProvider1.cs rename to Tests/Services/ITestExtensionDataProvider1.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/Services/ITestExtensionDataProvider1.cs.meta b/Tests/Services/ITestExtensionDataProvider1.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/Services/ITestExtensionDataProvider1.cs.meta rename to Tests/Services/ITestExtensionDataProvider1.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/Services/ITestExtensionService1.cs b/Tests/Services/ITestExtensionService1.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/Services/ITestExtensionService1.cs rename to Tests/Services/ITestExtensionService1.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/Services/ITestExtensionService1.cs.meta b/Tests/Services/ITestExtensionService1.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/Services/ITestExtensionService1.cs.meta rename to Tests/Services/ITestExtensionService1.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/Services/ITestExtensionService2.cs b/Tests/Services/ITestExtensionService2.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/Services/ITestExtensionService2.cs rename to Tests/Services/ITestExtensionService2.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/Services/ITestExtensionService2.cs.meta b/Tests/Services/ITestExtensionService2.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/Services/ITestExtensionService2.cs.meta rename to Tests/Services/ITestExtensionService2.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/Services/ITestFailService.cs b/Tests/Services/ITestFailService.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/Services/ITestFailService.cs rename to Tests/Services/ITestFailService.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/Services/ITestFailService.cs.meta b/Tests/Services/ITestFailService.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/Services/ITestFailService.cs.meta rename to Tests/Services/ITestFailService.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/Services/ITestService.cs b/Tests/Services/ITestService.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/Services/ITestService.cs rename to Tests/Services/ITestService.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/Services/ITestService.cs.meta b/Tests/Services/ITestService.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/Services/ITestService.cs.meta rename to Tests/Services/ITestService.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/Services/ITestSystem.cs b/Tests/Services/ITestSystem.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/Services/ITestSystem.cs rename to Tests/Services/ITestSystem.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/Services/ITestSystem.cs.meta b/Tests/Services/ITestSystem.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/Services/ITestSystem.cs.meta rename to Tests/Services/ITestSystem.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/Services/TestDataProvider1.cs b/Tests/Services/TestDataProvider1.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/Services/TestDataProvider1.cs rename to Tests/Services/TestDataProvider1.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/Services/TestDataProvider1.cs.meta b/Tests/Services/TestDataProvider1.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/Services/TestDataProvider1.cs.meta rename to Tests/Services/TestDataProvider1.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/Services/TestDataProvider2.cs b/Tests/Services/TestDataProvider2.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/Services/TestDataProvider2.cs rename to Tests/Services/TestDataProvider2.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/Services/TestDataProvider2.cs.meta b/Tests/Services/TestDataProvider2.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/Services/TestDataProvider2.cs.meta rename to Tests/Services/TestDataProvider2.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/Services/TestExtensionDataProvider2.cs b/Tests/Services/TestExtensionDataProvider2.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/Services/TestExtensionDataProvider2.cs rename to Tests/Services/TestExtensionDataProvider2.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/Services/TestExtensionDataProvider2.cs.meta b/Tests/Services/TestExtensionDataProvider2.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/Services/TestExtensionDataProvider2.cs.meta rename to Tests/Services/TestExtensionDataProvider2.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/Services/TestExtensionService1.cs b/Tests/Services/TestExtensionService1.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/Services/TestExtensionService1.cs rename to Tests/Services/TestExtensionService1.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/Services/TestExtensionService1.cs.meta b/Tests/Services/TestExtensionService1.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/Services/TestExtensionService1.cs.meta rename to Tests/Services/TestExtensionService1.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/Services/TestExtensionService2.cs b/Tests/Services/TestExtensionService2.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/Services/TestExtensionService2.cs rename to Tests/Services/TestExtensionService2.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/Services/TestExtensionService2.cs.meta b/Tests/Services/TestExtensionService2.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/Services/TestExtensionService2.cs.meta rename to Tests/Services/TestExtensionService2.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/Services/TestExtensionServiceProvider1.cs b/Tests/Services/TestExtensionServiceProvider1.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/Services/TestExtensionServiceProvider1.cs rename to Tests/Services/TestExtensionServiceProvider1.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/Services/TestExtensionServiceProvider1.cs.meta b/Tests/Services/TestExtensionServiceProvider1.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/Services/TestExtensionServiceProvider1.cs.meta rename to Tests/Services/TestExtensionServiceProvider1.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/Services/TestFailService.cs b/Tests/Services/TestFailService.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/Services/TestFailService.cs rename to Tests/Services/TestFailService.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/Services/TestFailService.cs.meta b/Tests/Services/TestFailService.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/Services/TestFailService.cs.meta rename to Tests/Services/TestFailService.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/Services/TestService1.cs b/Tests/Services/TestService1.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/Services/TestService1.cs rename to Tests/Services/TestService1.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/Services/TestService1.cs.meta b/Tests/Services/TestService1.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/Services/TestService1.cs.meta rename to Tests/Services/TestService1.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/Services/TestSystem1.cs b/Tests/Services/TestSystem1.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/Services/TestSystem1.cs rename to Tests/Services/TestSystem1.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/Services/TestSystem1.cs.meta b/Tests/Services/TestSystem1.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/Services/TestSystem1.cs.meta rename to Tests/Services/TestSystem1.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/Services/XRTK.Tests.Services.asmdef b/Tests/Services/XRTK.Tests.Services.asmdef similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/Services/XRTK.Tests.Services.asmdef rename to Tests/Services/XRTK.Tests.Services.asmdef diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/Services/XRTK.Tests.Services.asmdef.meta b/Tests/Services/XRTK.Tests.Services.asmdef.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/Services/XRTK.Tests.Services.asmdef.meta rename to Tests/Services/XRTK.Tests.Services.asmdef.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/TestUtilities.cs b/Tests/TestUtilities.cs similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/TestUtilities.cs rename to Tests/TestUtilities.cs diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/TestUtilities.cs.meta b/Tests/TestUtilities.cs.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/TestUtilities.cs.meta rename to Tests/TestUtilities.cs.meta diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/XRTK.Tests.asmdef b/Tests/XRTK.Tests.asmdef similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/XRTK.Tests.asmdef rename to Tests/XRTK.Tests.asmdef diff --git a/XRTK-Core/Packages/com.xrtk.core/Tests/XRTK.Tests.asmdef.meta b/Tests/XRTK.Tests.asmdef.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/Tests/XRTK.Tests.asmdef.meta rename to Tests/XRTK.Tests.asmdef.meta diff --git a/XRTK-Core/.editorconfig b/XRTK-Core/.editorconfig deleted file mode 100644 index ac4472f0e..000000000 --- a/XRTK-Core/.editorconfig +++ /dev/null @@ -1,75 +0,0 @@ -# https://docs.microsoft.com/en-us/dotnet/fundamentals/code-analysis/code-style-rule-options - -# Remove the line below if you want to inherit .editorconfig settings from higher directories -root = true - -[*.cs] - -#### Core EditorConfig Options #### - -# Indentation and spacing -indent_size = 4 -indent_style = space -tab_width = 4 - -# New line preferences -end_of_line = crlf -insert_final_newline = true -trim_trailing_whitespace = true -csharp_new_line_before_catch = true -csharp_new_line_before_else = true -csharp_new_line_before_finally = true -csharp_new_line_before_open_brace = all - -# Modifier preferences -dotnet_style_require_accessibility_modifiers = for_non_interface_members:error - -# Code-block preferences -csharp_prefer_braces = true:error - -# Use language keywords for types -dotnet_style_predefined_type_for_member_access = true -dotnet_style_predefined_type_for_locals_parameters_members = true - -# Code Style -csharp_style_var_when_type_is_apparent = true - -#### Resharper/Rider Rules #### -# https://www.jetbrains.com/help/resharper/EditorConfig_Properties.html - -resharper_csharp_force_attribute_style=separate -csharp_place_field_attribute_on_same_line=false -csharp_place_accessorholder_attribute_on_same_line=false -csharp_trailing_comma_in_multiline_lists=false -csharp_trailing_comma_in_singleline_lists=false -csharp_keep_existing_attribute_arrangement=false -csharp_blank_lines_around_region=1 -csharp_blank_lines_inside_region=1 -csharp_keep_blank_lines_in_code=false -csharp_remove_blank_lines_near_braces_in_code=true -csharp_blank_lines_before_control_transfer_statements=1 -csharp_blank_lines_after_control_transfer_statements=1 -csharp_blank_lines_before_block_statements=1 -csharp_blank_lines_after_block_statements=1 -csharp_blank_lines_before_multiline_statements=1 -csharp_blank_lines_after_multiline_statements=1 -csharp_blank_lines_around_block_case_section=0 -csharp_blank_lines_around_multiline_case_section=0 -csharp_blank_lines_before_case=0 -csharp_blank_lines_after_case=0 -resharper_unity_duplicate_event_function_highlighting=error -resharper_unity_duplicate_shortcut_highlighting=error -resharper_unity_expected_component_highlighting=error -resharper_unity_explicit_tag_comparison_highlighting=error -resharper_unity_incorrect_mono_behaviour_instantiation_highlighting=error -resharper_unity_incorrect_scriptable_object_instantiation_highlighting=error -resharper_unity_no_null_coalescing_highlighting=error -resharper_unity_performance_critical_code_camera_main_highlighting=error -resharper_unity_performance_critical_code_invocation_highlighting=warning -resharper_unity_performance_critical_code_null_comparison_highlighting=warning -resharper_unity_possible_misapplication_of_attribute_to_multiple_fields_highlighting=error -resharper_unity_redundant_attribute_on_target_highlighting=error -resharper_unity_redundant_formerly_serialized_as_attribute_highlighting=error -resharper_unity_unresolved_component_or_scriptable_object_highlighting=error -resharper_use_name_of_instead_of_type_of_highlighting=error -resharper_wrong_public_modifier_specification_highlighting=error diff --git a/XRTK-Core/Assets/Plugins.meta b/XRTK-Core/Assets/Plugins.meta deleted file mode 100644 index e40cff348..000000000 --- a/XRTK-Core/Assets/Plugins.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 2bb7790bdcc733c4ab220102c945faec -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/XRTK-Core/Assets/Plugins/Lumin.meta b/XRTK-Core/Assets/Plugins/Lumin.meta deleted file mode 100644 index b20a92a55..000000000 --- a/XRTK-Core/Assets/Plugins/Lumin.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 2eb0a3364ed98c446ad92e0efccc0ce7 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/XRTK-Core/Assets/Plugins/Lumin/manifest.xml b/XRTK-Core/Assets/Plugins/Lumin/manifest.xml deleted file mode 100644 index 7f15fa556..000000000 --- a/XRTK-Core/Assets/Plugins/Lumin/manifest.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/XRTK-Core/Assets/Plugins/Lumin/manifest.xml.meta b/XRTK-Core/Assets/Plugins/Lumin/manifest.xml.meta deleted file mode 100644 index 273b376dc..000000000 --- a/XRTK-Core/Assets/Plugins/Lumin/manifest.xml.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: 58d820e0474062f41ba14c6508544308 -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/XRTK-Core/Assets/XR.meta b/XRTK-Core/Assets/XR.meta deleted file mode 100644 index 0531b3ceb..000000000 --- a/XRTK-Core/Assets/XR.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 67e367c32653b6746beeee51bf861d53 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/XRTK-Core/Assets/XR/Loaders.meta b/XRTK-Core/Assets/XR/Loaders.meta deleted file mode 100644 index 2afc36e01..000000000 --- a/XRTK-Core/Assets/XR/Loaders.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 0766ee1f0689f5d41a2394d26859129d -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/XRTK-Core/Assets/XR/Loaders/Mock HMD Loader.asset b/XRTK-Core/Assets/XR/Loaders/Mock HMD Loader.asset deleted file mode 100644 index f7b4662c3..000000000 --- a/XRTK-Core/Assets/XR/Loaders/Mock HMD Loader.asset +++ /dev/null @@ -1,14 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!114 &11400000 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 0660e8fc444734757ae6f6c40c2d33a0, type: 3} - m_Name: Mock HMD Loader - m_EditorClassIdentifier: diff --git a/XRTK-Core/Assets/XR/Loaders/Mock HMD Loader.asset.meta b/XRTK-Core/Assets/XR/Loaders/Mock HMD Loader.asset.meta deleted file mode 100644 index e0fe0ead0..000000000 --- a/XRTK-Core/Assets/XR/Loaders/Mock HMD Loader.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 4e75234349cacc74c887df28234088a1 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: - assetBundleVariant: diff --git a/XRTK-Core/Assets/XR/Loaders/Oculus Loader.asset b/XRTK-Core/Assets/XR/Loaders/Oculus Loader.asset deleted file mode 100644 index 0f89c61d4..000000000 --- a/XRTK-Core/Assets/XR/Loaders/Oculus Loader.asset +++ /dev/null @@ -1,14 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!114 &11400000 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 03bc68f14d65e7747a59d5ff74bd199b, type: 3} - m_Name: Oculus Loader - m_EditorClassIdentifier: diff --git a/XRTK-Core/Assets/XR/Loaders/Oculus Loader.asset.meta b/XRTK-Core/Assets/XR/Loaders/Oculus Loader.asset.meta deleted file mode 100644 index fb2ee9a5a..000000000 --- a/XRTK-Core/Assets/XR/Loaders/Oculus Loader.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: fc60cfa452e6e5d42ada645276ab44de -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: - assetBundleVariant: diff --git a/XRTK-Core/Assets/XR/Loaders/Windows MR Loader.asset b/XRTK-Core/Assets/XR/Loaders/Windows MR Loader.asset deleted file mode 100644 index 1bbdfa236..000000000 --- a/XRTK-Core/Assets/XR/Loaders/Windows MR Loader.asset +++ /dev/null @@ -1,14 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!114 &11400000 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: a140b66429c96344083035352cb7c898, type: 3} - m_Name: Windows MR Loader - m_EditorClassIdentifier: diff --git a/XRTK-Core/Assets/XR/Loaders/Windows MR Loader.asset.meta b/XRTK-Core/Assets/XR/Loaders/Windows MR Loader.asset.meta deleted file mode 100644 index 25364068e..000000000 --- a/XRTK-Core/Assets/XR/Loaders/Windows MR Loader.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 356d596f063c99f47993663206fcac44 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: - assetBundleVariant: diff --git a/XRTK-Core/Assets/XR/Settings.meta b/XRTK-Core/Assets/XR/Settings.meta deleted file mode 100644 index 5fe13cb0f..000000000 --- a/XRTK-Core/Assets/XR/Settings.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 2cecaf121ff3f9e489b9d8396c6902d3 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/XRTK-Core/Assets/XR/Settings/Magic Leap Settings.asset b/XRTK-Core/Assets/XR/Settings/Magic Leap Settings.asset deleted file mode 100644 index aabc7a4a7..000000000 --- a/XRTK-Core/Assets/XR/Settings/Magic Leap Settings.asset +++ /dev/null @@ -1,22 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!114 &11400000 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: c6199fb6640743e43ba76362f0cc36f5, type: 3} - m_Name: Magic Leap Settings - m_EditorClassIdentifier: - m_DepthPrecision: 0 - m_ForceMultipass: 0 - m_FrameTimingHint: 2 - m_GLCacheSettings: - m_Enabled: 0 - m_MaxBlobSizeInBytes: 0 - m_MaxFileSizeInBytes: 0 - m_EnableGestures: 1 diff --git a/XRTK-Core/Assets/XR/Settings/Magic Leap Settings.asset.meta b/XRTK-Core/Assets/XR/Settings/Magic Leap Settings.asset.meta deleted file mode 100644 index 7adf7ca00..000000000 --- a/XRTK-Core/Assets/XR/Settings/Magic Leap Settings.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: bf4ca4b201eff6f47bfcf89c2053db39 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: - assetBundleVariant: diff --git a/XRTK-Core/Assets/XR/Settings/Mock HMD Build Settings.asset b/XRTK-Core/Assets/XR/Settings/Mock HMD Build Settings.asset deleted file mode 100644 index 0acbf623d..000000000 --- a/XRTK-Core/Assets/XR/Settings/Mock HMD Build Settings.asset +++ /dev/null @@ -1,15 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!114 &11400000 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: c8bf066bf8a4947a1be502d267edb82f, type: 3} - m_Name: Mock HMD Build Settings - m_EditorClassIdentifier: - renderMode: 1 diff --git a/XRTK-Core/Assets/XR/Settings/Mock HMD Build Settings.asset.meta b/XRTK-Core/Assets/XR/Settings/Mock HMD Build Settings.asset.meta deleted file mode 100644 index 90b356824..000000000 --- a/XRTK-Core/Assets/XR/Settings/Mock HMD Build Settings.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: f99b452b5394cbd47888a25c1ab5cc02 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: - assetBundleVariant: diff --git a/XRTK-Core/Assets/XR/Settings/Oculus Settings.asset b/XRTK-Core/Assets/XR/Settings/Oculus Settings.asset deleted file mode 100644 index c6040b84b..000000000 --- a/XRTK-Core/Assets/XR/Settings/Oculus Settings.asset +++ /dev/null @@ -1,29 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!114 &11400000 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: c353a8f1e58cf884584123914fe63cd5, type: 3} - m_Name: Oculus Settings - m_EditorClassIdentifier: - m_StereoRenderingModeDesktop: 1 - m_StereoRenderingModeAndroid: 2 - SharedDepthBuffer: 1 - DashSupport: 1 - LowOverheadMode: 1 - OptimizeBufferDiscards: 0 - PhaseSync: 0 - SymmetricProjection: 0 - SubsampledLayout: 0 - LateLatching: 0 - LateLatchingDebug: 0 - SpaceWarp: 0 - TargetQuest: 1 - TargetQuest2: 1 - SystemSplashScreen: {fileID: 0} diff --git a/XRTK-Core/Assets/XR/Settings/Oculus Settings.asset.meta b/XRTK-Core/Assets/XR/Settings/Oculus Settings.asset.meta deleted file mode 100644 index f5ea0612e..000000000 --- a/XRTK-Core/Assets/XR/Settings/Oculus Settings.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 06ef152b9c9ed1d40b182b1d13e20acc -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: - assetBundleVariant: diff --git a/XRTK-Core/Assets/XR/Settings/Windows MR Package Settings.asset b/XRTK-Core/Assets/XR/Settings/Windows MR Package Settings.asset deleted file mode 100644 index e38947def..000000000 --- a/XRTK-Core/Assets/XR/Settings/Windows MR Package Settings.asset +++ /dev/null @@ -1,77 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!114 &-9067312141160408294 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: ed912223f7b3af74d8e196b2a4e662b3, type: 3} - m_Name: - m_EditorClassIdentifier: - DepthBufferFormat: 0 - UseSharedDepthBuffer: 1 ---- !u!114 &-3121065299839257355 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: ed912223f7b3af74d8e196b2a4e662b3, type: 3} - m_Name: - m_EditorClassIdentifier: - DepthBufferFormat: 0 - UseSharedDepthBuffer: 0 ---- !u!114 &-1661854851626215561 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 3a6c5bd16b42a1542ad52d1d47746bdb, type: 3} - m_Name: - m_EditorClassIdentifier: - UsePrimaryWindowForDisplay: 1 - HolographicRemoting: 0 ---- !u!114 &11400000 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: e679265d16d650945812b915bb9d5cc3, type: 3} - m_Name: Windows MR Package Settings - m_EditorClassIdentifier: - Keys: 0e00000001000000 - Values: - - {fileID: -9067312141160408294} - - {fileID: -3121065299839257355} - BuildValues: - - {fileID: -1661854851626215561} - - {fileID: 5058691486864405763} ---- !u!114 &5058691486864405763 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 3a6c5bd16b42a1542ad52d1d47746bdb, type: 3} - m_Name: - m_EditorClassIdentifier: - UsePrimaryWindowForDisplay: 1 - HolographicRemoting: 0 diff --git a/XRTK-Core/Assets/XR/Settings/Windows MR Package Settings.asset.meta b/XRTK-Core/Assets/XR/Settings/Windows MR Package Settings.asset.meta deleted file mode 100644 index 841cb2ce1..000000000 --- a/XRTK-Core/Assets/XR/Settings/Windows MR Package Settings.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: c1ab88c6e8137d949b3ba9d7c77ff5eb -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: - assetBundleVariant: diff --git a/XRTK-Core/Assets/XR/XRGeneralSettings.asset b/XRTK-Core/Assets/XR/XRGeneralSettings.asset deleted file mode 100644 index 875ab0f1d..000000000 --- a/XRTK-Core/Assets/XR/XRGeneralSettings.asset +++ /dev/null @@ -1,175 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!114 &-9177969159344432433 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4c3631f5e58749a59194e0cf6baf6d5, type: 3} - m_Name: WebGL Providers - m_EditorClassIdentifier: - m_RequiresSettingsUpdate: 0 - m_AutomaticLoading: 0 - m_AutomaticRunning: 0 - m_Loaders: [] ---- !u!114 &-5842413985860741297 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4c3631f5e58749a59194e0cf6baf6d5, type: 3} - m_Name: Lumin Providers - m_EditorClassIdentifier: - m_RequiresSettingsUpdate: 0 - m_AutomaticLoading: 0 - m_AutomaticRunning: 0 - m_Loaders: - - {fileID: 11400000, guid: a3b5ed70886f05e46941d4c937e02437, type: 2} ---- !u!114 &-5810052535269155685 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4c3631f5e58749a59194e0cf6baf6d5, type: 3} - m_Name: Standalone Providers - m_EditorClassIdentifier: - m_RequiresSettingsUpdate: 0 - m_AutomaticLoading: 0 - m_AutomaticRunning: 0 - m_Loaders: - - {fileID: 11400000, guid: 4e75234349cacc74c887df28234088a1, type: 2} ---- !u!114 &-5075777558928976932 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: d236b7d11115f2143951f1e14045df39, type: 3} - m_Name: Standalone Settings - m_EditorClassIdentifier: - m_LoaderManagerInstance: {fileID: -5810052535269155685} - m_InitManagerOnStart: 1 ---- !u!114 &-3557453707481183071 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4c3631f5e58749a59194e0cf6baf6d5, type: 3} - m_Name: Android Providers - m_EditorClassIdentifier: - m_RequiresSettingsUpdate: 0 - m_AutomaticLoading: 0 - m_AutomaticRunning: 0 - m_Loaders: - - {fileID: 11400000, guid: 4e75234349cacc74c887df28234088a1, type: 2} ---- !u!114 &-1889517401308975564 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4c3631f5e58749a59194e0cf6baf6d5, type: 3} - m_Name: WSA Providers - m_EditorClassIdentifier: - m_RequiresSettingsUpdate: 0 - m_AutomaticLoading: 0 - m_AutomaticRunning: 0 - m_Loaders: - - {fileID: 11400000, guid: 356d596f063c99f47993663206fcac44, type: 2} ---- !u!114 &-115329935226179108 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: d236b7d11115f2143951f1e14045df39, type: 3} - m_Name: Android Settings - m_EditorClassIdentifier: - m_LoaderManagerInstance: {fileID: -3557453707481183071} - m_InitManagerOnStart: 1 ---- !u!114 &11400000 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: d2dc886499c26824283350fa532d087d, type: 3} - m_Name: XRGeneralSettings - m_EditorClassIdentifier: - Keys: 0e000000010000001c000000070000000d000000 - Values: - - {fileID: 7843802771899202064} - - {fileID: -5075777558928976932} - - {fileID: 7291748261543734245} - - {fileID: -115329935226179108} - - {fileID: 1311891893792666627} ---- !u!114 &1311891893792666627 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: d236b7d11115f2143951f1e14045df39, type: 3} - m_Name: WebGL Settings - m_EditorClassIdentifier: - m_LoaderManagerInstance: {fileID: -9177969159344432433} - m_InitManagerOnStart: 1 ---- !u!114 &7291748261543734245 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: d236b7d11115f2143951f1e14045df39, type: 3} - m_Name: Lumin Settings - m_EditorClassIdentifier: - m_LoaderManagerInstance: {fileID: -5842413985860741297} - m_InitManagerOnStart: 1 ---- !u!114 &7843802771899202064 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: d236b7d11115f2143951f1e14045df39, type: 3} - m_Name: WSA Settings - m_EditorClassIdentifier: - m_LoaderManagerInstance: {fileID: -1889517401308975564} - m_InitManagerOnStart: 1 diff --git a/XRTK-Core/Assets/XR/XRGeneralSettings.asset.meta b/XRTK-Core/Assets/XR/XRGeneralSettings.asset.meta deleted file mode 100644 index c0afa49f7..000000000 --- a/XRTK-Core/Assets/XR/XRGeneralSettings.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 5af59a24e6269e640b3d590f7858d172 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: - assetBundleVariant: diff --git a/XRTK-Core/Assets/XRTK.Editor.meta b/XRTK-Core/Assets/XRTK.Editor.meta deleted file mode 100644 index 4992f52a7..000000000 --- a/XRTK-Core/Assets/XRTK.Editor.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: aac142f2ee52b664f81855cde18520ff -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/XRTK-Core/Assets/XRTK.Editor/Editor.asmdef b/XRTK-Core/Assets/XRTK.Editor/Editor.asmdef deleted file mode 100644 index 5fdc5465e..000000000 --- a/XRTK-Core/Assets/XRTK.Editor/Editor.asmdef +++ /dev/null @@ -1,15 +0,0 @@ -{ - "name": "Editor", - "references": [], - "includePlatforms": [ - "Editor" - ], - "excludePlatforms": [], - "allowUnsafeCode": false, - "overrideReferences": false, - "precompiledReferences": [], - "autoReferenced": true, - "defineConstraints": [], - "versionDefines": [], - "noEngineReferences": false -} \ No newline at end of file diff --git a/XRTK-Core/Assets/XRTK.Editor/Editor.asmdef.meta b/XRTK-Core/Assets/XRTK.Editor/Editor.asmdef.meta deleted file mode 100644 index 3f313e962..000000000 --- a/XRTK-Core/Assets/XRTK.Editor/Editor.asmdef.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: 599080f4dbfb3744db8307474a26e5cc -AssemblyDefinitionImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/XRTK-Core/Assets/XRTK.Editor/EditorSettingsCheck.cs b/XRTK-Core/Assets/XRTK.Editor/EditorSettingsCheck.cs deleted file mode 100644 index 04e694b8f..000000000 --- a/XRTK-Core/Assets/XRTK.Editor/EditorSettingsCheck.cs +++ /dev/null @@ -1,84 +0,0 @@ -// Copyright (c) XRTK. All rights reserved. -// Licensed under the MIT License. See LICENSE in the project root for license information. - -using System; -using System.Reflection; -using UnityEditor; -using UnityEngine; - -namespace XRTK.Editor -{ - [InitializeOnLoad] - internal static class EditorSettingsCheck - { - [Flags] - private enum ProjectGenerationFlag - { - None = 0, - Embedded = 1, - Local = 2, - Registry = 4, - Git = 8, - BuiltIn = 16, - Unknown = 32, - PlayerAssemblies = 64, - LocalTarBall = 128, - } - - static EditorSettingsCheck() - { - if (Application.isBatchMode || - !EditorPrefs.HasKey("unity_project_generation_flag")) - { - return; - } - - var current = (ProjectGenerationFlag)EditorPrefs.GetInt("unity_project_generation_flag"); - - if ((current & ProjectGenerationFlag.Local) != ProjectGenerationFlag.Local || - (current & ProjectGenerationFlag.Embedded) != ProjectGenerationFlag.Embedded) - { - current |= ProjectGenerationFlag.Embedded | ProjectGenerationFlag.Local; - EditorPrefs.SetInt("unity_project_generation_flag", (int)current); - - EditorApplication.delayCall += () => ToggleProjectGeneration((int)current); - } - } - - private static void ToggleProjectGeneration(int value) - { - var syncVsType = Type.GetType("UnityEditor.SyncVS,UnityEditor"); - Debug.Assert(syncVsType != null); - var synchronizerField = syncVsType.GetField("Synchronizer", BindingFlags.Static | BindingFlags.NonPublic); - Debug.Assert(synchronizerField != null); - var synchronizerValue = synchronizerField.GetValue(synchronizerField); - Debug.Assert(synchronizerValue != null); - - var solutionSynchronizerType = Type.GetType("UnityEditor.VisualStudioIntegration.SolutionSynchronizer,UnityEditor"); - Debug.Assert(solutionSynchronizerType != null); - - object assemblyNameProviderValue = null; - - foreach (var propertyInfo in solutionSynchronizerType.GetRuntimeProperties()) - { - if (propertyInfo.Name == "AssemblyNameProvider") - { - assemblyNameProviderValue = propertyInfo.GetValue(synchronizerValue); - break; - } - } - - Debug.Assert(assemblyNameProviderValue != null); - - var assemblyNameProviderType = Type.GetType("UnityEditor.VisualStudioIntegration.AssemblyNameProvider,UnityEditor"); - Debug.Assert(assemblyNameProviderType != null); - var toggleProjectGenerationMethod = assemblyNameProviderType.GetMethod("ToggleProjectGeneration"); - Debug.Assert(toggleProjectGenerationMethod != null); - toggleProjectGenerationMethod.Invoke(assemblyNameProviderValue, new object[] { value }); - - var syncSolutionMethod = syncVsType.GetMethod("SyncSolution", BindingFlags.Public | BindingFlags.Static); - Debug.Assert(syncSolutionMethod != null); - syncSolutionMethod.Invoke(null, null); - } - } -} diff --git a/XRTK-Core/Assets/XRTK.Editor/EditorSettingsCheck.cs.meta b/XRTK-Core/Assets/XRTK.Editor/EditorSettingsCheck.cs.meta deleted file mode 100644 index a9f716cbb..000000000 --- a/XRTK-Core/Assets/XRTK.Editor/EditorSettingsCheck.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: c761555217940bc46a57af5642244ca2 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/XRTK-Core/Assets/XRTK.Examples b/XRTK-Core/Assets/XRTK.Examples deleted file mode 120000 index caa0ad7fe..000000000 --- a/XRTK-Core/Assets/XRTK.Examples +++ /dev/null @@ -1 +0,0 @@ -../../Submodules/Examples/XRTK.Examples/Assets/XRTK.Examples \ No newline at end of file diff --git a/XRTK-Core/Assets/XRTK.Examples.meta b/XRTK-Core/Assets/XRTK.Examples.meta deleted file mode 100644 index 8d54ab869..000000000 --- a/XRTK-Core/Assets/XRTK.Examples.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 1b66c1cc597e22d459cc844f8a9cf87c -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/XRTK-Core/Assets/XRTK.Generated.meta b/XRTK-Core/Assets/XRTK.Generated.meta deleted file mode 100644 index ea09c5dc3..000000000 --- a/XRTK-Core/Assets/XRTK.Generated.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 828ab50a90071634780f33644b36a2b0 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/XRTK-Core/Assets/XRTK.Generated/BuildInfo.meta b/XRTK-Core/Assets/XRTK.Generated/BuildInfo.meta deleted file mode 100644 index a06356e55..000000000 --- a/XRTK-Core/Assets/XRTK.Generated/BuildInfo.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: de6d96cc08ec3804c927f13c3bd0fedc -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/XRTK-Core/Assets/XRTK.Generated/BuildInfo/AndroidBuildInfo.asset b/XRTK-Core/Assets/XRTK.Generated/BuildInfo/AndroidBuildInfo.asset deleted file mode 100644 index 55b258384..000000000 --- a/XRTK-Core/Assets/XRTK.Generated/BuildInfo/AndroidBuildInfo.asset +++ /dev/null @@ -1,17 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!114 &11400000 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: d4b688e0ce804506ada7fcccd6956e4e, type: 3} - m_Name: AndroidBuildInfo - m_EditorClassIdentifier: - autoIncrement: 0 - bundleIdentifier: com.xrtk.core - install: 0 diff --git a/XRTK-Core/Assets/XRTK.Generated/BuildInfo/AndroidBuildInfo.asset.meta b/XRTK-Core/Assets/XRTK.Generated/BuildInfo/AndroidBuildInfo.asset.meta deleted file mode 100644 index 7b6adb01b..000000000 --- a/XRTK-Core/Assets/XRTK.Generated/BuildInfo/AndroidBuildInfo.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 4af550fb2398f8a4fb8f321456ba2dd2 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: - assetBundleVariant: diff --git a/XRTK-Core/Assets/XRTK.Generated/BuildInfo/BuildInfo.asset b/XRTK-Core/Assets/XRTK.Generated/BuildInfo/BuildInfo.asset deleted file mode 100644 index c29148d17..000000000 --- a/XRTK-Core/Assets/XRTK.Generated/BuildInfo/BuildInfo.asset +++ /dev/null @@ -1,17 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!114 &11400000 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: b96ddb26b149cdc459663752e8cb751e, type: 3} - m_Name: BuildInfo - m_EditorClassIdentifier: - autoIncrement: 0 - bundleIdentifier: com.xrtk.core - install: 0 diff --git a/XRTK-Core/Assets/XRTK.Generated/BuildInfo/BuildInfo.asset.meta b/XRTK-Core/Assets/XRTK.Generated/BuildInfo/BuildInfo.asset.meta deleted file mode 100644 index 08cc36eb6..000000000 --- a/XRTK-Core/Assets/XRTK.Generated/BuildInfo/BuildInfo.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 0af5f341cdbf4fe47957b18162ad4daf -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: - assetBundleVariant: diff --git a/XRTK-Core/Assets/XRTK.Generated/BuildInfo/LuminBuildInfo.asset b/XRTK-Core/Assets/XRTK.Generated/BuildInfo/LuminBuildInfo.asset deleted file mode 100644 index 270bb7c26..000000000 --- a/XRTK-Core/Assets/XRTK.Generated/BuildInfo/LuminBuildInfo.asset +++ /dev/null @@ -1,17 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!114 &11400000 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 381696c5d2b029348b62e696d4daf2b9, type: 3} - m_Name: LuminBuildInfo - m_EditorClassIdentifier: - autoIncrement: 0 - bundleIdentifier: com.xrtk.core - install: 0 diff --git a/XRTK-Core/Assets/XRTK.Generated/BuildInfo/LuminBuildInfo.asset.meta b/XRTK-Core/Assets/XRTK.Generated/BuildInfo/LuminBuildInfo.asset.meta deleted file mode 100644 index 0ac116804..000000000 --- a/XRTK-Core/Assets/XRTK.Generated/BuildInfo/LuminBuildInfo.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 639b4e5e5e9051c42afb93e6a0331750 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: - assetBundleVariant: diff --git a/XRTK-Core/Assets/XRTK.Generated/BuildInfo/OculusBuildInfo.asset b/XRTK-Core/Assets/XRTK.Generated/BuildInfo/OculusBuildInfo.asset deleted file mode 100644 index 758bfb706..000000000 --- a/XRTK-Core/Assets/XRTK.Generated/BuildInfo/OculusBuildInfo.asset +++ /dev/null @@ -1,17 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!114 &11400000 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 2712580c1397b694fb77de6afeb26e18, type: 3} - m_Name: OculusBuildInfo - m_EditorClassIdentifier: - autoIncrement: 0 - bundleIdentifier: com.xrtk.core - install: 0 diff --git a/XRTK-Core/Assets/XRTK.Generated/BuildInfo/OculusBuildInfo.asset.meta b/XRTK-Core/Assets/XRTK.Generated/BuildInfo/OculusBuildInfo.asset.meta deleted file mode 100644 index b8a8e227c..000000000 --- a/XRTK-Core/Assets/XRTK.Generated/BuildInfo/OculusBuildInfo.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 1c82f25aa85d5aa4b96dc7bc9a8b7cc4 -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: - assetBundleVariant: diff --git a/XRTK-Core/Assets/XRTK.Generated/BuildInfo/UwpBuildInfo.asset b/XRTK-Core/Assets/XRTK.Generated/BuildInfo/UwpBuildInfo.asset deleted file mode 100644 index 74f795bbe..000000000 --- a/XRTK-Core/Assets/XRTK.Generated/BuildInfo/UwpBuildInfo.asset +++ /dev/null @@ -1,22 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!114 &11400000 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 704a4b1a0d41bd74dbcbb0dd5193dd45, type: 3} - m_Name: UwpBuildInfo - m_EditorClassIdentifier: - autoIncrement: 0 - bundleIdentifier: com.xrtk.core - install: 0 - solutionName: com.xrtk.core\com.xrtk.core.sln - buildAppx: 1 - rebuildAppx: 0 - platformArchitecture: 3 - verbosity: 0 diff --git a/XRTK-Core/Assets/XRTK.Generated/BuildInfo/UwpBuildInfo.asset.meta b/XRTK-Core/Assets/XRTK.Generated/BuildInfo/UwpBuildInfo.asset.meta deleted file mode 100644 index 775d7ea94..000000000 --- a/XRTK-Core/Assets/XRTK.Generated/BuildInfo/UwpBuildInfo.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 0967a8219c6ce354597fa9caab06757d -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: - assetBundleVariant: diff --git a/XRTK-Core/Assets/XRTK.Generated/Lumin.meta b/XRTK-Core/Assets/XRTK.Generated/Lumin.meta deleted file mode 100644 index 32e4be3e4..000000000 --- a/XRTK-Core/Assets/XRTK.Generated/Lumin.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 3ac1a6fb034a1314faa0698b5545a93e -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/XRTK-Core/Assets/XRTK.Generated/Lumin/Profiles b/XRTK-Core/Assets/XRTK.Generated/Lumin/Profiles deleted file mode 120000 index e8b1d5b23..000000000 --- a/XRTK-Core/Assets/XRTK.Generated/Lumin/Profiles +++ /dev/null @@ -1 +0,0 @@ -../../../../Submodules/Lumin/XRTK.Lumin/Packages/com.xrtk.lumin/Profiles~ \ No newline at end of file diff --git a/XRTK-Core/Assets/XRTK.Generated/Lumin/Profiles.meta b/XRTK-Core/Assets/XRTK.Generated/Lumin/Profiles.meta deleted file mode 100644 index 1d322ae07..000000000 --- a/XRTK-Core/Assets/XRTK.Generated/Lumin/Profiles.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 1c2e591cf71dd0b40bb6327088975737 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/XRTK-Core/Assets/XRTK.Generated/Oculus.meta b/XRTK-Core/Assets/XRTK.Generated/Oculus.meta deleted file mode 100644 index 9adc143a8..000000000 --- a/XRTK-Core/Assets/XRTK.Generated/Oculus.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 73ba5bfb59ce69c4db610c504a10ab08 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/XRTK-Core/Assets/XRTK.Generated/Oculus/Profiles b/XRTK-Core/Assets/XRTK.Generated/Oculus/Profiles deleted file mode 120000 index 430d5c36c..000000000 --- a/XRTK-Core/Assets/XRTK.Generated/Oculus/Profiles +++ /dev/null @@ -1 +0,0 @@ -../../../../Submodules/Oculus/XRTK.Oculus/Packages/com.xrtk.oculus/Profiles~ \ No newline at end of file diff --git a/XRTK-Core/Assets/XRTK.Generated/Oculus/Profiles.meta b/XRTK-Core/Assets/XRTK.Generated/Oculus/Profiles.meta deleted file mode 100644 index 4ccc326e1..000000000 --- a/XRTK-Core/Assets/XRTK.Generated/Oculus/Profiles.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 9559e031c4b68bc49914128d51c62d36 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/XRTK-Core/Assets/XRTK.Generated/SDK.meta b/XRTK-Core/Assets/XRTK.Generated/SDK.meta deleted file mode 100644 index 9a9dbab47..000000000 --- a/XRTK-Core/Assets/XRTK.Generated/SDK.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: b38393cce99e65144a83b16dad306c97 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/XRTK-Core/Assets/XRTK.Generated/SDK/Prefabs b/XRTK-Core/Assets/XRTK.Generated/SDK/Prefabs deleted file mode 120000 index 1a6306144..000000000 --- a/XRTK-Core/Assets/XRTK.Generated/SDK/Prefabs +++ /dev/null @@ -1 +0,0 @@ -../../../../Submodules/SDK/XRTK.SDK/Packages/com.xrtk.sdk/Prefabs~ \ No newline at end of file diff --git a/XRTK-Core/Assets/XRTK.Generated/SDK/Prefabs.meta b/XRTK-Core/Assets/XRTK.Generated/SDK/Prefabs.meta deleted file mode 100644 index 4e208bf42..000000000 --- a/XRTK-Core/Assets/XRTK.Generated/SDK/Prefabs.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 3014914e6a851f64cab2f58b7354a087 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/XRTK-Core/Assets/XRTK.Generated/SDK/Profiles b/XRTK-Core/Assets/XRTK.Generated/SDK/Profiles deleted file mode 120000 index ddd5d6611..000000000 --- a/XRTK-Core/Assets/XRTK.Generated/SDK/Profiles +++ /dev/null @@ -1 +0,0 @@ -../../../../Submodules/SDK/XRTK.SDK/Packages/com.xrtk.sdk/Profiles~ \ No newline at end of file diff --git a/XRTK-Core/Assets/XRTK.Generated/SDK/Profiles.meta b/XRTK-Core/Assets/XRTK.Generated/SDK/Profiles.meta deleted file mode 100644 index 1802ccaac..000000000 --- a/XRTK-Core/Assets/XRTK.Generated/SDK/Profiles.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 38d3a1bf99e6e9c46a5fff84b8ecc9ee -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/XRTK-Core/Assets/XRTK.Generated/SymbolicLinkSettings.asset b/XRTK-Core/Assets/XRTK.Generated/SymbolicLinkSettings.asset deleted file mode 100644 index aafd727a1..000000000 --- a/XRTK-Core/Assets/XRTK.Generated/SymbolicLinkSettings.asset +++ /dev/null @@ -1,36 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!114 &11400000 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: ff8a5d57a9af497db320551240c892c2, type: 3} - m_Name: SymbolicLinkSettings - m_EditorClassIdentifier: - symbolicLinks: - - sourceRelativePath: /Submodules/SDK/XRTK.SDK/Packages/com.xrtk.sdk/Profiles~ - targetRelativePath: /XRTK-Core/Assets/XRTK.Generated/SDK/Profiles - isActive: 1 - - sourceRelativePath: /Submodules/Lumin/XRTK.Lumin/Packages/com.xrtk.lumin/Profiles~ - targetRelativePath: /XRTK-Core/Assets/XRTK.Generated/Lumin/Profiles - isActive: 1 - - sourceRelativePath: /Submodules/Oculus/XRTK.Oculus/Packages/com.xrtk.oculus/Profiles~ - targetRelativePath: /XRTK-Core/Assets/XRTK.Generated/Oculus/Profiles - isActive: 1 - - sourceRelativePath: /Submodules/WindowsMixedReality/XRTK.WindowsMixedReality/Packages/com.xrtk.wmr/Profiles~ - targetRelativePath: /XRTK-Core/Assets/XRTK.Generated/WindowsMixedReality/Profiles - isActive: 1 - - sourceRelativePath: /Submodules/SDK/XRTK.SDK/Packages/com.xrtk.sdk/Prefabs~ - targetRelativePath: /XRTK-Core/Assets/XRTK.Generated/SDK/Prefabs - isActive: 1 - - sourceRelativePath: /Submodules/Examples/XRTK.Examples/Assets/XRTK.Examples - targetRelativePath: /XRTK-Core/Assets/XRTK.Examples - isActive: 1 - - sourceRelativePath: /Submodules/Ultraleap/XRTK.Ultraleap/Packages/com.xrtk.ultraleap/Profiles~ - targetRelativePath: /XRTK-Core/Assets/XRTK.Generated/Ultraleap/Profiles - isActive: 1 diff --git a/XRTK-Core/Assets/XRTK.Generated/SymbolicLinkSettings.asset.meta b/XRTK-Core/Assets/XRTK.Generated/SymbolicLinkSettings.asset.meta deleted file mode 100644 index 11f56a254..000000000 --- a/XRTK-Core/Assets/XRTK.Generated/SymbolicLinkSettings.asset.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 0c4859b9bbbc931419315718a80e2f1b -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 11400000 - userData: - assetBundleName: - assetBundleVariant: diff --git a/XRTK-Core/Assets/XRTK.Generated/Ultraleap.meta b/XRTK-Core/Assets/XRTK.Generated/Ultraleap.meta deleted file mode 100644 index c1b3e9eda..000000000 --- a/XRTK-Core/Assets/XRTK.Generated/Ultraleap.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: eaf3078a68c648243822040be684ecdd -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/XRTK-Core/Assets/XRTK.Generated/Ultraleap/Profiles b/XRTK-Core/Assets/XRTK.Generated/Ultraleap/Profiles deleted file mode 120000 index 883c9b01b..000000000 --- a/XRTK-Core/Assets/XRTK.Generated/Ultraleap/Profiles +++ /dev/null @@ -1 +0,0 @@ -../../../../Submodules/Ultraleap/XRTK.Ultraleap/Packages/com.xrtk.ultraleap/Profiles~ \ No newline at end of file diff --git a/XRTK-Core/Assets/XRTK.Generated/Ultraleap/Profiles.meta b/XRTK-Core/Assets/XRTK.Generated/Ultraleap/Profiles.meta deleted file mode 100644 index db0943791..000000000 --- a/XRTK-Core/Assets/XRTK.Generated/Ultraleap/Profiles.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: b8cc049b846502b4ea39f2ef0b570cac -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/XRTK-Core/Assets/XRTK.Generated/WindowsMixedReality.meta b/XRTK-Core/Assets/XRTK.Generated/WindowsMixedReality.meta deleted file mode 100644 index 5827d5fc8..000000000 --- a/XRTK-Core/Assets/XRTK.Generated/WindowsMixedReality.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 5c966c48ad294b84ba04de9e46ae6213 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/XRTK-Core/Assets/XRTK.Generated/WindowsMixedReality/Profiles b/XRTK-Core/Assets/XRTK.Generated/WindowsMixedReality/Profiles deleted file mode 120000 index ec5dedae3..000000000 --- a/XRTK-Core/Assets/XRTK.Generated/WindowsMixedReality/Profiles +++ /dev/null @@ -1 +0,0 @@ -../../../../Submodules/WindowsMixedReality/XRTK.WindowsMixedReality/Packages/com.xrtk.wmr/Profiles~ \ No newline at end of file diff --git a/XRTK-Core/Assets/XRTK.Generated/WindowsMixedReality/Profiles.meta b/XRTK-Core/Assets/XRTK.Generated/WindowsMixedReality/Profiles.meta deleted file mode 100644 index 2743bc011..000000000 --- a/XRTK-Core/Assets/XRTK.Generated/WindowsMixedReality/Profiles.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 5cfba1e03ef51944281a9ef53b866e01 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/XRTK-Core/Assets/csc.rsp b/XRTK-Core/Assets/csc.rsp deleted file mode 100644 index 437c7c345..000000000 --- a/XRTK-Core/Assets/csc.rsp +++ /dev/null @@ -1,2 +0,0 @@ - -warn:4 - -warnaserror+ \ No newline at end of file diff --git a/XRTK-Core/Assets/csc.rsp.meta b/XRTK-Core/Assets/csc.rsp.meta deleted file mode 100644 index 4b921f9ab..000000000 --- a/XRTK-Core/Assets/csc.rsp.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: 04fce22c5b916a94888ca48db632d99c -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/XRTK-Core/Packages/com.xrtk.core/LICENSE.md b/XRTK-Core/Packages/com.xrtk.core/LICENSE.md deleted file mode 100644 index d2e2c9b03..000000000 --- a/XRTK-Core/Packages/com.xrtk.core/LICENSE.md +++ /dev/null @@ -1,22 +0,0 @@ -MIT License - -Copyright (c) 2019 Microsoft Corporation -Copyright (c) 2022 XRTK - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/XRTK-Core/Packages/com.xrtk.core/README.md b/XRTK-Core/Packages/com.xrtk.core/README.md deleted file mode 100644 index a9f29b623..000000000 --- a/XRTK-Core/Packages/com.xrtk.core/README.md +++ /dev/null @@ -1,79 +0,0 @@ -# Welcome to the Mixed Reality Toolkit - -![The Mixed Reality Toolkit](https://raw.githubusercontent.com/XRTK/XRTK-Core/development/images/Branding/XRTK_Logo_1200x250.png) - -The Mixed Reality Toolkit's primary focus is to make it extremely easy to get started creating Mixed Reality applications and to accelerate deployment to multiple platforms from the same Unity project. - -[![Discord](https://img.shields.io/discord/597064584980987924.svg?label=&logo=discord&logoColor=ffffff&color=7389D8&labelColor=6A7EC2)](https://discord.gg/7DR6QJE) - -## Build Status - -| Modules | Build Status | OpenUpm | -|---|---|---| -|com.xrtk.core|[![main](https://github.com/XRTK/com.xrtk.core/actions/workflows/build.yml/badge.svg?branch=main)](https://github.com/XRTK/com.xrtk.core/actions/workflows/build.yml)|[![openupm](https://img.shields.io/npm/v/com.xrtk.core?label=openupm®istry_uri=https://package.openupm.com)](https://openupm.com/packages/com.xrtk.core/)| -|[com.xrtk.sdk](https://github.com/XRTK/com.xrtk.sdk)|[![main](https://github.com/XRTK/com.xrtk.sdk/actions/workflows/build.yml/badge.svg?branch=main)](https://github.com/XRTK/com.xrtk.sdk/actions/workflows/build.yml)|[![openupm](https://img.shields.io/npm/v/com.xrtk.sdk?label=openupm®istry_uri=https://package.openupm.com)](https://openupm.com/packages/com.xrtk.sdk/)| -|[com.xrtk.lumin](https://github.com/XRTK/com.xrtk.lumin)|[![main](https://github.com/XRTK/com.xrtk.lumin/actions/workflows/build.yml/badge.svg?branch=main)](https://github.com/XRTK/com.xrtk.lumin/actions/workflows/build.yml)|[![openupm](https://img.shields.io/npm/v/com.xrtk.lumin?label=openupm®istry_uri=https://package.openupm.com)](https://openupm.com/packages/com.xrtk.lumin/)| -|[com.xrtk.oculus](https://github.com/XRTK/com.xrtk.oculus)|[![main](https://github.com/XRTK/com.xrtk.oculus/actions/workflows/build.yml/badge.svg?branch=main)](https://github.com/XRTK/com.xrtk.oculus/actions/workflows/build.yml)|[![openupm](https://img.shields.io/npm/v/com.xrtk.oculus?label=openupm®istry_uri=https://package.openupm.com)](https://openupm.com/packages/com.xrtk.oculus/)| -|[com.xrtk.ultraleap](https://github.com/XRTK/com.xrtk.ultraleap)|[![main](https://github.com/XRTK/com.xrtk.ultraleap/actions/workflows/build.yml/badge.svg?branch=main)](https://github.com/XRTK/com.xrtk.ultraleap/actions/workflows/build.yml)|[![openupm](https://img.shields.io/npm/v/com.xrtk.ultraleap?label=openupm®istry_uri=https://package.openupm.com)](https://openupm.com/packages/com.xrtk.ultraleap/)| -|[com.xrtk.wmr](https://github.com/XRTK/com.xrtk.wmr)|[![main](https://github.com/XRTK/com.xrtk.wmr/actions/workflows/build.yml/badge.svg?branch=main)](https://github.com/XRTK/com.xrtk.wmr/actions/workflows/build.yml)|[![openupm](https://img.shields.io/npm/v/com.xrtk.wmr?label=openupm®istry_uri=https://package.openupm.com)](https://openupm.com/packages/com.xrtk.wmr/)| - -## [Getting Started](articles/00-GettingStarted.md) - -- [Installing](articles/00-GettingStarted.md#adding-the-mixed-reality-toolkit-to-your-project) -- [Configuring](articles/00-GettingStarted.md#configure-your-base-scene) -- [Building](articles/00-GettingStarted.md#build-and-play) -- [Contributing](CONTRIBUTING.md) - -## Overview - -Developing Mixed Reality Applications in Unity is hard, and we know there are many [developers](./CONTRIBUTORS.md) who are frustrated with the current state of both game and general application development within the Mixed Reality ecosystem: a quickly developing market that encompasses the whole spectrum from Mobile Augmented Reality to high-end Virtual Reality. - -To improve this situation, the Mixed Reality Toolkit's vision is simple, to provide a complete cross-platform solution for AR/XR/VR development that supports three different developer skill levels: - -- **Beginner** No Coding Required: Perfect for artists, Hackathons, and Quick Prototyping. - -- **Intermediate** Customizable: The framework is flexible enough so coders can customize what they need to cover edge cases with ease. - -- **Advanced** Extensible: The framework is easy to extend and modify to add additional custom services to meet specific criteria and needs. - -Our philosophy is to enable developers to focus on building content and structure and not have to worry about the underlying complexities for supporting multiple platforms in order to build it everywhere and on each device as required. In short, built it once and ship it everywhere with as little effort as possible. - -We’d like to invite all the major hardware vendors to help guide their platform-specific implementations, from Microsoft’s Windows Mixed Reality and Magic Leap’s Lumin OS to Google’s ARCore and Apple’s ARKit. Including any upcoming Mixed Reality capable devices that would like to be included for adoption. - -## Chat with the community - -We recently moved our main conversations regarding Mixed Reality Toolkit over to Discord, which allows us to do a lot more (and the chat/streaming there is awesome), but we keep a Mixed Reality Toolkit presence on Slack too, in order to retain links to our friends on there. - -[![Discord](https://cdn0.iconfinder.com/data/icons/free-social-media-set/24/discord-128.png)](https://discord.gg/rJMSc8Z) - -### [Come join us on Discord!](https://discord.gg/rJMSc8Z) - -## Sponsors - -The XRTK is an MIT-licensed open source project with its ongoing development made possible entirely by the support of these awesome sponsors and backers. - -|Sponsors|| -|---|---| -|![[VIM](https://www.vimaec.com/)](https://raw.githubusercontent.com/XRTK/XRTK-Core/development/images/Sponsors/vim_logo.jpg)|VIM provides a universal format for fast BIM access for large and complex projects in the AEC industry.| - -We use the donations for continuous active development by core team members, web hosting, and licensing costs for build tools and infrastructure. - -## Supported Platforms - -A major component of the Mixed Reality Toolkit is the Platform definitions that was employed to both accurately determine what platforms have been added to the scope of the project and also to determine when a platform is active/running. - -## Current Platforms - -- [Magic Leap (Lumin)](articles/platforms/magicleap.md) -- [Oculus](articles/platforms/oculus.md) -- OpenVR - Default runtime platform for Windows Standalone, no special consideration. -- [Ultraleap](articles/platforms/ultraleap.md) -- [Windows Mixed Reality (UWP)](articles/platforms/windowsmixedreality.md) - -## In development - -- [SteamVR](articles/platforms/steamvr.md) -- [etee](articles/platforms/etee.md) -- [WebXR](articles/platforms/webxr.md) - -> Want to add a platform? Check out our new [Template Generator](articles/03-template-generator.md#platform-template-generation)! diff --git a/XRTK-Core/Packages/manifest.json b/XRTK-Core/Packages/manifest.json deleted file mode 100644 index 3732ef9eb..000000000 --- a/XRTK-Core/Packages/manifest.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "scopedRegistries": [ - { - "name": "XRTK", - "url": "http://upm.xrtk.io:4873", - "scopes": [ - "com.xrtk" - ] - }, - { - "name": "OpenUPM", - "url": "https://package.openupm.com", - "scopes": [ - "com.needle.compilation-visualizer" - ] - } - ], - "dependencies": { - "com.needle.compilation-visualizer": "1.8.0", - "com.unity.2d.sprite": "1.0.0", - "com.unity.2d.tilemap": "1.0.0", - "com.unity.ide.rider": "3.0.14", - "com.unity.ide.visualstudio": "2.0.15", - "com.unity.ide.vscode": "1.2.5", - "com.unity.mobile.android-logcat": "1.2.3", - "com.unity.test-framework": "1.1.31", - "com.xrtk.gltf": "file:../../Submodules/glTF/XRTK.glTF/Packages/com.xrtk.gltf", - "com.xrtk.oculus": "file:../../Submodules/Oculus/XRTK.Oculus/Packages/com.xrtk.oculus", - "com.xrtk.sdk": "file:../../Submodules/SDK/XRTK.SDK/Packages/com.xrtk.sdk", - "com.xrtk.spatial-persistence": "file:../../Submodules/SpatialPersistence/XRTK.SpatialPersistence/Packages/com.xrtk.spatial-persistence", - "com.xrtk.ultraleap": "file:../../Submodules/Ultraleap/XRTK.Ultraleap/Packages/com.xrtk.ultraleap", - "com.unity.modules.ai": "1.0.0", - "com.unity.modules.androidjni": "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/XRTK-Core/ProjectSettings/AndroidLogcatSettings.asset b/XRTK-Core/ProjectSettings/AndroidLogcatSettings.asset deleted file mode 100644 index a162787df..000000000 --- a/XRTK-Core/ProjectSettings/AndroidLogcatSettings.asset +++ /dev/null @@ -1,53 +0,0 @@ -{ - "m_SelectedDeviceId": "", - "m_SelectedPackage": { - "deviceId": "", - "name": "", - "processId": 0, - "exited": false - }, - "m_SelectedPriority": 0, - "m_KnownPackagesForSerialization": [], - "m_Tags": { - "m_Entries": [ - { - "m_Name": "Filter by all listed tags", - "m_Selected": false - }, - { - "m_Name": "No Filter", - "m_Selected": true - }, - { - "m_Name": "", - "m_Selected": false - }, - { - "m_Name": "Tag Control...", - "m_Selected": false - }, - { - "m_Name": "", - "m_Selected": false - }, - { - "m_Name": "Unity", - "m_Selected": false - }, - { - "m_Name": "CRASH", - "m_Selected": false - } - ] - }, - "m_MemoryViewerState": { - "MemoryWindowHeight": 0.0, - "MemoryWindowWidth": 0.0, - "MemoryTypeEnabled": [], - "MemoryGroup": 1, - "Behavior": 1 - }, - "m_Filter": "", - "m_FilterIsRegularExpression": false, - "m_SymbolPaths": [] -} \ No newline at end of file diff --git a/XRTK-Core/ProjectSettings/AudioManager.asset b/XRTK-Core/ProjectSettings/AudioManager.asset deleted file mode 100644 index 4f31e7448..000000000 --- a/XRTK-Core/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/XRTK-Core/ProjectSettings/ClusterInputManager.asset b/XRTK-Core/ProjectSettings/ClusterInputManager.asset deleted file mode 100644 index e7886b266..000000000 --- a/XRTK-Core/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/XRTK-Core/ProjectSettings/DynamicsManager.asset b/XRTK-Core/ProjectSettings/DynamicsManager.asset deleted file mode 100644 index b3c263d37..000000000 --- a/XRTK-Core/ProjectSettings/DynamicsManager.asset +++ /dev/null @@ -1,30 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!55 &1 -PhysicsManager: - m_ObjectHideFlags: 0 - serializedVersion: 8 - 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: 0 - m_ReuseCollisionCallbacks: 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/XRTK-Core/ProjectSettings/EditorBuildSettings.asset b/XRTK-Core/ProjectSettings/EditorBuildSettings.asset deleted file mode 100644 index 545339d1d..000000000 --- a/XRTK-Core/ProjectSettings/EditorBuildSettings.asset +++ /dev/null @@ -1,21 +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/XRTK.Examples/BaseScene.unity - guid: 092b39bb8f12afa498a539bd456a71d6 - m_configObjects: - Unity.XR.Oculus.Settings: {fileID: 11400000, guid: 06ef152b9c9ed1d40b182b1d13e20acc, - type: 2} - Unity.XR.WindowsMR.Settings: {fileID: 11400000, guid: c1ab88c6e8137d949b3ba9d7c77ff5eb, - type: 2} - com.unity.xr.magicleap.magic_leap_settings: {fileID: 11400000, guid: bf4ca4b201eff6f47bfcf89c2053db39, - type: 2} - com.unity.xr.management.loader_settings: {fileID: 11400000, guid: 5af59a24e6269e640b3d590f7858d172, - type: 2} - xr.sdk.mock-hmd.settings: {fileID: 11400000, guid: f99b452b5394cbd47888a25c1ab5cc02, - type: 2} diff --git a/XRTK-Core/ProjectSettings/EditorSettings.asset b/XRTK-Core/ProjectSettings/EditorSettings.asset deleted file mode 100644 index 5162e19ff..000000000 --- a/XRTK-Core/ProjectSettings/EditorSettings.asset +++ /dev/null @@ -1,35 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!159 &1 -EditorSettings: - m_ObjectHideFlags: 0 - serializedVersion: 9 - m_ExternalVersionControlSupport: Visible Meta Files - m_SerializationMode: 2 - m_LineEndingsForNewScripts: 2 - m_DefaultBehaviorMode: 0 - m_PrefabRegularEnvironment: {fileID: 0} - m_PrefabUIEnvironment: {fileID: 0} - m_SpritePackerMode: 0 - m_SpritePackerPaddingPower: 1 - m_EtcTextureCompressorBehavior: 1 - m_EtcTextureFastCompressor: 1 - m_EtcTextureNormalCompressor: 2 - m_EtcTextureBestCompressor: 4 - m_ProjectGenerationIncludedExtensions: txt;xml;fnt;cd;asmref - m_ProjectGenerationRootNamespace: - m_CollabEditorSettings: - inProgressEnabled: 1 - m_EnableTextureStreamingInEditMode: 1 - m_EnableTextureStreamingInPlayMode: 1 - m_AsyncShaderCompilation: 1 - m_EnterPlayModeOptionsEnabled: 0 - m_EnterPlayModeOptions: 3 - m_ShowLightmapResolutionOverlay: 1 - m_UseLegacyProbeSampleCount: 1 - m_AssetPipelineMode: 1 - m_CacheServerMode: 0 - m_CacheServerEndpoint: - m_CacheServerNamespacePrefix: default - m_CacheServerEnableDownload: 1 - m_CacheServerEnableUpload: 1 diff --git a/XRTK-Core/ProjectSettings/GraphicsSettings.asset b/XRTK-Core/ProjectSettings/GraphicsSettings.asset deleted file mode 100644 index 166d4fe32..000000000 --- a/XRTK-Core/ProjectSettings/GraphicsSettings.asset +++ /dev/null @@ -1,67 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!30 &1 -GraphicsSettings: - m_ObjectHideFlags: 0 - serializedVersion: 13 - 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: 7, guid: 0000000000000000f000000000000000, type: 0} - - {fileID: 15104, guid: 0000000000000000f000000000000000, type: 0} - - {fileID: 15105, guid: 0000000000000000f000000000000000, type: 0} - - {fileID: 15106, guid: 0000000000000000f000000000000000, type: 0} - - {fileID: 10753, guid: 0000000000000000f000000000000000, type: 0} - - {fileID: 10770, guid: 0000000000000000f000000000000000, type: 0} - - {fileID: 10783, guid: 0000000000000000f000000000000000, type: 0} - - {fileID: 16000, guid: 0000000000000000f000000000000000, type: 0} - - {fileID: 17000, guid: 0000000000000000f000000000000000, type: 0} - - {fileID: 16001, 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 - m_LogWhenShaderIsCompiled: 0 - m_AllowEnlightenSupportForUpgradedProject: 1 diff --git a/XRTK-Core/ProjectSettings/InputManager.asset b/XRTK-Core/ProjectSettings/InputManager.asset deleted file mode 100644 index 194159f72..000000000 --- a/XRTK-Core/ProjectSettings/InputManager.asset +++ /dev/null @@ -1,727 +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 - - serializedVersion: 3 - m_Name: AXIS_1 - 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: AXIS_2 - descriptiveName: - descriptiveNegativeName: - negativeButton: - positiveButton: - altNegativeButton: - altPositiveButton: - gravity: 0 - dead: 0.19 - sensitivity: 1 - snap: 0 - invert: 0 - type: 2 - axis: 1 - joyNum: 0 - - serializedVersion: 3 - m_Name: AXIS_3 - descriptiveName: - descriptiveNegativeName: - negativeButton: - positiveButton: - altNegativeButton: - altPositiveButton: - gravity: 0 - dead: 0.19 - sensitivity: 1 - snap: 0 - invert: 0 - type: 2 - axis: 2 - joyNum: 0 - - serializedVersion: 3 - m_Name: AXIS_4 - descriptiveName: - descriptiveNegativeName: - negativeButton: - positiveButton: - altNegativeButton: - altPositiveButton: - gravity: 0 - dead: 0.19 - sensitivity: 1 - snap: 0 - invert: 0 - type: 2 - axis: 3 - joyNum: 0 - - serializedVersion: 3 - m_Name: AXIS_5 - descriptiveName: - descriptiveNegativeName: - negativeButton: - positiveButton: - altNegativeButton: - altPositiveButton: - gravity: 0 - dead: 0.19 - sensitivity: 1 - snap: 0 - invert: 0 - type: 2 - axis: 4 - joyNum: 0 - - serializedVersion: 3 - m_Name: AXIS_6 - descriptiveName: - descriptiveNegativeName: - negativeButton: - positiveButton: - altNegativeButton: - altPositiveButton: - gravity: 0 - dead: 0.19 - sensitivity: 1 - snap: 0 - invert: 0 - type: 2 - axis: 5 - joyNum: 0 - - serializedVersion: 3 - m_Name: AXIS_7 - descriptiveName: - descriptiveNegativeName: - negativeButton: - positiveButton: - altNegativeButton: - altPositiveButton: - gravity: 0 - dead: 0.19 - sensitivity: 1 - snap: 0 - invert: 0 - type: 2 - axis: 6 - joyNum: 0 - - serializedVersion: 3 - m_Name: AXIS_8 - descriptiveName: - descriptiveNegativeName: - negativeButton: - positiveButton: - altNegativeButton: - altPositiveButton: - gravity: 0 - dead: 0.19 - sensitivity: 1 - snap: 0 - invert: 0 - type: 2 - axis: 7 - joyNum: 0 - - serializedVersion: 3 - m_Name: AXIS_9 - descriptiveName: - descriptiveNegativeName: - negativeButton: - positiveButton: - altNegativeButton: - altPositiveButton: - gravity: 0 - dead: 0.19 - sensitivity: 1 - snap: 0 - invert: 0 - type: 2 - axis: 8 - joyNum: 0 - - serializedVersion: 3 - m_Name: AXIS_10 - descriptiveName: - descriptiveNegativeName: - negativeButton: - positiveButton: - altNegativeButton: - altPositiveButton: - gravity: 0 - dead: 0.19 - sensitivity: 1 - snap: 0 - invert: 0 - type: 2 - axis: 9 - joyNum: 0 - - serializedVersion: 3 - m_Name: AXIS_11 - descriptiveName: - descriptiveNegativeName: - negativeButton: - positiveButton: - altNegativeButton: - altPositiveButton: - gravity: 0 - dead: 0.19 - sensitivity: 1 - snap: 0 - invert: 0 - type: 2 - axis: 10 - joyNum: 0 - - serializedVersion: 3 - m_Name: AXIS_12 - descriptiveName: - descriptiveNegativeName: - negativeButton: - positiveButton: - altNegativeButton: - altPositiveButton: - gravity: 0 - dead: 0.19 - sensitivity: 1 - snap: 0 - invert: 0 - type: 2 - axis: 11 - joyNum: 0 - - serializedVersion: 3 - m_Name: AXIS_13 - descriptiveName: - descriptiveNegativeName: - negativeButton: - positiveButton: - altNegativeButton: - altPositiveButton: - gravity: 0 - dead: 0.19 - sensitivity: 1 - snap: 0 - invert: 0 - type: 2 - axis: 12 - joyNum: 0 - - serializedVersion: 3 - m_Name: AXIS_14 - descriptiveName: - descriptiveNegativeName: - negativeButton: - positiveButton: - altNegativeButton: - altPositiveButton: - gravity: 0 - dead: 0.19 - sensitivity: 1 - snap: 0 - invert: 0 - type: 2 - axis: 13 - joyNum: 0 - - serializedVersion: 3 - m_Name: AXIS_15 - descriptiveName: - descriptiveNegativeName: - negativeButton: - positiveButton: - altNegativeButton: - altPositiveButton: - gravity: 0 - dead: 0.19 - sensitivity: 1 - snap: 0 - invert: 0 - type: 2 - axis: 14 - joyNum: 0 - - serializedVersion: 3 - m_Name: AXIS_16 - descriptiveName: - descriptiveNegativeName: - negativeButton: - positiveButton: - altNegativeButton: - altPositiveButton: - gravity: 0 - dead: 0.19 - sensitivity: 1 - snap: 0 - invert: 0 - type: 2 - axis: 15 - joyNum: 0 - - serializedVersion: 3 - m_Name: AXIS_17 - descriptiveName: - descriptiveNegativeName: - negativeButton: - positiveButton: - altNegativeButton: - altPositiveButton: - gravity: 0 - dead: 0.19 - sensitivity: 1 - snap: 0 - invert: 0 - type: 2 - axis: 16 - joyNum: 0 - - serializedVersion: 3 - m_Name: AXIS_18 - descriptiveName: - descriptiveNegativeName: - negativeButton: - positiveButton: - altNegativeButton: - altPositiveButton: - gravity: 0 - dead: 0.19 - sensitivity: 1 - snap: 0 - invert: 0 - type: 2 - axis: 17 - joyNum: 0 - - serializedVersion: 3 - m_Name: AXIS_19 - descriptiveName: - descriptiveNegativeName: - negativeButton: - positiveButton: - altNegativeButton: - altPositiveButton: - gravity: 0 - dead: 0.19 - sensitivity: 1 - snap: 0 - invert: 0 - type: 2 - axis: 18 - joyNum: 0 - - serializedVersion: 3 - m_Name: AXIS_20 - descriptiveName: - descriptiveNegativeName: - negativeButton: - positiveButton: - altNegativeButton: - altPositiveButton: - gravity: 0 - dead: 0.19 - sensitivity: 1 - snap: 0 - invert: 0 - type: 2 - axis: 19 - joyNum: 0 - - serializedVersion: 3 - m_Name: AXIS_21 - descriptiveName: - descriptiveNegativeName: - negativeButton: - positiveButton: - altNegativeButton: - altPositiveButton: - gravity: 0 - dead: 0.19 - sensitivity: 1 - snap: 0 - invert: 0 - type: 2 - axis: 20 - joyNum: 0 - - serializedVersion: 3 - m_Name: AXIS_22 - descriptiveName: - descriptiveNegativeName: - negativeButton: - positiveButton: - altNegativeButton: - altPositiveButton: - gravity: 0 - dead: 0.19 - sensitivity: 1 - snap: 0 - invert: 0 - type: 2 - axis: 21 - joyNum: 0 - - serializedVersion: 3 - m_Name: AXIS_23 - descriptiveName: - descriptiveNegativeName: - negativeButton: - positiveButton: - altNegativeButton: - altPositiveButton: - gravity: 0 - dead: 0.19 - sensitivity: 1 - snap: 0 - invert: 0 - type: 2 - axis: 22 - joyNum: 0 - - serializedVersion: 3 - m_Name: AXIS_24 - descriptiveName: - descriptiveNegativeName: - negativeButton: - positiveButton: - altNegativeButton: - altPositiveButton: - gravity: 0 - dead: 0.19 - sensitivity: 1 - snap: 0 - invert: 0 - type: 2 - axis: 23 - joyNum: 0 - - serializedVersion: 3 - m_Name: AXIS_25 - descriptiveName: - descriptiveNegativeName: - negativeButton: - positiveButton: - altNegativeButton: - altPositiveButton: - gravity: 0 - dead: 0.19 - sensitivity: 1 - snap: 0 - invert: 0 - type: 2 - axis: 24 - joyNum: 0 - - serializedVersion: 3 - m_Name: AXIS_26 - descriptiveName: - descriptiveNegativeName: - negativeButton: - positiveButton: - altNegativeButton: - altPositiveButton: - gravity: 0 - dead: 0.19 - sensitivity: 1 - snap: 0 - invert: 0 - type: 2 - axis: 25 - joyNum: 0 - - serializedVersion: 3 - m_Name: AXIS_27 - descriptiveName: - descriptiveNegativeName: - negativeButton: - positiveButton: - altNegativeButton: - altPositiveButton: - gravity: 0 - dead: 0.19 - sensitivity: 1 - snap: 0 - invert: 0 - type: 2 - axis: 26 - joyNum: 0 diff --git a/XRTK-Core/ProjectSettings/MemorySettings.asset b/XRTK-Core/ProjectSettings/MemorySettings.asset deleted file mode 100644 index 5b5faceca..000000000 --- a/XRTK-Core/ProjectSettings/MemorySettings.asset +++ /dev/null @@ -1,35 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!387306366 &1 -MemorySettings: - m_ObjectHideFlags: 0 - m_EditorMemorySettings: - m_MainAllocatorBlockSize: -1 - m_ThreadAllocatorBlockSize: -1 - m_MainGfxBlockSize: -1 - m_ThreadGfxBlockSize: -1 - m_CacheBlockSize: -1 - m_TypetreeBlockSize: -1 - m_ProfilerBlockSize: -1 - m_ProfilerEditorBlockSize: -1 - m_BucketAllocatorGranularity: -1 - m_BucketAllocatorBucketsCount: -1 - m_BucketAllocatorBlockSize: -1 - m_BucketAllocatorBlockCount: -1 - m_ProfilerBucketAllocatorGranularity: -1 - m_ProfilerBucketAllocatorBucketsCount: -1 - m_ProfilerBucketAllocatorBlockSize: -1 - m_ProfilerBucketAllocatorBlockCount: -1 - m_TempAllocatorSizeMain: -1 - m_JobTempAllocatorBlockSize: -1 - m_BackgroundJobTempAllocatorBlockSize: -1 - m_JobTempAllocatorReducedBlockSize: -1 - m_TempAllocatorSizeGIBakingWorker: -1 - m_TempAllocatorSizeNavMeshWorker: -1 - m_TempAllocatorSizeAudioWorker: -1 - m_TempAllocatorSizeCloudWorker: -1 - m_TempAllocatorSizeGfx: -1 - m_TempAllocatorSizeJobWorker: -1 - m_TempAllocatorSizeBackgroundWorker: -1 - m_TempAllocatorSizePreloadManager: -1 - m_PlatformMemorySettings: {} diff --git a/XRTK-Core/ProjectSettings/NavMeshAreas.asset b/XRTK-Core/ProjectSettings/NavMeshAreas.asset deleted file mode 100644 index 3b0b7c3d1..000000000 --- a/XRTK-Core/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/XRTK-Core/ProjectSettings/NetworkManager.asset b/XRTK-Core/ProjectSettings/NetworkManager.asset deleted file mode 100644 index 5dc6a831d..000000000 --- a/XRTK-Core/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/XRTK-Core/ProjectSettings/PackageManagerSettings.asset b/XRTK-Core/ProjectSettings/PackageManagerSettings.asset deleted file mode 100644 index ce8d7a03d..000000000 --- a/XRTK-Core/ProjectSettings/PackageManagerSettings.asset +++ /dev/null @@ -1,49 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!114 &1 -MonoBehaviour: - m_ObjectHideFlags: 61 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 13964, guid: 0000000000000000e000000000000000, type: 0} - m_Name: - m_EditorClassIdentifier: - m_EnablePreReleasePackages: 1 - m_EnablePackageDependencies: 1 - m_AdvancedSettingsExpanded: 1 - m_ScopedRegistriesSettingsExpanded: 1 - m_SeeAllPackageVersions: 0 - oneTimeWarningShown: 1 - m_Registries: - - m_Id: main - m_Name: - m_Url: https://packages.unity.com - m_Scopes: [] - m_IsDefault: 1 - m_Capabilities: 0 - - m_Id: scoped:XRTK - m_Name: XRTK - m_Url: http://upm.xrtk.io:4873 - m_Scopes: - - com.xrtk - m_IsDefault: 0 - m_Capabilities: 0 - - m_Id: scoped:OpenUPM - m_Name: OpenUPM - m_Url: https://package.openupm.com - m_Scopes: - - com.needle.compilation-visualizer - m_IsDefault: 0 - m_Capabilities: 0 - m_UserSelectedRegistryName: XRTK - m_UserAddingNewScopedRegistry: 0 - m_RegistryInfoDraft: - m_Modified: 0 - m_ErrorMessage: - m_UserModificationsInstanceId: -832 - m_OriginalInstanceId: -836 - m_LoadAssets: 0 diff --git a/XRTK-Core/ProjectSettings/Physics2DSettings.asset b/XRTK-Core/ProjectSettings/Physics2DSettings.asset deleted file mode 100644 index 57760e2eb..000000000 --- a/XRTK-Core/ProjectSettings/Physics2DSettings.asset +++ /dev/null @@ -1,38 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!19 &1 -Physics2DSettings: - m_ObjectHideFlags: 0 - serializedVersion: 4 - 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_AutoSimulation: 1 - m_QueriesHitTriggers: 1 - m_QueriesStartInColliders: 1 - m_ChangeStopsCallbacks: 0 - m_CallbacksOnDisable: 1 - m_ReuseCollisionCallbacks: 1 - m_AutoSyncTransforms: 0 - 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/XRTK-Core/ProjectSettings/PresetManager.asset b/XRTK-Core/ProjectSettings/PresetManager.asset deleted file mode 100644 index 820e662d5..000000000 --- a/XRTK-Core/ProjectSettings/PresetManager.asset +++ /dev/null @@ -1,27 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!1386491679 &1 -PresetManager: - m_ObjectHideFlags: 0 - m_DefaultList: - - type: - m_NativeTypeID: 108 - m_ManagedTypePPtr: {fileID: 0} - m_ManagedTypeFallback: - defaultPresets: - - m_Preset: {fileID: 2655988077585873504, guid: c1cf8506f04ef2c4a88b64b6c4202eea, - type: 2} - - type: - m_NativeTypeID: 1020 - m_ManagedTypePPtr: {fileID: 0} - m_ManagedTypeFallback: - defaultPresets: - - m_Preset: {fileID: 2655988077585873504, guid: 0cd792cc87e492d43b4e95b205fc5cc6, - type: 2} - - type: - m_NativeTypeID: 1006 - m_ManagedTypePPtr: {fileID: 0} - m_ManagedTypeFallback: - defaultPresets: - - m_Preset: {fileID: 2655988077585873504, guid: 7a99f8aa944efe94cb9bd74562b7d5f9, - type: 2} diff --git a/XRTK-Core/ProjectSettings/ProjectSettings.asset b/XRTK-Core/ProjectSettings/ProjectSettings.asset deleted file mode 100644 index 2a7b4bda4..000000000 --- a/XRTK-Core/ProjectSettings/ProjectSettings.asset +++ /dev/null @@ -1,885 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!129 &1 -PlayerSettings: - m_ObjectHideFlags: 0 - serializedVersion: 23 - productGUID: 4bcd191391ea21b4695290df9d1bfee5 - AndroidProfiler: 0 - AndroidFilterTouchesWhenObscured: 0 - AndroidEnableSustainedPerformanceMode: 0 - defaultScreenOrientation: 4 - targetDevice: 2 - useOnDemandResources: 0 - accelerometerFrequency: 60 - companyName: XRTK - productName: com.xrtk.core - defaultCursor: {fileID: 0} - cursorHotspot: {x: 0, y: 0} - m_SplashScreenBackgroundColor: {r: 0.13725491, g: 0.12156863, b: 0.1254902, a: 1} - m_ShowUnitySplashScreen: 0 - m_ShowUnitySplashLogo: 0 - 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: 2800000, guid: 1ef2a4697194f534bbaf80dc654ebf58, - type: 3} - m_HolographicTrackingLossScreen: {fileID: 0} - defaultScreenWidth: 1024 - defaultScreenHeight: 768 - defaultScreenWidthWeb: 960 - defaultScreenHeightWeb: 600 - m_StereoRenderingPath: 1 - m_ActiveColorSpace: 1 - m_MTRendering: 1 - mipStripping: 0 - numberOfMipsStripped: 0 - m_StackTraceTypes: 010000000100000001000000010000000100000001000000 - iosShowActivityIndicatorOnLoading: -1 - androidShowActivityIndicatorOnLoading: -1 - iosUseCustomAppBackgroundBehavior: 0 - iosAllowHTTPDownload: 1 - allowedAutorotateToPortrait: 1 - allowedAutorotateToPortraitUpsideDown: 1 - allowedAutorotateToLandscapeRight: 1 - allowedAutorotateToLandscapeLeft: 1 - useOSAutorotation: 1 - use32BitDisplayBuffer: 1 - preserveFramebufferAlpha: 0 - disableDepthAndStencilBuffers: 0 - androidStartInFullscreen: 1 - androidRenderOutsideSafeArea: 0 - androidUseSwappy: 0 - androidBlitType: 0 - androidResizableWindow: 0 - androidDefaultWindowWidth: 1920 - androidDefaultWindowHeight: 1080 - androidMinimumWindowWidth: 400 - androidMinimumWindowHeight: 300 - androidFullscreenMode: 1 - 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 - useFlipModelSwapchain: 1 - resizableWindow: 0 - useMacAppStoreValidation: 0 - macAppStoreCategory: public.app-category.games - gpuSkinning: 1 - xboxPIXTextureCapture: 0 - xboxEnableAvatar: 0 - xboxEnableKinect: 0 - xboxEnableKinectAutoTracking: 0 - xboxEnableFitness: 0 - visibleInBackground: 1 - allowFullscreenSwitch: 1 - fullscreenMode: 1 - xboxSpeechDB: 0 - xboxEnableHeadOrientation: 0 - xboxEnableGuest: 0 - xboxEnablePIXSampling: 0 - metalFramebufferOnly: 0 - xboxOneResolution: 0 - xboxOneSResolution: 0 - xboxOneXResolution: 3 - xboxOneMonoLoggingLevel: 0 - xboxOneLoggingLevel: 1 - xboxOneDisableEsram: 0 - xboxOneEnableTypeOptimization: 0 - xboxOnePresentImmediateThreshold: 0 - switchQueueCommandMemory: 0 - switchQueueControlMemory: 16384 - switchQueueComputeMemory: 262144 - switchNVNShaderPoolsGranularity: 33554432 - switchNVNDefaultPoolsGranularity: 16777216 - switchNVNOtherPoolsGranularity: 16777216 - switchNVNMaxPublicTextureIDCount: 0 - switchNVNMaxPublicSamplerIDCount: 0 - stadiaPresentMode: 0 - stadiaTargetFramerate: 0 - vulkanNumSwapchainBuffers: 3 - vulkanEnableSetSRGBWrite: 0 - vulkanEnablePreTransform: 0 - vulkanEnableLateAcquireNextImage: 0 - vulkanEnableCommandBufferRecycling: 1 - m_SupportedAspectRatios: - 4:3: 1 - 5:4: 1 - 16:10: 1 - 16:9: 1 - Others: 1 - bundleVersion: 0.2.15 - preloadedAssets: - - {fileID: 0} - - {fileID: 0} - - {fileID: 11400000, guid: bf4ca4b201eff6f47bfcf89c2053db39, type: 2} - - {fileID: 11400000, guid: f99b452b5394cbd47888a25c1ab5cc02, type: 2} - - {fileID: -5075777558928976932, guid: 5af59a24e6269e640b3d590f7858d172, type: 2} - metroInputSource: 0 - wsaTransparentSwapchain: 0 - m_HolographicPauseOnTrackingLoss: 1 - xboxOneDisableKinectGpuReservation: 0 - xboxOneEnable7thCore: 0 - vrSettings: - enable360StereoCapture: 0 - isWsaHolographicRemotingEnabled: 0 - enableFrameTimingStats: 0 - enableOpenGLProfilerGPURecorders: 1 - useHDRDisplay: 0 - D3DHDRBitDepth: 0 - m_ColorGamuts: 00000000 - targetPixelDensity: 30 - resolutionScalingMode: 0 - androidSupportedAspectRatio: 1 - androidMaxAspectRatio: 2.1 - applicationIdentifier: - Android: com.xrtk.core - Lumin: com.xrtk.core - Standalone: com.xrtk.core - WebGL: com.xrtk.core - Windows Store Apps: com.xrtk.core - buildNumber: - Standalone: 0 - iPhone: 0 - tvOS: 0 - overrideDefaultApplicationIdentifier: 1 - AndroidBundleVersionCode: 1 - AndroidMinSdkVersion: 25 - AndroidTargetSdkVersion: 0 - AndroidPreferredInstallLocation: 1 - aotOptions: - stripEngineCode: 1 - iPhoneStrippingLevel: 0 - iPhoneScriptCallOptimization: 0 - ForceInternetPermission: 0 - ForceSDCardPermission: 1 - CreateWallpaper: 0 - APKExpansionFiles: 0 - keepLoadedShadersAlive: 0 - StripUnusedMeshComponents: 1 - VertexChannelCompressionMask: 4054 - iPhoneSdkVersion: 988 - iOSTargetOSVersionString: 11.0 - tvOSSdkVersion: 0 - tvOSRequireExtendedGameController: 0 - tvOSTargetOSVersionString: 11.0 - uIPrerenderedIcon: 0 - uIRequiresPersistentWiFi: 0 - uIRequiresFullScreen: 1 - uIStatusBarHidden: 1 - uIExitOnSuspend: 0 - uIStatusBarStyle: 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: - iOSLaunchScreenCustomStoryboardPath: - iOSLaunchScreeniPadCustomStoryboardPath: - iOSDeviceRequirements: [] - iOSURLSchemes: [] - macOSURLSchemes: [] - iOSBackgroundModes: 0 - iOSMetalForceHardShadows: 0 - metalEditorSupport: 1 - metalAPIValidation: 1 - iOSRenderExtraFrameOnPause: 0 - iosCopyPluginsCodeInsteadOfSymlink: 0 - appleDeveloperTeamID: - iOSManualSigningProvisioningProfileID: - tvOSManualSigningProvisioningProfileID: - iOSManualSigningProvisioningProfileType: 0 - tvOSManualSigningProvisioningProfileType: 0 - appleEnableAutomaticSigning: 0 - iOSRequireARKit: 0 - iOSAutomaticallyDetectAndAddCapabilities: 1 - appleEnableProMotion: 0 - shaderPrecisionModel: 0 - clonedFromGUID: c0afd0d1d80e3634a9dac47e8a0426ea - templatePackageId: com.unity.template.3d@1.0.4 - templateDefaultScene: Assets/Scenes/SampleScene.unity - useCustomMainManifest: 0 - useCustomLauncherManifest: 0 - useCustomMainGradleTemplate: 0 - useCustomLauncherGradleManifest: 0 - useCustomBaseGradleTemplate: 0 - useCustomGradlePropertiesTemplate: 0 - useCustomProguardFile: 0 - AndroidTargetArchitectures: 3 - AndroidTargetDevices: 0 - AndroidSplashScreenScale: 0 - androidSplashScreen: {fileID: 0} - AndroidKeystoreName: '{inproject}: ' - AndroidKeyaliasName: - AndroidBuildApkPerCpuArchitecture: 0 - AndroidTVCompatibility: 0 - AndroidIsGame: 1 - AndroidEnableTango: 0 - androidEnableBanner: 1 - androidUseLowAccuracyLocation: 0 - androidUseCustomKeystore: 0 - m_AndroidBanners: - - width: 320 - height: 180 - banner: {fileID: 0} - androidGamepadSupportLevel: 0 - chromeosInputEmulation: 1 - AndroidMinifyWithR8: 0 - AndroidMinifyRelease: 0 - AndroidMinifyDebug: 0 - AndroidValidateAppBundleSize: 1 - AndroidAppBundleSizeToValidate: 150 - m_BuildTargetIcons: - - m_BuildTarget: - m_Icons: - - serializedVersion: 2 - m_Icon: {fileID: 2800000, guid: 1ef2a4697194f534bbaf80dc654ebf58, type: 3} - m_Width: 128 - m_Height: 128 - m_Kind: 0 - 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_BuildTarget: Standalone - m_StaticBatching: 1 - m_DynamicBatching: 0 - - m_BuildTarget: tvOS - m_StaticBatching: 1 - m_DynamicBatching: 0 - - m_BuildTarget: Android - m_StaticBatching: 1 - m_DynamicBatching: 0 - - m_BuildTarget: iPhone - m_StaticBatching: 1 - m_DynamicBatching: 0 - - m_BuildTarget: WebGL - m_StaticBatching: 0 - m_DynamicBatching: 0 - m_BuildTargetGraphicsJobs: - - m_BuildTarget: MacStandaloneSupport - m_GraphicsJobs: 0 - - m_BuildTarget: Switch - m_GraphicsJobs: 0 - - m_BuildTarget: MetroSupport - m_GraphicsJobs: 0 - - m_BuildTarget: AppleTVSupport - m_GraphicsJobs: 0 - - m_BuildTarget: BJMSupport - m_GraphicsJobs: 0 - - m_BuildTarget: LinuxStandaloneSupport - m_GraphicsJobs: 0 - - m_BuildTarget: PS4Player - m_GraphicsJobs: 0 - - m_BuildTarget: iOSSupport - m_GraphicsJobs: 0 - - m_BuildTarget: WindowsStandaloneSupport - m_GraphicsJobs: 0 - - m_BuildTarget: XboxOnePlayer - m_GraphicsJobs: 0 - - m_BuildTarget: LuminSupport - m_GraphicsJobs: 0 - - m_BuildTarget: CloudRendering - m_GraphicsJobs: 0 - - m_BuildTarget: AndroidPlayer - m_GraphicsJobs: 0 - - m_BuildTarget: WebGLSupport - m_GraphicsJobs: 0 - m_BuildTargetGraphicsJobMode: - - m_BuildTarget: PS4Player - m_GraphicsJobMode: 0 - - m_BuildTarget: XboxOnePlayer - m_GraphicsJobMode: 0 - m_BuildTargetGraphicsAPIs: - - m_BuildTarget: AndroidPlayer - m_APIs: 0b000000 - m_Automatic: 0 - - m_BuildTarget: iOSSupport - m_APIs: 10000000 - m_Automatic: 1 - - m_BuildTarget: AppleTVSupport - m_APIs: 10000000 - m_Automatic: 1 - - m_BuildTarget: WebGLSupport - m_APIs: 0b000000 - m_Automatic: 0 - - m_BuildTarget: LuminSupport - m_APIs: 0b00000011000000 - m_Automatic: 1 - - m_BuildTarget: WindowsStandaloneSupport - m_APIs: 0200000011000000 - m_Automatic: 0 - m_BuildTargetVRSettings: - - m_BuildTarget: Standalone - m_Enabled: 0 - m_Devices: - - OpenVR - - Oculus - - m_BuildTarget: Windows Store Apps - m_Enabled: 0 - m_Devices: - - WindowsMR - - m_BuildTarget: Android - m_Enabled: 0 - m_Devices: - - Oculus - - m_BuildTarget: Lumin - m_Enabled: 0 - m_Devices: - - Lumin - - m_BuildTarget: WebGL - m_Enabled: 0 - m_Devices: [] - - m_BuildTarget: iPhone - m_Enabled: 0 - m_Devices: [] - openGLRequireES31: 0 - openGLRequireES31AEP: 0 - openGLRequireES32: 0 - m_TemplateCustomTags: {} - mobileMTRendering: - Android: 1 - iPhone: 1 - tvOS: 1 - m_BuildTargetGroupLightmapEncodingQuality: [] - m_BuildTargetGroupLightmapSettings: [] - m_BuildTargetNormalMapEncoding: [] - m_BuildTargetDefaultTextureCompressionFormat: [] - playModeTestRunnerEnabled: 0 - runPlayModeTestAsEditModeTest: 0 - actionOnDotNetUnhandledException: 1 - enableInternalProfiler: 0 - logObjCUncaughtExceptions: 1 - enableCrashReportAPI: 0 - cameraUsageDescription: - locationUsageDescription: - microphoneUsageDescription: - bluetoothUsageDescription: - switchNMETAOverride: - switchNetLibKey: - switchSocketMemoryPoolSize: 6144 - switchSocketAllocatorPoolSize: 128 - switchSocketConcurrencyLimit: 14 - switchScreenResolutionBehavior: 2 - switchUseCPUProfiler: 0 - switchUseGOLDLinker: 0 - switchLTOSetting: 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: - switchTitleNames_15: - 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: - switchPublisherNames_15: - 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} - switchIcons_15: {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} - switchSmallIcons_15: {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 - switchRatingsInt_12: 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 - switchUserAccountLockEnabled: 0 - switchSystemResourceMemory: 16777216 - 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 - switchUseNewStyleFilepaths: 0 - switchUseMicroSleepForYield: 1 - switchEnableRamDiskSupport: 0 - switchMicroSleepForYieldTime: 25 - switchRamDiskSpaceSize: 12 - 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: - ps4ExtraSceSysFile: - ps4NPtitleDatPath: - ps4RemotePlayKeyAssignment: -1 - ps4RemotePlayKeyMappingDir: - ps4PlayTogetherPlayerCount: 0 - ps4EnterButtonAssignment: 1 - ps4ApplicationParam1: 0 - ps4ApplicationParam2: 0 - ps4ApplicationParam3: 0 - ps4ApplicationParam4: 0 - ps4DownloadDataSize: 0 - ps4GarlicHeapSize: 2048 - ps4ProGarlicHeapSize: 2560 - playerPrefsMaxSize: 32768 - ps4Passcode: frAQBc8Wsa1xVPfvJcrgRYwTiizs2trQ - ps4pnSessions: 1 - ps4pnPresence: 1 - ps4pnFriends: 1 - ps4pnGameCustomData: 1 - playerPrefsSupport: 0 - enableApplicationExit: 0 - resetTempFolder: 1 - restrictedAudioUsageRights: 0 - ps4UseResolutionFallback: 0 - ps4ReprojectionSupport: 0 - ps4UseAudio3dBackend: 0 - ps4UseLowGarlicFragmentationMode: 1 - 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 - ps4CompatibilityPS5: 0 - ps4GPU800MHz: 1 - ps4attribEyeToEyeDistanceSettingVR: 0 - ps4IncludedModules: [] - ps4attribVROutputEnabled: 0 - monoEnv: - splashScreenBackgroundSourceLandscape: {fileID: 0} - splashScreenBackgroundSourcePortrait: {fileID: 0} - blurSplashScreenBackground: 1 - spritePackerPolicy: - webGLMemorySize: 256 - webGLExceptionSupport: 1 - webGLNameFilesAsHashes: 0 - webGLDataCaching: 1 - webGLDebugSymbols: 0 - webGLEmscriptenArgs: - webGLModulesDirectory: - webGLTemplate: APPLICATION:Default - webGLAnalyzeBuildSize: 0 - webGLUseEmbeddedResources: 0 - webGLCompressionFormat: 1 - webGLWasmArithmeticExceptions: 0 - webGLLinkerTarget: 1 - webGLThreadsSupport: 0 - webGLDecompressionFallback: 0 - scriptingDefineSymbols: - Android: - additionalCompilerArguments: {} - platformArchitecture: {} - scriptingBackend: - Android: 1 - Lumin: 1 - Standalone: 1 - WebGL: 1 - Windows Store Apps: 1 - iPhone: 1 - il2cppCompilerConfiguration: {} - managedStrippingLevel: {} - incrementalIl2cppBuild: {} - suppressCommonWarnings: 1 - allowUnsafeCode: 0 - useDeterministicCompilation: 1 - enableRoslynAnalyzers: 1 - additionalIl2CppArgs: --cachedirectory="D:\Dev\XRTK\Core\XRTK-Core\Library\il2cpp_cache\StandaloneWindows64" - scriptingRuntimeVersion: 1 - gcIncremental: 0 - assemblyVersionValidation: 1 - gcWBarrierValidation: 0 - apiCompatibilityLevelPerPlatform: {} - m_RenderingPath: 1 - m_MobileRenderingPath: 1 - metroPackageName: com.xrtk.core - metroPackageVersion: 0.2.15.0 - metroCertificatePath: - metroCertificatePassword: - metroCertificateSubject: - metroCertificateIssuer: - metroCertificateNotAfter: 0000000000000000 - metroApplicationDescription: com.xrtk.core - wsaImages: {} - metroTileShortName: XRTK-Core - metroTileShowName: 0 - metroMediumTileShowName: 0 - metroLargeTileShowName: 0 - metroWideTileShowName: 0 - metroSupportStreamingInstall: 0 - metroLastRequiredScene: 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: - WindowsStoreApps: - EnterpriseAuthentication: False - OfflineMapsManagement: False - HumanInterfaceDevice: False - Location: False - Chat: False - Bluetooth: False - AllJoyn: False - MusicLibrary: False - LowLevelDevices: False - PrivateNetworkClientServer: True - InternetClientServer: True - VideosLibrary: False - Objects3D: False - RemoteSystem: False - BlockedChatMessages: False - PhoneCall: False - UserDataTasks: False - Appointments: False - SystemManagement: False - SpatialPerception: True - Microphone: True - SharedUserCertificates: False - InputInjectionBrokered: False - PicturesLibrary: False - RemovableStorage: False - WebCam: False - VoipCall: False - GazeInput: False - UserAccountInformation: False - UserNotificationListener: False - PhoneCallHistoryPublic: False - PointOfService: False - RecordedCallsFolder: False - Contacts: False - Proximity: False - InternetClient: True - CodeGeneration: False - BackgroundMediaPlayback: False - metroTargetDeviceFamilies: - Desktop: True - Holographic: True - IoT: False - IoTHeadless: False - Mobile: False - Team: False - Xbox: False - metroFTAName: - metroFTAFileTypes: [] - metroProtocolName: - vcxProjDefaultLanguage: - 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 - XboxOneEnhancedXboxCompatibilityMode: 0 - XboxOneEnableGPUVariability: 0 - XboxOneSockets: {} - XboxOneSplashScreen: {fileID: 0} - XboxOneAllowedProductIds: [] - XboxOnePersistentLocalStorageSize: 0 - XboxOneXTitleMemory: 8 - XboxOneOverrideIdentityName: - XboxOneOverrideIdentityPublisher: - vrEditorSettings: {} - cloudServicesEnabled: - UNet: 1 - luminIcon: - m_Name: - m_ModelFolderPath: - m_PortalFolderPath: - luminCert: - m_CertPath: - m_SignPackage: 0 - luminIsChannelApp: 0 - luminVersion: - m_VersionCode: 1 - m_VersionName: 0.2.15 - apiCompatibilityLevel: 6 - activeInputHandler: 0 - cloudProjectId: - framebufferDepthMemorylessMode: 0 - qualitySettingsNames: [] - projectName: - organizationId: - cloudEnabled: 0 - legacyClampBlendShapeWeights: 0 - playerDataPath: - forceSRGBBlit: 1 - virtualTexturingSupportEnabled: 0 diff --git a/XRTK-Core/ProjectSettings/ProjectVersion.txt b/XRTK-Core/ProjectSettings/ProjectVersion.txt deleted file mode 100644 index 3dcb82794..000000000 --- a/XRTK-Core/ProjectSettings/ProjectVersion.txt +++ /dev/null @@ -1,2 +0,0 @@ -m_EditorVersion: 2021.3.2f1 -m_EditorVersionWithRevision: 2021.3.2f1 (d6360bedb9a0) diff --git a/XRTK-Core/ProjectSettings/QualitySettings.asset b/XRTK-Core/ProjectSettings/QualitySettings.asset deleted file mode 100644 index 4f8d3e452..000000000 --- a/XRTK-Core/ProjectSettings/QualitySettings.asset +++ /dev/null @@ -1,239 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!47 &1 -QualitySettings: - m_ObjectHideFlags: 0 - serializedVersion: 5 - m_CurrentQuality: 5 - 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 - skinWeights: 1 - textureQuality: 1 - anisotropicTextures: 0 - antiAliasing: 0 - softParticles: 0 - softVegetation: 0 - realtimeReflectionProbes: 0 - billboardsFaceCameraPosition: 0 - vSyncCount: 0 - lodBias: 0.3 - maximumLODLevel: 0 - streamingMipmapsActive: 0 - streamingMipmapsAddAllCameras: 1 - streamingMipmapsMemoryBudget: 512 - streamingMipmapsRenderersPerFrame: 512 - streamingMipmapsMaxLevelReduction: 2 - streamingMipmapsMaxFileIORequests: 1024 - particleRaycastBudget: 4 - asyncUploadTimeSlice: 2 - asyncUploadBufferSize: 16 - asyncUploadPersistentBuffer: 1 - resolutionScalingFixedDPIFactor: 1 - customRenderPipeline: {fileID: 0} - 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 - skinWeights: 2 - textureQuality: 0 - anisotropicTextures: 0 - antiAliasing: 0 - softParticles: 0 - softVegetation: 0 - realtimeReflectionProbes: 0 - billboardsFaceCameraPosition: 0 - vSyncCount: 0 - lodBias: 0.4 - maximumLODLevel: 0 - streamingMipmapsActive: 0 - streamingMipmapsAddAllCameras: 1 - streamingMipmapsMemoryBudget: 512 - streamingMipmapsRenderersPerFrame: 512 - streamingMipmapsMaxLevelReduction: 2 - streamingMipmapsMaxFileIORequests: 1024 - particleRaycastBudget: 16 - asyncUploadTimeSlice: 2 - asyncUploadBufferSize: 16 - asyncUploadPersistentBuffer: 1 - resolutionScalingFixedDPIFactor: 1 - customRenderPipeline: {fileID: 0} - excludedTargetPlatforms: [] - - serializedVersion: 2 - name: Medium - pixelLightCount: 1 - shadows: 1 - 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 - skinWeights: 2 - textureQuality: 0 - anisotropicTextures: 1 - antiAliasing: 0 - softParticles: 0 - softVegetation: 0 - realtimeReflectionProbes: 0 - billboardsFaceCameraPosition: 0 - vSyncCount: 1 - lodBias: 0.7 - maximumLODLevel: 0 - streamingMipmapsActive: 0 - streamingMipmapsAddAllCameras: 1 - streamingMipmapsMemoryBudget: 512 - streamingMipmapsRenderersPerFrame: 512 - streamingMipmapsMaxLevelReduction: 2 - streamingMipmapsMaxFileIORequests: 1024 - particleRaycastBudget: 64 - asyncUploadTimeSlice: 2 - asyncUploadBufferSize: 16 - asyncUploadPersistentBuffer: 1 - resolutionScalingFixedDPIFactor: 1 - customRenderPipeline: {fileID: 0} - excludedTargetPlatforms: [] - - serializedVersion: 2 - name: High - pixelLightCount: 2 - shadows: 2 - 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 - skinWeights: 2 - textureQuality: 0 - anisotropicTextures: 1 - antiAliasing: 2 - softParticles: 0 - softVegetation: 1 - realtimeReflectionProbes: 1 - billboardsFaceCameraPosition: 1 - vSyncCount: 1 - lodBias: 1 - maximumLODLevel: 0 - streamingMipmapsActive: 0 - streamingMipmapsAddAllCameras: 1 - streamingMipmapsMemoryBudget: 512 - streamingMipmapsRenderersPerFrame: 512 - streamingMipmapsMaxLevelReduction: 2 - streamingMipmapsMaxFileIORequests: 1024 - particleRaycastBudget: 256 - asyncUploadTimeSlice: 2 - asyncUploadBufferSize: 16 - asyncUploadPersistentBuffer: 1 - resolutionScalingFixedDPIFactor: 1 - customRenderPipeline: {fileID: 0} - excludedTargetPlatforms: [] - - serializedVersion: 2 - name: Very High - pixelLightCount: 3 - shadows: 2 - shadowResolution: 2 - shadowProjection: 1 - shadowCascades: 2 - shadowDistance: 40 - shadowNearPlaneOffset: 3 - shadowCascade2Split: 0.33333334 - shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} - shadowmaskMode: 1 - skinWeights: 4 - textureQuality: 0 - anisotropicTextures: 1 - antiAliasing: 4 - softParticles: 1 - softVegetation: 1 - realtimeReflectionProbes: 1 - billboardsFaceCameraPosition: 1 - vSyncCount: 1 - lodBias: 1.5 - maximumLODLevel: 0 - streamingMipmapsActive: 0 - streamingMipmapsAddAllCameras: 1 - streamingMipmapsMemoryBudget: 512 - streamingMipmapsRenderersPerFrame: 512 - streamingMipmapsMaxLevelReduction: 2 - streamingMipmapsMaxFileIORequests: 1024 - particleRaycastBudget: 1024 - asyncUploadTimeSlice: 2 - asyncUploadBufferSize: 16 - asyncUploadPersistentBuffer: 1 - resolutionScalingFixedDPIFactor: 1 - customRenderPipeline: {fileID: 0} - excludedTargetPlatforms: [] - - serializedVersion: 2 - name: Ultra - pixelLightCount: 4 - shadows: 2 - shadowResolution: 2 - shadowProjection: 1 - shadowCascades: 4 - shadowDistance: 150 - shadowNearPlaneOffset: 3 - shadowCascade2Split: 0.33333334 - shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} - shadowmaskMode: 1 - skinWeights: 4 - textureQuality: 0 - anisotropicTextures: 1 - antiAliasing: 4 - softParticles: 1 - softVegetation: 1 - realtimeReflectionProbes: 1 - billboardsFaceCameraPosition: 1 - vSyncCount: 1 - lodBias: 2 - maximumLODLevel: 0 - streamingMipmapsActive: 0 - streamingMipmapsAddAllCameras: 1 - streamingMipmapsMemoryBudget: 512 - streamingMipmapsRenderersPerFrame: 512 - streamingMipmapsMaxLevelReduction: 2 - streamingMipmapsMaxFileIORequests: 1024 - particleRaycastBudget: 4096 - asyncUploadTimeSlice: 2 - asyncUploadBufferSize: 16 - asyncUploadPersistentBuffer: 1 - resolutionScalingFixedDPIFactor: 1 - customRenderPipeline: {fileID: 0} - excludedTargetPlatforms: [] - m_PerPlatformDefaultQuality: - Android: 2 - Lumin: 0 - Nintendo 3DS: 5 - Nintendo Switch: 5 - PS4: 5 - PSP2: 2 - Standalone: 5 - Tizen: 2 - WebGL: 3 - WiiU: 5 - Windows Store Apps: 5 - XboxOne: 5 - iPhone: 2 - tvOS: 2 diff --git a/XRTK-Core/ProjectSettings/TagManager.asset b/XRTK-Core/ProjectSettings/TagManager.asset deleted file mode 100644 index b95fe5ca5..000000000 --- a/XRTK-Core/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 - - - - - - PostProcessing - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Spatial Awareness Meshes - - Spatial Awareness Surfaces - m_SortingLayers: - - name: Default - uniqueID: 0 - locked: 0 diff --git a/XRTK-Core/ProjectSettings/TimeManager.asset b/XRTK-Core/ProjectSettings/TimeManager.asset deleted file mode 100644 index 06bcc6d29..000000000 --- a/XRTK-Core/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/XRTK-Core/ProjectSettings/UnityConnectSettings.asset b/XRTK-Core/ProjectSettings/UnityConnectSettings.asset deleted file mode 100644 index 6125b308a..000000000 --- a/XRTK-Core/ProjectSettings/UnityConnectSettings.asset +++ /dev/null @@ -1,35 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!310 &1 -UnityConnectSettings: - m_ObjectHideFlags: 0 - serializedVersion: 1 - m_Enabled: 0 - m_TestMode: 0 - m_EventOldUrl: https://api.uca.cloud.unity3d.com/v1/events - m_EventUrl: https://cdp.cloud.unity3d.com/v1/events - m_ConfigUrl: https://config.uca.cloud.unity3d.com - m_DashboardUrl: https://dashboard.unity3d.com - m_TestInitMode: 0 - CrashReportingSettings: - m_EventUrl: https://perf-events.cloud.unity3d.com - m_Enabled: 0 - m_LogBufferSize: 10 - m_CaptureEditorExceptions: 1 - UnityPurchasingSettings: - m_Enabled: 0 - m_TestMode: 0 - UnityAnalyticsSettings: - m_Enabled: 0 - m_TestMode: 0 - m_InitializeOnStartup: 1 - UnityAdsSettings: - m_Enabled: 0 - m_InitializeOnStartup: 1 - m_TestMode: 0 - m_IosGameId: - m_AndroidGameId: - m_GameIds: {} - m_GameId: - PerformanceReportingSettings: - m_Enabled: 0 diff --git a/XRTK-Core/ProjectSettings/VFXManager.asset b/XRTK-Core/ProjectSettings/VFXManager.asset deleted file mode 100644 index 6e0eaca40..000000000 --- a/XRTK-Core/ProjectSettings/VFXManager.asset +++ /dev/null @@ -1,11 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!937362698 &1 -VFXManager: - m_ObjectHideFlags: 0 - m_IndirectShader: {fileID: 0} - m_CopyBufferShader: {fileID: 0} - m_SortShader: {fileID: 0} - m_RenderPipeSettingsPath: - m_FixedTimeStep: 0.016666668 - m_MaxDeltaTime: 0.05 diff --git a/XRTK-Core/ProjectSettings/VersionControlSettings.asset b/XRTK-Core/ProjectSettings/VersionControlSettings.asset deleted file mode 100644 index dca288142..000000000 --- a/XRTK-Core/ProjectSettings/VersionControlSettings.asset +++ /dev/null @@ -1,8 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!890905787 &1 -VersionControlSettings: - m_ObjectHideFlags: 0 - m_Mode: Visible Meta Files - m_CollabEditorSettings: - inProgressEnabled: 1 diff --git a/XRTK-Core/ProjectSettings/XRPackageSettings.asset b/XRTK-Core/ProjectSettings/XRPackageSettings.asset deleted file mode 100644 index 7e791e170..000000000 --- a/XRTK-Core/ProjectSettings/XRPackageSettings.asset +++ /dev/null @@ -1,5 +0,0 @@ -{ - "m_Settings": [ - "RemoveLegacyInputHelpersForReload" - ] -} \ No newline at end of file diff --git a/XRTK-Core/ProjectSettings/XRSettings.asset b/XRTK-Core/ProjectSettings/XRSettings.asset deleted file mode 100644 index dcdcc1292..000000000 --- a/XRTK-Core/ProjectSettings/XRSettings.asset +++ /dev/null @@ -1,10 +0,0 @@ -{ - "m_SettingKeys": [ - "VR Device Disabled", - "VR Device User Alert" - ], - "m_SettingValues": [ - "True", - "False" - ] -} \ No newline at end of file diff --git a/XRTK-Core/ProjectSettings/boot.config b/XRTK-Core/ProjectSettings/boot.config deleted file mode 100644 index e69de29bb..000000000 diff --git a/api/.gitignore b/api/.gitignore deleted file mode 100644 index e8079a3be..000000000 --- a/api/.gitignore +++ /dev/null @@ -1,5 +0,0 @@ -############### -# temp file # -############### -*.yml -.manifest diff --git a/api/index.md b/api/index.md deleted file mode 100644 index c562975ab..000000000 --- a/api/index.md +++ /dev/null @@ -1,5 +0,0 @@ -# Mixed Reality Toolkit API Documentation - -## Quick Links - -- [MixedRealityToolkit](https://xrtk.github.io/XRTK-Core/api/XRTK.Services.MixedRealityToolkit.html): The service locator for the framework and coordinates all the applications services and systems. diff --git a/articles/00-GettingStarted.md b/articles/00-GettingStarted.md deleted file mode 100644 index 2bc60b181..000000000 --- a/articles/00-GettingStarted.md +++ /dev/null @@ -1,161 +0,0 @@ -# Getting started with the Mixed Reality Toolkit - -The Mixed Reality Toolkit's primary focus is to make it extremely easy to get started creating Mixed Reality applications and to accelerate deployment to multiple platforms from the same Unity project. - -The goal of the Mixed Reality Toolkit is to enable developers to build a single project for multiple platforms, building for each platform from Unity as required without all the normal complexities of handling different XR SDKs. - -![[More information about the architecture and design of the Mixed Reality Toolkit](https://medium.com/@stephen_hodgson/the-mixed-reality-framework-6fdb5c11feb2)](https://miro.medium.com/max/11666/1*JSU5Me8i2GUHcmbiUTsrlw.jpeg) -> [More information about the architecture and design of the Mixed Reality Toolkit](https://medium.com/@stephen_hodgson/the-mixed-reality-framework-6fdb5c11feb2) - -## Contents - -* [Prerequisites](#prerequisites) -* [Adding XRTK to your project](#adding-the-mixed-reality-toolkit-to-your-project) -* [Creating your first Mixed Reality Scene](#configure-your-base-scene) -* [Adding additional Platforms](#adding-additional-platforms) -* [Build and Play](#build-and-play) - -One of the Mixed Reality Toolkit's primary goals was to ensure new projects can get up and running as fast as possible. To this end, the default configuration supplied in the toolkit SDK ensures you can simply import, play and run a new project right out of the box. - -## Prerequisites - -To get started with the Mixed Reality Toolkit you will need: - -* [Visual Studio 2019+ (Community or full)](https://visualstudio.microsoft.com/downloads/) -* [Unity 2019.4+ LTS](https://unity3d.com/get-unity/download/archive) -* [Latest XRTK release](01-DownloadingTheXRTK.md) - -> **Note:** Specific platforms may have additional platform requirements. It's best to check that platform's readme for more information. - -> **Note:** Currently, the Scriptable Render Pipeline is not yet supported, so the LWSRP, HDSRP and VRSRP workflows not compatible. Please stay tuned to the GitHub site for future announcements on SRP support. - -### Setting up a Windows Environment - -If you're using a Windows OS for development, then you'll need to enable Developer Mode in the operating system settings. - -> **Tip:** You can quickly find the Developer Settings by pressing `win + S` and type “Developer Settings”. - -### Setting up a MAC Environment - -When developing for XRTK on a Mac, you simply need the default requirements needed for building any Unity project on a Mac, including (but not limited to): - -* Unity -* XCode - For Mac/iOS builds -* Android SDK/NDK - For Android builds - ---- - -## Adding the Mixed Reality Toolkit to your project - -First download the Mixed Reality Toolkit via one of the [delivery mechanisms](01-DownloadingTheXRTK.md) into your Unity project. - -Our preferred deployment approach is to install using the [Unity Package Manager](01-DownloadingTheXRTK.md#register-upm-server-in-project-settings). This is the quickest and safest way to get Mixed Reality Toolkit in your solution and provides new releases as soon as they are published. Using UPM, there are also no asset conflicts in your Unity project. - -> **Note:** Some prefabs and assets require TextMesh Pro, meaning you have to have the TextMesh Pro package installed and the assets in your project `Window -> TextMeshPro -> Import TMP Essential Resources`. - -### It all starts with the SDK - -We recommend installing the **XRTK.SDK** first to ensure you have the smoothest setup with the XRTK, which also gives you access to the Quickstart configurations. - ---- - -## Configure your base scene - -The Mixed Reality Toolkit has been designed so that there is a base scene with all of the required GameObjects. This base scene provides support for the core configuration and runtime. - -> **Note:** As more scenes are required in your project you'll need to [additively load](https://docs.unity3d.com/ScriptReference/SceneManagement.LoadSceneMode.Additive.html) and unload each individually at runtime while keeping the configured base scene loaded at all times. - -Configuring your scene is extremely simple by simply selecting the following from the Editor menu: - -> `Mixed Reality Toolkit -> Configure...` - -![Configure](../images/GettingStarted/MixedRealityConfigure.png) - -Configuring the toolkit will set up the camera rig, creates the `MixedRealityToolkit`, and adds additional components to the `Main Camera`. Once this completes, you will see the following in your project's scene hierarchy: - -![Scene Hiearchy](../images/GettingStarted/MixedRealityScene.png) - -Which contains the following: - -* `MixedRealityToolkit` - The toolkit object itself, providing the main entry point for the framework into the Unity event loop. This object references a `Configuration Profile` which defines all the settings and customizable options for your application. -* `MixedRealityPlayspace` - The parent object for the camera rig, which ensures the headset, controllers, and other spatially tracked objects are positioned correctly in the scene relative to the player's local frame of reference. - * The `Main Camera` is moved to be a child to the `MixedRealityPlayspace`, Which allows the playspace to move the whole camera rig without interfering with any camera driven movement from the native SDKs. - * The `PlayerBody` is positioned at the same x/z position as the `Main Camera`, but placed at the player's feet. Rotation of the body doesn't always match the `Main Camera`'s rotation, but is an approximation of the player's body rotation. - -> **Warning!** While working on your scene in the editor, **DO NOT** move the Main Camera or the Playspace from the scene origin (0,0,0). This is controlled by the Mixed Reality Toolkit and the active platform's `Camera Data Provider`, and most platforms expect the camera to start at this location. -> -> If you need to move the player's start point, then either: -> -> 1. Move the scene content and NOT the camera. -> 2. Move the Playspace after the scene has started. - -From here your project should be ready to build and play on the platform you are targeting, or you can take an [in depth look on configuring your project](02-Configuration.md#configuring-your-project) for any specific requirements. - -From here, you can install any additional platforms you need to deploy to other platforms. - ---- - -## Adding additional Platforms - -Once you have your initial scene setup with the Unity Standalone platform, you are ready to install additional platforms to build and deploy to. - -To add a new platform, simply return to the Unity Package Manager (`Window -> Package Manager`) and selecting `My Registries` from the source drop down, select the package to install (for example XRTK.WindowsMixedReality) and click Install as shown below: - -![Unity Package Manager](../images/GettingStarted/UnityPackageManager-XRTK.png) - -Once installed, the default for that platform will be copied into the `XRTK.Generated` folder in your project assets and a prompt will appear to automatically register the platforms configuration with your scene, as shown below: - -![New Platform Prompt](../images/GettingStarted/NewPlatformPrompt.png) - -If you click `Later`, please refer to the [Configuration Guide](02-Configuration.md) for how to manually add the configuration - ---- - -## Build and Play - -You are now ready to start building your Mixed Reality Solution, just start adding content and get building! - -You will need to enable the Unity XR SDK Loaders in the project settings to be able to launch the application in XR Mode for each respective platform. - -![XR SDK Manager](../images/GettingStarted/XR_SDK_Manager.png) - -> **Note:** Where possible use the Mock HMD Loader, as the XRTK already talks directly to the native apis. We only need the XR SDK display subsystems to get the XR Mode to correctly render to the screen. - -Once you are ready to build, open the Unity Build settings, and switch to the target platform you wish to build on, then open the Mixed Reality Toolkit's build window and build from there. - -> **Note:** Depending on the platform's simulation support, you should be able to run in the editor by pressing play. -> -> Please check the [FAQ](appendices/A04-FAQ.md) for any difficulties. - -### Building for Windows Standalone (OpenVR/Oculus Rift-Link) - -When targeting Windows Standalone there should be no special setup and the Mixed Reality Toolkit will work as configured. Builds should be able to target OpenVR and Oculus Quest (via Oculus Link). - -Please ensure either the OpenVR or Oculus Camera and Controller providers are configured. - -### Building for Windows Mixed Reality (UWP) - -> See the [Windows Mixed Reality Platform](platforms/windowsmixedreality.md) documentation for more details on the platform. - -### Building for Oculus Quest / Android - -> See the [Oculus Platform](platforms/oculus.md) documentation for more details on the platform. - -### Building for Magic Leap - -> See the [Magic Leap Platform](platforms/magicleap.md) documentation for more details on the platform. - ---- - -### Related Articles - -* [Downloading the XRTK](01-DownloadingTheXRTK.md) -* [Configuring your project](02-Configuration.md) -* [Known Issues](04-KnownIssues.md) -* [Frequently Asked Questions](appendices/A04-FAQ.md) - ---- - -### [**Raise an Information Request**](https://github.com/XRTK/XRTK-Core/issues/new?assignees=&labels=question&template=request_for_information.md&title=) - -If there is anything not mentioned in this document or you simply want to know more, raise an [RFI (Request for Information) request here](https://github.com/XRTK/XRTK-Core/issues/new?assignees=&labels=question&template=request_for_information.md&title=). diff --git a/articles/01-DownloadingTheXRTK.md b/articles/01-DownloadingTheXRTK.md deleted file mode 100644 index 061a28e75..000000000 --- a/articles/01-DownloadingTheXRTK.md +++ /dev/null @@ -1,134 +0,0 @@ -# How to download the Mixed Reality Toolkit - -The Mixed Reality Toolkit provides many ways for users and developers to get access to the Mixed Reality Toolkit and the various extensions/platforms it supports. These methods are tuned to use the common patterns most familiar to Unity developers, these include: - -* [Unity Package Manager](#register-upm-server-in-project-settings) - Use the Unity Package Manager interface to register and install the XRTK. -* [Automatic UPM installation](#automatic-upm-installation) - Automatically register the Mixed Reality Toolkit's upm server and install selected packages using the package seed found in the [release assets dropdown](https://github.com/XRTK/XRTK-Core/releases). -* [Manual UPM installation](#manual-upm-installation) - Register the Mixed Reality Toolkit upm server in your manifest and manually download modules al la carte. -* [UPM via GitHub](https://docs.unity3d.com/Manual/upm-ui-giturl.html) - The Unity Package Manager can load a package from GitHub using the git url. - > **Note:** To utilize this method, use the `upm` branch for each respective project. For Example: - > - > `https://github.com/XRTK/XRTK-Core.git#upm` -* [GIT Submodules](#git-submodules) - For advanced developers who want to use the Mixed Reality Toolkit in their live project and contribute directly back to the project in real time. - -In this article, we will walk through each approach to get you up and running, starting with the simplest first. - -## Register UPM Server in Project Settings - -Unity has now enabled the ability to register scoped registries through the Unity Editor and is now the recommended way to add custom solutions to your project, giving you visibility of the assets you have registered in your solution and where they come from. - -To start, you will need to register the XRTK Scoped registry in the Unity Package Manager, which you will find in the Package Manager Window (Window -> Package Manager) Advanced dropdown, as shown below: - -![Unity Package Manager Advanced options](../images/DownloadingTheXRTK/UnityPackageManager-Advanced.jpg) - -Once opened, you will see the Scoped Registry configuration (which is also available via the Project Settings window), from here, you can add the XRTK scoped registry using the details below: - -![Unity Package Manager Scoped Registries](../images/DownloadingTheXRTK/UnityPackageManager-ScopedRegistries.jpg) - -```text -Name: XRTK -URL: http://upm.xrtk.io:4873 -Scope(s): com.xrtk -``` - -Once entered, simply click "Save" and close the window. Upon returning to the Unity Package Manager, you can now select "My Registries" in the package filter on the left hand side drop down, as shown here: - -![Unity Package Manager My Registries](../images/DownloadingTheXRTK/UnityPackageManager-MyRegistries.jpg) - -Which will list all the current XRTK packages available for install. If you also wish to check out the latest "Preview packages", then simply check the "Show Preview Packages" option in the "Advanced" dropdown to display them, as shown here: - -![Unity Package Manager My Registries](../images/DownloadingTheXRTK/UnityPackageManager-XRTKRegistries.jpg) - -Once you are ready, simply install the XRTK and any platforms you wish to use in your project to get started. - -> We recommend starting with the **XRTK.SDK** package to begin with, which will also install the Core XRTK package, for the simplest path to begin with. - -Once you've installed all the packages you wish to utilize, you can continue to [Configuring your base scene](00-GettingStarted.md#configure-your-base-scene). - -## Automatic UPM Installation - -Our preferred deployment approach is to fully utilize [Unity's native package manager](https://docs.unity3d.com/Manual/upm-ui.html) to incorporate the Mixed Reality Toolkit in your solution, akin to the other modules Unity provides out of the box. This is the quickest and safest way to get Mixed Reality Toolkit in your solution and is automatically updated as new releases are published. - -Download the [XRTK-Core.unitypackage](https://github.com/XRTK/XRTK-Core/releases) asset, then drag and drop it into your project window. This adds an Mixed Reality Toolkit seed, that will automatically register the Mixed Reality Toolkit's scoped registry with the Unity package manager, then starts searching for the latest release packages on the upm server. - -![Seed Package](../images/DownloadingTheXRTK/XRTKAutoInstallAsset.png) - -### Install platform packages - -The Mixed Reality Toolkit will pull all of the known packages under `com.xrtk.*` and will dispaly them for you to easily install using the package picker window. The latest release pacakges are installed for you by default. - -![Package List](../images/DownloadingTheXRTK/XRTKPackageList.png) - -## Manual UPM Installation - -If you prefer to do things yourself, you can simply edit the ***manifest.json*** file in your Unity project and add an entry to register the Mixed Reality Toolkit and begin the download and installation into your project. - -To locate the folder the manifest is in, simply right-click in your Unity project folder on the "Packages" folder as shown below, then select the "Show in Explorer" option: - -![Context Menu](../images/DownloadingTheXRTK/LocatePackagesFolder.png) - -In the packages folder, you will see the specific Manifest.json file which you will need to open for editing using your favorite tool ([We prefer VSCode as it's awesome](https://code.visualstudio.com/)) - -Inside the Manifest file, you will see all the packages Unity provides "out of the box" listed: - -To this you simply need to add the extra entry for the Mixed Reality Toolkit as follows: - -```json -{ - "scopedRegistries": [ - { - "name": "XRTK", - "url": "http://upm.xrtk.io:4873/", - "scopes": [ - "com.xrtk" - ] - } - ], - "dependencies": { - "com.xrtk.core": "XX.XX.XX", - "com.xrtk.sdk": "XX.XX.XX", - ... - }, -} -``` - -Once it's updated and you return to Unity, the packages will be refreshed and all the defined Mixed Reality Toolkit packages will be downloaded and imported. - -## GIT Submodules - -Advanced developers and those wishing to contribute to the Mixed Reality Toolkit also have the option to directly import and edit the framework in their live projects using GIT Submodules. - -> **Note:** The XRTK-Core repository is setup to utilize submodules and is a great example of how to utilize this workflow. - -### Prerequisites - -* Each contributor to the project will need to have [git installed](https://git-scm.com/) on their machines with the proper environment variable set so the symbolic linker can find and execute git commands via the terminal. -* You'll need to install the core package via one of the [traditional installation](#automatic-upm-installation) paths before you can create symbolic links in your project using the editor context menu in later setup steps. - -### Setup Steps - -1. Initialize your project's repository with the XRTK-Core submodule. - > **Warning!** Don't recursively checkout submodules! Each package will need to be added as a submodule and replaced using the same steps listed below. -2. Checkout the `development` branch of the XRTK-Core submodule and make sure it's up to date and synced with any upstream changes. - > **Warning!** We strongly recommend you use do not use the **upm** branch to avoid breaking the symbolic links when switching between branches. -3. Create Symbolic links for each package you wish to directly modify in your project by using the project window context menu: `Symbolic Links/Create Link` - ![Symbolic Link Context Menu](../images/DownloadingTheXRTK/SymbolicLinks.png) -4. Using the symbolic link wizard, choose the source folder for the package you wish you replace with the editable version, and the target path for your project, then import the package. - ![Symbolic Link Wizard](../images/DownloadingTheXRTK/SymbolicLinkWizard.png) - > **Important:** It's strongly advised to use the `Packages` folder as your target path for all symbolically linked packages. -5. Repeat step 4 for each additional package you'd like to directly modify. - -This workflow works with any project using GIT and the symbolically linked folders can be customized to utilize any path available under source control. - ---- - -### Related Articles - -* [Getting Started](00-GettingStarted.md#getting-started-with-the-mixed-reality-toolkit) - * [Configuring your base scene](00-GettingStarted.md#configure-your-base-scene) - ---- - -### [**Raise an Information Request**](https://github.com/XRTK/XRTK-Core/issues/new?assignees=&labels=question&template=request_for_information.md&title=) - -If there is anything not mentioned in this document or you simply want to know more, raise an [RFI (Request for Information) request here](https://github.com/XRTK/XRTK-Core/issues/new?assignees=&labels=question&template=request_for_information.md&title=). diff --git a/articles/02-Configuration.md b/articles/02-Configuration.md deleted file mode 100644 index 2269a9b2c..000000000 --- a/articles/02-Configuration.md +++ /dev/null @@ -1,51 +0,0 @@ -# Configuring your project - -One of the goals of the Mixed Reality Toolkit was to greatly simplify how a project is configured, removing the need to hunt and search for specific objects and tweak configuration to change how a scene works, by consolidating the majority of the projects configuration in to a few top-level screens: - -![Mixed Reality Toolkit Configuration](../images/Configuration/MixedRealityToolkitConfiguration.png) - -While initially this may look a little complex, once a basic understanding is known, it is fairly easy to navigate. - -> **Note:** We are currently taking feedback on ways to improve the configuration navigation for the Mixed Reality Toolkit. Please feel free to suggest options in the XRTK Discord channel or raise an [RFI request](https://github.com/XRTK/XRTK-Core/issues/new?assignees=&labels=question&template=request_for_information.md&title=). - -When profiles are created by the XRTK, they are then placed in the following folder: - -> `Assets\XRTK.Generated` - -This path can be customized by updating your preference in the preferences window. - -## Overview of individual systems - -The Mixed Reality Toolkit will only ever have a single active configuration profile running at any time, which is referenced on the `MixedRealityToolkit` GameObject in your configured scene. - -![Main Configuration Profile](../images/Configuration/MixedRealityProfileView.png) - -From here you can configure all the core Systems and their individual profile settings: - -* [Camera System](systems/01-camera-system.md) -* [Input System](systems/02-input-system.md) -* [Boundary System](systems/03-boundary-system.md) -* [Teleport System](systems/04-teleporting-system.md) -* [Spatial Awareness System](systems/05-spatial-awareness-system.md) -* [Diagnostics System](systems/06-diagnostics-system.md) -* [Additional Service Providers](systems/07-additional-serivce-providers.md) - -## Customizing your project - -When you start a new project, we provide a copy each packages profiles with every system and service pre-configured and turned on, for a fully platform agnostic project. Each profile can be individually customized to your project's needs. - -> **Note:** If you'd like to make a copy of a profile to test out a specific configuration you can easily clone and assign the profile using the `clone` button that appears to the right of each profile field. -![Clone Profile Button](../images/Configuration/MixedRealityProfileCloneButton.png) - ---- - -### Related Articles - -* [Getting Started](00-GettingStarted.md#getting-started-with-the-mixed-reality-toolkit) - * [Building and running your mixed reality application](00-GettingStarted.md#build-and-play) - ---- - -### [**Raise an Information Request**](https://github.com/XRTK/XRTK-Core/issues/new?assignees=&labels=question&template=request_for_information.md&title=) - -If there is anything not mentioned in this document or you simply want to know more, raise an [RFI (Request for Information) request here](https://github.com/XRTK/XRTK-Core/issues/new?assignees=&labels=question&template=request_for_information.md&title=). diff --git a/articles/03-template-generator.md b/articles/03-template-generator.md deleted file mode 100644 index 7c4a01158..000000000 --- a/articles/03-template-generator.md +++ /dev/null @@ -1,49 +0,0 @@ -# Platform Template Generation - -New platforms are always welcomed with open arms! If you'd like to add your platform's support, this article will guide you through the process. - -## What you'll need - -The XRTK uses a [template repository](https://github.com/XRTK/PlatformTemplate) to quickly add new platform support. You'll need to either clone this or, if you're a contributor to the XRTK team directly, you can create a new repository using this as a template. - -## Getting Started - -1. Create a new repository on Github using the template repository: ![Create New Repository](../images/TemplateGeneration/NewRepoButton.png) -![New Repository Settings](../images/TemplateGeneration/NewRepoSettings.png) -2. Clone the new Repository ![Clone New Repository](../images/TemplateGeneration/CloneRepo.png)![Clone Local Repository](../images/TemplateGeneration/CloneLocalRepo.png) -3. Navigate to the root of the new repository and run `InitializeTempalte.ps1` using the command line ![Root Project Folder](../images/TemplateGeneration/ProjectRootExplorer.png) -4. Type the name of your new project and press `Enter` ![Run InitiazeTempalte](../images/TemplateGeneration/RunPowershell.png) -5. Stage, Commit, and Push the updated files directly to the new master branch origin ![Commit Files](../images/TemplateGeneration/CommitToMaster.png) -6. Create the development branch and push it to the origin ![Development Branch](../images/TemplateGeneration/DevelopmentBranch.png) - > This branch should be at the same checkout as your master branch - ![Development Checkout](../images/TemplateGeneration/DevelopmentCommit.png) -7. Open the new project in Unity and verify the project is setup correctly ![](../images/TemplateGeneration/LaunchUnity.png) -8. Create a new branch and push the updated changes to the meta files and generated links ![](../images/TemplateGeneration/BranchMetaFiles.png) ![Meta File Branch Commit](../images/TemplateGeneration/CommitToMetaFiles.png) -9. Back in GitHub, navigate to the project's settings - - Update the following features:![Disabled Features](../images/TemplateGeneration/DisableFeatures.png) - ![Merge Button](../images/TemplateGeneration/MergeButtonFeatures.png) -10. Update the default branch to `development` ![Default Branch](../images/TemplateGeneration/DefaultBranch.png) -11. Add branch protection rules to `master`, `development`, and `features/*` ![Branch Protection Rules](../images/TemplateGeneration/BranchProtections-01.png) - > **Note:** The required status checks will not show until the pipeline has ran at least once. You'll need to come back and enable this once the pipeline is setup and the initial PR is opened. - - > **Note:** The `features/*` rule will have have an additional setting `Allow deletions` so that they can be removed after the PR is compelted. -12. Create a new Pipeline in Azure Devops ![Create new pipeline](../images/TemplateGeneration/NewPipeline-01.png) - > **Note:** This step requires an admin to the XRTK to complete. If you're using the project template in your own devops envirionment then the steps are the same. -13. Select the GitHub repository in the pipeline wizard ![](../images/TemplateGeneration/NewPipeline-02.png) ![](../images/TemplateGeneration/NewPipeline-03.png) -14. Save the pipeline ![](../images/TemplateGeneration/NewPipeline-04.png) -15. Edit the pipeline and update the name and triggers ![](../images/TemplateGeneration/NewPipeline-05.png) ![](../images/TemplateGeneration/NewPipeline-06.png) ![](../images/TemplateGeneration/NewPipeline-07.png) -16. Save the pipeline, but **DO NOT RUN!** ![](../images/TemplateGeneration/NewPipeline-08.png) -17. Open a pull request in your new GitHub repository for the meta file changes ![](../images/TemplateGeneration/PullRequest-01.png) ![](../images/TemplateGeneration/PullRequest-02.png) - > **Note:** You should see status checks start once Pull Request is opened - - ![](../images/TemplateGeneration/PullRequest-03.png) - - > **Note:** Once the status checks have ran at least once, you can go back to your branch protection rules and add the check - - ![](../images/TemplateGeneration/BranchProtections-02.png) - ---- - -### [**Raise an Information Request**](https://github.com/XRTK/XRTK-Core/issues/new?assignees=&labels=question&template=request_for_information.md&title=) - -If there is anything not mentioned in this document or you simply want to know more, raise an [RFI (Request for Information) request here](https://github.com/XRTK/XRTK-Core/issues/new?assignees=&labels=question&template=request_for_information.md&title=). diff --git a/articles/04-KnownIssues.md b/articles/04-KnownIssues.md deleted file mode 100644 index f68ee5f04..000000000 --- a/articles/04-KnownIssues.md +++ /dev/null @@ -1,7 +0,0 @@ -# Known issues - -> Current known issues up to and including the 0.2 release - -Issue | Severity | Description | Mitigation -|---|---|---|---| -| | **Low** | Currently XRTK assets are copied from the individual packages to the Unity project for developers to use. Existing assets may potentially be overwritten, corrupted, or conflict if a copy already exists in the project. We're working on updating the import process to provide developers a clean copy they can modify safely without fear of this. | Developers are advised to make backups of their XRTK.Generated folder and assets before upgrading.| diff --git a/articles/Template.md b/articles/Template.md deleted file mode 100644 index 4e313fb1f..000000000 --- a/articles/Template.md +++ /dev/null @@ -1,26 +0,0 @@ -# Headline - -A brief overview of the tutorial. - -## What you'll need - -List previous steps if needed and a short list of required materials or skills. - -## Getting Started - -1. Step 1 -2. Step 2 - ---- - -### Related Articles - -* [Article 1]() -* [Article 2]() -* [Article 3]() - ---- - -### [**Raise an Information Request**](https://github.com/XRTK/XRTK-Core/issues/new?assignees=&labels=question&template=request_for_information.md&title=) - -If there is anything not mentioned in this document or you simply want to know more, raise an [RFI (Request for Information) request here](https://github.com/XRTK/XRTK-Core/issues/new?assignees=&labels=question&template=request_for_information.md&title=). diff --git a/articles/appendices/A01-CodingGuidelines.md b/articles/appendices/A01-CodingGuidelines.md deleted file mode 100644 index 0b6208b95..000000000 --- a/articles/appendices/A01-CodingGuidelines.md +++ /dev/null @@ -1,606 +0,0 @@ -# Coding Guidelines - -This document outlines the recommended coding guidelines for the Mixed Reality Toolkit. The majority of these suggestions follow the [recommended standards from MSDN](https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/inside-a-program/coding-conventions). - ---- - -## Script license information headers - -All scripts submitted to the Mixed Reality Toolkit should have the standard License header attached (unless covered by an existing license), exactly as shown below: - -```c# -// Copyright (c) XRTK. All rights reserved. -// Licensed under the MIT License. See LICENSE in the project root for license information. -``` - -Any script files submitted without a license header will be rejected. - -## Function / Method summary headers - -All public classes, structs, enums, functions, properties, fields posted to the XRTK should be described as to it's purpose and use, exactly as shown below: - -```c# - /// - /// The Controller definition defines the Controller as defined by the SDK / Unity. - /// - public struct Controller - { - /// - /// The ID assigned to the Controller - /// - public string ID { get; set; } - } -``` - -This ensures documentation is properly generated and disseminated for all all classes, methods, and properties. - ->Any script files submitted without proper summary tags will be rejected. - -## XRTK namespace rules - -The project structure adheres to a strict namespace culture of mapping the namespace 1-1 with the folder structure of the project. This ensures that classes are easy to discover and maintain. It also ensures the dependencies of any class are laid out in the beginning using definitions of the file. - -### Do: - -```c# -// Copyright (c) XRTK. All rights reserved. -// Licensed under the MIT License. See LICENSE in the project root for license information. - -namespace XRTK.Definitions -{ - /// - /// The ButtonAction defines the set of actions exposed by a controller. - /// Denoting the available buttons / interactions that a controller supports. - /// - public enum ButtonAction - { - } -} -``` - -Absolutely no class / struct / enum or other definition should be entered in to the project without the appropriate namespace definition. - -## Spaces vs Tabs - -Please be sure to use 4 spaces instead of tabs when contributing to this project. - -Additionally, ensure that spaces are added for conditional / loop functions like if / while / for - -### Don't: - -```c# -private Foo () // < - space between Foo and () -{ - if(Bar==null) // <- no space between if and () - { - DoThing(); - } - - while(true) // <- no space between while and () - { - Do(); - } -} -``` - -### Do: - - ```c# -private Foo() -{ - if (Bar==null) - { - DoThing(); - } - - while (true) - { - Do(); - } -} - ``` - -## Spacing - -Do not to add additional spaces between square brackets and parenthesis: - -### Don't: - -```c# -private Foo() -{ - int[ ] var = new int [ 9 ]; - Vector2 vector = new Vector2 ( 0f, 10f ); -} - -``` - -### Do: - -```c# -private Foo() -{ - int[] var = new int[9]; - Vector2 vector = new Vector2(0f, 10f); -} -``` - -## Naming Conventions - -Always use `PascalCase` for public / protected / virtual properties, and `camelCase` for private properties and fields. ->The only exception to this is for data structures that require the fields to be serialized by the `JsonUtility`. - -### Don't: - -```c# -public string myProperty; // <- Starts with a lower case letter -private string MyProperty; // <- Starts with an uppercase case letter -``` - -### Do: - - ```c# -public string MyProperty; -protected string MyProperty; -private string myProperty; - ``` - -## Access Modifiers - -Always declare an access modifier for all fields, properties and methods. - -> All Unity API Methods should be `private` by default, unless you need to override them in a derived class. In this case `protected` should be used. - -> Fields should always be `private`, with `public` or `protected` property accessors. - -> Use [expression-bodied members](https://github.com/dotnet/roslyn/wiki/New-Language-Features-in-C%23-6#expression-bodied-function-members) and [auto properties](https://github.com/dotnet/roslyn/wiki/New-Language-Features-in-C%23-6#auto-property-enhancements) where possible - -### Don't: - -```c# -// protected field should be private -protected int myVariable = 0; - -// property should have protected setter -public int MyVariable { get { return myVariable; } } - -// No public / private access modifiers -void Foo() { } -void Bar() { } -``` - -### Do: - - ```c# -public int MyVariable { get; protected set; } = 0; - -private void Foo() { } -public void Bar() { } -protected virtual void FooBar() { } - ``` - -## Use Braces - -Always use braces after each statement block, and place them on the next line. - -### Don't: - -```c# -private Foo() -{ - if (Bar==null) // <- missing braces surrounding if action - DoThing(); - else - DoTheOtherThing(); -} -``` - -### Don't: - -```c# -private Foo() { // <- Open bracket on same line - if (Bar==null) DoThing(); <- if action on same line with no surrounding brackets - else DoTheOtherThing(); -} -``` - -### Do: - -```c# -private Foo() -{ - if (Bar==true) - { - DoThing(); - } - else - { - DoTheOtherThing(); - } -} -``` - -## Public classes, structs, and enums should all go in their own files. - -If the class, struct, or enum can be made private then it's okay to be included in the same file. This avoids compilations issues with Unity and ensure that proper code abstraction occurs, it also reduces conflicts and breaking changes when code needs to change. - -### Don't: - -```c# -public class MyClass -{ - public struct MyStruct() { } - public enum MyEnumType() { } - public class MyNestedClass() { } -} -``` - -### Do: - - ```c# - // Private references for use inside the class only -public class MyClass -{ - private struct MyStruct() { } - private enum MyEnumType() { } - private class MyNestedClass() { } -} - ``` - - ### Do: - - MyStruct.cs - - ```c# - // Public Struct / Enum definitions for use in your class. Try to make them generic for reuse. -public struct MyStruct -{ - public string Var1; - public string Var2; -} -``` - -MyEnumType.cs - -```c# -public enum MuEnumType -{ - Value1, - Value2 // <- note, no "," on last value to denote end of list. -} -``` - -MyClass.cs - -```c# -public class MyClass -{ - private MyStruct myStructReference; - private MyEnumType myEnumReference; -} - ``` - -## Initialize Enums - -To ensure all Enums are initialized correctly starting at 0, .NET gives you a tidy shortcut to automatically initialize the enum by just adding the first (starter) value. - -> E.G. Value 1 = 0 (Remaining values are not required) - -### Don't: - -```c# -public enum Value -{ - Value1, <- no initializer - Value2, - Value3 -} -``` - -### Do: - - ```c# -public enum ValueType -{ - Value1 = 0, - Value2, - Value3 -} - ``` - -## Order Enums for appropriate extension. - -It is critical that if an Enum is likely to be extended in the future, to order defaults at the top of the Enum, this ensures Enum indexes are not affected with new additions. - -### Don't: - -```c# -public enum SDKType -{ - WindowsMR, - OpenVR, - OpenXR, - None, <- default value not at start - Other <- anonymous value left to end of enum -} -``` - -### Do: - - ```c# - /// - /// The SDKType lists the VR SDK's that are supported by the XRTK - /// Initially, this lists proposed SDK's, not all may be implemented at this time (please see ReleaseNotes for more details) - /// - public enum SDKType - { - /// - /// No specified type or Standalone / non-VR type - /// - None = 0, - /// - /// Undefined SDK. - /// - Other, - /// - /// The Windows 10 Mixed reality SDK provided by the Universal Windows Platform (UWP), for Immersive MR headsets and HoloLens. - /// - WindowsMR, - /// - /// The OpenVR platform provided by Unity (does not support the downloadable SteamVR SDK). - /// - OpenVR, - /// - /// The OpenXR platform. SDK to be determined once released. - /// - OpenXR - } -``` - -## End Enum names with "Type" - -Enum names should clearly indicate their nature by using the Type suffix. - -### Don't: - -```c# -public enum Ordering -{ - First, - Second, - Third -} -``` - -```c# -public enum OrderingEnum -{ - First, - Second, - Third -} -``` - -### Do: - -```c# -public enum OrderingType -{ - First = 0, - Second, - Third -} -``` - -## Review Enum use for Bitfields - -If there is a possibility for an enum to require multiple states as a value, e.g. Handedness = Left & Right. Then the Enum needs to be decorated correctly with BitFlags to enable it to be used correctly - -> The Handedness.cs file has a concrete implementation for this - -### Don't: - -```c# -public enum Handedness -{ - None, - Left, - Right -} -``` - -### Do: - - ```c# - [flags] -public enum HandednessType -{ - None = 0 << 0, - Left = 1 << 0, - Right = 1 << 1, - Both = Left | Right -} - ``` - -## Best Practices, including Unity recommendations - -Some of the target platforms of this project require us to take performance into consideration. With this in mind we should always be careful of allocating memory in frequently called code in tight update loops or algorithms. - -## Encapsulation - -Always use private fields and public properties if access to the field is needed from outside the class or struct. Be sure to co-locate the private field and the public property. This makes it easier to see, at a glance, what backs the property and that the field is modifiable by script. - -If you need to have the ability to edit your field in the inspector, it's best practice to follow the rules for Encapsulation and serialize your backing field. - ->The only exception to this is for data structures that require the fields to be serialized by the `JsonUtility`, where a data class is required to have all public fields for the serialization to work. - -### Don't: - -```c# -public float MyValue; -``` - -### Do: - - ```c# - // private field, only accessible within script (field is not serialized in Unity) - private float myValue; - ``` - -### Do: - - ```c# - // Enable private field to be configurable only in editor (field is correctly serialized in Unity) - [SerializeField] - private float myValue; - ``` - ---- - -### Don't: - -```c# -private float myValue1; -private float myValue2; - -public float MyValue1 -{ - get{ return myValue1; } - set{ myValue1 = value } -} - -public float MyValue2 -{ - get{ return myValue2; } - set{ myValue2 = value } -} -``` - - ### Do: - -```c# -// Enable field to be configurable in the editor and available externally to other scripts (field is correctly serialized in Unity) -[SerializeField] -[ToolTip("If using a tooltip, the text should match the public property's summary documentation, if appropriate.")] -private float myValue; // <- Notice we co-located the backing field above our corresponding property. - -/// -/// If using a tooltip, the text should match the public property's summary documentation, if appropriate. -/// -public float MyValue -{ - get{ return myValue; } - set{ myValue = value } -} -``` - -## Use `for` instead of `foreach` when possible - -In some cases a foreach is required, e.g. when looping over an IEnumerable. But for performance benefit, avoid foreach when you can. - -### Don't: - -```c# -foreach(var item in items) -``` - -### Do: - - ```c# -int length = items.length; // cache reference to list/array length -for(int i=0; i < length; i++) - ``` - -## Cache values and serialize them in the scene/prefab whenever possible. - -With the HoloLens in mind, it's best to optimize for performance and cache references in the scene or prefab to limit runtime memory allocations. - -### Don't: - -```c# -void Update() -{ - gameObject.GetComponent().Foo(Bar); -} -``` - -### Do: - - ```c# -[SerializeField] // To enable setting the reference in the inspector. -private Renderer myRenderer; - -private void Awake() -{ - // If you didn't set it in the inspector, then we cache it on awake. - if (myRenderer == null) - { - myRenderer = gameObject.GetComponent(); - } -} - -private void Update() -{ - myRenderer.Foo(Bar); -} - ``` - -## Cache references to materials, do not call the ".material" each time. - -Unity will create a new material each time you use ".material", which will cause a memory leak if not cleaned up properly. - -### Don't: - -```c# -public class MyClass -{ - void Update() - { - Material myMaterial = GetComponent().material; - myMaterial.SetColor("_Color", Color.White); - } -} -``` - -### Do: - - ```c# - // Private references for use inside the class only -public class MyClass -{ - private Material cachedMaterial; - - private void Awake() - { - cachedMaterial = GetComponent().material; - } - - void Update() - { - cachedMaterial.SetColor("_Color", Color.White); - } - - private void OnDestroy() - { - Destroy(cachedMaterial); - } -} - ``` - ->Alternatively, use Unity's "SharedMaterial" property which does not create a new material each time it is referenced. - -## Use [platform dependent compilation](https://docs.unity3d.com/Manual/PlatformDependentCompilation.html) to ensure the Toolkit won't break the build on another platform - -* Use `WINDOWS_UWP` in order to use UWP-specific, non-Unity APIs. This will prevent them from trying to run in the Editor or on unsupported platforms. This is equivalent to `UNITY_WSA && !UNITY_EDITOR` and should be used in favor of. -* Use `UNITY_WSA` to use UWP-specific Unity APIs, such as the `UnityEngine.XR.WSA` namespace. This will run in the Editor when the platform is set to UWP, as well as in built UWP apps. - -This chart can help you decide which `#if` to use, depending on your use cases and the build settings you expect. - -| | UWP IL2CPP | UWP .NET | Editor | -| --- | --- | --- | --- | -| `UNITY_EDITOR` | False | False | True | -| `UNITY_WSA` | True | True | True | -| `WINDOWS_UWP` | True | True | False | -| `UNITY_WSA && !UNITY_EDITOR` | True | True | False | -| `ENABLE_WINMD_SUPPORT` | True | True | False | -| `NETFX_CORE` | False | True | False | diff --git a/articles/appendices/A02-ChoosingXRTKvsMRTK.md b/articles/appendices/A02-ChoosingXRTKvsMRTK.md deleted file mode 100644 index 3c4368d88..000000000 --- a/articles/appendices/A02-ChoosingXRTKvsMRTK.md +++ /dev/null @@ -1,66 +0,0 @@ -# Choosing between XRTK and MRTK - -The choice between the XRTK and Microsoft's base MRTK today is a personal choice on the development path you, the developer or enterprise, wants to take when building your Mixed Reality vision. - -## TL;DR - -Both projects were originally designed/architected and built by the same developers over the course of 2018. From 2019 on, they have diverged under different principles, namely: - -* The XRTK is a community-based platform for building cross-platform Mixed Reality solutions (AR / VR / XR / MR) for a multitude of devices and runtime platforms. Creating solutions to meet the need of a much more diverse set of requirements required by cross-platform solutions. - -* The MRTK is currently only being developed to focus on the needs of Microsoft partners and new HL2 deployments, whilst still retaining the core multi-platform architecture it was designed with. Microsoft (for the time being) must focus its scope to achieve those deliverables. - -Both projects share a lot of the same base code and standards. As such, projects created in one framework are easily transferable to the other with minimal effort, the teams have ensured you are never locked into one framework, should you wish to switch. -There will be an increasing number of touchpoints as time goes by, but both teams are invested in keeping the two projects aligned to allow easy adoption of new features in either direction. - -## Core Differences - -Where the two frameworks truly diverge, is an adherence to the core architecture, which maintains a highly organized design, tuned to deliver the best performance within the Unity Game Engine (akin to Unity's new ECS/DOTS path). This architecture aims to break the chains to old monolithic approaches for building solutions in Unity. - -### These are the main differences in the XRTK - -| Difference | Comment | -|---|---| -| UPM (Unity Package Management), submodules and Unity asset delivery | XRTK offers a more Unity focused development channel than that of the enterprise-focused MRTK, utilizing Unity's built-in packaging system. Additionally, we have streamlined the developer pattern aligned with how community devs interact. -| [Locator pattern](https://medium.com/@stephen_hodgson/the-mixed-reality-framework-6fdb5c11feb2) based approach | The original architecture called for only a single Singleton to break the chains of the past. We encourage developers to follow us on this journey which will set you in good stead for Unity new ECS/DOTS pattern, but in a more Unity friendly way. | -| C# based service pattern utilizing strong interfaces | Everything in the XRTK adheres to the service pattern whereas the MRTK has diverged based on the requirements of its direct customers. | -| Separate repositories for extensions | The MRTK is a single repository, which has its uses, but limits it's flexibility when it comes to extensions and new platforms. The XRTK provides proper separation with multiple repositories to ensure that new functionality cannot break the core framework or new projects| -| Targeted education patterns for different audiences (Beginner / Intermediate / Advanced) | We are working closely with the community to drive educational content for all, ranging from the beginner to the intermediate and advanced user. Even opening an RFI (Request for Information) template on Github to ask anything | -| ECS / DOTS style separation of data and logic from core systems (Not yet ECS compatible) | We are ensuring that most (if not all) your code is easily transferable to Unity's ECS pattern and eventually even provide an ECS compatible version of the XRTK, future proofing the toolkit with new Unity developments. | - -> Note, this list will change over time as BOTH the XRTK and MRTK evolve. - -### In layman's terms - -The MRTK focuses on delivery to new and pre-existing partner solutions and as such, can be limited in the paths it can take. XRTK is more open and can easily adapt and educate the community to build almost any solution without compromise. - -## Supported Platforms - -Platform | Description | XRTK Support | MRTK Support ----|---|---|---| -OpenVR (Windows) | Running OpenVR projects on Windows / Windows 10 | Any Supported *OpenVR device | Any Supported *OpenVR device -OpenVR (Android) | Running OpenVR projects on Android |
  • Oculus GO
  • Oculus Quest
| **Not Supported** -UWP | Universal Windows Platform (Windows 10) |
  • Windows 10 WMR
  • HoloLens 1
  • HoloLens 2
  • (Hands pending)
|
  • Windows 10 WMR
  • HoloLens 1
  • HoloLens 2
-Lumin / Magic Leap | Magic leap support |
  • Magic Leap One
| **Not Supported** -Oculus (Windows) | Running native Oculus API on Windows |
  • Rift
  • Rift S
| **Not Supported** -Oculus (Android) | Running native Oculus API on Android |
  • Oculus Go
  • Oculus Quest
| **Not Supported** -Steam (Windows) | Running native Steam API on Windows |
  • Vive
  • Vive Pro
  • (planned)
  • Vive index (planned)
| **Not Supported** -ARCore (Android) | ARCore support / integration on Android | planned | tbc -ARKit (iOS) | ARKit support / integration | planned | tbc -||||| - -> *OpenVR* - we support all devices that can run OpenVR based builds, but only support controllers for Vive, Rift, Quest, Go and WMR currently - -## MRTK / XRTK parity - -The XRTK team still works closely with Microsoft to ensure that we maintain a level of parity between the two implementation patterns, ensuring that new Microsoft developments (such as HL2, hand tracking, etc.) are incorporated into the XRTK, in a fashion that complements the XRTK. Most features as they are ported will require some enhancement to comply to the XRTK architecture, but the Developer Product adoption will remain as close as we can to aid porting between frameworks. (in other words, we preserve the runtime whilst finely tuning the backend) - -## Feedback - -Being community-based, the XRTK is more open to adopting and reacting to feedback, whilst the MRTK has to ensure it complies with its core audience first when prioritizing updates. That being said, the MRTK team is trying to remain as open as it can to engage with developers. - -Have a question, [just log a new RFI Issue](https://github.com/XRTK/XRTK-Core/issues/new?assignees=&labels=question&template=request_for_information.md&title=ask%20us%20anything) (Request for Information) and we'll answer asap. All questions go to improve the documentation, so literally ask anything (about Mixed Reality!!) - -## Conclusion - -We'd like you to join the XRTK adventure in building a true community-based Mixed Reality Framework, whether you are trying it new for the first time or wanting to transfer from the MRTK. We will always ensure you have a voice and be on hand to help you through your Mixed Reality projects on whichever platforms are important to you and your project, whilst ensuring you can meet any new demands. diff --git a/articles/appendices/A03-Roadmap.md b/articles/appendices/A03-Roadmap.md deleted file mode 100644 index 958ac5c90..000000000 --- a/articles/appendices/A03-Roadmap.md +++ /dev/null @@ -1,46 +0,0 @@ -# Coding Guidelines - -This document outlines the current Roadmap for the Mixed Reality Toolkit. - -> Dates mentioned are only an outline and subject to change. - -![Public Roadmap](../../images/branding/Roadmap.png) - -## Release 0.2 - Q4 2020 - -- Updated to Unity 2019.4 LTS -- Hands Tracking for all supported platforms (HL2, Oculus, ML) -- Configuration stabilization - Now platform specific -- Many stabilization fixes -- New Platform system -- New Platform installer system (when new platforms added) -- Switch to GUID referenced assets, improves asset location and reduces compatibility issues -- Improved configuration screen designs -- Production status for foundation/core - -## Release 0.3 - QQ2 2021 - -- New UX system introduction (#658) -- New UX integration system introduction -- Universal Render Pipeline support -- Hands visualization (Hands mesh / model control) -- Review Configuration system pattern -- Hands / input recording -- Platform commanding - cross-platform safe outbound interactions (Haptics / Overlays / services) -- Gltf improvements (#36) -- Unity 2020 / XR SDK support - -## Release 0.4 - Q4 2021 - -- Extension of UX / Interaction system -- Spatial Understanding -- Spatial Awareness -- IoT integration -- Spacewalk demonstration -- XRTK Academy/University courses - ---- - -### [**Raise an Information Request**](https://github.com/XRTK/XRTK-Core/issues/new?assignees=&labels=question&template=request_for_information.md&title=) - -If there is anything not mentioned in this document or you simply want to know more, raise an [RFI (Request for Information) request here](https://github.com/XRTK/XRTK-Core/issues/new?assignees=&labels=question&template=request_for_information.md&title=). \ No newline at end of file diff --git a/articles/appendices/A04-FAQ.md b/articles/appendices/A04-FAQ.md deleted file mode 100644 index 37313261a..000000000 --- a/articles/appendices/A04-FAQ.md +++ /dev/null @@ -1,104 +0,0 @@ -# Mixed Reality Toolkit (XRTK) Frequently Asked Questions - -![The Mixed Reality Toolkit](../../images/Branding/XRTK_Logo_1200x250.png) - -## 1. Can I use the new Unity XR Management System? - -The XRTK is meant to be a replacement to the Unity XR Management system, and it is advised not to mix and match the two. - -Currently the Magic Leap platform requires the Magic Leap XR Plugin to actually make builds for the platform, the intention is to be fully independent of the Unity XR Management System in the future. - -## 2. How do I create a new Mixed Reality Toolkit Project? - -We recommend walking through the [Getting Started Guide](../00-GettingStarted.md) for a detailed understanding to get up and running. - -However, here is the TL;DR short version: - -1. Create a new Unity Project -2. Setup the Legacy XR settings in "Edit -> Project Settings -> Player -> XR Settings" for your current and any other platforms you want to run on -3. Add the XRTK UPM registry to Unity by Opening the Unity Package Manager (`Window -> Package manager`), selecting the `Advanced` drop down and clicking on `Advanced Project Settings`, then Adding the following details: - > Name: XRTK - > - > URL: http://upm.xrtk.io:4873 - > - > Scope(s): com.xrtk -4. Return to the Unity Package manager and select `My Registries` in the Sources) dropdown (next to the `+` symbol) -5. Select the XRTK.SDK and click Install -6. Close the Unity Package Manager and return to your scene -7. Select or create the scene you want to create Mixed Reality Content in -8. Select `Mixed Reality Toolkit -> Configure` in the Unity Menu. THis will update your scene and add the MixedRealityToolkit instance. -9. Done, you can now run your project for Windows Standalone -10. If you wish, you can install additional platforms, such as Oculus or Windows Mixed Reality from the Package Manager. once installed they will prompt to install their platform configuration in to your project (ENSURE that you have your Mixed Reality Scene open) -11. Provided you have configured the XR SDK settings for each platform correctly, the project will run - -## 3. What do I need to configure to make my Mixed Reality Project run? - -In short NONE, Once you import the default configuration, then the project will be available to run on any of the supported platforms, the only exceptions are: - -* For Quest on Android, you will also need to install an Android Manifest in to your project using `Mixed Reality Toolkit -> Tools -> Oculus -> Create Oculus Quest compatible AndroidManifest.xml` in the Editor menu to ensure the Android build properly targets the Quest. -* For Magic Leap, you will need to install the ML assets/XR package and follow Magic Leaps instructions for setting up the device. You will also need an AndroidManifest.xml file for the Magic Leap. - -## 4. Do I need to have all systems enabled in my Mixed Reality Toolkit configuration to run? - -The only systems which are Mandatory are the `Camera System` and the `Input System`. All other systems can be safely disabled if you wish and only enabled when you need them. - -## 5. I Configured my Mixed Reality Scene, but I do not have a `MixedRealityPlayspace` object. - -The Playspace is dynamically updated during edit/run time to meet the needs of the platform it is running on by the Camera system. If it is not being updated, check your `Camera Settings` are configured for your current platform. There must be a Camera System configured for the current Runtime platform and/Or the editor. - -The Default Camera system installed with the SDK should cover Windows Standalone and most other platforms, however check that its `Runtime Platforms` is configured correctly (and is present) - -![Default Camera Settings](../../images/FAQ/DefaultCameraSettings.png) - -Other platforms will install their own Camera Systems as required. - -## 6. I cannot click on my object in the scene - -For any object to be `Interactable` in a Mixed Reality scene, it must: - -* Have been registered with the `InputSystem` as a tracked object using - ```csharp - MixedRealityToolkit.InputSystem.Register(gameObject); - ``` - The XRTK provides a handy base class called `BaseInputHandler` for tracked scene objects -* Have a collider component added and configured relative to the objects dimensions. - If you are using `Physics Layers`, then ensure the layers used for your objects match those in the Input System configuration - -## 7. WHen I interact with an object all my scripts are firing, but I only want one to - -The Input System events have a concept called `Used`, this allows for scenarios where you want multiple scripts to receive an event and control when the chain of events to end. If you want any object to stop and event from propagating then you simply need to handle the `Used` property. - -> You should also check if an event is already used in your scripts before executing them. - -Here is a sample script: - -```csharp - public class MyEventScript : BaseInputHandler, IMixedRealityInputHandler - { - [SerializeField] - private MixedRealityInputAction myAction = MixedRealityInputAction.None; - - public void OnInputDown(InputEventData eventData) - { - if (eventData.used) - { - return; - } - - if (eventData.MixedRealityInputAction.Id == myAction.Id) - { - // Do something cool as the user pressed a button on this object - eventData.used = true; - } - } - } -``` - -In this script we use the `BaseInputHandler` to register the object in the scene and the `IMixedRealityInputHandler` to listen for Input Events. When an `InputDown` event is received: - -* We check if the event has already been used by another script -* We check if the Input Action configured for this script has been detected by the event -* If the action we were expecting happens and the event hasn't been used already, we perform something and then update the `Used` property of the event to `True` to stop other scripts using. - -This patten is very useful if you have multiple scripts attached to an object which perform different things based on the status of the object but only want ONE to work at a time. -The inverse is also true, if you skip checking for `Used` you can have things run regardless. diff --git a/articles/examples/examples.md b/articles/examples/examples.md deleted file mode 100644 index dd75b3d79..000000000 --- a/articles/examples/examples.md +++ /dev/null @@ -1,32 +0,0 @@ -# Mixed Reality Toolkit Examples library - -![The Mixed Reality Toolkit](../../images/Branding/XRTK_Logo_1200x250.png) - -The XRTK currently provides several demonstration scenes for the major components of the framework. These are not meant to be exhaustive, just walk-throughs of the capabilities of each area. - -As we move forward to 0.3, we are planning on some much larger example projects to demonstrate various ways the XRTK can be used to accelerate your Mixed Reality projects on all the platforms we support. - -1. Audio - - Some short demonstrations of spatial audio as it applies to a mixed Reality project, including audio occlusion -2. Boundary - - A simple demonstration of the Boundary system, using custom materials for the boundary walls and floor (Windows Mixed Reality only) -3. Custom Services - - An example custom service for registering with the Additional Service Providers registry, to demonstrate the simplicity in their implementation, as outlined in [A Practical Deep Dive into the Mixed Reality Framework](https://stephen-hodgson.medium.com/a-practical-deep-dive-into-the-mixed-reality-framework-a26401edb2aa) -5. Hands - - A practical walk through the hands implementation that works on all platforms that have hands support, including HoloLens 2, Oculus Quest. It has also been tested with Magic Leap (experimental) -6. Solvers - - A short demonstration scene showing the various solvers available in the XRTK, showing content that is attached to controllers, headsets or scene content. -7. Spatial Awareness - - (HoloLens only) - A short demonstration of the Spatial mapping and awareness system in the XRTK -8. Teleportation - - An example scene for testing various Teleportation methods, including hotspots for locking in a teleport event to a fixed location/rotation. -9. UX - - Several demonstration scenes of some basic UX elements, including Lines, Collections and Bounding boxes \ No newline at end of file diff --git a/articles/platforms/etee.md b/articles/platforms/etee.md deleted file mode 100644 index 39016dbee..000000000 --- a/articles/platforms/etee.md +++ /dev/null @@ -1,44 +0,0 @@ -# etee controllers (Advance information) - -The etee platform is currently in development and targeting the XRTK 0.3 release. - -## Requirements - -To develop for the etee controllers platform, you will need: - -* A Windows PC, Windows 7 or greater. -* The XRTK.SDK package installed (first) -* The XRTK.etee package (once a Mixed Reality Scene has been setup) - -## Platform considerations - -The Platform considerations will be updated once the platform is released - -## Capabilities - -The following capabilities are in development and likely to be available for the SteamVR platform - -1. etee hands controller Tracking - -## Quickstart (preview, subject to change) - -1. Create a new Unity Project -2. Add the XRTK UPM registry to Unity by Opening the Unity Package Manager (`Window -> Package manager`), selecting the `Advanced` drop down and clicking on `Advanced Project Settings`, then Adding the following details: - > Name: XRTK - > - > URL: http://upm.xrtk.io:4873 - > - > Scope(s): com.xrtk -3. Return to the Unity Package manager and select `My Registries` in the Sources) dropdown (next to the `+` symbol) -4. Select the `XRTK.SDK` and click `Install` -5. Install the `XRTK.etee` platform -6. When prompted, install the etee platform configuration in to your current project -7. Close the Unity Package Manager and return to your scene -8. Select or create the scene you want to create Mixed Reality Content in -9. Select `Mixed Reality Toolkit -> Configure` in the Unity Menu. This will update your scene and add the MixedRealityToolkit instance. - ---- - -### [**Raise an Information Request**](https://github.com/XRTK/XRTK-Core/issues/new?assignees=&labels=question&template=request_for_information.md&title=) - -If there is anything not mentioned in this document or you simply want to know more, raise an [RFI (Request for Information) request here](https://github.com/XRTK/XRTK-Core/issues/new?assignees=&labels=question&template=request_for_information.md&title=). diff --git a/articles/platforms/magicleap.md b/articles/platforms/magicleap.md deleted file mode 100644 index cfeac77f4..000000000 --- a/articles/platforms/magicleap.md +++ /dev/null @@ -1,65 +0,0 @@ -# Magic Leap - -The Magic Leap platform provides a wide range of capabilities able to run on Magic leap devices. - -## Requirements - -To develop for the Windows Mixed Reality platform, you will need: - -* A Windows 10 PC -* Visual Studio 2019 community edition or later -* The Magic Leap Lab - * Magic Leap SDK 0.24.1 -* The XRTK.SDK package (installed first!) -* The XRTK.Lumin package - -It is advantageous to also have a Magic Leap headset, however the Magic Leap Developer Lab also provides simulation capabilities for testing. - -## Platform considerations - -* Please check the Magic Leap Developer Lab guidance for correctly setting up your machine for Unity development -* Add `mlsdk` to your system environment variables with the path to your magic leap folder install -* Add the magic leap sdk path to your systems `path` environment variables - -|Variable|Value| -|---|---| -|`mlsdk`|`C:\users\<>\MagicLeap\mlsdk`| -|`path`|`C:\Users\<>\MagicLeap\mlsdk\v0.24.1`| - -## Capabilities - -The following capabilities are currently available for the Windows Mixed Reality platform - -1. Headset Tracking -2. Magic Leap controller -3. Spatial Awareness - -The following capabilities are not currently available or are in development - -1. Magic Leap Hands implementation - -## Quickstart - -1. Create a new Unity Project -2. Switch to the `Lumin` platform in `Build Settings` -3. Setup the Unity XR settings in "Edit -> Project Settings -> XR Plugin Management" for `Lumin` -4. Add the XRTK UPM registry to Unity by Opening the Unity Package Manager (`Window -> Package manager`), selecting the `Advanced` drop down and clicking on `Advanced Project Settings`, then Adding the following details: - > Name: XRTK - > - > URL: http://upm.xrtk.io:4873 - > - > Scope(s): com.xrtk -5. Return to the Unity Package manager and select `My Registries` in the Sources) dropdown (next to the `+` symbol) -6. Select the `XRTK.SDK` and click `Install` -7. Install the `XRTK.Lumin` platform -8. When prompted, install the Lumin platform configuration in to your current project -9. Close the Unity Package Manager and return to your scene -10. Select or create the scene you want to create Mixed Reality Content in -11. Select `Mixed Reality Toolkit -> Configure` in the Unity Menu. THis will update your scene and add the MixedRealityToolkit instance. -12. Enable the Magic Leap XR Loader in the XR SDK Manager - ---- - -### [**Raise an Information Request**](https://github.com/XRTK/XRTK-Core/issues/new?assignees=&labels=question&template=request_for_information.md&title=) - -If there is anything not mentioned in this document or you simply want to know more, raise an [RFI (Request for Information) request here](https://github.com/XRTK/XRTK-Core/issues/new?assignees=&labels=question&template=request_for_information.md&title=). diff --git a/articles/platforms/oculus.md b/articles/platforms/oculus.md deleted file mode 100644 index 079c12e52..000000000 --- a/articles/platforms/oculus.md +++ /dev/null @@ -1,65 +0,0 @@ -# Oculus - -The Oculus platform provides a wide range of capabilities able to run under the Oculus client for windows standalone and on Android with the Oculus Quest. - -## Requirements - -To develop for the Oculus platform, you will need: - -* A Windows PC, Windows 7 or greater or a Mac with 10.1 or greater (Quest/Android only) -* The Oculus client, installed and running -* An Oculus Device, Rift or Quest 1/2 -* The XRTK.SDK package installed (first) -* The XRTK.Oculus package (once a Mixed Reality Scene has been setup) - -## Platform considerations - -* Building for Oculus Quest is rather unique, if you have your Oculus Quest connected to your machine via a high speed USB3 cable and have the Oculus Client running, you can run Quest project in Windows Standalone mode directly on the Quest via Oculus Link, [please see Oculus Support for further details](https://support.oculus.com/444256562873335/). This will enable both controller and hands support for quick development. -* For oculus Rift, you simply need to ensure that `Oculus` is one of the configured platforms in the Unity legacy XR settings for the `Standalone` platform -* For Oculus Quest (on device), you will need the Android SDK/NDK installed with Unity and the `Oculus` platform configured in the Unity legacy XR settings for the `Android` platform. You also need to include an **`AndroidManifest.xml`** included as a Plugin in your Projects Asset folder (the XRTK provides one via the `MixedRealityToolkit` menu) -* For Oculus Quest (via Oculus Link), you will need the `Oculus` platform configured in the Unity legacy XR settings for the Standalone platform - -## Capabilities - -The following capabilities are currently available for the Oculus platform - -1. Headset Tracking -2. Oculus Touch controllers -3. Oculus Hands implementation (Editor with Oculus link and On Device only) -4. Oculus Native API, available via the `XRTK.Oculus.Plugins` namespace - -The following capabilities are not currently available or are in development - -1. Oculus Boundary (System boundary enabled by default) - -## Quickstart - -1. Create a new Unity Project -2. Setup the Legacy XR settings in "Edit -> Project Settings -> Player -> XR Settings" for `Oculus` to the Windows Standalone and Android platforms -3. Add the XRTK UPM registry to Unity by Opening the Unity Package Manager (`Window -> Package manager`), selecting the `Advanced` drop down and clicking on `Advanced Project Settings`, then Adding the following details: - > Name: XRTK - > - > URL: http://upm.xrtk.io:4873 - > - > Scope(s): com.xrtk -4. Return to the Unity Package manager and select `My Registries` in the Sources) dropdown (next to the `+` symbol) -5. Select the `XRTK.SDK` and click `Install` -6. Install the `XRTK.Oculus` platform -7. When prompted, install the Oculus platform configuration in to your current project -8. Close the Unity Package Manager and return to your scene -9. Select or create the scene you want to create Mixed Reality Content in -10. Select `Mixed Reality Toolkit -> Configure` in the Unity Menu. THis will update your scene and add the MixedRealityToolkit instance. -11. Install an Android Manifest in to your project using `Mixed Reality Toolkit -> Tools -> Oculus -> Create Oculus Quest compatible AndroidManifest.xml` in the Editor menu -12. Enable the `Mock HMD` XR Loader in the XR SDK Manager - -For Oculus Rift / Quest - -* Ensure the Oculus client is running before playing -* If using Oculus Quest via Oculus Link, ensure your cable is connected and you have started Oculus Link on the device. (We recommend disabling the Oculus home in the Oculus Client settings for rapid development, and saving memory on your dev machine) -* If using Oculus Quest for android, ensure your cable is connected and your device is setup for `Developer mode` from the Oculus mobile application used to configure the device. ALso ensure Oculus Link is NOT running when building and deploying for Android - ---- - -### [**Raise an Information Request**](https://github.com/XRTK/XRTK-Core/issues/new?assignees=&labels=question&template=request_for_information.md&title=) - -If there is anything not mentioned in this document or you simply want to know more, raise an [RFI (Request for Information) request here](https://github.com/XRTK/XRTK-Core/issues/new?assignees=&labels=question&template=request_for_information.md&title=). diff --git a/articles/platforms/platforms.md b/articles/platforms/platforms.md deleted file mode 100644 index 78af77389..000000000 --- a/articles/platforms/platforms.md +++ /dev/null @@ -1,63 +0,0 @@ -# Mixed Reality Toolkit Platforms - -A major component of the Mixed Reality Toolkit is the Platform definitions that was employed to both accurately determine what platforms have been added to the scope of the project and also to determine when a platform is active/running. - -## Current Platforms - -* [Magic Leap (Lumin)](magicleap.md) -* [Oculus](oculus.md) -* OpenVR - Default runtime platform for Windows Standalone, no special consideration. -* [Ultraleap](ultraleap.md) -* [Windows Mixed Reality (UWP)](windowsmixedreality.md) - -## In development - -* [etee](etee.md) -* [SteamVR](steamvr.md) -* [WebXR](webxr.md) - -## Platform Selection - -![Platform Selector](../../images/Configuration/Platforms/PlatformSelector.png) - -Wherever configuration can have a variant for platforms, to make the configuration only active when selected platforms are available, the Platform selector is employed. - -The list support multiple selections (for cases where a system or profile) can operate for multiple platforms. - -The list is dynamic and will update based on which XRTK platforms have been installed and what platforms are supported by the developers Unity installation. - -## Platform Identification - -To explain how this system basically operates, there is a `Platform` script in the UPM package runtime folder which implements the required interfaces for the platform system, including: - -```csharp - public override bool IsAvailable; -``` - -`IsAvailable` indicates whether the platform is available at runtime, usually checking for a vendor SDK or other API call which signifies the platform is available. - -```csharp - public override bool IsBuildTargetAvailable -``` - -`IsBuildTargetAvailable` indicates whether the platform is available at edit time and is a valid build target for the current Unity installation. - -It also includes a set of `PlatformOverrides` which help to specify which targets a platform should be available for by default. - -## Platform Default Configuration - -Included with each platform, a default platform configuration asset is provided to help automatically deploy the necessary configuration to operate a platform, usually including the Camera System and COntroller configuration, but can include others as required. This is located within the `Profiles` folder of the `XRTK.Generated` folder for the specific platform, for example: - -![Profiles](../../images/Configuration/Platforms/PlatformConfigurationDefaults.png) - -Once selected, the default configuration will appear in the inspector and a `Install Platform Service Configuration` button is available to install the configuration in to your current scene. - -![Install Platform Configuration](../../images/Configuration/Platforms/PlatformServiceConfigurationProfile.png) - -> **There must be an existing `MixedRealityToolkit` GameObject in the scene for the configuration installation to be successful.** - ---- - -### [**Raise an Information Request**](https://github.com/XRTK/XRTK-Core/issues/new?assignees=&labels=question&template=request_for_information.md&title=) - -If there is anything not mentioned in this document or you simply want to know more, raise an [RFI (Request for Information) request here](https://github.com/XRTK/XRTK-Core/issues/new?assignees=&labels=question&template=request_for_information.md&title=). diff --git a/articles/platforms/steamvr.md b/articles/platforms/steamvr.md deleted file mode 100644 index 84854b24e..000000000 --- a/articles/platforms/steamvr.md +++ /dev/null @@ -1,50 +0,0 @@ -# SteamVR (Advance information) - -The SteamVR platform is currently in development and targeting the XRTK 0.3 release. - -## Requirements - -To develop for the Steam platform, you will need: - -* A Windows PC, Windows 7 or greater. -* The SteamVR client, installed and running -* An SteamVR compatible Device -* The XRTK.SDK package installed (first) -* The XRTK.SteamVR package (once a Mixed Reality Scene has been setup) - -## Platform considerations - -The Platform considerations will be updated once the platform is released - -## Capabilities - -The following capabilities are in development and likely to be available for the SteamVR platform - -1. Headset Tracking -2. SteamVR supported controllers -3. Steam Index controllers implementation -4. Steam Actions Integration (New input system) - -## Quickstart (preview, subject to change) - -1. Create a new Unity Project -2. Add the XRTK UPM registry to Unity by Opening the Unity Package Manager (`Window -> Package manager`), selecting the `Advanced` drop down and clicking on `Advanced Project Settings`, then Adding the following details: - > Name: XRTK - > - > URL: http://upm.xrtk.io:4873 - > - > Scope(s): com.xrtk -3. Return to the Unity Package manager and select `My Registries` in the Sources) dropdown (next to the `+` symbol) -4. Select the `XRTK.SDK` and click `Install` -5. Install the `XRTK.SteamVR` platform -6. When prompted, install the SteamVR platform configuration in to your current project -7. Close the Unity Package Manager and return to your scene -8. Select or create the scene you want to create Mixed Reality Content in -9. Select `Mixed Reality Toolkit -> Configure` in the Unity Menu. THis will update your scene and add the MixedRealityToolkit instance. -10. Setup the Unity XR settings in "Edit -> Project Settings -> XR Plugin Management" for `SteamVR` - ---- - -### [**Raise an Information Request**](https://github.com/XRTK/XRTK-Core/issues/new?assignees=&labels=question&template=request_for_information.md&title=) - -If there is anything not mentioned in this document or you simply want to know more, raise an [RFI (Request for Information) request here](https://github.com/XRTK/XRTK-Core/issues/new?assignees=&labels=question&template=request_for_information.md&title=). diff --git a/articles/platforms/ultraleap.md b/articles/platforms/ultraleap.md deleted file mode 100644 index 9bd2c2aa6..000000000 --- a/articles/platforms/ultraleap.md +++ /dev/null @@ -1,39 +0,0 @@ -# UltraLeap Hands tracking - -The UltraLeap hand tracking support. - -## Requirements - -To develop using UltraLeap hand tracking, you will need: - -* A Windows PC, Windows 7 or greater. -* The XRTK.SDK package installed (first) -* The XRTK.UltraLeap package (once a Mixed Reality Scene has been setup) -* A UltraLeap device or simulator - -## Capabilities - -1. Hand Tracking - -## Quickstart - -1. Create a new Unity Project -2. Add the XRTK UPM registry to Unity by Opening the Unity Package Manager (`Window -> Package manager`), selecting the `Advanced` drop down and clicking on `Advanced Project Settings`, then Adding the following details: - > Name: XRTK - > - > URL: http://upm.xrtk.io:4873 - > - > Scope(s): com.xrtk -3. Return to the Unity Package manager and select `My Registries` in the Sources) dropdown (next to the `+` symbol) -4. Select the `XRTK.SDK` and click `Install` -5. Install the `XRTK.UltraLeap` platform -6. When prompted, install the SteamVR platform configuration in to your current project -7. Close the Unity Package Manager and return to your scene -8. Select or create the scene you want to create Mixed Reality Content in -9. Select `Mixed Reality Toolkit -> Configure` in the Unity Menu. This will update your scene and add the MixedRealityToolkit instance. - ---- - -### [**Raise an Information Request**](https://github.com/XRTK/XRTK-Core/issues/new?assignees=&labels=question&template=request_for_information.md&title=) - -If there is anything not mentioned in this document or you simply want to know more, raise an [RFI (Request for Information) request here](https://github.com/XRTK/XRTK-Core/issues/new?assignees=&labels=question&template=request_for_information.md&title=). diff --git a/articles/platforms/webxr.md b/articles/platforms/webxr.md deleted file mode 100644 index 75f13812c..000000000 --- a/articles/platforms/webxr.md +++ /dev/null @@ -1,30 +0,0 @@ -# WebXR platform (Advance information) - -The WebXR platform is currently in development and targeting the XRTK 0.3 release. - -## Requirements - -As WebXR is purely web based, the requirements will be very minimal. This will be updated as development continues. - -## Platform considerations - -The Platform considerations will be updated once the platform is released. - -## Capabilities - -The following capabilities are in development and likely to be available for the WebXR platform - -1. Headset Tracking -2. WebXR controllers -3. WebXR Hands tracking - -## Quickstart (preview, subject to change) - -The quickstart guide will be updated once the platform is released. - ---- - -### [**Raise an Information Request**](https://github.com/XRTK/XRTK-Core/issues/new?assignees=&labels=question&template=request_for_information.md&title=) - -If there is anything not mentioned in this document or you simply want to know more, raise an [RFI (Request for Information) request here](https://github.com/XRTK/XRTK-Core/issues/new?assignees=&labels=question&template=request_for_information.md&title=). - diff --git a/articles/platforms/windowsmixedreality.md b/articles/platforms/windowsmixedreality.md deleted file mode 100644 index dc223da4b..000000000 --- a/articles/platforms/windowsmixedreality.md +++ /dev/null @@ -1,72 +0,0 @@ -# Windows Mixed Reality - -The Windows Mixed Reality platform provides a wide range of capabilities able to run under Windows 10 machines with a Mixed Reality headset and the HoloLens 1 / 2 devices. - -## Requirements - -To develop for the Windows Mixed Reality platform, you will need: - -* A Windows 10 PC -* Visual Studio 2019 community edition or greater -* The Mixed Reality Portal, installed and running (for Mixed Reality Headset) -* The XRTK.SDK package installed (first) -* The XRTK.WindowsMixedReality package (once a Mixed Reality Scene has been setup) - -It is advantageous to also have a Mixed Reality headset, however the Mixed Reality Portal also provides simulation capabilities for testing. - -For HoloLens development: - -* The development tools are now included with the Windows 10 SDKs -* (Optionally) if you do not have a device, you can install the [HoloLens Emulator](https://docs.microsoft.com/en-us/windows/mixed-reality/develop/platform-capabilities-and-apis/using-the-hololens-emulator) -* The [Hololens Emulator guide](https://docs.microsoft.com/en-us/windows/mixed-reality/develop/platform-capabilities-and-apis/using-the-hololens-emulator) also covers the necessary steps to deploy to a HoloLens Device (or simulator) - -## Platform considerations - -* For OpenVR on Windows Mixed Reality, you simply need to ensure that `OpenVR` is one of the configured platforms in the Unity legacy XR settings for the `Standalone` platform -* For Windows Mixed Reality on UWP, you simply need to ensure that `Windows Mixed Reality` is one of the configured platforms in the Unity legacy XR settings for the `UWP` platform. This is also required for HoloLens development. - -## Capabilities - -The following capabilities are currently available for the Windows Mixed Reality platform - -1. Headset Tracking -2. Boundary tracking -3. Windows Mixed Reality controllers (Windows 10 only) -4. HoloLens Hands implementation (HoloLens 2 only) -5. Spatial Awareness (HoloLens 1 & 2 only) - -## Quickstart - -1. Create a new Unity Project -2. Switch to the `UWP` platform in `Build Settings` -3. Setup the Legacy XR settings in "Edit -> Project Settings -> Player -> XR Settings" for `Windows Mixed Reality` to the `UWP` platform -4. Add the XRTK UPM registry to Unity by Opening the Unity Package Manager (`Window -> Package manager`), selecting the `Advanced` drop down and clicking on `Advanced Project Settings`, then Adding the following details: - > Name: XRTK - > - > URL: http://upm.xrtk.io:4873 - > - > Scope(s): com.xrtk -5. Return to the Unity Package manager and select `My Registries` in the Sources) dropdown (next to the `+` symbol) -6. Select the `XRTK.SDK` and click `Install` -7. Install the `XRTK.WindowsMixedReality` platform -8. When prompted, install the Windows Mixed Reality platform configuration in to your current project -9. Close the Unity Package Manager and return to your scene -10. Select or create the scene you want to create Mixed Reality Content in -11. Select `Mixed Reality Toolkit -> Configure` in the Unity Menu. This will update your scene and add the MixedRealityToolkit instance. -12. Enable the `WindowsMixedReality` XR Loader in the XR SDK Manager - -For Windows 10 - -* Ensure the Mixed Reality Portal is running before playing -* For builds, you will need to open the Visual Studio project and package the solution for Windows 10 - -For HoloLens 1 / 2 - -* Ensure you have correctly setup the Device portal on the device and it is accessible -* For builds, you will need to open the Visual Studio project and package the solution for HoloLens - ---- - -### [**Raise an Information Request**](https://github.com/XRTK/XRTK-Core/issues/new?assignees=&labels=question&template=request_for_information.md&title=) - -If there is anything not mentioned in this document or you simply want to know more, raise an [RFI (Request for Information) request here](https://github.com/XRTK/XRTK-Core/issues/new?assignees=&labels=question&template=request_for_information.md&title=). diff --git a/articles/systems/01-camera-system.md b/articles/systems/01-camera-system.md deleted file mode 100644 index 5ac02fdba..000000000 --- a/articles/systems/01-camera-system.md +++ /dev/null @@ -1,48 +0,0 @@ -# The Camera System - -The camera system is the entry point for any platform and sets up the working environment required for that platform. - -This is broken up in to THREE distinct components: - -## Mixed Reality Root configuration system - -In the Root configuration, the specific implementation for the camera system is selected, which defaults to the XRTK implementation for the camera system. In most cases this does not need to be touched, however, advanced users can replace it with their own system if they wish. - -![](../../images/Configuration/CameraSystem/CameraSystemProfile.png) - -## Camera System platform configuration - -The Camera system for the XRTK allows for different implementations to be utilized for different runtime or build platforms. Each platform provided by the XRTK includes a default camera system configuration for that platform which can be customized if you wish: - -![](../../images/Configuration/CameraSystem/CameraSystemSettings.png) - -The configuration holds: - -* The default configuration - a Camera profile to be used where none is specified, a fallback default -* Additional Camera Profile variants, which specifies the Name, Type, Camera Profile and platforms this variant is meant to run on. - -> Check out all the [Platforms that are available to configure](../platforms/platforms.md). - -## Camera Profile - -Each specific camera profile (as shown below) holds the configuration options to control the camera settings for the XRTK environment. Please note, that some platforms may provide additional options specific to that platform as required. - -![](../../images/Configuration/CameraSystem/CameraSystemOptions.png) - -## Further notes - -For the most part, you should not need to alter the camera system configuration unless required, or you wish to manually add a new Camera System platform manually (Each platform should automatically install the required Camera System for each platform) - ---- - -### Related Articles - -* [Getting Started](../00-GettingStarted.md#getting-started-with-the-mixed-reality-toolkit) -* [Configuration](../02-Configuration.md) -* [XRTK Platforms](../platforms/platforms.md) - ---- - -### [**Raise an Information Request**](https://github.com/XRTK/XRTK-Core/issues/new?assignees=&labels=question&template=request_for_information.md&title=) - -If there is anything not mentioned in this document or you simply want to know more, raise an [RFI (Request for Information) request here](https://github.com/XRTK/XRTK-Core/issues/new?assignees=&labels=question&template=request_for_information.md&title=). diff --git a/articles/systems/02-input-system.md b/articles/systems/02-input-system.md deleted file mode 100644 index 839e6608f..000000000 --- a/articles/systems/02-input-system.md +++ /dev/null @@ -1,130 +0,0 @@ -# The Input System - -The Input System may look daunting, however, it is easy to master once the principles for how the system works. -In short, the Input System manages the flow of data from inputs such as controllers, headsets and more, then organizes all the data in to XRTK components for distributing through your project. This greatly reduces the complexity of dealing with cross-platform input from many sources. - -In short, the only thing your project needs to handle are: - -* What things can happen in your project (what we call Input Actions) -* And, what should happen then those things happen - -> For a shortcut to the activities you might want to configure in the Input System, check the [Conclusion](#conclusion) section below. - -## Mixed Reality Root configuration system - -In the Root configuration, the specific implementation for the camera system is selected, which defaults to the XRTK implementation for the Input System. In most cases this does not need to be touched, however, advanced users can replace it with their own system if they wish. - -![](../../images/Configuration/InputSystem/InputSystemProfile.png) - -## Input System platform configuration - -The core settings for the Input System allow the configuration of various elements which alter the behavior of the Input System, these include: - -* [Global Pointer Settings](#global-pointer-settings) -* [Global Hand Settings](#global-hand-settings) -* [Input Actions](#input-actions) -* Speech Commands -* Gestures -* [Controller Actions](#controller-actions) -* [Controller Definitions](#controller-definitions) - -These are all grouped together under a singe Input System profile for easy reuse between projects. - -![](../../images/Configuration/InputSystem/InputSystemSettings.png) - -## Global Pointer Settings - -Pointers provide an invisible line between your controller (or head) in to a scene to interact with other objects. These default settings provide the global defaults for the Distance, Physics layer masks and colours users by the pointers, as well as whether they are drawn in the scene or not. - -![](../../images/Configuration/InputSystem/GlobalPointerSettings.png) - -## Global Hand Settings - -Providing default settings that control both the rendering and physical nature of hands. This also holds the default pose configuration available to hands while in use in the environment. - -![](../../images/Configuration/InputSystem/GlobalHandSettings.png) - -## Input Actions - -Input Actions are a crucial element of cross-platform XR development. With the increasing number of controllers, inputs, buttons and sensors being made available to devices, it is not practical to keep adding more complexity within your Mixed Reality solution. - -Input Actions solve this by simply defining logical actions or events that can happen in your solution, e.g. Grabbing, clicking, tapping, pulling, etc and using them within your project so that when that event is received, you can perform the action related to that action. - -The list here simply defines what actions are available in your solution and the kind of data expected when that action occurs, e.g. A boolean for a button (on/off), a range from a trigger or a full 6dof movement. - -> See [Controller Actions](#controller-actions) for how these Actions are then mapped to the various controllers you wish to support. - -![](../../images/Configuration/InputSystem/InputActions.png) - -## Controller Actions - -With your actions defined for your project, the next logical step is to decide which inputs on which controllers would provide those actions. Through the XRTK's Input System, there are two ways to achieve this, the fist being the simpler `Controller Actions` list, which highlights all the currently known controllers that have been configured for your project. From here you can select each type of controller and which hand the controller is used in to assign what input does what. - -You can also see the individual controllers view in the [Controller Profile](#controller-profile) section below. - -![](../../images/Configuration/InputSystem/ShortcutControllerActionMappings.png) - -## Controller Definitions - -For a more detailed look at what controllers and inputs are configured, and to also add or remove controllers from your current configuration, the IMixedRealityInputDataProvider Configuration Options list out in detail what is currently available and for which platform they are available on. - -![](../../images/Configuration/InputSystem/ConfiguredControllerDataProviders.png) - -Expanding a profile shows the details for each provider, including: - -* Its name -* The concrete implementation for the controller provider -* The configuration profile for the controller provider -* The platforms the provider is registered for. - -![](../../images/Configuration/InputSystem/ControllerDataProvider.png) - -> Check out all the [Platforms that are available to configure](../platforms/platforms.md). - -From here you can either remove a controller profile completely, or change which platforms it is active for. - -> Be aware, the XRTK will do exactly as it is told in regards to the configuration applied, so if you have two competing controllers active for a specific platform at the same time, you will get multiple controllers in the scene, e.g. OpenVR and Oculus controllers. - -## Controller Data Profile configuration - -Looking at the configuration for an individual Controller Profile will show you two views: - -* Basic (default) - the same simple controller button view as [Controller Actions](#controller-actions) showing only those specific to this provider. -* Advanced - More detailed views of the configuration behind the controllers. - -![](../../images/Configuration/InputSystem/ControllerDataProviderProfile.png) - -## Controller Profile - -When you open a Controller Profile, you will get a nice graphical view of the controller and the inputs available for the device based on its hardware and the SDK of the vendor. Here you can chose from the list of [Input Actions](#input-actions) you have configured for the project, with each input filtering those Actions by what the Input on the controller can support, for example: - -* Buttons can support only `Digitial` actions (boolean), button down and button up. -* Triggers support `Single Axis` or `float` data, giving a range, usually between 0 and 1 for how uch the input is pressed. -* Touch pads and ThumbSticks support `Dual Axis` or `Vector2` data, giving two coordinates in the X and Y planes based on how the input is manipulated -* We also allow assigning an action to the pose (6dof, position and rotation) of the controller, which relates to the controllers position and rotation in relation to the headset. An alternate pose is also available for grip, or offset position provided by the vendor for where the user grips the controller. - -You may also see a mix of other options where the vendor provides more capabilities, such as Near and Touched events that will show up on those controllers, e.g. Oculus. Some inputs also have dual options, such as thumbsticks, which can also be pressed, allowing for an alternate action to be assigned. - -![](../../images/Configuration/InputSystem/ControllerProfile.png) - -## Conclusion - -There is a lot of configuration available in the Input System, most of which will not need to be touched, but here are some common tasks which can be achieved easily. - -* Changing the list of actions specific to your project in the [Input Actions](#input-actions) configuration -* Altering the Input Action mappings for the registered controllers in [Controller Actions](#controller-actions) -* Removing controllers that are not needed in [Controller Definitions](#controller-definitions) - ---- - -### Related Articles - -* [Getting Started](../00-GettingStarted.md#getting-started-with-the-mixed-reality-toolkit) -* [Configuration](../02-Configuration.md) -* [XRTK Platforms](../platforms/platforms.md) - ---- - -### [**Raise an Information Request**](https://github.com/XRTK/XRTK-Core/issues/new?assignees=&labels=question&template=request_for_information.md&title=) - -If there is anything not mentioned in this document or you simply want to know more, raise an [RFI (Request for Information) request here](https://github.com/XRTK/XRTK-Core/issues/new?assignees=&labels=question&template=request_for_information.md&title=). diff --git a/articles/systems/03-boundary-system.md b/articles/systems/03-boundary-system.md deleted file mode 100644 index 25c6895a8..000000000 --- a/articles/systems/03-boundary-system.md +++ /dev/null @@ -1,41 +0,0 @@ -# The Boundary System - -The boundary system provides a solution specific boundary implementation for use in your projects, this takes a feed from the vendor supplied data for the boundary and allows you to apply custom textures / details for your project. - -## Mixed Reality Root configuration system - -In the Root configuration, the specific implementation for the boundary system is selected, which defaults to the XRTK implementation for the boundary system. In most cases this does not need to be touched, however, advanced users can replace it with their own system if they wish. - -![](../../images/Configuration/BoundarySystem/BoundarySystemProfile.png) - -## Boundary System platform configuration - -The Boundary system for the XRTK allows for different implementations to be utilized for different runtime or build platforms. Where an interface in to the Vendor implementation for a boundary exists, the XRTK will provide an adapter/provider, however, not all platforms do. -Where a boundary provider is available, you can customize how the XRTK manages the boundary area as you wish: - -![](../../images/Configuration/BoundarySystem/BoundarySystemSettings.png) - -The configuration holds: - -* Display settings - Options to show the boundary (or not), as well as its height, physics layer and default material. -* Floor settings - Options to show the floor (or not), as well as the material to be used for the floor. -* Wall settings - Options to show the boundary walls (or not), as well as the material to be used for the walls. -* Ceiling settings - Options to show the ceiling (or not), as well as the material to be used for the ceiling. - -## Further notes - -For the most part, you should not need to alter the boundary system configuration unless required. If you wish, you could implement a custom boundary provider to customize the boundary experience or have an artificial boundary. - ---- - -### Related Articles - -* [Getting Started](../00-GettingStarted.md#getting-started-with-the-mixed-reality-toolkit) -* [Configuration](../02-Configuration.md) -* [XRTK Platforms](../platforms/platforms.md) - ---- - -### [**Raise an Information Request**](https://github.com/XRTK/XRTK-Core/issues/new?assignees=&labels=question&template=request_for_information.md&title=) - -If there is anything not mentioned in this document or you simply want to know more, raise an [RFI (Request for Information) request here](https://github.com/XRTK/XRTK-Core/issues/new?assignees=&labels=question&template=request_for_information.md&title=). diff --git a/articles/systems/04-teleporting-system.md b/articles/systems/04-teleporting-system.md deleted file mode 100644 index d74a62b57..000000000 --- a/articles/systems/04-teleporting-system.md +++ /dev/null @@ -1,58 +0,0 @@ -# The Teleport System - -The Teleport system is an optional system used to transport users through your Mixed Reality environment. It has been designed to be flexible and extensible to cope with the varying needs of different projects to locate a player throughout their scenes. - -> Please note, this is the initial implementation for teleporting and a significant update will be coming in XRTK 0.3 with a new Locomotion system, which will further extend this systems capabilities. -> [You can read more about it here](https://github.com/XRTK/XRTK-Core/issues/730) - -## Mixed Reality Root configuration system - -In the Root configuration, the specific implementation for the Teleport system is selected, which defaults to the XRTK implementation for the Teleport system. In most cases this does not need to be touched, however, advanced users can replace it with their own system if they wish. - -![](../../images/Configuration/TeleportSystem/TeleportSystemProfile.png) - -## Teleport System platform configuration - -The Teleport system for the XRTK allows for different implementations to be utilized for different runtime or build platforms. Each platform provided by the XRTK includes a default Teleport system configuration for that platform which can be customized if you wish: - -![](../../images/Configuration/TeleportSystem/TeleportSystemSettings.png) - -The configuration holds: - -* Teleport Provider - Select the system to be used to transport the user through the environment when a Teleport event is received. -* Teleport Action - The Input Action that the teleport system will used to enact a Teleportation event. **Please Note** that some action provide additional data and capabilities, such as a Dual-Axis action will enable Teleportation with rotation and the ability to force rotate the view. -* Teleport Data Provider configuration - The data provider list available to the Teleport system, primarily to validate whether a teleport location is valid or not. - -> Check out all the [Platforms that are available to configure](../platforms/platforms.md). - -## Mixed Reality Teleport data providers - -The Teleport system allows for different validation methods to be used based on the capabilities of the target platform, these validation profiles are defined in this data providers list, indicating the teleport validation for the platform and the specific platform the system is applicable for. - -![](../../images/Configuration/TeleportSystem/TeleportSystemDataProviders.png) - -## Teleport Validation Profile - -The Teleport Validation profile allows you to configure the requirements for a successful teleport, checking the user has selected a valid target by the physics properties or the selection such as physics layers, exclusion layers, max angle and the distance from the origin. These are used by the teleport system to ensure a teleport event is safe (within the bounds of the project) to perform. - -![](../../images/Configuration/TeleportSystem/TeleportValidationOptions.png) - -## Further notes - -If `None` is selected as the Teleport Provider for the project, then by default, the XRTK will perform an "Instant" teleport when a teleport is successful. We also provide a "Fading Teleport" method in the SDK for use and reference should you wish to build your own Teleport method. - -For the most part, you should not need to alter the Teleport system configuration unless required. - ---- - -### Related Articles - -* [Getting Started](../00-GettingStarted.md#getting-started-with-the-mixed-reality-toolkit) -* [Configuration](../02-Configuration.md) -* [XRTK Platforms](../platforms/platforms.md) - ---- - -### [**Raise an Information Request**](https://github.com/XRTK/XRTK-Core/issues/new?assignees=&labels=question&template=request_for_information.md&title=) - -If there is anything not mentioned in this document or you simply want to know more, raise an [RFI (Request for Information) request here](https://github.com/XRTK/XRTK-Core/issues/new?assignees=&labels=question&template=request_for_information.md&title=). diff --git a/articles/systems/05-spatial-awareness-system.md b/articles/systems/05-spatial-awareness-system.md deleted file mode 100644 index 9a0138c7c..000000000 --- a/articles/systems/05-spatial-awareness-system.md +++ /dev/null @@ -1,68 +0,0 @@ -# The Spatial Awareness System - -The Spatial Awareness system is primarily used by Augmented Reality devices such as the Hololens 1 & 2 to provide a map or mesh of the surroundings as detailed by the sensors on the device. - -> If your project is purely a Virtual Reality (VR) project, you san safely disable this system in the Mixed Reality Root configuration by unchecking the box next to the system. - -## Mixed Reality Root configuration system - -In the Root configuration, the specific implementation for the Spatial Awareness system is selected, which defaults to the XRTK implementation for the Spatial Awareness system. In most cases this does not need to be touched, however, advanced users can replace it with their own system if they wish. - -![](../../images/Configuration/SpatialAwareness/SpatialAwarenessSystemProfile.png) - -## Spatial Awareness System platform configuration - -The Spatial Awareness system for the XRTK allows for different implementations to be utilized for different runtime or build platforms. Each platform provided by the XRTK includes a default Spatial Awareness system configuration for that platform which can be customized if you wish: - -![](../../images/Configuration/SpatialAwareness/SpatialAwarenessSystemSettings.png) - -The configuration holds: - -* The startup Mesh Display option, details wether the mesh should be hidden on startup, visible (overlay), Occlude (display over scene) or just as as a collision mesh on top of the real world. -* A Global Mesh Observer Profile (see below) -* A Surface Mesh observer Profile -* A list of data providers / adapters for each implemented platform - -> Check out all the [Platforms that are available to configure](../platforms/platforms.md). - -## Global Mesh Observer Profile - -The mesh Observer profile defines how often the spatial mesh should be updated in the current view and what materials to use to display/update the detected mesh. It also allows the mesh generation to begin on startup or on command. - -![](../../images/Configuration/SpatialAwareness/SpatialMeshObserverOptions.png) - -## Surface Mesh observer Profile - -The surface observer, much like the Mesh observer, allows configuration for the frequency for how often surfaces should be queries from the vendor platform and allows the application of different materials per type of surface detected, from Walls, to floors, ceilings and platforms (tables). Like the mesh observer, this can run on startup or on command. - -![](../../images/Configuration/SpatialAwareness/SpatialSurfaceObserverOptions.png) - -## Mixed Reality Spatial Awareness data providers - -Each platform that provides data to the Spatial Awareness system is defined in this data providers list, indicating the system implementation for the platform and the specific platform the system is applicable for. - -You can also provide override configuration for the above options should you wish to, to have the solution behave differently for different platforms. - -![](../../images/Configuration/SpatialAwareness/SpatialAwarenessDataProviders.png) - -> Check out all the [Platforms that are available to configure](../platforms/platforms.md). - -## Further notes - -As indicated, the Spatial Awareness system is only applicable to AR solutions and can be safely disabled for VR projects, if you have an XR solution, the Spatial Awareness system will simply be inoperative due to a lack of data from the platform and can safely be left enabled. - -For the most part, you should not need to alter the Spatial Awareness system configuration unless required. - ---- - -### Related Articles - -* [Getting Started](../00-GettingStarted.md#getting-started-with-the-mixed-reality-toolkit) -* [Configuration](../02-Configuration.md) -* [XRTK Platforms](../platforms/platforms.md) - ---- - -### [**Raise an Information Request**](https://github.com/XRTK/XRTK-Core/issues/new?assignees=&labels=question&template=request_for_information.md&title=) - -If there is anything not mentioned in this document or you simply want to know more, raise an [RFI (Request for Information) request here](https://github.com/XRTK/XRTK-Core/issues/new?assignees=&labels=question&template=request_for_information.md&title=). diff --git a/articles/systems/06-diagnostics-system.md b/articles/systems/06-diagnostics-system.md deleted file mode 100644 index 28bc9fff7..000000000 --- a/articles/systems/06-diagnostics-system.md +++ /dev/null @@ -1,45 +0,0 @@ -# The Diagnostics System - -The Diagnostics system a very useful tool for showing critical diagnostics information in a running scene, it comes in very handy while debugging and sourcing scene based performance issues. - -## Mixed Reality Root configuration system - -In the Root configuration, the specific implementation for the Diagnostics system is selected, which defaults to the XRTK implementation for the Diagnostics system. In most cases this does not need to be touched, however, advanced users can replace it with their own system if they wish. - -![Diagnostics System Profile](../../images/Configuration/Diagnostics/DiagnosticsSystemProfile.png) - -## Diagnostics System platform configuration - -The Diagnostics system for the XRTK allows for different instruments to be called to display information in the diagnostics prefab. - -![Diagnostics System Settings](../../images/Configuration/Diagnostics/DiagnosticsSystemSettings.png) - -The basic configuration simply identifies the prefab to be displayed in the scene when activated and whether the window is active on startup or called programmatically later. - -## Diagnostics Providers - -The diagnostic framework is very dynamic allowing different instruments to be added to collect data and customized so that they are run either for all platforms or just specific ones. New instruments can be added, so long as they derive to the Diagnostics Providers `BaseMixedRealityDiagnosticsDataProvider` implementation. Simply view the existing implementations for reference. - -Additionally, the prefab used will need to provide the capability to display the data, review the default DiagnosticsPrefab for detail. - -![Diagnostics Data Providers](../../images/Configuration/Diagnostics/DiagnosticsDataProviders.png) - -> Check out all the [Platforms that are available to configure](../platforms/platforms.md). - -## Further notes - -For the most part, you should not need to alter the Diagnostics system configuration unless required, or you wish to manually add a new Diagnostics System instrument manually. - ---- - -### Related Articles - -* [Getting Started](../00-GettingStarted.md#getting-started-with-the-mixed-reality-toolkit) -* [Configuration](../02-Configuration.md) -* [XRTK Platforms](../platforms/platforms.md) - ---- - -### [**Raise an Information Request**](https://github.com/XRTK/XRTK-Core/issues/new?assignees=&labels=question&template=request_for_information.md&title=) - -If there is anything not mentioned in this document or you simply want to know more, raise an [RFI (Request for Information) request here](https://github.com/XRTK/XRTK-Core/issues/new?assignees=&labels=question&template=request_for_information.md&title=). diff --git a/articles/systems/07-additional-serivce-providers.md b/articles/systems/07-additional-serivce-providers.md deleted file mode 100644 index c520b1ae9..000000000 --- a/articles/systems/07-additional-serivce-providers.md +++ /dev/null @@ -1,62 +0,0 @@ -# The Additional Service Providers extension - -With the built in services and systems the XRTK provides, it also provides the capability to implement custom services within its framework, this enables developers to take advantage of the performance improvements for operating runtime services or integrations from within the XRTK. - -For more information on creating services that can be hosted within the Mixed Reality Framework, check out this awesome article by Stephen Hodgson. - -![[A Practical Deep Dive into the Mixed Reality Framework](https://stephen-hodgson.medium.com/a-practical-deep-dive-into-the-mixed-reality-framework-a26401edb2aa)](https://miro.medium.com/max/1250/1*ebPN0spgicLY4ODa6vB9pg.jpeg) -> [A Practical Deep Dive into the Mixed Reality Framework](https://stephen-hodgson.medium.com/a-practical-deep-dive-into-the-mixed-reality-framework-a26401edb2aa) - -## Mixed Reality Root configuration system - -In the Root configuration, the Additional Service Providers profile provides an entry point to register any and all additional services with the Mixed Reality Toolkit. - -![Additional Service Providers Profile](../../images/Configuration/AdditionalServices/AdditionalServiceProvidersProfile.png) - -## Additional Service Providers - -From the Additional Service Providers profile, you can register all the services you have created or obtained for use in the Mixed Reality Toolkit. Once your service is available in your project, it will automatically be identified through its use of the `IMixedRealityExtensionService` interface and be available to add below. To register a service in your project, simply add a new entry to the list and configure the following: - -* Instanced Type - use the dropdown to select your service implementation, this will automatically pull the name from the service and display in the `Name` field. -* Profile - If your service requires a profile to configure, this will automatically display below the `Instanced Type` and allow you to provide or create a new profile for the service. This is optional if your service does not require additional configuration. -* Runtime Platforms - Select which platforms your service should run on. - -![Additional Service Providers List](../../images/Configuration/AdditionalServices/AdditionalServiceProvidersList.png) - -> Check out all the [Platforms that are available to configure](../platforms/platforms.md). - -## Further notes - -Services registered with the XRTK can be accessed like any other service through the MixedRealityToolkit.Instance using a similar call to the following: - -```csharp - var MyService = MixedRealityToolkit.Instance.GetService(); -``` - -or - -```csharp - - MyService myServiceInstance = null - if(!MixedRealityToolkit.Instance.TryGetService(out myServiceInstance)) - { - //Do something because the service was not found - } -``` - -This is available anywhere and at anytime within your project, but should be avoided in Update calls, better to get a reference on startup and store that reference. - ---- - -### Related Articles - -* [Getting Started](../00-GettingStarted.md#getting-started-with-the-mixed-reality-toolkit) -* [Configuration](../02-Configuration.md) -* [XRTK Platforms](../platforms/platforms.md) -* [A Practical Deep Dive into the Mixed Reality Framework](https://stephen-hodgson.medium.com/a-practical-deep-dive-into-the-mixed-reality-framework-a26401edb2aa) - ---- - -### [**Raise an Information Request**](https://github.com/XRTK/XRTK-Core/issues/new?assignees=&labels=question&template=request_for_information.md&title=) - -If there is anything not mentioned in this document or you simply want to know more, raise an [RFI (Request for Information) request here](https://github.com/XRTK/XRTK-Core/issues/new?assignees=&labels=question&template=request_for_information.md&title=). diff --git a/articles/testplans/TP-00_Import-XRTK.SDK-And_Configure.md b/articles/testplans/TP-00_Import-XRTK.SDK-And_Configure.md deleted file mode 100644 index 9bcdcc3bf..000000000 --- a/articles/testplans/TP-00_Import-XRTK.SDK-And_Configure.md +++ /dev/null @@ -1,91 +0,0 @@ -# XRTK Testplan: Import XRTK.SDK into a project and configure - -This testplan tests the XRTK import path via UPM where the user installs the `XRTK.SDK` -package first. - -## Test Preparations - -- Create a new Unity 2019.4 project using the 3D template using the Unity Hub - -## Test 1 - Add XRTK Scoped Registry - -### Instructions - -- Open the created Unity project -- Open the `Package Manager` window in the editor -- Click on the "Advanced" drop down and select "Advanced Project Settings" -- Add a new scoped registry with the following details and click "Save" - - Name: XRTK - - URL: http://upm.xrtk.io:4873/ - - Scope(s): com.xrtk -- Close the Package Manager Settings window -- Change the Registry drop down from "Unity Registry" to "My Registries" -- In the `Package Manager` select `Advanced -> Show Preview Packages` -- Wait for the `Package Manager` to finish loading packages - -### Expected Result - -- The list of available packages in the Unity Package Manager now includes XRTK modules, such as e.g. - - XRTK.Core - - XRTK.Oculus - - XRTK.SDK - - ... - -## Test 2 - Import XRTK.SDK - -### Instructions - -- Open the `Package Manager` window in the editor -- Change the Registry drop down from "Unity Registry" to "My Registries" -- Select the `XRTK.SDK` package -- Select `Install` to import the package into the project -- Wait for the import process to complete - -### Expected Result - -- The SDK and Core projects show as "Installed" with the latest versions -- The project compiles without errors -- The project compiles without XRTK specific warnings -- A menu item `Mixed Reality Toolkit` is now available at the top menu bar - -## Test 3 - Install XRTK.SDK Package Assets - -### Instructions - -- If it already exists, Delete the "XRTK.Generated\SDK" folder in your project assets -- Select `Mixed Reality Toolkit/Packages/Install SDK Package Assets....` in the menu bar -- Wait for the import process to complete - -### Expected Result - -- A folder `XRTK.Generated/SDK` was created in the project's `Assets` folder -- The project compiles without errors -- The project compiles without XRTK specific warnings - -## 4. Configure XRTK in scene - -### Instructions - -- Select `Mixed Reality Toolkit/Configure...` in the menu bar - -### Expected Result - -- A GameObject `MixedRealityToolkit` was added to the scene -- A GameObject `MixedRealityPlayspace` was added to the scene -- Selecting the `MixedRealityToolkit` game object shows the toolkit is using the `MixedRealityToolkitRootProfile` -- Running the project produces no errors - -## Test 4 - Add an SDK component to a scene object - -### Instructions - -- Save the current scene and ensure it is in the Build Settings -- Add a 3D Cube to the scene and reposition to X: 0, Y: 1, Z: 10 -- Add the "ManipulationHandler" script to the Cube -- Configure the "Select" action to "MixedRealityInputActionsProfile -> Select" -- Run the project - -### Expected Result - -- The Input Actions should be available for the "Select" ManipulationHandler Action -- The project should run without error diff --git a/articles/testplans/TP-01_Import-XRTK.Oculus.md b/articles/testplans/TP-01_Import-XRTK.Oculus.md deleted file mode 100644 index 4178a68fe..000000000 --- a/articles/testplans/TP-01_Import-XRTK.Oculus.md +++ /dev/null @@ -1,138 +0,0 @@ -# XRTK Testplan: Import XRTK.Oculus into a project - -This testplan tests the XRTK import path via UPM where the user installs the `XRTK.Oculus` package. - -## Test Preparations - -- Create a new Unity 2019.4 project using the 3D template using the Unity Hub - -## Test 1 - Add XRTK Scoped Registry - -### Instructions - -- Open the created Unity project -- Open the `Package Manager` window in the editor -- Click on the "Advanced" drop down and select "Advanced Project Settings" -- Add a new scoped registry with the following details and click "Save" - - Name: XRTK - - URL: http://upm.xrtk.io:4873/ - - Scope(s): com.xrtk -- Close the Package Manager Settings window -- Change the Registry drop down from "Unity Registry" to "My Registries" -- In the `Package Manager` select `Advanced -> Show Preview Packages` -- Wait for the `Package Manager` to finish loading packages - -### Expected Result - -- The list of available packages in the Unity Package Manager now includes XRTK modules, such as e.g. - - XRTK.Core - - XRTK.Oculus - - XRTK.SDK - - ... - -## Test 2 - Import XRTK.SDK and configure - -### Instructions - -- Open the `Package Manager` window in the editor -- Change the Registry drop down from "Unity Registry" to "My Registries" -- Select the `XRTK.SDK` package -- Select `Install` to import the package into the project -- Wait for the import process to complete -- Return to the scene and Select `Mixed Reality Toolkit/Configure...` in the menu bar - -### Expected Result - -- The SDK and Core projects show as "Installed" with the latest versions -- A GameObject `MixedRealityToolkit` was added to the scene -- A GameObject `MixedRealityPlayspace` was added to the scene -- Selecting the `MixedRealityToolkit` game object shows the toolkit is using the `MixedRealityToolkitRootProfile` -- Running the project produces no errors - -## Test 3 - Import XRTK.Oculus - -### Instructions - -- Open the `Package Manager` window in the editor -- Change the Registry drop down from "Unity Registry" to "My Registries" -- Select the `XRTK.Oculus` package -- Select `Install` to import the package into the project -- Wait for the import process to complete -- When prompted to install the "Oculus Platform Service Configurations", select "Later" - -### Expected Result - -- The project compiles without errors -- The project compiles without XRTK specific warnings -- A menu item `Mixed Reality Toolkit` is now available at the top menu bar -- A folder `XRTK.Generated/Oculus` was NOT created in the project's `Assets` folder - -## Test 4 - Install XRTK.Oculus Package Assets - -### Instructions - -- If it already exists, Delete the "XRTK.Generated\Oculus" folder in your project assets -- Select `Mixed Reality Toolkit/Packages/Install Oculus Package Assets....` in the menu bar -- Wait for the import process to complete -- When prompted to install the "Oculus Platform Service Configurations", select "Yes, Absolutely" -- Select `Mixed Reality Toolkit/Configure...` in the menu bar - -### Expected Result - -- A folder `XRTK.Generated/Oculus` was created in the project's `Assets` folder -- A GameObject `MixedRealityToolkit` was added to the scene -- A GameObject `MixedRealityPlayspace` was added to the scene -- Selecting the `MixedRealityToolkit` game object shows the toolkit is using the `MixedRealityToolkitRootProfile` -- Opening the 'Camera System Profile' in the `MixedRealityToolkitRootProfile`, there is a 'Oculus Camera Data Provider' registered in the 'IMixedRealityCameraDataProvider' configuration -- Opening the 'Input System Profile' in the `MixedRealityToolkitRootProfile`, there is a 'Oculus Controller Data Provider' registered in the 'IMixedRealityInputDataProvider' configuration -- Opening the 'Input System Profile' in the `MixedRealityToolkitRootProfile`, there is a 'Oculus Hand Controller Data Provider' registered in the 'IMixedRealityInputDataProvider' configuration - -## Test 5 - Run Oculus platform via Oculus Link in Windows Standalone (or alternatively, using an Oculus Rift) - -### Instructions - -- Add a floor to your scene using "Mixed Reality Toolkit -> Tools -> Create Floor" in the editor menu -- Add a Cube to the Scene with the "Manipulation Handler" component added and configured for "Select" -- Enable VR settings for the Oculus platform in the Unity project -- Save the current scene and ensure it is registered in the Unity "Build Settings" -- Connect your Oculus Quest via a cable to your PC and start the Oculus Client - Confirm the headset shows as connected -- Run the Project - -### Expected Result - -- The project compiles without errors -- The project compiles without XRTK specific warnings -- The project runs without errors -- The view shows above the floor, relative to the headset's current physical location -- When starting each controller, they appear in the scene and move -- Clicking the trigger causes the Pointer lines to appear -- Using the Thumbsticks enables teleportation and the user can move around the floor -- Clicking on the Cube enables the cube to be dragged relative to the controllers position -- Putting controllers down and raising hands replaces the controller models with hands that move relative to the users hands - -## Test 6 - Run Oculus platform native on device - -### Instructions - -- Switch the current runtime platform to "Android" via the Unity "Build Settings" window -- Open the Unity "Project Settings" window on the "Player" tab -- Update the following settings: - - Other -> "Color space" to "Gamma" - - Other -> Enable "Auto Graphics API" - - Other -> Change "Minimum API level" to 25 - - Other -> Set "Scripting Backend" to "IL2CPP" -- Add an Android Manifest to the project using "Mixed Reality Toolkit -> Tools -> Oculus -> Create Oculus Quest Compatible AndroidManifest.xml" -- Connect your Oculus Quest via a cable to your PC -- Use "Build and Run" in the Unity Build Window - -### Expected Result - -- The project compiles without errors -- The project compiles without XRTK specific warnings -- The project runs without errors -- In the headset, the view shows above the floor, relative to the headset's current physical location -- When starting each controller, they appear in the scene and move -- Clicking the trigger causes the Pointer lines to appear -- Using the Thumbsticks enables teleportation and the user can move around the floor -- Clicking on the Cube enables the cube to be dragged relative to the controllers position -- Putting controllers down and raising hands replaces the controller models with hands that move relative to the users hands diff --git a/articles/testplans/TP-02_Import-XRTK.WMR.md b/articles/testplans/TP-02_Import-XRTK.WMR.md deleted file mode 100644 index 1b37afc0b..000000000 --- a/articles/testplans/TP-02_Import-XRTK.WMR.md +++ /dev/null @@ -1,110 +0,0 @@ -# XRTK Testplan: Import XRTK.WindowsMixedReality into a project - -This testplan tests the XRTK import path via UPM where the user installs the `XRTK.WindowsMixedReality` package. - -## Test Preparations - -- Create a new Unity 2019.4 project using the 3D template using the Unity Hub - -## Test 1 - Add XRTK Scoped Registry - -### Instructions - -- Open the created Unity project -- Open the `Package Manager` window in the editor -- Click on the `Advanced` drop down and select `Advanced Project Settings` -- Add a new scoped registry with the following details and click `Save` - - Name: XRTK - - URL: http://upm.xrtk.io:4873/ - - Scope(s): com.xrtk -- Close the Package Manager Settings window -- Change the Registry drop down from `Unity Registry` to `My Registries` -- In the `Package Manager` select `Advanced -> Show Preview Packages` -- Wait for the `Package Manager` to finish loading packages - -### Expected Result - -- The list of available packages in the Unity Package Manager now includes XRTK modules, such as e.g. - - XRTK.Core - - XRTK.Oculus - - XRTK.SDK - - ... - -## Test 2 - Import XRTK.SDK and configure - -### Instructions - -- Open the `Package Manager` window in the editor -- Change the Registry drop down from `Unity Registry` to `My Registries` -- Select the `XRTK.SDK` package -- Select `Install` to import the package into the project -- Wait for the import process to complete -- Return to the scene and Select `Mixed Reality Toolkit/Configure...` in the menu bar - -### Expected Result - -- The SDK and Core projects show as `Installed` with the latest versions -- A GameObject `MixedRealityToolkit` was added to the scene -- A GameObject `MixedRealityPlayspace` was added to the scene -- Selecting the `MixedRealityToolkit` game object shows the toolkit is using the `MixedRealityToolkitRootProfile` -- Running the project produces no errors - -## Test 3 - Import XRTK.WindowsMixedReality - -### Instructions - -- Open the `Package Manager` window in the editor -- Change the Registry drop down from `Unity Registry` to `My Registries` -- Select the `XRTK.WindowsMixedReality` package -- Select `Install` to import the package into the project -- Wait for the import process to complete -- When prompted to install the `Windows Mixed Reality Platform Service Configurations`, select `Later` - -### Expected Result - -- The project compiles without errors -- The project compiles without XRTK specific warnings -- A menu item `Mixed Reality Toolkit` is now available at the top menu bar -- A folder `XRTK.Generated/WindowsMixedReality` was created in the project's `Assets` folder - -## Test 4 - Install XRTK.WindowsMixedReality Package Assets - -### Instructions - -- If it already exists, Delete the `XRTK.Generated\WindowsMixedReality` folder in your project assets -- Select `Mixed Reality Toolkit/Packages/Install Windows Mixed Reality Package Assets....` in the menu bar -- Wait for the import process to complete -- When prompted to install the `Windows Mixed Reality Platform Service Configurations`, select `Yes, Absolutely` -- Select `Mixed Reality Toolkit/Configure...` in the menu bar - -### Expected Result - -- A folder `XRTK.Generated/Oculus` was created in the project's `Assets` folder -- A GameObject `MixedRealityToolkit` was added to the scene -- A GameObject `MixedRealityPlayspace` was added to the scene -- Selecting the `MixedRealityToolkit` game object shows the toolkit is using the `MixedRealityToolkitRootProfile` -- Opening the 'Camera System Profile' in the `MixedRealityToolkitRootProfile`, there is a 'Windows Mixed Reality Camera Data Provider' registered in the 'IMixedRealityCameraDataProvider' configuration -- Opening the 'Input System Profile' in the `MixedRealityToolkitRootProfile`, there is a 'Windows Mixed Reality Controller Data Provider' registered in the 'IMixedRealityInputDataProvider' configuration -- Opening the 'Input System Profile' in the `MixedRealityToolkitRootProfile`, there is a 'Windows Mixed Reality Hand Controller Data Provider' registered in the 'IMixedRealityInputDataProvider' configuration - -## Test 5 - Run WindowsMixedReality platform via the Mixed Reality Portal - -### Instructions - -- Add a floor to your scene using `Mixed Reality Toolkit -> Tools -> Create Floor` in the editor menu -- Add a Cube to the Scene with the `Manipulation Handler` component added and configured for `Select` -- Enable VR settings for the Windows Mixed Reality platform in the Unity project -- Save the current scene and ensure it is registered in the Unity `Build Settings` -- Connect your Windows Mixed Reality headset to your PC and start the Mixed Reality Portal, confirm you can see the Mixed Reality house and controllers function -- Run the Project - -### Expected Result - -- The project compiles without errors -- The project compiles without XRTK specific warnings -- The project runs without errors -- The view shows above the floor, relative to the headset's current physical location -- When starting each controller, they appear in the scene and move -- Clicking the trigger causes the Pointer lines to appear -- Using the Thumbsticks enables teleportation and the user can move around the floor -- Clicking on the Cube enables the cube to be dragged relative to the controllers position diff --git a/articles/testplans/TP_Overview.md b/articles/testplans/TP_Overview.md deleted file mode 100644 index 2eee1df95..000000000 --- a/articles/testplans/TP_Overview.md +++ /dev/null @@ -1,34 +0,0 @@ -# Test Plans for the Mixed Reality Toolkit - -Use these test plans for manually testing XRTK installation and configuration on supported platforms. -These test plans can serve as a reference when reporting bugs and help developers to reproduce issues. - ---- - -## Test Plans - -### XRTK.SDK - -- [TP-00 Import SDK And Configure](TP-00_Import-XRTK.SDK-And_Configure.md) - -### XRTK.Oculus - -- [TP-01 Test Oculus Platform](TP-01_Import-XRTK.Oculus.md) - -### XRTK.WindowsMixedReality - -- [TP-01 Test Windows Mixed Reality Platform](TP-02_Import-XRTK.WMR.md) - -## XR subsystem notices - -> For VR settings in XRTK 0.2, we restrict to using the Legaxy XR settings available in -> -> `Edit -> Project Settings -> Player -> Other -> XR Settings` -> -> The new XR Subsystem is out of scope for this release. - ---- - -### [**Raise an Information Request**](https://github.com/XRTK/XRTK-Core/issues/new?assignees=&labels=question&template=request_for_information.md&title=) - -If there is anything not mentioned in this document or you simply want to know more, raise an [RFI (Request for Information) request here](https://github.com/XRTK/XRTK-Core/issues/new?assignees=&labels=question&template=request_for_information.md&title=). diff --git a/articles/toc.yml b/articles/toc.yml deleted file mode 100644 index 77b13049f..000000000 --- a/articles/toc.yml +++ /dev/null @@ -1,55 +0,0 @@ -- name: Getting Started - items: - - name: Welcome - href: ../Readme.md - - name: Getting started with the XRTK - href: 00-GettingStarted.md - - name: Downloading the XRTK - href: 01-DownloadingTheXRTK.md - - name: Configuring your project - href: 02-Configuration.md - - name: Platform Template Generator - href: 03-Template-Generator.md - - name: Known Issues - href: 04-KnownIssues.md -- name: Platforms - href: platforms/platforms.md - items: - - name: Windows Mixed Reality - href: platforms/windowsmixedreality.md - - name: Oculus - href: platforms/oculus.md - - name: Magic Leap - href: platforms/magicleap.md - - name: SteamVR - href: platforms/steamvr.md - - name: UltraLeap - href: platforms/ultraleap.md - - name: etee - href: platforms/etee.md - - name: WebXR - href: platforms/webxr.md -- name: Examples - items: - - name: Overview - href: examples/examples.md -- name: Test Plans - items: - - name: Overview - href: testplans/TP_Overview.md - - name: TP-00 Import SDK And Configure - href: testplans/TP-00_Import-XRTK.SDK-And_Configure.md - - name: TP-01 Import XRTK Oculus - href: testplans/TP-01_Import-XRTK.Oculus.md - - name: TP-02 Import XRTK WMR - href: testplans/TP-02_Import-XRTK.WMR.md -- name: Appendices - items: - - name: Coding Guidelines - href: appendices/A01-CodingGuidelines.md - - name: XRTK vs MRTK - href: appendices/A02-ChoosingXRTKvsMRTK.md - - name: XRTK Public Roadmap - href: appendices/A03-Roadmap.md - - name: Frequently Asked Questions - href: appendices/A04-FAQ.md \ No newline at end of file diff --git a/docfx_project/.gitignore b/docfx_project/.gitignore deleted file mode 100644 index 60c272ec4..000000000 --- a/docfx_project/.gitignore +++ /dev/null @@ -1,8 +0,0 @@ -############### -# folder # -############### -/**/DROP/ -/**/TEMP/ -/**/packages/ -/**/bin/ -/**/obj/ diff --git a/docfx_project/docfx.json b/docfx_project/docfx.json deleted file mode 100644 index 8d891fda3..000000000 --- a/docfx_project/docfx.json +++ /dev/null @@ -1,102 +0,0 @@ -{ - "metadata": [ - { - "src": [ - { - "src": "../", - "exclude": [ - "**/.github/**", - "**/.vs/**", - "**/Builds/**", - "**/docs/**", - "**/docfx_project/**", - "**/Library/**", - "**/Logs/**", - "**/Packages/**", - "**/ProjectSettings/**", - "**/Temp/**", - "**/ThirdParty/**", - "**/Submodules/**" - ], - "files": [ - "**.sln", - "**.csproj" - ] - } - ], - "dest": "../api", - "filter": "filterConfig.yml", - "disableGitFeatures": false, - "disableDefaultFilter": false - } - ], - "build": { - "xref": [ - "https://stephenhodgson.github.io/UnityCsReference/xrefmap.yml" - ], - "xrefservice": [ - "https://xref.docs.microsoft.com/query?uid={uid}" - ], - "content": [ - { - "src":"../", - "files": [ - "api/**.yml", - "api/index.md" - ] - }, - { - "src":"../", - "files": [ - "articles/**.md", - "articles/**/toc.yml", - "toc.yml", - "*.md" - ] - } - ], - "resource": [ - { - "src":"../", - "files": [ - "images/**" - ] - } - ], - "overwrite": [ - { - "files": [ - "apidoc/**.md" - ], - "exclude": [ - "**/obj/**", - "**/docs/**" - ] - } - ], - "globalMetadata": { - "_appTitle": "XRTK-Core", - "_appFooter": "(c) XRTK", - "_appLogoPath": "logo.png", - "_appFaviconPath": "favicon.png", - "_gitContribute": { - "repo": "https://github.com/XRTK/XRTK-Core", - "branch": "development", - "apiSpecFolder": "docs-ref-overwrite" - } - }, - "dest": "../docs", - "globalMetadataFiles": [], - "fileMetadataFiles": [], - "template": [ - "default", - "templates/darkfx" - ], - "postProcessors": [], - "markdownEngineName": "markdig", - "noLangKeyword": false, - "keepFileLink": false, - "cleanupCacheHistory": false, - "disableGitFeatures": false - } -} \ No newline at end of file diff --git a/docfx_project/filterConfig.yml b/docfx_project/filterConfig.yml deleted file mode 100644 index 28320ed26..000000000 --- a/docfx_project/filterConfig.yml +++ /dev/null @@ -1,16 +0,0 @@ -apiRules: -- include: - uidRegex: ^XRTK.+ - type: Namespace -- exclude: - uidRegex: ^Unity.+ - type: Namespace -- exclude: - uidRegex: ^Leap.+ - type: Namespace -- exclude: - uidRegex: ^LeapInternal.+ - type: Namespace -- exclude: - uidRegex: ^LeapMotion.+ - type: Namespace diff --git a/docfx_project/templates/darkfx/partials/head.tmpl.partial b/docfx_project/templates/darkfx/partials/head.tmpl.partial deleted file mode 100644 index eaac2fc2b..000000000 --- a/docfx_project/templates/darkfx/partials/head.tmpl.partial +++ /dev/null @@ -1,21 +0,0 @@ -{{!Copyright (c) Oscar Vasquez. All rights reserved. Licensed under the MIT license. See LICENSE file in the project root for full license information.}} - - - - - {{#title}}{{title}}{{/title}}{{^title}}{{>partials/title}}{{/title}} {{#_appTitle}}| {{_appTitle}} {{/_appTitle}} - - - - {{#_description}}{{/_description}} - - - - - - - - {{#_noindex}}{{/_noindex}} - {{#_enableSearch}}{{/_enableSearch}} - {{#_enableNewTab}}{{/_enableNewTab}} - \ No newline at end of file diff --git a/docfx_project/templates/darkfx/styles/main.css b/docfx_project/templates/darkfx/styles/main.css deleted file mode 100644 index 357e4c93c..000000000 --- a/docfx_project/templates/darkfx/styles/main.css +++ /dev/null @@ -1,331 +0,0 @@ -body { - color: #ccd5dc; - font-family: "Roboto", sans-serif; - line-height: 1.5; - font-size: 14px; - -ms-text-size-adjust: 100%; - -webkit-text-size-adjust: 100%; - word-wrap: break-word; - background-color: #2d2d30; -} - -h1 { - font-weight: 600; - font-size: 32px; -} - -h2 { - font-weight: 600; - font-size: 24px; - line-height: 1.8; -} - -h3 { - font-weight: 600; - font-size: 20px; - line-height: 1.8; -} - -h5 { - font-size: 14px; - padding: 10px 0px; -} - -article h1, -article h2, -article h3, -article h4 { - margin-top: 35px; - margin-bottom: 15px; -} - -article h4 { - padding-bottom: 8px; - border-bottom: 2px solid #ddd; -} - -.navbar-brand>img { - color: #2d2d30; -} - -.navbar { - border: none; -} - -.subnav { - border-top: 1px solid #ddd; - background-color: #333337; -} - -.navbar-inverse { - background-color: #1e1e1e; - z-index: 100; -} - -.navbar-inverse .navbar-nav>li>a, -.navbar-inverse .navbar-text { - color: #66666d; - background-color: #1e1e1e; - border-bottom: 3px solid transparent; - padding-bottom: 12px; -} - -.navbar-inverse .navbar-nav>li>a:focus, -.navbar-inverse .navbar-nav>li>a:hover { - color: #c5c5de; - background-color: #1e1e1e; - border-bottom: 3px solid #333337; - transition: all ease 0.25s; -} - -.navbar-inverse .navbar-nav>.active>a, -.navbar-inverse .navbar-nav>.active>a:focus, -.navbar-inverse .navbar-nav>.active>a:hover { - color: #c5c5de; - background-color: #1e1e1e; - border-bottom: 3px solid #333337; - transition: all ease 0.25s; -} - -.navbar-form .form-control { - border: none; - border-radius: 0; -} - -.toc .level1>li { - font-weight: 400; -} - -.toc .nav>li>a { - color: #ccd5dc; -} - -.sidefilter { - background-color: #2d2d30; - border-left: none; - border-right: none; -} - -.sidefilter { - background-color: #2d2d30; - border-left: none; - border-right: none; -} - -.toc-filter { - padding: 10px; - margin: 0; - background-color: #2d2d30; -} - -.toc-filter>input { - border: none; - border-radius: unset; - background-color: #333337; - padding: 5px 0 5px 20px; - font-size: 90% -} - -.toc-filter>input:focus { - color: #ccd5dc; - transition: all ease 0.25s; -} - -.toc-filter>.filter-icon { - display: none; -} - -.sidetoc>.toc { - background-color: #2d2d30; - overflow-x: hidden; -} - -.sidetoc { - background-color: #2d2d30; - border: none; -} - -.alert { - background-color: inherit; - border: none; - padding: 10px 0; - border-radius: 0; -} - -.alert>p { - color: #ccd5dc; - margin-bottom: 0; - padding: 5px 10px; - border-bottom: 1px solid; - background-color: #212123; -} - -.alert>h5 { - padding: 10px 15px; - margin-top: 0; - margin-bottom: 0; - text-transform: uppercase; - font-weight: bold; - border-top: 2px solid; - background-color: #212123; - border-radius: none; -} - -.alert>ul { - margin-bottom: 0; - padding: 5px 40px; -} - -.alert-info{ - color: #1976d2; -} - -.alert-warning{ - color: #f57f17; -} - -.alert-danger{ - color: #d32f2f; -} - -pre { - padding: 9.5px; - margin: 0 0 10px; - font-size: 13px; - word-break: break-all; - word-wrap: break-word; - background-color: #1e1e1e;; - border-radius: 0; - border: none; -} - -code{ - color: #ccd5dc; - background: #1e1e1e !important; - border-radius: 2px; -} - -.hljs{ - color: #bbb; -} - -.toc .nav > li.active > .expand-stub::before, .toc .nav > li.in > .expand-stub::before, .toc .nav > li.in.active > .expand-stub::before, .toc .nav > li.filtered > .expand-stub::before { - content: "▾"; -} - -.toc .nav > li > .expand-stub::before, .toc .nav > li.active > .expand-stub::before { - content: "▸"; -} - -.affix ul ul > li > a:before { - content: "|"; -} - -.breadcrumb .label.label-primary { - background: #444; - border-radius: 0; - font-weight: normal; - font-size: 100%; -} - -#breadcrumb .breadcrumb>li a { - border-radius: 0; - font-weight: normal; - font-size: 85%; - display: inline; - padding: 0 .6em 0; - line-height: 1; - text-align: center; - white-space: nowrap; - vertical-align: baseline; - color: #999; -} -#breadcrumb .breadcrumb>li a:hover{ - color: #c5c5de; - transition: all ease 0.25s; -} - -.breadcrumb > li + li:before { - content: "⯈"; - font-size: 75%; - color: #1e1e1e; - padding: 0; -} - -.toc .level1>li { - font-weight: 600; - font-size: 130%; - padding-left: 5px; -} - -.footer { - border-top: none; - background-color: #1e1e1e; - padding: 15px 0; - font-size: 90%; -} - -.toc .nav > li > a:hover, .toc .nav > li > a:focus { - color: #fff; - transition: all ease 0.1s; -} - -.form-control { - background-color: #333337; - border: none; - border-radius: 0; - -webkit-box-shadow: none; - box-shadow: none; -} - -.form-control:focus { - border-color: #66afe9; - outline: 0; - -webkit-box-shadow: none; - box-shadow: none; -} - -input#search-query:focus { - color: #c5c5de; -} - -.table-bordered, .table-bordered>tbody>tr>td, .table-bordered>tbody>tr>th, .table-bordered>tfoot>tr>td, .table-bordered>tfoot>tr>th, .table-bordered>thead>tr>td, .table-bordered>thead>tr>th { - border: 1px solid #1E1E1E; -} - -.table-striped>tbody>tr:nth-of-type(odd) { - background-color: #212123; -} - -blockquote { - color: #ccd5dc; - padding: 10px 20px; - margin: 0 0 10px; - font-size: 110%; - font-style: italic; - border-left: 5px solid #69696e; -} - -.pagination>.disabled>a, .pagination>.disabled>a:focus, .pagination>.disabled>a:hover, .pagination>.disabled>span, .pagination>.disabled>span:focus, .pagination>.disabled>span:hover { - background-color: #333337; - border-color: #333337; -} - -.breadcrumb>li, .pagination { - display: inline; -} - -@media (min-width: 1600px){ - .container { - width: 100%; - } - .sidefilter { - width: 20%; - } - .sidetoc{ - width: 20%; - } - .article.grid-right { - margin-left: 21%; - } -} \ No newline at end of file diff --git a/docs/CHANGELOG.html b/docs/CHANGELOG.html deleted file mode 100644 index 0fbc69916..000000000 --- a/docs/CHANGELOG.html +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - - Changelog | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/CNAME b/docs/CNAME deleted file mode 100644 index ec1154541..000000000 --- a/docs/CNAME +++ /dev/null @@ -1 +0,0 @@ -xrtk.io \ No newline at end of file diff --git a/docs/CODE_OF_CONDUCT.html b/docs/CODE_OF_CONDUCT.html deleted file mode 100644 index fb1a39b6c..000000000 --- a/docs/CODE_OF_CONDUCT.html +++ /dev/null @@ -1,163 +0,0 @@ - - - - - - - - Contributor Covenant Code of Conduct | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/CONTRIBUTING.html b/docs/CONTRIBUTING.html deleted file mode 100644 index 19a260bf8..000000000 --- a/docs/CONTRIBUTING.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - Contribution Guidelines | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/CONTRIBUTORS.html b/docs/CONTRIBUTORS.html deleted file mode 100644 index 24abda2e8..000000000 --- a/docs/CONTRIBUTORS.html +++ /dev/null @@ -1,122 +0,0 @@ - - - - - - - - Project Contributors | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/LICENSE.html b/docs/LICENSE.html deleted file mode 100644 index cd35d8a2c..000000000 --- a/docs/LICENSE.html +++ /dev/null @@ -1,121 +0,0 @@ - - - - - - - - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/README.html b/docs/README.html deleted file mode 100644 index f214ae258..000000000 --- a/docs/README.html +++ /dev/null @@ -1,221 +0,0 @@ - - - - - - - - Welcome to the Mixed Reality Toolkit | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.ARCore.Editor.ARCorePathFinder.html b/docs/api/XRTK.ARCore.Editor.ARCorePathFinder.html deleted file mode 100644 index 69e9621b2..000000000 --- a/docs/api/XRTK.ARCore.Editor.ARCorePathFinder.html +++ /dev/null @@ -1,217 +0,0 @@ - - - - - - - - Class ARCorePathFinder - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.ARCore.Editor.html b/docs/api/XRTK.ARCore.Editor.html deleted file mode 100644 index c53478579..000000000 --- a/docs/api/XRTK.ARCore.Editor.html +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - Namespace XRTK.ARCore.Editor - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.ARCore.Profiles.ARCoreControllerDataProviderProfile.html b/docs/api/XRTK.ARCore.Profiles.ARCoreControllerDataProviderProfile.html deleted file mode 100644 index e602ad220..000000000 --- a/docs/api/XRTK.ARCore.Profiles.ARCoreControllerDataProviderProfile.html +++ /dev/null @@ -1,163 +0,0 @@ - - - - - - - - Class ARCoreControllerDataProviderProfile - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.ARCore.Profiles.html b/docs/api/XRTK.ARCore.Profiles.html deleted file mode 100644 index ffa3fe9ca..000000000 --- a/docs/api/XRTK.ARCore.Profiles.html +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - Namespace XRTK.ARCore.Profiles - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.ARCore.Providers.CameraSystem.ARCoreCameraDataProvider.html b/docs/api/XRTK.ARCore.Providers.CameraSystem.ARCoreCameraDataProvider.html deleted file mode 100644 index 7ed816955..000000000 --- a/docs/api/XRTK.ARCore.Providers.CameraSystem.ARCoreCameraDataProvider.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - - - Class ARCoreCameraDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.ARCore.Providers.CameraSystem.html b/docs/api/XRTK.ARCore.Providers.CameraSystem.html deleted file mode 100644 index ce3297b4e..000000000 --- a/docs/api/XRTK.ARCore.Providers.CameraSystem.html +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - Namespace XRTK.ARCore.Providers.CameraSystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.ARCore.Providers.Controllers.ARCoreController.html b/docs/api/XRTK.ARCore.Providers.Controllers.ARCoreController.html deleted file mode 100644 index 82edf97b6..000000000 --- a/docs/api/XRTK.ARCore.Providers.Controllers.ARCoreController.html +++ /dev/null @@ -1,132 +0,0 @@ - - - - - - - - Class ARCoreController - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.ARCore.Providers.Controllers.ARCoreControllerDataProvider.html b/docs/api/XRTK.ARCore.Providers.Controllers.ARCoreControllerDataProvider.html deleted file mode 100644 index 8ad90fc45..000000000 --- a/docs/api/XRTK.ARCore.Providers.Controllers.ARCoreControllerDataProvider.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - - - Class ARCoreControllerDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.ARCore.Providers.Controllers.html b/docs/api/XRTK.ARCore.Providers.Controllers.html deleted file mode 100644 index 4f08fb609..000000000 --- a/docs/api/XRTK.ARCore.Providers.Controllers.html +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - - Namespace XRTK.ARCore.Providers.Controllers - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Attributes.AxisConstraintAttribute.html b/docs/api/XRTK.Attributes.AxisConstraintAttribute.html deleted file mode 100644 index 399c6beca..000000000 --- a/docs/api/XRTK.Attributes.AxisConstraintAttribute.html +++ /dev/null @@ -1,362 +0,0 @@ - - - - - - - - Class AxisConstraintAttribute - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Attributes.EnumFlagsAttribute.html b/docs/api/XRTK.Attributes.EnumFlagsAttribute.html deleted file mode 100644 index b9345947a..000000000 --- a/docs/api/XRTK.Attributes.EnumFlagsAttribute.html +++ /dev/null @@ -1,308 +0,0 @@ - - - - - - - - Class EnumFlagsAttribute - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Attributes.ExtendsAttribute.html b/docs/api/XRTK.Attributes.ExtendsAttribute.html deleted file mode 100644 index 429da709c..000000000 --- a/docs/api/XRTK.Attributes.ExtendsAttribute.html +++ /dev/null @@ -1,428 +0,0 @@ - - - - - - - - Class ExtendsAttribute - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Attributes.ImplementsAttribute.html b/docs/api/XRTK.Attributes.ImplementsAttribute.html deleted file mode 100644 index 06dc7456b..000000000 --- a/docs/api/XRTK.Attributes.ImplementsAttribute.html +++ /dev/null @@ -1,428 +0,0 @@ - - - - - - - - Class ImplementsAttribute - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Attributes.PhysicsLayerAttribute.html b/docs/api/XRTK.Attributes.PhysicsLayerAttribute.html deleted file mode 100644 index ff3c36fe0..000000000 --- a/docs/api/XRTK.Attributes.PhysicsLayerAttribute.html +++ /dev/null @@ -1,308 +0,0 @@ - - - - - - - - Class PhysicsLayerAttribute - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Attributes.PrefabAttribute.html b/docs/api/XRTK.Attributes.PrefabAttribute.html deleted file mode 100644 index 1408a7328..000000000 --- a/docs/api/XRTK.Attributes.PrefabAttribute.html +++ /dev/null @@ -1,372 +0,0 @@ - - - - - - - - Class PrefabAttribute - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Attributes.RuntimePlatformAttribute.html b/docs/api/XRTK.Attributes.RuntimePlatformAttribute.html deleted file mode 100644 index 534e39607..000000000 --- a/docs/api/XRTK.Attributes.RuntimePlatformAttribute.html +++ /dev/null @@ -1,356 +0,0 @@ - - - - - - - - Class RuntimePlatformAttribute - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Attributes.SystemTypeAttribute.html b/docs/api/XRTK.Attributes.SystemTypeAttribute.html deleted file mode 100644 index e32579eec..000000000 --- a/docs/api/XRTK.Attributes.SystemTypeAttribute.html +++ /dev/null @@ -1,452 +0,0 @@ - - - - - - - - Class SystemTypeAttribute - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Attributes.Vector3RangeAttribute.html b/docs/api/XRTK.Attributes.Vector3RangeAttribute.html deleted file mode 100644 index a1806f928..000000000 --- a/docs/api/XRTK.Attributes.Vector3RangeAttribute.html +++ /dev/null @@ -1,395 +0,0 @@ - - - - - - - - Class Vector3RangeAttribute - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Attributes.html b/docs/api/XRTK.Attributes.html deleted file mode 100644 index 8763e3c40..000000000 --- a/docs/api/XRTK.Attributes.html +++ /dev/null @@ -1,146 +0,0 @@ - - - - - - - - Namespace XRTK.Attributes - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.BaseMixedRealityExtensionDataProviderProfile.html b/docs/api/XRTK.Definitions.BaseMixedRealityExtensionDataProviderProfile.html deleted file mode 100644 index ce2d04dbf..000000000 --- a/docs/api/XRTK.Definitions.BaseMixedRealityExtensionDataProviderProfile.html +++ /dev/null @@ -1,204 +0,0 @@ - - - - - - - - Class BaseMixedRealityExtensionDataProviderProfile - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.BaseMixedRealityExtensionServiceProfile.html b/docs/api/XRTK.Definitions.BaseMixedRealityExtensionServiceProfile.html deleted file mode 100644 index a2182a64a..000000000 --- a/docs/api/XRTK.Definitions.BaseMixedRealityExtensionServiceProfile.html +++ /dev/null @@ -1,220 +0,0 @@ - - - - - - - - Class BaseMixedRealityExtensionServiceProfile - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.BaseMixedRealityProfile.html b/docs/api/XRTK.Definitions.BaseMixedRealityProfile.html deleted file mode 100644 index 8f639c3ab..000000000 --- a/docs/api/XRTK.Definitions.BaseMixedRealityProfile.html +++ /dev/null @@ -1,251 +0,0 @@ - - - - - - - - Class BaseMixedRealityProfile - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.BaseMixedRealityServiceProfile-1.html b/docs/api/XRTK.Definitions.BaseMixedRealityServiceProfile-1.html deleted file mode 100644 index 5fe699bcd..000000000 --- a/docs/api/XRTK.Definitions.BaseMixedRealityServiceProfile-1.html +++ /dev/null @@ -1,276 +0,0 @@ - - - - - - - - Class BaseMixedRealityServiceProfile<TService> - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.BoundarySystem.BoundaryVisibility.html b/docs/api/XRTK.Definitions.BoundarySystem.BoundaryVisibility.html deleted file mode 100644 index 97703706c..000000000 --- a/docs/api/XRTK.Definitions.BoundarySystem.BoundaryVisibility.html +++ /dev/null @@ -1,176 +0,0 @@ - - - - - - - - Enum BoundaryVisibility - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.BoundarySystem.Edge.html b/docs/api/XRTK.Definitions.BoundarySystem.Edge.html deleted file mode 100644 index 71040d0d6..000000000 --- a/docs/api/XRTK.Definitions.BoundarySystem.Edge.html +++ /dev/null @@ -1,300 +0,0 @@ - - - - - - - - Struct Edge - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.BoundarySystem.InscribedRectangle.html b/docs/api/XRTK.Definitions.BoundarySystem.InscribedRectangle.html deleted file mode 100644 index 2f284b0d1..000000000 --- a/docs/api/XRTK.Definitions.BoundarySystem.InscribedRectangle.html +++ /dev/null @@ -1,477 +0,0 @@ - - - - - - - - Class InscribedRectangle - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.html b/docs/api/XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.html deleted file mode 100644 index dcb7451da..000000000 --- a/docs/api/XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.html +++ /dev/null @@ -1,536 +0,0 @@ - - - - - - - - Class MixedRealityBoundaryProfile - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.BoundarySystem.ProximityAlert.html b/docs/api/XRTK.Definitions.BoundarySystem.ProximityAlert.html deleted file mode 100644 index ca936729e..000000000 --- a/docs/api/XRTK.Definitions.BoundarySystem.ProximityAlert.html +++ /dev/null @@ -1,177 +0,0 @@ - - - - - - - - Enum ProximityAlert - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.BoundarySystem.html b/docs/api/XRTK.Definitions.BoundarySystem.html deleted file mode 100644 index 737b51969..000000000 --- a/docs/api/XRTK.Definitions.BoundarySystem.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - - - Namespace XRTK.Definitions.BoundarySystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.html b/docs/api/XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.html deleted file mode 100644 index 9bba47162..000000000 --- a/docs/api/XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.html +++ /dev/null @@ -1,611 +0,0 @@ - - - - - - - - Class BaseMixedRealityCameraDataProviderProfile - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.CameraSystem.MixedRealityCameraSystemProfile.html b/docs/api/XRTK.Definitions.CameraSystem.MixedRealityCameraSystemProfile.html deleted file mode 100644 index f6cc9e82b..000000000 --- a/docs/api/XRTK.Definitions.CameraSystem.MixedRealityCameraSystemProfile.html +++ /dev/null @@ -1,254 +0,0 @@ - - - - - - - - Class MixedRealityCameraSystemProfile - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.CameraSystem.html b/docs/api/XRTK.Definitions.CameraSystem.html deleted file mode 100644 index ec7697b24..000000000 --- a/docs/api/XRTK.Definitions.CameraSystem.html +++ /dev/null @@ -1,122 +0,0 @@ - - - - - - - - Namespace XRTK.Definitions.CameraSystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Controllers.BaseMixedRealityControllerDataProviderProfile.html b/docs/api/XRTK.Definitions.Controllers.BaseMixedRealityControllerDataProviderProfile.html deleted file mode 100644 index 5030b615e..000000000 --- a/docs/api/XRTK.Definitions.Controllers.BaseMixedRealityControllerDataProviderProfile.html +++ /dev/null @@ -1,310 +0,0 @@ - - - - - - - - Class BaseMixedRealityControllerDataProviderProfile - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Controllers.ControllerDefinition.html b/docs/api/XRTK.Definitions.Controllers.ControllerDefinition.html deleted file mode 100644 index b137bcf0c..000000000 --- a/docs/api/XRTK.Definitions.Controllers.ControllerDefinition.html +++ /dev/null @@ -1,364 +0,0 @@ - - - - - - - - Struct ControllerDefinition - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.html b/docs/api/XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.html deleted file mode 100644 index 7380dc23d..000000000 --- a/docs/api/XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.html +++ /dev/null @@ -1,441 +0,0 @@ - - - - - - - - Class BaseHandControllerDataProviderProfile - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Controllers.Hands.HandBoundsLOD.html b/docs/api/XRTK.Definitions.Controllers.Hands.HandBoundsLOD.html deleted file mode 100644 index 71ba98e4a..000000000 --- a/docs/api/XRTK.Definitions.Controllers.Hands.HandBoundsLOD.html +++ /dev/null @@ -1,170 +0,0 @@ - - - - - - - - Enum HandBoundsLOD - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.html b/docs/api/XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.html deleted file mode 100644 index 5f01a6aff..000000000 --- a/docs/api/XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.html +++ /dev/null @@ -1,491 +0,0 @@ - - - - - - - - Class HandControllerPoseProfile - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Controllers.Hands.HandData.html b/docs/api/XRTK.Definitions.Controllers.Hands.HandData.html deleted file mode 100644 index 100d903d0..000000000 --- a/docs/api/XRTK.Definitions.Controllers.Hands.HandData.html +++ /dev/null @@ -1,639 +0,0 @@ - - - - - - - - Struct HandData - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Controllers.Hands.HandFinger.html b/docs/api/XRTK.Definitions.Controllers.Hands.HandFinger.html deleted file mode 100644 index 7f6c44f6f..000000000 --- a/docs/api/XRTK.Definitions.Controllers.Hands.HandFinger.html +++ /dev/null @@ -1,178 +0,0 @@ - - - - - - - - Enum HandFinger - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Controllers.Hands.HandMeshData.html b/docs/api/XRTK.Definitions.Controllers.Hands.HandMeshData.html deleted file mode 100644 index fa4e6d061..000000000 --- a/docs/api/XRTK.Definitions.Controllers.Hands.HandMeshData.html +++ /dev/null @@ -1,397 +0,0 @@ - - - - - - - - Struct HandMeshData - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Controllers.Hands.HandRenderingMode.html b/docs/api/XRTK.Definitions.Controllers.Hands.HandRenderingMode.html deleted file mode 100644 index f06cdb37e..000000000 --- a/docs/api/XRTK.Definitions.Controllers.Hands.HandRenderingMode.html +++ /dev/null @@ -1,176 +0,0 @@ - - - - - - - - Enum HandRenderingMode - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Controllers.Hands.RecordedHandJoint.html b/docs/api/XRTK.Definitions.Controllers.Hands.RecordedHandJoint.html deleted file mode 100644 index fe4e4f7c5..000000000 --- a/docs/api/XRTK.Definitions.Controllers.Hands.RecordedHandJoint.html +++ /dev/null @@ -1,262 +0,0 @@ - - - - - - - - Struct RecordedHandJoint - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Controllers.Hands.RecordedHandJoints.html b/docs/api/XRTK.Definitions.Controllers.Hands.RecordedHandJoints.html deleted file mode 100644 index 3b80829bd..000000000 --- a/docs/api/XRTK.Definitions.Controllers.Hands.RecordedHandJoints.html +++ /dev/null @@ -1,198 +0,0 @@ - - - - - - - - Class RecordedHandJoints - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Controllers.Hands.TrackedHandBounds.html b/docs/api/XRTK.Definitions.Controllers.Hands.TrackedHandBounds.html deleted file mode 100644 index 0dfaf48c2..000000000 --- a/docs/api/XRTK.Definitions.Controllers.Hands.TrackedHandBounds.html +++ /dev/null @@ -1,197 +0,0 @@ - - - - - - - - Enum TrackedHandBounds - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Controllers.Hands.TrackedHandJoint.html b/docs/api/XRTK.Definitions.Controllers.Hands.TrackedHandJoint.html deleted file mode 100644 index a5443bbcb..000000000 --- a/docs/api/XRTK.Definitions.Controllers.Hands.TrackedHandJoint.html +++ /dev/null @@ -1,293 +0,0 @@ - - - - - - - - Enum TrackedHandJoint - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Controllers.Hands.html b/docs/api/XRTK.Definitions.Controllers.Hands.html deleted file mode 100644 index d223cb810..000000000 --- a/docs/api/XRTK.Definitions.Controllers.Hands.html +++ /dev/null @@ -1,156 +0,0 @@ - - - - - - - - Namespace XRTK.Definitions.Controllers.Hands - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile.html b/docs/api/XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile.html deleted file mode 100644 index 4f3132438..000000000 --- a/docs/api/XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile.html +++ /dev/null @@ -1,328 +0,0 @@ - - - - - - - - Class MixedRealityControllerMappingProfile - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Controllers.MixedRealityControllerVisualizationProfile.html b/docs/api/XRTK.Definitions.Controllers.MixedRealityControllerVisualizationProfile.html deleted file mode 100644 index 11399f235..000000000 --- a/docs/api/XRTK.Definitions.Controllers.MixedRealityControllerVisualizationProfile.html +++ /dev/null @@ -1,361 +0,0 @@ - - - - - - - - Class MixedRealityControllerVisualizationProfile - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Controllers.MixedRealityInteractionMappingProfile.html b/docs/api/XRTK.Definitions.Controllers.MixedRealityInteractionMappingProfile.html deleted file mode 100644 index d050e318e..000000000 --- a/docs/api/XRTK.Definitions.Controllers.MixedRealityInteractionMappingProfile.html +++ /dev/null @@ -1,267 +0,0 @@ - - - - - - - - Class MixedRealityInteractionMappingProfile - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Controllers.OpenVR.Profiles.OpenVRControllerDataProviderProfile.html b/docs/api/XRTK.Definitions.Controllers.OpenVR.Profiles.OpenVRControllerDataProviderProfile.html deleted file mode 100644 index f247e7cdf..000000000 --- a/docs/api/XRTK.Definitions.Controllers.OpenVR.Profiles.OpenVRControllerDataProviderProfile.html +++ /dev/null @@ -1,249 +0,0 @@ - - - - - - - - Class OpenVRControllerDataProviderProfile - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Controllers.OpenVR.Profiles.html b/docs/api/XRTK.Definitions.Controllers.OpenVR.Profiles.html deleted file mode 100644 index eafacd4b6..000000000 --- a/docs/api/XRTK.Definitions.Controllers.OpenVR.Profiles.html +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - Namespace XRTK.Definitions.Controllers.OpenVR.Profiles - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.html b/docs/api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.html deleted file mode 100644 index a354e7cd5..000000000 --- a/docs/api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.html +++ /dev/null @@ -1,498 +0,0 @@ - - - - - - - - Class SimulatedHandControllerDataProviderProfile - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.html b/docs/api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.html deleted file mode 100644 index e116ea3e2..000000000 --- a/docs/api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.html +++ /dev/null @@ -1,962 +0,0 @@ - - - - - - - - Struct SimulatedHandControllerPose - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Controllers.Simulation.Hands.html b/docs/api/XRTK.Definitions.Controllers.Simulation.Hands.html deleted file mode 100644 index 4fda500f1..000000000 --- a/docs/api/XRTK.Definitions.Controllers.Simulation.Hands.html +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - - - Namespace XRTK.Definitions.Controllers.Simulation.Hands - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.html b/docs/api/XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.html deleted file mode 100644 index 91504dfef..000000000 --- a/docs/api/XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.html +++ /dev/null @@ -1,563 +0,0 @@ - - - - - - - - Class SimulatedControllerDataProviderProfile - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Controllers.Simulation.html b/docs/api/XRTK.Definitions.Controllers.Simulation.html deleted file mode 100644 index cc9b0722f..000000000 --- a/docs/api/XRTK.Definitions.Controllers.Simulation.html +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - Namespace XRTK.Definitions.Controllers.Simulation - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Controllers.UnityInput.Profiles.MouseControllerDataProviderProfile.html b/docs/api/XRTK.Definitions.Controllers.UnityInput.Profiles.MouseControllerDataProviderProfile.html deleted file mode 100644 index b049fa985..000000000 --- a/docs/api/XRTK.Definitions.Controllers.UnityInput.Profiles.MouseControllerDataProviderProfile.html +++ /dev/null @@ -1,248 +0,0 @@ - - - - - - - - Class MouseControllerDataProviderProfile - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Controllers.UnityInput.Profiles.TouchScreenControllerDataProviderProfile.html b/docs/api/XRTK.Definitions.Controllers.UnityInput.Profiles.TouchScreenControllerDataProviderProfile.html deleted file mode 100644 index 70a7a1bf1..000000000 --- a/docs/api/XRTK.Definitions.Controllers.UnityInput.Profiles.TouchScreenControllerDataProviderProfile.html +++ /dev/null @@ -1,249 +0,0 @@ - - - - - - - - Class TouchScreenControllerDataProviderProfile - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Controllers.UnityInput.Profiles.UnityInputControllerDataProfile.html b/docs/api/XRTK.Definitions.Controllers.UnityInput.Profiles.UnityInputControllerDataProfile.html deleted file mode 100644 index 41a8ec8dc..000000000 --- a/docs/api/XRTK.Definitions.Controllers.UnityInput.Profiles.UnityInputControllerDataProfile.html +++ /dev/null @@ -1,249 +0,0 @@ - - - - - - - - Class UnityInputControllerDataProfile - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Controllers.UnityInput.Profiles.html b/docs/api/XRTK.Definitions.Controllers.UnityInput.Profiles.html deleted file mode 100644 index b4dce827d..000000000 --- a/docs/api/XRTK.Definitions.Controllers.UnityInput.Profiles.html +++ /dev/null @@ -1,122 +0,0 @@ - - - - - - - - Namespace XRTK.Definitions.Controllers.UnityInput.Profiles - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Controllers.html b/docs/api/XRTK.Definitions.Controllers.html deleted file mode 100644 index dd15da513..000000000 --- a/docs/api/XRTK.Definitions.Controllers.html +++ /dev/null @@ -1,129 +0,0 @@ - - - - - - - - Namespace XRTK.Definitions.Controllers - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Devices.ControllerMappingLibrary.html b/docs/api/XRTK.Definitions.Devices.ControllerMappingLibrary.html deleted file mode 100644 index 7c47f5fb6..000000000 --- a/docs/api/XRTK.Definitions.Devices.ControllerMappingLibrary.html +++ /dev/null @@ -1,1150 +0,0 @@ - - - - - - - - Class ControllerMappingLibrary - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Devices.DeviceInputType.html b/docs/api/XRTK.Definitions.Devices.DeviceInputType.html deleted file mode 100644 index 77491ac03..000000000 --- a/docs/api/XRTK.Definitions.Devices.DeviceInputType.html +++ /dev/null @@ -1,369 +0,0 @@ - - - - - - - - Enum DeviceInputType - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Devices.GestureInputType.html b/docs/api/XRTK.Definitions.Devices.GestureInputType.html deleted file mode 100644 index 49b432a73..000000000 --- a/docs/api/XRTK.Definitions.Devices.GestureInputType.html +++ /dev/null @@ -1,182 +0,0 @@ - - - - - - - - Enum GestureInputType - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Devices.Headset.html b/docs/api/XRTK.Definitions.Devices.Headset.html deleted file mode 100644 index 41e5a1ffa..000000000 --- a/docs/api/XRTK.Definitions.Devices.Headset.html +++ /dev/null @@ -1,405 +0,0 @@ - - - - - - - - Struct Headset - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Devices.InputProcessor-1.html b/docs/api/XRTK.Definitions.Devices.InputProcessor-1.html deleted file mode 100644 index 0be735dda..000000000 --- a/docs/api/XRTK.Definitions.Devices.InputProcessor-1.html +++ /dev/null @@ -1,258 +0,0 @@ - - - - - - - - Class InputProcessor<T> - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Devices.InputProcessor.html b/docs/api/XRTK.Definitions.Devices.InputProcessor.html deleted file mode 100644 index d19c39527..000000000 --- a/docs/api/XRTK.Definitions.Devices.InputProcessor.html +++ /dev/null @@ -1,206 +0,0 @@ - - - - - - - - Class InputProcessor - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Devices.InvertDualAxisProcessor.html b/docs/api/XRTK.Definitions.Devices.InvertDualAxisProcessor.html deleted file mode 100644 index 8ad562d22..000000000 --- a/docs/api/XRTK.Definitions.Devices.InvertDualAxisProcessor.html +++ /dev/null @@ -1,306 +0,0 @@ - - - - - - - - Class InvertDualAxisProcessor - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Devices.InvertSingleAxisProcessor.html b/docs/api/XRTK.Definitions.Devices.InvertSingleAxisProcessor.html deleted file mode 100644 index 476eae99e..000000000 --- a/docs/api/XRTK.Definitions.Devices.InvertSingleAxisProcessor.html +++ /dev/null @@ -1,276 +0,0 @@ - - - - - - - - Class InvertSingleAxisProcessor - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Devices.MixedRealityInteractionMapping.html b/docs/api/XRTK.Definitions.Devices.MixedRealityInteractionMapping.html deleted file mode 100644 index 83d9b33f3..000000000 --- a/docs/api/XRTK.Definitions.Devices.MixedRealityInteractionMapping.html +++ /dev/null @@ -1,1112 +0,0 @@ - - - - - - - - Class MixedRealityInteractionMapping - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Devices.SDKType.html b/docs/api/XRTK.Definitions.Devices.SDKType.html deleted file mode 100644 index e149a0f14..000000000 --- a/docs/api/XRTK.Definitions.Devices.SDKType.html +++ /dev/null @@ -1,184 +0,0 @@ - - - - - - - - Enum SDKType - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Devices.TrackingState.html b/docs/api/XRTK.Definitions.Devices.TrackingState.html deleted file mode 100644 index 6eed9a9e5..000000000 --- a/docs/api/XRTK.Definitions.Devices.TrackingState.html +++ /dev/null @@ -1,177 +0,0 @@ - - - - - - - - Enum TrackingState - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Devices.html b/docs/api/XRTK.Definitions.Devices.html deleted file mode 100644 index 5db26ac83..000000000 --- a/docs/api/XRTK.Definitions.Devices.html +++ /dev/null @@ -1,154 +0,0 @@ - - - - - - - - Namespace XRTK.Definitions.Devices - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.DiagnosticsSystem.MemoryLimit.html b/docs/api/XRTK.Definitions.DiagnosticsSystem.MemoryLimit.html deleted file mode 100644 index 789ca7d95..000000000 --- a/docs/api/XRTK.Definitions.DiagnosticsSystem.MemoryLimit.html +++ /dev/null @@ -1,268 +0,0 @@ - - - - - - - - Struct MemoryLimit - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.DiagnosticsSystem.MemoryPeak.html b/docs/api/XRTK.Definitions.DiagnosticsSystem.MemoryPeak.html deleted file mode 100644 index da4a995ca..000000000 --- a/docs/api/XRTK.Definitions.DiagnosticsSystem.MemoryPeak.html +++ /dev/null @@ -1,268 +0,0 @@ - - - - - - - - Struct MemoryPeak - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.DiagnosticsSystem.MemoryUsage.html b/docs/api/XRTK.Definitions.DiagnosticsSystem.MemoryUsage.html deleted file mode 100644 index a0b21ee9c..000000000 --- a/docs/api/XRTK.Definitions.DiagnosticsSystem.MemoryUsage.html +++ /dev/null @@ -1,268 +0,0 @@ - - - - - - - - Struct MemoryUsage - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.DiagnosticsSystem.MixedRealityDiagnosticsSystemProfile.html b/docs/api/XRTK.Definitions.DiagnosticsSystem.MixedRealityDiagnosticsSystemProfile.html deleted file mode 100644 index 3e686dd71..000000000 --- a/docs/api/XRTK.Definitions.DiagnosticsSystem.MixedRealityDiagnosticsSystemProfile.html +++ /dev/null @@ -1,285 +0,0 @@ - - - - - - - - Class MixedRealityDiagnosticsSystemProfile - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.DiagnosticsSystem.html b/docs/api/XRTK.Definitions.DiagnosticsSystem.html deleted file mode 100644 index c1a3e1f6a..000000000 --- a/docs/api/XRTK.Definitions.DiagnosticsSystem.html +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - - Namespace XRTK.Definitions.DiagnosticsSystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.IMixedRealityServiceProfile-1.html b/docs/api/XRTK.Definitions.IMixedRealityServiceProfile-1.html deleted file mode 100644 index d30a20d5e..000000000 --- a/docs/api/XRTK.Definitions.IMixedRealityServiceProfile-1.html +++ /dev/null @@ -1,182 +0,0 @@ - - - - - - - - Interface IMixedRealityServiceProfile<TService> - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.InputSystem.AnimatedCursorData.html b/docs/api/XRTK.Definitions.InputSystem.AnimatedCursorData.html deleted file mode 100644 index be21b0e40..000000000 --- a/docs/api/XRTK.Definitions.InputSystem.AnimatedCursorData.html +++ /dev/null @@ -1,300 +0,0 @@ - - - - - - - - Struct AnimatedCursorData - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.InputSystem.CursorStateEnum.html b/docs/api/XRTK.Definitions.InputSystem.CursorStateEnum.html deleted file mode 100644 index 86e1dc365..000000000 --- a/docs/api/XRTK.Definitions.InputSystem.CursorStateEnum.html +++ /dev/null @@ -1,200 +0,0 @@ - - - - - - - - Enum CursorStateEnum - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.InputSystem.InputActionEventPair.html b/docs/api/XRTK.Definitions.InputSystem.InputActionEventPair.html deleted file mode 100644 index 44e327172..000000000 --- a/docs/api/XRTK.Definitions.InputSystem.InputActionEventPair.html +++ /dev/null @@ -1,228 +0,0 @@ - - - - - - - - Class InputActionEventPair - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.InputSystem.KeywordAndResponse.html b/docs/api/XRTK.Definitions.InputSystem.KeywordAndResponse.html deleted file mode 100644 index 196256f85..000000000 --- a/docs/api/XRTK.Definitions.InputSystem.KeywordAndResponse.html +++ /dev/null @@ -1,262 +0,0 @@ - - - - - - - - Struct KeywordAndResponse - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.InputSystem.MixedRealityGestureMapping.html b/docs/api/XRTK.Definitions.InputSystem.MixedRealityGestureMapping.html deleted file mode 100644 index a28444cb1..000000000 --- a/docs/api/XRTK.Definitions.InputSystem.MixedRealityGestureMapping.html +++ /dev/null @@ -1,296 +0,0 @@ - - - - - - - - Struct MixedRealityGestureMapping - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.InputSystem.MixedRealityGesturesProfile.html b/docs/api/XRTK.Definitions.InputSystem.MixedRealityGesturesProfile.html deleted file mode 100644 index f0df01de9..000000000 --- a/docs/api/XRTK.Definitions.InputSystem.MixedRealityGesturesProfile.html +++ /dev/null @@ -1,239 +0,0 @@ - - - - - - - - Class MixedRealityGesturesProfile - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.InputSystem.MixedRealityInputAction.html b/docs/api/XRTK.Definitions.InputSystem.MixedRealityInputAction.html deleted file mode 100644 index 1904dcd0e..000000000 --- a/docs/api/XRTK.Definitions.InputSystem.MixedRealityInputAction.html +++ /dev/null @@ -1,780 +0,0 @@ - - - - - - - - Struct MixedRealityInputAction - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.InputSystem.MixedRealityInputActionsProfile.html b/docs/api/XRTK.Definitions.InputSystem.MixedRealityInputActionsProfile.html deleted file mode 100644 index 5c6fd3581..000000000 --- a/docs/api/XRTK.Definitions.InputSystem.MixedRealityInputActionsProfile.html +++ /dev/null @@ -1,242 +0,0 @@ - - - - - - - - Class MixedRealityInputActionsProfile - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.html b/docs/api/XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.html deleted file mode 100644 index 359bbe939..000000000 --- a/docs/api/XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.html +++ /dev/null @@ -1,719 +0,0 @@ - - - - - - - - Class MixedRealityInputSystemProfile - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.InputSystem.MixedRealityPointerProfile.html b/docs/api/XRTK.Definitions.InputSystem.MixedRealityPointerProfile.html deleted file mode 100644 index 564170c37..000000000 --- a/docs/api/XRTK.Definitions.InputSystem.MixedRealityPointerProfile.html +++ /dev/null @@ -1,362 +0,0 @@ - - - - - - - - Class MixedRealityPointerProfile - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.InputSystem.MixedRealitySpeechCommandsProfile.html b/docs/api/XRTK.Definitions.InputSystem.MixedRealitySpeechCommandsProfile.html deleted file mode 100644 index afd40e325..000000000 --- a/docs/api/XRTK.Definitions.InputSystem.MixedRealitySpeechCommandsProfile.html +++ /dev/null @@ -1,301 +0,0 @@ - - - - - - - - Class MixedRealitySpeechCommandsProfile - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.InputSystem.SpeechCommands.html b/docs/api/XRTK.Definitions.InputSystem.SpeechCommands.html deleted file mode 100644 index bfcbe7c72..000000000 --- a/docs/api/XRTK.Definitions.InputSystem.SpeechCommands.html +++ /dev/null @@ -1,299 +0,0 @@ - - - - - - - - Struct SpeechCommands - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.InputSystem.WindowsGestureSettings.html b/docs/api/XRTK.Definitions.InputSystem.WindowsGestureSettings.html deleted file mode 100644 index f754a0b5b..000000000 --- a/docs/api/XRTK.Definitions.InputSystem.WindowsGestureSettings.html +++ /dev/null @@ -1,227 +0,0 @@ - - - - - - - - Enum WindowsGestureSettings - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.InputSystem.html b/docs/api/XRTK.Definitions.InputSystem.html deleted file mode 100644 index b476dc189..000000000 --- a/docs/api/XRTK.Definitions.InputSystem.html +++ /dev/null @@ -1,157 +0,0 @@ - - - - - - - - Namespace XRTK.Definitions.InputSystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.InteractionMode.html b/docs/api/XRTK.Definitions.InteractionMode.html deleted file mode 100644 index 94d612623..000000000 --- a/docs/api/XRTK.Definitions.InteractionMode.html +++ /dev/null @@ -1,170 +0,0 @@ - - - - - - - - Enum InteractionMode - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Lines.DistortionMode.html b/docs/api/XRTK.Definitions.Lines.DistortionMode.html deleted file mode 100644 index d05067088..000000000 --- a/docs/api/XRTK.Definitions.Lines.DistortionMode.html +++ /dev/null @@ -1,168 +0,0 @@ - - - - - - - - Enum DistortionMode - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Lines.InterpolationMode.html b/docs/api/XRTK.Definitions.Lines.InterpolationMode.html deleted file mode 100644 index 981dbd0ae..000000000 --- a/docs/api/XRTK.Definitions.Lines.InterpolationMode.html +++ /dev/null @@ -1,173 +0,0 @@ - - - - - - - - Enum InterpolationMode - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Lines.InterpolationType.html b/docs/api/XRTK.Definitions.Lines.InterpolationType.html deleted file mode 100644 index d9b434518..000000000 --- a/docs/api/XRTK.Definitions.Lines.InterpolationType.html +++ /dev/null @@ -1,170 +0,0 @@ - - - - - - - - Enum InterpolationType - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Lines.LinePointTransformMode.html b/docs/api/XRTK.Definitions.Lines.LinePointTransformMode.html deleted file mode 100644 index 403be135b..000000000 --- a/docs/api/XRTK.Definitions.Lines.LinePointTransformMode.html +++ /dev/null @@ -1,168 +0,0 @@ - - - - - - - - Enum LinePointTransformMode - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Lines.LineRotationMode.html b/docs/api/XRTK.Definitions.Lines.LineRotationMode.html deleted file mode 100644 index e4b074459..000000000 --- a/docs/api/XRTK.Definitions.Lines.LineRotationMode.html +++ /dev/null @@ -1,173 +0,0 @@ - - - - - - - - Enum LineRotationMode - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Lines.PointDistributionMode.html b/docs/api/XRTK.Definitions.Lines.PointDistributionMode.html deleted file mode 100644 index 99deff4aa..000000000 --- a/docs/api/XRTK.Definitions.Lines.PointDistributionMode.html +++ /dev/null @@ -1,178 +0,0 @@ - - - - - - - - Enum PointDistributionMode - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Lines.StepMode.html b/docs/api/XRTK.Definitions.Lines.StepMode.html deleted file mode 100644 index 80213c675..000000000 --- a/docs/api/XRTK.Definitions.Lines.StepMode.html +++ /dev/null @@ -1,168 +0,0 @@ - - - - - - - - Enum StepMode - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Lines.html b/docs/api/XRTK.Definitions.Lines.html deleted file mode 100644 index 10ac4a72a..000000000 --- a/docs/api/XRTK.Definitions.Lines.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - - - Namespace XRTK.Definitions.Lines - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.MixedRealityPlatformServiceConfigurationProfile.html b/docs/api/XRTK.Definitions.MixedRealityPlatformServiceConfigurationProfile.html deleted file mode 100644 index adc73e54c..000000000 --- a/docs/api/XRTK.Definitions.MixedRealityPlatformServiceConfigurationProfile.html +++ /dev/null @@ -1,267 +0,0 @@ - - - - - - - - Class MixedRealityPlatformServiceConfigurationProfile - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.MixedRealityRegisteredServiceProvidersProfile.html b/docs/api/XRTK.Definitions.MixedRealityRegisteredServiceProvidersProfile.html deleted file mode 100644 index 815d3984e..000000000 --- a/docs/api/XRTK.Definitions.MixedRealityRegisteredServiceProvidersProfile.html +++ /dev/null @@ -1,220 +0,0 @@ - - - - - - - - Class MixedRealityRegisteredServiceProvidersProfile - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.MixedRealityServiceConfiguration-1.html b/docs/api/XRTK.Definitions.MixedRealityServiceConfiguration-1.html deleted file mode 100644 index 96ac69a8f..000000000 --- a/docs/api/XRTK.Definitions.MixedRealityServiceConfiguration-1.html +++ /dev/null @@ -1,333 +0,0 @@ - - - - - - - - Class MixedRealityServiceConfiguration<T> - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.MixedRealityServiceConfiguration.html b/docs/api/XRTK.Definitions.MixedRealityServiceConfiguration.html deleted file mode 100644 index 1d05ed12a..000000000 --- a/docs/api/XRTK.Definitions.MixedRealityServiceConfiguration.html +++ /dev/null @@ -1,427 +0,0 @@ - - - - - - - - Class MixedRealityServiceConfiguration - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.MixedRealityToolkitRootProfile.html b/docs/api/XRTK.Definitions.MixedRealityToolkitRootProfile.html deleted file mode 100644 index 640788a48..000000000 --- a/docs/api/XRTK.Definitions.MixedRealityToolkitRootProfile.html +++ /dev/null @@ -1,254 +0,0 @@ - - - - - - - - Class MixedRealityToolkitRootProfile - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.NetworkingSystem.MixedRealityNetworkSystemProfile.html b/docs/api/XRTK.Definitions.NetworkingSystem.MixedRealityNetworkSystemProfile.html deleted file mode 100644 index 4379bfb8b..000000000 --- a/docs/api/XRTK.Definitions.NetworkingSystem.MixedRealityNetworkSystemProfile.html +++ /dev/null @@ -1,221 +0,0 @@ - - - - - - - - Class MixedRealityNetworkSystemProfile - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.NetworkingSystem.html b/docs/api/XRTK.Definitions.NetworkingSystem.html deleted file mode 100644 index 163e79f03..000000000 --- a/docs/api/XRTK.Definitions.NetworkingSystem.html +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - Namespace XRTK.Definitions.NetworkingSystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Physics.ComparableRaycastResult.html b/docs/api/XRTK.Definitions.Physics.ComparableRaycastResult.html deleted file mode 100644 index a915685f8..000000000 --- a/docs/api/XRTK.Definitions.Physics.ComparableRaycastResult.html +++ /dev/null @@ -1,253 +0,0 @@ - - - - - - - - Struct ComparableRaycastResult - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Physics.FocusDetails.html b/docs/api/XRTK.Definitions.Physics.FocusDetails.html deleted file mode 100644 index 1b41dafec..000000000 --- a/docs/api/XRTK.Definitions.Physics.FocusDetails.html +++ /dev/null @@ -1,406 +0,0 @@ - - - - - - - - Struct FocusDetails - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Physics.RayStep.html b/docs/api/XRTK.Definitions.Physics.RayStep.html deleted file mode 100644 index 8df76852d..000000000 --- a/docs/api/XRTK.Definitions.Physics.RayStep.html +++ /dev/null @@ -1,750 +0,0 @@ - - - - - - - - Struct RayStep - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Physics.RaycastMode.html b/docs/api/XRTK.Definitions.Physics.RaycastMode.html deleted file mode 100644 index e3f6f81e1..000000000 --- a/docs/api/XRTK.Definitions.Physics.RaycastMode.html +++ /dev/null @@ -1,173 +0,0 @@ - - - - - - - - Enum RaycastMode - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Physics.html b/docs/api/XRTK.Definitions.Physics.html deleted file mode 100644 index beb6509d2..000000000 --- a/docs/api/XRTK.Definitions.Physics.html +++ /dev/null @@ -1,131 +0,0 @@ - - - - - - - - Namespace XRTK.Definitions.Physics - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Platforms.A6Platform.html b/docs/api/XRTK.Definitions.Platforms.A6Platform.html deleted file mode 100644 index 7188ae6ff..000000000 --- a/docs/api/XRTK.Definitions.Platforms.A6Platform.html +++ /dev/null @@ -1,195 +0,0 @@ - - - - - - - - Class A6Platform - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Platforms.ARCorePlatform.html b/docs/api/XRTK.Definitions.Platforms.ARCorePlatform.html deleted file mode 100644 index 3f4ea1251..000000000 --- a/docs/api/XRTK.Definitions.Platforms.ARCorePlatform.html +++ /dev/null @@ -1,195 +0,0 @@ - - - - - - - - Class ARCorePlatform - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Platforms.AllPlatforms.html b/docs/api/XRTK.Definitions.Platforms.AllPlatforms.html deleted file mode 100644 index ad3a4eff3..000000000 --- a/docs/api/XRTK.Definitions.Platforms.AllPlatforms.html +++ /dev/null @@ -1,214 +0,0 @@ - - - - - - - - Class AllPlatforms - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Platforms.AndroidPlatform.html b/docs/api/XRTK.Definitions.Platforms.AndroidPlatform.html deleted file mode 100644 index be148a552..000000000 --- a/docs/api/XRTK.Definitions.Platforms.AndroidPlatform.html +++ /dev/null @@ -1,214 +0,0 @@ - - - - - - - - Class AndroidPlatform - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Platforms.BasePlatform.html b/docs/api/XRTK.Definitions.Platforms.BasePlatform.html deleted file mode 100644 index 58f36ef59..000000000 --- a/docs/api/XRTK.Definitions.Platforms.BasePlatform.html +++ /dev/null @@ -1,354 +0,0 @@ - - - - - - - - Class BasePlatform - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Platforms.CurrentBuildTargetPlatform.html b/docs/api/XRTK.Definitions.Platforms.CurrentBuildTargetPlatform.html deleted file mode 100644 index ad9869b62..000000000 --- a/docs/api/XRTK.Definitions.Platforms.CurrentBuildTargetPlatform.html +++ /dev/null @@ -1,214 +0,0 @@ - - - - - - - - Class CurrentBuildTargetPlatform - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Platforms.EditorPlatform.html b/docs/api/XRTK.Definitions.Platforms.EditorPlatform.html deleted file mode 100644 index eb22b88dc..000000000 --- a/docs/api/XRTK.Definitions.Platforms.EditorPlatform.html +++ /dev/null @@ -1,217 +0,0 @@ - - - - - - - - Class EditorPlatform - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Platforms.IOSPlatform.html b/docs/api/XRTK.Definitions.Platforms.IOSPlatform.html deleted file mode 100644 index 59afb7958..000000000 --- a/docs/api/XRTK.Definitions.Platforms.IOSPlatform.html +++ /dev/null @@ -1,214 +0,0 @@ - - - - - - - - Class IOSPlatform - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Platforms.LuminPlatform.html b/docs/api/XRTK.Definitions.Platforms.LuminPlatform.html deleted file mode 100644 index 3f0a1c450..000000000 --- a/docs/api/XRTK.Definitions.Platforms.LuminPlatform.html +++ /dev/null @@ -1,214 +0,0 @@ - - - - - - - - Class LuminPlatform - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Platforms.NrealPlatform.html b/docs/api/XRTK.Definitions.Platforms.NrealPlatform.html deleted file mode 100644 index 44c3ae43e..000000000 --- a/docs/api/XRTK.Definitions.Platforms.NrealPlatform.html +++ /dev/null @@ -1,195 +0,0 @@ - - - - - - - - Class NrealPlatform - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Platforms.OSXPlatform.html b/docs/api/XRTK.Definitions.Platforms.OSXPlatform.html deleted file mode 100644 index 1a2d4a1a2..000000000 --- a/docs/api/XRTK.Definitions.Platforms.OSXPlatform.html +++ /dev/null @@ -1,214 +0,0 @@ - - - - - - - - Class OSXPlatform - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Platforms.SteamVRPlatform.html b/docs/api/XRTK.Definitions.Platforms.SteamVRPlatform.html deleted file mode 100644 index dd3e4eb8d..000000000 --- a/docs/api/XRTK.Definitions.Platforms.SteamVRPlatform.html +++ /dev/null @@ -1,195 +0,0 @@ - - - - - - - - Class SteamVRPlatform - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Platforms.UltraleapPlatform.html b/docs/api/XRTK.Definitions.Platforms.UltraleapPlatform.html deleted file mode 100644 index 6fd18d334..000000000 --- a/docs/api/XRTK.Definitions.Platforms.UltraleapPlatform.html +++ /dev/null @@ -1,195 +0,0 @@ - - - - - - - - Class UltraleapPlatform - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Platforms.UniversalWindowsPlatform.html b/docs/api/XRTK.Definitions.Platforms.UniversalWindowsPlatform.html deleted file mode 100644 index 82fc89a51..000000000 --- a/docs/api/XRTK.Definitions.Platforms.UniversalWindowsPlatform.html +++ /dev/null @@ -1,214 +0,0 @@ - - - - - - - - Class UniversalWindowsPlatform - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Platforms.WebGlPlatform.html b/docs/api/XRTK.Definitions.Platforms.WebGlPlatform.html deleted file mode 100644 index 97303ea57..000000000 --- a/docs/api/XRTK.Definitions.Platforms.WebGlPlatform.html +++ /dev/null @@ -1,214 +0,0 @@ - - - - - - - - Class WebGlPlatform - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Platforms.WindowsStandalonePlatform.html b/docs/api/XRTK.Definitions.Platforms.WindowsStandalonePlatform.html deleted file mode 100644 index 59ef3e84f..000000000 --- a/docs/api/XRTK.Definitions.Platforms.WindowsStandalonePlatform.html +++ /dev/null @@ -1,214 +0,0 @@ - - - - - - - - Class WindowsStandalonePlatform - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Platforms.html b/docs/api/XRTK.Definitions.Platforms.html deleted file mode 100644 index 3fabf3bb9..000000000 --- a/docs/api/XRTK.Definitions.Platforms.html +++ /dev/null @@ -1,149 +0,0 @@ - - - - - - - - Namespace XRTK.Definitions.Platforms - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.RuntimePlatformEntry.html b/docs/api/XRTK.Definitions.RuntimePlatformEntry.html deleted file mode 100644 index f1c34b9c1..000000000 --- a/docs/api/XRTK.Definitions.RuntimePlatformEntry.html +++ /dev/null @@ -1,244 +0,0 @@ - - - - - - - - Class RuntimePlatformEntry - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystemProfile.html b/docs/api/XRTK.Definitions.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystemProfile.html deleted file mode 100644 index beba5e8f9..000000000 --- a/docs/api/XRTK.Definitions.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystemProfile.html +++ /dev/null @@ -1,407 +0,0 @@ - - - - - - - - Class MixedRealitySpatialAwarenessSystemProfile - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.SpatialAwarenessSystem.SpatialAwarenessMeshLevelOfDetail.html b/docs/api/XRTK.Definitions.SpatialAwarenessSystem.SpatialAwarenessMeshLevelOfDetail.html deleted file mode 100644 index f3c7631fd..000000000 --- a/docs/api/XRTK.Definitions.SpatialAwarenessSystem.SpatialAwarenessMeshLevelOfDetail.html +++ /dev/null @@ -1,179 +0,0 @@ - - - - - - - - Enum SpatialAwarenessMeshLevelOfDetail - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.SpatialAwarenessSystem.SpatialAwarenessSurfaceTypes.html b/docs/api/XRTK.Definitions.SpatialAwarenessSystem.SpatialAwarenessSurfaceTypes.html deleted file mode 100644 index 1d924eaea..000000000 --- a/docs/api/XRTK.Definitions.SpatialAwarenessSystem.SpatialAwarenessSurfaceTypes.html +++ /dev/null @@ -1,184 +0,0 @@ - - - - - - - - Enum SpatialAwarenessSurfaceTypes - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshDisplayOptions.html b/docs/api/XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshDisplayOptions.html deleted file mode 100644 index 64b37b3f9..000000000 --- a/docs/api/XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshDisplayOptions.html +++ /dev/null @@ -1,178 +0,0 @@ - - - - - - - - Enum SpatialMeshDisplayOptions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.html b/docs/api/XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.html deleted file mode 100644 index bb002a7a2..000000000 --- a/docs/api/XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.html +++ /dev/null @@ -1,413 +0,0 @@ - - - - - - - - Struct SpatialMeshObject - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.SpatialAwarenessSystem.SpatialObserverStatus.html b/docs/api/XRTK.Definitions.SpatialAwarenessSystem.SpatialObserverStatus.html deleted file mode 100644 index ff59d8414..000000000 --- a/docs/api/XRTK.Definitions.SpatialAwarenessSystem.SpatialObserverStatus.html +++ /dev/null @@ -1,175 +0,0 @@ - - - - - - - - Enum SpatialObserverStatus - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.SpatialAwarenessSystem.html b/docs/api/XRTK.Definitions.SpatialAwarenessSystem.html deleted file mode 100644 index 386852c7a..000000000 --- a/docs/api/XRTK.Definitions.SpatialAwarenessSystem.html +++ /dev/null @@ -1,139 +0,0 @@ - - - - - - - - Namespace XRTK.Definitions.SpatialAwarenessSystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.TeleportSystem.MixedRealityTeleportSystemProfile.html b/docs/api/XRTK.Definitions.TeleportSystem.MixedRealityTeleportSystemProfile.html deleted file mode 100644 index 60642e23a..000000000 --- a/docs/api/XRTK.Definitions.TeleportSystem.MixedRealityTeleportSystemProfile.html +++ /dev/null @@ -1,285 +0,0 @@ - - - - - - - - Class MixedRealityTeleportSystemProfile - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.TeleportSystem.MixedRealityTeleportValidationDataProviderProfile.html b/docs/api/XRTK.Definitions.TeleportSystem.MixedRealityTeleportValidationDataProviderProfile.html deleted file mode 100644 index 43e8cb5ad..000000000 --- a/docs/api/XRTK.Definitions.TeleportSystem.MixedRealityTeleportValidationDataProviderProfile.html +++ /dev/null @@ -1,363 +0,0 @@ - - - - - - - - Class MixedRealityTeleportValidationDataProviderProfile - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.TeleportSystem.html b/docs/api/XRTK.Definitions.TeleportSystem.html deleted file mode 100644 index 92ea66816..000000000 --- a/docs/api/XRTK.Definitions.TeleportSystem.html +++ /dev/null @@ -1,122 +0,0 @@ - - - - - - - - Namespace XRTK.Definitions.TeleportSystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Utilities.AnimatorParameter.html b/docs/api/XRTK.Definitions.Utilities.AnimatorParameter.html deleted file mode 100644 index 9e588e16c..000000000 --- a/docs/api/XRTK.Definitions.Utilities.AnimatorParameter.html +++ /dev/null @@ -1,404 +0,0 @@ - - - - - - - - Struct AnimatorParameter - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Utilities.AutoStartBehavior.html b/docs/api/XRTK.Definitions.Utilities.AutoStartBehavior.html deleted file mode 100644 index ede24d01c..000000000 --- a/docs/api/XRTK.Definitions.Utilities.AutoStartBehavior.html +++ /dev/null @@ -1,170 +0,0 @@ - - - - - - - - Enum AutoStartBehavior - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Utilities.AxisType.html b/docs/api/XRTK.Definitions.Utilities.AxisType.html deleted file mode 100644 index 270012970..000000000 --- a/docs/api/XRTK.Definitions.Utilities.AxisType.html +++ /dev/null @@ -1,199 +0,0 @@ - - - - - - - - Enum AxisType - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Utilities.CardinalAxis.html b/docs/api/XRTK.Definitions.Utilities.CardinalAxis.html deleted file mode 100644 index c8098b4f0..000000000 --- a/docs/api/XRTK.Definitions.Utilities.CardinalAxis.html +++ /dev/null @@ -1,171 +0,0 @@ - - - - - - - - Enum CardinalAxis - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Utilities.CollationOrderType.html b/docs/api/XRTK.Definitions.Utilities.CollationOrderType.html deleted file mode 100644 index 9ccefa382..000000000 --- a/docs/api/XRTK.Definitions.Utilities.CollationOrderType.html +++ /dev/null @@ -1,183 +0,0 @@ - - - - - - - - Enum CollationOrderType - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.html b/docs/api/XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.html deleted file mode 100644 index f4f918069..000000000 --- a/docs/api/XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.html +++ /dev/null @@ -1,230 +0,0 @@ - - - - - - - - Enum CreateProfileMenuItemIndices - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Utilities.FlattenMode.html b/docs/api/XRTK.Definitions.Utilities.FlattenMode.html deleted file mode 100644 index cc6d78d2b..000000000 --- a/docs/api/XRTK.Definitions.Utilities.FlattenMode.html +++ /dev/null @@ -1,182 +0,0 @@ - - - - - - - - Enum FlattenMode - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Utilities.Handedness.html b/docs/api/XRTK.Definitions.Utilities.Handedness.html deleted file mode 100644 index bb39e448b..000000000 --- a/docs/api/XRTK.Definitions.Utilities.Handedness.html +++ /dev/null @@ -1,203 +0,0 @@ - - - - - - - - Enum Handedness - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Utilities.MixedRealityPose.html b/docs/api/XRTK.Definitions.Utilities.MixedRealityPose.html deleted file mode 100644 index 67b87618d..000000000 --- a/docs/api/XRTK.Definitions.Utilities.MixedRealityPose.html +++ /dev/null @@ -1,870 +0,0 @@ - - - - - - - - Struct MixedRealityPose - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Utilities.OrientationType.html b/docs/api/XRTK.Definitions.Utilities.OrientationType.html deleted file mode 100644 index a3086f5a7..000000000 --- a/docs/api/XRTK.Definitions.Utilities.OrientationType.html +++ /dev/null @@ -1,203 +0,0 @@ - - - - - - - - Enum OrientationType - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Utilities.PivotAxis.html b/docs/api/XRTK.Definitions.Utilities.PivotAxis.html deleted file mode 100644 index e45c4d6d4..000000000 --- a/docs/api/XRTK.Definitions.Utilities.PivotAxis.html +++ /dev/null @@ -1,186 +0,0 @@ - - - - - - - - Enum PivotAxis - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Utilities.ProcessResult.html b/docs/api/XRTK.Definitions.Utilities.ProcessResult.html deleted file mode 100644 index 5e54231db..000000000 --- a/docs/api/XRTK.Definitions.Utilities.ProcessResult.html +++ /dev/null @@ -1,298 +0,0 @@ - - - - - - - - Struct ProcessResult - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Utilities.QuaternionSmoothed.html b/docs/api/XRTK.Definitions.Utilities.QuaternionSmoothed.html deleted file mode 100644 index cde6028ad..000000000 --- a/docs/api/XRTK.Definitions.Utilities.QuaternionSmoothed.html +++ /dev/null @@ -1,352 +0,0 @@ - - - - - - - - Struct QuaternionSmoothed - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Utilities.RecognitionConfidenceLevel.html b/docs/api/XRTK.Definitions.Utilities.RecognitionConfidenceLevel.html deleted file mode 100644 index 7ec591636..000000000 --- a/docs/api/XRTK.Definitions.Utilities.RecognitionConfidenceLevel.html +++ /dev/null @@ -1,174 +0,0 @@ - - - - - - - - Enum RecognitionConfidenceLevel - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Utilities.RenderPipeline.html b/docs/api/XRTK.Definitions.Utilities.RenderPipeline.html deleted file mode 100644 index 3d9acfa74..000000000 --- a/docs/api/XRTK.Definitions.Utilities.RenderPipeline.html +++ /dev/null @@ -1,179 +0,0 @@ - - - - - - - - Enum RenderPipeline - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Utilities.RotationConstraintType.html b/docs/api/XRTK.Definitions.Utilities.RotationConstraintType.html deleted file mode 100644 index 2983525f8..000000000 --- a/docs/api/XRTK.Definitions.Utilities.RotationConstraintType.html +++ /dev/null @@ -1,173 +0,0 @@ - - - - - - - - Enum RotationConstraintType - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Utilities.ScaleStateType.html b/docs/api/XRTK.Definitions.Utilities.ScaleStateType.html deleted file mode 100644 index ba5f74976..000000000 --- a/docs/api/XRTK.Definitions.Utilities.ScaleStateType.html +++ /dev/null @@ -1,169 +0,0 @@ - - - - - - - - Enum ScaleStateType - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Utilities.SolverOrientationType.html b/docs/api/XRTK.Definitions.Utilities.SolverOrientationType.html deleted file mode 100644 index 97a3908d9..000000000 --- a/docs/api/XRTK.Definitions.Utilities.SolverOrientationType.html +++ /dev/null @@ -1,187 +0,0 @@ - - - - - - - - Enum SolverOrientationType - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Utilities.StateChangeType.html b/docs/api/XRTK.Definitions.Utilities.StateChangeType.html deleted file mode 100644 index 6cb707ea7..000000000 --- a/docs/api/XRTK.Definitions.Utilities.StateChangeType.html +++ /dev/null @@ -1,168 +0,0 @@ - - - - - - - - Enum StateChangeType - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Utilities.SystemType.html b/docs/api/XRTK.Definitions.Utilities.SystemType.html deleted file mode 100644 index 2a6656f54..000000000 --- a/docs/api/XRTK.Definitions.Utilities.SystemType.html +++ /dev/null @@ -1,600 +0,0 @@ - - - - - - - - Class SystemType - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Utilities.TrackedObjectType.html b/docs/api/XRTK.Definitions.Utilities.TrackedObjectType.html deleted file mode 100644 index 4cb2835cf..000000000 --- a/docs/api/XRTK.Definitions.Utilities.TrackedObjectType.html +++ /dev/null @@ -1,182 +0,0 @@ - - - - - - - - Enum TrackedObjectType - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Utilities.TypeGrouping.html b/docs/api/XRTK.Definitions.Utilities.TypeGrouping.html deleted file mode 100644 index 148963ba7..000000000 --- a/docs/api/XRTK.Definitions.Utilities.TypeGrouping.html +++ /dev/null @@ -1,185 +0,0 @@ - - - - - - - - Enum TypeGrouping - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Utilities.Vector3Smoothed.html b/docs/api/XRTK.Definitions.Utilities.Vector3Smoothed.html deleted file mode 100644 index 4cfd9ec7a..000000000 --- a/docs/api/XRTK.Definitions.Utilities.Vector3Smoothed.html +++ /dev/null @@ -1,352 +0,0 @@ - - - - - - - - Struct Vector3Smoothed - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.Utilities.html b/docs/api/XRTK.Definitions.Utilities.html deleted file mode 100644 index 37a536638..000000000 --- a/docs/api/XRTK.Definitions.Utilities.html +++ /dev/null @@ -1,187 +0,0 @@ - - - - - - - - Namespace XRTK.Definitions.Utilities - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Definitions.html b/docs/api/XRTK.Definitions.html deleted file mode 100644 index e183d8034..000000000 --- a/docs/api/XRTK.Definitions.html +++ /dev/null @@ -1,149 +0,0 @@ - - - - - - - - Namespace XRTK.Definitions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.BuildAndDeploy.BuildDeployPreferences.html b/docs/api/XRTK.Editor.BuildAndDeploy.BuildDeployPreferences.html deleted file mode 100644 index 35e67bf37..000000000 --- a/docs/api/XRTK.Editor.BuildAndDeploy.BuildDeployPreferences.html +++ /dev/null @@ -1,254 +0,0 @@ - - - - - - - - Class BuildDeployPreferences - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.BuildAndDeploy.BuildDeployWindow.html b/docs/api/XRTK.Editor.BuildAndDeploy.BuildDeployWindow.html deleted file mode 100644 index 2c7d7225d..000000000 --- a/docs/api/XRTK.Editor.BuildAndDeploy.BuildDeployWindow.html +++ /dev/null @@ -1,287 +0,0 @@ - - - - - - - - Class BuildDeployWindow - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.BuildAndDeploy.BuildInfo.html b/docs/api/XRTK.Editor.BuildAndDeploy.BuildInfo.html deleted file mode 100644 index 5b95e692a..000000000 --- a/docs/api/XRTK.Editor.BuildAndDeploy.BuildInfo.html +++ /dev/null @@ -1,609 +0,0 @@ - - - - - - - - Class BuildInfo - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.BuildAndDeploy.BuildInfoExtensions.html b/docs/api/XRTK.Editor.BuildAndDeploy.BuildInfoExtensions.html deleted file mode 100644 index c9e094174..000000000 --- a/docs/api/XRTK.Editor.BuildAndDeploy.BuildInfoExtensions.html +++ /dev/null @@ -1,521 +0,0 @@ - - - - - - - - Class BuildInfoExtensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.BuildAndDeploy.IBuildInfo.html b/docs/api/XRTK.Editor.BuildAndDeploy.IBuildInfo.html deleted file mode 100644 index 897b309bc..000000000 --- a/docs/api/XRTK.Editor.BuildAndDeploy.IBuildInfo.html +++ /dev/null @@ -1,538 +0,0 @@ - - - - - - - - Interface IBuildInfo - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.BuildAndDeploy.LuminPlayerBuildTools.html b/docs/api/XRTK.Editor.BuildAndDeploy.LuminPlayerBuildTools.html deleted file mode 100644 index 420c88422..000000000 --- a/docs/api/XRTK.Editor.BuildAndDeploy.LuminPlayerBuildTools.html +++ /dev/null @@ -1,206 +0,0 @@ - - - - - - - - Class LuminPlayerBuildTools - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.BuildAndDeploy.UnityPlayerBuildTools.html b/docs/api/XRTK.Editor.BuildAndDeploy.UnityPlayerBuildTools.html deleted file mode 100644 index 42ad69488..000000000 --- a/docs/api/XRTK.Editor.BuildAndDeploy.UnityPlayerBuildTools.html +++ /dev/null @@ -1,475 +0,0 @@ - - - - - - - - Class UnityPlayerBuildTools - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.BuildAndDeploy.UwpAppxBuildTools.html b/docs/api/XRTK.Editor.BuildAndDeploy.UwpAppxBuildTools.html deleted file mode 100644 index 3bf06c813..000000000 --- a/docs/api/XRTK.Editor.BuildAndDeploy.UwpAppxBuildTools.html +++ /dev/null @@ -1,245 +0,0 @@ - - - - - - - - Class UwpAppxBuildTools - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.BuildAndDeploy.UwpBuildDeployPreferences.html b/docs/api/XRTK.Editor.BuildAndDeploy.UwpBuildDeployPreferences.html deleted file mode 100644 index 0cc9cfd7f..000000000 --- a/docs/api/XRTK.Editor.BuildAndDeploy.UwpBuildDeployPreferences.html +++ /dev/null @@ -1,405 +0,0 @@ - - - - - - - - Class UwpBuildDeployPreferences - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.BuildAndDeploy.UwpBuildInfo.html b/docs/api/XRTK.Editor.BuildAndDeploy.UwpBuildInfo.html deleted file mode 100644 index 68507e9e3..000000000 --- a/docs/api/XRTK.Editor.BuildAndDeploy.UwpBuildInfo.html +++ /dev/null @@ -1,362 +0,0 @@ - - - - - - - - Class UwpBuildInfo - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.BuildAndDeploy.UwpPlayerBuildTools.html b/docs/api/XRTK.Editor.BuildAndDeploy.UwpPlayerBuildTools.html deleted file mode 100644 index 2bc9ca2fd..000000000 --- a/docs/api/XRTK.Editor.BuildAndDeploy.UwpPlayerBuildTools.html +++ /dev/null @@ -1,271 +0,0 @@ - - - - - - - - Class UwpPlayerBuildTools - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.BuildAndDeploy.html b/docs/api/XRTK.Editor.BuildAndDeploy.html deleted file mode 100644 index c3f47b49b..000000000 --- a/docs/api/XRTK.Editor.BuildAndDeploy.html +++ /dev/null @@ -1,147 +0,0 @@ - - - - - - - - Namespace XRTK.Editor.BuildAndDeploy - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.BuildPipeline.AndroidBuildInfo.html b/docs/api/XRTK.Editor.BuildPipeline.AndroidBuildInfo.html deleted file mode 100644 index 51acce3c0..000000000 --- a/docs/api/XRTK.Editor.BuildPipeline.AndroidBuildInfo.html +++ /dev/null @@ -1,419 +0,0 @@ - - - - - - - - Class AndroidBuildInfo - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.BuildPipeline.BuildDeployPreferences.html b/docs/api/XRTK.Editor.BuildPipeline.BuildDeployPreferences.html deleted file mode 100644 index 20029a9d2..000000000 --- a/docs/api/XRTK.Editor.BuildPipeline.BuildDeployPreferences.html +++ /dev/null @@ -1,253 +0,0 @@ - - - - - - - - Class BuildDeployPreferences - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.BuildPipeline.BuildDeployWindow.html b/docs/api/XRTK.Editor.BuildPipeline.BuildDeployWindow.html deleted file mode 100644 index 4161b9f08..000000000 --- a/docs/api/XRTK.Editor.BuildPipeline.BuildDeployWindow.html +++ /dev/null @@ -1,216 +0,0 @@ - - - - - - - - Class BuildDeployWindow - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.BuildPipeline.BuildInfo.html b/docs/api/XRTK.Editor.BuildPipeline.BuildInfo.html deleted file mode 100644 index e762954f0..000000000 --- a/docs/api/XRTK.Editor.BuildPipeline.BuildInfo.html +++ /dev/null @@ -1,886 +0,0 @@ - - - - - - - - Class BuildInfo - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.BuildPipeline.BuildInfoExtensions.html b/docs/api/XRTK.Editor.BuildPipeline.BuildInfoExtensions.html deleted file mode 100644 index 1d9f49e79..000000000 --- a/docs/api/XRTK.Editor.BuildPipeline.BuildInfoExtensions.html +++ /dev/null @@ -1,472 +0,0 @@ - - - - - - - - Class BuildInfoExtensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.BuildPipeline.BuildInfoInspector.html b/docs/api/XRTK.Editor.BuildPipeline.BuildInfoInspector.html deleted file mode 100644 index 8b6ad2034..000000000 --- a/docs/api/XRTK.Editor.BuildPipeline.BuildInfoInspector.html +++ /dev/null @@ -1,262 +0,0 @@ - - - - - - - - Class BuildInfoInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.BuildPipeline.IBuildInfo.html b/docs/api/XRTK.Editor.BuildPipeline.IBuildInfo.html deleted file mode 100644 index cc6d47b56..000000000 --- a/docs/api/XRTK.Editor.BuildPipeline.IBuildInfo.html +++ /dev/null @@ -1,798 +0,0 @@ - - - - - - - - Interface IBuildInfo - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.BuildPipeline.LuminBuildInfo.html b/docs/api/XRTK.Editor.BuildPipeline.LuminBuildInfo.html deleted file mode 100644 index 0787c5ca9..000000000 --- a/docs/api/XRTK.Editor.BuildPipeline.LuminBuildInfo.html +++ /dev/null @@ -1,399 +0,0 @@ - - - - - - - - Class LuminBuildInfo - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.BuildPipeline.MixedRealityAppIcon.html b/docs/api/XRTK.Editor.BuildPipeline.MixedRealityAppIcon.html deleted file mode 100644 index 7b45cc716..000000000 --- a/docs/api/XRTK.Editor.BuildPipeline.MixedRealityAppIcon.html +++ /dev/null @@ -1,196 +0,0 @@ - - - - - - - - Class MixedRealityAppIcon - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.BuildPipeline.OculusBuildInfo.html b/docs/api/XRTK.Editor.BuildPipeline.OculusBuildInfo.html deleted file mode 100644 index 0976a3b00..000000000 --- a/docs/api/XRTK.Editor.BuildPipeline.OculusBuildInfo.html +++ /dev/null @@ -1,305 +0,0 @@ - - - - - - - - Class OculusBuildInfo - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.html b/docs/api/XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.html deleted file mode 100644 index 13710704f..000000000 --- a/docs/api/XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.html +++ /dev/null @@ -1,622 +0,0 @@ - - - - - - - - Class UnityPlayerBuildTools - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.BuildPipeline.UwpAppxBuildTools.html b/docs/api/XRTK.Editor.BuildPipeline.UwpAppxBuildTools.html deleted file mode 100644 index 63ad9c1b7..000000000 --- a/docs/api/XRTK.Editor.BuildPipeline.UwpAppxBuildTools.html +++ /dev/null @@ -1,270 +0,0 @@ - - - - - - - - Class UwpAppxBuildTools - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.BuildPipeline.UwpBuildDeployPreferences.html b/docs/api/XRTK.Editor.BuildPipeline.UwpBuildDeployPreferences.html deleted file mode 100644 index 8d5add647..000000000 --- a/docs/api/XRTK.Editor.BuildPipeline.UwpBuildDeployPreferences.html +++ /dev/null @@ -1,343 +0,0 @@ - - - - - - - - Class UwpBuildDeployPreferences - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.BuildPipeline.UwpBuildInfo.Platform.html b/docs/api/XRTK.Editor.BuildPipeline.UwpBuildInfo.Platform.html deleted file mode 100644 index 70157f07c..000000000 --- a/docs/api/XRTK.Editor.BuildPipeline.UwpBuildInfo.Platform.html +++ /dev/null @@ -1,173 +0,0 @@ - - - - - - - - Enum UwpBuildInfo.Platform - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.BuildPipeline.UwpBuildInfo.VerbosityLevel.html b/docs/api/XRTK.Editor.BuildPipeline.UwpBuildInfo.VerbosityLevel.html deleted file mode 100644 index d0d179ac8..000000000 --- a/docs/api/XRTK.Editor.BuildPipeline.UwpBuildInfo.VerbosityLevel.html +++ /dev/null @@ -1,177 +0,0 @@ - - - - - - - - Enum UwpBuildInfo.VerbosityLevel - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.BuildPipeline.UwpBuildInfo.html b/docs/api/XRTK.Editor.BuildPipeline.UwpBuildInfo.html deleted file mode 100644 index 9629b5183..000000000 --- a/docs/api/XRTK.Editor.BuildPipeline.UwpBuildInfo.html +++ /dev/null @@ -1,655 +0,0 @@ - - - - - - - - Class UwpBuildInfo - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.BuildPipeline.UwpBuildInfoInspector.html b/docs/api/XRTK.Editor.BuildPipeline.UwpBuildInfoInspector.html deleted file mode 100644 index a496b09e6..000000000 --- a/docs/api/XRTK.Editor.BuildPipeline.UwpBuildInfoInspector.html +++ /dev/null @@ -1,206 +0,0 @@ - - - - - - - - Class UwpBuildInfoInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.BuildPipeline.html b/docs/api/XRTK.Editor.BuildPipeline.html deleted file mode 100644 index 52193fa91..000000000 --- a/docs/api/XRTK.Editor.BuildPipeline.html +++ /dev/null @@ -1,158 +0,0 @@ - - - - - - - - Namespace XRTK.Editor.BuildPipeline - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.ControllerPopupWindow.html b/docs/api/XRTK.Editor.ControllerPopupWindow.html deleted file mode 100644 index 4d8774e83..000000000 --- a/docs/api/XRTK.Editor.ControllerPopupWindow.html +++ /dev/null @@ -1,238 +0,0 @@ - - - - - - - - Class ControllerPopupWindow - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Data.ControllerInputActionOption.html b/docs/api/XRTK.Editor.Data.ControllerInputActionOption.html deleted file mode 100644 index 8cacc2b3b..000000000 --- a/docs/api/XRTK.Editor.Data.ControllerInputActionOption.html +++ /dev/null @@ -1,274 +0,0 @@ - - - - - - - - Struct ControllerInputActionOption - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Data.ControllerInputActionOptions.html b/docs/api/XRTK.Editor.Data.ControllerInputActionOptions.html deleted file mode 100644 index ff0a44862..000000000 --- a/docs/api/XRTK.Editor.Data.ControllerInputActionOptions.html +++ /dev/null @@ -1,187 +0,0 @@ - - - - - - - - Struct ControllerInputActionOptions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Data.Controllers.Hands.HandControllerPoseProfileInspector.html b/docs/api/XRTK.Editor.Data.Controllers.Hands.HandControllerPoseProfileInspector.html deleted file mode 100644 index 9ce0a6489..000000000 --- a/docs/api/XRTK.Editor.Data.Controllers.Hands.HandControllerPoseProfileInspector.html +++ /dev/null @@ -1,248 +0,0 @@ - - - - - - - - Class HandControllerPoseProfileInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Data.Controllers.Hands.html b/docs/api/XRTK.Editor.Data.Controllers.Hands.html deleted file mode 100644 index 3b07377b6..000000000 --- a/docs/api/XRTK.Editor.Data.Controllers.Hands.html +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - Namespace XRTK.Editor.Data.Controllers.Hands - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Data.html b/docs/api/XRTK.Editor.Data.html deleted file mode 100644 index 28458d1cb..000000000 --- a/docs/api/XRTK.Editor.Data.html +++ /dev/null @@ -1,122 +0,0 @@ - - - - - - - - Namespace XRTK.Editor.Data - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.EditorActiveProfileChangeHandler.html b/docs/api/XRTK.Editor.EditorActiveProfileChangeHandler.html deleted file mode 100644 index 2b1869d35..000000000 --- a/docs/api/XRTK.Editor.EditorActiveProfileChangeHandler.html +++ /dev/null @@ -1,156 +0,0 @@ - - - - - - - - Class EditorActiveProfileChangeHandler - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.EditorHandsShaderGUI.html b/docs/api/XRTK.Editor.EditorHandsShaderGUI.html deleted file mode 100644 index 711f66cc1..000000000 --- a/docs/api/XRTK.Editor.EditorHandsShaderGUI.html +++ /dev/null @@ -1,204 +0,0 @@ - - - - - - - - Class EditorHandsShaderGUI - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Extensions.EditorGUILayoutExtensions.html b/docs/api/XRTK.Editor.Extensions.EditorGUILayoutExtensions.html deleted file mode 100644 index 9e205bdcf..000000000 --- a/docs/api/XRTK.Editor.Extensions.EditorGUILayoutExtensions.html +++ /dev/null @@ -1,220 +0,0 @@ - - - - - - - - Class EditorGUILayoutExtensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Extensions.ScriptableObjectExtensions.html b/docs/api/XRTK.Editor.Extensions.ScriptableObjectExtensions.html deleted file mode 100644 index b8de49e32..000000000 --- a/docs/api/XRTK.Editor.Extensions.ScriptableObjectExtensions.html +++ /dev/null @@ -1,675 +0,0 @@ - - - - - - - - Class ScriptableObjectExtensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Extensions.SerializedPropertyExtensions.html b/docs/api/XRTK.Editor.Extensions.SerializedPropertyExtensions.html deleted file mode 100644 index dde1ff21a..000000000 --- a/docs/api/XRTK.Editor.Extensions.SerializedPropertyExtensions.html +++ /dev/null @@ -1,312 +0,0 @@ - - - - - - - - Class SerializedPropertyExtensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Extensions.html b/docs/api/XRTK.Editor.Extensions.html deleted file mode 100644 index cb2d9c8e9..000000000 --- a/docs/api/XRTK.Editor.Extensions.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - - - Namespace XRTK.Editor.Extensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.MixedRealityPreferences.html b/docs/api/XRTK.Editor.MixedRealityPreferences.html deleted file mode 100644 index 53100863a..000000000 --- a/docs/api/XRTK.Editor.MixedRealityPreferences.html +++ /dev/null @@ -1,467 +0,0 @@ - - - - - - - - Class MixedRealityPreferences - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.MixedRealityStandardShaderGUI.AlbedoAlphaMode.html b/docs/api/XRTK.Editor.MixedRealityStandardShaderGUI.AlbedoAlphaMode.html deleted file mode 100644 index 40ac4da51..000000000 --- a/docs/api/XRTK.Editor.MixedRealityStandardShaderGUI.AlbedoAlphaMode.html +++ /dev/null @@ -1,169 +0,0 @@ - - - - - - - - Enum MixedRealityStandardShaderGUI.AlbedoAlphaMode - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.MixedRealityStandardShaderGUI.CustomRenderingMode.html b/docs/api/XRTK.Editor.MixedRealityStandardShaderGUI.CustomRenderingMode.html deleted file mode 100644 index 4596f2aa2..000000000 --- a/docs/api/XRTK.Editor.MixedRealityStandardShaderGUI.CustomRenderingMode.html +++ /dev/null @@ -1,169 +0,0 @@ - - - - - - - - Enum MixedRealityStandardShaderGUI.CustomRenderingMode - | XRTK-Core - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/api/XRTK.Editor.MixedRealityStandardShaderGUI.DepthWrite.html b/docs/api/XRTK.Editor.MixedRealityStandardShaderGUI.DepthWrite.html deleted file mode 100644 index 0648dc3c8..000000000 --- a/docs/api/XRTK.Editor.MixedRealityStandardShaderGUI.DepthWrite.html +++ /dev/null @@ -1,165 +0,0 @@ - - - - - - - - Enum MixedRealityStandardShaderGUI.DepthWrite - | XRTK-Core - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/api/XRTK.Editor.MixedRealityStandardShaderGUI.RenderingMode.html b/docs/api/XRTK.Editor.MixedRealityStandardShaderGUI.RenderingMode.html deleted file mode 100644 index 81a0be631..000000000 --- a/docs/api/XRTK.Editor.MixedRealityStandardShaderGUI.RenderingMode.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - - - Enum MixedRealityStandardShaderGUI.RenderingMode - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html b/docs/api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html deleted file mode 100644 index 9fa075d02..000000000 --- a/docs/api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html +++ /dev/null @@ -1,3202 +0,0 @@ - - - - - - - - Class MixedRealityStandardShaderGUI.Styles - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.MixedRealityStandardShaderGUI.html b/docs/api/XRTK.Editor.MixedRealityStandardShaderGUI.html deleted file mode 100644 index d4a00be4c..000000000 --- a/docs/api/XRTK.Editor.MixedRealityStandardShaderGUI.html +++ /dev/null @@ -1,3362 +0,0 @@ - - - - - - - - Class MixedRealityStandardShaderGUI - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.MixedRealityToolkitInspector.html b/docs/api/XRTK.Editor.MixedRealityToolkitInspector.html deleted file mode 100644 index c3b2053e7..000000000 --- a/docs/api/XRTK.Editor.MixedRealityToolkitInspector.html +++ /dev/null @@ -1,231 +0,0 @@ - - - - - - - - Class MixedRealityToolkitInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.PackageInstaller.html b/docs/api/XRTK.Editor.PackageInstaller.html deleted file mode 100644 index e5c221451..000000000 --- a/docs/api/XRTK.Editor.PackageInstaller.html +++ /dev/null @@ -1,315 +0,0 @@ - - - - - - - - Class PackageInstaller - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.html b/docs/api/XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.html deleted file mode 100644 index a1cc11eae..000000000 --- a/docs/api/XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.html +++ /dev/null @@ -1,393 +0,0 @@ - - - - - - - - Class BaseMixedRealityProfileInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Profiles.CameraSystem.BaseMixedRealityCameraDataProviderProfileInspector.html b/docs/api/XRTK.Editor.Profiles.CameraSystem.BaseMixedRealityCameraDataProviderProfileInspector.html deleted file mode 100644 index 5f048eb26..000000000 --- a/docs/api/XRTK.Editor.Profiles.CameraSystem.BaseMixedRealityCameraDataProviderProfileInspector.html +++ /dev/null @@ -1,248 +0,0 @@ - - - - - - - - Class BaseMixedRealityCameraDataProviderProfileInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Profiles.CameraSystem.MixedRealityCameraSystemProfileInspector.html b/docs/api/XRTK.Editor.Profiles.CameraSystem.MixedRealityCameraSystemProfileInspector.html deleted file mode 100644 index 06b139386..000000000 --- a/docs/api/XRTK.Editor.Profiles.CameraSystem.MixedRealityCameraSystemProfileInspector.html +++ /dev/null @@ -1,258 +0,0 @@ - - - - - - - - Class MixedRealityCameraSystemProfileInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Profiles.CameraSystem.html b/docs/api/XRTK.Editor.Profiles.CameraSystem.html deleted file mode 100644 index 92a47ff20..000000000 --- a/docs/api/XRTK.Editor.Profiles.CameraSystem.html +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - - Namespace XRTK.Editor.Profiles.CameraSystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Profiles.DiagnosticsSystem.MixedRealityDiagnosticsSystemProfileInspector.html b/docs/api/XRTK.Editor.Profiles.DiagnosticsSystem.MixedRealityDiagnosticsSystemProfileInspector.html deleted file mode 100644 index b9b3c5d3b..000000000 --- a/docs/api/XRTK.Editor.Profiles.DiagnosticsSystem.MixedRealityDiagnosticsSystemProfileInspector.html +++ /dev/null @@ -1,258 +0,0 @@ - - - - - - - - Class MixedRealityDiagnosticsSystemProfileInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Profiles.DiagnosticsSystem.html b/docs/api/XRTK.Editor.Profiles.DiagnosticsSystem.html deleted file mode 100644 index c68fc2d06..000000000 --- a/docs/api/XRTK.Editor.Profiles.DiagnosticsSystem.html +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - Namespace XRTK.Editor.Profiles.DiagnosticsSystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityControllerDataProviderProfileInspector.html b/docs/api/XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityControllerDataProviderProfileInspector.html deleted file mode 100644 index 51c1830ad..000000000 --- a/docs/api/XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityControllerDataProviderProfileInspector.html +++ /dev/null @@ -1,250 +0,0 @@ - - - - - - - - Class BaseMixedRealityControllerDataProviderProfileInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityControllerMappingProfileInspector.html b/docs/api/XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityControllerMappingProfileInspector.html deleted file mode 100644 index 917b3f4d1..000000000 --- a/docs/api/XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityControllerMappingProfileInspector.html +++ /dev/null @@ -1,248 +0,0 @@ - - - - - - - - Class BaseMixedRealityControllerMappingProfileInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityHandControllerDataProviderProfileInspector.html b/docs/api/XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityHandControllerDataProviderProfileInspector.html deleted file mode 100644 index 1faa4372c..000000000 --- a/docs/api/XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityHandControllerDataProviderProfileInspector.html +++ /dev/null @@ -1,253 +0,0 @@ - - - - - - - - Class BaseMixedRealityHandControllerDataProviderProfileInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Profiles.InputSystem.Controllers.MixedRealityControllerVisualizationProfileInspector.html b/docs/api/XRTK.Editor.Profiles.InputSystem.Controllers.MixedRealityControllerVisualizationProfileInspector.html deleted file mode 100644 index d111ae19b..000000000 --- a/docs/api/XRTK.Editor.Profiles.InputSystem.Controllers.MixedRealityControllerVisualizationProfileInspector.html +++ /dev/null @@ -1,248 +0,0 @@ - - - - - - - - Class MixedRealityControllerVisualizationProfileInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Profiles.InputSystem.Controllers.MixedRealityInteractionMappingProfileInspector.html b/docs/api/XRTK.Editor.Profiles.InputSystem.Controllers.MixedRealityInteractionMappingProfileInspector.html deleted file mode 100644 index 9d6c66080..000000000 --- a/docs/api/XRTK.Editor.Profiles.InputSystem.Controllers.MixedRealityInteractionMappingProfileInspector.html +++ /dev/null @@ -1,248 +0,0 @@ - - - - - - - - Class MixedRealityInteractionMappingProfileInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.SimulatedControllerDataProviderProfileInspector.html b/docs/api/XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.SimulatedControllerDataProviderProfileInspector.html deleted file mode 100644 index 16b0e8479..000000000 --- a/docs/api/XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.SimulatedControllerDataProviderProfileInspector.html +++ /dev/null @@ -1,250 +0,0 @@ - - - - - - - - Class SimulatedControllerDataProviderProfileInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.SimulatedHandControllerDataProviderProfileInspector.html b/docs/api/XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.SimulatedHandControllerDataProviderProfileInspector.html deleted file mode 100644 index 003bd0663..000000000 --- a/docs/api/XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.SimulatedHandControllerDataProviderProfileInspector.html +++ /dev/null @@ -1,250 +0,0 @@ - - - - - - - - Class SimulatedHandControllerDataProviderProfileInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.html b/docs/api/XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.html deleted file mode 100644 index 23d858510..000000000 --- a/docs/api/XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.html +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - - Namespace XRTK.Editor.Profiles.InputSystem.Controllers.Simulation - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Profiles.InputSystem.Controllers.html b/docs/api/XRTK.Editor.Profiles.InputSystem.Controllers.html deleted file mode 100644 index ecfae1742..000000000 --- a/docs/api/XRTK.Editor.Profiles.InputSystem.Controllers.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - - - Namespace XRTK.Editor.Profiles.InputSystem.Controllers - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Profiles.InputSystem.MixedRealityGesturesProfileInspector.html b/docs/api/XRTK.Editor.Profiles.InputSystem.MixedRealityGesturesProfileInspector.html deleted file mode 100644 index 2107548b2..000000000 --- a/docs/api/XRTK.Editor.Profiles.InputSystem.MixedRealityGesturesProfileInspector.html +++ /dev/null @@ -1,248 +0,0 @@ - - - - - - - - Class MixedRealityGesturesProfileInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Profiles.InputSystem.MixedRealityInputActionsProfileInspector.html b/docs/api/XRTK.Editor.Profiles.InputSystem.MixedRealityInputActionsProfileInspector.html deleted file mode 100644 index 023417f56..000000000 --- a/docs/api/XRTK.Editor.Profiles.InputSystem.MixedRealityInputActionsProfileInspector.html +++ /dev/null @@ -1,248 +0,0 @@ - - - - - - - - Class MixedRealityInputActionsProfileInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Profiles.InputSystem.MixedRealityInputSystemProfileInspector.html b/docs/api/XRTK.Editor.Profiles.InputSystem.MixedRealityInputSystemProfileInspector.html deleted file mode 100644 index 3b9aa7368..000000000 --- a/docs/api/XRTK.Editor.Profiles.InputSystem.MixedRealityInputSystemProfileInspector.html +++ /dev/null @@ -1,258 +0,0 @@ - - - - - - - - Class MixedRealityInputSystemProfileInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Profiles.InputSystem.MixedRealityPointerProfileInspector.html b/docs/api/XRTK.Editor.Profiles.InputSystem.MixedRealityPointerProfileInspector.html deleted file mode 100644 index a95ddce0e..000000000 --- a/docs/api/XRTK.Editor.Profiles.InputSystem.MixedRealityPointerProfileInspector.html +++ /dev/null @@ -1,248 +0,0 @@ - - - - - - - - Class MixedRealityPointerProfileInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Profiles.InputSystem.MixedRealitySpeechCommandsProfileInspector.html b/docs/api/XRTK.Editor.Profiles.InputSystem.MixedRealitySpeechCommandsProfileInspector.html deleted file mode 100644 index a5ae42361..000000000 --- a/docs/api/XRTK.Editor.Profiles.InputSystem.MixedRealitySpeechCommandsProfileInspector.html +++ /dev/null @@ -1,248 +0,0 @@ - - - - - - - - Class MixedRealitySpeechCommandsProfileInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Profiles.InputSystem.html b/docs/api/XRTK.Editor.Profiles.InputSystem.html deleted file mode 100644 index ad7fb7188..000000000 --- a/docs/api/XRTK.Editor.Profiles.InputSystem.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - - - Namespace XRTK.Editor.Profiles.InputSystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Profiles.MixedRealityBoundaryVisualizationProfileInspector.html b/docs/api/XRTK.Editor.Profiles.MixedRealityBoundaryVisualizationProfileInspector.html deleted file mode 100644 index 3320e7be1..000000000 --- a/docs/api/XRTK.Editor.Profiles.MixedRealityBoundaryVisualizationProfileInspector.html +++ /dev/null @@ -1,258 +0,0 @@ - - - - - - - - Class MixedRealityBoundaryVisualizationProfileInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Profiles.MixedRealityNetworkSystemProfileInspector.html b/docs/api/XRTK.Editor.Profiles.MixedRealityNetworkSystemProfileInspector.html deleted file mode 100644 index c5522e901..000000000 --- a/docs/api/XRTK.Editor.Profiles.MixedRealityNetworkSystemProfileInspector.html +++ /dev/null @@ -1,244 +0,0 @@ - - - - - - - - Class MixedRealityNetworkSystemProfileInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Profiles.MixedRealityPlatformServiceConfigurationProfileInspector.html b/docs/api/XRTK.Editor.Profiles.MixedRealityPlatformServiceConfigurationProfileInspector.html deleted file mode 100644 index 404903fa4..000000000 --- a/docs/api/XRTK.Editor.Profiles.MixedRealityPlatformServiceConfigurationProfileInspector.html +++ /dev/null @@ -1,248 +0,0 @@ - - - - - - - - Class MixedRealityPlatformServiceConfigurationProfileInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Profiles.MixedRealityRegisteredServiceProvidersProfileInspector.html b/docs/api/XRTK.Editor.Profiles.MixedRealityRegisteredServiceProvidersProfileInspector.html deleted file mode 100644 index 93c7094ab..000000000 --- a/docs/api/XRTK.Editor.Profiles.MixedRealityRegisteredServiceProvidersProfileInspector.html +++ /dev/null @@ -1,245 +0,0 @@ - - - - - - - - Class MixedRealityRegisteredServiceProvidersProfileInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Profiles.MixedRealityServiceProfileInspector.html b/docs/api/XRTK.Editor.Profiles.MixedRealityServiceProfileInspector.html deleted file mode 100644 index 98fa9e94c..000000000 --- a/docs/api/XRTK.Editor.Profiles.MixedRealityServiceProfileInspector.html +++ /dev/null @@ -1,354 +0,0 @@ - - - - - - - - Class MixedRealityServiceProfileInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Profiles.MixedRealityToolkitRootProfileInspector.html b/docs/api/XRTK.Editor.Profiles.MixedRealityToolkitRootProfileInspector.html deleted file mode 100644 index 1afb6b92c..000000000 --- a/docs/api/XRTK.Editor.Profiles.MixedRealityToolkitRootProfileInspector.html +++ /dev/null @@ -1,258 +0,0 @@ - - - - - - - - Class MixedRealityToolkitRootProfileInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySpatialMeshObserverProfileInspector.html b/docs/api/XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySpatialMeshObserverProfileInspector.html deleted file mode 100644 index 7a99e8453..000000000 --- a/docs/api/XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySpatialMeshObserverProfileInspector.html +++ /dev/null @@ -1,249 +0,0 @@ - - - - - - - - Class BaseMixedRealitySpatialMeshObserverProfileInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySpatialObserverProfileInspector.html b/docs/api/XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySpatialObserverProfileInspector.html deleted file mode 100644 index a6b5bb7db..000000000 --- a/docs/api/XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySpatialObserverProfileInspector.html +++ /dev/null @@ -1,250 +0,0 @@ - - - - - - - - Class BaseMixedRealitySpatialObserverProfileInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySurfaceObserverProfileInspector.html b/docs/api/XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySurfaceObserverProfileInspector.html deleted file mode 100644 index 2adc8164c..000000000 --- a/docs/api/XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySurfaceObserverProfileInspector.html +++ /dev/null @@ -1,249 +0,0 @@ - - - - - - - - Class BaseMixedRealitySurfaceObserverProfileInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Profiles.SpatialAwareness.MixedRealitySpatialAwarenessSystemProfileInspector.html b/docs/api/XRTK.Editor.Profiles.SpatialAwareness.MixedRealitySpatialAwarenessSystemProfileInspector.html deleted file mode 100644 index ef34aa3c8..000000000 --- a/docs/api/XRTK.Editor.Profiles.SpatialAwareness.MixedRealitySpatialAwarenessSystemProfileInspector.html +++ /dev/null @@ -1,258 +0,0 @@ - - - - - - - - Class MixedRealitySpatialAwarenessSystemProfileInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Profiles.SpatialAwareness.html b/docs/api/XRTK.Editor.Profiles.SpatialAwareness.html deleted file mode 100644 index 49cd48fea..000000000 --- a/docs/api/XRTK.Editor.Profiles.SpatialAwareness.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - - - Namespace XRTK.Editor.Profiles.SpatialAwareness - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Profiles.TeleportSystem.MixedRealityTeleportSystemProfileInspector.html b/docs/api/XRTK.Editor.Profiles.TeleportSystem.MixedRealityTeleportSystemProfileInspector.html deleted file mode 100644 index 0390f834f..000000000 --- a/docs/api/XRTK.Editor.Profiles.TeleportSystem.MixedRealityTeleportSystemProfileInspector.html +++ /dev/null @@ -1,258 +0,0 @@ - - - - - - - - Class MixedRealityTeleportSystemProfileInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Profiles.TeleportSystem.MixedRealityTeleportValidationDataProviderProfileInspector.html b/docs/api/XRTK.Editor.Profiles.TeleportSystem.MixedRealityTeleportValidationDataProviderProfileInspector.html deleted file mode 100644 index 789016946..000000000 --- a/docs/api/XRTK.Editor.Profiles.TeleportSystem.MixedRealityTeleportValidationDataProviderProfileInspector.html +++ /dev/null @@ -1,248 +0,0 @@ - - - - - - - - Class MixedRealityTeleportValidationDataProviderProfileInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Profiles.TeleportSystem.html b/docs/api/XRTK.Editor.Profiles.TeleportSystem.html deleted file mode 100644 index 6b93b3900..000000000 --- a/docs/api/XRTK.Editor.Profiles.TeleportSystem.html +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - - Namespace XRTK.Editor.Profiles.TeleportSystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Profiles.html b/docs/api/XRTK.Editor.Profiles.html deleted file mode 100644 index 788c3d82a..000000000 --- a/docs/api/XRTK.Editor.Profiles.html +++ /dev/null @@ -1,131 +0,0 @@ - - - - - - - - Namespace XRTK.Editor.Profiles - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.PropertyDrawers.AxisConstraintAttributeDrawer.html b/docs/api/XRTK.Editor.PropertyDrawers.AxisConstraintAttributeDrawer.html deleted file mode 100644 index 63f61e258..000000000 --- a/docs/api/XRTK.Editor.PropertyDrawers.AxisConstraintAttributeDrawer.html +++ /dev/null @@ -1,211 +0,0 @@ - - - - - - - - Class AxisConstraintAttributeDrawer - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.PropertyDrawers.EnumFlagsAttributeDrawer.html b/docs/api/XRTK.Editor.PropertyDrawers.EnumFlagsAttributeDrawer.html deleted file mode 100644 index 52e7090ef..000000000 --- a/docs/api/XRTK.Editor.PropertyDrawers.EnumFlagsAttributeDrawer.html +++ /dev/null @@ -1,213 +0,0 @@ - - - - - - - - Class EnumFlagsAttributeDrawer - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.PropertyDrawers.InputActionPropertyDrawer.html b/docs/api/XRTK.Editor.PropertyDrawers.InputActionPropertyDrawer.html deleted file mode 100644 index dad4e4292..000000000 --- a/docs/api/XRTK.Editor.PropertyDrawers.InputActionPropertyDrawer.html +++ /dev/null @@ -1,211 +0,0 @@ - - - - - - - - Class InputActionPropertyDrawer - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.PropertyDrawers.MinPropertyDrawer.html b/docs/api/XRTK.Editor.PropertyDrawers.MinPropertyDrawer.html deleted file mode 100644 index 041ffb9ca..000000000 --- a/docs/api/XRTK.Editor.PropertyDrawers.MinPropertyDrawer.html +++ /dev/null @@ -1,212 +0,0 @@ - - - - - - - - Class MinPropertyDrawer - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.PropertyDrawers.MixedRealityInputActionDropdown.html b/docs/api/XRTK.Editor.PropertyDrawers.MixedRealityInputActionDropdown.html deleted file mode 100644 index 632bcb579..000000000 --- a/docs/api/XRTK.Editor.PropertyDrawers.MixedRealityInputActionDropdown.html +++ /dev/null @@ -1,295 +0,0 @@ - - - - - - - - Class MixedRealityInputActionDropdown - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.PropertyDrawers.MixedRealityPosePropertyDrawer.html b/docs/api/XRTK.Editor.PropertyDrawers.MixedRealityPosePropertyDrawer.html deleted file mode 100644 index 9a44db9b7..000000000 --- a/docs/api/XRTK.Editor.PropertyDrawers.MixedRealityPosePropertyDrawer.html +++ /dev/null @@ -1,265 +0,0 @@ - - - - - - - - Class MixedRealityPosePropertyDrawer - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.PropertyDrawers.MixedRealityProfilePropertyDrawer.html b/docs/api/XRTK.Editor.PropertyDrawers.MixedRealityProfilePropertyDrawer.html deleted file mode 100644 index cfb7a4d15..000000000 --- a/docs/api/XRTK.Editor.PropertyDrawers.MixedRealityProfilePropertyDrawer.html +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - Class MixedRealityProfilePropertyDrawer - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.PropertyDrawers.PhysicsLayerAttributeDrawer.html b/docs/api/XRTK.Editor.PropertyDrawers.PhysicsLayerAttributeDrawer.html deleted file mode 100644 index c2fc32cab..000000000 --- a/docs/api/XRTK.Editor.PropertyDrawers.PhysicsLayerAttributeDrawer.html +++ /dev/null @@ -1,212 +0,0 @@ - - - - - - - - Class PhysicsLayerAttributeDrawer - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.PropertyDrawers.PlatformEntryPropertyDrawer.html b/docs/api/XRTK.Editor.PropertyDrawers.PlatformEntryPropertyDrawer.html deleted file mode 100644 index a83fcc447..000000000 --- a/docs/api/XRTK.Editor.PropertyDrawers.PlatformEntryPropertyDrawer.html +++ /dev/null @@ -1,211 +0,0 @@ - - - - - - - - Class PlatformEntryPropertyDrawer - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.PropertyDrawers.PrefabPropertyDrawer.html b/docs/api/XRTK.Editor.PropertyDrawers.PrefabPropertyDrawer.html deleted file mode 100644 index 3fb7261b6..000000000 --- a/docs/api/XRTK.Editor.PropertyDrawers.PrefabPropertyDrawer.html +++ /dev/null @@ -1,212 +0,0 @@ - - - - - - - - Class PrefabPropertyDrawer - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.PropertyDrawers.SpeechCommandPropertyDrawer.html b/docs/api/XRTK.Editor.PropertyDrawers.SpeechCommandPropertyDrawer.html deleted file mode 100644 index d1fc15820..000000000 --- a/docs/api/XRTK.Editor.PropertyDrawers.SpeechCommandPropertyDrawer.html +++ /dev/null @@ -1,211 +0,0 @@ - - - - - - - - Class SpeechCommandPropertyDrawer - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.html b/docs/api/XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.html deleted file mode 100644 index edb45c8c2..000000000 --- a/docs/api/XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.html +++ /dev/null @@ -1,572 +0,0 @@ - - - - - - - - Class TypeReferencePropertyDrawer - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.PropertyDrawers.Vector3RangePropertyDrawer.html b/docs/api/XRTK.Editor.PropertyDrawers.Vector3RangePropertyDrawer.html deleted file mode 100644 index a789aa2d6..000000000 --- a/docs/api/XRTK.Editor.PropertyDrawers.Vector3RangePropertyDrawer.html +++ /dev/null @@ -1,266 +0,0 @@ - - - - - - - - Class Vector3RangePropertyDrawer - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.PropertyDrawers.html b/docs/api/XRTK.Editor.PropertyDrawers.html deleted file mode 100644 index 6a0102e47..000000000 --- a/docs/api/XRTK.Editor.PropertyDrawers.html +++ /dev/null @@ -1,150 +0,0 @@ - - - - - - - - Namespace XRTK.Editor.PropertyDrawers - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Rendering.ClippingBoxEditor.html b/docs/api/XRTK.Editor.Rendering.ClippingBoxEditor.html deleted file mode 100644 index 85134e6ed..000000000 --- a/docs/api/XRTK.Editor.Rendering.ClippingBoxEditor.html +++ /dev/null @@ -1,196 +0,0 @@ - - - - - - - - Class ClippingBoxEditor - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Rendering.ClippingPlaneEditor.html b/docs/api/XRTK.Editor.Rendering.ClippingPlaneEditor.html deleted file mode 100644 index 75178e6fc..000000000 --- a/docs/api/XRTK.Editor.Rendering.ClippingPlaneEditor.html +++ /dev/null @@ -1,196 +0,0 @@ - - - - - - - - Class ClippingPlaneEditor - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Rendering.ClippingSphereEditor.html b/docs/api/XRTK.Editor.Rendering.ClippingSphereEditor.html deleted file mode 100644 index 676dfd158..000000000 --- a/docs/api/XRTK.Editor.Rendering.ClippingSphereEditor.html +++ /dev/null @@ -1,196 +0,0 @@ - - - - - - - - Class ClippingSphereEditor - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Rendering.html b/docs/api/XRTK.Editor.Rendering.html deleted file mode 100644 index 6ff2cd87a..000000000 --- a/docs/api/XRTK.Editor.Rendering.html +++ /dev/null @@ -1,122 +0,0 @@ - - - - - - - - Namespace XRTK.Editor.Rendering - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.SystemTypeRepairWindow.html b/docs/api/XRTK.Editor.SystemTypeRepairWindow.html deleted file mode 100644 index 335427743..000000000 --- a/docs/api/XRTK.Editor.SystemTypeRepairWindow.html +++ /dev/null @@ -1,273 +0,0 @@ - - - - - - - - Class SystemTypeRepairWindow - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Text3DShaderGUI.Styles.html b/docs/api/XRTK.Editor.Text3DShaderGUI.Styles.html deleted file mode 100644 index 797a33e91..000000000 --- a/docs/api/XRTK.Editor.Text3DShaderGUI.Styles.html +++ /dev/null @@ -1,186 +0,0 @@ - - - - - - - - Class Text3DShaderGUI.Styles - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Text3DShaderGUI.html b/docs/api/XRTK.Editor.Text3DShaderGUI.html deleted file mode 100644 index 8c0b47f9b..000000000 --- a/docs/api/XRTK.Editor.Text3DShaderGUI.html +++ /dev/null @@ -1,265 +0,0 @@ - - - - - - - - Class Text3DShaderGUI - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Utilities.AssemblyDefinitionEditorExtension.html b/docs/api/XRTK.Editor.Utilities.AssemblyDefinitionEditorExtension.html deleted file mode 100644 index 2cc01a407..000000000 --- a/docs/api/XRTK.Editor.Utilities.AssemblyDefinitionEditorExtension.html +++ /dev/null @@ -1,253 +0,0 @@ - - - - - - - - Class AssemblyDefinitionEditorExtension - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Utilities.AutoSceneSwitcher.html b/docs/api/XRTK.Editor.Utilities.AutoSceneSwitcher.html deleted file mode 100644 index 4cda3a057..000000000 --- a/docs/api/XRTK.Editor.Utilities.AutoSceneSwitcher.html +++ /dev/null @@ -1,158 +0,0 @@ - - - - - - - - Class AutoSceneSwitcher - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Utilities.BaseMixedRealityProfileInspectorExtensions.html b/docs/api/XRTK.Editor.Utilities.BaseMixedRealityProfileInspectorExtensions.html deleted file mode 100644 index 73efb30d3..000000000 --- a/docs/api/XRTK.Editor.Utilities.BaseMixedRealityProfileInspectorExtensions.html +++ /dev/null @@ -1,257 +0,0 @@ - - - - - - - - Class BaseMixedRealityProfileInspectorExtensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Utilities.CanvasEditorExtension.html b/docs/api/XRTK.Editor.Utilities.CanvasEditorExtension.html deleted file mode 100644 index 10822a9b8..000000000 --- a/docs/api/XRTK.Editor.Utilities.CanvasEditorExtension.html +++ /dev/null @@ -1,216 +0,0 @@ - - - - - - - - Class CanvasEditorExtension - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Utilities.ChannelPackerWindow.html b/docs/api/XRTK.Editor.Utilities.ChannelPackerWindow.html deleted file mode 100644 index 742732734..000000000 --- a/docs/api/XRTK.Editor.Utilities.ChannelPackerWindow.html +++ /dev/null @@ -1,198 +0,0 @@ - - - - - - - - Class ChannelPackerWindow - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Utilities.ControllerMappingUtilities.html b/docs/api/XRTK.Editor.Utilities.ControllerMappingUtilities.html deleted file mode 100644 index a25398a30..000000000 --- a/docs/api/XRTK.Editor.Utilities.ControllerMappingUtilities.html +++ /dev/null @@ -1,296 +0,0 @@ - - - - - - - - Class ControllerMappingUtilities - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Utilities.CorePathFinder.html b/docs/api/XRTK.Editor.Utilities.CorePathFinder.html deleted file mode 100644 index 196a477ba..000000000 --- a/docs/api/XRTK.Editor.Utilities.CorePathFinder.html +++ /dev/null @@ -1,239 +0,0 @@ - - - - - - - - Class CorePathFinder - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Utilities.DevOpsLoggingUtility.html b/docs/api/XRTK.Editor.Utilities.DevOpsLoggingUtility.html deleted file mode 100644 index 9050d82fe..000000000 --- a/docs/api/XRTK.Editor.Utilities.DevOpsLoggingUtility.html +++ /dev/null @@ -1,219 +0,0 @@ - - - - - - - - Class DevOpsLoggingUtility - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Utilities.EditorAssemblyReloadManager.html b/docs/api/XRTK.Editor.Utilities.EditorAssemblyReloadManager.html deleted file mode 100644 index 44447e6ed..000000000 --- a/docs/api/XRTK.Editor.Utilities.EditorAssemblyReloadManager.html +++ /dev/null @@ -1,192 +0,0 @@ - - - - - - - - Class EditorAssemblyReloadManager - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Utilities.EditorPreferences.html b/docs/api/XRTK.Editor.Utilities.EditorPreferences.html deleted file mode 100644 index 63e75eda0..000000000 --- a/docs/api/XRTK.Editor.Utilities.EditorPreferences.html +++ /dev/null @@ -1,586 +0,0 @@ - - - - - - - - Class EditorPreferences - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Utilities.GitUtilities.html b/docs/api/XRTK.Editor.Utilities.GitUtilities.html deleted file mode 100644 index f96cfd0bb..000000000 --- a/docs/api/XRTK.Editor.Utilities.GitUtilities.html +++ /dev/null @@ -1,353 +0,0 @@ - - - - - - - - Class GitUtilities - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Utilities.GuidRegenerator.html b/docs/api/XRTK.Editor.Utilities.GuidRegenerator.html deleted file mode 100644 index eb88a54b3..000000000 --- a/docs/api/XRTK.Editor.Utilities.GuidRegenerator.html +++ /dev/null @@ -1,243 +0,0 @@ - - - - - - - - Class GuidRegenerator - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Utilities.HoverLightInspector.html b/docs/api/XRTK.Editor.Utilities.HoverLightInspector.html deleted file mode 100644 index 5f1e092af..000000000 --- a/docs/api/XRTK.Editor.Utilities.HoverLightInspector.html +++ /dev/null @@ -1,196 +0,0 @@ - - - - - - - - Class HoverLightInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Utilities.IPathFinder.html b/docs/api/XRTK.Editor.Utilities.IPathFinder.html deleted file mode 100644 index edc22f058..000000000 --- a/docs/api/XRTK.Editor.Utilities.IPathFinder.html +++ /dev/null @@ -1,170 +0,0 @@ - - - - - - - - Interface IPathFinder - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Utilities.IconEditor.html b/docs/api/XRTK.Editor.Utilities.IconEditor.html deleted file mode 100644 index 54eb2ad8e..000000000 --- a/docs/api/XRTK.Editor.Utilities.IconEditor.html +++ /dev/null @@ -1,216 +0,0 @@ - - - - - - - - Class IconEditor - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Utilities.InputManagerAxis.html b/docs/api/XRTK.Editor.Utilities.InputManagerAxis.html deleted file mode 100644 index 3c6909b69..000000000 --- a/docs/api/XRTK.Editor.Utilities.InputManagerAxis.html +++ /dev/null @@ -1,600 +0,0 @@ - - - - - - - - Class InputManagerAxis - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Utilities.InputManagerAxisType.html b/docs/api/XRTK.Editor.Utilities.InputManagerAxisType.html deleted file mode 100644 index 7b8cdb2ed..000000000 --- a/docs/api/XRTK.Editor.Utilities.InputManagerAxisType.html +++ /dev/null @@ -1,170 +0,0 @@ - - - - - - - - Enum InputManagerAxisType - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Utilities.InputMappingAxisUtility.html b/docs/api/XRTK.Editor.Utilities.InputMappingAxisUtility.html deleted file mode 100644 index baba087e2..000000000 --- a/docs/api/XRTK.Editor.Utilities.InputMappingAxisUtility.html +++ /dev/null @@ -1,315 +0,0 @@ - - - - - - - - Class InputMappingAxisUtility - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Utilities.LayerUtilities.html b/docs/api/XRTK.Editor.Utilities.LayerUtilities.html deleted file mode 100644 index 1f4d6c8e3..000000000 --- a/docs/api/XRTK.Editor.Utilities.LayerUtilities.html +++ /dev/null @@ -1,447 +0,0 @@ - - - - - - - - Class LayerUtilities - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.html b/docs/api/XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.html deleted file mode 100644 index 7812490f5..000000000 --- a/docs/api/XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.html +++ /dev/null @@ -1,486 +0,0 @@ - - - - - - - - Class BaseMixedRealityLineDataProviderInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Utilities.Lines.DataProviders.BezierDataProviderInspector.html b/docs/api/XRTK.Editor.Utilities.Lines.DataProviders.BezierDataProviderInspector.html deleted file mode 100644 index 519713981..000000000 --- a/docs/api/XRTK.Editor.Utilities.Lines.DataProviders.BezierDataProviderInspector.html +++ /dev/null @@ -1,274 +0,0 @@ - - - - - - - - Class BezierDataProviderInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Utilities.Lines.DataProviders.EllipseLineDataProviderInspector.html b/docs/api/XRTK.Editor.Utilities.Lines.DataProviders.EllipseLineDataProviderInspector.html deleted file mode 100644 index 7116133b3..000000000 --- a/docs/api/XRTK.Editor.Utilities.Lines.DataProviders.EllipseLineDataProviderInspector.html +++ /dev/null @@ -1,260 +0,0 @@ - - - - - - - - Class EllipseLineDataProviderInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProviderInspector.html b/docs/api/XRTK.Editor.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProviderInspector.html deleted file mode 100644 index 1b7a0364c..000000000 --- a/docs/api/XRTK.Editor.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProviderInspector.html +++ /dev/null @@ -1,260 +0,0 @@ - - - - - - - - Class ParabolaPhysicalLineDataProviderInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Utilities.Lines.DataProviders.ParabolicConstrainedLineDataProviderInspector.html b/docs/api/XRTK.Editor.Utilities.Lines.DataProviders.ParabolicConstrainedLineDataProviderInspector.html deleted file mode 100644 index 88672b3e5..000000000 --- a/docs/api/XRTK.Editor.Utilities.Lines.DataProviders.ParabolicConstrainedLineDataProviderInspector.html +++ /dev/null @@ -1,274 +0,0 @@ - - - - - - - - Class ParabolicConstrainedLineDataProviderInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Utilities.Lines.DataProviders.RectangleLineDataProviderInspector.html b/docs/api/XRTK.Editor.Utilities.Lines.DataProviders.RectangleLineDataProviderInspector.html deleted file mode 100644 index 4e3f1e955..000000000 --- a/docs/api/XRTK.Editor.Utilities.Lines.DataProviders.RectangleLineDataProviderInspector.html +++ /dev/null @@ -1,274 +0,0 @@ - - - - - - - - Class RectangleLineDataProviderInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Utilities.Lines.DataProviders.SimpleLineDataProviderInspector.html b/docs/api/XRTK.Editor.Utilities.Lines.DataProviders.SimpleLineDataProviderInspector.html deleted file mode 100644 index c14923664..000000000 --- a/docs/api/XRTK.Editor.Utilities.Lines.DataProviders.SimpleLineDataProviderInspector.html +++ /dev/null @@ -1,274 +0,0 @@ - - - - - - - - Class SimpleLineDataProviderInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Utilities.Lines.DataProviders.SplineDataProviderInspector.html b/docs/api/XRTK.Editor.Utilities.Lines.DataProviders.SplineDataProviderInspector.html deleted file mode 100644 index 6960f154c..000000000 --- a/docs/api/XRTK.Editor.Utilities.Lines.DataProviders.SplineDataProviderInspector.html +++ /dev/null @@ -1,274 +0,0 @@ - - - - - - - - Class SplineDataProviderInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Utilities.Lines.DataProviders.html b/docs/api/XRTK.Editor.Utilities.Lines.DataProviders.html deleted file mode 100644 index 288cd7401..000000000 --- a/docs/api/XRTK.Editor.Utilities.Lines.DataProviders.html +++ /dev/null @@ -1,132 +0,0 @@ - - - - - - - - Namespace XRTK.Editor.Utilities.Lines.DataProviders - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Utilities.MixedRealityEditorSettings.html b/docs/api/XRTK.Editor.Utilities.MixedRealityEditorSettings.html deleted file mode 100644 index 9b7d3887e..000000000 --- a/docs/api/XRTK.Editor.Utilities.MixedRealityEditorSettings.html +++ /dev/null @@ -1,214 +0,0 @@ - - - - - - - - Class MixedRealityEditorSettings - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Utilities.MixedRealityInspectorUtility.html b/docs/api/XRTK.Editor.Utilities.MixedRealityInspectorUtility.html deleted file mode 100644 index e70f8877c..000000000 --- a/docs/api/XRTK.Editor.Utilities.MixedRealityInspectorUtility.html +++ /dev/null @@ -1,1367 +0,0 @@ - - - - - - - - Class MixedRealityInspectorUtility - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Utilities.MixedRealityServiceWizard.html b/docs/api/XRTK.Editor.Utilities.MixedRealityServiceWizard.html deleted file mode 100644 index 4798b4933..000000000 --- a/docs/api/XRTK.Editor.Utilities.MixedRealityServiceWizard.html +++ /dev/null @@ -1,232 +0,0 @@ - - - - - - - - Class MixedRealityServiceWizard - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Utilities.PathFinderUtility.html b/docs/api/XRTK.Editor.Utilities.PathFinderUtility.html deleted file mode 100644 index f7e664ea8..000000000 --- a/docs/api/XRTK.Editor.Utilities.PathFinderUtility.html +++ /dev/null @@ -1,350 +0,0 @@ - - - - - - - - Class PathFinderUtility - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Utilities.SceneHelpers.html b/docs/api/XRTK.Editor.Utilities.SceneHelpers.html deleted file mode 100644 index dbe3f8dba..000000000 --- a/docs/api/XRTK.Editor.Utilities.SceneHelpers.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - - - Class SceneHelpers - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.html b/docs/api/XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.html deleted file mode 100644 index 06581dff3..000000000 --- a/docs/api/XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.html +++ /dev/null @@ -1,369 +0,0 @@ - - - - - - - - Class SymbolicLink - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinkSettings.html b/docs/api/XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinkSettings.html deleted file mode 100644 index caefb736b..000000000 --- a/docs/api/XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinkSettings.html +++ /dev/null @@ -1,228 +0,0 @@ - - - - - - - - Class SymbolicLinkSettings - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinkSettingsInspector.html b/docs/api/XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinkSettingsInspector.html deleted file mode 100644 index 1b9b98eeb..000000000 --- a/docs/api/XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinkSettingsInspector.html +++ /dev/null @@ -1,215 +0,0 @@ - - - - - - - - Class SymbolicLinkSettingsInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinker.html b/docs/api/XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinker.html deleted file mode 100644 index 53ea0ff94..000000000 --- a/docs/api/XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinker.html +++ /dev/null @@ -1,256 +0,0 @@ - - - - - - - - Class SymbolicLinker - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinkerWindow.html b/docs/api/XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinkerWindow.html deleted file mode 100644 index 99e8b1362..000000000 --- a/docs/api/XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinkerWindow.html +++ /dev/null @@ -1,199 +0,0 @@ - - - - - - - - Class SymbolicLinkerWindow - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Utilities.SymbolicLinks.html b/docs/api/XRTK.Editor.Utilities.SymbolicLinks.html deleted file mode 100644 index 6eaa3920d..000000000 --- a/docs/api/XRTK.Editor.Utilities.SymbolicLinks.html +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - - Namespace XRTK.Editor.Utilities.SymbolicLinks - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Utilities.USB.USBDeviceInfo.html b/docs/api/XRTK.Editor.Utilities.USB.USBDeviceInfo.html deleted file mode 100644 index c514ba1fa..000000000 --- a/docs/api/XRTK.Editor.Utilities.USB.USBDeviceInfo.html +++ /dev/null @@ -1,369 +0,0 @@ - - - - - - - - Class USBDeviceInfo - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Utilities.USB.USBDeviceListener.OnUsbDevicesChanged.html b/docs/api/XRTK.Editor.Utilities.USB.USBDeviceListener.OnUsbDevicesChanged.html deleted file mode 100644 index 45b00e002..000000000 --- a/docs/api/XRTK.Editor.Utilities.USB.USBDeviceListener.OnUsbDevicesChanged.html +++ /dev/null @@ -1,150 +0,0 @@ - - - - - - - - Delegate USBDeviceListener.OnUsbDevicesChanged - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Utilities.USB.USBDeviceListener.html b/docs/api/XRTK.Editor.Utilities.USB.USBDeviceListener.html deleted file mode 100644 index 74d025efb..000000000 --- a/docs/api/XRTK.Editor.Utilities.USB.USBDeviceListener.html +++ /dev/null @@ -1,225 +0,0 @@ - - - - - - - - Class USBDeviceListener - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Utilities.USB.html b/docs/api/XRTK.Editor.Utilities.USB.html deleted file mode 100644 index 22c103c8e..000000000 --- a/docs/api/XRTK.Editor.Utilities.USB.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - - - Namespace XRTK.Editor.Utilities.USB - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Utilities.UnityFileHelper.html b/docs/api/XRTK.Editor.Utilities.UnityFileHelper.html deleted file mode 100644 index e7f94e1dd..000000000 --- a/docs/api/XRTK.Editor.Utilities.UnityFileHelper.html +++ /dev/null @@ -1,206 +0,0 @@ - - - - - - - - Class UnityFileHelper - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.Utilities.html b/docs/api/XRTK.Editor.Utilities.html deleted file mode 100644 index fe8e924cf..000000000 --- a/docs/api/XRTK.Editor.Utilities.html +++ /dev/null @@ -1,188 +0,0 @@ - - - - - - - - Namespace XRTK.Editor.Utilities - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Editor.html b/docs/api/XRTK.Editor.html deleted file mode 100644 index 0cc2f47bf..000000000 --- a/docs/api/XRTK.Editor.html +++ /dev/null @@ -1,151 +0,0 @@ - - - - - - - - Namespace XRTK.Editor - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Etee.Editor.EteePathFinder.html b/docs/api/XRTK.Etee.Editor.EteePathFinder.html deleted file mode 100644 index d2cb59f25..000000000 --- a/docs/api/XRTK.Etee.Editor.EteePathFinder.html +++ /dev/null @@ -1,217 +0,0 @@ - - - - - - - - Class EteePathFinder - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Etee.Editor.html b/docs/api/XRTK.Etee.Editor.html deleted file mode 100644 index 5b940f229..000000000 --- a/docs/api/XRTK.Etee.Editor.html +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - Namespace XRTK.Etee.Editor - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Etee.Profiles.EteeControllerDataProviderProfile.html b/docs/api/XRTK.Etee.Profiles.EteeControllerDataProviderProfile.html deleted file mode 100644 index db6371acd..000000000 --- a/docs/api/XRTK.Etee.Profiles.EteeControllerDataProviderProfile.html +++ /dev/null @@ -1,163 +0,0 @@ - - - - - - - - Class EteeControllerDataProviderProfile - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Etee.Profiles.html b/docs/api/XRTK.Etee.Profiles.html deleted file mode 100644 index 93521e4ca..000000000 --- a/docs/api/XRTK.Etee.Profiles.html +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - Namespace XRTK.Etee.Profiles - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Etee.Providers.Controllers.EteeController.html b/docs/api/XRTK.Etee.Providers.Controllers.EteeController.html deleted file mode 100644 index 164f20aee..000000000 --- a/docs/api/XRTK.Etee.Providers.Controllers.EteeController.html +++ /dev/null @@ -1,132 +0,0 @@ - - - - - - - - Class EteeController - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Etee.Providers.Controllers.EteeControllerDataProvider.html b/docs/api/XRTK.Etee.Providers.Controllers.EteeControllerDataProvider.html deleted file mode 100644 index 89276f281..000000000 --- a/docs/api/XRTK.Etee.Providers.Controllers.EteeControllerDataProvider.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - - - Class EteeControllerDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Etee.Providers.Controllers.html b/docs/api/XRTK.Etee.Providers.Controllers.html deleted file mode 100644 index bcf7a89b2..000000000 --- a/docs/api/XRTK.Etee.Providers.Controllers.html +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - - Namespace XRTK.Etee.Providers.Controllers - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.EventDatum.DiagnosticsSystem.BaseDiagnosticsEventData.html b/docs/api/XRTK.EventDatum.DiagnosticsSystem.BaseDiagnosticsEventData.html deleted file mode 100644 index 96fab0ee5..000000000 --- a/docs/api/XRTK.EventDatum.DiagnosticsSystem.BaseDiagnosticsEventData.html +++ /dev/null @@ -1,231 +0,0 @@ - - - - - - - - Class BaseDiagnosticsEventData - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.EventDatum.DiagnosticsSystem.ConsoleEventData.html b/docs/api/XRTK.EventDatum.DiagnosticsSystem.ConsoleEventData.html deleted file mode 100644 index dfd24338b..000000000 --- a/docs/api/XRTK.EventDatum.DiagnosticsSystem.ConsoleEventData.html +++ /dev/null @@ -1,324 +0,0 @@ - - - - - - - - Class ConsoleEventData - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.EventDatum.DiagnosticsSystem.FrameEventData.html b/docs/api/XRTK.EventDatum.DiagnosticsSystem.FrameEventData.html deleted file mode 100644 index 127f4239c..000000000 --- a/docs/api/XRTK.EventDatum.DiagnosticsSystem.FrameEventData.html +++ /dev/null @@ -1,352 +0,0 @@ - - - - - - - - Class FrameEventData - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.EventDatum.DiagnosticsSystem.MemoryEventData.html b/docs/api/XRTK.EventDatum.DiagnosticsSystem.MemoryEventData.html deleted file mode 100644 index 528f37dbe..000000000 --- a/docs/api/XRTK.EventDatum.DiagnosticsSystem.MemoryEventData.html +++ /dev/null @@ -1,380 +0,0 @@ - - - - - - - - Class MemoryEventData - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.EventDatum.DiagnosticsSystem.html b/docs/api/XRTK.EventDatum.DiagnosticsSystem.html deleted file mode 100644 index 82fb2c325..000000000 --- a/docs/api/XRTK.EventDatum.DiagnosticsSystem.html +++ /dev/null @@ -1,128 +0,0 @@ - - - - - - - - Namespace XRTK.EventDatum.DiagnosticsSystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.EventDatum.GenericBaseEventData.html b/docs/api/XRTK.EventDatum.GenericBaseEventData.html deleted file mode 100644 index e28211c17..000000000 --- a/docs/api/XRTK.EventDatum.GenericBaseEventData.html +++ /dev/null @@ -1,282 +0,0 @@ - - - - - - - - Class GenericBaseEventData - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.EventDatum.Input.BaseInputEventData.html b/docs/api/XRTK.EventDatum.Input.BaseInputEventData.html deleted file mode 100644 index 5c14078a5..000000000 --- a/docs/api/XRTK.EventDatum.Input.BaseInputEventData.html +++ /dev/null @@ -1,349 +0,0 @@ - - - - - - - - Class BaseInputEventData - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.EventDatum.Input.DictationEventData.html b/docs/api/XRTK.EventDatum.Input.DictationEventData.html deleted file mode 100644 index 06bf1f902..000000000 --- a/docs/api/XRTK.EventDatum.Input.DictationEventData.html +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - Class DictationEventData - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.EventDatum.Input.FocusEventData.html b/docs/api/XRTK.EventDatum.Input.FocusEventData.html deleted file mode 100644 index 5d182817b..000000000 --- a/docs/api/XRTK.EventDatum.Input.FocusEventData.html +++ /dev/null @@ -1,346 +0,0 @@ - - - - - - - - Class FocusEventData - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.EventDatum.Input.GraphicInputEventData.html b/docs/api/XRTK.EventDatum.Input.GraphicInputEventData.html deleted file mode 100644 index 94c38e826..000000000 --- a/docs/api/XRTK.EventDatum.Input.GraphicInputEventData.html +++ /dev/null @@ -1,191 +0,0 @@ - - - - - - - - Class GraphicInputEventData - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.EventDatum.Input.InputEventData-1.html b/docs/api/XRTK.EventDatum.Input.InputEventData-1.html deleted file mode 100644 index 4e1224eef..000000000 --- a/docs/api/XRTK.EventDatum.Input.InputEventData-1.html +++ /dev/null @@ -1,299 +0,0 @@ - - - - - - - - Class InputEventData<T> - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.EventDatum.Input.InputEventData.html b/docs/api/XRTK.EventDatum.Input.InputEventData.html deleted file mode 100644 index c1d8ac1e9..000000000 --- a/docs/api/XRTK.EventDatum.Input.InputEventData.html +++ /dev/null @@ -1,273 +0,0 @@ - - - - - - - - Class InputEventData - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.EventDatum.Input.MixedRealityPointerDragEventData.html b/docs/api/XRTK.EventDatum.Input.MixedRealityPointerDragEventData.html deleted file mode 100644 index d108e1508..000000000 --- a/docs/api/XRTK.EventDatum.Input.MixedRealityPointerDragEventData.html +++ /dev/null @@ -1,284 +0,0 @@ - - - - - - - - Class MixedRealityPointerDragEventData - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.EventDatum.Input.MixedRealityPointerEventData.html b/docs/api/XRTK.EventDatum.Input.MixedRealityPointerEventData.html deleted file mode 100644 index 4d06f9b2d..000000000 --- a/docs/api/XRTK.EventDatum.Input.MixedRealityPointerEventData.html +++ /dev/null @@ -1,274 +0,0 @@ - - - - - - - - Class MixedRealityPointerEventData - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.EventDatum.Input.MixedRealityPointerScrollEventData.html b/docs/api/XRTK.EventDatum.Input.MixedRealityPointerScrollEventData.html deleted file mode 100644 index 3d0e01fdc..000000000 --- a/docs/api/XRTK.EventDatum.Input.MixedRealityPointerScrollEventData.html +++ /dev/null @@ -1,284 +0,0 @@ - - - - - - - - Class MixedRealityPointerScrollEventData - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.EventDatum.Input.SourcePoseEventData-1.html b/docs/api/XRTK.EventDatum.Input.SourcePoseEventData-1.html deleted file mode 100644 index 95b5f5460..000000000 --- a/docs/api/XRTK.EventDatum.Input.SourcePoseEventData-1.html +++ /dev/null @@ -1,297 +0,0 @@ - - - - - - - - Class SourcePoseEventData<T> - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.EventDatum.Input.SourceStateEventData.html b/docs/api/XRTK.EventDatum.Input.SourceStateEventData.html deleted file mode 100644 index 311efb848..000000000 --- a/docs/api/XRTK.EventDatum.Input.SourceStateEventData.html +++ /dev/null @@ -1,270 +0,0 @@ - - - - - - - - Class SourceStateEventData - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.EventDatum.Input.SpeechEventData.html b/docs/api/XRTK.EventDatum.Input.SpeechEventData.html deleted file mode 100644 index 59fa2c69d..000000000 --- a/docs/api/XRTK.EventDatum.Input.SpeechEventData.html +++ /dev/null @@ -1,380 +0,0 @@ - - - - - - - - Class SpeechEventData - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.EventDatum.Input.html b/docs/api/XRTK.EventDatum.Input.html deleted file mode 100644 index ac8f68fc0..000000000 --- a/docs/api/XRTK.EventDatum.Input.html +++ /dev/null @@ -1,152 +0,0 @@ - - - - - - - - Namespace XRTK.EventDatum.Input - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.EventDatum.Networking.BaseNetworkingEventData-1.html b/docs/api/XRTK.EventDatum.Networking.BaseNetworkingEventData-1.html deleted file mode 100644 index 56c70fcd8..000000000 --- a/docs/api/XRTK.EventDatum.Networking.BaseNetworkingEventData-1.html +++ /dev/null @@ -1,270 +0,0 @@ - - - - - - - - Class BaseNetworkingEventData<T> - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.EventDatum.Networking.html b/docs/api/XRTK.EventDatum.Networking.html deleted file mode 100644 index 4fc3770b1..000000000 --- a/docs/api/XRTK.EventDatum.Networking.html +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - Namespace XRTK.EventDatum.Networking - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.EventDatum.PlacementEventData.html b/docs/api/XRTK.EventDatum.PlacementEventData.html deleted file mode 100644 index 4656bbc08..000000000 --- a/docs/api/XRTK.EventDatum.PlacementEventData.html +++ /dev/null @@ -1,261 +0,0 @@ - - - - - - - - Class PlacementEventData - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData-1.html b/docs/api/XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData-1.html deleted file mode 100644 index 60f784d0f..000000000 --- a/docs/api/XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData-1.html +++ /dev/null @@ -1,311 +0,0 @@ - - - - - - - - Class MixedRealitySpatialAwarenessEventData<T> - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.EventDatum.SpatialAwarenessSystem.html b/docs/api/XRTK.EventDatum.SpatialAwarenessSystem.html deleted file mode 100644 index 2438a4470..000000000 --- a/docs/api/XRTK.EventDatum.SpatialAwarenessSystem.html +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - Namespace XRTK.EventDatum.SpatialAwarenessSystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.EventDatum.Teleport.TeleportEventData.html b/docs/api/XRTK.EventDatum.Teleport.TeleportEventData.html deleted file mode 100644 index 53f4d233f..000000000 --- a/docs/api/XRTK.EventDatum.Teleport.TeleportEventData.html +++ /dev/null @@ -1,292 +0,0 @@ - - - - - - - - Class TeleportEventData - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.EventDatum.Teleport.html b/docs/api/XRTK.EventDatum.Teleport.html deleted file mode 100644 index 91e92c276..000000000 --- a/docs/api/XRTK.EventDatum.Teleport.html +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - Namespace XRTK.EventDatum.Teleport - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.EventDatum.html b/docs/api/XRTK.EventDatum.html deleted file mode 100644 index 23357cfe6..000000000 --- a/docs/api/XRTK.EventDatum.html +++ /dev/null @@ -1,122 +0,0 @@ - - - - - - - - Namespace XRTK.EventDatum - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Examples.Demos.BoundarySystem.BoundaryVisualizationDemo.html b/docs/api/XRTK.Examples.Demos.BoundarySystem.BoundaryVisualizationDemo.html deleted file mode 100644 index a90548a52..000000000 --- a/docs/api/XRTK.Examples.Demos.BoundarySystem.BoundaryVisualizationDemo.html +++ /dev/null @@ -1,191 +0,0 @@ - - - - - - - - Class BoundaryVisualizationDemo - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Examples.Demos.BoundarySystem.html b/docs/api/XRTK.Examples.Demos.BoundarySystem.html deleted file mode 100644 index 2e42a6899..000000000 --- a/docs/api/XRTK.Examples.Demos.BoundarySystem.html +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - Namespace XRTK.Examples.Demos.BoundarySystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionService.html b/docs/api/XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionService.html deleted file mode 100644 index f36e5d76d..000000000 --- a/docs/api/XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionService.html +++ /dev/null @@ -1,371 +0,0 @@ - - - - - - - - Class DemoCustomExtensionService - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionServiceProfile.html b/docs/api/XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionServiceProfile.html deleted file mode 100644 index f5b2c2307..000000000 --- a/docs/api/XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionServiceProfile.html +++ /dev/null @@ -1,253 +0,0 @@ - - - - - - - - Class DemoCustomExtensionServiceProfile - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Examples.Demos.CustomExtensionServices.IDemoCustomExtensionService.html b/docs/api/XRTK.Examples.Demos.CustomExtensionServices.IDemoCustomExtensionService.html deleted file mode 100644 index 3549cdb09..000000000 --- a/docs/api/XRTK.Examples.Demos.CustomExtensionServices.IDemoCustomExtensionService.html +++ /dev/null @@ -1,260 +0,0 @@ - - - - - - - - Interface IDemoCustomExtensionService - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Examples.Demos.CustomExtensionServices.html b/docs/api/XRTK.Examples.Demos.CustomExtensionServices.html deleted file mode 100644 index f75b3f912..000000000 --- a/docs/api/XRTK.Examples.Demos.CustomExtensionServices.html +++ /dev/null @@ -1,130 +0,0 @@ - - - - - - - - Namespace XRTK.Examples.Demos.CustomExtensionServices - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Examples.Demos.CustomServices.Editor.DemoCustomExtensionServiceProfileInspector.html b/docs/api/XRTK.Examples.Demos.CustomServices.Editor.DemoCustomExtensionServiceProfileInspector.html deleted file mode 100644 index 8b251252f..000000000 --- a/docs/api/XRTK.Examples.Demos.CustomServices.Editor.DemoCustomExtensionServiceProfileInspector.html +++ /dev/null @@ -1,248 +0,0 @@ - - - - - - - - Class DemoCustomExtensionServiceProfileInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Examples.Demos.CustomServices.Editor.html b/docs/api/XRTK.Examples.Demos.CustomServices.Editor.html deleted file mode 100644 index b514903a8..000000000 --- a/docs/api/XRTK.Examples.Demos.CustomServices.Editor.html +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - Namespace XRTK.Examples.Demos.CustomServices.Editor - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Examples.Demos.DemoSpatialMeshHandler.html b/docs/api/XRTK.Examples.Demos.DemoSpatialMeshHandler.html deleted file mode 100644 index 4948566ba..000000000 --- a/docs/api/XRTK.Examples.Demos.DemoSpatialMeshHandler.html +++ /dev/null @@ -1,305 +0,0 @@ - - - - - - - - Class DemoSpatialMeshHandler - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Examples.Demos.DiagnosticsDemoControls.html b/docs/api/XRTK.Examples.Demos.DiagnosticsDemoControls.html deleted file mode 100644 index 98024d903..000000000 --- a/docs/api/XRTK.Examples.Demos.DiagnosticsDemoControls.html +++ /dev/null @@ -1,190 +0,0 @@ - - - - - - - - Class DiagnosticsDemoControls - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Examples.Demos.Gltf.TestGlbLoading.html b/docs/api/XRTK.Examples.Demos.Gltf.TestGlbLoading.html deleted file mode 100644 index 3dfaae18e..000000000 --- a/docs/api/XRTK.Examples.Demos.Gltf.TestGlbLoading.html +++ /dev/null @@ -1,190 +0,0 @@ - - - - - - - - Class TestGlbLoading - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Examples.Demos.Gltf.TestGltfLoading.html b/docs/api/XRTK.Examples.Demos.Gltf.TestGltfLoading.html deleted file mode 100644 index 2bd459612..000000000 --- a/docs/api/XRTK.Examples.Demos.Gltf.TestGltfLoading.html +++ /dev/null @@ -1,194 +0,0 @@ - - - - - - - - Class TestGltfLoading - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Examples.Demos.Gltf.html b/docs/api/XRTK.Examples.Demos.Gltf.html deleted file mode 100644 index 2a939ee87..000000000 --- a/docs/api/XRTK.Examples.Demos.Gltf.html +++ /dev/null @@ -1,121 +0,0 @@ - - - - - - - - Namespace XRTK.Examples.Demos.Gltf - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Examples.Demos.HandController.HandPhysicsDemoStation.html b/docs/api/XRTK.Examples.Demos.HandController.HandPhysicsDemoStation.html deleted file mode 100644 index fbd251457..000000000 --- a/docs/api/XRTK.Examples.Demos.HandController.HandPhysicsDemoStation.html +++ /dev/null @@ -1,255 +0,0 @@ - - - - - - - - Class HandPhysicsDemoStation - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Examples.Demos.HandController.RenderingModeDemoStation.html b/docs/api/XRTK.Examples.Demos.HandController.RenderingModeDemoStation.html deleted file mode 100644 index 31f1ba87a..000000000 --- a/docs/api/XRTK.Examples.Demos.HandController.RenderingModeDemoStation.html +++ /dev/null @@ -1,238 +0,0 @@ - - - - - - - - Class RenderingModeDemoStation - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Examples.Demos.HandController.TrackedPoseDemoStation.html b/docs/api/XRTK.Examples.Demos.HandController.TrackedPoseDemoStation.html deleted file mode 100644 index 207c8659b..000000000 --- a/docs/api/XRTK.Examples.Demos.HandController.TrackedPoseDemoStation.html +++ /dev/null @@ -1,434 +0,0 @@ - - - - - - - - Class TrackedPoseDemoStation - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Examples.Demos.HandController.UX.DemoButton.html b/docs/api/XRTK.Examples.Demos.HandController.UX.DemoButton.html deleted file mode 100644 index f46fc0af5..000000000 --- a/docs/api/XRTK.Examples.Demos.HandController.UX.DemoButton.html +++ /dev/null @@ -1,299 +0,0 @@ - - - - - - - - Class DemoButton - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Examples.Demos.HandController.UX.DemoGrabbable.html b/docs/api/XRTK.Examples.Demos.HandController.UX.DemoGrabbable.html deleted file mode 100644 index 28e34a4ba..000000000 --- a/docs/api/XRTK.Examples.Demos.HandController.UX.DemoGrabbable.html +++ /dev/null @@ -1,309 +0,0 @@ - - - - - - - - Class DemoGrabbable - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Examples.Demos.HandController.UX.html b/docs/api/XRTK.Examples.Demos.HandController.UX.html deleted file mode 100644 index 5543aa4a1..000000000 --- a/docs/api/XRTK.Examples.Demos.HandController.UX.html +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - - - Namespace XRTK.Examples.Demos.HandController.UX - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Examples.Demos.HandController.html b/docs/api/XRTK.Examples.Demos.HandController.html deleted file mode 100644 index bc6db0252..000000000 --- a/docs/api/XRTK.Examples.Demos.HandController.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - - - Namespace XRTK.Examples.Demos.HandController - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Examples.Demos.Input.DemoInputHandler.html b/docs/api/XRTK.Examples.Demos.Input.DemoInputHandler.html deleted file mode 100644 index 36925b0c5..000000000 --- a/docs/api/XRTK.Examples.Demos.Input.DemoInputHandler.html +++ /dev/null @@ -1,881 +0,0 @@ - - - - - - - - Class DemoInputHandler - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Examples.Demos.Input.html b/docs/api/XRTK.Examples.Demos.Input.html deleted file mode 100644 index a864901ad..000000000 --- a/docs/api/XRTK.Examples.Demos.Input.html +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - Namespace XRTK.Examples.Demos.Input - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Examples.Demos.LoFiFilterSelection.html b/docs/api/XRTK.Examples.Demos.LoFiFilterSelection.html deleted file mode 100644 index bbb030d47..000000000 --- a/docs/api/XRTK.Examples.Demos.LoFiFilterSelection.html +++ /dev/null @@ -1,305 +0,0 @@ - - - - - - - - Class LoFiFilterSelection - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Examples.Demos.StandardShader.MaterialMatrix.html b/docs/api/XRTK.Examples.Demos.StandardShader.MaterialMatrix.html deleted file mode 100644 index b93e410e8..000000000 --- a/docs/api/XRTK.Examples.Demos.StandardShader.MaterialMatrix.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - Class MaterialMatrix - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Examples.Demos.StandardShader.html b/docs/api/XRTK.Examples.Demos.StandardShader.html deleted file mode 100644 index bc6a080e5..000000000 --- a/docs/api/XRTK.Examples.Demos.StandardShader.html +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - Namespace XRTK.Examples.Demos.StandardShader - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Examples.Demos.SwapVolume.html b/docs/api/XRTK.Examples.Demos.SwapVolume.html deleted file mode 100644 index f80e8073d..000000000 --- a/docs/api/XRTK.Examples.Demos.SwapVolume.html +++ /dev/null @@ -1,305 +0,0 @@ - - - - - - - - Class SwapVolume - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Examples.Demos.html b/docs/api/XRTK.Examples.Demos.html deleted file mode 100644 index 53f1b14a1..000000000 --- a/docs/api/XRTK.Examples.Demos.html +++ /dev/null @@ -1,128 +0,0 @@ - - - - - - - - Namespace XRTK.Examples.Demos - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Extensions.AnimationCurveExtensions.html b/docs/api/XRTK.Extensions.AnimationCurveExtensions.html deleted file mode 100644 index 374a2866e..000000000 --- a/docs/api/XRTK.Extensions.AnimationCurveExtensions.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - Class AnimationCurveExtensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Extensions.ArrayExtensions.html b/docs/api/XRTK.Extensions.ArrayExtensions.html deleted file mode 100644 index 8af527c9d..000000000 --- a/docs/api/XRTK.Extensions.ArrayExtensions.html +++ /dev/null @@ -1,404 +0,0 @@ - - - - - - - - Class ArrayExtensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Extensions.BoundsExtensions.html b/docs/api/XRTK.Extensions.BoundsExtensions.html deleted file mode 100644 index 21d6a8bd6..000000000 --- a/docs/api/XRTK.Extensions.BoundsExtensions.html +++ /dev/null @@ -1,2025 +0,0 @@ - - - - - - - - Class BoundsExtensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Extensions.CameraExtensions.html b/docs/api/XRTK.Extensions.CameraExtensions.html deleted file mode 100644 index e271b8a93..000000000 --- a/docs/api/XRTK.Extensions.CameraExtensions.html +++ /dev/null @@ -1,424 +0,0 @@ - - - - - - - - Class CameraExtensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Extensions.CanvasExtensions.html b/docs/api/XRTK.Extensions.CanvasExtensions.html deleted file mode 100644 index e69a3e18f..000000000 --- a/docs/api/XRTK.Extensions.CanvasExtensions.html +++ /dev/null @@ -1,612 +0,0 @@ - - - - - - - - Class CanvasExtensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Extensions.CollectionsExtensions.html b/docs/api/XRTK.Extensions.CollectionsExtensions.html deleted file mode 100644 index b4139d2ff..000000000 --- a/docs/api/XRTK.Extensions.CollectionsExtensions.html +++ /dev/null @@ -1,648 +0,0 @@ - - - - - - - - Class CollectionsExtensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Extensions.ColliderExtensions.html b/docs/api/XRTK.Extensions.ColliderExtensions.html deleted file mode 100644 index f3d735d91..000000000 --- a/docs/api/XRTK.Extensions.ColliderExtensions.html +++ /dev/null @@ -1,255 +0,0 @@ - - - - - - - - Class ColliderExtensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Extensions.CollisionExtensions.html b/docs/api/XRTK.Extensions.CollisionExtensions.html deleted file mode 100644 index dadbb2bd1..000000000 --- a/docs/api/XRTK.Extensions.CollisionExtensions.html +++ /dev/null @@ -1,211 +0,0 @@ - - - - - - - - Class CollisionExtensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Extensions.Color32Extensions.html b/docs/api/XRTK.Extensions.Color32Extensions.html deleted file mode 100644 index 6eabf6c2c..000000000 --- a/docs/api/XRTK.Extensions.Color32Extensions.html +++ /dev/null @@ -1,300 +0,0 @@ - - - - - - - - Class Color32Extensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Extensions.ComparerExtensions.html b/docs/api/XRTK.Extensions.ComparerExtensions.html deleted file mode 100644 index b9e31458b..000000000 --- a/docs/api/XRTK.Extensions.ComparerExtensions.html +++ /dev/null @@ -1,224 +0,0 @@ - - - - - - - - Class ComparerExtensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Extensions.ComponentExtensions.html b/docs/api/XRTK.Extensions.ComponentExtensions.html deleted file mode 100644 index df4576710..000000000 --- a/docs/api/XRTK.Extensions.ComponentExtensions.html +++ /dev/null @@ -1,524 +0,0 @@ - - - - - - - - Class ComponentExtensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Extensions.ConverterExtensions.html b/docs/api/XRTK.Extensions.ConverterExtensions.html deleted file mode 100644 index 722498fa4..000000000 --- a/docs/api/XRTK.Extensions.ConverterExtensions.html +++ /dev/null @@ -1,301 +0,0 @@ - - - - - - - - Class ConverterExtensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Extensions.DoubleExtensions.html b/docs/api/XRTK.Extensions.DoubleExtensions.html deleted file mode 100644 index a1fe466ec..000000000 --- a/docs/api/XRTK.Extensions.DoubleExtensions.html +++ /dev/null @@ -1,221 +0,0 @@ - - - - - - - - Class DoubleExtensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Extensions.EnumExtensions-1.html b/docs/api/XRTK.Extensions.EnumExtensions-1.html deleted file mode 100644 index 33ce2f22a..000000000 --- a/docs/api/XRTK.Extensions.EnumExtensions-1.html +++ /dev/null @@ -1,309 +0,0 @@ - - - - - - - - Class EnumExtensions<TEnum> - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Extensions.EnumExtensions.html b/docs/api/XRTK.Extensions.EnumExtensions.html deleted file mode 100644 index db794dc58..000000000 --- a/docs/api/XRTK.Extensions.EnumExtensions.html +++ /dev/null @@ -1,448 +0,0 @@ - - - - - - - - Class EnumExtensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Extensions.EnumerableExtensions.html b/docs/api/XRTK.Extensions.EnumerableExtensions.html deleted file mode 100644 index 57b0894c9..000000000 --- a/docs/api/XRTK.Extensions.EnumerableExtensions.html +++ /dev/null @@ -1,227 +0,0 @@ - - - - - - - - Class EnumerableExtensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Extensions.EventSystemExtensions.html b/docs/api/XRTK.Extensions.EventSystemExtensions.html deleted file mode 100644 index 84b4ac29b..000000000 --- a/docs/api/XRTK.Extensions.EventSystemExtensions.html +++ /dev/null @@ -1,218 +0,0 @@ - - - - - - - - Class EventSystemExtensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Extensions.FloatExtensions.html b/docs/api/XRTK.Extensions.FloatExtensions.html deleted file mode 100644 index 1876d4837..000000000 --- a/docs/api/XRTK.Extensions.FloatExtensions.html +++ /dev/null @@ -1,221 +0,0 @@ - - - - - - - - Class FloatExtensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Extensions.GameObjectExtensions.html b/docs/api/XRTK.Extensions.GameObjectExtensions.html deleted file mode 100644 index d1cb011be..000000000 --- a/docs/api/XRTK.Extensions.GameObjectExtensions.html +++ /dev/null @@ -1,810 +0,0 @@ - - - - - - - - Class GameObjectExtensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Extensions.GestureRecognizerExtensions.html b/docs/api/XRTK.Extensions.GestureRecognizerExtensions.html deleted file mode 100644 index 50fa54707..000000000 --- a/docs/api/XRTK.Extensions.GestureRecognizerExtensions.html +++ /dev/null @@ -1,195 +0,0 @@ - - - - - - - - Class GestureRecognizerExtensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Extensions.HandControllerPoseProfileExtensions.html b/docs/api/XRTK.Extensions.HandControllerPoseProfileExtensions.html deleted file mode 100644 index f226bb504..000000000 --- a/docs/api/XRTK.Extensions.HandControllerPoseProfileExtensions.html +++ /dev/null @@ -1,209 +0,0 @@ - - - - - - - - Class HandControllerPoseProfileExtensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Extensions.InteractionMappingsExtensions.html b/docs/api/XRTK.Extensions.InteractionMappingsExtensions.html deleted file mode 100644 index bd61ff794..000000000 --- a/docs/api/XRTK.Extensions.InteractionMappingsExtensions.html +++ /dev/null @@ -1,201 +0,0 @@ - - - - - - - - Class InteractionMappingsExtensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Extensions.LayerExtensions.html b/docs/api/XRTK.Extensions.LayerExtensions.html deleted file mode 100644 index 1455c6562..000000000 --- a/docs/api/XRTK.Extensions.LayerExtensions.html +++ /dev/null @@ -1,453 +0,0 @@ - - - - - - - - Class LayerExtensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Extensions.MathExtensions.html b/docs/api/XRTK.Extensions.MathExtensions.html deleted file mode 100644 index 89d78ad5b..000000000 --- a/docs/api/XRTK.Extensions.MathExtensions.html +++ /dev/null @@ -1,513 +0,0 @@ - - - - - - - - Class MathExtensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Extensions.ProcessExtensions.html b/docs/api/XRTK.Extensions.ProcessExtensions.html deleted file mode 100644 index 9d0098c92..000000000 --- a/docs/api/XRTK.Extensions.ProcessExtensions.html +++ /dev/null @@ -1,450 +0,0 @@ - - - - - - - - Class ProcessExtensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Extensions.QuaternionExtensions.html b/docs/api/XRTK.Extensions.QuaternionExtensions.html deleted file mode 100644 index f041cc3f0..000000000 --- a/docs/api/XRTK.Extensions.QuaternionExtensions.html +++ /dev/null @@ -1,335 +0,0 @@ - - - - - - - - Class QuaternionExtensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Extensions.RayExtensions.html b/docs/api/XRTK.Extensions.RayExtensions.html deleted file mode 100644 index 9e39d121b..000000000 --- a/docs/api/XRTK.Extensions.RayExtensions.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - Class RayExtensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Extensions.StringExtensions.html b/docs/api/XRTK.Extensions.StringExtensions.html deleted file mode 100644 index 33055de58..000000000 --- a/docs/api/XRTK.Extensions.StringExtensions.html +++ /dev/null @@ -1,591 +0,0 @@ - - - - - - - - Class StringExtensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Extensions.SystemNumericsExtensions.html b/docs/api/XRTK.Extensions.SystemNumericsExtensions.html deleted file mode 100644 index 1a2d80a9e..000000000 --- a/docs/api/XRTK.Extensions.SystemNumericsExtensions.html +++ /dev/null @@ -1,357 +0,0 @@ - - - - - - - - Class SystemNumericsExtensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Extensions.TextureExtensions.html b/docs/api/XRTK.Extensions.TextureExtensions.html deleted file mode 100644 index 883af12fb..000000000 --- a/docs/api/XRTK.Extensions.TextureExtensions.html +++ /dev/null @@ -1,262 +0,0 @@ - - - - - - - - Class TextureExtensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Extensions.TransformExtensions.html b/docs/api/XRTK.Extensions.TransformExtensions.html deleted file mode 100644 index 2351fdf2c..000000000 --- a/docs/api/XRTK.Extensions.TransformExtensions.html +++ /dev/null @@ -1,1170 +0,0 @@ - - - - - - - - Class TransformExtensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Extensions.TypeExtensions.html b/docs/api/XRTK.Extensions.TypeExtensions.html deleted file mode 100644 index 475a183f7..000000000 --- a/docs/api/XRTK.Extensions.TypeExtensions.html +++ /dev/null @@ -1,377 +0,0 @@ - - - - - - - - Class TypeExtensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Extensions.UnityObjectExtensions.html b/docs/api/XRTK.Extensions.UnityObjectExtensions.html deleted file mode 100644 index 58ea5a0bd..000000000 --- a/docs/api/XRTK.Extensions.UnityObjectExtensions.html +++ /dev/null @@ -1,335 +0,0 @@ - - - - - - - - Class UnityObjectExtensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Extensions.VectorExtensions.html b/docs/api/XRTK.Extensions.VectorExtensions.html deleted file mode 100644 index 420f3ce6c..000000000 --- a/docs/api/XRTK.Extensions.VectorExtensions.html +++ /dev/null @@ -1,1938 +0,0 @@ - - - - - - - - Class VectorExtensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Extensions.html b/docs/api/XRTK.Extensions.html deleted file mode 100644 index 6ea15edb7..000000000 --- a/docs/api/XRTK.Extensions.html +++ /dev/null @@ -1,213 +0,0 @@ - - - - - - - - Namespace XRTK.Extensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.Audio.IAudioInfluencer.html b/docs/api/XRTK.Interfaces.Audio.IAudioInfluencer.html deleted file mode 100644 index f4c14ac31..000000000 --- a/docs/api/XRTK.Interfaces.Audio.IAudioInfluencer.html +++ /dev/null @@ -1,204 +0,0 @@ - - - - - - - - Interface IAudioInfluencer - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.Audio.html b/docs/api/XRTK.Interfaces.Audio.html deleted file mode 100644 index 6ff223156..000000000 --- a/docs/api/XRTK.Interfaces.Audio.html +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - Namespace XRTK.Interfaces.Audio - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.BoundarySystem.IMixedRealityBoundaryDataProvider.html b/docs/api/XRTK.Interfaces.BoundarySystem.IMixedRealityBoundaryDataProvider.html deleted file mode 100644 index 0e6627210..000000000 --- a/docs/api/XRTK.Interfaces.BoundarySystem.IMixedRealityBoundaryDataProvider.html +++ /dev/null @@ -1,296 +0,0 @@ - - - - - - - - Interface IMixedRealityBoundaryDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.html b/docs/api/XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.html deleted file mode 100644 index 47cd607dd..000000000 --- a/docs/api/XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.html +++ /dev/null @@ -1,767 +0,0 @@ - - - - - - - - Interface IMixedRealityBoundarySystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.BoundarySystem.html b/docs/api/XRTK.Interfaces.BoundarySystem.html deleted file mode 100644 index 3d4b0fc2a..000000000 --- a/docs/api/XRTK.Interfaces.BoundarySystem.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - - - Namespace XRTK.Interfaces.BoundarySystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider.html b/docs/api/XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider.html deleted file mode 100644 index b46f3ffb5..000000000 --- a/docs/api/XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider.html +++ /dev/null @@ -1,369 +0,0 @@ - - - - - - - - Interface IMixedRealityCameraDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig.html b/docs/api/XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig.html deleted file mode 100644 index c7afad421..000000000 --- a/docs/api/XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig.html +++ /dev/null @@ -1,328 +0,0 @@ - - - - - - - - Interface IMixedRealityCameraRig - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem.html b/docs/api/XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem.html deleted file mode 100644 index 1d3eb3281..000000000 --- a/docs/api/XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem.html +++ /dev/null @@ -1,350 +0,0 @@ - - - - - - - - Interface IMixedRealityCameraSystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.CameraSystem.html b/docs/api/XRTK.Interfaces.CameraSystem.html deleted file mode 100644 index 18d3de741..000000000 --- a/docs/api/XRTK.Interfaces.CameraSystem.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - - - Namespace XRTK.Interfaces.CameraSystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityConsoleDiagnosticsHandler.html b/docs/api/XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityConsoleDiagnosticsHandler.html deleted file mode 100644 index 203f40606..000000000 --- a/docs/api/XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityConsoleDiagnosticsHandler.html +++ /dev/null @@ -1,168 +0,0 @@ - - - - - - - - Interface IMixedRealityConsoleDiagnosticsHandler - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityDiagnosticsHandler.html b/docs/api/XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityDiagnosticsHandler.html deleted file mode 100644 index 40801b406..000000000 --- a/docs/api/XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityDiagnosticsHandler.html +++ /dev/null @@ -1,133 +0,0 @@ - - - - - - - - Interface IMixedRealityDiagnosticsHandler - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityFrameDiagnosticsHandler.html b/docs/api/XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityFrameDiagnosticsHandler.html deleted file mode 100644 index c646e5ad0..000000000 --- a/docs/api/XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityFrameDiagnosticsHandler.html +++ /dev/null @@ -1,201 +0,0 @@ - - - - - - - - Interface IMixedRealityFrameDiagnosticsHandler - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityMemoryDiagnosticsHandler.html b/docs/api/XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityMemoryDiagnosticsHandler.html deleted file mode 100644 index bee1d8c6d..000000000 --- a/docs/api/XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityMemoryDiagnosticsHandler.html +++ /dev/null @@ -1,234 +0,0 @@ - - - - - - - - Interface IMixedRealityMemoryDiagnosticsHandler - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.DiagnosticsSystem.Handlers.html b/docs/api/XRTK.Interfaces.DiagnosticsSystem.Handlers.html deleted file mode 100644 index fde1b3042..000000000 --- a/docs/api/XRTK.Interfaces.DiagnosticsSystem.Handlers.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - - - Namespace XRTK.Interfaces.DiagnosticsSystem.Handlers - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsDataProvider.html b/docs/api/XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsDataProvider.html deleted file mode 100644 index aeaddab45..000000000 --- a/docs/api/XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsDataProvider.html +++ /dev/null @@ -1,178 +0,0 @@ - - - - - - - - Interface IMixedRealityDiagnosticsDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.html b/docs/api/XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.html deleted file mode 100644 index 3b7c40952..000000000 --- a/docs/api/XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.html +++ /dev/null @@ -1,518 +0,0 @@ - - - - - - - - Interface IMixedRealityDiagnosticsSystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.DiagnosticsSystem.html b/docs/api/XRTK.Interfaces.DiagnosticsSystem.html deleted file mode 100644 index 60add24c1..000000000 --- a/docs/api/XRTK.Interfaces.DiagnosticsSystem.html +++ /dev/null @@ -1,121 +0,0 @@ - - - - - - - - Namespace XRTK.Interfaces.DiagnosticsSystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.Events.Handlers.IMixedRealityEventHandler.html b/docs/api/XRTK.Interfaces.Events.Handlers.IMixedRealityEventHandler.html deleted file mode 100644 index 27581be43..000000000 --- a/docs/api/XRTK.Interfaces.Events.Handlers.IMixedRealityEventHandler.html +++ /dev/null @@ -1,168 +0,0 @@ - - - - - - - - Interface IMixedRealityEventHandler - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.Events.Handlers.IMixedRealityPlacementHandler.html b/docs/api/XRTK.Interfaces.Events.Handlers.IMixedRealityPlacementHandler.html deleted file mode 100644 index 8de955d4d..000000000 --- a/docs/api/XRTK.Interfaces.Events.Handlers.IMixedRealityPlacementHandler.html +++ /dev/null @@ -1,206 +0,0 @@ - - - - - - - - Interface IMixedRealityPlacementHandler - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.Events.Handlers.html b/docs/api/XRTK.Interfaces.Events.Handlers.html deleted file mode 100644 index f92d9c4b2..000000000 --- a/docs/api/XRTK.Interfaces.Events.Handlers.html +++ /dev/null @@ -1,122 +0,0 @@ - - - - - - - - Namespace XRTK.Interfaces.Events.Handlers - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.Events.IMixedRealityEventSource.html b/docs/api/XRTK.Interfaces.Events.IMixedRealityEventSource.html deleted file mode 100644 index 075b31bbd..000000000 --- a/docs/api/XRTK.Interfaces.Events.IMixedRealityEventSource.html +++ /dev/null @@ -1,207 +0,0 @@ - - - - - - - - Interface IMixedRealityEventSource - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.Events.IMixedRealityEventSystem.html b/docs/api/XRTK.Interfaces.Events.IMixedRealityEventSystem.html deleted file mode 100644 index 8e1605557..000000000 --- a/docs/api/XRTK.Interfaces.Events.IMixedRealityEventSystem.html +++ /dev/null @@ -1,339 +0,0 @@ - - - - - - - - Interface IMixedRealityEventSystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.Events.html b/docs/api/XRTK.Interfaces.Events.html deleted file mode 100644 index 86c9fed55..000000000 --- a/docs/api/XRTK.Interfaces.Events.html +++ /dev/null @@ -1,122 +0,0 @@ - - - - - - - - Namespace XRTK.Interfaces.Events - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.IMixedRealityDataProvider.html b/docs/api/XRTK.Interfaces.IMixedRealityDataProvider.html deleted file mode 100644 index bcbf4e348..000000000 --- a/docs/api/XRTK.Interfaces.IMixedRealityDataProvider.html +++ /dev/null @@ -1,209 +0,0 @@ - - - - - - - - Interface IMixedRealityDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.IMixedRealityExtensionDataProvider.html b/docs/api/XRTK.Interfaces.IMixedRealityExtensionDataProvider.html deleted file mode 100644 index 8e88b304d..000000000 --- a/docs/api/XRTK.Interfaces.IMixedRealityExtensionDataProvider.html +++ /dev/null @@ -1,179 +0,0 @@ - - - - - - - - Interface IMixedRealityExtensionDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.IMixedRealityExtensionService.html b/docs/api/XRTK.Interfaces.IMixedRealityExtensionService.html deleted file mode 100644 index 5d8bd7eb7..000000000 --- a/docs/api/XRTK.Interfaces.IMixedRealityExtensionService.html +++ /dev/null @@ -1,176 +0,0 @@ - - - - - - - - Interface IMixedRealityExtensionService - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.IMixedRealityPlatform.html b/docs/api/XRTK.Interfaces.IMixedRealityPlatform.html deleted file mode 100644 index 8681153be..000000000 --- a/docs/api/XRTK.Interfaces.IMixedRealityPlatform.html +++ /dev/null @@ -1,229 +0,0 @@ - - - - - - - - Interface IMixedRealityPlatform - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.IMixedRealityService.html b/docs/api/XRTK.Interfaces.IMixedRealityService.html deleted file mode 100644 index 5356cafe9..000000000 --- a/docs/api/XRTK.Interfaces.IMixedRealityService.html +++ /dev/null @@ -1,401 +0,0 @@ - - - - - - - - Interface IMixedRealityService - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.IMixedRealityServiceConfiguration-1.html b/docs/api/XRTK.Interfaces.IMixedRealityServiceConfiguration-1.html deleted file mode 100644 index baa535022..000000000 --- a/docs/api/XRTK.Interfaces.IMixedRealityServiceConfiguration-1.html +++ /dev/null @@ -1,170 +0,0 @@ - - - - - - - - Interface IMixedRealityServiceConfiguration<T> - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.IMixedRealityServiceConfiguration.html b/docs/api/XRTK.Interfaces.IMixedRealityServiceConfiguration.html deleted file mode 100644 index 7c6e5c68b..000000000 --- a/docs/api/XRTK.Interfaces.IMixedRealityServiceConfiguration.html +++ /dev/null @@ -1,328 +0,0 @@ - - - - - - - - Interface IMixedRealityServiceConfiguration - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.IMixedRealitySystem.html b/docs/api/XRTK.Interfaces.IMixedRealitySystem.html deleted file mode 100644 index c5130c5fc..000000000 --- a/docs/api/XRTK.Interfaces.IMixedRealitySystem.html +++ /dev/null @@ -1,176 +0,0 @@ - - - - - - - - Interface IMixedRealitySystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer.html b/docs/api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer.html deleted file mode 100644 index 719b58361..000000000 --- a/docs/api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer.html +++ /dev/null @@ -1,373 +0,0 @@ - - - - - - - - Interface IMixedRealityControllerPoseSynchronizer - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerVisualizer.html b/docs/api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerVisualizer.html deleted file mode 100644 index 4e7c9d71a..000000000 --- a/docs/api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerVisualizer.html +++ /dev/null @@ -1,233 +0,0 @@ - - - - - - - - Interface IMixedRealityControllerVisualizer - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityDictationHandler.html b/docs/api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityDictationHandler.html deleted file mode 100644 index d7d833d51..000000000 --- a/docs/api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityDictationHandler.html +++ /dev/null @@ -1,264 +0,0 @@ - - - - - - - - Interface IMixedRealityDictationHandler - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusChangedHandler.html b/docs/api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusChangedHandler.html deleted file mode 100644 index 219efe9c7..000000000 --- a/docs/api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusChangedHandler.html +++ /dev/null @@ -1,205 +0,0 @@ - - - - - - - - Interface IMixedRealityFocusChangedHandler - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusHandler.html b/docs/api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusHandler.html deleted file mode 100644 index 38493c6ce..000000000 --- a/docs/api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusHandler.html +++ /dev/null @@ -1,202 +0,0 @@ - - - - - - - - Interface IMixedRealityFocusHandler - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler-1.html b/docs/api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler-1.html deleted file mode 100644 index a823da2be..000000000 --- a/docs/api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler-1.html +++ /dev/null @@ -1,239 +0,0 @@ - - - - - - - - Interface IMixedRealityGestureHandler<T> - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.html b/docs/api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.html deleted file mode 100644 index b879b6294..000000000 --- a/docs/api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.html +++ /dev/null @@ -1,268 +0,0 @@ - - - - - - - - Interface IMixedRealityGestureHandler - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler-1.html b/docs/api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler-1.html deleted file mode 100644 index 272af97ac..000000000 --- a/docs/api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler-1.html +++ /dev/null @@ -1,188 +0,0 @@ - - - - - - - - Interface IMixedRealityInputHandler<T> - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.html b/docs/api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.html deleted file mode 100644 index 091546045..000000000 --- a/docs/api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.html +++ /dev/null @@ -1,202 +0,0 @@ - - - - - - - - Interface IMixedRealityInputHandler - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerDragHandler.html b/docs/api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerDragHandler.html deleted file mode 100644 index 0f7463a3b..000000000 --- a/docs/api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerDragHandler.html +++ /dev/null @@ -1,235 +0,0 @@ - - - - - - - - Interface IMixedRealityPointerDragHandler - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerHandler.html b/docs/api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerHandler.html deleted file mode 100644 index 9d615a970..000000000 --- a/docs/api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerHandler.html +++ /dev/null @@ -1,235 +0,0 @@ - - - - - - - - Interface IMixedRealityPointerHandler - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerScrollHandler.html b/docs/api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerScrollHandler.html deleted file mode 100644 index c97c8aabe..000000000 --- a/docs/api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerScrollHandler.html +++ /dev/null @@ -1,169 +0,0 @@ - - - - - - - - Interface IMixedRealityPointerScrollHandler - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourcePoseHandler.html b/docs/api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourcePoseHandler.html deleted file mode 100644 index 41ed18165..000000000 --- a/docs/api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourcePoseHandler.html +++ /dev/null @@ -1,310 +0,0 @@ - - - - - - - - Interface IMixedRealitySourcePoseHandler - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourceStateHandler.html b/docs/api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourceStateHandler.html deleted file mode 100644 index 0748125e4..000000000 --- a/docs/api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourceStateHandler.html +++ /dev/null @@ -1,202 +0,0 @@ - - - - - - - - Interface IMixedRealitySourceStateHandler - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySpeechHandler.html b/docs/api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySpeechHandler.html deleted file mode 100644 index 25622e3c6..000000000 --- a/docs/api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySpeechHandler.html +++ /dev/null @@ -1,168 +0,0 @@ - - - - - - - - Interface IMixedRealitySpeechHandler - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.InputSystem.Handlers.html b/docs/api/XRTK.Interfaces.InputSystem.Handlers.html deleted file mode 100644 index 948e063ec..000000000 --- a/docs/api/XRTK.Interfaces.InputSystem.Handlers.html +++ /dev/null @@ -1,161 +0,0 @@ - - - - - - - - Namespace XRTK.Interfaces.InputSystem.Handlers - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.InputSystem.ICursorModifier.html b/docs/api/XRTK.Interfaces.InputSystem.ICursorModifier.html deleted file mode 100644 index 99eb6871e..000000000 --- a/docs/api/XRTK.Interfaces.InputSystem.ICursorModifier.html +++ /dev/null @@ -1,629 +0,0 @@ - - - - - - - - Interface ICursorModifier - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.InputSystem.IMixedRealityCursor.html b/docs/api/XRTK.Interfaces.InputSystem.IMixedRealityCursor.html deleted file mode 100644 index e31ac787a..000000000 --- a/docs/api/XRTK.Interfaces.InputSystem.IMixedRealityCursor.html +++ /dev/null @@ -1,445 +0,0 @@ - - - - - - - - Interface IMixedRealityCursor - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.html b/docs/api/XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.html deleted file mode 100644 index 7b614458e..000000000 --- a/docs/api/XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.html +++ /dev/null @@ -1,624 +0,0 @@ - - - - - - - - Interface IMixedRealityFocusProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.html b/docs/api/XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.html deleted file mode 100644 index ed04975ba..000000000 --- a/docs/api/XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.html +++ /dev/null @@ -1,541 +0,0 @@ - - - - - - - - Interface IMixedRealityGazeProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.InputSystem.IMixedRealityInputSource.html b/docs/api/XRTK.Interfaces.InputSystem.IMixedRealityInputSource.html deleted file mode 100644 index ca231dafe..000000000 --- a/docs/api/XRTK.Interfaces.InputSystem.IMixedRealityInputSource.html +++ /dev/null @@ -1,183 +0,0 @@ - - - - - - - - Interface IMixedRealityInputSource - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html b/docs/api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html deleted file mode 100644 index 5622133f1..000000000 --- a/docs/api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html +++ /dev/null @@ -1,3100 +0,0 @@ - - - - - - - - Interface IMixedRealityInputSystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.html b/docs/api/XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.html deleted file mode 100644 index d421dffd8..000000000 --- a/docs/api/XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.html +++ /dev/null @@ -1,357 +0,0 @@ - - - - - - - - Interface IMixedRealityMousePointer - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html b/docs/api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html deleted file mode 100644 index 8d0c29188..000000000 --- a/docs/api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html +++ /dev/null @@ -1,1093 +0,0 @@ - - - - - - - - Interface IMixedRealityPointer - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.InputSystem.IMixedRealityTouchPointer.html b/docs/api/XRTK.Interfaces.InputSystem.IMixedRealityTouchPointer.html deleted file mode 100644 index 7e586ab22..000000000 --- a/docs/api/XRTK.Interfaces.InputSystem.IMixedRealityTouchPointer.html +++ /dev/null @@ -1,294 +0,0 @@ - - - - - - - - Interface IMixedRealityTouchPointer - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.InputSystem.IPointerResult.html b/docs/api/XRTK.Interfaces.InputSystem.IPointerResult.html deleted file mode 100644 index a99c3b076..000000000 --- a/docs/api/XRTK.Interfaces.InputSystem.IPointerResult.html +++ /dev/null @@ -1,604 +0,0 @@ - - - - - - - - Interface IPointerResult - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.InputSystem.html b/docs/api/XRTK.Interfaces.InputSystem.html deleted file mode 100644 index 5c55fa0e9..000000000 --- a/docs/api/XRTK.Interfaces.InputSystem.html +++ /dev/null @@ -1,148 +0,0 @@ - - - - - - - - Namespace XRTK.Interfaces.InputSystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.NetworkingSystem.Handlers.IMixedRealityNetworkingHandler-1.html b/docs/api/XRTK.Interfaces.NetworkingSystem.Handlers.IMixedRealityNetworkingHandler-1.html deleted file mode 100644 index becd98a77..000000000 --- a/docs/api/XRTK.Interfaces.NetworkingSystem.Handlers.IMixedRealityNetworkingHandler-1.html +++ /dev/null @@ -1,185 +0,0 @@ - - - - - - - - Interface IMixedRealityNetworkingHandler<T> - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.NetworkingSystem.Handlers.html b/docs/api/XRTK.Interfaces.NetworkingSystem.Handlers.html deleted file mode 100644 index 16b71af2c..000000000 --- a/docs/api/XRTK.Interfaces.NetworkingSystem.Handlers.html +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - Namespace XRTK.Interfaces.NetworkingSystem.Handlers - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider-2.html b/docs/api/XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider-2.html deleted file mode 100644 index e6f355246..000000000 --- a/docs/api/XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider-2.html +++ /dev/null @@ -1,246 +0,0 @@ - - - - - - - - Interface IMixedRealityNetworkDataProvider<TKey, TConnection> - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider.html b/docs/api/XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider.html deleted file mode 100644 index 89442f500..000000000 --- a/docs/api/XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider.html +++ /dev/null @@ -1,241 +0,0 @@ - - - - - - - - Interface IMixedRealityNetworkDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.html b/docs/api/XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.html deleted file mode 100644 index dc1deb7b0..000000000 --- a/docs/api/XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.html +++ /dev/null @@ -1,448 +0,0 @@ - - - - - - - - Interface IMixedRealityNetworkingSystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.NetworkingSystem.html b/docs/api/XRTK.Interfaces.NetworkingSystem.html deleted file mode 100644 index b420bb4aa..000000000 --- a/docs/api/XRTK.Interfaces.NetworkingSystem.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - - - Namespace XRTK.Interfaces.NetworkingSystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.Physics.IBaseRayStabilizer.html b/docs/api/XRTK.Interfaces.Physics.IBaseRayStabilizer.html deleted file mode 100644 index 09ff64566..000000000 --- a/docs/api/XRTK.Interfaces.Physics.IBaseRayStabilizer.html +++ /dev/null @@ -1,301 +0,0 @@ - - - - - - - - Interface IBaseRayStabilizer - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.Physics.html b/docs/api/XRTK.Interfaces.Physics.html deleted file mode 100644 index 8037489ab..000000000 --- a/docs/api/XRTK.Interfaces.Physics.html +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - Namespace XRTK.Interfaces.Physics - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.Providers.Controllers.Hands.IHandDataPostProcessor.html b/docs/api/XRTK.Interfaces.Providers.Controllers.Hands.IHandDataPostProcessor.html deleted file mode 100644 index aeb19c49a..000000000 --- a/docs/api/XRTK.Interfaces.Providers.Controllers.Hands.IHandDataPostProcessor.html +++ /dev/null @@ -1,197 +0,0 @@ - - - - - - - - Interface IHandDataPostProcessor - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.html b/docs/api/XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.html deleted file mode 100644 index 668c4e88d..000000000 --- a/docs/api/XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.html +++ /dev/null @@ -1,632 +0,0 @@ - - - - - - - - Interface IMixedRealityHandController - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandControllerDataProvider.html b/docs/api/XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandControllerDataProvider.html deleted file mode 100644 index 51f5dc05a..000000000 --- a/docs/api/XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandControllerDataProvider.html +++ /dev/null @@ -1,310 +0,0 @@ - - - - - - - - Interface IMixedRealityHandControllerDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.Providers.Controllers.Hands.ISimulatedHandControllerDataProvider.html b/docs/api/XRTK.Interfaces.Providers.Controllers.Hands.ISimulatedHandControllerDataProvider.html deleted file mode 100644 index 1da6b2527..000000000 --- a/docs/api/XRTK.Interfaces.Providers.Controllers.Hands.ISimulatedHandControllerDataProvider.html +++ /dev/null @@ -1,260 +0,0 @@ - - - - - - - - Interface ISimulatedHandControllerDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.Providers.Controllers.Hands.html b/docs/api/XRTK.Interfaces.Providers.Controllers.Hands.html deleted file mode 100644 index 8c41aed91..000000000 --- a/docs/api/XRTK.Interfaces.Providers.Controllers.Hands.html +++ /dev/null @@ -1,130 +0,0 @@ - - - - - - - - Namespace XRTK.Interfaces.Providers.Controllers.Hands - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.Providers.Controllers.IMixedRealityController.html b/docs/api/XRTK.Interfaces.Providers.Controllers.IMixedRealityController.html deleted file mode 100644 index d79c2130a..000000000 --- a/docs/api/XRTK.Interfaces.Providers.Controllers.IMixedRealityController.html +++ /dev/null @@ -1,601 +0,0 @@ - - - - - - - - Interface IMixedRealityController - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider.html b/docs/api/XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider.html deleted file mode 100644 index 2f46f96d3..000000000 --- a/docs/api/XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider.html +++ /dev/null @@ -1,271 +0,0 @@ - - - - - - - - Interface IMixedRealityControllerDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.Providers.Controllers.IMixedRealitySimulatedController.html b/docs/api/XRTK.Interfaces.Providers.Controllers.IMixedRealitySimulatedController.html deleted file mode 100644 index be8836b3a..000000000 --- a/docs/api/XRTK.Interfaces.Providers.Controllers.IMixedRealitySimulatedController.html +++ /dev/null @@ -1,283 +0,0 @@ - - - - - - - - Interface IMixedRealitySimulatedController - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.html b/docs/api/XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.html deleted file mode 100644 index 532aeb7e3..000000000 --- a/docs/api/XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.html +++ /dev/null @@ -1,498 +0,0 @@ - - - - - - - - Interface ISimulatedControllerDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.Providers.Controllers.html b/docs/api/XRTK.Interfaces.Providers.Controllers.html deleted file mode 100644 index b7d1774b7..000000000 --- a/docs/api/XRTK.Interfaces.Providers.Controllers.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - - - Namespace XRTK.Interfaces.Providers.Controllers - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.Providers.IMixedRealityInputDataProvider.html b/docs/api/XRTK.Interfaces.Providers.IMixedRealityInputDataProvider.html deleted file mode 100644 index 10be9b5fa..000000000 --- a/docs/api/XRTK.Interfaces.Providers.IMixedRealityInputDataProvider.html +++ /dev/null @@ -1,179 +0,0 @@ - - - - - - - - Interface IMixedRealityInputDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider.html b/docs/api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider.html deleted file mode 100644 index f92b4751f..000000000 --- a/docs/api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider.html +++ /dev/null @@ -1,354 +0,0 @@ - - - - - - - - Interface IMixedRealitySpatialAwarenessDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.html b/docs/api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.html deleted file mode 100644 index 1ede945d3..000000000 --- a/docs/api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.html +++ /dev/null @@ -1,637 +0,0 @@ - - - - - - - - Interface IMixedRealitySpatialMeshObserver - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.html b/docs/api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.html deleted file mode 100644 index f4b5887df..000000000 --- a/docs/api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.html +++ /dev/null @@ -1,528 +0,0 @@ - - - - - - - - Interface IMixedRealitySpatialSurfaceObserver - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.Providers.SpatialObservers.html b/docs/api/XRTK.Interfaces.Providers.SpatialObservers.html deleted file mode 100644 index b48367c35..000000000 --- a/docs/api/XRTK.Interfaces.Providers.SpatialObservers.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - - - Namespace XRTK.Interfaces.Providers.SpatialObservers - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.Providers.Speech.IMixedRealityDictationDataProvider.html b/docs/api/XRTK.Interfaces.Providers.Speech.IMixedRealityDictationDataProvider.html deleted file mode 100644 index afa09354f..000000000 --- a/docs/api/XRTK.Interfaces.Providers.Speech.IMixedRealityDictationDataProvider.html +++ /dev/null @@ -1,393 +0,0 @@ - - - - - - - - Interface IMixedRealityDictationDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.Providers.Speech.IMixedRealitySpeechDataProvider.html b/docs/api/XRTK.Interfaces.Providers.Speech.IMixedRealitySpeechDataProvider.html deleted file mode 100644 index cb89b4f32..000000000 --- a/docs/api/XRTK.Interfaces.Providers.Speech.IMixedRealitySpeechDataProvider.html +++ /dev/null @@ -1,248 +0,0 @@ - - - - - - - - Interface IMixedRealitySpeechDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.Providers.Speech.html b/docs/api/XRTK.Interfaces.Providers.Speech.html deleted file mode 100644 index 8355a08eb..000000000 --- a/docs/api/XRTK.Interfaces.Providers.Speech.html +++ /dev/null @@ -1,122 +0,0 @@ - - - - - - - - Namespace XRTK.Interfaces.Providers.Speech - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.Providers.html b/docs/api/XRTK.Interfaces.Providers.html deleted file mode 100644 index 12c5a0752..000000000 --- a/docs/api/XRTK.Interfaces.Providers.html +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - Namespace XRTK.Interfaces.Providers - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessMeshHandler-1.html b/docs/api/XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessMeshHandler-1.html deleted file mode 100644 index 1023a7bdb..000000000 --- a/docs/api/XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessMeshHandler-1.html +++ /dev/null @@ -1,253 +0,0 @@ - - - - - - - - Interface IMixedRealitySpatialAwarenessMeshHandler<T> - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessSurfaceFindingHandler-1.html b/docs/api/XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessSurfaceFindingHandler-1.html deleted file mode 100644 index 0dffc8e7d..000000000 --- a/docs/api/XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessSurfaceFindingHandler-1.html +++ /dev/null @@ -1,253 +0,0 @@ - - - - - - - - Interface IMixedRealitySpatialAwarenessSurfaceFindingHandler<T> - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.SpatialAwarenessSystem.Handlers.html b/docs/api/XRTK.Interfaces.SpatialAwarenessSystem.Handlers.html deleted file mode 100644 index 33fa50a1f..000000000 --- a/docs/api/XRTK.Interfaces.SpatialAwarenessSystem.Handlers.html +++ /dev/null @@ -1,122 +0,0 @@ - - - - - - - - Namespace XRTK.Interfaces.SpatialAwarenessSystem.Handlers - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.html b/docs/api/XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.html deleted file mode 100644 index 6fd566b87..000000000 --- a/docs/api/XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.html +++ /dev/null @@ -1,835 +0,0 @@ - - - - - - - - Interface IMixedRealitySpatialAwarenessSystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.SpatialAwarenessSystem.html b/docs/api/XRTK.Interfaces.SpatialAwarenessSystem.html deleted file mode 100644 index caf878ea9..000000000 --- a/docs/api/XRTK.Interfaces.SpatialAwarenessSystem.html +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - Namespace XRTK.Interfaces.SpatialAwarenessSystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.TeleportSystem.Handlers.IMixedRealityTeleportHandler.html b/docs/api/XRTK.Interfaces.TeleportSystem.Handlers.IMixedRealityTeleportHandler.html deleted file mode 100644 index 256121324..000000000 --- a/docs/api/XRTK.Interfaces.TeleportSystem.Handlers.IMixedRealityTeleportHandler.html +++ /dev/null @@ -1,272 +0,0 @@ - - - - - - - - Interface IMixedRealityTeleportHandler - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.TeleportSystem.Handlers.IMixedRealityTeleportProvider.html b/docs/api/XRTK.Interfaces.TeleportSystem.Handlers.IMixedRealityTeleportProvider.html deleted file mode 100644 index 30b40bd84..000000000 --- a/docs/api/XRTK.Interfaces.TeleportSystem.Handlers.IMixedRealityTeleportProvider.html +++ /dev/null @@ -1,150 +0,0 @@ - - - - - - - - Interface IMixedRealityTeleportProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.TeleportSystem.Handlers.html b/docs/api/XRTK.Interfaces.TeleportSystem.Handlers.html deleted file mode 100644 index 2b402b1b6..000000000 --- a/docs/api/XRTK.Interfaces.TeleportSystem.Handlers.html +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - - - Namespace XRTK.Interfaces.TeleportSystem.Handlers - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportDataProvider.html b/docs/api/XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportDataProvider.html deleted file mode 100644 index d563ebbfa..000000000 --- a/docs/api/XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportDataProvider.html +++ /dev/null @@ -1,179 +0,0 @@ - - - - - - - - Interface IMixedRealityTeleportDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot.html b/docs/api/XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot.html deleted file mode 100644 index e066d0d34..000000000 --- a/docs/api/XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot.html +++ /dev/null @@ -1,325 +0,0 @@ - - - - - - - - Interface IMixedRealityTeleportHotSpot - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportSystem.html b/docs/api/XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportSystem.html deleted file mode 100644 index 7ebab514a..000000000 --- a/docs/api/XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportSystem.html +++ /dev/null @@ -1,385 +0,0 @@ - - - - - - - - Interface IMixedRealityTeleportSystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportValidationDataProvider.html b/docs/api/XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportValidationDataProvider.html deleted file mode 100644 index bbed209e5..000000000 --- a/docs/api/XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportValidationDataProvider.html +++ /dev/null @@ -1,238 +0,0 @@ - - - - - - - - Interface IMixedRealityTeleportValidationDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.TeleportSystem.html b/docs/api/XRTK.Interfaces.TeleportSystem.html deleted file mode 100644 index 4bb84a863..000000000 --- a/docs/api/XRTK.Interfaces.TeleportSystem.html +++ /dev/null @@ -1,128 +0,0 @@ - - - - - - - - Namespace XRTK.Interfaces.TeleportSystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Interfaces.html b/docs/api/XRTK.Interfaces.html deleted file mode 100644 index bb8bf49f6..000000000 --- a/docs/api/XRTK.Interfaces.html +++ /dev/null @@ -1,140 +0,0 @@ - - - - - - - - Namespace XRTK.Interfaces - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Lenovo.A6.Profiles.A6ControllerDataProviderProfile.html b/docs/api/XRTK.Lenovo.A6.Profiles.A6ControllerDataProviderProfile.html deleted file mode 100644 index d2b28abea..000000000 --- a/docs/api/XRTK.Lenovo.A6.Profiles.A6ControllerDataProviderProfile.html +++ /dev/null @@ -1,163 +0,0 @@ - - - - - - - - Class A6ControllerDataProviderProfile - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Lenovo.A6.Profiles.html b/docs/api/XRTK.Lenovo.A6.Profiles.html deleted file mode 100644 index db7f7b0e3..000000000 --- a/docs/api/XRTK.Lenovo.A6.Profiles.html +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - Namespace XRTK.Lenovo.A6.Profiles - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Lenovo.A6.Providers.CameraSystem.A6CameraDataProvider.html b/docs/api/XRTK.Lenovo.A6.Providers.CameraSystem.A6CameraDataProvider.html deleted file mode 100644 index 96ef76ff0..000000000 --- a/docs/api/XRTK.Lenovo.A6.Providers.CameraSystem.A6CameraDataProvider.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - - - Class A6CameraDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Lenovo.A6.Providers.CameraSystem.html b/docs/api/XRTK.Lenovo.A6.Providers.CameraSystem.html deleted file mode 100644 index b59d13feb..000000000 --- a/docs/api/XRTK.Lenovo.A6.Providers.CameraSystem.html +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - Namespace XRTK.Lenovo.A6.Providers.CameraSystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Lenovo.A6.Providers.Controllers.A6Controller.html b/docs/api/XRTK.Lenovo.A6.Providers.Controllers.A6Controller.html deleted file mode 100644 index 0b1b69032..000000000 --- a/docs/api/XRTK.Lenovo.A6.Providers.Controllers.A6Controller.html +++ /dev/null @@ -1,132 +0,0 @@ - - - - - - - - Class A6Controller - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Lenovo.A6.Providers.Controllers.A6ControllerDataProvider.html b/docs/api/XRTK.Lenovo.A6.Providers.Controllers.A6ControllerDataProvider.html deleted file mode 100644 index af2001678..000000000 --- a/docs/api/XRTK.Lenovo.A6.Providers.Controllers.A6ControllerDataProvider.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - - - Class A6ControllerDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Lenovo.A6.Providers.Controllers.html b/docs/api/XRTK.Lenovo.A6.Providers.Controllers.html deleted file mode 100644 index 7171b9789..000000000 --- a/docs/api/XRTK.Lenovo.A6.Providers.Controllers.html +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - - Namespace XRTK.Lenovo.A6.Providers.Controllers - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Lenovo.Editor.LenovoPathFinder.html b/docs/api/XRTK.Lenovo.Editor.LenovoPathFinder.html deleted file mode 100644 index 79be14395..000000000 --- a/docs/api/XRTK.Lenovo.Editor.LenovoPathFinder.html +++ /dev/null @@ -1,217 +0,0 @@ - - - - - - - - Class LenovoPathFinder - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Lenovo.Editor.html b/docs/api/XRTK.Lenovo.Editor.html deleted file mode 100644 index d4a299d64..000000000 --- a/docs/api/XRTK.Lenovo.Editor.html +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - Namespace XRTK.Lenovo.Editor - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Lumin.Editor.LabDriver.LabDriverQuery.Result.html b/docs/api/XRTK.Lumin.Editor.LabDriver.LabDriverQuery.Result.html deleted file mode 100644 index ff7343c63..000000000 --- a/docs/api/XRTK.Lumin.Editor.LabDriver.LabDriverQuery.Result.html +++ /dev/null @@ -1,426 +0,0 @@ - - - - - - - - Class LabDriver.LabDriverQuery.Result - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Lumin.Editor.LabDriver.LabDriverQuery.html b/docs/api/XRTK.Lumin.Editor.LabDriver.LabDriverQuery.html deleted file mode 100644 index f99ef8aea..000000000 --- a/docs/api/XRTK.Lumin.Editor.LabDriver.LabDriverQuery.html +++ /dev/null @@ -1,281 +0,0 @@ - - - - - - - - Class LabDriver.LabDriverQuery - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Lumin.Editor.LabDriver.html b/docs/api/XRTK.Lumin.Editor.LabDriver.html deleted file mode 100644 index de53183a5..000000000 --- a/docs/api/XRTK.Lumin.Editor.LabDriver.html +++ /dev/null @@ -1,207 +0,0 @@ - - - - - - - - Class LabDriver - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Lumin.Editor.LuminHandControllerDataProviderProfileInspector.html b/docs/api/XRTK.Lumin.Editor.LuminHandControllerDataProviderProfileInspector.html deleted file mode 100644 index 6041c0568..000000000 --- a/docs/api/XRTK.Lumin.Editor.LuminHandControllerDataProviderProfileInspector.html +++ /dev/null @@ -1,238 +0,0 @@ - - - - - - - - Class LuminHandControllerDataProviderProfileInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Lumin.Editor.LuminPathFinder.html b/docs/api/XRTK.Lumin.Editor.LuminPathFinder.html deleted file mode 100644 index 4e0357787..000000000 --- a/docs/api/XRTK.Lumin.Editor.LuminPathFinder.html +++ /dev/null @@ -1,239 +0,0 @@ - - - - - - - - Class LuminPathFinder - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Lumin.Editor.LuminRemote.html b/docs/api/XRTK.Lumin.Editor.LuminRemote.html deleted file mode 100644 index 3af1c124b..000000000 --- a/docs/api/XRTK.Lumin.Editor.LuminRemote.html +++ /dev/null @@ -1,156 +0,0 @@ - - - - - - - - Class LuminRemote - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Lumin.Editor.html b/docs/api/XRTK.Lumin.Editor.html deleted file mode 100644 index 5798ff6ff..000000000 --- a/docs/api/XRTK.Lumin.Editor.html +++ /dev/null @@ -1,129 +0,0 @@ - - - - - - - - Namespace XRTK.Lumin.Editor - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Lumin.MLKeyPointFilterLevel.html b/docs/api/XRTK.Lumin.MLKeyPointFilterLevel.html deleted file mode 100644 index adf286598..000000000 --- a/docs/api/XRTK.Lumin.MLKeyPointFilterLevel.html +++ /dev/null @@ -1,178 +0,0 @@ - - - - - - - - Enum MLKeyPointFilterLevel - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Lumin.MLPoseFilterLevel.html b/docs/api/XRTK.Lumin.MLPoseFilterLevel.html deleted file mode 100644 index 136a4c732..000000000 --- a/docs/api/XRTK.Lumin.MLPoseFilterLevel.html +++ /dev/null @@ -1,178 +0,0 @@ - - - - - - - - Enum MLPoseFilterLevel - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Lumin.Profiles.LuminControllerDataProviderProfile.html b/docs/api/XRTK.Lumin.Profiles.LuminControllerDataProviderProfile.html deleted file mode 100644 index 16d24b001..000000000 --- a/docs/api/XRTK.Lumin.Profiles.LuminControllerDataProviderProfile.html +++ /dev/null @@ -1,245 +0,0 @@ - - - - - - - - Class LuminControllerDataProviderProfile - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Lumin.Profiles.LuminHandControllerDataProviderProfile.html b/docs/api/XRTK.Lumin.Profiles.LuminHandControllerDataProviderProfile.html deleted file mode 100644 index 2947671fa..000000000 --- a/docs/api/XRTK.Lumin.Profiles.LuminHandControllerDataProviderProfile.html +++ /dev/null @@ -1,297 +0,0 @@ - - - - - - - - Class LuminHandControllerDataProviderProfile - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Lumin.Profiles.LuminSpatialMeshObserverProfile.html b/docs/api/XRTK.Lumin.Profiles.LuminSpatialMeshObserverProfile.html deleted file mode 100644 index 51cacd1d9..000000000 --- a/docs/api/XRTK.Lumin.Profiles.LuminSpatialMeshObserverProfile.html +++ /dev/null @@ -1,240 +0,0 @@ - - - - - - - - Class LuminSpatialMeshObserverProfile - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Lumin.Profiles.html b/docs/api/XRTK.Lumin.Profiles.html deleted file mode 100644 index fb3141303..000000000 --- a/docs/api/XRTK.Lumin.Profiles.html +++ /dev/null @@ -1,122 +0,0 @@ - - - - - - - - Namespace XRTK.Lumin.Profiles - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.html b/docs/api/XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.html deleted file mode 100644 index 87722c2b4..000000000 --- a/docs/api/XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.html +++ /dev/null @@ -1,441 +0,0 @@ - - - - - - - - Class LuminCameraDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Lumin.Providers.CameraSystem.html b/docs/api/XRTK.Lumin.Providers.CameraSystem.html deleted file mode 100644 index 293775f4b..000000000 --- a/docs/api/XRTK.Lumin.Providers.CameraSystem.html +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - Namespace XRTK.Lumin.Providers.CameraSystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Lumin.Providers.Controllers.LuminController.html b/docs/api/XRTK.Lumin.Providers.Controllers.LuminController.html deleted file mode 100644 index 78f602014..000000000 --- a/docs/api/XRTK.Lumin.Providers.Controllers.LuminController.html +++ /dev/null @@ -1,395 +0,0 @@ - - - - - - - - Class LuminController - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Lumin.Providers.Controllers.LuminControllerDataProvider.html b/docs/api/XRTK.Lumin.Providers.Controllers.LuminControllerDataProvider.html deleted file mode 100644 index fa8c80914..000000000 --- a/docs/api/XRTK.Lumin.Providers.Controllers.LuminControllerDataProvider.html +++ /dev/null @@ -1,379 +0,0 @@ - - - - - - - - Class LuminControllerDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Lumin.Providers.Controllers.LuminHandControllerDataProvider.html b/docs/api/XRTK.Lumin.Providers.Controllers.LuminHandControllerDataProvider.html deleted file mode 100644 index e41d981aa..000000000 --- a/docs/api/XRTK.Lumin.Providers.Controllers.LuminHandControllerDataProvider.html +++ /dev/null @@ -1,369 +0,0 @@ - - - - - - - - Class LuminHandControllerDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Lumin.Providers.Controllers.html b/docs/api/XRTK.Lumin.Providers.Controllers.html deleted file mode 100644 index 42e56402f..000000000 --- a/docs/api/XRTK.Lumin.Providers.Controllers.html +++ /dev/null @@ -1,122 +0,0 @@ - - - - - - - - Namespace XRTK.Lumin.Providers.Controllers - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver.html b/docs/api/XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver.html deleted file mode 100644 index 08f111092..000000000 --- a/docs/api/XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver.html +++ /dev/null @@ -1,451 +0,0 @@ - - - - - - - - Class LuminSpatialMeshObserver - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.html b/docs/api/XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.html deleted file mode 100644 index 30b8f0d2e..000000000 --- a/docs/api/XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.html +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - Namespace XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Lumin.html b/docs/api/XRTK.Lumin.html deleted file mode 100644 index 64a03d390..000000000 --- a/docs/api/XRTK.Lumin.html +++ /dev/null @@ -1,122 +0,0 @@ - - - - - - - - Namespace XRTK.Lumin - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Nreal.Editor.NrealPathFinder.html b/docs/api/XRTK.Nreal.Editor.NrealPathFinder.html deleted file mode 100644 index d7edf966f..000000000 --- a/docs/api/XRTK.Nreal.Editor.NrealPathFinder.html +++ /dev/null @@ -1,217 +0,0 @@ - - - - - - - - Class NrealPathFinder - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Nreal.Editor.html b/docs/api/XRTK.Nreal.Editor.html deleted file mode 100644 index 2eff5004a..000000000 --- a/docs/api/XRTK.Nreal.Editor.html +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - Namespace XRTK.Nreal.Editor - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Nreal.Profiles.NrealControllerDataProviderProfile.html b/docs/api/XRTK.Nreal.Profiles.NrealControllerDataProviderProfile.html deleted file mode 100644 index cfe45b9c9..000000000 --- a/docs/api/XRTK.Nreal.Profiles.NrealControllerDataProviderProfile.html +++ /dev/null @@ -1,163 +0,0 @@ - - - - - - - - Class NrealControllerDataProviderProfile - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Nreal.Profiles.html b/docs/api/XRTK.Nreal.Profiles.html deleted file mode 100644 index 97b328c46..000000000 --- a/docs/api/XRTK.Nreal.Profiles.html +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - Namespace XRTK.Nreal.Profiles - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Nreal.Providers.CameraSystem.NrealCameraDataProvider.html b/docs/api/XRTK.Nreal.Providers.CameraSystem.NrealCameraDataProvider.html deleted file mode 100644 index 955a210e7..000000000 --- a/docs/api/XRTK.Nreal.Providers.CameraSystem.NrealCameraDataProvider.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - - - Class NrealCameraDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Nreal.Providers.CameraSystem.html b/docs/api/XRTK.Nreal.Providers.CameraSystem.html deleted file mode 100644 index de09b583d..000000000 --- a/docs/api/XRTK.Nreal.Providers.CameraSystem.html +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - Namespace XRTK.Nreal.Providers.CameraSystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Nreal.Providers.Controllers.NrealController.html b/docs/api/XRTK.Nreal.Providers.Controllers.NrealController.html deleted file mode 100644 index ac46e374a..000000000 --- a/docs/api/XRTK.Nreal.Providers.Controllers.NrealController.html +++ /dev/null @@ -1,132 +0,0 @@ - - - - - - - - Class NrealController - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Nreal.Providers.Controllers.NrealControllerDataProvider.html b/docs/api/XRTK.Nreal.Providers.Controllers.NrealControllerDataProvider.html deleted file mode 100644 index cd167abf3..000000000 --- a/docs/api/XRTK.Nreal.Providers.Controllers.NrealControllerDataProvider.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - - - Class NrealControllerDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Nreal.Providers.Controllers.html b/docs/api/XRTK.Nreal.Providers.Controllers.html deleted file mode 100644 index 0ec4ac785..000000000 --- a/docs/api/XRTK.Nreal.Providers.Controllers.html +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - - Namespace XRTK.Nreal.Providers.Controllers - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Editor.Build.OculusManifestPreprocessor.html b/docs/api/XRTK.Oculus.Editor.Build.OculusManifestPreprocessor.html deleted file mode 100644 index 3deadff06..000000000 --- a/docs/api/XRTK.Oculus.Editor.Build.OculusManifestPreprocessor.html +++ /dev/null @@ -1,200 +0,0 @@ - - - - - - - - Class OculusManifestPreprocessor - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Editor.Build.html b/docs/api/XRTK.Oculus.Editor.Build.html deleted file mode 100644 index 4022c9b94..000000000 --- a/docs/api/XRTK.Oculus.Editor.Build.html +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - Namespace XRTK.Oculus.Editor.Build - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Editor.OculusHandControllerDataProviderProfileInspector.html b/docs/api/XRTK.Oculus.Editor.OculusHandControllerDataProviderProfileInspector.html deleted file mode 100644 index 4f4d13d86..000000000 --- a/docs/api/XRTK.Oculus.Editor.OculusHandControllerDataProviderProfileInspector.html +++ /dev/null @@ -1,239 +0,0 @@ - - - - - - - - Class OculusHandControllerDataProviderProfileInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Editor.OculusPathFinder.html b/docs/api/XRTK.Oculus.Editor.OculusPathFinder.html deleted file mode 100644 index b18ada56a..000000000 --- a/docs/api/XRTK.Oculus.Editor.OculusPathFinder.html +++ /dev/null @@ -1,239 +0,0 @@ - - - - - - - - Class OculusPathFinder - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Editor.html b/docs/api/XRTK.Oculus.Editor.html deleted file mode 100644 index 98af2d80f..000000000 --- a/docs/api/XRTK.Oculus.Editor.html +++ /dev/null @@ -1,122 +0,0 @@ - - - - - - - - Namespace XRTK.Oculus.Editor - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Extensions.ControllerExtensions.html b/docs/api/XRTK.Oculus.Extensions.ControllerExtensions.html deleted file mode 100644 index 0642563ce..000000000 --- a/docs/api/XRTK.Oculus.Extensions.ControllerExtensions.html +++ /dev/null @@ -1,207 +0,0 @@ - - - - - - - - Class ControllerExtensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Extensions.HandednessExtensions.html b/docs/api/XRTK.Oculus.Extensions.HandednessExtensions.html deleted file mode 100644 index 2a748894f..000000000 --- a/docs/api/XRTK.Oculus.Extensions.HandednessExtensions.html +++ /dev/null @@ -1,407 +0,0 @@ - - - - - - - - Class HandednessExtensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Extensions.MixedRealityPoseExtensions.html b/docs/api/XRTK.Oculus.Extensions.MixedRealityPoseExtensions.html deleted file mode 100644 index 8a21ca0e3..000000000 --- a/docs/api/XRTK.Oculus.Extensions.MixedRealityPoseExtensions.html +++ /dev/null @@ -1,212 +0,0 @@ - - - - - - - - Class MixedRealityPoseExtensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Extensions.QuaternionExtensions.html b/docs/api/XRTK.Oculus.Extensions.QuaternionExtensions.html deleted file mode 100644 index 83ff32c0b..000000000 --- a/docs/api/XRTK.Oculus.Extensions.QuaternionExtensions.html +++ /dev/null @@ -1,207 +0,0 @@ - - - - - - - - Class QuaternionExtensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Extensions.Vector3Extensions.html b/docs/api/XRTK.Oculus.Extensions.Vector3Extensions.html deleted file mode 100644 index e1cf55737..000000000 --- a/docs/api/XRTK.Oculus.Extensions.Vector3Extensions.html +++ /dev/null @@ -1,305 +0,0 @@ - - - - - - - - Class Vector3Extensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Extensions.html b/docs/api/XRTK.Oculus.Extensions.html deleted file mode 100644 index 345749cf2..000000000 --- a/docs/api/XRTK.Oculus.Extensions.html +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - Namespace XRTK.Oculus.Extensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.OculusPlatform.html b/docs/api/XRTK.Oculus.OculusPlatform.html deleted file mode 100644 index 6f29f5113..000000000 --- a/docs/api/XRTK.Oculus.OculusPlatform.html +++ /dev/null @@ -1,243 +0,0 @@ - - - - - - - - Class OculusPlatform - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.BatteryStatus.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.BatteryStatus.html deleted file mode 100644 index 96690a1cf..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.BatteryStatus.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - - - Enum OculusApi.BatteryStatus - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.Bone.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.Bone.html deleted file mode 100644 index d869b35f4..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.Bone.html +++ /dev/null @@ -1,244 +0,0 @@ - - - - - - - - Struct OculusApi.Bone - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.BoneCapsule.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.BoneCapsule.html deleted file mode 100644 index cbba86a33..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.BoneCapsule.html +++ /dev/null @@ -1,244 +0,0 @@ - - - - - - - - Struct OculusApi.BoneCapsule - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.BoneId.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.BoneId.html deleted file mode 100644 index df023ca6e..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.BoneId.html +++ /dev/null @@ -1,274 +0,0 @@ - - - - - - - - Enum OculusApi.BoneId - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.Bool.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.Bool.html deleted file mode 100644 index 1f0c8be91..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.Bool.html +++ /dev/null @@ -1,166 +0,0 @@ - - - - - - - - Enum OculusApi.Bool - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.BoundaryGeometry.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.BoundaryGeometry.html deleted file mode 100644 index 3491839bf..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.BoundaryGeometry.html +++ /dev/null @@ -1,247 +0,0 @@ - - - - - - - - Struct OculusApi.BoundaryGeometry - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.BoundaryTestResult.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.BoundaryTestResult.html deleted file mode 100644 index 12da69bef..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.BoundaryTestResult.html +++ /dev/null @@ -1,276 +0,0 @@ - - - - - - - - Struct OculusApi.BoundaryTestResult - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.BoundaryType.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.BoundaryType.html deleted file mode 100644 index 6e36f0920..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.BoundaryType.html +++ /dev/null @@ -1,169 +0,0 @@ - - - - - - - - Enum OculusApi.BoundaryType - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.CameraAnchorType.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.CameraAnchorType.html deleted file mode 100644 index 6f417d9e9..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.CameraAnchorType.html +++ /dev/null @@ -1,173 +0,0 @@ - - - - - - - - Enum OculusApi.CameraAnchorType - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.CameraExtrinsics.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.CameraExtrinsics.html deleted file mode 100644 index 587d25202..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.CameraExtrinsics.html +++ /dev/null @@ -1,302 +0,0 @@ - - - - - - - - Struct OculusApi.CameraExtrinsics - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.CameraIntrinsics.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.CameraIntrinsics.html deleted file mode 100644 index 3f4837696..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.CameraIntrinsics.html +++ /dev/null @@ -1,331 +0,0 @@ - - - - - - - - Struct OculusApi.CameraIntrinsics - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.CameraStatus.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.CameraStatus.html deleted file mode 100644 index 286a3991d..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.CameraStatus.html +++ /dev/null @@ -1,186 +0,0 @@ - - - - - - - - Enum OculusApi.CameraStatus - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.ColorSpace.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.ColorSpace.html deleted file mode 100644 index bf2f62f09..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.ColorSpace.html +++ /dev/null @@ -1,193 +0,0 @@ - - - - - - - - Enum OculusApi.ColorSpace - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.Colorf.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.Colorf.html deleted file mode 100644 index 531204ab8..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.Colorf.html +++ /dev/null @@ -1,273 +0,0 @@ - - - - - - - - Struct OculusApi.Colorf - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.Controller.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.Controller.html deleted file mode 100644 index 2dce3d774..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.Controller.html +++ /dev/null @@ -1,209 +0,0 @@ - - - - - - - - Enum OculusApi.Controller - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.ControllerState4.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.ControllerState4.html deleted file mode 100644 index 5372699a7..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.ControllerState4.html +++ /dev/null @@ -1,1433 +0,0 @@ - - - - - - - - Struct OculusApi.ControllerState4 - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.EventDataBuffer.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.EventDataBuffer.html deleted file mode 100644 index a9951a1a3..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.EventDataBuffer.html +++ /dev/null @@ -1,214 +0,0 @@ - - - - - - - - Struct OculusApi.EventDataBuffer - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.EventType.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.EventType.html deleted file mode 100644 index 3a54ffd62..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.EventType.html +++ /dev/null @@ -1,165 +0,0 @@ - - - - - - - - Enum OculusApi.EventType - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.FixedFoveatedRenderingLevel.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.FixedFoveatedRenderingLevel.html deleted file mode 100644 index 6da049f4d..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.FixedFoveatedRenderingLevel.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - - - Enum OculusApi.FixedFoveatedRenderingLevel - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.Fovf.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.Fovf.html deleted file mode 100644 index 762b2c728..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.Fovf.html +++ /dev/null @@ -1,273 +0,0 @@ - - - - - - - - Struct OculusApi.Fovf - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.Frustumf.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.Frustumf.html deleted file mode 100644 index beea7f3ea..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.Frustumf.html +++ /dev/null @@ -1,273 +0,0 @@ - - - - - - - - Struct OculusApi.Frustumf - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.Frustumf2.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.Frustumf2.html deleted file mode 100644 index 2447a05ca..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.Frustumf2.html +++ /dev/null @@ -1,244 +0,0 @@ - - - - - - - - Struct OculusApi.Frustumf2 - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.Hand.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.Hand.html deleted file mode 100644 index 67d56bd5f..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.Hand.html +++ /dev/null @@ -1,170 +0,0 @@ - - - - - - - - Enum OculusApi.Hand - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.HandFinger.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.HandFinger.html deleted file mode 100644 index 6b96ac26e..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.HandFinger.html +++ /dev/null @@ -1,182 +0,0 @@ - - - - - - - - Enum OculusApi.HandFinger - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.HandFingerPinch.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.HandFingerPinch.html deleted file mode 100644 index 365aa5ccd..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.HandFingerPinch.html +++ /dev/null @@ -1,179 +0,0 @@ - - - - - - - - Enum OculusApi.HandFingerPinch - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.HandState.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.HandState.html deleted file mode 100644 index 2740347e0..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.HandState.html +++ /dev/null @@ -1,476 +0,0 @@ - - - - - - - - Struct OculusApi.HandState - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.HandStatus.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.HandStatus.html deleted file mode 100644 index 80437a7ce..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.HandStatus.html +++ /dev/null @@ -1,179 +0,0 @@ - - - - - - - - Enum OculusApi.HandStatus - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.Handedness.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.Handedness.html deleted file mode 100644 index c7e746e10..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.Handedness.html +++ /dev/null @@ -1,170 +0,0 @@ - - - - - - - - Enum OculusApi.Handedness - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.HapticsBuffer.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.HapticsBuffer.html deleted file mode 100644 index 034f95ae7..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.HapticsBuffer.html +++ /dev/null @@ -1,218 +0,0 @@ - - - - - - - - Struct OculusApi.HapticsBuffer - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.HapticsDesc.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.HapticsDesc.html deleted file mode 100644 index 6738536f8..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.HapticsDesc.html +++ /dev/null @@ -1,334 +0,0 @@ - - - - - - - - Struct OculusApi.HapticsDesc - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.HapticsState.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.HapticsState.html deleted file mode 100644 index 093512440..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.HapticsState.html +++ /dev/null @@ -1,218 +0,0 @@ - - - - - - - - Struct OculusApi.HapticsState - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.Mesh.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.Mesh.html deleted file mode 100644 index 8d9380cb6..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.Mesh.html +++ /dev/null @@ -1,418 +0,0 @@ - - - - - - - - Struct OculusApi.Mesh - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.MeshConstants.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.MeshConstants.html deleted file mode 100644 index 768803dd1..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.MeshConstants.html +++ /dev/null @@ -1,166 +0,0 @@ - - - - - - - - Enum OculusApi.MeshConstants - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.MeshType.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.MeshType.html deleted file mode 100644 index 4b70186b4..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.MeshType.html +++ /dev/null @@ -1,170 +0,0 @@ - - - - - - - - Enum OculusApi.MeshType - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.Node.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.Node.html deleted file mode 100644 index f5a685354..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.Node.html +++ /dev/null @@ -1,210 +0,0 @@ - - - - - - - - Enum OculusApi.Node - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer.html deleted file mode 100644 index fb277ed9f..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer.html +++ /dev/null @@ -1,359 +0,0 @@ - - - - - - - - Class OculusApi.OVRNativeBuffer - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.PoseStatef.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.PoseStatef.html deleted file mode 100644 index b8144758e..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.PoseStatef.html +++ /dev/null @@ -1,363 +0,0 @@ - - - - - - - - Struct OculusApi.PoseStatef - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.Posef.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.Posef.html deleted file mode 100644 index 16d12f12f..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.Posef.html +++ /dev/null @@ -1,420 +0,0 @@ - - - - - - - - Struct OculusApi.Posef - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.Quatf.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.Quatf.html deleted file mode 100644 index 71bbf230d..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.Quatf.html +++ /dev/null @@ -1,461 +0,0 @@ - - - - - - - - Struct OculusApi.Quatf - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.RawAxis1D.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.RawAxis1D.html deleted file mode 100644 index 43cc1d15d..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.RawAxis1D.html +++ /dev/null @@ -1,193 +0,0 @@ - - - - - - - - Enum OculusApi.RawAxis1D - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.RawAxis2D.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.RawAxis2D.html deleted file mode 100644 index a598043be..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.RawAxis2D.html +++ /dev/null @@ -1,193 +0,0 @@ - - - - - - - - Enum OculusApi.RawAxis2D - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.RawButton.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.RawButton.html deleted file mode 100644 index 4ae86e248..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.RawButton.html +++ /dev/null @@ -1,313 +0,0 @@ - - - - - - - - Enum OculusApi.RawButton - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.RawNearTouch.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.RawNearTouch.html deleted file mode 100644 index 3172ac316..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.RawNearTouch.html +++ /dev/null @@ -1,193 +0,0 @@ - - - - - - - - Enum OculusApi.RawNearTouch - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.RawTouch.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.RawTouch.html deleted file mode 100644 index 0e43857ed..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.RawTouch.html +++ /dev/null @@ -1,233 +0,0 @@ - - - - - - - - Enum OculusApi.RawTouch - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.RecenterFlags.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.RecenterFlags.html deleted file mode 100644 index a237bc64a..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.RecenterFlags.html +++ /dev/null @@ -1,173 +0,0 @@ - - - - - - - - Enum OculusApi.RecenterFlags - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.Rectf.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.Rectf.html deleted file mode 100644 index 1e22c72ea..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.Rectf.html +++ /dev/null @@ -1,215 +0,0 @@ - - - - - - - - Struct OculusApi.Rectf - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.Recti.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.Recti.html deleted file mode 100644 index e304fcf3d..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.Recti.html +++ /dev/null @@ -1,215 +0,0 @@ - - - - - - - - Struct OculusApi.Recti - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.Result.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.Result.html deleted file mode 100644 index b7cf7b8d1..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.Result.html +++ /dev/null @@ -1,202 +0,0 @@ - - - - - - - - Enum OculusApi.Result - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.Sizef.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.Sizef.html deleted file mode 100644 index 1cb53f208..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.Sizef.html +++ /dev/null @@ -1,244 +0,0 @@ - - - - - - - - Struct OculusApi.Sizef - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.Sizei.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.Sizei.html deleted file mode 100644 index e9ce4b328..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.Sizei.html +++ /dev/null @@ -1,244 +0,0 @@ - - - - - - - - Struct OculusApi.Sizei - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.Skeleton.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.Skeleton.html deleted file mode 100644 index 953b1a32c..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.Skeleton.html +++ /dev/null @@ -1,302 +0,0 @@ - - - - - - - - Struct OculusApi.Skeleton - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.Skeleton2.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.Skeleton2.html deleted file mode 100644 index 466a09bc7..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.Skeleton2.html +++ /dev/null @@ -1,301 +0,0 @@ - - - - - - - - Struct OculusApi.Skeleton2 - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.SkeletonConstants.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.SkeletonConstants.html deleted file mode 100644 index ad127fd85..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.SkeletonConstants.html +++ /dev/null @@ -1,166 +0,0 @@ - - - - - - - - Enum OculusApi.SkeletonConstants - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.SkeletonType.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.SkeletonType.html deleted file mode 100644 index 4466001c6..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.SkeletonType.html +++ /dev/null @@ -1,170 +0,0 @@ - - - - - - - - Enum OculusApi.SkeletonType - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.Step.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.Step.html deleted file mode 100644 index 6c3b0a7b2..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.Step.html +++ /dev/null @@ -1,166 +0,0 @@ - - - - - - - - Enum OculusApi.Step - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.SystemHeadset.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.SystemHeadset.html deleted file mode 100644 index 8022f7dc1..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.SystemHeadset.html +++ /dev/null @@ -1,238 +0,0 @@ - - - - - - - - Enum OculusApi.SystemHeadset - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.TrackingConfidence.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.TrackingConfidence.html deleted file mode 100644 index b7686be7f..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.TrackingConfidence.html +++ /dev/null @@ -1,166 +0,0 @@ - - - - - - - - Enum OculusApi.TrackingConfidence - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.TrackingOrigin.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.TrackingOrigin.html deleted file mode 100644 index 417bfd982..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.TrackingOrigin.html +++ /dev/null @@ -1,177 +0,0 @@ - - - - - - - - Enum OculusApi.TrackingOrigin - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.Vector2f.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.Vector2f.html deleted file mode 100644 index 4015c016d..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.Vector2f.html +++ /dev/null @@ -1,311 +0,0 @@ - - - - - - - - Struct OculusApi.Vector2f - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.Vector2i.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.Vector2i.html deleted file mode 100644 index 92d4ee47b..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.Vector2i.html +++ /dev/null @@ -1,215 +0,0 @@ - - - - - - - - Struct OculusApi.Vector2i - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.Vector3f.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.Vector3f.html deleted file mode 100644 index 1602a01b2..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.Vector3f.html +++ /dev/null @@ -1,432 +0,0 @@ - - - - - - - - Struct OculusApi.Vector3f - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.Vector4f.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.Vector4f.html deleted file mode 100644 index a81aa842b..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.Vector4f.html +++ /dev/null @@ -1,429 +0,0 @@ - - - - - - - - Struct OculusApi.Vector4f - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.Vector4s.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.Vector4s.html deleted file mode 100644 index f4aa05bda..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.Vector4s.html +++ /dev/null @@ -1,333 +0,0 @@ - - - - - - - - Struct OculusApi.Vector4s - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.XrApi.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.XrApi.html deleted file mode 100644 index ed9d37016..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.XrApi.html +++ /dev/null @@ -1,177 +0,0 @@ - - - - - - - - Enum OculusApi.XrApi - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.OculusApi.html b/docs/api/XRTK.Oculus.Plugins.OculusApi.html deleted file mode 100644 index 724db1efc..000000000 --- a/docs/api/XRTK.Oculus.Plugins.OculusApi.html +++ /dev/null @@ -1,3314 +0,0 @@ - - - - - - - - Class OculusApi - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Plugins.html b/docs/api/XRTK.Oculus.Plugins.html deleted file mode 100644 index c424624f0..000000000 --- a/docs/api/XRTK.Oculus.Plugins.html +++ /dev/null @@ -1,307 +0,0 @@ - - - - - - - - Namespace XRTK.Oculus.Plugins - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Profiles.OculusControllerDataProviderProfile.html b/docs/api/XRTK.Oculus.Profiles.OculusControllerDataProviderProfile.html deleted file mode 100644 index 29cb15454..000000000 --- a/docs/api/XRTK.Oculus.Profiles.OculusControllerDataProviderProfile.html +++ /dev/null @@ -1,245 +0,0 @@ - - - - - - - - Class OculusControllerDataProviderProfile - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Profiles.OculusHandControllerDataProviderProfile.html b/docs/api/XRTK.Oculus.Profiles.OculusHandControllerDataProviderProfile.html deleted file mode 100644 index 6b12509b3..000000000 --- a/docs/api/XRTK.Oculus.Profiles.OculusHandControllerDataProviderProfile.html +++ /dev/null @@ -1,267 +0,0 @@ - - - - - - - - Class OculusHandControllerDataProviderProfile - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Profiles.html b/docs/api/XRTK.Oculus.Profiles.html deleted file mode 100644 index 05fe3effa..000000000 --- a/docs/api/XRTK.Oculus.Profiles.html +++ /dev/null @@ -1,121 +0,0 @@ - - - - - - - - Namespace XRTK.Oculus.Profiles - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Providers.BoundarySystem.OculusBoundaryDataProvider.html b/docs/api/XRTK.Oculus.Providers.BoundarySystem.OculusBoundaryDataProvider.html deleted file mode 100644 index 462ce065e..000000000 --- a/docs/api/XRTK.Oculus.Providers.BoundarySystem.OculusBoundaryDataProvider.html +++ /dev/null @@ -1,412 +0,0 @@ - - - - - - - - Class OculusBoundaryDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Providers.BoundarySystem.html b/docs/api/XRTK.Oculus.Providers.BoundarySystem.html deleted file mode 100644 index 5ffad232b..000000000 --- a/docs/api/XRTK.Oculus.Providers.BoundarySystem.html +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - Namespace XRTK.Oculus.Providers.BoundarySystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Providers.CameraSystem.OculusCameraDataProvider.html b/docs/api/XRTK.Oculus.Providers.CameraSystem.OculusCameraDataProvider.html deleted file mode 100644 index 0fd433826..000000000 --- a/docs/api/XRTK.Oculus.Providers.CameraSystem.OculusCameraDataProvider.html +++ /dev/null @@ -1,348 +0,0 @@ - - - - - - - - Class OculusCameraDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Providers.CameraSystem.html b/docs/api/XRTK.Oculus.Providers.CameraSystem.html deleted file mode 100644 index 554ea57db..000000000 --- a/docs/api/XRTK.Oculus.Providers.CameraSystem.html +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - Namespace XRTK.Oculus.Providers.CameraSystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Providers.Controllers.BaseOculusController.html b/docs/api/XRTK.Oculus.Providers.Controllers.BaseOculusController.html deleted file mode 100644 index 0cfda61cd..000000000 --- a/docs/api/XRTK.Oculus.Providers.Controllers.BaseOculusController.html +++ /dev/null @@ -1,450 +0,0 @@ - - - - - - - - Class BaseOculusController - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Providers.Controllers.OculusControllerDataProvider.html b/docs/api/XRTK.Oculus.Providers.Controllers.OculusControllerDataProvider.html deleted file mode 100644 index 8daefdecc..000000000 --- a/docs/api/XRTK.Oculus.Providers.Controllers.OculusControllerDataProvider.html +++ /dev/null @@ -1,348 +0,0 @@ - - - - - - - - Class OculusControllerDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Providers.Controllers.OculusHandControllerDataProvider.html b/docs/api/XRTK.Oculus.Providers.Controllers.OculusHandControllerDataProvider.html deleted file mode 100644 index 744c40be1..000000000 --- a/docs/api/XRTK.Oculus.Providers.Controllers.OculusHandControllerDataProvider.html +++ /dev/null @@ -1,386 +0,0 @@ - - - - - - - - Class OculusHandControllerDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Providers.Controllers.OculusRemoteController.html b/docs/api/XRTK.Oculus.Providers.Controllers.OculusRemoteController.html deleted file mode 100644 index 99cc3555f..000000000 --- a/docs/api/XRTK.Oculus.Providers.Controllers.OculusRemoteController.html +++ /dev/null @@ -1,342 +0,0 @@ - - - - - - - - Class OculusRemoteController - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Providers.Controllers.OculusTouchController.html b/docs/api/XRTK.Oculus.Providers.Controllers.OculusTouchController.html deleted file mode 100644 index b45eee34b..000000000 --- a/docs/api/XRTK.Oculus.Providers.Controllers.OculusTouchController.html +++ /dev/null @@ -1,375 +0,0 @@ - - - - - - - - Class OculusTouchController - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Providers.Controllers.html b/docs/api/XRTK.Oculus.Providers.Controllers.html deleted file mode 100644 index 158294c25..000000000 --- a/docs/api/XRTK.Oculus.Providers.Controllers.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - - - Namespace XRTK.Oculus.Providers.Controllers - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Utilities.OculusHandDataConverter.html b/docs/api/XRTK.Oculus.Utilities.OculusHandDataConverter.html deleted file mode 100644 index 865117817..000000000 --- a/docs/api/XRTK.Oculus.Utilities.OculusHandDataConverter.html +++ /dev/null @@ -1,249 +0,0 @@ - - - - - - - - Class OculusHandDataConverter - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.Utilities.html b/docs/api/XRTK.Oculus.Utilities.html deleted file mode 100644 index b5dcd683e..000000000 --- a/docs/api/XRTK.Oculus.Utilities.html +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - Namespace XRTK.Oculus.Utilities - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Oculus.html b/docs/api/XRTK.Oculus.html deleted file mode 100644 index ebab5ec23..000000000 --- a/docs/api/XRTK.Oculus.html +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - Namespace XRTK.Oculus - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Providers.CameraSystem.BaseCameraDataProvider.html b/docs/api/XRTK.Providers.CameraSystem.BaseCameraDataProvider.html deleted file mode 100644 index 1d493739b..000000000 --- a/docs/api/XRTK.Providers.CameraSystem.BaseCameraDataProvider.html +++ /dev/null @@ -1,680 +0,0 @@ - - - - - - - - Class BaseCameraDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Providers.CameraSystem.html b/docs/api/XRTK.Providers.CameraSystem.html deleted file mode 100644 index 059901813..000000000 --- a/docs/api/XRTK.Providers.CameraSystem.html +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - Namespace XRTK.Providers.CameraSystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Providers.Controllers.BaseController.html b/docs/api/XRTK.Providers.Controllers.BaseController.html deleted file mode 100644 index d2ecd43e2..000000000 --- a/docs/api/XRTK.Providers.Controllers.BaseController.html +++ /dev/null @@ -1,903 +0,0 @@ - - - - - - - - Class BaseController - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Providers.Controllers.BaseControllerDataProvider.html b/docs/api/XRTK.Providers.Controllers.BaseControllerDataProvider.html deleted file mode 100644 index 90966e7e7..000000000 --- a/docs/api/XRTK.Providers.Controllers.BaseControllerDataProvider.html +++ /dev/null @@ -1,478 +0,0 @@ - - - - - - - - Class BaseControllerDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider.html b/docs/api/XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider.html deleted file mode 100644 index 494036930..000000000 --- a/docs/api/XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider.html +++ /dev/null @@ -1,465 +0,0 @@ - - - - - - - - Class BaseHandControllerDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Providers.Controllers.Hands.HandDataPostProcessor.html b/docs/api/XRTK.Providers.Controllers.Hands.HandDataPostProcessor.html deleted file mode 100644 index 00b918022..000000000 --- a/docs/api/XRTK.Providers.Controllers.Hands.HandDataPostProcessor.html +++ /dev/null @@ -1,399 +0,0 @@ - - - - - - - - Class HandDataPostProcessor - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Providers.Controllers.Hands.HandGripPostProcessor.html b/docs/api/XRTK.Providers.Controllers.Hands.HandGripPostProcessor.html deleted file mode 100644 index eda445fd1..000000000 --- a/docs/api/XRTK.Providers.Controllers.Hands.HandGripPostProcessor.html +++ /dev/null @@ -1,268 +0,0 @@ - - - - - - - - Class HandGripPostProcessor - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Providers.Controllers.Hands.HandTrackedPosePostProcessor.html b/docs/api/XRTK.Providers.Controllers.Hands.HandTrackedPosePostProcessor.html deleted file mode 100644 index d9061d6ef..000000000 --- a/docs/api/XRTK.Providers.Controllers.Hands.HandTrackedPosePostProcessor.html +++ /dev/null @@ -1,270 +0,0 @@ - - - - - - - - Class HandTrackedPosePostProcessor - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Providers.Controllers.Hands.MixedRealityHandController.html b/docs/api/XRTK.Providers.Controllers.Hands.MixedRealityHandController.html deleted file mode 100644 index 6ea14f8dd..000000000 --- a/docs/api/XRTK.Providers.Controllers.Hands.MixedRealityHandController.html +++ /dev/null @@ -1,897 +0,0 @@ - - - - - - - - Class MixedRealityHandController - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Providers.Controllers.Hands.html b/docs/api/XRTK.Providers.Controllers.Hands.html deleted file mode 100644 index 323fa2e4c..000000000 --- a/docs/api/XRTK.Providers.Controllers.Hands.html +++ /dev/null @@ -1,138 +0,0 @@ - - - - - - - - Namespace XRTK.Providers.Controllers.Hands - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.html b/docs/api/XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.html deleted file mode 100644 index 3af355147..000000000 --- a/docs/api/XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.html +++ /dev/null @@ -1,478 +0,0 @@ - - - - - - - - Class GenericOpenVRController - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Providers.Controllers.OpenVR.OculusGoOpenVRController.html b/docs/api/XRTK.Providers.Controllers.OpenVR.OculusGoOpenVRController.html deleted file mode 100644 index d70f9e365..000000000 --- a/docs/api/XRTK.Providers.Controllers.OpenVR.OculusGoOpenVRController.html +++ /dev/null @@ -1,370 +0,0 @@ - - - - - - - - Class OculusGoOpenVRController - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Providers.Controllers.OpenVR.OculusRemoteOpenVRController.html b/docs/api/XRTK.Providers.Controllers.OpenVR.OculusRemoteOpenVRController.html deleted file mode 100644 index 35030e3e7..000000000 --- a/docs/api/XRTK.Providers.Controllers.OpenVR.OculusRemoteOpenVRController.html +++ /dev/null @@ -1,370 +0,0 @@ - - - - - - - - Class OculusRemoteOpenVRController - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Providers.Controllers.OpenVR.OculusTouchOpenVRController.html b/docs/api/XRTK.Providers.Controllers.OpenVR.OculusTouchOpenVRController.html deleted file mode 100644 index eb25c4f3d..000000000 --- a/docs/api/XRTK.Providers.Controllers.OpenVR.OculusTouchOpenVRController.html +++ /dev/null @@ -1,445 +0,0 @@ - - - - - - - - Class OculusTouchOpenVRController - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Providers.Controllers.OpenVR.OpenVRControllerDataProvider.html b/docs/api/XRTK.Providers.Controllers.OpenVR.OpenVRControllerDataProvider.html deleted file mode 100644 index 7ae49165b..000000000 --- a/docs/api/XRTK.Providers.Controllers.OpenVR.OpenVRControllerDataProvider.html +++ /dev/null @@ -1,414 +0,0 @@ - - - - - - - - Class OpenVRControllerDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Providers.Controllers.OpenVR.ViveKnucklesOpenVRController.html b/docs/api/XRTK.Providers.Controllers.OpenVR.ViveKnucklesOpenVRController.html deleted file mode 100644 index 375b8abea..000000000 --- a/docs/api/XRTK.Providers.Controllers.OpenVR.ViveKnucklesOpenVRController.html +++ /dev/null @@ -1,398 +0,0 @@ - - - - - - - - Class ViveKnucklesOpenVRController - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Providers.Controllers.OpenVR.ViveWandOpenVRController.html b/docs/api/XRTK.Providers.Controllers.OpenVR.ViveWandOpenVRController.html deleted file mode 100644 index 3d9225c14..000000000 --- a/docs/api/XRTK.Providers.Controllers.OpenVR.ViveWandOpenVRController.html +++ /dev/null @@ -1,398 +0,0 @@ - - - - - - - - Class ViveWandOpenVRController - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Providers.Controllers.OpenVR.WindowsMixedRealityOpenVRMotionController.html b/docs/api/XRTK.Providers.Controllers.OpenVR.WindowsMixedRealityOpenVRMotionController.html deleted file mode 100644 index e169e2ac0..000000000 --- a/docs/api/XRTK.Providers.Controllers.OpenVR.WindowsMixedRealityOpenVRMotionController.html +++ /dev/null @@ -1,399 +0,0 @@ - - - - - - - - Class WindowsMixedRealityOpenVRMotionController - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Providers.Controllers.OpenVR.html b/docs/api/XRTK.Providers.Controllers.OpenVR.html deleted file mode 100644 index 64b2c874d..000000000 --- a/docs/api/XRTK.Providers.Controllers.OpenVR.html +++ /dev/null @@ -1,134 +0,0 @@ - - - - - - - - Namespace XRTK.Providers.Controllers.OpenVR - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.html b/docs/api/XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.html deleted file mode 100644 index b3022cc87..000000000 --- a/docs/api/XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.html +++ /dev/null @@ -1,981 +0,0 @@ - - - - - - - - Class BaseSimulatedControllerDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.html b/docs/api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.html deleted file mode 100644 index 87b2e7db0..000000000 --- a/docs/api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.html +++ /dev/null @@ -1,643 +0,0 @@ - - - - - - - - Class SimulatedHandControllerDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.html b/docs/api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.html deleted file mode 100644 index 1ca5ee013..000000000 --- a/docs/api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.html +++ /dev/null @@ -1,448 +0,0 @@ - - - - - - - - Class SimulatedHandDataConverter - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedMixedRealityHandController.html b/docs/api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedMixedRealityHandController.html deleted file mode 100644 index dee601f9e..000000000 --- a/docs/api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedMixedRealityHandController.html +++ /dev/null @@ -1,486 +0,0 @@ - - - - - - - - Class SimulatedMixedRealityHandController - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Providers.Controllers.Simulation.Hands.html b/docs/api/XRTK.Providers.Controllers.Simulation.Hands.html deleted file mode 100644 index 346aba5fa..000000000 --- a/docs/api/XRTK.Providers.Controllers.Simulation.Hands.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - - - Namespace XRTK.Providers.Controllers.Simulation.Hands - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Providers.Controllers.Simulation.html b/docs/api/XRTK.Providers.Controllers.Simulation.html deleted file mode 100644 index 3429b860a..000000000 --- a/docs/api/XRTK.Providers.Controllers.Simulation.html +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - Namespace XRTK.Providers.Controllers.Simulation - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Providers.Controllers.UnityInput.GenericJoystickController.html b/docs/api/XRTK.Providers.Controllers.UnityInput.GenericJoystickController.html deleted file mode 100644 index f18544ebe..000000000 --- a/docs/api/XRTK.Providers.Controllers.UnityInput.GenericJoystickController.html +++ /dev/null @@ -1,613 +0,0 @@ - - - - - - - - Class GenericJoystickController - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Providers.Controllers.UnityInput.MouseController.html b/docs/api/XRTK.Providers.Controllers.UnityInput.MouseController.html deleted file mode 100644 index 13581900d..000000000 --- a/docs/api/XRTK.Providers.Controllers.UnityInput.MouseController.html +++ /dev/null @@ -1,384 +0,0 @@ - - - - - - - - Class MouseController - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Providers.Controllers.UnityInput.MouseDataProvider.html b/docs/api/XRTK.Providers.Controllers.UnityInput.MouseDataProvider.html deleted file mode 100644 index 5693a5cff..000000000 --- a/docs/api/XRTK.Providers.Controllers.UnityInput.MouseDataProvider.html +++ /dev/null @@ -1,413 +0,0 @@ - - - - - - - - Class MouseDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.html b/docs/api/XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.html deleted file mode 100644 index 1665b48c5..000000000 --- a/docs/api/XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.html +++ /dev/null @@ -1,502 +0,0 @@ - - - - - - - - Class UnityJoystickDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Providers.Controllers.UnityInput.UnityTouchController.html b/docs/api/XRTK.Providers.Controllers.UnityInput.UnityTouchController.html deleted file mode 100644 index 2e7bd82fd..000000000 --- a/docs/api/XRTK.Providers.Controllers.UnityInput.UnityTouchController.html +++ /dev/null @@ -1,540 +0,0 @@ - - - - - - - - Class UnityTouchController - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Providers.Controllers.UnityInput.UnityTouchDataProvider.html b/docs/api/XRTK.Providers.Controllers.UnityInput.UnityTouchDataProvider.html deleted file mode 100644 index fd7b9c93f..000000000 --- a/docs/api/XRTK.Providers.Controllers.UnityInput.UnityTouchDataProvider.html +++ /dev/null @@ -1,333 +0,0 @@ - - - - - - - - Class UnityTouchDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Providers.Controllers.UnityInput.XboxController.html b/docs/api/XRTK.Providers.Controllers.UnityInput.XboxController.html deleted file mode 100644 index abbfc294b..000000000 --- a/docs/api/XRTK.Providers.Controllers.UnityInput.XboxController.html +++ /dev/null @@ -1,364 +0,0 @@ - - - - - - - - Class XboxController - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Providers.Controllers.UnityInput.html b/docs/api/XRTK.Providers.Controllers.UnityInput.html deleted file mode 100644 index 30619cf14..000000000 --- a/docs/api/XRTK.Providers.Controllers.UnityInput.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - - - Namespace XRTK.Providers.Controllers.UnityInput - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Providers.Controllers.html b/docs/api/XRTK.Providers.Controllers.html deleted file mode 100644 index 9bf9c1715..000000000 --- a/docs/api/XRTK.Providers.Controllers.html +++ /dev/null @@ -1,122 +0,0 @@ - - - - - - - - Namespace XRTK.Providers.Controllers - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Providers.Networking.Profiles.BaseMixedRealityNetworkProviderProfile.html b/docs/api/XRTK.Providers.Networking.Profiles.BaseMixedRealityNetworkProviderProfile.html deleted file mode 100644 index 6cf36199a..000000000 --- a/docs/api/XRTK.Providers.Networking.Profiles.BaseMixedRealityNetworkProviderProfile.html +++ /dev/null @@ -1,206 +0,0 @@ - - - - - - - - Class BaseMixedRealityNetworkProviderProfile - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Providers.Networking.Profiles.html b/docs/api/XRTK.Providers.Networking.Profiles.html deleted file mode 100644 index 724dc04a4..000000000 --- a/docs/api/XRTK.Providers.Networking.Profiles.html +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - Namespace XRTK.Providers.Networking.Profiles - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.html b/docs/api/XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.html deleted file mode 100644 index 8b7ad4a9b..000000000 --- a/docs/api/XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.html +++ /dev/null @@ -1,667 +0,0 @@ - - - - - - - - Class MixedRealityWebRtcDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcNetworkProviderProfile.html b/docs/api/XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcNetworkProviderProfile.html deleted file mode 100644 index 130598a87..000000000 --- a/docs/api/XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcNetworkProviderProfile.html +++ /dev/null @@ -1,207 +0,0 @@ - - - - - - - - Class MixedRealityWebRtcNetworkProviderProfile - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Providers.Networking.WebRTC.WebRtcPeerConnection.html b/docs/api/XRTK.Providers.Networking.WebRTC.WebRtcPeerConnection.html deleted file mode 100644 index d94da333b..000000000 --- a/docs/api/XRTK.Providers.Networking.WebRTC.WebRtcPeerConnection.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - Struct WebRtcPeerConnection - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Providers.Networking.WebRTC.html b/docs/api/XRTK.Providers.Networking.WebRTC.html deleted file mode 100644 index 12a926528..000000000 --- a/docs/api/XRTK.Providers.Networking.WebRTC.html +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - - Namespace XRTK.Providers.Networking.WebRTC - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.html b/docs/api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.html deleted file mode 100644 index 224bb0f8d..000000000 --- a/docs/api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.html +++ /dev/null @@ -1,889 +0,0 @@ - - - - - - - - Class BaseMixedRealitySpatialMeshObserver - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile.html b/docs/api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile.html deleted file mode 100644 index dab21a23b..000000000 --- a/docs/api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile.html +++ /dev/null @@ -1,411 +0,0 @@ - - - - - - - - Class BaseMixedRealitySpatialMeshObserverProfile - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.html b/docs/api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.html deleted file mode 100644 index cc7c4c96e..000000000 --- a/docs/api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.html +++ /dev/null @@ -1,805 +0,0 @@ - - - - - - - - Class BaseMixedRealitySpatialObserverDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverProfile.html b/docs/api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverProfile.html deleted file mode 100644 index 905352dc8..000000000 --- a/docs/api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverProfile.html +++ /dev/null @@ -1,364 +0,0 @@ - - - - - - - - Class BaseMixedRealitySpatialObserverProfile - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.html b/docs/api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.html deleted file mode 100644 index 855bc8c0b..000000000 --- a/docs/api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.html +++ /dev/null @@ -1,649 +0,0 @@ - - - - - - - - Class BaseMixedRealitySpatialSurfaceObserver - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.html b/docs/api/XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.html deleted file mode 100644 index 0f867c7c6..000000000 --- a/docs/api/XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.html +++ /dev/null @@ -1,502 +0,0 @@ - - - - - - - - Class BaseMixedRealitySurfaceObserverProfile - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Providers.SpatialObservers.html b/docs/api/XRTK.Providers.SpatialObservers.html deleted file mode 100644 index 5f34294b6..000000000 --- a/docs/api/XRTK.Providers.SpatialObservers.html +++ /dev/null @@ -1,133 +0,0 @@ - - - - - - - - Namespace XRTK.Providers.SpatialObservers - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Providers.Speech.BaseDictationDataProvider.html b/docs/api/XRTK.Providers.Speech.BaseDictationDataProvider.html deleted file mode 100644 index 9d134673c..000000000 --- a/docs/api/XRTK.Providers.Speech.BaseDictationDataProvider.html +++ /dev/null @@ -1,530 +0,0 @@ - - - - - - - - Class BaseDictationDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Providers.Speech.BaseSpeechDataProvider.html b/docs/api/XRTK.Providers.Speech.BaseSpeechDataProvider.html deleted file mode 100644 index fb4a450b6..000000000 --- a/docs/api/XRTK.Providers.Speech.BaseSpeechDataProvider.html +++ /dev/null @@ -1,385 +0,0 @@ - - - - - - - - Class BaseSpeechDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Providers.Speech.WindowsDictationDataProvider.html b/docs/api/XRTK.Providers.Speech.WindowsDictationDataProvider.html deleted file mode 100644 index 6303bad1f..000000000 --- a/docs/api/XRTK.Providers.Speech.WindowsDictationDataProvider.html +++ /dev/null @@ -1,304 +0,0 @@ - - - - - - - - Class WindowsDictationDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Providers.Speech.WindowsSpeechDataProvider.html b/docs/api/XRTK.Providers.Speech.WindowsSpeechDataProvider.html deleted file mode 100644 index 455d84e2d..000000000 --- a/docs/api/XRTK.Providers.Speech.WindowsSpeechDataProvider.html +++ /dev/null @@ -1,298 +0,0 @@ - - - - - - - - Class WindowsSpeechDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Providers.Speech.html b/docs/api/XRTK.Providers.Speech.html deleted file mode 100644 index b3b6618f0..000000000 --- a/docs/api/XRTK.Providers.Speech.html +++ /dev/null @@ -1,128 +0,0 @@ - - - - - - - - Namespace XRTK.Providers.Speech - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.Audio.Influencers.AudioInfluencerController.html b/docs/api/XRTK.SDK.Audio.Influencers.AudioInfluencerController.html deleted file mode 100644 index d545220df..000000000 --- a/docs/api/XRTK.SDK.Audio.Influencers.AudioInfluencerController.html +++ /dev/null @@ -1,404 +0,0 @@ - - - - - - - - Class AudioInfluencerController - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.Audio.Influencers.AudioLoFiEffect.html b/docs/api/XRTK.SDK.Audio.Influencers.AudioLoFiEffect.html deleted file mode 100644 index cdd91ef58..000000000 --- a/docs/api/XRTK.SDK.Audio.Influencers.AudioLoFiEffect.html +++ /dev/null @@ -1,234 +0,0 @@ - - - - - - - - Class AudioLoFiEffect - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.Audio.Influencers.AudioLoFiSourceQualityType.html b/docs/api/XRTK.SDK.Audio.Influencers.AudioLoFiSourceQualityType.html deleted file mode 100644 index 6f20da97e..000000000 --- a/docs/api/XRTK.SDK.Audio.Influencers.AudioLoFiSourceQualityType.html +++ /dev/null @@ -1,184 +0,0 @@ - - - - - - - - Enum AudioLoFiSourceQualityType - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.Audio.Influencers.AudioOccluder.html b/docs/api/XRTK.SDK.Audio.Influencers.AudioOccluder.html deleted file mode 100644 index 6d814df47..000000000 --- a/docs/api/XRTK.SDK.Audio.Influencers.AudioOccluder.html +++ /dev/null @@ -1,351 +0,0 @@ - - - - - - - - Class AudioOccluder - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.Audio.Influencers.html b/docs/api/XRTK.SDK.Audio.Influencers.html deleted file mode 100644 index 605a2f597..000000000 --- a/docs/api/XRTK.SDK.Audio.Influencers.html +++ /dev/null @@ -1,133 +0,0 @@ - - - - - - - - Namespace XRTK.SDK.Audio.Influencers - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.DiagnosticsSystem.MixedRealityConsoleDiagnosticsHandler.html b/docs/api/XRTK.SDK.DiagnosticsSystem.MixedRealityConsoleDiagnosticsHandler.html deleted file mode 100644 index 9c1ac5c65..000000000 --- a/docs/api/XRTK.SDK.DiagnosticsSystem.MixedRealityConsoleDiagnosticsHandler.html +++ /dev/null @@ -1,241 +0,0 @@ - - - - - - - - Class MixedRealityConsoleDiagnosticsHandler - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.DiagnosticsSystem.MixedRealityDiagnosticsWindow.html b/docs/api/XRTK.SDK.DiagnosticsSystem.MixedRealityDiagnosticsWindow.html deleted file mode 100644 index 8a7049bb7..000000000 --- a/docs/api/XRTK.SDK.DiagnosticsSystem.MixedRealityDiagnosticsWindow.html +++ /dev/null @@ -1,272 +0,0 @@ - - - - - - - - Class MixedRealityDiagnosticsWindow - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.DiagnosticsSystem.MixedRealityFrameDiagnosticsHandler.html b/docs/api/XRTK.SDK.DiagnosticsSystem.MixedRealityFrameDiagnosticsHandler.html deleted file mode 100644 index 880d95cad..000000000 --- a/docs/api/XRTK.SDK.DiagnosticsSystem.MixedRealityFrameDiagnosticsHandler.html +++ /dev/null @@ -1,274 +0,0 @@ - - - - - - - - Class MixedRealityFrameDiagnosticsHandler - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.DiagnosticsSystem.MixedRealityMemoryDiagnosticsHandler.html b/docs/api/XRTK.SDK.DiagnosticsSystem.MixedRealityMemoryDiagnosticsHandler.html deleted file mode 100644 index 1b9dd64ab..000000000 --- a/docs/api/XRTK.SDK.DiagnosticsSystem.MixedRealityMemoryDiagnosticsHandler.html +++ /dev/null @@ -1,307 +0,0 @@ - - - - - - - - Class MixedRealityMemoryDiagnosticsHandler - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.DiagnosticsSystem.html b/docs/api/XRTK.SDK.DiagnosticsSystem.html deleted file mode 100644 index 109511f3c..000000000 --- a/docs/api/XRTK.SDK.DiagnosticsSystem.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - - - Namespace XRTK.SDK.DiagnosticsSystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.Editor.Input.Handlers.BaseInputHandlerInspector.html b/docs/api/XRTK.SDK.Editor.Input.Handlers.BaseInputHandlerInspector.html deleted file mode 100644 index 37b13a871..000000000 --- a/docs/api/XRTK.SDK.Editor.Input.Handlers.BaseInputHandlerInspector.html +++ /dev/null @@ -1,231 +0,0 @@ - - - - - - - - Class BaseInputHandlerInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.Editor.Input.Handlers.ControllerPoseSynchronizerInspector.html b/docs/api/XRTK.SDK.Editor.Input.Handlers.ControllerPoseSynchronizerInspector.html deleted file mode 100644 index 9c51d8e43..000000000 --- a/docs/api/XRTK.SDK.Editor.Input.Handlers.ControllerPoseSynchronizerInspector.html +++ /dev/null @@ -1,263 +0,0 @@ - - - - - - - - Class ControllerPoseSynchronizerInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.Editor.Input.Handlers.DefaultMixedRealityControllerVisualizerInspector.html b/docs/api/XRTK.SDK.Editor.Input.Handlers.DefaultMixedRealityControllerVisualizerInspector.html deleted file mode 100644 index 8b0ca33be..000000000 --- a/docs/api/XRTK.SDK.Editor.Input.Handlers.DefaultMixedRealityControllerVisualizerInspector.html +++ /dev/null @@ -1,207 +0,0 @@ - - - - - - - - Class DefaultMixedRealityControllerVisualizerInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.Editor.Input.Handlers.PointerClickHandlerInspector.html b/docs/api/XRTK.SDK.Editor.Input.Handlers.PointerClickHandlerInspector.html deleted file mode 100644 index 3854f90cb..000000000 --- a/docs/api/XRTK.SDK.Editor.Input.Handlers.PointerClickHandlerInspector.html +++ /dev/null @@ -1,233 +0,0 @@ - - - - - - - - Class PointerClickHandlerInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.Editor.Input.Handlers.SpeechInputHandlerInspector.html b/docs/api/XRTK.SDK.Editor.Input.Handlers.SpeechInputHandlerInspector.html deleted file mode 100644 index e76691a1e..000000000 --- a/docs/api/XRTK.SDK.Editor.Input.Handlers.SpeechInputHandlerInspector.html +++ /dev/null @@ -1,233 +0,0 @@ - - - - - - - - Class SpeechInputHandlerInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.Editor.Input.Handlers.WindowsMixedRealityControllerVisualizerInspector.html b/docs/api/XRTK.SDK.Editor.Input.Handlers.WindowsMixedRealityControllerVisualizerInspector.html deleted file mode 100644 index 9fa9e57c9..000000000 --- a/docs/api/XRTK.SDK.Editor.Input.Handlers.WindowsMixedRealityControllerVisualizerInspector.html +++ /dev/null @@ -1,237 +0,0 @@ - - - - - - - - Class WindowsMixedRealityControllerVisualizerInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.Editor.Input.Handlers.html b/docs/api/XRTK.SDK.Editor.Input.Handlers.html deleted file mode 100644 index b4303c2b0..000000000 --- a/docs/api/XRTK.SDK.Editor.Input.Handlers.html +++ /dev/null @@ -1,128 +0,0 @@ - - - - - - - - Namespace XRTK.SDK.Editor.Input.Handlers - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.Editor.SdkPathFinder.html b/docs/api/XRTK.SDK.Editor.SdkPathFinder.html deleted file mode 100644 index 42908baef..000000000 --- a/docs/api/XRTK.SDK.Editor.SdkPathFinder.html +++ /dev/null @@ -1,239 +0,0 @@ - - - - - - - - Class SdkPathFinder - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.Editor.UX.Collections.BaseCollectionInspector.html b/docs/api/XRTK.SDK.Editor.UX.Collections.BaseCollectionInspector.html deleted file mode 100644 index 105445cdd..000000000 --- a/docs/api/XRTK.SDK.Editor.UX.Collections.BaseCollectionInspector.html +++ /dev/null @@ -1,196 +0,0 @@ - - - - - - - - Class BaseCollectionInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.Editor.UX.Collections.html b/docs/api/XRTK.SDK.Editor.UX.Collections.html deleted file mode 100644 index 0d3656809..000000000 --- a/docs/api/XRTK.SDK.Editor.UX.Collections.html +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - Namespace XRTK.SDK.Editor.UX.Collections - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.Editor.UX.Pointers.BaseControllerPointerInspector.html b/docs/api/XRTK.SDK.Editor.UX.Pointers.BaseControllerPointerInspector.html deleted file mode 100644 index 64253b224..000000000 --- a/docs/api/XRTK.SDK.Editor.UX.Pointers.BaseControllerPointerInspector.html +++ /dev/null @@ -1,269 +0,0 @@ - - - - - - - - Class BaseControllerPointerInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.Editor.UX.Pointers.HandSpatialPointerInspector.html b/docs/api/XRTK.SDK.Editor.UX.Pointers.HandSpatialPointerInspector.html deleted file mode 100644 index e7313eb05..000000000 --- a/docs/api/XRTK.SDK.Editor.UX.Pointers.HandSpatialPointerInspector.html +++ /dev/null @@ -1,241 +0,0 @@ - - - - - - - - Class HandSpatialPointerInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.Editor.UX.Pointers.LinePointerInspector.html b/docs/api/XRTK.SDK.Editor.UX.Pointers.LinePointerInspector.html deleted file mode 100644 index 84a5ac478..000000000 --- a/docs/api/XRTK.SDK.Editor.UX.Pointers.LinePointerInspector.html +++ /dev/null @@ -1,242 +0,0 @@ - - - - - - - - Class LinePointerInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.Editor.UX.Pointers.MousePointerInspector.html b/docs/api/XRTK.SDK.Editor.UX.Pointers.MousePointerInspector.html deleted file mode 100644 index e21422a19..000000000 --- a/docs/api/XRTK.SDK.Editor.UX.Pointers.MousePointerInspector.html +++ /dev/null @@ -1,240 +0,0 @@ - - - - - - - - Class MousePointerInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.Editor.UX.Pointers.ParabolicTeleportPointerInspector.html b/docs/api/XRTK.SDK.Editor.UX.Pointers.ParabolicTeleportPointerInspector.html deleted file mode 100644 index c9d360404..000000000 --- a/docs/api/XRTK.SDK.Editor.UX.Pointers.ParabolicTeleportPointerInspector.html +++ /dev/null @@ -1,242 +0,0 @@ - - - - - - - - Class ParabolicTeleportPointerInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.Editor.UX.Pointers.TeleportPointerInspector.html b/docs/api/XRTK.SDK.Editor.UX.Pointers.TeleportPointerInspector.html deleted file mode 100644 index 4f6acad58..000000000 --- a/docs/api/XRTK.SDK.Editor.UX.Pointers.TeleportPointerInspector.html +++ /dev/null @@ -1,242 +0,0 @@ - - - - - - - - Class TeleportPointerInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.Editor.UX.Pointers.html b/docs/api/XRTK.SDK.Editor.UX.Pointers.html deleted file mode 100644 index 747108af6..000000000 --- a/docs/api/XRTK.SDK.Editor.UX.Pointers.html +++ /dev/null @@ -1,128 +0,0 @@ - - - - - - - - Namespace XRTK.SDK.Editor.UX.Pointers - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.Editor.Utilities.Solvers.ControllerFinderInspector.html b/docs/api/XRTK.SDK.Editor.Utilities.Solvers.ControllerFinderInspector.html deleted file mode 100644 index 705c9233a..000000000 --- a/docs/api/XRTK.SDK.Editor.Utilities.Solvers.ControllerFinderInspector.html +++ /dev/null @@ -1,231 +0,0 @@ - - - - - - - - Class ControllerFinderInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.Editor.Utilities.Solvers.InBetweenEditor.html b/docs/api/XRTK.SDK.Editor.Utilities.Solvers.InBetweenEditor.html deleted file mode 100644 index 81e2c42ef..000000000 --- a/docs/api/XRTK.SDK.Editor.Utilities.Solvers.InBetweenEditor.html +++ /dev/null @@ -1,215 +0,0 @@ - - - - - - - - Class InBetweenEditor - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.Editor.Utilities.Solvers.SolverHandlerInspector.html b/docs/api/XRTK.SDK.Editor.Utilities.Solvers.SolverHandlerInspector.html deleted file mode 100644 index 37c254f17..000000000 --- a/docs/api/XRTK.SDK.Editor.Utilities.Solvers.SolverHandlerInspector.html +++ /dev/null @@ -1,234 +0,0 @@ - - - - - - - - Class SolverHandlerInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.Editor.Utilities.Solvers.html b/docs/api/XRTK.SDK.Editor.Utilities.Solvers.html deleted file mode 100644 index a18fdd721..000000000 --- a/docs/api/XRTK.SDK.Editor.Utilities.Solvers.html +++ /dev/null @@ -1,122 +0,0 @@ - - - - - - - - Namespace XRTK.SDK.Editor.Utilities.Solvers - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.Editor.html b/docs/api/XRTK.SDK.Editor.html deleted file mode 100644 index cc22b1ad7..000000000 --- a/docs/api/XRTK.SDK.Editor.html +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - Namespace XRTK.SDK.Editor - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.Input.HandDataRecorder.html b/docs/api/XRTK.SDK.Input.HandDataRecorder.html deleted file mode 100644 index 24ef3ac0d..000000000 --- a/docs/api/XRTK.SDK.Input.HandDataRecorder.html +++ /dev/null @@ -1,257 +0,0 @@ - - - - - - - - Class HandDataRecorder - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.Input.Handlers.BaseDictationHandler.html b/docs/api/XRTK.SDK.Input.Handlers.BaseDictationHandler.html deleted file mode 100644 index c47fa14f1..000000000 --- a/docs/api/XRTK.SDK.Input.Handlers.BaseDictationHandler.html +++ /dev/null @@ -1,417 +0,0 @@ - - - - - - - - Class BaseDictationHandler - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.Input.Handlers.BaseFocusHandler.html b/docs/api/XRTK.SDK.Input.Handlers.BaseFocusHandler.html deleted file mode 100644 index b7b5a79f6..000000000 --- a/docs/api/XRTK.SDK.Input.Handlers.BaseFocusHandler.html +++ /dev/null @@ -1,505 +0,0 @@ - - - - - - - - Class BaseFocusHandler - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.Input.Handlers.BaseInputHandler.html b/docs/api/XRTK.SDK.Input.Handlers.BaseInputHandler.html deleted file mode 100644 index 16869760a..000000000 --- a/docs/api/XRTK.SDK.Input.Handlers.BaseInputHandler.html +++ /dev/null @@ -1,322 +0,0 @@ - - - - - - - - Class BaseInputHandler - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.html b/docs/api/XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.html deleted file mode 100644 index fb23b71d0..000000000 --- a/docs/api/XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.html +++ /dev/null @@ -1,990 +0,0 @@ - - - - - - - - Class ControllerPoseSynchronizer - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.Input.Handlers.DragAndDropHandler.html b/docs/api/XRTK.SDK.Input.Handlers.DragAndDropHandler.html deleted file mode 100644 index 1ae934c54..000000000 --- a/docs/api/XRTK.SDK.Input.Handlers.DragAndDropHandler.html +++ /dev/null @@ -1,446 +0,0 @@ - - - - - - - - Class DragAndDropHandler - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.Input.Handlers.ManipulationHandler.html b/docs/api/XRTK.SDK.Input.Handlers.ManipulationHandler.html deleted file mode 100644 index 40881988a..000000000 --- a/docs/api/XRTK.SDK.Input.Handlers.ManipulationHandler.html +++ /dev/null @@ -1,2159 +0,0 @@ - - - - - - - - Class ManipulationHandler - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.Input.Handlers.PointerClickHandler.html b/docs/api/XRTK.SDK.Input.Handlers.PointerClickHandler.html deleted file mode 100644 index 57ed52beb..000000000 --- a/docs/api/XRTK.SDK.Input.Handlers.PointerClickHandler.html +++ /dev/null @@ -1,328 +0,0 @@ - - - - - - - - Class PointerClickHandler - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.Input.Handlers.SpeechInputHandler.html b/docs/api/XRTK.SDK.Input.Handlers.SpeechInputHandler.html deleted file mode 100644 index e8af1ac57..000000000 --- a/docs/api/XRTK.SDK.Input.Handlers.SpeechInputHandler.html +++ /dev/null @@ -1,310 +0,0 @@ - - - - - - - - Class SpeechInputHandler - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.Input.Handlers.TeleportHotSpot.html b/docs/api/XRTK.SDK.Input.Handlers.TeleportHotSpot.html deleted file mode 100644 index 9c56d2049..000000000 --- a/docs/api/XRTK.SDK.Input.Handlers.TeleportHotSpot.html +++ /dev/null @@ -1,499 +0,0 @@ - - - - - - - - Class TeleportHotSpot - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.Input.Handlers.html b/docs/api/XRTK.SDK.Input.Handlers.html deleted file mode 100644 index c3acb44d1..000000000 --- a/docs/api/XRTK.SDK.Input.Handlers.html +++ /dev/null @@ -1,150 +0,0 @@ - - - - - - - - Namespace XRTK.SDK.Input.Handlers - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.Input.InputSystemGlobalListener.html b/docs/api/XRTK.SDK.Input.InputSystemGlobalListener.html deleted file mode 100644 index 11d3ce486..000000000 --- a/docs/api/XRTK.SDK.Input.InputSystemGlobalListener.html +++ /dev/null @@ -1,289 +0,0 @@ - - - - - - - - Class InputSystemGlobalListener - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.Input.html b/docs/api/XRTK.SDK.Input.html deleted file mode 100644 index b2676ef68..000000000 --- a/docs/api/XRTK.SDK.Input.html +++ /dev/null @@ -1,122 +0,0 @@ - - - - - - - - Namespace XRTK.SDK.Input - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.TeleportSystem.BaseTeleportProvider.html b/docs/api/XRTK.SDK.TeleportSystem.BaseTeleportProvider.html deleted file mode 100644 index b3902920b..000000000 --- a/docs/api/XRTK.SDK.TeleportSystem.BaseTeleportProvider.html +++ /dev/null @@ -1,411 +0,0 @@ - - - - - - - - Class BaseTeleportProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.TeleportSystem.FadingTeleportProvider.html b/docs/api/XRTK.SDK.TeleportSystem.FadingTeleportProvider.html deleted file mode 100644 index da5e2256e..000000000 --- a/docs/api/XRTK.SDK.TeleportSystem.FadingTeleportProvider.html +++ /dev/null @@ -1,332 +0,0 @@ - - - - - - - - Class FadingTeleportProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.TeleportSystem.html b/docs/api/XRTK.SDK.TeleportSystem.html deleted file mode 100644 index fd7320193..000000000 --- a/docs/api/XRTK.SDK.TeleportSystem.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - - - Namespace XRTK.SDK.TeleportSystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.BoundingBox.html b/docs/api/XRTK.SDK.UX.BoundingBox.html deleted file mode 100644 index 2f7a63d5c..000000000 --- a/docs/api/XRTK.SDK.UX.BoundingBox.html +++ /dev/null @@ -1,801 +0,0 @@ - - - - - - - - Class BoundingBox - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.Collections.BaseObjectCollection.html b/docs/api/XRTK.SDK.UX.Collections.BaseObjectCollection.html deleted file mode 100644 index 96e968f08..000000000 --- a/docs/api/XRTK.SDK.UX.Collections.BaseObjectCollection.html +++ /dev/null @@ -1,432 +0,0 @@ - - - - - - - - Class BaseObjectCollection - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.Collections.GridObjectCollection.html b/docs/api/XRTK.SDK.UX.Collections.GridObjectCollection.html deleted file mode 100644 index 2eb936338..000000000 --- a/docs/api/XRTK.SDK.UX.Collections.GridObjectCollection.html +++ /dev/null @@ -1,796 +0,0 @@ - - - - - - - - Class GridObjectCollection - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.Collections.LayoutOrderType.html b/docs/api/XRTK.SDK.UX.Collections.LayoutOrderType.html deleted file mode 100644 index d6e65059a..000000000 --- a/docs/api/XRTK.SDK.UX.Collections.LayoutOrderType.html +++ /dev/null @@ -1,178 +0,0 @@ - - - - - - - - Enum LayoutOrderType - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.Collections.ObjectCollectionNode.html b/docs/api/XRTK.SDK.UX.Collections.ObjectCollectionNode.html deleted file mode 100644 index c25ea9854..000000000 --- a/docs/api/XRTK.SDK.UX.Collections.ObjectCollectionNode.html +++ /dev/null @@ -1,274 +0,0 @@ - - - - - - - - Struct ObjectCollectionNode - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.Collections.ObjectOrientationSurfaceType.html b/docs/api/XRTK.SDK.UX.Collections.ObjectOrientationSurfaceType.html deleted file mode 100644 index 60db344fd..000000000 --- a/docs/api/XRTK.SDK.UX.Collections.ObjectOrientationSurfaceType.html +++ /dev/null @@ -1,174 +0,0 @@ - - - - - - - - Enum ObjectOrientationSurfaceType - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.Collections.ScatterObjectCollection.html b/docs/api/XRTK.SDK.UX.Collections.ScatterObjectCollection.html deleted file mode 100644 index 33ea425a3..000000000 --- a/docs/api/XRTK.SDK.UX.Collections.ScatterObjectCollection.html +++ /dev/null @@ -1,289 +0,0 @@ - - - - - - - - Class ScatterObjectCollection - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.Collections.html b/docs/api/XRTK.SDK.UX.Collections.html deleted file mode 100644 index 56352901d..000000000 --- a/docs/api/XRTK.SDK.UX.Collections.html +++ /dev/null @@ -1,140 +0,0 @@ - - - - - - - - Namespace XRTK.SDK.UX.Collections - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.Controllers.DefaultMixedRealityControllerVisualizer.html b/docs/api/XRTK.SDK.UX.Controllers.DefaultMixedRealityControllerVisualizer.html deleted file mode 100644 index d8c3c5eab..000000000 --- a/docs/api/XRTK.SDK.UX.Controllers.DefaultMixedRealityControllerVisualizer.html +++ /dev/null @@ -1,364 +0,0 @@ - - - - - - - - Class DefaultMixedRealityControllerVisualizer - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer.html b/docs/api/XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer.html deleted file mode 100644 index 14a896ac0..000000000 --- a/docs/api/XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer.html +++ /dev/null @@ -1,523 +0,0 @@ - - - - - - - - Class DefaultHandControllerVisualizer - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.Controllers.Hands.HandControllerJointsVisualizer.html b/docs/api/XRTK.SDK.UX.Controllers.Hands.HandControllerJointsVisualizer.html deleted file mode 100644 index 5d400771c..000000000 --- a/docs/api/XRTK.SDK.UX.Controllers.Hands.HandControllerJointsVisualizer.html +++ /dev/null @@ -1,226 +0,0 @@ - - - - - - - - Class HandControllerJointsVisualizer - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.Controllers.Hands.HandControllerMeshVisualizer.html b/docs/api/XRTK.SDK.UX.Controllers.Hands.HandControllerMeshVisualizer.html deleted file mode 100644 index ab5544de1..000000000 --- a/docs/api/XRTK.SDK.UX.Controllers.Hands.HandControllerMeshVisualizer.html +++ /dev/null @@ -1,226 +0,0 @@ - - - - - - - - Class HandControllerMeshVisualizer - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.Controllers.Hands.html b/docs/api/XRTK.SDK.UX.Controllers.Hands.html deleted file mode 100644 index 161282d54..000000000 --- a/docs/api/XRTK.SDK.UX.Controllers.Hands.html +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - - - Namespace XRTK.SDK.UX.Controllers.Hands - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.html b/docs/api/XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.html deleted file mode 100644 index 48b70e849..000000000 --- a/docs/api/XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.html +++ /dev/null @@ -1,629 +0,0 @@ - - - - - - - - Class WindowsMixedRealityControllerVisualizer - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.Controllers.html b/docs/api/XRTK.SDK.UX.Controllers.html deleted file mode 100644 index 5e2f47973..000000000 --- a/docs/api/XRTK.SDK.UX.Controllers.html +++ /dev/null @@ -1,121 +0,0 @@ - - - - - - - - Namespace XRTK.SDK.UX.Controllers - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.Cursors.AnimatedCursor.html b/docs/api/XRTK.SDK.UX.Cursors.AnimatedCursor.html deleted file mode 100644 index cf3c8cd6e..000000000 --- a/docs/api/XRTK.SDK.UX.Cursors.AnimatedCursor.html +++ /dev/null @@ -1,429 +0,0 @@ - - - - - - - - Class AnimatedCursor - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.Cursors.BaseCursor.html b/docs/api/XRTK.SDK.UX.Cursors.BaseCursor.html deleted file mode 100644 index 06350c467..000000000 --- a/docs/api/XRTK.SDK.UX.Cursors.BaseCursor.html +++ /dev/null @@ -1,1251 +0,0 @@ - - - - - - - - Class BaseCursor - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.Cursors.CursorModifier.html b/docs/api/XRTK.SDK.UX.Cursors.CursorModifier.html deleted file mode 100644 index a2945eab6..000000000 --- a/docs/api/XRTK.SDK.UX.Cursors.CursorModifier.html +++ /dev/null @@ -1,764 +0,0 @@ - - - - - - - - Class CursorModifier - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.Cursors.InteractiveMeshCursor.html b/docs/api/XRTK.SDK.UX.Cursors.InteractiveMeshCursor.html deleted file mode 100644 index 86168491f..000000000 --- a/docs/api/XRTK.SDK.UX.Cursors.InteractiveMeshCursor.html +++ /dev/null @@ -1,413 +0,0 @@ - - - - - - - - Class InteractiveMeshCursor - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.Cursors.MeshCursor.MeshCursorDatum.html b/docs/api/XRTK.SDK.UX.Cursors.MeshCursor.MeshCursorDatum.html deleted file mode 100644 index af5ecf562..000000000 --- a/docs/api/XRTK.SDK.UX.Cursors.MeshCursor.MeshCursorDatum.html +++ /dev/null @@ -1,302 +0,0 @@ - - - - - - - - Struct MeshCursor.MeshCursorDatum - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.Cursors.MeshCursor.html b/docs/api/XRTK.SDK.UX.Cursors.MeshCursor.html deleted file mode 100644 index 445997ee3..000000000 --- a/docs/api/XRTK.SDK.UX.Cursors.MeshCursor.html +++ /dev/null @@ -1,413 +0,0 @@ - - - - - - - - Class MeshCursor - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.Cursors.ObjectCursor.ObjectCursorDatum.html b/docs/api/XRTK.SDK.UX.Cursors.ObjectCursor.ObjectCursorDatum.html deleted file mode 100644 index b5063356b..000000000 --- a/docs/api/XRTK.SDK.UX.Cursors.ObjectCursor.ObjectCursorDatum.html +++ /dev/null @@ -1,244 +0,0 @@ - - - - - - - - Struct ObjectCursor.ObjectCursorDatum - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.Cursors.ObjectCursor.html b/docs/api/XRTK.SDK.UX.Cursors.ObjectCursor.html deleted file mode 100644 index 9bc91d28e..000000000 --- a/docs/api/XRTK.SDK.UX.Cursors.ObjectCursor.html +++ /dev/null @@ -1,444 +0,0 @@ - - - - - - - - Class ObjectCursor - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.Cursors.SpriteCursor.SpriteCursorDatum.html b/docs/api/XRTK.SDK.UX.Cursors.SpriteCursor.SpriteCursorDatum.html deleted file mode 100644 index 49281e936..000000000 --- a/docs/api/XRTK.SDK.UX.Cursors.SpriteCursor.SpriteCursorDatum.html +++ /dev/null @@ -1,273 +0,0 @@ - - - - - - - - Struct SpriteCursor.SpriteCursorDatum - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.Cursors.SpriteCursor.html b/docs/api/XRTK.SDK.UX.Cursors.SpriteCursor.html deleted file mode 100644 index 821929a2c..000000000 --- a/docs/api/XRTK.SDK.UX.Cursors.SpriteCursor.html +++ /dev/null @@ -1,443 +0,0 @@ - - - - - - - - Class SpriteCursor - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.Cursors.TeleportCursor.html b/docs/api/XRTK.SDK.UX.Cursors.TeleportCursor.html deleted file mode 100644 index a08896e45..000000000 --- a/docs/api/XRTK.SDK.UX.Cursors.TeleportCursor.html +++ /dev/null @@ -1,640 +0,0 @@ - - - - - - - - Class TeleportCursor - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.Cursors.html b/docs/api/XRTK.SDK.UX.Cursors.html deleted file mode 100644 index 2e8b422a0..000000000 --- a/docs/api/XRTK.SDK.UX.Cursors.html +++ /dev/null @@ -1,150 +0,0 @@ - - - - - - - - Namespace XRTK.SDK.UX.Cursors - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html b/docs/api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html deleted file mode 100644 index 526d1cb69..000000000 --- a/docs/api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html +++ /dev/null @@ -1,2165 +0,0 @@ - - - - - - - - Class BaseControllerPointer - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.Pointers.HandNearPointer.html b/docs/api/XRTK.SDK.UX.Pointers.HandNearPointer.html deleted file mode 100644 index 236f04706..000000000 --- a/docs/api/XRTK.SDK.UX.Pointers.HandNearPointer.html +++ /dev/null @@ -1,554 +0,0 @@ - - - - - - - - Class HandNearPointer - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.Pointers.HandSpatialPointer.html b/docs/api/XRTK.SDK.UX.Pointers.HandSpatialPointer.html deleted file mode 100644 index 282ba9a7e..000000000 --- a/docs/api/XRTK.SDK.UX.Pointers.HandSpatialPointer.html +++ /dev/null @@ -1,603 +0,0 @@ - - - - - - - - Class HandSpatialPointer - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.Pointers.LinePointer.html b/docs/api/XRTK.SDK.UX.Pointers.LinePointer.html deleted file mode 100644 index 09c2e255f..000000000 --- a/docs/api/XRTK.SDK.UX.Pointers.LinePointer.html +++ /dev/null @@ -1,785 +0,0 @@ - - - - - - - - Class LinePointer - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.Pointers.MousePointer.html b/docs/api/XRTK.SDK.UX.Pointers.MousePointer.html deleted file mode 100644 index 3fd1364b7..000000000 --- a/docs/api/XRTK.SDK.UX.Pointers.MousePointer.html +++ /dev/null @@ -1,1057 +0,0 @@ - - - - - - - - Class MousePointer - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.Pointers.ParabolicTeleportPointer.html b/docs/api/XRTK.SDK.UX.Pointers.ParabolicTeleportPointer.html deleted file mode 100644 index 5e09acc02..000000000 --- a/docs/api/XRTK.SDK.UX.Pointers.ParabolicTeleportPointer.html +++ /dev/null @@ -1,557 +0,0 @@ - - - - - - - - Class ParabolicTeleportPointer - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.Pointers.TeleportPointer.html b/docs/api/XRTK.SDK.UX.Pointers.TeleportPointer.html deleted file mode 100644 index 377c8ea5e..000000000 --- a/docs/api/XRTK.SDK.UX.Pointers.TeleportPointer.html +++ /dev/null @@ -1,936 +0,0 @@ - - - - - - - - Class TeleportPointer - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.Pointers.TouchPointer.html b/docs/api/XRTK.SDK.UX.Pointers.TouchPointer.html deleted file mode 100644 index 4efa25463..000000000 --- a/docs/api/XRTK.SDK.UX.Pointers.TouchPointer.html +++ /dev/null @@ -1,804 +0,0 @@ - - - - - - - - Class TouchPointer - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.Pointers.html b/docs/api/XRTK.SDK.UX.Pointers.html deleted file mode 100644 index 58dab8e06..000000000 --- a/docs/api/XRTK.SDK.UX.Pointers.html +++ /dev/null @@ -1,139 +0,0 @@ - - - - - - - - Namespace XRTK.SDK.UX.Pointers - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.Receivers.InteractionReceiver.html b/docs/api/XRTK.SDK.UX.Receivers.InteractionReceiver.html deleted file mode 100644 index c600c69d0..000000000 --- a/docs/api/XRTK.SDK.UX.Receivers.InteractionReceiver.html +++ /dev/null @@ -1,1762 +0,0 @@ - - - - - - - - Class InteractionReceiver - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.Receivers.html b/docs/api/XRTK.SDK.UX.Receivers.html deleted file mode 100644 index f60895393..000000000 --- a/docs/api/XRTK.SDK.UX.Receivers.html +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - - Namespace XRTK.SDK.UX.Receivers - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.ToolTips.ConnectorFollowType.html b/docs/api/XRTK.SDK.UX.ToolTips.ConnectorFollowType.html deleted file mode 100644 index 49a799eff..000000000 --- a/docs/api/XRTK.SDK.UX.ToolTips.ConnectorFollowType.html +++ /dev/null @@ -1,179 +0,0 @@ - - - - - - - - Enum ConnectorFollowType - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.ToolTips.ConnectorOrientType.html b/docs/api/XRTK.SDK.UX.ToolTips.ConnectorOrientType.html deleted file mode 100644 index 2d21b6b7d..000000000 --- a/docs/api/XRTK.SDK.UX.ToolTips.ConnectorOrientType.html +++ /dev/null @@ -1,168 +0,0 @@ - - - - - - - - Enum ConnectorOrientType - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.ToolTips.ConnectorPivotDirectionType.html b/docs/api/XRTK.SDK.UX.ToolTips.ConnectorPivotDirectionType.html deleted file mode 100644 index f4552ca48..000000000 --- a/docs/api/XRTK.SDK.UX.ToolTips.ConnectorPivotDirectionType.html +++ /dev/null @@ -1,199 +0,0 @@ - - - - - - - - Enum ConnectorPivotDirectionType - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.ToolTips.ConnectorPivotModeType.html b/docs/api/XRTK.SDK.UX.ToolTips.ConnectorPivotModeType.html deleted file mode 100644 index 56f5eb025..000000000 --- a/docs/api/XRTK.SDK.UX.ToolTips.ConnectorPivotModeType.html +++ /dev/null @@ -1,168 +0,0 @@ - - - - - - - - Enum ConnectorPivotModeType - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.ToolTips.DisplayModeType.html b/docs/api/XRTK.SDK.UX.ToolTips.DisplayModeType.html deleted file mode 100644 index 8ae15f430..000000000 --- a/docs/api/XRTK.SDK.UX.ToolTips.DisplayModeType.html +++ /dev/null @@ -1,178 +0,0 @@ - - - - - - - - Enum DisplayModeType - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.ToolTips.ToolTip.html b/docs/api/XRTK.SDK.UX.ToolTips.ToolTip.html deleted file mode 100644 index eeebf881d..000000000 --- a/docs/api/XRTK.SDK.UX.ToolTips.ToolTip.html +++ /dev/null @@ -1,893 +0,0 @@ - - - - - - - - Class ToolTip - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.ToolTips.ToolTipAttachPointType.html b/docs/api/XRTK.SDK.UX.ToolTips.ToolTipAttachPointType.html deleted file mode 100644 index 02e5ee877..000000000 --- a/docs/api/XRTK.SDK.UX.ToolTips.ToolTipAttachPointType.html +++ /dev/null @@ -1,211 +0,0 @@ - - - - - - - - Enum ToolTipAttachPointType - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.ToolTips.ToolTipBackground.html b/docs/api/XRTK.SDK.UX.ToolTips.ToolTipBackground.html deleted file mode 100644 index 2d47925cc..000000000 --- a/docs/api/XRTK.SDK.UX.ToolTips.ToolTipBackground.html +++ /dev/null @@ -1,276 +0,0 @@ - - - - - - - - Class ToolTipBackground - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.html b/docs/api/XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.html deleted file mode 100644 index a4cdaaab5..000000000 --- a/docs/api/XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.html +++ /dev/null @@ -1,479 +0,0 @@ - - - - - - - - Class ToolTipBackgroundBlob - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.ToolTips.ToolTipBackgroundCorners.html b/docs/api/XRTK.SDK.UX.ToolTips.ToolTipBackgroundCorners.html deleted file mode 100644 index 554d019d6..000000000 --- a/docs/api/XRTK.SDK.UX.ToolTips.ToolTipBackgroundCorners.html +++ /dev/null @@ -1,234 +0,0 @@ - - - - - - - - Class ToolTipBackgroundCorners - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.ToolTips.ToolTipBackgroundMesh.html b/docs/api/XRTK.SDK.UX.ToolTips.ToolTipBackgroundMesh.html deleted file mode 100644 index f533556a0..000000000 --- a/docs/api/XRTK.SDK.UX.ToolTips.ToolTipBackgroundMesh.html +++ /dev/null @@ -1,317 +0,0 @@ - - - - - - - - Class ToolTipBackgroundMesh - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.ToolTips.ToolTipConnector.html b/docs/api/XRTK.SDK.UX.ToolTips.ToolTipConnector.html deleted file mode 100644 index b0c30e877..000000000 --- a/docs/api/XRTK.SDK.UX.ToolTips.ToolTipConnector.html +++ /dev/null @@ -1,507 +0,0 @@ - - - - - - - - Class ToolTipConnector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.ToolTips.ToolTipSpawner.RemainType.html b/docs/api/XRTK.SDK.UX.ToolTips.ToolTipSpawner.RemainType.html deleted file mode 100644 index af3398e6e..000000000 --- a/docs/api/XRTK.SDK.UX.ToolTips.ToolTipSpawner.RemainType.html +++ /dev/null @@ -1,165 +0,0 @@ - - - - - - - - Enum ToolTipSpawner.RemainType - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.ToolTips.ToolTipSpawner.html b/docs/api/XRTK.SDK.UX.ToolTips.ToolTipSpawner.html deleted file mode 100644 index 21133f932..000000000 --- a/docs/api/XRTK.SDK.UX.ToolTips.ToolTipSpawner.html +++ /dev/null @@ -1,374 +0,0 @@ - - - - - - - - Class ToolTipSpawner - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.ToolTips.ToolTipUtility.html b/docs/api/XRTK.SDK.UX.ToolTips.ToolTipUtility.html deleted file mode 100644 index c92dda28a..000000000 --- a/docs/api/XRTK.SDK.UX.ToolTips.ToolTipUtility.html +++ /dev/null @@ -1,268 +0,0 @@ - - - - - - - - Class ToolTipUtility - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.ToolTips.html b/docs/api/XRTK.SDK.UX.ToolTips.html deleted file mode 100644 index 39e9dbece..000000000 --- a/docs/api/XRTK.SDK.UX.ToolTips.html +++ /dev/null @@ -1,172 +0,0 @@ - - - - - - - - Namespace XRTK.SDK.UX.ToolTips - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.Utilities.Billboard.html b/docs/api/XRTK.SDK.UX.Utilities.Billboard.html deleted file mode 100644 index f09418e37..000000000 --- a/docs/api/XRTK.SDK.UX.Utilities.Billboard.html +++ /dev/null @@ -1,255 +0,0 @@ - - - - - - - - Class Billboard - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.Utilities.InteractableHighlight.HighlightedMaterialStyle.html b/docs/api/XRTK.SDK.UX.Utilities.InteractableHighlight.HighlightedMaterialStyle.html deleted file mode 100644 index 26056daf5..000000000 --- a/docs/api/XRTK.SDK.UX.Utilities.InteractableHighlight.HighlightedMaterialStyle.html +++ /dev/null @@ -1,177 +0,0 @@ - - - - - - - - Enum InteractableHighlight.HighlightedMaterialStyle - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.Utilities.InteractableHighlight.html b/docs/api/XRTK.SDK.UX.Utilities.InteractableHighlight.html deleted file mode 100644 index db95d05e1..000000000 --- a/docs/api/XRTK.SDK.UX.Utilities.InteractableHighlight.html +++ /dev/null @@ -1,425 +0,0 @@ - - - - - - - - Class InteractableHighlight - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.Utilities.html b/docs/api/XRTK.SDK.UX.Utilities.html deleted file mode 100644 index dfb6ba374..000000000 --- a/docs/api/XRTK.SDK.UX.Utilities.html +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - - Namespace XRTK.SDK.UX.Utilities - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.UX.html b/docs/api/XRTK.SDK.UX.html deleted file mode 100644 index e1c7c91d8..000000000 --- a/docs/api/XRTK.SDK.UX.html +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - Namespace XRTK.SDK.UX - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.Utilities.Solvers.ConstantViewSize.html b/docs/api/XRTK.SDK.Utilities.Solvers.ConstantViewSize.html deleted file mode 100644 index e8ef7b27f..000000000 --- a/docs/api/XRTK.SDK.Utilities.Solvers.ConstantViewSize.html +++ /dev/null @@ -1,412 +0,0 @@ - - - - - - - - Class ConstantViewSize - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.Utilities.Solvers.ControllerFinder.html b/docs/api/XRTK.SDK.Utilities.Solvers.ControllerFinder.html deleted file mode 100644 index d29c9ee9c..000000000 --- a/docs/api/XRTK.SDK.Utilities.Solvers.ControllerFinder.html +++ /dev/null @@ -1,468 +0,0 @@ - - - - - - - - Class ControllerFinder - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.Utilities.Solvers.InBetween.html b/docs/api/XRTK.SDK.Utilities.Solvers.InBetween.html deleted file mode 100644 index d769fdf2a..000000000 --- a/docs/api/XRTK.SDK.Utilities.Solvers.InBetween.html +++ /dev/null @@ -1,377 +0,0 @@ - - - - - - - - Class InBetween - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.Utilities.Solvers.Momentum.html b/docs/api/XRTK.SDK.Utilities.Solvers.Momentum.html deleted file mode 100644 index b31f51999..000000000 --- a/docs/api/XRTK.SDK.Utilities.Solvers.Momentum.html +++ /dev/null @@ -1,323 +0,0 @@ - - - - - - - - Class Momentum - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.Utilities.Solvers.Orbital.html b/docs/api/XRTK.SDK.Utilities.Solvers.Orbital.html deleted file mode 100644 index ef7bc6577..000000000 --- a/docs/api/XRTK.SDK.Utilities.Solvers.Orbital.html +++ /dev/null @@ -1,435 +0,0 @@ - - - - - - - - Class Orbital - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.Utilities.Solvers.Overlap.html b/docs/api/XRTK.SDK.Utilities.Solvers.Overlap.html deleted file mode 100644 index 3a2af6bc3..000000000 --- a/docs/api/XRTK.SDK.Utilities.Solvers.Overlap.html +++ /dev/null @@ -1,268 +0,0 @@ - - - - - - - - Class Overlap - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.Utilities.Solvers.RadialView.html b/docs/api/XRTK.SDK.Utilities.Solvers.RadialView.html deleted file mode 100644 index 30427c316..000000000 --- a/docs/api/XRTK.SDK.Utilities.Solvers.RadialView.html +++ /dev/null @@ -1,269 +0,0 @@ - - - - - - - - Class RadialView - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.Utilities.Solvers.Solver.html b/docs/api/XRTK.SDK.Utilities.Solvers.Solver.html deleted file mode 100644 index 351737747..000000000 --- a/docs/api/XRTK.SDK.Utilities.Solvers.Solver.html +++ /dev/null @@ -1,694 +0,0 @@ - - - - - - - - Class Solver - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.Utilities.Solvers.SolverHandler.html b/docs/api/XRTK.SDK.Utilities.Solvers.SolverHandler.html deleted file mode 100644 index 65fc6a8aa..000000000 --- a/docs/api/XRTK.SDK.Utilities.Solvers.SolverHandler.html +++ /dev/null @@ -1,640 +0,0 @@ - - - - - - - - Class SolverHandler - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.Utilities.Solvers.SurfaceMagnetism.html b/docs/api/XRTK.SDK.Utilities.Solvers.SurfaceMagnetism.html deleted file mode 100644 index 56c5dff9a..000000000 --- a/docs/api/XRTK.SDK.Utilities.Solvers.SurfaceMagnetism.html +++ /dev/null @@ -1,315 +0,0 @@ - - - - - - - - Class SurfaceMagnetism - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SDK.Utilities.Solvers.html b/docs/api/XRTK.SDK.Utilities.Solvers.html deleted file mode 100644 index 06afb52af..000000000 --- a/docs/api/XRTK.SDK.Utilities.Solvers.html +++ /dev/null @@ -1,148 +0,0 @@ - - - - - - - - Namespace XRTK.SDK.Utilities.Solvers - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Seed.MixedRealityPackageSeed.html b/docs/api/XRTK.Seed.MixedRealityPackageSeed.html deleted file mode 100644 index 7292ba90e..000000000 --- a/docs/api/XRTK.Seed.MixedRealityPackageSeed.html +++ /dev/null @@ -1,167 +0,0 @@ - - - - - - - - Class MixedRealityPackageSeed - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Seed.PackagePickerWindow.html b/docs/api/XRTK.Seed.PackagePickerWindow.html deleted file mode 100644 index 35c76e5a7..000000000 --- a/docs/api/XRTK.Seed.PackagePickerWindow.html +++ /dev/null @@ -1,198 +0,0 @@ - - - - - - - - Class PackagePickerWindow - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Seed.html b/docs/api/XRTK.Seed.html deleted file mode 100644 index 282813a07..000000000 --- a/docs/api/XRTK.Seed.html +++ /dev/null @@ -1,121 +0,0 @@ - - - - - - - - Namespace XRTK.Seed - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Services.BaseDataProvider.html b/docs/api/XRTK.Services.BaseDataProvider.html deleted file mode 100644 index 2350b0019..000000000 --- a/docs/api/XRTK.Services.BaseDataProvider.html +++ /dev/null @@ -1,352 +0,0 @@ - - - - - - - - Class BaseDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Services.BaseEventSystem.html b/docs/api/XRTK.Services.BaseEventSystem.html deleted file mode 100644 index 73899d840..000000000 --- a/docs/api/XRTK.Services.BaseEventSystem.html +++ /dev/null @@ -1,431 +0,0 @@ - - - - - - - - Class BaseEventSystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Services.BaseExtensionDataProvider.html b/docs/api/XRTK.Services.BaseExtensionDataProvider.html deleted file mode 100644 index 1cf634367..000000000 --- a/docs/api/XRTK.Services.BaseExtensionDataProvider.html +++ /dev/null @@ -1,283 +0,0 @@ - - - - - - - - Class BaseExtensionDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Services.BaseExtensionService.html b/docs/api/XRTK.Services.BaseExtensionService.html deleted file mode 100644 index 641cca098..000000000 --- a/docs/api/XRTK.Services.BaseExtensionService.html +++ /dev/null @@ -1,272 +0,0 @@ - - - - - - - - Class BaseExtensionService - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Services.BaseService.html b/docs/api/XRTK.Services.BaseService.html deleted file mode 100644 index c1d2a68bc..000000000 --- a/docs/api/XRTK.Services.BaseService.html +++ /dev/null @@ -1,499 +0,0 @@ - - - - - - - - Class BaseService - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Services.BaseServiceWithConstructor.html b/docs/api/XRTK.Services.BaseServiceWithConstructor.html deleted file mode 100644 index 50679225f..000000000 --- a/docs/api/XRTK.Services.BaseServiceWithConstructor.html +++ /dev/null @@ -1,325 +0,0 @@ - - - - - - - - Class BaseServiceWithConstructor - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Services.BaseSystem.html b/docs/api/XRTK.Services.BaseSystem.html deleted file mode 100644 index a51510ae8..000000000 --- a/docs/api/XRTK.Services.BaseSystem.html +++ /dev/null @@ -1,261 +0,0 @@ - - - - - - - - Class BaseSystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.html b/docs/api/XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.html deleted file mode 100644 index fdca69f55..000000000 --- a/docs/api/XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.html +++ /dev/null @@ -1,899 +0,0 @@ - - - - - - - - Class MixedRealityBoundarySystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Services.BoundarySystem.html b/docs/api/XRTK.Services.BoundarySystem.html deleted file mode 100644 index db1bd80cf..000000000 --- a/docs/api/XRTK.Services.BoundarySystem.html +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - Namespace XRTK.Services.BoundarySystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Services.CameraSystem.DefaultCameraRig.html b/docs/api/XRTK.Services.CameraSystem.DefaultCameraRig.html deleted file mode 100644 index 6d23c1506..000000000 --- a/docs/api/XRTK.Services.CameraSystem.DefaultCameraRig.html +++ /dev/null @@ -1,395 +0,0 @@ - - - - - - - - Class DefaultCameraRig - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Services.CameraSystem.MixedRealityCameraSystem.html b/docs/api/XRTK.Services.CameraSystem.MixedRealityCameraSystem.html deleted file mode 100644 index 4b265a064..000000000 --- a/docs/api/XRTK.Services.CameraSystem.MixedRealityCameraSystem.html +++ /dev/null @@ -1,482 +0,0 @@ - - - - - - - - Class MixedRealityCameraSystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Services.CameraSystem.html b/docs/api/XRTK.Services.CameraSystem.html deleted file mode 100644 index 58c6c944e..000000000 --- a/docs/api/XRTK.Services.CameraSystem.html +++ /dev/null @@ -1,122 +0,0 @@ - - - - - - - - Namespace XRTK.Services.CameraSystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Services.DiagnosticsSystem.BaseMixedRealityDiagnosticsDataProvider.html b/docs/api/XRTK.Services.DiagnosticsSystem.BaseMixedRealityDiagnosticsDataProvider.html deleted file mode 100644 index 70d5ba3df..000000000 --- a/docs/api/XRTK.Services.DiagnosticsSystem.BaseMixedRealityDiagnosticsDataProvider.html +++ /dev/null @@ -1,315 +0,0 @@ - - - - - - - - Class BaseMixedRealityDiagnosticsDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Services.DiagnosticsSystem.DiagnosticsUtils.html b/docs/api/XRTK.Services.DiagnosticsSystem.DiagnosticsUtils.html deleted file mode 100644 index c08218488..000000000 --- a/docs/api/XRTK.Services.DiagnosticsSystem.DiagnosticsUtils.html +++ /dev/null @@ -1,258 +0,0 @@ - - - - - - - - Class DiagnosticsUtils - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Services.DiagnosticsSystem.MixedRealityConsoleDiagnosticsDataProvider.html b/docs/api/XRTK.Services.DiagnosticsSystem.MixedRealityConsoleDiagnosticsDataProvider.html deleted file mode 100644 index 0a99e7f08..000000000 --- a/docs/api/XRTK.Services.DiagnosticsSystem.MixedRealityConsoleDiagnosticsDataProvider.html +++ /dev/null @@ -1,318 +0,0 @@ - - - - - - - - Class MixedRealityConsoleDiagnosticsDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.html b/docs/api/XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.html deleted file mode 100644 index c360b6186..000000000 --- a/docs/api/XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.html +++ /dev/null @@ -1,685 +0,0 @@ - - - - - - - - Class MixedRealityDiagnosticsSystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Services.DiagnosticsSystem.MixedRealityFrameDiagnosticsDataProvider.html b/docs/api/XRTK.Services.DiagnosticsSystem.MixedRealityFrameDiagnosticsDataProvider.html deleted file mode 100644 index dda3aafd6..000000000 --- a/docs/api/XRTK.Services.DiagnosticsSystem.MixedRealityFrameDiagnosticsDataProvider.html +++ /dev/null @@ -1,318 +0,0 @@ - - - - - - - - Class MixedRealityFrameDiagnosticsDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Services.DiagnosticsSystem.MixedRealityMemoryDiagnosticsDataProvider.html b/docs/api/XRTK.Services.DiagnosticsSystem.MixedRealityMemoryDiagnosticsDataProvider.html deleted file mode 100644 index de89db8d4..000000000 --- a/docs/api/XRTK.Services.DiagnosticsSystem.MixedRealityMemoryDiagnosticsDataProvider.html +++ /dev/null @@ -1,302 +0,0 @@ - - - - - - - - Class MixedRealityMemoryDiagnosticsDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Services.DiagnosticsSystem.html b/docs/api/XRTK.Services.DiagnosticsSystem.html deleted file mode 100644 index bfe29d75e..000000000 --- a/docs/api/XRTK.Services.DiagnosticsSystem.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - - - Namespace XRTK.Services.DiagnosticsSystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Services.InputSystem.FocusProvider.html b/docs/api/XRTK.Services.InputSystem.FocusProvider.html deleted file mode 100644 index e3f7f4cf7..000000000 --- a/docs/api/XRTK.Services.InputSystem.FocusProvider.html +++ /dev/null @@ -1,954 +0,0 @@ - - - - - - - - Class FocusProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Services.InputSystem.GazeProvider.html b/docs/api/XRTK.Services.InputSystem.GazeProvider.html deleted file mode 100644 index 1f6b4191f..000000000 --- a/docs/api/XRTK.Services.InputSystem.GazeProvider.html +++ /dev/null @@ -1,809 +0,0 @@ - - - - - - - - Class GazeProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Services.InputSystem.MixedRealityInputSystem.html b/docs/api/XRTK.Services.InputSystem.MixedRealityInputSystem.html deleted file mode 100644 index 4a9a42fb1..000000000 --- a/docs/api/XRTK.Services.InputSystem.MixedRealityInputSystem.html +++ /dev/null @@ -1,3430 +0,0 @@ - - - - - - - - Class MixedRealityInputSystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Services.InputSystem.Pointers.GenericPointer.html b/docs/api/XRTK.Services.InputSystem.Pointers.GenericPointer.html deleted file mode 100644 index 6dd729138..000000000 --- a/docs/api/XRTK.Services.InputSystem.Pointers.GenericPointer.html +++ /dev/null @@ -1,1340 +0,0 @@ - - - - - - - - Class GenericPointer - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Services.InputSystem.Pointers.html b/docs/api/XRTK.Services.InputSystem.Pointers.html deleted file mode 100644 index 1a4433181..000000000 --- a/docs/api/XRTK.Services.InputSystem.Pointers.html +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - Namespace XRTK.Services.InputSystem.Pointers - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Services.InputSystem.Sources.BaseGenericInputSource.html b/docs/api/XRTK.Services.InputSystem.Sources.BaseGenericInputSource.html deleted file mode 100644 index a8a6f875c..000000000 --- a/docs/api/XRTK.Services.InputSystem.Sources.BaseGenericInputSource.html +++ /dev/null @@ -1,546 +0,0 @@ - - - - - - - - Class BaseGenericInputSource - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Services.InputSystem.Sources.html b/docs/api/XRTK.Services.InputSystem.Sources.html deleted file mode 100644 index 37bb069df..000000000 --- a/docs/api/XRTK.Services.InputSystem.Sources.html +++ /dev/null @@ -1,121 +0,0 @@ - - - - - - - - Namespace XRTK.Services.InputSystem.Sources - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Services.InputSystem.html b/docs/api/XRTK.Services.InputSystem.html deleted file mode 100644 index 26105f90e..000000000 --- a/docs/api/XRTK.Services.InputSystem.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - - - Namespace XRTK.Services.InputSystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Services.MixedRealityToolkit.html b/docs/api/XRTK.Services.MixedRealityToolkit.html deleted file mode 100644 index 92e474aba..000000000 --- a/docs/api/XRTK.Services.MixedRealityToolkit.html +++ /dev/null @@ -1,2299 +0,0 @@ - - - - - - - - Class MixedRealityToolkit - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.html b/docs/api/XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.html deleted file mode 100644 index c489825ad..000000000 --- a/docs/api/XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.html +++ /dev/null @@ -1,541 +0,0 @@ - - - - - - - - Class MixedRealityNetworkingSystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Services.NetworkingSystem.html b/docs/api/XRTK.Services.NetworkingSystem.html deleted file mode 100644 index 1fd80103a..000000000 --- a/docs/api/XRTK.Services.NetworkingSystem.html +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - Namespace XRTK.Services.NetworkingSystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.html b/docs/api/XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.html deleted file mode 100644 index 85cb6af71..000000000 --- a/docs/api/XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.html +++ /dev/null @@ -1,956 +0,0 @@ - - - - - - - - Class MixedRealitySpatialAwarenessSystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Services.SpatialAwarenessSystem.html b/docs/api/XRTK.Services.SpatialAwarenessSystem.html deleted file mode 100644 index b29c651be..000000000 --- a/docs/api/XRTK.Services.SpatialAwarenessSystem.html +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - Namespace XRTK.Services.SpatialAwarenessSystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Services.Teleportation.MixedRealityTeleportSystem.html b/docs/api/XRTK.Services.Teleportation.MixedRealityTeleportSystem.html deleted file mode 100644 index d2ada33fb..000000000 --- a/docs/api/XRTK.Services.Teleportation.MixedRealityTeleportSystem.html +++ /dev/null @@ -1,632 +0,0 @@ - - - - - - - - Class MixedRealityTeleportSystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Services.Teleportation.MixedRealityTeleportValidationDataProvider.html b/docs/api/XRTK.Services.Teleportation.MixedRealityTeleportValidationDataProvider.html deleted file mode 100644 index 5b069e223..000000000 --- a/docs/api/XRTK.Services.Teleportation.MixedRealityTeleportValidationDataProvider.html +++ /dev/null @@ -1,344 +0,0 @@ - - - - - - - - Class MixedRealityTeleportValidationDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Services.Teleportation.TeleportValidationResult.html b/docs/api/XRTK.Services.Teleportation.TeleportValidationResult.html deleted file mode 100644 index 5272df1c2..000000000 --- a/docs/api/XRTK.Services.Teleportation.TeleportValidationResult.html +++ /dev/null @@ -1,175 +0,0 @@ - - - - - - - - Enum TeleportValidationResult - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Services.Teleportation.html b/docs/api/XRTK.Services.Teleportation.html deleted file mode 100644 index 7ac093449..000000000 --- a/docs/api/XRTK.Services.Teleportation.html +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - - Namespace XRTK.Services.Teleportation - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Services.html b/docs/api/XRTK.Services.html deleted file mode 100644 index d336cdd97..000000000 --- a/docs/api/XRTK.Services.html +++ /dev/null @@ -1,142 +0,0 @@ - - - - - - - - Namespace XRTK.Services - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SteamVR.Editor.SteamVRPathFinder.html b/docs/api/XRTK.SteamVR.Editor.SteamVRPathFinder.html deleted file mode 100644 index 5cf1feedf..000000000 --- a/docs/api/XRTK.SteamVR.Editor.SteamVRPathFinder.html +++ /dev/null @@ -1,220 +0,0 @@ - - - - - - - - Class SteamVRPathFinder - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SteamVR.Editor.SteamVRPluginUtility.html b/docs/api/XRTK.SteamVR.Editor.SteamVRPluginUtility.html deleted file mode 100644 index f5f4cd4cd..000000000 --- a/docs/api/XRTK.SteamVR.Editor.SteamVRPluginUtility.html +++ /dev/null @@ -1,156 +0,0 @@ - - - - - - - - Class SteamVRPluginUtility - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SteamVR.Editor.html b/docs/api/XRTK.SteamVR.Editor.html deleted file mode 100644 index 2af1e2d24..000000000 --- a/docs/api/XRTK.SteamVR.Editor.html +++ /dev/null @@ -1,121 +0,0 @@ - - - - - - - - Namespace XRTK.SteamVR.Editor - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SteamVR.Profiles.SteamVRControllerDataProviderProfile.html b/docs/api/XRTK.SteamVR.Profiles.SteamVRControllerDataProviderProfile.html deleted file mode 100644 index 632ceaa30..000000000 --- a/docs/api/XRTK.SteamVR.Profiles.SteamVRControllerDataProviderProfile.html +++ /dev/null @@ -1,163 +0,0 @@ - - - - - - - - Class SteamVRControllerDataProviderProfile - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SteamVR.Profiles.html b/docs/api/XRTK.SteamVR.Profiles.html deleted file mode 100644 index a88b79d72..000000000 --- a/docs/api/XRTK.SteamVR.Profiles.html +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - Namespace XRTK.SteamVR.Profiles - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SteamVR.Providers.CameraSystem.SteamVRCameraDataProvider.html b/docs/api/XRTK.SteamVR.Providers.CameraSystem.SteamVRCameraDataProvider.html deleted file mode 100644 index 8aa6ceb65..000000000 --- a/docs/api/XRTK.SteamVR.Providers.CameraSystem.SteamVRCameraDataProvider.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - - - Class SteamVRCameraDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SteamVR.Providers.CameraSystem.html b/docs/api/XRTK.SteamVR.Providers.CameraSystem.html deleted file mode 100644 index edad4d6e7..000000000 --- a/docs/api/XRTK.SteamVR.Providers.CameraSystem.html +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - Namespace XRTK.SteamVR.Providers.CameraSystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SteamVR.Providers.Controllers.SteamVRController.html b/docs/api/XRTK.SteamVR.Providers.Controllers.SteamVRController.html deleted file mode 100644 index 72fcbc846..000000000 --- a/docs/api/XRTK.SteamVR.Providers.Controllers.SteamVRController.html +++ /dev/null @@ -1,132 +0,0 @@ - - - - - - - - Class SteamVRController - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SteamVR.Providers.Controllers.SteamVRControllerDataProvider.html b/docs/api/XRTK.SteamVR.Providers.Controllers.SteamVRControllerDataProvider.html deleted file mode 100644 index 7c04e8150..000000000 --- a/docs/api/XRTK.SteamVR.Providers.Controllers.SteamVRControllerDataProvider.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - - - Class SteamVRControllerDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.SteamVR.Providers.Controllers.html b/docs/api/XRTK.SteamVR.Providers.Controllers.html deleted file mode 100644 index f37b28fa3..000000000 --- a/docs/api/XRTK.SteamVR.Providers.Controllers.html +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - - Namespace XRTK.SteamVR.Providers.Controllers - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html b/docs/api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html deleted file mode 100644 index 776dac60e..000000000 --- a/docs/api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html +++ /dev/null @@ -1,599 +0,0 @@ - - - - - - - - Class TestFixture_01_MixedRealityToolkitTests - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Tests.Core.TestFixture_02_MixedRealityToolkitUtilityTests.html b/docs/api/XRTK.Tests.Core.TestFixture_02_MixedRealityToolkitUtilityTests.html deleted file mode 100644 index 4920b56ee..000000000 --- a/docs/api/XRTK.Tests.Core.TestFixture_02_MixedRealityToolkitUtilityTests.html +++ /dev/null @@ -1,209 +0,0 @@ - - - - - - - - Class TestFixture_02_MixedRealityToolkitUtilityTests - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Tests.Core.TestFixture_03_ExtensionsTests.html b/docs/api/XRTK.Tests.Core.TestFixture_03_ExtensionsTests.html deleted file mode 100644 index fbdcd4975..000000000 --- a/docs/api/XRTK.Tests.Core.TestFixture_03_ExtensionsTests.html +++ /dev/null @@ -1,194 +0,0 @@ - - - - - - - - Class TestFixture_03_ExtensionsTests - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Tests.Core.html b/docs/api/XRTK.Tests.Core.html deleted file mode 100644 index 607fd6937..000000000 --- a/docs/api/XRTK.Tests.Core.html +++ /dev/null @@ -1,122 +0,0 @@ - - - - - - - - Namespace XRTK.Tests.Core - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Tests.Extensions.EnumExtensionTests.html b/docs/api/XRTK.Tests.Extensions.EnumExtensionTests.html deleted file mode 100644 index cf1553e25..000000000 --- a/docs/api/XRTK.Tests.Extensions.EnumExtensionTests.html +++ /dev/null @@ -1,239 +0,0 @@ - - - - - - - - Class EnumExtensionTests - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Tests.Extensions.html b/docs/api/XRTK.Tests.Extensions.html deleted file mode 100644 index 2bd443e4b..000000000 --- a/docs/api/XRTK.Tests.Extensions.html +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - Namespace XRTK.Tests.Extensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Tests.InputSystem.InputSystemTestUtilities.html b/docs/api/XRTK.Tests.InputSystem.InputSystemTestUtilities.html deleted file mode 100644 index c3329c72b..000000000 --- a/docs/api/XRTK.Tests.InputSystem.InputSystemTestUtilities.html +++ /dev/null @@ -1,219 +0,0 @@ - - - - - - - - Class InputSystemTestUtilities - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Tests.InputSystem.TestFixture_01_UnityInputManagerHelperTests.html b/docs/api/XRTK.Tests.InputSystem.TestFixture_01_UnityInputManagerHelperTests.html deleted file mode 100644 index 201d42360..000000000 --- a/docs/api/XRTK.Tests.InputSystem.TestFixture_01_UnityInputManagerHelperTests.html +++ /dev/null @@ -1,209 +0,0 @@ - - - - - - - - Class TestFixture_01_UnityInputManagerHelperTests - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html b/docs/api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html deleted file mode 100644 index a214a7c4b..000000000 --- a/docs/api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html +++ /dev/null @@ -1,861 +0,0 @@ - - - - - - - - Class TestFixture_02_InteractionDefinitionTests - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Tests.InputSystem.TestFixture_03_InputSystemTests.html b/docs/api/XRTK.Tests.InputSystem.TestFixture_03_InputSystemTests.html deleted file mode 100644 index 122dd824e..000000000 --- a/docs/api/XRTK.Tests.InputSystem.TestFixture_03_InputSystemTests.html +++ /dev/null @@ -1,239 +0,0 @@ - - - - - - - - Class TestFixture_03_InputSystemTests - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Tests.InputSystem.TestFixture_04_InputActionTests.html b/docs/api/XRTK.Tests.InputSystem.TestFixture_04_InputActionTests.html deleted file mode 100644 index 01bafb53c..000000000 --- a/docs/api/XRTK.Tests.InputSystem.TestFixture_04_InputActionTests.html +++ /dev/null @@ -1,224 +0,0 @@ - - - - - - - - Class TestFixture_04_InputActionTests - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Tests.InputSystem.html b/docs/api/XRTK.Tests.InputSystem.html deleted file mode 100644 index c26d58e98..000000000 --- a/docs/api/XRTK.Tests.InputSystem.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - - - Namespace XRTK.Tests.InputSystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Tests.TestUtilities.html b/docs/api/XRTK.Tests.TestUtilities.html deleted file mode 100644 index d2b36e201..000000000 --- a/docs/api/XRTK.Tests.TestUtilities.html +++ /dev/null @@ -1,219 +0,0 @@ - - - - - - - - Class TestUtilities - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Tests.html b/docs/api/XRTK.Tests.html deleted file mode 100644 index 9f42572d8..000000000 --- a/docs/api/XRTK.Tests.html +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - Namespace XRTK.Tests - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Ultraleap.Definitions.UltraleapDeviceOffsetMode.html b/docs/api/XRTK.Ultraleap.Definitions.UltraleapDeviceOffsetMode.html deleted file mode 100644 index a21e1a6d7..000000000 --- a/docs/api/XRTK.Ultraleap.Definitions.UltraleapDeviceOffsetMode.html +++ /dev/null @@ -1,170 +0,0 @@ - - - - - - - - Enum UltraleapDeviceOffsetMode - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Ultraleap.Definitions.UltraleapFrameOptimizationMode.html b/docs/api/XRTK.Ultraleap.Definitions.UltraleapFrameOptimizationMode.html deleted file mode 100644 index 04a5d10ca..000000000 --- a/docs/api/XRTK.Ultraleap.Definitions.UltraleapFrameOptimizationMode.html +++ /dev/null @@ -1,170 +0,0 @@ - - - - - - - - Enum UltraleapFrameOptimizationMode - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Ultraleap.Definitions.UltraleapOperationMode.html b/docs/api/XRTK.Ultraleap.Definitions.UltraleapOperationMode.html deleted file mode 100644 index 26045312a..000000000 --- a/docs/api/XRTK.Ultraleap.Definitions.UltraleapOperationMode.html +++ /dev/null @@ -1,170 +0,0 @@ - - - - - - - - Enum UltraleapOperationMode - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Ultraleap.Definitions.html b/docs/api/XRTK.Ultraleap.Definitions.html deleted file mode 100644 index efc10d01b..000000000 --- a/docs/api/XRTK.Ultraleap.Definitions.html +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - - Namespace XRTK.Ultraleap.Definitions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Ultraleap.Editor.Inspectors.UltraleapHandControllerDataProviderProfileInspector.html b/docs/api/XRTK.Ultraleap.Editor.Inspectors.UltraleapHandControllerDataProviderProfileInspector.html deleted file mode 100644 index f72efee87..000000000 --- a/docs/api/XRTK.Ultraleap.Editor.Inspectors.UltraleapHandControllerDataProviderProfileInspector.html +++ /dev/null @@ -1,239 +0,0 @@ - - - - - - - - Class UltraleapHandControllerDataProviderProfileInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Ultraleap.Editor.Inspectors.html b/docs/api/XRTK.Ultraleap.Editor.Inspectors.html deleted file mode 100644 index 6bb170ab2..000000000 --- a/docs/api/XRTK.Ultraleap.Editor.Inspectors.html +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - Namespace XRTK.Ultraleap.Editor.Inspectors - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Ultraleap.Editor.UltraleapPathFinder.html b/docs/api/XRTK.Ultraleap.Editor.UltraleapPathFinder.html deleted file mode 100644 index aa36d8914..000000000 --- a/docs/api/XRTK.Ultraleap.Editor.UltraleapPathFinder.html +++ /dev/null @@ -1,239 +0,0 @@ - - - - - - - - Class UltraleapPathFinder - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Ultraleap.Editor.UltraleapPluginUtility.html b/docs/api/XRTK.Ultraleap.Editor.UltraleapPluginUtility.html deleted file mode 100644 index 3c1889950..000000000 --- a/docs/api/XRTK.Ultraleap.Editor.UltraleapPluginUtility.html +++ /dev/null @@ -1,156 +0,0 @@ - - - - - - - - Class UltraleapPluginUtility - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Ultraleap.Editor.html b/docs/api/XRTK.Ultraleap.Editor.html deleted file mode 100644 index f3b3ff9ec..000000000 --- a/docs/api/XRTK.Ultraleap.Editor.html +++ /dev/null @@ -1,121 +0,0 @@ - - - - - - - - Namespace XRTK.Ultraleap.Editor - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Ultraleap.Extensions.QuaternionExtensions.html b/docs/api/XRTK.Ultraleap.Extensions.QuaternionExtensions.html deleted file mode 100644 index ccac76e9e..000000000 --- a/docs/api/XRTK.Ultraleap.Extensions.QuaternionExtensions.html +++ /dev/null @@ -1,256 +0,0 @@ - - - - - - - - Class QuaternionExtensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Ultraleap.Extensions.TransformExtensions.html b/docs/api/XRTK.Ultraleap.Extensions.TransformExtensions.html deleted file mode 100644 index 48ff2fd07..000000000 --- a/docs/api/XRTK.Ultraleap.Extensions.TransformExtensions.html +++ /dev/null @@ -1,211 +0,0 @@ - - - - - - - - Class TransformExtensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Ultraleap.Extensions.VectorExtensions.html b/docs/api/XRTK.Ultraleap.Extensions.VectorExtensions.html deleted file mode 100644 index cdc51f210..000000000 --- a/docs/api/XRTK.Ultraleap.Extensions.VectorExtensions.html +++ /dev/null @@ -1,258 +0,0 @@ - - - - - - - - Class VectorExtensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Ultraleap.Extensions.html b/docs/api/XRTK.Ultraleap.Extensions.html deleted file mode 100644 index b8d16d9f8..000000000 --- a/docs/api/XRTK.Ultraleap.Extensions.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - - - Namespace XRTK.Ultraleap.Extensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Ultraleap.Profiles.UltraleapControllerDataProviderProfile.html b/docs/api/XRTK.Ultraleap.Profiles.UltraleapControllerDataProviderProfile.html deleted file mode 100644 index f69295fbb..000000000 --- a/docs/api/XRTK.Ultraleap.Profiles.UltraleapControllerDataProviderProfile.html +++ /dev/null @@ -1,163 +0,0 @@ - - - - - - - - Class UltraleapControllerDataProviderProfile - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.html b/docs/api/XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.html deleted file mode 100644 index 4ea4f1726..000000000 --- a/docs/api/XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.html +++ /dev/null @@ -1,517 +0,0 @@ - - - - - - - - Class UltraleapHandControllerDataProviderProfile - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Ultraleap.Profiles.html b/docs/api/XRTK.Ultraleap.Profiles.html deleted file mode 100644 index 8de701cd5..000000000 --- a/docs/api/XRTK.Ultraleap.Profiles.html +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - - Namespace XRTK.Ultraleap.Profiles - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Ultraleap.Providers.CameraSystem.UltraleapCameraDataProvider.html b/docs/api/XRTK.Ultraleap.Providers.CameraSystem.UltraleapCameraDataProvider.html deleted file mode 100644 index 7265eb9e4..000000000 --- a/docs/api/XRTK.Ultraleap.Providers.CameraSystem.UltraleapCameraDataProvider.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - - - Class UltraleapCameraDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Ultraleap.Providers.CameraSystem.html b/docs/api/XRTK.Ultraleap.Providers.CameraSystem.html deleted file mode 100644 index b17bbf0aa..000000000 --- a/docs/api/XRTK.Ultraleap.Providers.CameraSystem.html +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - Namespace XRTK.Ultraleap.Providers.CameraSystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Ultraleap.Providers.Controllers.UltraleapController.html b/docs/api/XRTK.Ultraleap.Providers.Controllers.UltraleapController.html deleted file mode 100644 index df3f1f7da..000000000 --- a/docs/api/XRTK.Ultraleap.Providers.Controllers.UltraleapController.html +++ /dev/null @@ -1,132 +0,0 @@ - - - - - - - - Class UltraleapController - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Ultraleap.Providers.Controllers.UltraleapControllerDataProvider.html b/docs/api/XRTK.Ultraleap.Providers.Controllers.UltraleapControllerDataProvider.html deleted file mode 100644 index 8154d1a7c..000000000 --- a/docs/api/XRTK.Ultraleap.Providers.Controllers.UltraleapControllerDataProvider.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - - - Class UltraleapControllerDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.html b/docs/api/XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.html deleted file mode 100644 index eddd69c2d..000000000 --- a/docs/api/XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.html +++ /dev/null @@ -1,458 +0,0 @@ - - - - - - - - Class UltraleapHandControllerDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Ultraleap.Providers.Controllers.html b/docs/api/XRTK.Ultraleap.Providers.Controllers.html deleted file mode 100644 index 9e4fffd8b..000000000 --- a/docs/api/XRTK.Ultraleap.Providers.Controllers.html +++ /dev/null @@ -1,121 +0,0 @@ - - - - - - - - Namespace XRTK.Ultraleap.Providers.Controllers - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Ultraleap.Tests.ExampleTestScript.html b/docs/api/XRTK.Ultraleap.Tests.ExampleTestScript.html deleted file mode 100644 index 6c146390a..000000000 --- a/docs/api/XRTK.Ultraleap.Tests.ExampleTestScript.html +++ /dev/null @@ -1,179 +0,0 @@ - - - - - - - - Class ExampleTestScript - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Ultraleap.Tests.html b/docs/api/XRTK.Ultraleap.Tests.html deleted file mode 100644 index f43d62dfc..000000000 --- a/docs/api/XRTK.Ultraleap.Tests.html +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - Namespace XRTK.Ultraleap.Tests - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Async.AwaitYieldInstructions.BackgroundThread.html b/docs/api/XRTK.Utilities.Async.AwaitYieldInstructions.BackgroundThread.html deleted file mode 100644 index 75213eeb0..000000000 --- a/docs/api/XRTK.Utilities.Async.AwaitYieldInstructions.BackgroundThread.html +++ /dev/null @@ -1,198 +0,0 @@ - - - - - - - - Class BackgroundThread - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Async.AwaitYieldInstructions.UnityMainThread.html b/docs/api/XRTK.Utilities.Async.AwaitYieldInstructions.UnityMainThread.html deleted file mode 100644 index 806bc9e4a..000000000 --- a/docs/api/XRTK.Utilities.Async.AwaitYieldInstructions.UnityMainThread.html +++ /dev/null @@ -1,213 +0,0 @@ - - - - - - - - Class UnityMainThread - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Async.AwaitYieldInstructions.html b/docs/api/XRTK.Utilities.Async.AwaitYieldInstructions.html deleted file mode 100644 index a90e03688..000000000 --- a/docs/api/XRTK.Utilities.Async.AwaitYieldInstructions.html +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - - - Namespace XRTK.Utilities.Async.AwaitYieldInstructions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter-1.html b/docs/api/XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter-1.html deleted file mode 100644 index 291c27adf..000000000 --- a/docs/api/XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter-1.html +++ /dev/null @@ -1,322 +0,0 @@ - - - - - - - - Class AwaiterExtensions.SimpleCoroutineAwaiter<T> - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter.html b/docs/api/XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter.html deleted file mode 100644 index d3209350e..000000000 --- a/docs/api/XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter.html +++ /dev/null @@ -1,286 +0,0 @@ - - - - - - - - Class AwaiterExtensions.SimpleCoroutineAwaiter - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Async.AwaiterExtensions.html b/docs/api/XRTK.Utilities.Async.AwaiterExtensions.html deleted file mode 100644 index 751456fce..000000000 --- a/docs/api/XRTK.Utilities.Async.AwaiterExtensions.html +++ /dev/null @@ -1,833 +0,0 @@ - - - - - - - - Class AwaiterExtensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Async.Awaiters.html b/docs/api/XRTK.Utilities.Async.Awaiters.html deleted file mode 100644 index a3ac669e6..000000000 --- a/docs/api/XRTK.Utilities.Async.Awaiters.html +++ /dev/null @@ -1,321 +0,0 @@ - - - - - - - - Class Awaiters - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Async.Internal.SyncContextUtility.html b/docs/api/XRTK.Utilities.Async.Internal.SyncContextUtility.html deleted file mode 100644 index 7b9d0bb8f..000000000 --- a/docs/api/XRTK.Utilities.Async.Internal.SyncContextUtility.html +++ /dev/null @@ -1,251 +0,0 @@ - - - - - - - - Class SyncContextUtility - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Async.Internal.html b/docs/api/XRTK.Utilities.Async.Internal.html deleted file mode 100644 index eb1eab1f0..000000000 --- a/docs/api/XRTK.Utilities.Async.Internal.html +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - Namespace XRTK.Utilities.Async.Internal - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Async.html b/docs/api/XRTK.Utilities.Async.html deleted file mode 100644 index c00d59c15..000000000 --- a/docs/api/XRTK.Utilities.Async.html +++ /dev/null @@ -1,130 +0,0 @@ - - - - - - - - Namespace XRTK.Utilities.Async - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.BoundsCache.html b/docs/api/XRTK.Utilities.BoundsCache.html deleted file mode 100644 index a4efaba5b..000000000 --- a/docs/api/XRTK.Utilities.BoundsCache.html +++ /dev/null @@ -1,317 +0,0 @@ - - - - - - - - Class BoundsCache - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.CalibrationSpace.html b/docs/api/XRTK.Utilities.CalibrationSpace.html deleted file mode 100644 index bf4f93d29..000000000 --- a/docs/api/XRTK.Utilities.CalibrationSpace.html +++ /dev/null @@ -1,191 +0,0 @@ - - - - - - - - Class CalibrationSpace - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.CameraCache.html b/docs/api/XRTK.Utilities.CameraCache.html deleted file mode 100644 index c308953f5..000000000 --- a/docs/api/XRTK.Utilities.CameraCache.html +++ /dev/null @@ -1,241 +0,0 @@ - - - - - - - - Class CameraCache - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.CanvasUtility.html b/docs/api/XRTK.Utilities.CanvasUtility.html deleted file mode 100644 index b605f9518..000000000 --- a/docs/api/XRTK.Utilities.CanvasUtility.html +++ /dev/null @@ -1,226 +0,0 @@ - - - - - - - - Class CanvasUtility - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.DebugUtilities.html b/docs/api/XRTK.Utilities.DebugUtilities.html deleted file mode 100644 index c73e8786e..000000000 --- a/docs/api/XRTK.Utilities.DebugUtilities.html +++ /dev/null @@ -1,248 +0,0 @@ - - - - - - - - Class DebugUtilities - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.EdgeUtilities.html b/docs/api/XRTK.Utilities.EdgeUtilities.html deleted file mode 100644 index 51bca9118..000000000 --- a/docs/api/XRTK.Utilities.EdgeUtilities.html +++ /dev/null @@ -1,355 +0,0 @@ - - - - - - - - Class EdgeUtilities - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.FastSimplexNoise.html b/docs/api/XRTK.Utilities.FastSimplexNoise.html deleted file mode 100644 index 5ce577936..000000000 --- a/docs/api/XRTK.Utilities.FastSimplexNoise.html +++ /dev/null @@ -1,385 +0,0 @@ - - - - - - - - Class FastSimplexNoise - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.GltfAsset.html b/docs/api/XRTK.Utilities.Gltf.GltfAsset.html deleted file mode 100644 index 00c6a958b..000000000 --- a/docs/api/XRTK.Utilities.Gltf.GltfAsset.html +++ /dev/null @@ -1,256 +0,0 @@ - - - - - - - - Class GltfAsset - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Schema.Extensions.GltfExtension.html b/docs/api/XRTK.Utilities.Gltf.Schema.Extensions.GltfExtension.html deleted file mode 100644 index 69b5ed723..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Schema.Extensions.GltfExtension.html +++ /dev/null @@ -1,194 +0,0 @@ - - - - - - - - Class GltfExtension - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Schema.Extensions.KHR_Materials_PbrSpecularGlossiness.html b/docs/api/XRTK.Utilities.Gltf.Schema.Extensions.KHR_Materials_PbrSpecularGlossiness.html deleted file mode 100644 index fac4349cf..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Schema.Extensions.KHR_Materials_PbrSpecularGlossiness.html +++ /dev/null @@ -1,314 +0,0 @@ - - - - - - - - Class KHR_Materials_PbrSpecularGlossiness - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Schema.Extensions.html b/docs/api/XRTK.Utilities.Gltf.Schema.Extensions.html deleted file mode 100644 index b8bedf7e9..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Schema.Extensions.html +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - - Namespace XRTK.Utilities.Gltf.Schema.Extensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Schema.GltfAccessor.html b/docs/api/XRTK.Utilities.Gltf.Schema.GltfAccessor.html deleted file mode 100644 index 68ab048e9..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Schema.GltfAccessor.html +++ /dev/null @@ -1,516 +0,0 @@ - - - - - - - - Class GltfAccessor - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Schema.GltfAccessorAttributeType.html b/docs/api/XRTK.Utilities.Gltf.Schema.GltfAccessorAttributeType.html deleted file mode 100644 index 02980212b..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Schema.GltfAccessorAttributeType.html +++ /dev/null @@ -1,187 +0,0 @@ - - - - - - - - Enum GltfAccessorAttributeType - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Schema.GltfAccessorSparse.html b/docs/api/XRTK.Utilities.Gltf.Schema.GltfAccessorSparse.html deleted file mode 100644 index 835555235..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Schema.GltfAccessorSparse.html +++ /dev/null @@ -1,268 +0,0 @@ - - - - - - - - Class GltfAccessorSparse - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Schema.GltfAccessorSparseIndices.html b/docs/api/XRTK.Utilities.Gltf.Schema.GltfAccessorSparseIndices.html deleted file mode 100644 index 37f250797..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Schema.GltfAccessorSparseIndices.html +++ /dev/null @@ -1,269 +0,0 @@ - - - - - - - - Class GltfAccessorSparseIndices - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Schema.GltfAccessorSparseValues.html b/docs/api/XRTK.Utilities.Gltf.Schema.GltfAccessorSparseValues.html deleted file mode 100644 index bd3dd3908..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Schema.GltfAccessorSparseValues.html +++ /dev/null @@ -1,235 +0,0 @@ - - - - - - - - Class GltfAccessorSparseValues - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Schema.GltfAlphaMode.html b/docs/api/XRTK.Utilities.Gltf.Schema.GltfAlphaMode.html deleted file mode 100644 index 4304d42f9..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Schema.GltfAlphaMode.html +++ /dev/null @@ -1,171 +0,0 @@ - - - - - - - - Enum GltfAlphaMode - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Schema.GltfAnimation.html b/docs/api/XRTK.Utilities.Gltf.Schema.GltfAnimation.html deleted file mode 100644 index 6fee214b4..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Schema.GltfAnimation.html +++ /dev/null @@ -1,241 +0,0 @@ - - - - - - - - Class GltfAnimation - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Schema.GltfAnimationChannel.html b/docs/api/XRTK.Utilities.Gltf.Schema.GltfAnimationChannel.html deleted file mode 100644 index ced317df9..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Schema.GltfAnimationChannel.html +++ /dev/null @@ -1,235 +0,0 @@ - - - - - - - - Class GltfAnimationChannel - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Schema.GltfAnimationChannelPath.html b/docs/api/XRTK.Utilities.Gltf.Schema.GltfAnimationChannelPath.html deleted file mode 100644 index 6244b2f8e..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Schema.GltfAnimationChannelPath.html +++ /dev/null @@ -1,178 +0,0 @@ - - - - - - - - Enum GltfAnimationChannelPath - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Schema.GltfAnimationChannelTarget.html b/docs/api/XRTK.Utilities.Gltf.Schema.GltfAnimationChannelTarget.html deleted file mode 100644 index 7007104a9..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Schema.GltfAnimationChannelTarget.html +++ /dev/null @@ -1,234 +0,0 @@ - - - - - - - - Class GltfAnimationChannelTarget - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Schema.GltfAnimationSampler.html b/docs/api/XRTK.Utilities.Gltf.Schema.GltfAnimationSampler.html deleted file mode 100644 index 49fbc7fd2..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Schema.GltfAnimationSampler.html +++ /dev/null @@ -1,273 +0,0 @@ - - - - - - - - Class GltfAnimationSampler - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Schema.GltfAssetInfo.html b/docs/api/XRTK.Utilities.Gltf.Schema.GltfAssetInfo.html deleted file mode 100644 index 41b6925a8..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Schema.GltfAssetInfo.html +++ /dev/null @@ -1,294 +0,0 @@ - - - - - - - - Class GltfAssetInfo - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Schema.GltfBuffer.html b/docs/api/XRTK.Utilities.Gltf.Schema.GltfBuffer.html deleted file mode 100644 index a8e329099..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Schema.GltfBuffer.html +++ /dev/null @@ -1,273 +0,0 @@ - - - - - - - - Class GltfBuffer - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Schema.GltfBufferView.html b/docs/api/XRTK.Utilities.Gltf.Schema.GltfBufferView.html deleted file mode 100644 index 678ac7ea9..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Schema.GltfBufferView.html +++ /dev/null @@ -1,368 +0,0 @@ - - - - - - - - Class GltfBufferView - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Schema.GltfBufferViewTarget.html b/docs/api/XRTK.Utilities.Gltf.Schema.GltfBufferViewTarget.html deleted file mode 100644 index 6164dfc32..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Schema.GltfBufferViewTarget.html +++ /dev/null @@ -1,171 +0,0 @@ - - - - - - - - Enum GltfBufferViewTarget - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Schema.GltfCamera.html b/docs/api/XRTK.Utilities.Gltf.Schema.GltfCamera.html deleted file mode 100644 index 8652edd69..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Schema.GltfCamera.html +++ /dev/null @@ -1,273 +0,0 @@ - - - - - - - - Class GltfCamera - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Schema.GltfCameraOrthographic.html b/docs/api/XRTK.Utilities.Gltf.Schema.GltfCameraOrthographic.html deleted file mode 100644 index a32fca742..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Schema.GltfCameraOrthographic.html +++ /dev/null @@ -1,295 +0,0 @@ - - - - - - - - Class GltfCameraOrthographic - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Schema.GltfCameraPerspective.html b/docs/api/XRTK.Utilities.Gltf.Schema.GltfCameraPerspective.html deleted file mode 100644 index cf38e38d5..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Schema.GltfCameraPerspective.html +++ /dev/null @@ -1,302 +0,0 @@ - - - - - - - - Class GltfCameraPerspective - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Schema.GltfCameraType.html b/docs/api/XRTK.Utilities.Gltf.Schema.GltfCameraType.html deleted file mode 100644 index 6900927f9..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Schema.GltfCameraType.html +++ /dev/null @@ -1,167 +0,0 @@ - - - - - - - - Enum GltfCameraType - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Schema.GltfChildOfRootProperty.html b/docs/api/XRTK.Utilities.Gltf.Schema.GltfChildOfRootProperty.html deleted file mode 100644 index 4c402fe39..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Schema.GltfChildOfRootProperty.html +++ /dev/null @@ -1,218 +0,0 @@ - - - - - - - - Class GltfChildOfRootProperty - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Schema.GltfComponentType.html b/docs/api/XRTK.Utilities.Gltf.Schema.GltfComponentType.html deleted file mode 100644 index 7a2cfaf37..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Schema.GltfComponentType.html +++ /dev/null @@ -1,185 +0,0 @@ - - - - - - - - Enum GltfComponentType - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Schema.GltfDrawMode.html b/docs/api/XRTK.Utilities.Gltf.Schema.GltfDrawMode.html deleted file mode 100644 index aafb47d50..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Schema.GltfDrawMode.html +++ /dev/null @@ -1,187 +0,0 @@ - - - - - - - - Enum GltfDrawMode - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Schema.GltfImage.html b/docs/api/XRTK.Utilities.Gltf.Schema.GltfImage.html deleted file mode 100644 index af2bcd6a1..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Schema.GltfImage.html +++ /dev/null @@ -1,305 +0,0 @@ - - - - - - - - Class GltfImage - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Schema.GltfInterpolationType.html b/docs/api/XRTK.Utilities.Gltf.Schema.GltfInterpolationType.html deleted file mode 100644 index 2b6ebc516..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Schema.GltfInterpolationType.html +++ /dev/null @@ -1,175 +0,0 @@ - - - - - - - - Enum GltfInterpolationType - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Schema.GltfMagnificationFilterMode.html b/docs/api/XRTK.Utilities.Gltf.Schema.GltfMagnificationFilterMode.html deleted file mode 100644 index 83c4c6d5e..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Schema.GltfMagnificationFilterMode.html +++ /dev/null @@ -1,171 +0,0 @@ - - - - - - - - Enum GltfMagnificationFilterMode - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Schema.GltfMaterial.html b/docs/api/XRTK.Utilities.Gltf.Schema.GltfMaterial.html deleted file mode 100644 index e310d35e5..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Schema.GltfMaterial.html +++ /dev/null @@ -1,505 +0,0 @@ - - - - - - - - Class GltfMaterial - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Schema.GltfMaterialCommonConstant.html b/docs/api/XRTK.Utilities.Gltf.Schema.GltfMaterialCommonConstant.html deleted file mode 100644 index 989a35a5b..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Schema.GltfMaterialCommonConstant.html +++ /dev/null @@ -1,262 +0,0 @@ - - - - - - - - Class GltfMaterialCommonConstant - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Schema.GltfMesh.html b/docs/api/XRTK.Utilities.Gltf.Schema.GltfMesh.html deleted file mode 100644 index f0b1ee47e..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Schema.GltfMesh.html +++ /dev/null @@ -1,275 +0,0 @@ - - - - - - - - Class GltfMesh - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Schema.GltfMeshPrimitive.html b/docs/api/XRTK.Utilities.Gltf.Schema.GltfMeshPrimitive.html deleted file mode 100644 index 9da58f3a0..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Schema.GltfMeshPrimitive.html +++ /dev/null @@ -1,371 +0,0 @@ - - - - - - - - Class GltfMeshPrimitive - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Schema.GltfMeshPrimitiveAttributes.html b/docs/api/XRTK.Utilities.Gltf.Schema.GltfMeshPrimitiveAttributes.html deleted file mode 100644 index 6db3883de..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Schema.GltfMeshPrimitiveAttributes.html +++ /dev/null @@ -1,460 +0,0 @@ - - - - - - - - Class GltfMeshPrimitiveAttributes - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Schema.GltfMinFilterMode.html b/docs/api/XRTK.Utilities.Gltf.Schema.GltfMinFilterMode.html deleted file mode 100644 index 0e908c586..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Schema.GltfMinFilterMode.html +++ /dev/null @@ -1,187 +0,0 @@ - - - - - - - - Enum GltfMinFilterMode - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Schema.GltfNode.html b/docs/api/XRTK.Utilities.Gltf.Schema.GltfNode.html deleted file mode 100644 index 8f7fbd5b2..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Schema.GltfNode.html +++ /dev/null @@ -1,522 +0,0 @@ - - - - - - - - Class GltfNode - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Schema.GltfNormalTextureInfo.html b/docs/api/XRTK.Utilities.Gltf.Schema.GltfNormalTextureInfo.html deleted file mode 100644 index 6149f800d..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Schema.GltfNormalTextureInfo.html +++ /dev/null @@ -1,212 +0,0 @@ - - - - - - - - Class GltfNormalTextureInfo - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Schema.GltfObject.html b/docs/api/XRTK.Utilities.Gltf.Schema.GltfObject.html deleted file mode 100644 index c1074e798..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Schema.GltfObject.html +++ /dev/null @@ -1,815 +0,0 @@ - - - - - - - - Class GltfObject - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Schema.GltfOcclusionTextureInfo.html b/docs/api/XRTK.Utilities.Gltf.Schema.GltfOcclusionTextureInfo.html deleted file mode 100644 index 3ef186a5b..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Schema.GltfOcclusionTextureInfo.html +++ /dev/null @@ -1,216 +0,0 @@ - - - - - - - - Class GltfOcclusionTextureInfo - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Schema.GltfPbrMetallicRoughness.html b/docs/api/XRTK.Utilities.Gltf.Schema.GltfPbrMetallicRoughness.html deleted file mode 100644 index 04cfb15ca..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Schema.GltfPbrMetallicRoughness.html +++ /dev/null @@ -1,343 +0,0 @@ - - - - - - - - Class GltfPbrMetallicRoughness - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Schema.GltfProperty.html b/docs/api/XRTK.Utilities.Gltf.Schema.GltfProperty.html deleted file mode 100644 index feb1be0f1..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Schema.GltfProperty.html +++ /dev/null @@ -1,239 +0,0 @@ - - - - - - - - Class GltfProperty - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Schema.GltfSampler.html b/docs/api/XRTK.Utilities.Gltf.Schema.GltfSampler.html deleted file mode 100644 index 3dd3d4ce2..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Schema.GltfSampler.html +++ /dev/null @@ -1,299 +0,0 @@ - - - - - - - - Class GltfSampler - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Schema.GltfScene.html b/docs/api/XRTK.Utilities.Gltf.Schema.GltfScene.html deleted file mode 100644 index dcd0f5a4a..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Schema.GltfScene.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - Class GltfScene - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Schema.GltfSkin.html b/docs/api/XRTK.Utilities.Gltf.Schema.GltfSkin.html deleted file mode 100644 index 42443fbd4..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Schema.GltfSkin.html +++ /dev/null @@ -1,272 +0,0 @@ - - - - - - - - Class GltfSkin - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Schema.GltfTexture.html b/docs/api/XRTK.Utilities.Gltf.Schema.GltfTexture.html deleted file mode 100644 index e4b079320..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Schema.GltfTexture.html +++ /dev/null @@ -1,271 +0,0 @@ - - - - - - - - Class GltfTexture - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Schema.GltfTextureInfo.html b/docs/api/XRTK.Utilities.Gltf.Schema.GltfTextureInfo.html deleted file mode 100644 index 98f19feed..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Schema.GltfTextureInfo.html +++ /dev/null @@ -1,237 +0,0 @@ - - - - - - - - Class GltfTextureInfo - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Schema.GltfWrapMode.html b/docs/api/XRTK.Utilities.Gltf.Schema.GltfWrapMode.html deleted file mode 100644 index 2f65b8e0f..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Schema.GltfWrapMode.html +++ /dev/null @@ -1,175 +0,0 @@ - - - - - - - - Enum GltfWrapMode - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Schema.html b/docs/api/XRTK.Utilities.Gltf.Schema.html deleted file mode 100644 index 456a3326e..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Schema.html +++ /dev/null @@ -1,297 +0,0 @@ - - - - - - - - Namespace XRTK.Utilities.Gltf.Schema - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Serialization.ColliderType.html b/docs/api/XRTK.Utilities.Gltf.Serialization.ColliderType.html deleted file mode 100644 index 06e313baa..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Serialization.ColliderType.html +++ /dev/null @@ -1,173 +0,0 @@ - - - - - - - - Enum ColliderType - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Serialization.ConstructGltf.html b/docs/api/XRTK.Utilities.Gltf.Serialization.ConstructGltf.html deleted file mode 100644 index 0c0f82aa8..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Serialization.ConstructGltf.html +++ /dev/null @@ -1,239 +0,0 @@ - - - - - - - - Class ConstructGltf - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Serialization.ExportGltf.html b/docs/api/XRTK.Utilities.Gltf.Serialization.ExportGltf.html deleted file mode 100644 index 0e65c23f7..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Serialization.ExportGltf.html +++ /dev/null @@ -1,162 +0,0 @@ - - - - - - - - Class ExportGltf - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Serialization.GltfChunkType.html b/docs/api/XRTK.Utilities.Gltf.Serialization.GltfChunkType.html deleted file mode 100644 index 34129417d..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Serialization.GltfChunkType.html +++ /dev/null @@ -1,165 +0,0 @@ - - - - - - - - Enum GltfChunkType - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Serialization.GltfUtility.html b/docs/api/XRTK.Utilities.Gltf.Serialization.GltfUtility.html deleted file mode 100644 index 7bb1d79b3..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Serialization.GltfUtility.html +++ /dev/null @@ -1,317 +0,0 @@ - - - - - - - - Class GltfUtility - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Serialization.Importers.GlbAssetImporter.html b/docs/api/XRTK.Utilities.Gltf.Serialization.Importers.GlbAssetImporter.html deleted file mode 100644 index 733ef8f77..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Serialization.Importers.GlbAssetImporter.html +++ /dev/null @@ -1,214 +0,0 @@ - - - - - - - - Class GlbAssetImporter - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Serialization.Importers.GltfAssetImporter.html b/docs/api/XRTK.Utilities.Gltf.Serialization.Importers.GltfAssetImporter.html deleted file mode 100644 index f8bbc9ad4..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Serialization.Importers.GltfAssetImporter.html +++ /dev/null @@ -1,214 +0,0 @@ - - - - - - - - Class GltfAssetImporter - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Serialization.Importers.GltfEditorImporter.html b/docs/api/XRTK.Utilities.Gltf.Serialization.Importers.GltfEditorImporter.html deleted file mode 100644 index 678d06212..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Serialization.Importers.GltfEditorImporter.html +++ /dev/null @@ -1,189 +0,0 @@ - - - - - - - - Class GltfEditorImporter - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Serialization.Importers.html b/docs/api/XRTK.Utilities.Gltf.Serialization.Importers.html deleted file mode 100644 index 1ee535fd6..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Serialization.Importers.html +++ /dev/null @@ -1,122 +0,0 @@ - - - - - - - - Namespace XRTK.Utilities.Gltf.Serialization.Importers - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.Serialization.html b/docs/api/XRTK.Utilities.Gltf.Serialization.html deleted file mode 100644 index f7487cd3a..000000000 --- a/docs/api/XRTK.Utilities.Gltf.Serialization.html +++ /dev/null @@ -1,128 +0,0 @@ - - - - - - - - Namespace XRTK.Utilities.Gltf.Serialization - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Gltf.html b/docs/api/XRTK.Utilities.Gltf.html deleted file mode 100644 index 0ee71181d..000000000 --- a/docs/api/XRTK.Utilities.Gltf.html +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - Namespace XRTK.Utilities.Gltf - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.HandUtilities.html b/docs/api/XRTK.Utilities.HandUtilities.html deleted file mode 100644 index 24751707d..000000000 --- a/docs/api/XRTK.Utilities.HandUtilities.html +++ /dev/null @@ -1,366 +0,0 @@ - - - - - - - - Class HandUtilities - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.HoverLight.html b/docs/api/XRTK.Utilities.HoverLight.html deleted file mode 100644 index 4d3e6a598..000000000 --- a/docs/api/XRTK.Utilities.HoverLight.html +++ /dev/null @@ -1,257 +0,0 @@ - - - - - - - - Class HoverLight - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Lines.BezierLineDataProvider.html b/docs/api/XRTK.Utilities.Lines.BezierLineDataProvider.html deleted file mode 100644 index f0308caed..000000000 --- a/docs/api/XRTK.Utilities.Lines.BezierLineDataProvider.html +++ /dev/null @@ -1,575 +0,0 @@ - - - - - - - - Class BezierLineDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html b/docs/api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html deleted file mode 100644 index afe76f933..000000000 --- a/docs/api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html +++ /dev/null @@ -1,1624 +0,0 @@ - - - - - - - - Class BaseMixedRealityLineDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.html b/docs/api/XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.html deleted file mode 100644 index 48020f047..000000000 --- a/docs/api/XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.html +++ /dev/null @@ -1,572 +0,0 @@ - - - - - - - - Class EllipseLineDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.html b/docs/api/XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.html deleted file mode 100644 index 96757c004..000000000 --- a/docs/api/XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.html +++ /dev/null @@ -1,588 +0,0 @@ - - - - - - - - Class ParabolaConstrainedLineDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Lines.DataProviders.ParabolaLineDataProvider.html b/docs/api/XRTK.Utilities.Lines.DataProviders.ParabolaLineDataProvider.html deleted file mode 100644 index c7e4062bc..000000000 --- a/docs/api/XRTK.Utilities.Lines.DataProviders.ParabolaLineDataProvider.html +++ /dev/null @@ -1,443 +0,0 @@ - - - - - - - - Class ParabolaLineDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.html b/docs/api/XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.html deleted file mode 100644 index 68ca02ba0..000000000 --- a/docs/api/XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.html +++ /dev/null @@ -1,683 +0,0 @@ - - - - - - - - Class ParabolaPhysicalLineDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.html b/docs/api/XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.html deleted file mode 100644 index e33e7a87a..000000000 --- a/docs/api/XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.html +++ /dev/null @@ -1,701 +0,0 @@ - - - - - - - - Class RectangleLineDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.html b/docs/api/XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.html deleted file mode 100644 index c02fbf92d..000000000 --- a/docs/api/XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.html +++ /dev/null @@ -1,635 +0,0 @@ - - - - - - - - Class SimpleLineDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Lines.DataProviders.SplineDataProvider.html b/docs/api/XRTK.Utilities.Lines.DataProviders.SplineDataProvider.html deleted file mode 100644 index 8da82c3ae..000000000 --- a/docs/api/XRTK.Utilities.Lines.DataProviders.SplineDataProvider.html +++ /dev/null @@ -1,632 +0,0 @@ - - - - - - - - Class SplineDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Lines.DataProviders.html b/docs/api/XRTK.Utilities.Lines.DataProviders.html deleted file mode 100644 index ad6fde80e..000000000 --- a/docs/api/XRTK.Utilities.Lines.DataProviders.html +++ /dev/null @@ -1,140 +0,0 @@ - - - - - - - - Namespace XRTK.Utilities.Lines.DataProviders - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Lines.LineFollower.html b/docs/api/XRTK.Utilities.Lines.LineFollower.html deleted file mode 100644 index 05d24dc56..000000000 --- a/docs/api/XRTK.Utilities.Lines.LineFollower.html +++ /dev/null @@ -1,256 +0,0 @@ - - - - - - - - Class LineFollower - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Lines.LineUtility.html b/docs/api/XRTK.Utilities.Lines.LineUtility.html deleted file mode 100644 index 4796be63a..000000000 --- a/docs/api/XRTK.Utilities.Lines.LineUtility.html +++ /dev/null @@ -1,796 +0,0 @@ - - - - - - - - Class LineUtility - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.html b/docs/api/XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.html deleted file mode 100644 index 5339c6a05..000000000 --- a/docs/api/XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.html +++ /dev/null @@ -1,635 +0,0 @@ - - - - - - - - Class BaseMixedRealityLineRenderer - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Lines.Renderers.MeshLineRenderer.html b/docs/api/XRTK.Utilities.Lines.Renderers.MeshLineRenderer.html deleted file mode 100644 index 105bb7283..000000000 --- a/docs/api/XRTK.Utilities.Lines.Renderers.MeshLineRenderer.html +++ /dev/null @@ -1,354 +0,0 @@ - - - - - - - - Class MeshLineRenderer - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Lines.Renderers.MixedRealityLineRenderer.html b/docs/api/XRTK.Utilities.Lines.Renderers.MixedRealityLineRenderer.html deleted file mode 100644 index ffc37f66b..000000000 --- a/docs/api/XRTK.Utilities.Lines.Renderers.MixedRealityLineRenderer.html +++ /dev/null @@ -1,341 +0,0 @@ - - - - - - - - Class MixedRealityLineRenderer - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.html b/docs/api/XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.html deleted file mode 100644 index 2277544f7..000000000 --- a/docs/api/XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.html +++ /dev/null @@ -1,550 +0,0 @@ - - - - - - - - Class ParticleSystemLineRenderer - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Lines.Renderers.StripMeshLineRenderer.html b/docs/api/XRTK.Utilities.Lines.Renderers.StripMeshLineRenderer.html deleted file mode 100644 index a7ba55190..000000000 --- a/docs/api/XRTK.Utilities.Lines.Renderers.StripMeshLineRenderer.html +++ /dev/null @@ -1,309 +0,0 @@ - - - - - - - - Class StripMeshLineRenderer - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Lines.Renderers.html b/docs/api/XRTK.Utilities.Lines.Renderers.html deleted file mode 100644 index 34c1af6b8..000000000 --- a/docs/api/XRTK.Utilities.Lines.Renderers.html +++ /dev/null @@ -1,131 +0,0 @@ - - - - - - - - Namespace XRTK.Utilities.Lines.Renderers - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Lines.html b/docs/api/XRTK.Utilities.Lines.html deleted file mode 100644 index 811e4299b..000000000 --- a/docs/api/XRTK.Utilities.Lines.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - - - Namespace XRTK.Utilities.Lines - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.MathUtilities.html b/docs/api/XRTK.Utilities.MathUtilities.html deleted file mode 100644 index 83380e747..000000000 --- a/docs/api/XRTK.Utilities.MathUtilities.html +++ /dev/null @@ -1,1550 +0,0 @@ - - - - - - - - Class MathUtilities - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Physics.BaseRayStabilizer.html b/docs/api/XRTK.Utilities.Physics.BaseRayStabilizer.html deleted file mode 100644 index 57ab158fa..000000000 --- a/docs/api/XRTK.Utilities.Physics.BaseRayStabilizer.html +++ /dev/null @@ -1,350 +0,0 @@ - - - - - - - - Class BaseRayStabilizer - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Physics.Distorters.Distorter.html b/docs/api/XRTK.Utilities.Physics.Distorters.Distorter.html deleted file mode 100644 index 7884e5187..000000000 --- a/docs/api/XRTK.Utilities.Physics.Distorters.Distorter.html +++ /dev/null @@ -1,573 +0,0 @@ - - - - - - - - Class Distorter - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Physics.Distorters.DistorterBulge.html b/docs/api/XRTK.Utilities.Physics.Distorters.DistorterBulge.html deleted file mode 100644 index e3c5028d1..000000000 --- a/docs/api/XRTK.Utilities.Physics.Distorters.DistorterBulge.html +++ /dev/null @@ -1,512 +0,0 @@ - - - - - - - - Class DistorterBulge - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Physics.Distorters.DistorterGravity.html b/docs/api/XRTK.Utilities.Physics.Distorters.DistorterGravity.html deleted file mode 100644 index 95be22d65..000000000 --- a/docs/api/XRTK.Utilities.Physics.Distorters.DistorterGravity.html +++ /dev/null @@ -1,499 +0,0 @@ - - - - - - - - Class DistorterGravity - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Physics.Distorters.DistorterSimplex.html b/docs/api/XRTK.Utilities.Physics.Distorters.DistorterSimplex.html deleted file mode 100644 index f03427552..000000000 --- a/docs/api/XRTK.Utilities.Physics.Distorters.DistorterSimplex.html +++ /dev/null @@ -1,542 +0,0 @@ - - - - - - - - Class DistorterSimplex - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Physics.Distorters.DistorterSphere.html b/docs/api/XRTK.Utilities.Physics.Distorters.DistorterSphere.html deleted file mode 100644 index ddc1f7063..000000000 --- a/docs/api/XRTK.Utilities.Physics.Distorters.DistorterSphere.html +++ /dev/null @@ -1,362 +0,0 @@ - - - - - - - - Class DistorterSphere - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Physics.Distorters.DistorterWiggly.html b/docs/api/XRTK.Utilities.Physics.Distorters.DistorterWiggly.html deleted file mode 100644 index e35760f53..000000000 --- a/docs/api/XRTK.Utilities.Physics.Distorters.DistorterWiggly.html +++ /dev/null @@ -1,512 +0,0 @@ - - - - - - - - Class DistorterWiggly - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Physics.Distorters.html b/docs/api/XRTK.Utilities.Physics.Distorters.html deleted file mode 100644 index 71930caa5..000000000 --- a/docs/api/XRTK.Utilities.Physics.Distorters.html +++ /dev/null @@ -1,128 +0,0 @@ - - - - - - - - Namespace XRTK.Utilities.Physics.Distorters - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Physics.GenericStabilizer.html b/docs/api/XRTK.Utilities.Physics.GenericStabilizer.html deleted file mode 100644 index c76afd87f..000000000 --- a/docs/api/XRTK.Utilities.Physics.GenericStabilizer.html +++ /dev/null @@ -1,370 +0,0 @@ - - - - - - - - Class GenericStabilizer - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Physics.InterpolationUtilities.html b/docs/api/XRTK.Utilities.Physics.InterpolationUtilities.html deleted file mode 100644 index 00fc9b543..000000000 --- a/docs/api/XRTK.Utilities.Physics.InterpolationUtilities.html +++ /dev/null @@ -1,520 +0,0 @@ - - - - - - - - Class InterpolationUtilities - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Physics.Interpolator.html b/docs/api/XRTK.Utilities.Physics.Interpolator.html deleted file mode 100644 index 77892f923..000000000 --- a/docs/api/XRTK.Utilities.Physics.Interpolator.html +++ /dev/null @@ -1,955 +0,0 @@ - - - - - - - - Class Interpolator - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Physics.MixedRealityRaycaster.html b/docs/api/XRTK.Utilities.Physics.MixedRealityRaycaster.html deleted file mode 100644 index 457f7af62..000000000 --- a/docs/api/XRTK.Utilities.Physics.MixedRealityRaycaster.html +++ /dev/null @@ -1,605 +0,0 @@ - - - - - - - - Class MixedRealityRaycaster - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Physics.RaycastResultComparer.html b/docs/api/XRTK.Utilities.Physics.RaycastResultComparer.html deleted file mode 100644 index d783c6904..000000000 --- a/docs/api/XRTK.Utilities.Physics.RaycastResultComparer.html +++ /dev/null @@ -1,228 +0,0 @@ - - - - - - - - Class RaycastResultComparer - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Physics.TwoHandMoveLogic.html b/docs/api/XRTK.Utilities.Physics.TwoHandMoveLogic.html deleted file mode 100644 index 2ebda13a2..000000000 --- a/docs/api/XRTK.Utilities.Physics.TwoHandMoveLogic.html +++ /dev/null @@ -1,291 +0,0 @@ - - - - - - - - Class TwoHandMoveLogic - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Physics.TwoHandRotateLogic.html b/docs/api/XRTK.Utilities.Physics.TwoHandRotateLogic.html deleted file mode 100644 index 6b9104227..000000000 --- a/docs/api/XRTK.Utilities.Physics.TwoHandRotateLogic.html +++ /dev/null @@ -1,324 +0,0 @@ - - - - - - - - Class TwoHandRotateLogic - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Physics.TwoHandScaleLogic.html b/docs/api/XRTK.Utilities.Physics.TwoHandScaleLogic.html deleted file mode 100644 index 2849818de..000000000 --- a/docs/api/XRTK.Utilities.Physics.TwoHandScaleLogic.html +++ /dev/null @@ -1,259 +0,0 @@ - - - - - - - - Class TwoHandScaleLogic - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Physics.VectorRollingStatistics.html b/docs/api/XRTK.Utilities.Physics.VectorRollingStatistics.html deleted file mode 100644 index 491e061c7..000000000 --- a/docs/api/XRTK.Utilities.Physics.VectorRollingStatistics.html +++ /dev/null @@ -1,405 +0,0 @@ - - - - - - - - Class VectorRollingStatistics - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Physics.html b/docs/api/XRTK.Utilities.Physics.html deleted file mode 100644 index 5899d0a9f..000000000 --- a/docs/api/XRTK.Utilities.Physics.html +++ /dev/null @@ -1,162 +0,0 @@ - - - - - - - - Namespace XRTK.Utilities.Physics - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.ProximityLight.LightSettings.html b/docs/api/XRTK.Utilities.ProximityLight.LightSettings.html deleted file mode 100644 index bdad6aa99..000000000 --- a/docs/api/XRTK.Utilities.ProximityLight.LightSettings.html +++ /dev/null @@ -1,382 +0,0 @@ - - - - - - - - Class ProximityLight.LightSettings - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.ProximityLight.html b/docs/api/XRTK.Utilities.ProximityLight.html deleted file mode 100644 index 8deea1a9b..000000000 --- a/docs/api/XRTK.Utilities.ProximityLight.html +++ /dev/null @@ -1,274 +0,0 @@ - - - - - - - - Class ProximityLight - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.RenderPipelineUtilities.html b/docs/api/XRTK.Utilities.RenderPipelineUtilities.html deleted file mode 100644 index 892e03985..000000000 --- a/docs/api/XRTK.Utilities.RenderPipelineUtilities.html +++ /dev/null @@ -1,189 +0,0 @@ - - - - - - - - Class RenderPipelineUtilities - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Rendering.ClippingBox.html b/docs/api/XRTK.Utilities.Rendering.ClippingBox.html deleted file mode 100644 index 7947f3b12..000000000 --- a/docs/api/XRTK.Utilities.Rendering.ClippingBox.html +++ /dev/null @@ -1,390 +0,0 @@ - - - - - - - - Class ClippingBox - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Rendering.ClippingPlane.html b/docs/api/XRTK.Utilities.Rendering.ClippingPlane.html deleted file mode 100644 index 602d0c15a..000000000 --- a/docs/api/XRTK.Utilities.Rendering.ClippingPlane.html +++ /dev/null @@ -1,390 +0,0 @@ - - - - - - - - Class ClippingPlane - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Rendering.ClippingPrimitive.Side.html b/docs/api/XRTK.Utilities.Rendering.ClippingPrimitive.Side.html deleted file mode 100644 index 8907fee62..000000000 --- a/docs/api/XRTK.Utilities.Rendering.ClippingPrimitive.Side.html +++ /dev/null @@ -1,165 +0,0 @@ - - - - - - - - Enum ClippingPrimitive.Side - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Rendering.ClippingPrimitive.html b/docs/api/XRTK.Utilities.Rendering.ClippingPrimitive.html deleted file mode 100644 index d8e51bac9..000000000 --- a/docs/api/XRTK.Utilities.Rendering.ClippingPrimitive.html +++ /dev/null @@ -1,709 +0,0 @@ - - - - - - - - Class ClippingPrimitive - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Rendering.ClippingSphere.html b/docs/api/XRTK.Utilities.Rendering.ClippingSphere.html deleted file mode 100644 index 9b99754cc..000000000 --- a/docs/api/XRTK.Utilities.Rendering.ClippingSphere.html +++ /dev/null @@ -1,421 +0,0 @@ - - - - - - - - Class ClippingSphere - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.Rendering.html b/docs/api/XRTK.Utilities.Rendering.html deleted file mode 100644 index a595fe227..000000000 --- a/docs/api/XRTK.Utilities.Rendering.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - - - Namespace XRTK.Utilities.Rendering - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.StopWatch.html b/docs/api/XRTK.Utilities.StopWatch.html deleted file mode 100644 index acb3b30ca..000000000 --- a/docs/api/XRTK.Utilities.StopWatch.html +++ /dev/null @@ -1,262 +0,0 @@ - - - - - - - - Class StopWatch - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.ValidateConfiguration.html b/docs/api/XRTK.Utilities.ValidateConfiguration.html deleted file mode 100644 index 135ee4891..000000000 --- a/docs/api/XRTK.Utilities.ValidateConfiguration.html +++ /dev/null @@ -1,298 +0,0 @@ - - - - - - - - Class ValidateConfiguration - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.WebRequestRest.Response.html b/docs/api/XRTK.Utilities.WebRequestRest.Response.html deleted file mode 100644 index 7811edc4a..000000000 --- a/docs/api/XRTK.Utilities.WebRequestRest.Response.html +++ /dev/null @@ -1,335 +0,0 @@ - - - - - - - - Struct Response - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.WebRequestRest.Rest.html b/docs/api/XRTK.Utilities.WebRequestRest.Rest.html deleted file mode 100644 index e55ff65bb..000000000 --- a/docs/api/XRTK.Utilities.WebRequestRest.Rest.html +++ /dev/null @@ -1,1170 +0,0 @@ - - - - - - - - Class Rest - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.WebRequestRest.html b/docs/api/XRTK.Utilities.WebRequestRest.html deleted file mode 100644 index dd3588759..000000000 --- a/docs/api/XRTK.Utilities.WebRequestRest.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - - - Namespace XRTK.Utilities.WebRequestRest - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.ActivePowerSchemeInfo.html b/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.ActivePowerSchemeInfo.html deleted file mode 100644 index 7bfd911db..000000000 --- a/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.ActivePowerSchemeInfo.html +++ /dev/null @@ -1,194 +0,0 @@ - - - - - - - - Class ActivePowerSchemeInfo - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.AdapterInfo.html b/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.AdapterInfo.html deleted file mode 100644 index 88f798d45..000000000 --- a/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.AdapterInfo.html +++ /dev/null @@ -1,397 +0,0 @@ - - - - - - - - Class AdapterInfo - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.ApplicationInfo.html b/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.ApplicationInfo.html deleted file mode 100644 index c998ed5fb..000000000 --- a/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.ApplicationInfo.html +++ /dev/null @@ -1,339 +0,0 @@ - - - - - - - - Class ApplicationInfo - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.AvailableWiFiNetworks.html b/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.AvailableWiFiNetworks.html deleted file mode 100644 index 33f399874..000000000 --- a/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.AvailableWiFiNetworks.html +++ /dev/null @@ -1,194 +0,0 @@ - - - - - - - - Class AvailableWiFiNetworks - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo.html b/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo.html deleted file mode 100644 index 19e907c1b..000000000 --- a/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo.html +++ /dev/null @@ -1,462 +0,0 @@ - - - - - - - - Class BatteryInfo - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.DHCPInfo.html b/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.DHCPInfo.html deleted file mode 100644 index e3cf431b7..000000000 --- a/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.DHCPInfo.html +++ /dev/null @@ -1,252 +0,0 @@ - - - - - - - - Class DHCPInfo - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.html b/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.html deleted file mode 100644 index 620ec304e..000000000 --- a/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.html +++ /dev/null @@ -1,461 +0,0 @@ - - - - - - - - Class DeviceInfo - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceOsInfo.html b/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceOsInfo.html deleted file mode 100644 index a807734e7..000000000 --- a/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceOsInfo.html +++ /dev/null @@ -1,310 +0,0 @@ - - - - - - - - Class DeviceOsInfo - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.DevicePortalConnections.html b/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.DevicePortalConnections.html deleted file mode 100644 index c90bf3345..000000000 --- a/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.DevicePortalConnections.html +++ /dev/null @@ -1,243 +0,0 @@ - - - - - - - - Class DevicePortalConnections - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.FileInfo.html b/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.FileInfo.html deleted file mode 100644 index bad4ece99..000000000 --- a/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.FileInfo.html +++ /dev/null @@ -1,365 +0,0 @@ - - - - - - - - Struct FileInfo - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.FileList.html b/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.FileList.html deleted file mode 100644 index fbd0cdccd..000000000 --- a/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.FileList.html +++ /dev/null @@ -1,194 +0,0 @@ - - - - - - - - Class FileList - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.InstallStatus.html b/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.InstallStatus.html deleted file mode 100644 index e2dc51e4c..000000000 --- a/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.InstallStatus.html +++ /dev/null @@ -1,281 +0,0 @@ - - - - - - - - Class InstallStatus - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.InstalledApps.html b/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.InstalledApps.html deleted file mode 100644 index 3c64ebb5b..000000000 --- a/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.InstalledApps.html +++ /dev/null @@ -1,194 +0,0 @@ - - - - - - - - Class InstalledApps - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.InterfaceInfo.html b/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.InterfaceInfo.html deleted file mode 100644 index dfb661c79..000000000 --- a/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.InterfaceInfo.html +++ /dev/null @@ -1,281 +0,0 @@ - - - - - - - - Class InterfaceInfo - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.IpAddressInfo.html b/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.IpAddressInfo.html deleted file mode 100644 index d8aab3bed..000000000 --- a/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.IpAddressInfo.html +++ /dev/null @@ -1,223 +0,0 @@ - - - - - - - - Class IpAddressInfo - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.IpConfigInfo.html b/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.IpConfigInfo.html deleted file mode 100644 index 07d9edb47..000000000 --- a/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.IpConfigInfo.html +++ /dev/null @@ -1,194 +0,0 @@ - - - - - - - - Class IpConfigInfo - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.MachineName.html b/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.MachineName.html deleted file mode 100644 index 84c70fad2..000000000 --- a/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.MachineName.html +++ /dev/null @@ -1,194 +0,0 @@ - - - - - - - - Class MachineName - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.NetworkInterfaces.html b/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.NetworkInterfaces.html deleted file mode 100644 index 2af539140..000000000 --- a/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.NetworkInterfaces.html +++ /dev/null @@ -1,194 +0,0 @@ - - - - - - - - Class NetworkInterfaces - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.NetworkProfileInfo.html b/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.NetworkProfileInfo.html deleted file mode 100644 index 414b9364c..000000000 --- a/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.NetworkProfileInfo.html +++ /dev/null @@ -1,252 +0,0 @@ - - - - - - - - Class NetworkProfileInfo - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.PowerStateInfo.html b/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.PowerStateInfo.html deleted file mode 100644 index 95725b89c..000000000 --- a/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.PowerStateInfo.html +++ /dev/null @@ -1,223 +0,0 @@ - - - - - - - - Class PowerStateInfo - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessInfo.html b/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessInfo.html deleted file mode 100644 index 5a15102b6..000000000 --- a/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessInfo.html +++ /dev/null @@ -1,426 +0,0 @@ - - - - - - - - Class ProcessInfo - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessList.html b/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessList.html deleted file mode 100644 index c9188d925..000000000 --- a/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessList.html +++ /dev/null @@ -1,194 +0,0 @@ - - - - - - - - Class ProcessList - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.html b/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.html deleted file mode 100644 index 4429f8046..000000000 --- a/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.html +++ /dev/null @@ -1,544 +0,0 @@ - - - - - - - - Class WirelessNetworkInfo - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.html b/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.html deleted file mode 100644 index 16c5ea9a2..000000000 --- a/docs/api/XRTK.Utilities.WindowsDevicePortal.DataStructures.html +++ /dev/null @@ -1,164 +0,0 @@ - - - - - - - - Namespace XRTK.Utilities.WindowsDevicePortal.DataStructures - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.WindowsDevicePortal.DevicePortal.html b/docs/api/XRTK.Utilities.WindowsDevicePortal.DevicePortal.html deleted file mode 100644 index 263432ad7..000000000 --- a/docs/api/XRTK.Utilities.WindowsDevicePortal.DevicePortal.html +++ /dev/null @@ -1,1315 +0,0 @@ - - - - - - - - Class DevicePortal - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.WindowsDevicePortal.html b/docs/api/XRTK.Utilities.WindowsDevicePortal.html deleted file mode 100644 index 24ae9c088..000000000 --- a/docs/api/XRTK.Utilities.WindowsDevicePortal.html +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - Namespace XRTK.Utilities.WindowsDevicePortal - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.XRDeviceUtilities.html b/docs/api/XRTK.Utilities.XRDeviceUtilities.html deleted file mode 100644 index e66dd3244..000000000 --- a/docs/api/XRTK.Utilities.XRDeviceUtilities.html +++ /dev/null @@ -1,189 +0,0 @@ - - - - - - - - Class XRDeviceUtilities - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.Utilities.html b/docs/api/XRTK.Utilities.html deleted file mode 100644 index 25e84bffa..000000000 --- a/docs/api/XRTK.Utilities.html +++ /dev/null @@ -1,162 +0,0 @@ - - - - - - - - Namespace XRTK.Utilities - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.WindowsMixedReality.Definitions.WindowsGestureSettings.html b/docs/api/XRTK.WindowsMixedReality.Definitions.WindowsGestureSettings.html deleted file mode 100644 index eb1ca70a1..000000000 --- a/docs/api/XRTK.WindowsMixedReality.Definitions.WindowsGestureSettings.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - Enum WindowsGestureSettings - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.WindowsMixedReality.Definitions.html b/docs/api/XRTK.WindowsMixedReality.Definitions.html deleted file mode 100644 index 1aa66a96c..000000000 --- a/docs/api/XRTK.WindowsMixedReality.Definitions.html +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - Namespace XRTK.WindowsMixedReality.Definitions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.WindowsMixedReality.Editor.Profiles.WindowsMixedRealityControllerDataProviderProfileInspector.html b/docs/api/XRTK.WindowsMixedReality.Editor.Profiles.WindowsMixedRealityControllerDataProviderProfileInspector.html deleted file mode 100644 index 6eb84af04..000000000 --- a/docs/api/XRTK.WindowsMixedReality.Editor.Profiles.WindowsMixedRealityControllerDataProviderProfileInspector.html +++ /dev/null @@ -1,238 +0,0 @@ - - - - - - - - Class WindowsMixedRealityControllerDataProviderProfileInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.WindowsMixedReality.Editor.Profiles.html b/docs/api/XRTK.WindowsMixedReality.Editor.Profiles.html deleted file mode 100644 index 541034d2f..000000000 --- a/docs/api/XRTK.WindowsMixedReality.Editor.Profiles.html +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - Namespace XRTK.WindowsMixedReality.Editor.Profiles - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.WindowsMixedReality.Editor.Providers.SpatialAwarenessSystem.SpatialObservers.WindowsMixedRealityControllerDataProviderProfileInspector.html b/docs/api/XRTK.WindowsMixedReality.Editor.Providers.SpatialAwarenessSystem.SpatialObservers.WindowsMixedRealityControllerDataProviderProfileInspector.html deleted file mode 100644 index 3e463aac1..000000000 --- a/docs/api/XRTK.WindowsMixedReality.Editor.Providers.SpatialAwarenessSystem.SpatialObservers.WindowsMixedRealityControllerDataProviderProfileInspector.html +++ /dev/null @@ -1,244 +0,0 @@ - - - - - - - - Class WindowsMixedRealityControllerDataProviderProfileInspector - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.WindowsMixedReality.Editor.Providers.SpatialAwarenessSystem.SpatialObservers.html b/docs/api/XRTK.WindowsMixedReality.Editor.Providers.SpatialAwarenessSystem.SpatialObservers.html deleted file mode 100644 index 85a9c4489..000000000 --- a/docs/api/XRTK.WindowsMixedReality.Editor.Providers.SpatialAwarenessSystem.SpatialObservers.html +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - Namespace XRTK.WindowsMixedReality.Editor.Providers.SpatialAwarenessSystem.SpatialObservers - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.WindowsMixedReality.Editor.WindowsMixedRealityPathFinder.html b/docs/api/XRTK.WindowsMixedReality.Editor.WindowsMixedRealityPathFinder.html deleted file mode 100644 index 0582b4693..000000000 --- a/docs/api/XRTK.WindowsMixedReality.Editor.WindowsMixedRealityPathFinder.html +++ /dev/null @@ -1,239 +0,0 @@ - - - - - - - - Class WindowsMixedRealityPathFinder - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.WindowsMixedReality.Editor.html b/docs/api/XRTK.WindowsMixedReality.Editor.html deleted file mode 100644 index 8a492e42d..000000000 --- a/docs/api/XRTK.WindowsMixedReality.Editor.html +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - Namespace XRTK.WindowsMixedReality.Editor - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.WindowsMixedReality.Extensions.HandJointKindExtensions.html b/docs/api/XRTK.WindowsMixedReality.Extensions.HandJointKindExtensions.html deleted file mode 100644 index 9d9ba2d75..000000000 --- a/docs/api/XRTK.WindowsMixedReality.Extensions.HandJointKindExtensions.html +++ /dev/null @@ -1,204 +0,0 @@ - - - - - - - - Class HandJointKindExtensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.WindowsMixedReality.Extensions.InteractionSourceExtensions.html b/docs/api/XRTK.WindowsMixedReality.Extensions.InteractionSourceExtensions.html deleted file mode 100644 index c2b533dff..000000000 --- a/docs/api/XRTK.WindowsMixedReality.Extensions.InteractionSourceExtensions.html +++ /dev/null @@ -1,270 +0,0 @@ - - - - - - - - Class InteractionSourceExtensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.WindowsMixedReality.Extensions.SpatialInteractionSourceHandednessExtensions.html b/docs/api/XRTK.WindowsMixedReality.Extensions.SpatialInteractionSourceHandednessExtensions.html deleted file mode 100644 index 6ed341b97..000000000 --- a/docs/api/XRTK.WindowsMixedReality.Extensions.SpatialInteractionSourceHandednessExtensions.html +++ /dev/null @@ -1,207 +0,0 @@ - - - - - - - - Class SpatialInteractionSourceHandednessExtensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.WindowsMixedReality.Extensions.SpatialInteractionSourceKindExtensions.html b/docs/api/XRTK.WindowsMixedReality.Extensions.SpatialInteractionSourceKindExtensions.html deleted file mode 100644 index 6ae59b879..000000000 --- a/docs/api/XRTK.WindowsMixedReality.Extensions.SpatialInteractionSourceKindExtensions.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - Class SpatialInteractionSourceKindExtensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.WindowsMixedReality.Extensions.html b/docs/api/XRTK.WindowsMixedReality.Extensions.html deleted file mode 100644 index 98b15d9c1..000000000 --- a/docs/api/XRTK.WindowsMixedReality.Extensions.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - - - Namespace XRTK.WindowsMixedReality.Extensions - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile.html b/docs/api/XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile.html deleted file mode 100644 index f9b36a9db..000000000 --- a/docs/api/XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile.html +++ /dev/null @@ -1,422 +0,0 @@ - - - - - - - - Class WindowsMixedRealityControllerDataProviderProfile - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityHandControllerDataProviderProfile.html b/docs/api/XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityHandControllerDataProviderProfile.html deleted file mode 100644 index b8ff411be..000000000 --- a/docs/api/XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityHandControllerDataProviderProfile.html +++ /dev/null @@ -1,251 +0,0 @@ - - - - - - - - Class WindowsMixedRealityHandControllerDataProviderProfile - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.WindowsMixedReality.Profiles.WindowsMixedRealitySpatialMeshObserverProfile.html b/docs/api/XRTK.WindowsMixedReality.Profiles.WindowsMixedRealitySpatialMeshObserverProfile.html deleted file mode 100644 index 79b38ebf6..000000000 --- a/docs/api/XRTK.WindowsMixedReality.Profiles.WindowsMixedRealitySpatialMeshObserverProfile.html +++ /dev/null @@ -1,275 +0,0 @@ - - - - - - - - Class WindowsMixedRealitySpatialMeshObserverProfile - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.WindowsMixedReality.Profiles.html b/docs/api/XRTK.WindowsMixedReality.Profiles.html deleted file mode 100644 index 3cda1cc51..000000000 --- a/docs/api/XRTK.WindowsMixedReality.Profiles.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - - - Namespace XRTK.WindowsMixedReality.Profiles - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.WindowsMixedReality.Providers.BoundarySystem.WindowsMixedRealityBoundaryDataProvider.html b/docs/api/XRTK.WindowsMixedReality.Providers.BoundarySystem.WindowsMixedRealityBoundaryDataProvider.html deleted file mode 100644 index 69c863dc8..000000000 --- a/docs/api/XRTK.WindowsMixedReality.Providers.BoundarySystem.WindowsMixedRealityBoundaryDataProvider.html +++ /dev/null @@ -1,412 +0,0 @@ - - - - - - - - Class WindowsMixedRealityBoundaryDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.WindowsMixedReality.Providers.BoundarySystem.html b/docs/api/XRTK.WindowsMixedReality.Providers.BoundarySystem.html deleted file mode 100644 index e8086fa47..000000000 --- a/docs/api/XRTK.WindowsMixedReality.Providers.BoundarySystem.html +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - Namespace XRTK.WindowsMixedReality.Providers.BoundarySystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.WindowsMixedReality.Providers.CameraSystem.WindowsMixedRealityCameraDataProvider.html b/docs/api/XRTK.WindowsMixedReality.Providers.CameraSystem.WindowsMixedRealityCameraDataProvider.html deleted file mode 100644 index 89d3ebe05..000000000 --- a/docs/api/XRTK.WindowsMixedReality.Providers.CameraSystem.WindowsMixedRealityCameraDataProvider.html +++ /dev/null @@ -1,347 +0,0 @@ - - - - - - - - Class WindowsMixedRealityCameraDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.WindowsMixedReality.Providers.CameraSystem.html b/docs/api/XRTK.WindowsMixedReality.Providers.CameraSystem.html deleted file mode 100644 index cde868839..000000000 --- a/docs/api/XRTK.WindowsMixedReality.Providers.CameraSystem.html +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - Namespace XRTK.WindowsMixedReality.Providers.CameraSystem - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.WindowsMixedReality.Providers.Controllers.HololensOneController.html b/docs/api/XRTK.WindowsMixedReality.Providers.Controllers.HololensOneController.html deleted file mode 100644 index c46a2201c..000000000 --- a/docs/api/XRTK.WindowsMixedReality.Providers.Controllers.HololensOneController.html +++ /dev/null @@ -1,282 +0,0 @@ - - - - - - - - Class HololensOneController - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityControllerDataProvider.html b/docs/api/XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityControllerDataProvider.html deleted file mode 100644 index 741392019..000000000 --- a/docs/api/XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityControllerDataProvider.html +++ /dev/null @@ -1,323 +0,0 @@ - - - - - - - - Class WindowsMixedRealityControllerDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityHandControllerDataProvider.html b/docs/api/XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityHandControllerDataProvider.html deleted file mode 100644 index 5dd1bdc65..000000000 --- a/docs/api/XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityHandControllerDataProvider.html +++ /dev/null @@ -1,362 +0,0 @@ - - - - - - - - Class WindowsMixedRealityHandControllerDataProvider - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityHololensOneController.html b/docs/api/XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityHololensOneController.html deleted file mode 100644 index 2c91ac773..000000000 --- a/docs/api/XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityHololensOneController.html +++ /dev/null @@ -1,324 +0,0 @@ - - - - - - - - Class WindowsMixedRealityHololensOneController - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityMotionController.html b/docs/api/XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityMotionController.html deleted file mode 100644 index 1c3f61052..000000000 --- a/docs/api/XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityMotionController.html +++ /dev/null @@ -1,397 +0,0 @@ - - - - - - - - Class WindowsMixedRealityMotionController - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.WindowsMixedReality.Providers.Controllers.html b/docs/api/XRTK.WindowsMixedReality.Providers.Controllers.html deleted file mode 100644 index b66e8d71b..000000000 --- a/docs/api/XRTK.WindowsMixedReality.Providers.Controllers.html +++ /dev/null @@ -1,128 +0,0 @@ - - - - - - - - Namespace XRTK.WindowsMixedReality.Providers.Controllers - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.WindowsMixedReality.Providers.SpatialAwarenessSystem.SpatialObservers.WindowsMixedRealitySpatialMeshObserver.html b/docs/api/XRTK.WindowsMixedReality.Providers.SpatialAwarenessSystem.SpatialObservers.WindowsMixedRealitySpatialMeshObserver.html deleted file mode 100644 index ae6d530e4..000000000 --- a/docs/api/XRTK.WindowsMixedReality.Providers.SpatialAwarenessSystem.SpatialObservers.WindowsMixedRealitySpatialMeshObserver.html +++ /dev/null @@ -1,375 +0,0 @@ - - - - - - - - Class WindowsMixedRealitySpatialMeshObserver - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.WindowsMixedReality.Providers.SpatialAwarenessSystem.SpatialObservers.html b/docs/api/XRTK.WindowsMixedReality.Providers.SpatialAwarenessSystem.SpatialObservers.html deleted file mode 100644 index 14e8310f8..000000000 --- a/docs/api/XRTK.WindowsMixedReality.Providers.SpatialAwarenessSystem.SpatialObservers.html +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - - Namespace XRTK.WindowsMixedReality.Providers.SpatialAwarenessSystem.SpatialObservers - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.WindowsMixedReality.Utilities.WindowsApiChecker.html b/docs/api/XRTK.WindowsMixedReality.Utilities.WindowsApiChecker.html deleted file mode 100644 index b402ba08e..000000000 --- a/docs/api/XRTK.WindowsMixedReality.Utilities.WindowsApiChecker.html +++ /dev/null @@ -1,323 +0,0 @@ - - - - - - - - Class WindowsApiChecker - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.WindowsMixedReality.Utilities.WindowsMixedRealityHandDataConverter.html b/docs/api/XRTK.WindowsMixedReality.Utilities.WindowsMixedRealityHandDataConverter.html deleted file mode 100644 index 4eb533a6a..000000000 --- a/docs/api/XRTK.WindowsMixedReality.Utilities.WindowsMixedRealityHandDataConverter.html +++ /dev/null @@ -1,163 +0,0 @@ - - - - - - - - Class WindowsMixedRealityHandDataConverter - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.WindowsMixedReality.Utilities.WindowsMixedRealityUtilities.html b/docs/api/XRTK.WindowsMixedReality.Utilities.WindowsMixedRealityUtilities.html deleted file mode 100644 index 9934d98e0..000000000 --- a/docs/api/XRTK.WindowsMixedReality.Utilities.WindowsMixedRealityUtilities.html +++ /dev/null @@ -1,188 +0,0 @@ - - - - - - - - Class WindowsMixedRealityUtilities - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.WindowsMixedReality.Utilities.html b/docs/api/XRTK.WindowsMixedReality.Utilities.html deleted file mode 100644 index 72af0ac05..000000000 --- a/docs/api/XRTK.WindowsMixedReality.Utilities.html +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - Namespace XRTK.WindowsMixedReality.Utilities - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.glTF.Editor.glTFPathFinder.html b/docs/api/XRTK.glTF.Editor.glTFPathFinder.html deleted file mode 100644 index 9dd64c82e..000000000 --- a/docs/api/XRTK.glTF.Editor.glTFPathFinder.html +++ /dev/null @@ -1,239 +0,0 @@ - - - - - - - - Class glTFPathFinder - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/XRTK.glTF.Editor.html b/docs/api/XRTK.glTF.Editor.html deleted file mode 100644 index 2f41772b0..000000000 --- a/docs/api/XRTK.glTF.Editor.html +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - Namespace XRTK.glTF.Editor - | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/index.html b/docs/api/index.html deleted file mode 100644 index 96745023d..000000000 --- a/docs/api/index.html +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - - - Mixed Reality Toolkit API Documentation | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/api/toc.html b/docs/api/toc.html deleted file mode 100644 index f31edbf90..000000000 --- a/docs/api/toc.html +++ /dev/null @@ -1,3766 +0,0 @@ - -
-
-
-
- - - -
-
-
-
- - -
-
-
-
\ No newline at end of file diff --git a/docs/articles/00-GettingStarted.html b/docs/articles/00-GettingStarted.html deleted file mode 100644 index a93a0c6db..000000000 --- a/docs/articles/00-GettingStarted.html +++ /dev/null @@ -1,240 +0,0 @@ - - - - - - - - Getting started with the Mixed Reality Toolkit | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/articles/01-DownloadingTheXRTK.html b/docs/articles/01-DownloadingTheXRTK.html deleted file mode 100644 index 0a667a1d6..000000000 --- a/docs/articles/01-DownloadingTheXRTK.html +++ /dev/null @@ -1,221 +0,0 @@ - - - - - - - - How to download the Mixed Reality Toolkit | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/articles/02-Configuration.html b/docs/articles/02-Configuration.html deleted file mode 100644 index ae2bca72a..000000000 --- a/docs/articles/02-Configuration.html +++ /dev/null @@ -1,153 +0,0 @@ - - - - - - - - Configuring your project | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/articles/03-template-generator.html b/docs/articles/03-template-generator.html deleted file mode 100644 index 56046e186..000000000 --- a/docs/articles/03-template-generator.html +++ /dev/null @@ -1,180 +0,0 @@ - - - - - - - - Platform Template Generation | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/articles/04-KnownIssues.html b/docs/articles/04-KnownIssues.html deleted file mode 100644 index 3905ca595..000000000 --- a/docs/articles/04-KnownIssues.html +++ /dev/null @@ -1,132 +0,0 @@ - - - - - - - - Known issues | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/articles/Template.html b/docs/articles/Template.html deleted file mode 100644 index 050c0f873..000000000 --- a/docs/articles/Template.html +++ /dev/null @@ -1,129 +0,0 @@ - - - - - - - - Headline | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/articles/appendices/A01-CodingGuidelines.html b/docs/articles/appendices/A01-CodingGuidelines.html deleted file mode 100644 index 075ba8519..000000000 --- a/docs/articles/appendices/A01-CodingGuidelines.html +++ /dev/null @@ -1,605 +0,0 @@ - - - - - - - - Coding Guidelines | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/articles/appendices/A02-ChoosingXRTKvsMRTK.html b/docs/articles/appendices/A02-ChoosingXRTKvsMRTK.html deleted file mode 100644 index fbc7243a9..000000000 --- a/docs/articles/appendices/A02-ChoosingXRTKvsMRTK.html +++ /dev/null @@ -1,247 +0,0 @@ - - - - - - - - Choosing between XRTK and MRTK | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/articles/appendices/A03-Roadmap.html b/docs/articles/appendices/A03-Roadmap.html deleted file mode 100644 index 10f28cf99..000000000 --- a/docs/articles/appendices/A03-Roadmap.html +++ /dev/null @@ -1,152 +0,0 @@ - - - - - - - - Coding Guidelines | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/articles/appendices/A04-FAQ.html b/docs/articles/appendices/A04-FAQ.html deleted file mode 100644 index 059ba41ec..000000000 --- a/docs/articles/appendices/A04-FAQ.html +++ /dev/null @@ -1,194 +0,0 @@ - - - - - - - - Mixed Reality Toolkit (XRTK) Frequently Asked Questions | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/articles/examples/examples.html b/docs/articles/examples/examples.html deleted file mode 100644 index 4ccc1716b..000000000 --- a/docs/articles/examples/examples.html +++ /dev/null @@ -1,140 +0,0 @@ - - - - - - - - Mixed Reality Toolkit Examples library | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/articles/platforms/etee.html b/docs/articles/platforms/etee.html deleted file mode 100644 index d12650be3..000000000 --- a/docs/articles/platforms/etee.html +++ /dev/null @@ -1,147 +0,0 @@ - - - - - - - - etee controllers (Advance information) | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/articles/platforms/magicleap.html b/docs/articles/platforms/magicleap.html deleted file mode 100644 index 6fbc3f1c7..000000000 --- a/docs/articles/platforms/magicleap.html +++ /dev/null @@ -1,185 +0,0 @@ - - - - - - - - Magic Leap | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/articles/platforms/oculus.html b/docs/articles/platforms/oculus.html deleted file mode 100644 index d44f398b5..000000000 --- a/docs/articles/platforms/oculus.html +++ /dev/null @@ -1,170 +0,0 @@ - - - - - - - - Oculus | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/articles/platforms/platforms.html b/docs/articles/platforms/platforms.html deleted file mode 100644 index 53dff288f..000000000 --- a/docs/articles/platforms/platforms.html +++ /dev/null @@ -1,151 +0,0 @@ - - - - - - - - Mixed Reality Toolkit Platforms | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/articles/platforms/steamvr.html b/docs/articles/platforms/steamvr.html deleted file mode 100644 index 43f6e3048..000000000 --- a/docs/articles/platforms/steamvr.html +++ /dev/null @@ -1,153 +0,0 @@ - - - - - - - - SteamVR (Advance information) | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/articles/platforms/ultraleap.html b/docs/articles/platforms/ultraleap.html deleted file mode 100644 index bc693acc1..000000000 --- a/docs/articles/platforms/ultraleap.html +++ /dev/null @@ -1,145 +0,0 @@ - - - - - - - - UltraLeap Hands tracking | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/articles/platforms/webxr.html b/docs/articles/platforms/webxr.html deleted file mode 100644 index 994c3fd1a..000000000 --- a/docs/articles/platforms/webxr.html +++ /dev/null @@ -1,128 +0,0 @@ - - - - - - - - WebXR platform (Advance information) | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/articles/platforms/windowsmixedreality.html b/docs/articles/platforms/windowsmixedreality.html deleted file mode 100644 index f8e56ac39..000000000 --- a/docs/articles/platforms/windowsmixedreality.html +++ /dev/null @@ -1,176 +0,0 @@ - - - - - - - - Windows Mixed Reality | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/articles/systems/01-camera-system.html b/docs/articles/systems/01-camera-system.html deleted file mode 100644 index 1bf20f564..000000000 --- a/docs/articles/systems/01-camera-system.html +++ /dev/null @@ -1,142 +0,0 @@ - - - - - - - - The Camera System | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/articles/systems/02-input-system.html b/docs/articles/systems/02-input-system.html deleted file mode 100644 index 54c36671a..000000000 --- a/docs/articles/systems/02-input-system.html +++ /dev/null @@ -1,207 +0,0 @@ - - - - - - - - The Input System | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/articles/systems/03-boundary-system.html b/docs/articles/systems/03-boundary-system.html deleted file mode 100644 index a21a9c0e6..000000000 --- a/docs/articles/systems/03-boundary-system.html +++ /dev/null @@ -1,138 +0,0 @@ - - - - - - - - The Boundary System | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/articles/systems/04-teleporting-system.html b/docs/articles/systems/04-teleporting-system.html deleted file mode 100644 index 094ddf5be..000000000 --- a/docs/articles/systems/04-teleporting-system.html +++ /dev/null @@ -1,150 +0,0 @@ - - - - - - - - The Teleport System | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/articles/systems/05-spatial-awareness-system.html b/docs/articles/systems/05-spatial-awareness-system.html deleted file mode 100644 index 65bdf79eb..000000000 --- a/docs/articles/systems/05-spatial-awareness-system.html +++ /dev/null @@ -1,157 +0,0 @@ - - - - - - - - The Spatial Awareness System | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/articles/systems/06-diagnostics-system.html b/docs/articles/systems/06-diagnostics-system.html deleted file mode 100644 index 0087decfc..000000000 --- a/docs/articles/systems/06-diagnostics-system.html +++ /dev/null @@ -1,138 +0,0 @@ - - - - - - - - The Diagnostics System | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/articles/systems/07-additional-serivce-providers.html b/docs/articles/systems/07-additional-serivce-providers.html deleted file mode 100644 index 206bc2e42..000000000 --- a/docs/articles/systems/07-additional-serivce-providers.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - The Additional Service Providers extension | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/articles/testplans/TP-00_Import-XRTK.SDK-And_Configure.html b/docs/articles/testplans/TP-00_Import-XRTK.SDK-And_Configure.html deleted file mode 100644 index bcf3fec1f..000000000 --- a/docs/articles/testplans/TP-00_Import-XRTK.SDK-And_Configure.html +++ /dev/null @@ -1,201 +0,0 @@ - - - - - - - - XRTK Testplan: Import XRTK.SDK into a project and configure | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/articles/testplans/TP-01_Import-XRTK.Oculus.html b/docs/articles/testplans/TP-01_Import-XRTK.Oculus.html deleted file mode 100644 index 1523fd981..000000000 --- a/docs/articles/testplans/TP-01_Import-XRTK.Oculus.html +++ /dev/null @@ -1,250 +0,0 @@ - - - - - - - - XRTK Testplan: Import XRTK.Oculus into a project | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/articles/testplans/TP-02_Import-XRTK.WMR.html b/docs/articles/testplans/TP-02_Import-XRTK.WMR.html deleted file mode 100644 index 1370c9a50..000000000 --- a/docs/articles/testplans/TP-02_Import-XRTK.WMR.html +++ /dev/null @@ -1,220 +0,0 @@ - - - - - - - - XRTK Testplan: Import XRTK.WindowsMixedReality into a project | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/articles/testplans/TP_Overview.html b/docs/articles/testplans/TP_Overview.html deleted file mode 100644 index a30f81f04..000000000 --- a/docs/articles/testplans/TP_Overview.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - - - Test Plans for the Mixed Reality Toolkit | XRTK-Core - - - - - - - - - - - - - - - -
-
- - - - -
- - - -
- - - - - - diff --git a/docs/articles/toc.html b/docs/articles/toc.html deleted file mode 100644 index 3fc63bb9d..000000000 --- a/docs/articles/toc.html +++ /dev/null @@ -1,120 +0,0 @@ - - \ No newline at end of file diff --git a/docs/favicon.ico b/docs/favicon.ico deleted file mode 100644 index 71570f61e..000000000 Binary files a/docs/favicon.ico and /dev/null differ diff --git a/docs/favicon.png b/docs/favicon.png deleted file mode 100644 index 5d61a9497..000000000 Binary files a/docs/favicon.png and /dev/null differ diff --git a/docs/fonts/glyphicons-halflings-regular.eot b/docs/fonts/glyphicons-halflings-regular.eot deleted file mode 100644 index b93a4953f..000000000 Binary files a/docs/fonts/glyphicons-halflings-regular.eot and /dev/null differ diff --git a/docs/fonts/glyphicons-halflings-regular.svg b/docs/fonts/glyphicons-halflings-regular.svg deleted file mode 100644 index 94fb5490a..000000000 --- a/docs/fonts/glyphicons-halflings-regular.svg +++ /dev/null @@ -1,288 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/fonts/glyphicons-halflings-regular.ttf b/docs/fonts/glyphicons-halflings-regular.ttf deleted file mode 100644 index 1413fc609..000000000 Binary files a/docs/fonts/glyphicons-halflings-regular.ttf and /dev/null differ diff --git a/docs/fonts/glyphicons-halflings-regular.woff b/docs/fonts/glyphicons-halflings-regular.woff deleted file mode 100644 index 9e612858f..000000000 Binary files a/docs/fonts/glyphicons-halflings-regular.woff and /dev/null differ diff --git a/docs/fonts/glyphicons-halflings-regular.woff2 b/docs/fonts/glyphicons-halflings-regular.woff2 deleted file mode 100644 index 64539b54c..000000000 Binary files a/docs/fonts/glyphicons-halflings-regular.woff2 and /dev/null differ diff --git a/docs/images/Branding/Roadmap.png b/docs/images/Branding/Roadmap.png deleted file mode 100644 index f649b9720..000000000 Binary files a/docs/images/Branding/Roadmap.png and /dev/null differ diff --git a/docs/images/Branding/XRTK-Background.png b/docs/images/Branding/XRTK-Background.png deleted file mode 100644 index 5e69151c1..000000000 Binary files a/docs/images/Branding/XRTK-Background.png and /dev/null differ diff --git a/docs/images/Branding/XRTK_Logo_1200x250.png b/docs/images/Branding/XRTK_Logo_1200x250.png deleted file mode 100644 index b993c6d04..000000000 Binary files a/docs/images/Branding/XRTK_Logo_1200x250.png and /dev/null differ diff --git a/docs/images/Branding/XRTK_Logo_250x250.png b/docs/images/Branding/XRTK_Logo_250x250.png deleted file mode 100644 index 3dfd79b40..000000000 Binary files a/docs/images/Branding/XRTK_Logo_250x250.png and /dev/null differ diff --git a/docs/images/Branding/XRTK_Logo_948x474.png b/docs/images/Branding/XRTK_Logo_948x474.png deleted file mode 100644 index 69777a5d5..000000000 Binary files a/docs/images/Branding/XRTK_Logo_948x474.png and /dev/null differ diff --git a/docs/images/Branding/XRTK_Logo_sm.png b/docs/images/Branding/XRTK_Logo_sm.png deleted file mode 100644 index 84e87770c..000000000 Binary files a/docs/images/Branding/XRTK_Logo_sm.png and /dev/null differ diff --git a/docs/images/Branding/xrtk_logo.psd b/docs/images/Branding/xrtk_logo.psd deleted file mode 100644 index 2da667033..000000000 Binary files a/docs/images/Branding/xrtk_logo.psd and /dev/null differ diff --git a/docs/images/Branding/xrtk_logo_3kx3k_transparent.png b/docs/images/Branding/xrtk_logo_3kx3k_transparent.png deleted file mode 100644 index 2bc515b7b..000000000 Binary files a/docs/images/Branding/xrtk_logo_3kx3k_transparent.png and /dev/null differ diff --git a/docs/images/Branding/xrtk_logo_black_3kx3k.png b/docs/images/Branding/xrtk_logo_black_3kx3k.png deleted file mode 100644 index cef0833c1..000000000 Binary files a/docs/images/Branding/xrtk_logo_black_3kx3k.png and /dev/null differ diff --git a/docs/images/Branding/xrtk_logo_white_3kx3k.png b/docs/images/Branding/xrtk_logo_white_3kx3k.png deleted file mode 100644 index 1ed06181d..000000000 Binary files a/docs/images/Branding/xrtk_logo_white_3kx3k.png and /dev/null differ diff --git a/docs/images/Configuration/AdditionalServices/AdditionalServiceProvidersList.png b/docs/images/Configuration/AdditionalServices/AdditionalServiceProvidersList.png deleted file mode 100644 index 63ddd46e1..000000000 Binary files a/docs/images/Configuration/AdditionalServices/AdditionalServiceProvidersList.png and /dev/null differ diff --git a/docs/images/Configuration/AdditionalServices/AdditionalServiceProvidersProfile.png b/docs/images/Configuration/AdditionalServices/AdditionalServiceProvidersProfile.png deleted file mode 100644 index 05ac3a183..000000000 Binary files a/docs/images/Configuration/AdditionalServices/AdditionalServiceProvidersProfile.png and /dev/null differ diff --git a/docs/images/Configuration/BoundarySystem/BoundarySystemProfile.png b/docs/images/Configuration/BoundarySystem/BoundarySystemProfile.png deleted file mode 100644 index 276dd3d59..000000000 Binary files a/docs/images/Configuration/BoundarySystem/BoundarySystemProfile.png and /dev/null differ diff --git a/docs/images/Configuration/BoundarySystem/BoundarySystemSettings.png b/docs/images/Configuration/BoundarySystem/BoundarySystemSettings.png deleted file mode 100644 index 4c50a531b..000000000 Binary files a/docs/images/Configuration/BoundarySystem/BoundarySystemSettings.png and /dev/null differ diff --git a/docs/images/Configuration/CameraSystem/CameraSystemOptions.png b/docs/images/Configuration/CameraSystem/CameraSystemOptions.png deleted file mode 100644 index 08e14a92b..000000000 Binary files a/docs/images/Configuration/CameraSystem/CameraSystemOptions.png and /dev/null differ diff --git a/docs/images/Configuration/CameraSystem/CameraSystemProfile.png b/docs/images/Configuration/CameraSystem/CameraSystemProfile.png deleted file mode 100644 index f0b30b4b4..000000000 Binary files a/docs/images/Configuration/CameraSystem/CameraSystemProfile.png and /dev/null differ diff --git a/docs/images/Configuration/CameraSystem/CameraSystemSettings.png b/docs/images/Configuration/CameraSystem/CameraSystemSettings.png deleted file mode 100644 index 0fece47f6..000000000 Binary files a/docs/images/Configuration/CameraSystem/CameraSystemSettings.png and /dev/null differ diff --git a/docs/images/Configuration/Diagnostics/DiagnosticsDataProviders.png b/docs/images/Configuration/Diagnostics/DiagnosticsDataProviders.png deleted file mode 100644 index fb37789bc..000000000 Binary files a/docs/images/Configuration/Diagnostics/DiagnosticsDataProviders.png and /dev/null differ diff --git a/docs/images/Configuration/Diagnostics/DiagnosticsSettings.png b/docs/images/Configuration/Diagnostics/DiagnosticsSettings.png deleted file mode 100644 index 644b5b89a..000000000 Binary files a/docs/images/Configuration/Diagnostics/DiagnosticsSettings.png and /dev/null differ diff --git a/docs/images/Configuration/Diagnostics/DiagnosticsSystemProfile.png b/docs/images/Configuration/Diagnostics/DiagnosticsSystemProfile.png deleted file mode 100644 index 1829c41ae..000000000 Binary files a/docs/images/Configuration/Diagnostics/DiagnosticsSystemProfile.png and /dev/null differ diff --git a/docs/images/Configuration/Diagnostics/DiagnosticsSystemSettings.png b/docs/images/Configuration/Diagnostics/DiagnosticsSystemSettings.png deleted file mode 100644 index f4ce404f5..000000000 Binary files a/docs/images/Configuration/Diagnostics/DiagnosticsSystemSettings.png and /dev/null differ diff --git a/docs/images/Configuration/InputSystem/ConfiguredControllerDataProviders.png b/docs/images/Configuration/InputSystem/ConfiguredControllerDataProviders.png deleted file mode 100644 index ee4202867..000000000 Binary files a/docs/images/Configuration/InputSystem/ConfiguredControllerDataProviders.png and /dev/null differ diff --git a/docs/images/Configuration/InputSystem/ControllerDataProvider.png b/docs/images/Configuration/InputSystem/ControllerDataProvider.png deleted file mode 100644 index e28c22490..000000000 Binary files a/docs/images/Configuration/InputSystem/ControllerDataProvider.png and /dev/null differ diff --git a/docs/images/Configuration/InputSystem/ControllerDataProviderProfile.png b/docs/images/Configuration/InputSystem/ControllerDataProviderProfile.png deleted file mode 100644 index 36d441d26..000000000 Binary files a/docs/images/Configuration/InputSystem/ControllerDataProviderProfile.png and /dev/null differ diff --git a/docs/images/Configuration/InputSystem/ControllerProfile.png b/docs/images/Configuration/InputSystem/ControllerProfile.png deleted file mode 100644 index 6ad560a6e..000000000 Binary files a/docs/images/Configuration/InputSystem/ControllerProfile.png and /dev/null differ diff --git a/docs/images/Configuration/InputSystem/GlobalHandSettings.png b/docs/images/Configuration/InputSystem/GlobalHandSettings.png deleted file mode 100644 index 46d567a66..000000000 Binary files a/docs/images/Configuration/InputSystem/GlobalHandSettings.png and /dev/null differ diff --git a/docs/images/Configuration/InputSystem/GlobalPointerSettings.png b/docs/images/Configuration/InputSystem/GlobalPointerSettings.png deleted file mode 100644 index 7ec37c055..000000000 Binary files a/docs/images/Configuration/InputSystem/GlobalPointerSettings.png and /dev/null differ diff --git a/docs/images/Configuration/InputSystem/InputActions.png b/docs/images/Configuration/InputSystem/InputActions.png deleted file mode 100644 index 4bf68a2be..000000000 Binary files a/docs/images/Configuration/InputSystem/InputActions.png and /dev/null differ diff --git a/docs/images/Configuration/InputSystem/InputSystemProfile.png b/docs/images/Configuration/InputSystem/InputSystemProfile.png deleted file mode 100644 index 45fa00e7c..000000000 Binary files a/docs/images/Configuration/InputSystem/InputSystemProfile.png and /dev/null differ diff --git a/docs/images/Configuration/InputSystem/InputSystemSettings.png b/docs/images/Configuration/InputSystem/InputSystemSettings.png deleted file mode 100644 index 353befd80..000000000 Binary files a/docs/images/Configuration/InputSystem/InputSystemSettings.png and /dev/null differ diff --git a/docs/images/Configuration/InputSystem/ShortcutControllerActionMappings.png b/docs/images/Configuration/InputSystem/ShortcutControllerActionMappings.png deleted file mode 100644 index 70119dcc5..000000000 Binary files a/docs/images/Configuration/InputSystem/ShortcutControllerActionMappings.png and /dev/null differ diff --git a/docs/images/Configuration/MixedRealityProfileCloneButton.png b/docs/images/Configuration/MixedRealityProfileCloneButton.png deleted file mode 100644 index 669682bfc..000000000 Binary files a/docs/images/Configuration/MixedRealityProfileCloneButton.png and /dev/null differ diff --git a/docs/images/Configuration/MixedRealityProfileView.png b/docs/images/Configuration/MixedRealityProfileView.png deleted file mode 100644 index 010fd907e..000000000 Binary files a/docs/images/Configuration/MixedRealityProfileView.png and /dev/null differ diff --git a/docs/images/Configuration/MixedRealityToolkitConfiguration.png b/docs/images/Configuration/MixedRealityToolkitConfiguration.png deleted file mode 100644 index 85792ac5e..000000000 Binary files a/docs/images/Configuration/MixedRealityToolkitConfiguration.png and /dev/null differ diff --git a/docs/images/Configuration/Platforms/PlatformConfigurationDefaults.png b/docs/images/Configuration/Platforms/PlatformConfigurationDefaults.png deleted file mode 100644 index dae7885ee..000000000 Binary files a/docs/images/Configuration/Platforms/PlatformConfigurationDefaults.png and /dev/null differ diff --git a/docs/images/Configuration/Platforms/PlatformSelector.png b/docs/images/Configuration/Platforms/PlatformSelector.png deleted file mode 100644 index 9a10e8dea..000000000 Binary files a/docs/images/Configuration/Platforms/PlatformSelector.png and /dev/null differ diff --git a/docs/images/Configuration/Platforms/PlatformServiceConfigurationProfile.png b/docs/images/Configuration/Platforms/PlatformServiceConfigurationProfile.png deleted file mode 100644 index f5a8476fd..000000000 Binary files a/docs/images/Configuration/Platforms/PlatformServiceConfigurationProfile.png and /dev/null differ diff --git a/docs/images/Configuration/SpatialAwareness/SpatialAwarenessDataProviders.png b/docs/images/Configuration/SpatialAwareness/SpatialAwarenessDataProviders.png deleted file mode 100644 index 77baab05b..000000000 Binary files a/docs/images/Configuration/SpatialAwareness/SpatialAwarenessDataProviders.png and /dev/null differ diff --git a/docs/images/Configuration/SpatialAwareness/SpatialAwarenessSystemProfile.png b/docs/images/Configuration/SpatialAwareness/SpatialAwarenessSystemProfile.png deleted file mode 100644 index 1680e63ba..000000000 Binary files a/docs/images/Configuration/SpatialAwareness/SpatialAwarenessSystemProfile.png and /dev/null differ diff --git a/docs/images/Configuration/SpatialAwareness/SpatialAwarenessSystemSettings.png b/docs/images/Configuration/SpatialAwareness/SpatialAwarenessSystemSettings.png deleted file mode 100644 index 8587334b1..000000000 Binary files a/docs/images/Configuration/SpatialAwareness/SpatialAwarenessSystemSettings.png and /dev/null differ diff --git a/docs/images/Configuration/SpatialAwareness/SpatialMeshObserverOptions.png b/docs/images/Configuration/SpatialAwareness/SpatialMeshObserverOptions.png deleted file mode 100644 index b05b33e53..000000000 Binary files a/docs/images/Configuration/SpatialAwareness/SpatialMeshObserverOptions.png and /dev/null differ diff --git a/docs/images/Configuration/SpatialAwareness/SpatialSurfaceObserverOptions.png b/docs/images/Configuration/SpatialAwareness/SpatialSurfaceObserverOptions.png deleted file mode 100644 index cfb7d2852..000000000 Binary files a/docs/images/Configuration/SpatialAwareness/SpatialSurfaceObserverOptions.png and /dev/null differ diff --git a/docs/images/Configuration/TeleportSystem/TeleportSystemDataProviders.png b/docs/images/Configuration/TeleportSystem/TeleportSystemDataProviders.png deleted file mode 100644 index 2570a5a99..000000000 Binary files a/docs/images/Configuration/TeleportSystem/TeleportSystemDataProviders.png and /dev/null differ diff --git a/docs/images/Configuration/TeleportSystem/TeleportSystemProfile.png b/docs/images/Configuration/TeleportSystem/TeleportSystemProfile.png deleted file mode 100644 index e4326085f..000000000 Binary files a/docs/images/Configuration/TeleportSystem/TeleportSystemProfile.png and /dev/null differ diff --git a/docs/images/Configuration/TeleportSystem/TeleportSystemSettings.png b/docs/images/Configuration/TeleportSystem/TeleportSystemSettings.png deleted file mode 100644 index 0a653bfcd..000000000 Binary files a/docs/images/Configuration/TeleportSystem/TeleportSystemSettings.png and /dev/null differ diff --git a/docs/images/Configuration/TeleportSystem/TeleportValidationOptions.png b/docs/images/Configuration/TeleportSystem/TeleportValidationOptions.png deleted file mode 100644 index daeaa81c6..000000000 Binary files a/docs/images/Configuration/TeleportSystem/TeleportValidationOptions.png and /dev/null differ diff --git a/docs/images/DownloadingTheXRTK/LocatePackagesFolder.png b/docs/images/DownloadingTheXRTK/LocatePackagesFolder.png deleted file mode 100644 index e96f2ebaa..000000000 Binary files a/docs/images/DownloadingTheXRTK/LocatePackagesFolder.png and /dev/null differ diff --git a/docs/images/DownloadingTheXRTK/PackageManager.png b/docs/images/DownloadingTheXRTK/PackageManager.png deleted file mode 100644 index 6afe10928..000000000 Binary files a/docs/images/DownloadingTheXRTK/PackageManager.png and /dev/null differ diff --git a/docs/images/DownloadingTheXRTK/ScopedRegistry.png b/docs/images/DownloadingTheXRTK/ScopedRegistry.png deleted file mode 100644 index b20282119..000000000 Binary files a/docs/images/DownloadingTheXRTK/ScopedRegistry.png and /dev/null differ diff --git a/docs/images/DownloadingTheXRTK/SymbolicLinkWizard.png b/docs/images/DownloadingTheXRTK/SymbolicLinkWizard.png deleted file mode 100644 index d275df74c..000000000 Binary files a/docs/images/DownloadingTheXRTK/SymbolicLinkWizard.png and /dev/null differ diff --git a/docs/images/DownloadingTheXRTK/SymbolicLinks.png b/docs/images/DownloadingTheXRTK/SymbolicLinks.png deleted file mode 100644 index d487b85b3..000000000 Binary files a/docs/images/DownloadingTheXRTK/SymbolicLinks.png and /dev/null differ diff --git a/docs/images/DownloadingTheXRTK/UnityPackageManager-Advanced.jpg b/docs/images/DownloadingTheXRTK/UnityPackageManager-Advanced.jpg deleted file mode 100644 index 905f5411c..000000000 Binary files a/docs/images/DownloadingTheXRTK/UnityPackageManager-Advanced.jpg and /dev/null differ diff --git a/docs/images/DownloadingTheXRTK/UnityPackageManager-MyRegistries.jpg b/docs/images/DownloadingTheXRTK/UnityPackageManager-MyRegistries.jpg deleted file mode 100644 index 975b488b1..000000000 Binary files a/docs/images/DownloadingTheXRTK/UnityPackageManager-MyRegistries.jpg and /dev/null differ diff --git a/docs/images/DownloadingTheXRTK/UnityPackageManager-ScopedRegistries.jpg b/docs/images/DownloadingTheXRTK/UnityPackageManager-ScopedRegistries.jpg deleted file mode 100644 index 5291faf30..000000000 Binary files a/docs/images/DownloadingTheXRTK/UnityPackageManager-ScopedRegistries.jpg and /dev/null differ diff --git a/docs/images/DownloadingTheXRTK/UnityPackageManager-XRTKRegistries.jpg b/docs/images/DownloadingTheXRTK/UnityPackageManager-XRTKRegistries.jpg deleted file mode 100644 index 955afa4fc..000000000 Binary files a/docs/images/DownloadingTheXRTK/UnityPackageManager-XRTKRegistries.jpg and /dev/null differ diff --git a/docs/images/DownloadingTheXRTK/XRTKAutoInstallAsset.png b/docs/images/DownloadingTheXRTK/XRTKAutoInstallAsset.png deleted file mode 100644 index ec7d38886..000000000 Binary files a/docs/images/DownloadingTheXRTK/XRTKAutoInstallAsset.png and /dev/null differ diff --git a/docs/images/DownloadingTheXRTK/XRTKPackageList.png b/docs/images/DownloadingTheXRTK/XRTKPackageList.png deleted file mode 100644 index 3160639a9..000000000 Binary files a/docs/images/DownloadingTheXRTK/XRTKPackageList.png and /dev/null differ diff --git a/docs/images/FAQ/DefaultCameraSettings.png b/docs/images/FAQ/DefaultCameraSettings.png deleted file mode 100644 index 679b8d768..000000000 Binary files a/docs/images/FAQ/DefaultCameraSettings.png and /dev/null differ diff --git a/docs/images/GettingStarted/MixedRealityBuildWindow.png b/docs/images/GettingStarted/MixedRealityBuildWindow.png deleted file mode 100644 index 0be104035..000000000 Binary files a/docs/images/GettingStarted/MixedRealityBuildWindow.png and /dev/null differ diff --git a/docs/images/GettingStarted/MixedRealityConfigure.png b/docs/images/GettingStarted/MixedRealityConfigure.png deleted file mode 100644 index 365913217..000000000 Binary files a/docs/images/GettingStarted/MixedRealityConfigure.png and /dev/null differ diff --git a/docs/images/GettingStarted/MixedRealityScene.png b/docs/images/GettingStarted/MixedRealityScene.png deleted file mode 100644 index f725d9ab5..000000000 Binary files a/docs/images/GettingStarted/MixedRealityScene.png and /dev/null differ diff --git a/docs/images/GettingStarted/NewPlatformPrompt.png b/docs/images/GettingStarted/NewPlatformPrompt.png deleted file mode 100644 index 38ed17029..000000000 Binary files a/docs/images/GettingStarted/NewPlatformPrompt.png and /dev/null differ diff --git a/docs/images/GettingStarted/UnityPackageManager-XRTK.png b/docs/images/GettingStarted/UnityPackageManager-XRTK.png deleted file mode 100644 index 7b8d73986..000000000 Binary files a/docs/images/GettingStarted/UnityPackageManager-XRTK.png and /dev/null differ diff --git a/docs/images/GettingStarted/XR_SDK_Manager.png b/docs/images/GettingStarted/XR_SDK_Manager.png deleted file mode 100644 index dbe73493b..000000000 Binary files a/docs/images/GettingStarted/XR_SDK_Manager.png and /dev/null differ diff --git a/docs/images/Sponsors/vim_logo.jpg b/docs/images/Sponsors/vim_logo.jpg deleted file mode 100644 index 4ad09a400..000000000 Binary files a/docs/images/Sponsors/vim_logo.jpg and /dev/null differ diff --git a/docs/images/TemplateGeneration/BranchMetaFiles.png b/docs/images/TemplateGeneration/BranchMetaFiles.png deleted file mode 100644 index bd5bb9e1b..000000000 Binary files a/docs/images/TemplateGeneration/BranchMetaFiles.png and /dev/null differ diff --git a/docs/images/TemplateGeneration/BranchProtections-01.png b/docs/images/TemplateGeneration/BranchProtections-01.png deleted file mode 100644 index 1c85130a2..000000000 Binary files a/docs/images/TemplateGeneration/BranchProtections-01.png and /dev/null differ diff --git a/docs/images/TemplateGeneration/BranchProtections-02.png b/docs/images/TemplateGeneration/BranchProtections-02.png deleted file mode 100644 index a4c49f539..000000000 Binary files a/docs/images/TemplateGeneration/BranchProtections-02.png and /dev/null differ diff --git a/docs/images/TemplateGeneration/CloneLocalRepo.png b/docs/images/TemplateGeneration/CloneLocalRepo.png deleted file mode 100644 index cd349c787..000000000 Binary files a/docs/images/TemplateGeneration/CloneLocalRepo.png and /dev/null differ diff --git a/docs/images/TemplateGeneration/CloneRepo.png b/docs/images/TemplateGeneration/CloneRepo.png deleted file mode 100644 index c4ecc166d..000000000 Binary files a/docs/images/TemplateGeneration/CloneRepo.png and /dev/null differ diff --git a/docs/images/TemplateGeneration/CommitToMaster.png b/docs/images/TemplateGeneration/CommitToMaster.png deleted file mode 100644 index 6be45c5e1..000000000 Binary files a/docs/images/TemplateGeneration/CommitToMaster.png and /dev/null differ diff --git a/docs/images/TemplateGeneration/CommitToMetaFiles.png b/docs/images/TemplateGeneration/CommitToMetaFiles.png deleted file mode 100644 index a409568d0..000000000 Binary files a/docs/images/TemplateGeneration/CommitToMetaFiles.png and /dev/null differ diff --git a/docs/images/TemplateGeneration/DefaultBranch.png b/docs/images/TemplateGeneration/DefaultBranch.png deleted file mode 100644 index ddfdc9023..000000000 Binary files a/docs/images/TemplateGeneration/DefaultBranch.png and /dev/null differ diff --git a/docs/images/TemplateGeneration/DevelopmentBranch.png b/docs/images/TemplateGeneration/DevelopmentBranch.png deleted file mode 100644 index c2ea36ef3..000000000 Binary files a/docs/images/TemplateGeneration/DevelopmentBranch.png and /dev/null differ diff --git a/docs/images/TemplateGeneration/DevelopmentCommit.png b/docs/images/TemplateGeneration/DevelopmentCommit.png deleted file mode 100644 index d4f464e6d..000000000 Binary files a/docs/images/TemplateGeneration/DevelopmentCommit.png and /dev/null differ diff --git a/docs/images/TemplateGeneration/DisableFeatures.png b/docs/images/TemplateGeneration/DisableFeatures.png deleted file mode 100644 index 4b7465c3f..000000000 Binary files a/docs/images/TemplateGeneration/DisableFeatures.png and /dev/null differ diff --git a/docs/images/TemplateGeneration/LaunchUnity.png b/docs/images/TemplateGeneration/LaunchUnity.png deleted file mode 100644 index d97cd5d5c..000000000 Binary files a/docs/images/TemplateGeneration/LaunchUnity.png and /dev/null differ diff --git a/docs/images/TemplateGeneration/MergeButtonFeatures.png b/docs/images/TemplateGeneration/MergeButtonFeatures.png deleted file mode 100644 index f307358ad..000000000 Binary files a/docs/images/TemplateGeneration/MergeButtonFeatures.png and /dev/null differ diff --git a/docs/images/TemplateGeneration/NewPipeline-01.png b/docs/images/TemplateGeneration/NewPipeline-01.png deleted file mode 100644 index b229a0feb..000000000 Binary files a/docs/images/TemplateGeneration/NewPipeline-01.png and /dev/null differ diff --git a/docs/images/TemplateGeneration/NewPipeline-02.png b/docs/images/TemplateGeneration/NewPipeline-02.png deleted file mode 100644 index ebd1dbb9b..000000000 Binary files a/docs/images/TemplateGeneration/NewPipeline-02.png and /dev/null differ diff --git a/docs/images/TemplateGeneration/NewPipeline-03.png b/docs/images/TemplateGeneration/NewPipeline-03.png deleted file mode 100644 index 0669dbf57..000000000 Binary files a/docs/images/TemplateGeneration/NewPipeline-03.png and /dev/null differ diff --git a/docs/images/TemplateGeneration/NewPipeline-04.png b/docs/images/TemplateGeneration/NewPipeline-04.png deleted file mode 100644 index eba0f11c7..000000000 Binary files a/docs/images/TemplateGeneration/NewPipeline-04.png and /dev/null differ diff --git a/docs/images/TemplateGeneration/NewPipeline-05.png b/docs/images/TemplateGeneration/NewPipeline-05.png deleted file mode 100644 index be0de2147..000000000 Binary files a/docs/images/TemplateGeneration/NewPipeline-05.png and /dev/null differ diff --git a/docs/images/TemplateGeneration/NewPipeline-06.png b/docs/images/TemplateGeneration/NewPipeline-06.png deleted file mode 100644 index 996dff542..000000000 Binary files a/docs/images/TemplateGeneration/NewPipeline-06.png and /dev/null differ diff --git a/docs/images/TemplateGeneration/NewPipeline-07.png b/docs/images/TemplateGeneration/NewPipeline-07.png deleted file mode 100644 index 10de8e5cc..000000000 Binary files a/docs/images/TemplateGeneration/NewPipeline-07.png and /dev/null differ diff --git a/docs/images/TemplateGeneration/NewPipeline-08.png b/docs/images/TemplateGeneration/NewPipeline-08.png deleted file mode 100644 index ada9605be..000000000 Binary files a/docs/images/TemplateGeneration/NewPipeline-08.png and /dev/null differ diff --git a/docs/images/TemplateGeneration/NewRepoButton.png b/docs/images/TemplateGeneration/NewRepoButton.png deleted file mode 100644 index 68c1bc97b..000000000 Binary files a/docs/images/TemplateGeneration/NewRepoButton.png and /dev/null differ diff --git a/docs/images/TemplateGeneration/NewRepoSettings.png b/docs/images/TemplateGeneration/NewRepoSettings.png deleted file mode 100644 index 4ca656cf1..000000000 Binary files a/docs/images/TemplateGeneration/NewRepoSettings.png and /dev/null differ diff --git a/docs/images/TemplateGeneration/ProjectRootExplorer.png b/docs/images/TemplateGeneration/ProjectRootExplorer.png deleted file mode 100644 index a04087a62..000000000 Binary files a/docs/images/TemplateGeneration/ProjectRootExplorer.png and /dev/null differ diff --git a/docs/images/TemplateGeneration/PullRequest-01.png b/docs/images/TemplateGeneration/PullRequest-01.png deleted file mode 100644 index 9b34c3c15..000000000 Binary files a/docs/images/TemplateGeneration/PullRequest-01.png and /dev/null differ diff --git a/docs/images/TemplateGeneration/PullRequest-02.png b/docs/images/TemplateGeneration/PullRequest-02.png deleted file mode 100644 index a966b7722..000000000 Binary files a/docs/images/TemplateGeneration/PullRequest-02.png and /dev/null differ diff --git a/docs/images/TemplateGeneration/PullRequest-03.png b/docs/images/TemplateGeneration/PullRequest-03.png deleted file mode 100644 index e76a49563..000000000 Binary files a/docs/images/TemplateGeneration/PullRequest-03.png and /dev/null differ diff --git a/docs/images/TemplateGeneration/RunPowershell.png b/docs/images/TemplateGeneration/RunPowershell.png deleted file mode 100644 index 567114df9..000000000 Binary files a/docs/images/TemplateGeneration/RunPowershell.png and /dev/null differ diff --git a/docs/index.html b/docs/index.html deleted file mode 100644 index 101914213..000000000 --- a/docs/index.html +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/docs/logo.png b/docs/logo.png deleted file mode 100644 index d4189ab61..000000000 Binary files a/docs/logo.png and /dev/null differ diff --git a/docs/logo.svg b/docs/logo.svg deleted file mode 100644 index ccb2d7bc9..000000000 --- a/docs/logo.svg +++ /dev/null @@ -1,25 +0,0 @@ - - - - -Created by Docfx - - - - - - - diff --git a/docs/manifest.json b/docs/manifest.json deleted file mode 100644 index ed373fbeb..000000000 --- a/docs/manifest.json +++ /dev/null @@ -1,13758 +0,0 @@ -{ - "homepages": [], - "source_base_path": "C:/Dev/XRTK/Core/docfx_project", - "xrefmap": "xrefmap.yml", - "files": [ - { - "type": "Conceptual", - "source_relative_path": "../CODE_OF_CONDUCT.md", - "output": { - ".html": { - "relative_path": "CODE_OF_CONDUCT.html", - "hash": "jtxe6YuEsTyZRK3kQCrB3vwQ7Ny1Qw4wDfqz8ExJ9Io=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Conceptual", - "source_relative_path": "../CONTRIBUTING.md", - "output": { - ".html": { - "relative_path": "CONTRIBUTING.html", - "hash": "hbYWXrr6/61w69TLC6aQ/3e7rLrbTLUmG4L0RoEn0rw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Conceptual", - "source_relative_path": "../CONTRIBUTORS.md", - "output": { - ".html": { - "relative_path": "CONTRIBUTORS.html", - "hash": "icNonik7hZ7p8k9sHj8J8uXXsqAwSKQzVN0UQtQL4qE=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Conceptual", - "source_relative_path": "../LICENSE.md", - "output": { - ".html": { - "relative_path": "LICENSE.html", - "hash": "q+YaJZ5S/tp3UD3DmrQK3IAONkhmGeAU+C9oIIGCjaQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Conceptual", - "source_relative_path": "../README.md", - "output": { - ".html": { - "relative_path": "README.html", - "hash": "YxlE9dDJoeljcDwLh5sRikStKy0zV5lPsOdGVUd7A0Q=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Attributes.AxisConstraintAttribute.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Attributes.AxisConstraintAttribute.html", - "hash": "/pUQKOPxUyl7Ent72bvDTpEJPdoVu7zU37k3LVUOUUU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Attributes.EnumFlagsAttribute.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Attributes.EnumFlagsAttribute.html", - "hash": "B30/bEhMgCkOAm/jrREyiovQec0Wx8mywutGhl9uWkg=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Attributes.ExtendsAttribute.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Attributes.ExtendsAttribute.html", - "hash": "LO8dyMEdb8NpxfdjBpQfYpZPCgYnyi0zZ+b/T27qW0U=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Attributes.ImplementsAttribute.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Attributes.ImplementsAttribute.html", - "hash": "nzP9MG91DmkpH7wPeWot4C9n5jwrnmUv40Z4lyJf0gE=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Attributes.PhysicsLayerAttribute.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Attributes.PhysicsLayerAttribute.html", - "hash": "lGBVROFxDeCNMwQgiueWHNGyAxum00Cto06rBl+kyok=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Attributes.PrefabAttribute.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Attributes.PrefabAttribute.html", - "hash": "EgEeCcOFBpnsoh7LMEm/X2b0VH4UCBg9/zP5jFKi4M0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Attributes.RuntimePlatformAttribute.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Attributes.RuntimePlatformAttribute.html", - "hash": "mxyUEekpv1gW2TvC4xyK5qEVbcOogUt4pWbjxNQ+OU8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Attributes.SystemTypeAttribute.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Attributes.SystemTypeAttribute.html", - "hash": "QRynyU+h34Rhhe1XK8ij2S7NyPOsiY/gek0iZvUxTN0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Attributes.Vector3RangeAttribute.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Attributes.Vector3RangeAttribute.html", - "hash": "f/IErWswig7unFglP01NoGoCH0IPpHYP9Dwsz56P6zY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Attributes.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Attributes.html", - "hash": "sqIIhFF65Txwi6ETFfviOlSnEMteMBl8C9I0e/Qifms=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.BaseMixedRealityExtensionDataProviderProfile.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.BaseMixedRealityExtensionDataProviderProfile.html", - "hash": "wk2Hh94yEzrzuUAapU8XuLaC01fYc9CoiDnP/LeDZCY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.BaseMixedRealityExtensionServiceProfile.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.BaseMixedRealityExtensionServiceProfile.html", - "hash": "M+s+ydYdkZ/Sm/FfyxLIz1tzL5zaQuO4ddwZVeXuUrw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.BaseMixedRealityProfile.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.BaseMixedRealityProfile.html", - "hash": "Noax9qwe1NAXd1LvTZ9txXEcXyjLBhzSLdBZtmP5rXI=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.BaseMixedRealityServiceProfile-1.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.BaseMixedRealityServiceProfile-1.html", - "hash": "GoxdX9l86tDdIoDnX1mmxxt7CXqcbgFu0dDawfmvhtk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.BoundarySystem.BoundaryVisibility.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.BoundarySystem.BoundaryVisibility.html", - "hash": "NerkMA9fCSsGmgkIhjr7a6zPTsR3wPjrDK6IQ+8z9rY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.BoundarySystem.Edge.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.BoundarySystem.Edge.html", - "hash": "G1RuTlEe6oBKtEMpjD+XhfeocVg89khZ25G6BfiJdIw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.BoundarySystem.InscribedRectangle.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.BoundarySystem.InscribedRectangle.html", - "hash": "Rll8p2IBAH4dPMu7S2UuohnwYbF3EF7Wf8sEm9cYUUw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.html", - "hash": "BY+wXaIt0bebJNl1d4OUr1XXJsoU+b8Pxs9dym4K904=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.BoundarySystem.ProximityAlert.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.BoundarySystem.ProximityAlert.html", - "hash": "mx4lnSdqtSnW32mwjjMLwLwSSc8s8vztqjJcwB8gR6g=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.BoundarySystem.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.BoundarySystem.html", - "hash": "Dbi6otD/YQAVIG2y92z5LTRPM5/JO1FWmCdsNGEZBZU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.html", - "hash": "iK+w0Z113YAjGmdjYkIxituSfBbPWAJt2beniB138lY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.CameraSystem.MixedRealityCameraSystemProfile.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.CameraSystem.MixedRealityCameraSystemProfile.html", - "hash": "Bad3NbJAfXMMNmYs/eyg/N6tT/WYInUACrqztuy03zY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.CameraSystem.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.CameraSystem.html", - "hash": "/vNvdoBBQDcpXtsektivV6baKVRfWZEnypG/4ih9KH8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Controllers.BaseMixedRealityControllerDataProviderProfile.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Controllers.BaseMixedRealityControllerDataProviderProfile.html", - "hash": "7RoCAeCDnQjzQR6k2dgiwzlSRx4cfPlyKYYwea9VzrM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Controllers.ControllerDefinition.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Controllers.ControllerDefinition.html", - "hash": "lQKAOmPzOgIWGcyrVoUs/lJxKUgxZEE2x6ko1tkCD4o=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.html", - "hash": "0KBn4EQQIA87RXOF3g4hYIdnmZ9SOu781pY/Srocqx0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Controllers.Hands.HandBoundsLOD.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Controllers.Hands.HandBoundsLOD.html", - "hash": "ZC42UOMzZoD9vnPn6t0RnrchBWn1OfRRs7qy5p3MYAU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.html", - "hash": "wfNCPl7U7/IYQE1YPfmjZ9hmJMCYj9GnGqLjzotiE14=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Controllers.Hands.HandData.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Controllers.Hands.HandData.html", - "hash": "idl4D51Rr32HBeD6Uz8WY+WOtSTk7sctbnF8xlmPQDk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Controllers.Hands.HandFinger.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Controllers.Hands.HandFinger.html", - "hash": "1jw4m1jMlt/6deLfQTV7I8qUMwiZcc6dCYcDcDbrGGg=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Controllers.Hands.HandMeshData.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Controllers.Hands.HandMeshData.html", - "hash": "MxgFPydatAV7Iewnl9kzu4llMpiNrF0ZB3dMViM3TAY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Controllers.Hands.HandRenderingMode.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Controllers.Hands.HandRenderingMode.html", - "hash": "lcCqjTtPjWG92wFS+ob7mzMo/NHymy+4r3BZrCvBLYI=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Controllers.Hands.RecordedHandJoint.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Controllers.Hands.RecordedHandJoint.html", - "hash": "xKGDWnaikTK9fD3d06XasPYzP1JpT077tzb003muJIg=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Controllers.Hands.RecordedHandJoints.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Controllers.Hands.RecordedHandJoints.html", - "hash": "VEClqPTNAqTtRgttwQqPGLe9AzIrE98kEkz80kTddY8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Controllers.Hands.TrackedHandBounds.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Controllers.Hands.TrackedHandBounds.html", - "hash": "9jd8Fk0O4WOfI4xTHEPVTHQlZKtKw3VE7am1NtFXY4E=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Controllers.Hands.TrackedHandJoint.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Controllers.Hands.TrackedHandJoint.html", - "hash": "rX225xx/sUwmmkPvG6E+hUoLvs/bCvraBpqbq0jQvdQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Controllers.Hands.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Controllers.Hands.html", - "hash": "oAGMqukl7m54UoJnkmeGmPKrGuEoJT8oJ6PK6yYG8vc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile.html", - "hash": "GtC6vLsRlhsRTJQKT2pH0vGEh/aqGzYaZmfkS3UiTgs=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Controllers.MixedRealityControllerVisualizationProfile.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Controllers.MixedRealityControllerVisualizationProfile.html", - "hash": "muVxsZ0Le0idFZL8yqBbLIZ9mrfmHFTb3J9f1Kj9Zxw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Controllers.MixedRealityInteractionMappingProfile.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Controllers.MixedRealityInteractionMappingProfile.html", - "hash": "25rA1MXmBMyfkXE79hu1DWiubN8+kJbQnKcaRkiJt7s=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Controllers.OpenVR.Profiles.OpenVRControllerDataProviderProfile.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Controllers.OpenVR.Profiles.OpenVRControllerDataProviderProfile.html", - "hash": "VDrWM2DbT+TiFAGpXhRMOyagknJlOF4GlkE0/5wVEdY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Controllers.OpenVR.Profiles.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Controllers.OpenVR.Profiles.html", - "hash": "akSkSR9iB6zhzD3imvYu9Wu9KQ+B0gHWseKUO2UKpjQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.html", - "hash": "73plPjSyVaF4vQysv6Xyt63p9HexLlyP5UfkQNaeo+0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.html", - "hash": "H5fJLu9GHUbyUImLuj1+UwDrXFOwwhyAPy91hhNstsY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Controllers.Simulation.Hands.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Controllers.Simulation.Hands.html", - "hash": "t5GTzeFe6ptZPsaEULM0tWvxTggS5a/BoqSPArx4Ywo=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.html", - "hash": "/8oXYCti+mUBTMmZk7Jj1FJekAu57dr1O3zlVncfwFs=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Controllers.Simulation.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Controllers.Simulation.html", - "hash": "LA6h23yruYerjbrPHWo/VXKlJyu5mczwdcnNTvHbcWI=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Controllers.UnityInput.Profiles.MouseControllerDataProviderProfile.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Controllers.UnityInput.Profiles.MouseControllerDataProviderProfile.html", - "hash": "Wy4WYbAZrO4+iOx65QYEGaiprEwiOlm4AGiRzTHEaww=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Controllers.UnityInput.Profiles.TouchScreenControllerDataProviderProfile.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Controllers.UnityInput.Profiles.TouchScreenControllerDataProviderProfile.html", - "hash": "8j8DwMJczPqGC1xEYl3/ch7BpvS1ZAWHcgQ1Wetrurg=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Controllers.UnityInput.Profiles.UnityInputControllerDataProfile.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Controllers.UnityInput.Profiles.UnityInputControllerDataProfile.html", - "hash": "gu9LTH6Es6KnHjD5yfjpJTDrxGUdvOYczj3s97w8Rac=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Controllers.UnityInput.Profiles.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Controllers.UnityInput.Profiles.html", - "hash": "ouitYobZyGfzWUSAwH5mJhgKhFBSPXDUVxX66hGECI4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Controllers.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Controllers.html", - "hash": "/FNdQ9ZmHxRKiCgvnh3mWdxXqPgK+Swt6qykwmFwxX8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Devices.ControllerMappingLibrary.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Devices.ControllerMappingLibrary.html", - "hash": "gMjqDfHLfokJaMyCF+6ZUvMIpnLOCFAjQ8TYFSoji28=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Devices.DeviceInputType.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Devices.DeviceInputType.html", - "hash": "G+u6/sSLRYtk2xH13Hs0pQDmc+w3FIW6bEe0W1Ixv6o=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Devices.GestureInputType.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Devices.GestureInputType.html", - "hash": "DFzP4jLWBYxUUqb+A5Vvs66hIXvBpgUg5lp0blOptR4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Devices.Headset.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Devices.Headset.html", - "hash": "WsLXO41NQxCeSO6hv9S3GmBqH+XBFgs3wXYwpw6Cfyg=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Devices.InputProcessor-1.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Devices.InputProcessor-1.html", - "hash": "+H9q0ntCyMN8HrRAf0ujRKVuKtgh6UhVkhgAN0aqcLc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Devices.InputProcessor.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Devices.InputProcessor.html", - "hash": "2WweG+3U5ClDRIp9QCHFUkrByA9xLsG/n81dL+zHnpM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Devices.InvertDualAxisProcessor.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Devices.InvertDualAxisProcessor.html", - "hash": "l61TrcXDGU9vzqQJGGG4C20xyJWJX2WUQI/hSDXM34I=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Devices.InvertSingleAxisProcessor.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Devices.InvertSingleAxisProcessor.html", - "hash": "Wa62vJ942lM8IBjk4csuISl259hfmGzYPOi2R5uIa1E=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Devices.MixedRealityInteractionMapping.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Devices.MixedRealityInteractionMapping.html", - "hash": "TcbYEOZlFLJXHLwXMiy+HBpk6fjln5MBrnElxoW8Ekg=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Devices.SDKType.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Devices.SDKType.html", - "hash": "O8cAa7zsJO4+Es4fGuDyxh3FU9lhQ/Yetz1UHn9gE/4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Devices.TrackingState.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Devices.TrackingState.html", - "hash": "t31mRVnR+FVr+eHc+MLz4JOZqTJ6L4tp5rDZjpymwzA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Devices.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Devices.html", - "hash": "awExQLtYEWQA3RVK8XzQwp+g4U5sGiU+O+rMyxJQfwQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.DiagnosticsSystem.MemoryLimit.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.DiagnosticsSystem.MemoryLimit.html", - "hash": "XX7QlV9j2X2G+D3gaBlHrvHXTqMsoHTBzYXS6HpWiBc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.DiagnosticsSystem.MemoryPeak.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.DiagnosticsSystem.MemoryPeak.html", - "hash": "kOv0rs3UWXh6gKOAeAq8C3SKkzePX+/29y7MAeQYRfM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.DiagnosticsSystem.MemoryUsage.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.DiagnosticsSystem.MemoryUsage.html", - "hash": "iGYJS3OXbLpss4H9YIcZDFbmaN4SsQNIepZuHvTX0Zs=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.DiagnosticsSystem.MixedRealityDiagnosticsSystemProfile.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.DiagnosticsSystem.MixedRealityDiagnosticsSystemProfile.html", - "hash": "plEqLSw5MsR65zxILHp9lmXcQrbKH9qeeB6k7og/bKY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.DiagnosticsSystem.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.DiagnosticsSystem.html", - "hash": "HuQrVRPDKIpoW+ijZtOCiqYF6IBf4GPeQ1J5RSvmNuU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.IMixedRealityServiceProfile-1.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.IMixedRealityServiceProfile-1.html", - "hash": "FZu+9A0yj4wGrxskZSEX62Lnr2BF+rI6uKVEFuh9M0g=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.InputSystem.AnimatedCursorData.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.InputSystem.AnimatedCursorData.html", - "hash": "3Xlw08hOPi0Gzn2qAfsvaZWQxBA+rOEVc5iP4xEK5+g=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.InputSystem.CursorStateEnum.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.InputSystem.CursorStateEnum.html", - "hash": "tT8R1D0V53YWMTXU3RbtFpM0u9GNsZJrqyUZbKpOcLo=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.InputSystem.InputActionEventPair.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.InputSystem.InputActionEventPair.html", - "hash": "iFgzNHsaHKMMw9pAP7BqSqhwJmkixlK/FAOOIqXqyVk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.InputSystem.KeywordAndResponse.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.InputSystem.KeywordAndResponse.html", - "hash": "G2tM51apM6HViJzTgopo4aN5+ORSaIO0xHyhnqczD7w=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.InputSystem.MixedRealityGestureMapping.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.InputSystem.MixedRealityGestureMapping.html", - "hash": "BrARi1vtcdbf+xKSmHZYh/GwBrslfl9eCktYoyIiv+o=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.InputSystem.MixedRealityGesturesProfile.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.InputSystem.MixedRealityGesturesProfile.html", - "hash": "rV+3kLL6Czm4icfRFCU2T5kd5G1dd9LgBSjqZXFZzAw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.InputSystem.MixedRealityInputAction.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.InputSystem.MixedRealityInputAction.html", - "hash": "wMi9NmadhwH4VEae4qQQ7lhJ7iO1TmaZrGaB/8TQLPA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.InputSystem.MixedRealityInputActionsProfile.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.InputSystem.MixedRealityInputActionsProfile.html", - "hash": "UqaSlBa2ofdecuuVTsmc55DPA6gTn0Gp7cezclcGh/c=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.html", - "hash": "0+0NArqOsvuIiRmUvO6PYHAcUfbdR84ffhLhg53Wx3M=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.InputSystem.MixedRealityPointerProfile.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.InputSystem.MixedRealityPointerProfile.html", - "hash": "1nAo+GTPzMwx2YD8Ze7ia5nBqGHzaffrrNqWuu+7Vi0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.InputSystem.MixedRealitySpeechCommandsProfile.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.InputSystem.MixedRealitySpeechCommandsProfile.html", - "hash": "9ECsdpyQKjGYeWZCt70CzMm50J+QmMjjyzBggKdtZeQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.InputSystem.SpeechCommands.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.InputSystem.SpeechCommands.html", - "hash": "gZPQDZfqfyrRzFIVPbN99yBa0LaTP5rWoQ7pROgl0AU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.InputSystem.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.InputSystem.html", - "hash": "Va4N0iu7cgWBRiswsQxVRVJtsfY1n0mUu5SZEFtnLb0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.InteractionMode.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.InteractionMode.html", - "hash": "6rKIR98MPHNZVOuOSPfN7f0QY3GnUQccdrMAsfE+0kY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Lines.DistortionMode.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Lines.DistortionMode.html", - "hash": "P7UbilAfCh/68SGItAf7xMsaLM1TaFYR6H0AZoqtA8M=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Lines.InterpolationMode.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Lines.InterpolationMode.html", - "hash": "q0pUvegWlCul8W6XnSeRDCmtUT2i9UHKyn4vkoCqr0U=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Lines.InterpolationType.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Lines.InterpolationType.html", - "hash": "UGl+3EQAGST6dxvvMmQKn3DP3Grbe3/Fchw7IoCqRow=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Lines.LinePointTransformMode.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Lines.LinePointTransformMode.html", - "hash": "B0PyqWWas0Gue+iAYc7j3m/oJxEtheWJ9Q8jytZiRFs=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Lines.LineRotationMode.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Lines.LineRotationMode.html", - "hash": "lqrKLpZQO/Zd2Aapk2326znaWw0w0Al8aaZiHPVrBP8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Lines.PointDistributionMode.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Lines.PointDistributionMode.html", - "hash": "VRmFyAJpFWJPgTHMnQXAUc28cADrycB6xPNX/20LvGA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Lines.StepMode.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Lines.StepMode.html", - "hash": "iiAj/7/XM6lJgjzxodeVrhVK8S0oVif8x1kbainC4pA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Lines.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Lines.html", - "hash": "hZvoXfYfY2/8KN3So0EzAPMBKNg9Utla3g9LS+wm41Y=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.MixedRealityPlatformServiceConfigurationProfile.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.MixedRealityPlatformServiceConfigurationProfile.html", - "hash": "NZXrTmUGyjaOtbLl87tcg+BGB8FtPA78+94GbfLmHu8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.MixedRealityRegisteredServiceProvidersProfile.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.MixedRealityRegisteredServiceProvidersProfile.html", - "hash": "jzvVbLWRNuVTGWWV//CM1me8ZQB3qFJRlkz5cVRVXLU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.MixedRealityServiceConfiguration-1.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.MixedRealityServiceConfiguration-1.html", - "hash": "iqDMS29suRGEGvg7y4GQUWN9LedIROsHkbJKgPmRKzY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.MixedRealityServiceConfiguration.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.MixedRealityServiceConfiguration.html", - "hash": "pSzyqslwVtcf6+RIWJc/VRvOqaDyYT7KtlyS3mVvyZw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.MixedRealityToolkitRootProfile.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.MixedRealityToolkitRootProfile.html", - "hash": "tbiSxrHJZ9/3XxukybHq12BBEq/Tj2PBM71YrmipRDw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.NetworkingSystem.MixedRealityNetworkSystemProfile.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.NetworkingSystem.MixedRealityNetworkSystemProfile.html", - "hash": "WzxrazILTX/YSbqKF2CCuNQW2c96QHF0n+9HMUaV3Xw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.NetworkingSystem.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.NetworkingSystem.html", - "hash": "dHYuoWl+hDWuhdkEjtJpcehyQ+240aGUNPJdQJc0Rys=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Physics.ComparableRaycastResult.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Physics.ComparableRaycastResult.html", - "hash": "O083/SnvhrXL/6DnJ84LJ/3UAGKwNtw64g/z/dalTp8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Physics.FocusDetails.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Physics.FocusDetails.html", - "hash": "1fjJm11vrDRRQNth9uZtjnhQ3dHkYAjh1fvm9yMl7Ao=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Physics.RayStep.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Physics.RayStep.html", - "hash": "tgmNOjrMH4tZWSyQ8Ygpd6DEkh7NPaGjNHulaBZAlb4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Physics.RaycastMode.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Physics.RaycastMode.html", - "hash": "UzUVG7DdL64s35ppR9/rO6twLQI6wnVoIGgVITX4eRQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Physics.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Physics.html", - "hash": "K8OIYMPirJS8Fn21X3B1n3jcoRvfX0TDcHw+ncNyh/I=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Platforms.AllPlatforms.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Platforms.AllPlatforms.html", - "hash": "POgb5JWgGb9r9Fue376Ixvn73/gDNPK05Dhi+2xuPG4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Platforms.AndroidPlatform.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Platforms.AndroidPlatform.html", - "hash": "IGYqpl21MykDjLbQBX+n0lHqLb1XJu0ae5mis4mJi0E=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Platforms.BasePlatform.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Platforms.BasePlatform.html", - "hash": "ApPplaxEvKyG7uXwcKy5nT1c6Tei3kuJue+1ukhVUgk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Platforms.CurrentBuildTargetPlatform.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Platforms.CurrentBuildTargetPlatform.html", - "hash": "CGgl00veNV2tLovdk+K3kt2ER68GBCAqUgPGrVHjKGQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Platforms.EditorPlatform.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Platforms.EditorPlatform.html", - "hash": "k9DeQjaMdgwGxlHmA7j8aalmQ/d7FEAQ/rXtXaDTVUA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Platforms.IOSPlatform.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Platforms.IOSPlatform.html", - "hash": "ccKjAKxXeapZObBMGi3+cja9cGkHD/6YsVscIRH7S78=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Platforms.LuminPlatform.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Platforms.LuminPlatform.html", - "hash": "+iQjxk/86bBkTutgeMy3H5EkyPrSzxS8zdsBu6ZxUD8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Platforms.OSXPlatform.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Platforms.OSXPlatform.html", - "hash": "4cVeP50Q17c3CboLTW/nF5jOZFfklsURsE75R010BhE=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Platforms.UniversalWindowsPlatform.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Platforms.UniversalWindowsPlatform.html", - "hash": "gmOA7WYfFw8fbPTf+TrGD8p2WywjA+p4BqTru3RGmks=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Platforms.WebGlPlatform.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Platforms.WebGlPlatform.html", - "hash": "mNXD7p2+chH9gmtf9irVjpkOua4X4b7vtYlSYPQySlQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Platforms.WindowsStandalonePlatform.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Platforms.WindowsStandalonePlatform.html", - "hash": "vokUGQD5cuCa3XYb8sMA9KD9eFw6v7ZB2ubnxB3Mx8o=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Platforms.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Platforms.html", - "hash": "XPp7Zp6TdRfNRSDWhzcmtlNQI6tGLPsw2BSIGGmnkr4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.RuntimePlatformEntry.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.RuntimePlatformEntry.html", - "hash": "024bervSS3YWaJaRfTOcckXNnz4YRYbrKF79AoiZy8s=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystemProfile.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystemProfile.html", - "hash": "PAt5hhWAjAA3e6GsAsRuQlkEyKHn/3EBAi7YD1CY7hI=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.SpatialAwarenessSystem.SpatialAwarenessMeshLevelOfDetail.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.SpatialAwarenessSystem.SpatialAwarenessMeshLevelOfDetail.html", - "hash": "SKf6ClLhGnzxDAGGgmUNQSb+zitoOyP5GYTO5tq+4sc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.SpatialAwarenessSystem.SpatialAwarenessSurfaceTypes.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.SpatialAwarenessSystem.SpatialAwarenessSurfaceTypes.html", - "hash": "UhFGeLH8LQ0fpaz08QYYKtLOcE9L85BUxgxT2IjSZTU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshDisplayOptions.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshDisplayOptions.html", - "hash": "5mUfxFb6KvUBdLxtVw/lDhl9pg7gqrJ3sS95pDFyPok=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.html", - "hash": "brOn3SU/mR20iClf17x1ed/d/tEext2Ixq+O+UKr3xA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.SpatialAwarenessSystem.SpatialObserverStatus.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.SpatialAwarenessSystem.SpatialObserverStatus.html", - "hash": "34/BBInqdTaUAujr1VFUpy7QJ7parYrLlg3gng7YA+s=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.SpatialAwarenessSystem.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.SpatialAwarenessSystem.html", - "hash": "2FqDomE/J8EyPhXGkp8JlmkGZte03SjpOn8IE0ncoz0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.TeleportSystem.MixedRealityTeleportSystemProfile.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.TeleportSystem.MixedRealityTeleportSystemProfile.html", - "hash": "pqFTra2jk0RPF7Fu0VppLa+xvoDGcblBmkpyNXBTDfY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.TeleportSystem.MixedRealityTeleportValidationDataProviderProfile.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.TeleportSystem.MixedRealityTeleportValidationDataProviderProfile.html", - "hash": "YBoEWytMGpqheqXV394QmSsmzzaDp66PwbYOrWmcA1M=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.TeleportSystem.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.TeleportSystem.html", - "hash": "LueyFSx+OxpBso0pB6Q153Vmeq6ackQ5clAdmDzj1pw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Utilities.AnimatorParameter.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Utilities.AnimatorParameter.html", - "hash": "ThloycQNdN/hw9aaXpaRIVg0riRhzLrS1Sln0oJVbK4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Utilities.AutoStartBehavior.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Utilities.AutoStartBehavior.html", - "hash": "q5dtQajmX+qAtFT8h+dq8aTcSQTk7waDGD/abSFRmvI=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Utilities.AxisType.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Utilities.AxisType.html", - "hash": "Gq97y3A+tf4Qmbh5YHA2ff4/DeHXAbaUpZzpthtFU4M=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Utilities.CardinalAxis.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Utilities.CardinalAxis.html", - "hash": "m0lNGUMwRpk+ucANHYKw9y3o4sjX7Zs1tlquLU6O7yE=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Utilities.CollationOrderType.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Utilities.CollationOrderType.html", - "hash": "VWW0jYrnCQg9+e2iypYLlN5DoJj4wyZ6iJ0VRzkh9xU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.html", - "hash": "Lg6puD+m6okeWaQhmnTrGpwW8ZwCwUS1i8YiGPdIcbc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Utilities.FlattenMode.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Utilities.FlattenMode.html", - "hash": "QDhfNgyCToxFnPBhFl+koKp/dfsLUomxvxDLh5Xaor8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Utilities.Handedness.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Utilities.Handedness.html", - "hash": "4aHp5+zZ4MTqH7Hu4NQP3wD+VTKj7SSV2gAuaVN1XG8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Utilities.MixedRealityPose.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Utilities.MixedRealityPose.html", - "hash": "7cbVzVcxr4KqwezOduOohmvwGVx5urfUpgVkBDdfe1o=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Utilities.OrientationType.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Utilities.OrientationType.html", - "hash": "IOEIZFJJRjsoVbnShr/Es3QRtJW3XcBufmijJ4falMY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Utilities.PivotAxis.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Utilities.PivotAxis.html", - "hash": "8n514hIOBi3q5aySwIlplG25v4IFqHoJIMv6mwnMH/Y=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Utilities.ProcessResult.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Utilities.ProcessResult.html", - "hash": "twy7a707a13h6jtSnazzgfRVmbFzsHYSazJoKiw4VoY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Utilities.QuaternionSmoothed.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Utilities.QuaternionSmoothed.html", - "hash": "1V2Owck65O13awi0c6M4Iptk7trrveiDtKE6LPuletY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Utilities.RecognitionConfidenceLevel.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Utilities.RecognitionConfidenceLevel.html", - "hash": "3k7GCaV74wW/PkZSdJH5UAV0BEOlvfFyUPvz6FAY/s4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Utilities.RenderPipeline.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Utilities.RenderPipeline.html", - "hash": "hWWw0H9Sr1Tjy7j/2mFrGBzeeICUf1Jnbkdj4HYhP6M=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Utilities.RotationConstraintType.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Utilities.RotationConstraintType.html", - "hash": "v/i5wG1QSp6E/Jtx2x8c0jS9i3sSLEN9uAXgDmLirKY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Utilities.ScaleStateType.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Utilities.ScaleStateType.html", - "hash": "gy9+aMD+25TgDHVhN+N69mL1uL2O2hcRbuk+pMZLjRk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Utilities.SolverOrientationType.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Utilities.SolverOrientationType.html", - "hash": "7sFfWj1+52YeJImRiev7VXlJBuGmrtxZ7XkxB0diTV8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Utilities.StateChangeType.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Utilities.StateChangeType.html", - "hash": "HQ87qp6D9F78VQ42coPOfwd8aU5w8uOr8lE41oqG8BE=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Utilities.SystemType.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Utilities.SystemType.html", - "hash": "aDW8MHcxUa37UatduExypjO3GNHPgsCGLX0k+vEpExw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Utilities.TrackedObjectType.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Utilities.TrackedObjectType.html", - "hash": "cZYUBAPVz3mpv/FxaiR7h7dZR4nXycH/1eNqYDbsM2w=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Utilities.TypeGrouping.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Utilities.TypeGrouping.html", - "hash": "d5jmd7vD1JXzk1/0YqMk6KKecAnrLxHtD8sv4XN0qmc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Utilities.Vector3Smoothed.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Utilities.Vector3Smoothed.html", - "hash": "Lx8ZJ7S6okddcFc9CzgvyFlBXpCTDrzLk0a4RafhuUw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.Utilities.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.Utilities.html", - "hash": "I3fVBO0DNzbdWiTdhMgQD/XwGPFlaX7VNevjAc8mTps=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Definitions.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Definitions.html", - "hash": "UfBYuVMiugJjgd7+XEpVjAUjFlgctfafD18FQLaEAJE=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.BuildPipeline.AndroidBuildInfo.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.BuildPipeline.AndroidBuildInfo.html", - "hash": "+EN+7D3EMMiAxcxhCrbwcIU9pNWWuglUl4xZ4xczg7M=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.BuildPipeline.BuildDeployPreferences.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.BuildPipeline.BuildDeployPreferences.html", - "hash": "mqbXyBwXI3b20leCWFv+R9JcP8IDrRrpskVNkwjw308=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.BuildPipeline.BuildDeployWindow.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.BuildPipeline.BuildDeployWindow.html", - "hash": "LchFU6TWr5Ow/ZFgRmts/kqEuY1In+NjJj9imre0dXI=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.BuildPipeline.BuildInfo.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.BuildPipeline.BuildInfo.html", - "hash": "d7x/bCv7UooCZLVD90p8sCCoE3LAc/ytlxOofl9ZXQw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.BuildPipeline.BuildInfoExtensions.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.BuildPipeline.BuildInfoExtensions.html", - "hash": "RWyVbN7Tb1SbjheQAuVvbL6x+d4E6725geoStditZIg=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.BuildPipeline.BuildInfoInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.BuildPipeline.BuildInfoInspector.html", - "hash": "Z6xZagpXrQZ/qtIt1ZzwUkwB0LH2+LqwE+9q6ks0MV0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.BuildPipeline.IBuildInfo.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.BuildPipeline.IBuildInfo.html", - "hash": "v86VwSBWWrtPOAnyEDcXCNFIHOejzAT3rhCHMx4iw7M=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.BuildPipeline.LuminBuildInfo.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.BuildPipeline.LuminBuildInfo.html", - "hash": "KlIJXSS9iNwg3MJD8JTjEQC4L7zOR5lSLHRdA9jJRLc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.BuildPipeline.MixedRealityAppIcon.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.BuildPipeline.MixedRealityAppIcon.html", - "hash": "GJQk+ZzO/fy8UXz8JRU4ajisEc4mlRdeumUIhBzRUa8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.BuildPipeline.OculusBuildInfo.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.BuildPipeline.OculusBuildInfo.html", - "hash": "3J0grdqFUmuFAULD/iq9QawqIEklNKr3rMUK4QZdGtI=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.html", - "hash": "9QffN6euuitmtzsjn4ZP5pZq5Dhn8xp1+Sh2J2KH3cU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.BuildPipeline.UwpAppxBuildTools.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.BuildPipeline.UwpAppxBuildTools.html", - "hash": "Ix95h1AA7KFUUwIX3BNi4BEYNEhFOOQj0+hl+1eKYDQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.BuildPipeline.UwpBuildDeployPreferences.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.BuildPipeline.UwpBuildDeployPreferences.html", - "hash": "lzNlOMWkHorDVO5bNvj/o2DpXNbcckOknBQ53S2oKB8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.BuildPipeline.UwpBuildInfo.Platform.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.BuildPipeline.UwpBuildInfo.Platform.html", - "hash": "vpgFJc1Hr6JDeUQ+WPFel7LyOjbbmTipsMudZPE5Tyw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.BuildPipeline.UwpBuildInfo.VerbosityLevel.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.BuildPipeline.UwpBuildInfo.VerbosityLevel.html", - "hash": "3cT4PfR9gjpzM2wN4dhHiXKJW8Jbkm93MKG+Zu42Z8M=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.BuildPipeline.UwpBuildInfo.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.BuildPipeline.UwpBuildInfo.html", - "hash": "aHGSBifZoexSIw6ramd7xX9eTO2AjqlILqU3YCMU/og=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.BuildPipeline.UwpBuildInfoInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.BuildPipeline.UwpBuildInfoInspector.html", - "hash": "IEal0pghKsBgivoSMTi8UxlkVLsFVJg4acrSIUWZzQw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.BuildPipeline.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.BuildPipeline.html", - "hash": "63yn9owK5QXNduhh3Mwc7hcyOhMrkk0LZvxdzkZJLAw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.ControllerPopupWindow.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.ControllerPopupWindow.html", - "hash": "I/CUyqZKeOZPC//ddapzkb8QtTpmSQxAfkN6ZiXx0+I=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Data.ControllerInputActionOption.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Data.ControllerInputActionOption.html", - "hash": "/S2sqKYKiFvRDvnEaDk14nt9QcnUmSeGgdwtDdkvr6k=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Data.ControllerInputActionOptions.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Data.ControllerInputActionOptions.html", - "hash": "QkrDE3gnSd0FdBfnd+tm6FJIqn4eANnhLipk9dAWMrA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Data.Controllers.Hands.HandControllerPoseProfileInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Data.Controllers.Hands.HandControllerPoseProfileInspector.html", - "hash": "yX7anSrVGDTBzUG4naOf4Me4pQPpq291FaAD0XE6/W0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Data.Controllers.Hands.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Data.Controllers.Hands.html", - "hash": "pdkFocMKyGAe/YpCRmXGx0RQWZGdf+aX8hHpzn0d8Dw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Data.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Data.html", - "hash": "XLDjqUfrG1tm7YwfyjE/qhBJKUFAnZxlnSgO3YMBEio=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.EditorActiveProfileChangeHandler.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.EditorActiveProfileChangeHandler.html", - "hash": "OzVxfKq1/NBwHFJ88oVPSnbclbpvCIFPGdPpUwOcKbw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.EditorHandsShaderGUI.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.EditorHandsShaderGUI.html", - "hash": "RB3nhUVhOs9sciFMwrhntJ0rbfGbn3+EciE1Wr/YhjM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Extensions.EditorGUILayoutExtensions.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Extensions.EditorGUILayoutExtensions.html", - "hash": "1TtOpgwl3o7o0IHmfGS8A1xdnMQHV6qeoilVkERvOoM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Extensions.ScriptableObjectExtensions.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Extensions.ScriptableObjectExtensions.html", - "hash": "Hn5hpOe1HmxRnagTkyWibPdYGtG/p4FR6nlEa2q+ZRc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Extensions.SerializedPropertyExtensions.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Extensions.SerializedPropertyExtensions.html", - "hash": "rHTSCuXXSdCz1fccqs4AWHK0jV0stmtac8KYNFu5jNI=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Extensions.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Extensions.html", - "hash": "6qG6lhSc7GM/t2YUxEUksIo4b1kuJ1+2guw14wncbNs=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.MixedRealityPreferences.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.MixedRealityPreferences.html", - "hash": "vYz/hjMvCzdOVq4L1iAv4nF17pe42wGHnD8I3tYgaT4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.MixedRealityStandardShaderGUI.AlbedoAlphaMode.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.MixedRealityStandardShaderGUI.AlbedoAlphaMode.html", - "hash": "iZPOLKvXQp77Qy5MFAFt0yxXwwgnV+Oba1Ax9O7tMK0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.MixedRealityStandardShaderGUI.CustomRenderingMode.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.MixedRealityStandardShaderGUI.CustomRenderingMode.html", - "hash": "qp4ai/uu+KnikYrzfEGEIrFGRiW1FF9+zEgUI9n7w88=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.MixedRealityStandardShaderGUI.DepthWrite.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.MixedRealityStandardShaderGUI.DepthWrite.html", - "hash": "8+zWminoapfGMyCzyu0NRO/rofPbY0KpRBZs9DhQbvw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.MixedRealityStandardShaderGUI.RenderingMode.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.MixedRealityStandardShaderGUI.RenderingMode.html", - "hash": "iANBo0U5l7QxhHstTVMX5XpQ3b0zklp7VGlp3VKgyAQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html", - "hash": "v8xdNBDTuPZv+pjtFTiSyNZFE1MvxAWGTOPe7xZvmjE=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.MixedRealityStandardShaderGUI.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.MixedRealityStandardShaderGUI.html", - "hash": "DwTyTFYaeLFz9QPGy3+RfsbFtfrRbykmnRjW/JisyvU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.MixedRealityToolkitInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.MixedRealityToolkitInspector.html", - "hash": "AWlL8mH6oy6nUgvjaTSKRvidQ7Icrxq62xNZEZetZY8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.PackageInstaller.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.PackageInstaller.html", - "hash": "2zlSAV5M/aUkGiDUWRST/DdKHVG9872VkBXXJfAULc8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.html", - "hash": "8C2EV3CZhiD9q9cgWY2kSSDs7Qxudx5eVeojDWeryrM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Profiles.CameraSystem.BaseMixedRealityCameraDataProviderProfileInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Profiles.CameraSystem.BaseMixedRealityCameraDataProviderProfileInspector.html", - "hash": "+h8o5vsd1Yv8s0vSDYXenN7aJVRdGzeCz+jRNRwtZek=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Profiles.CameraSystem.MixedRealityCameraSystemProfileInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Profiles.CameraSystem.MixedRealityCameraSystemProfileInspector.html", - "hash": "ehKZ2uUvYBlQWTz+AKswfJFq4zlPlPV0oCdjgll/Orw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Profiles.CameraSystem.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Profiles.CameraSystem.html", - "hash": "rD6+nr+IoM6vbCi9q+NRPwuS0NB8gfxL/two5WgVNVw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Profiles.DiagnosticsSystem.MixedRealityDiagnosticsSystemProfileInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Profiles.DiagnosticsSystem.MixedRealityDiagnosticsSystemProfileInspector.html", - "hash": "3kTCWD8fhopZNTq3xdT+FBqKwbAI/rOOKde6/nSDZ0I=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Profiles.DiagnosticsSystem.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Profiles.DiagnosticsSystem.html", - "hash": "6I0RfzhQjWtsVZfBXXB1LBNPsTC8HY61FcZ/1U2WVdY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityControllerDataProviderProfileInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityControllerDataProviderProfileInspector.html", - "hash": "2R9MzIA8ViKTYkozLV/xaT6ZGNbwlZ0sjVLPat37rxY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityControllerMappingProfileInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityControllerMappingProfileInspector.html", - "hash": "tcUz8Gu03JHXHFUAdCUD+iNugWTAKpz5CaC3+ObfilQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityHandControllerDataProviderProfileInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityHandControllerDataProviderProfileInspector.html", - "hash": "5xi+rXUQaE65SGql59QHr+S4xvmoEVcsLi4ICpHhLQs=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Profiles.InputSystem.Controllers.MixedRealityControllerVisualizationProfileInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Profiles.InputSystem.Controllers.MixedRealityControllerVisualizationProfileInspector.html", - "hash": "M0xhaXsxXRypPuD91iwBlMco30vbSmKR+xAHs1ki1Uo=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Profiles.InputSystem.Controllers.MixedRealityInteractionMappingProfileInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Profiles.InputSystem.Controllers.MixedRealityInteractionMappingProfileInspector.html", - "hash": "BSnetLRXp6UfvsyrndZDOqn89c0IUNgDxTdX7eKXKos=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.SimulatedControllerDataProviderProfileInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.SimulatedControllerDataProviderProfileInspector.html", - "hash": "Sbm4+zOywmzYFc6wLzqn7WzxJpShHL2nB2gYqYrRNMQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.SimulatedHandControllerDataProviderProfileInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.SimulatedHandControllerDataProviderProfileInspector.html", - "hash": "IZEOxwix5bfbsLSI7fs+my7tSQtLoFA9gaKNd5mTUtE=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.html", - "hash": "7KOBHJMNj1z/PzSEYtnl0i9e8zKpwbxbRQ1p+VhCdOg=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Profiles.InputSystem.Controllers.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Profiles.InputSystem.Controllers.html", - "hash": "CF5cjbkCnTM6sezvbyS5Z4kYer7/WQjTzWxM3hcfZ7w=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Profiles.InputSystem.MixedRealityGesturesProfileInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Profiles.InputSystem.MixedRealityGesturesProfileInspector.html", - "hash": "wwD0JgpKeTEq2eDrvMinX2MnBvtdqmi/iDxDfjtsT+g=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Profiles.InputSystem.MixedRealityInputActionsProfileInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Profiles.InputSystem.MixedRealityInputActionsProfileInspector.html", - "hash": "hvhmy8GZC8pz/PhMzaUqQGby5QcclBks8UE4rMIv4go=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Profiles.InputSystem.MixedRealityInputSystemProfileInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Profiles.InputSystem.MixedRealityInputSystemProfileInspector.html", - "hash": "frVU0f2K5EHXQWofBEMRK3m2YbHhLVOgu80fIBj+c10=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Profiles.InputSystem.MixedRealityPointerProfileInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Profiles.InputSystem.MixedRealityPointerProfileInspector.html", - "hash": "8m88wmBidr+lHxz1hqSw2XtNTMpUoSkkAgVvdl688m4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Profiles.InputSystem.MixedRealitySpeechCommandsProfileInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Profiles.InputSystem.MixedRealitySpeechCommandsProfileInspector.html", - "hash": "rmNs7uYBw5VkChIOECZ00JGVxD1Rs7R69ZvzTviM3mA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Profiles.InputSystem.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Profiles.InputSystem.html", - "hash": "3TbUAVQo0eHzj1z95Q6chRgqwbAVn8dj9Jmf69rnFxY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Profiles.MixedRealityBoundaryVisualizationProfileInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Profiles.MixedRealityBoundaryVisualizationProfileInspector.html", - "hash": "EqpMcEn1cNzXU3+ALk+1XKngSQbJEGtML8OrQ4QtxyI=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Profiles.MixedRealityNetworkSystemProfileInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Profiles.MixedRealityNetworkSystemProfileInspector.html", - "hash": "Aa6OL01pqimSrNkwoACVrQf417WNQF/QtWkZhwhEnsY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Profiles.MixedRealityPlatformServiceConfigurationProfileInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Profiles.MixedRealityPlatformServiceConfigurationProfileInspector.html", - "hash": "0m2T/Dk2kxp1Q3kDeYcCgJP2y8cYOEfFBwX9pbZF5ww=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Profiles.MixedRealityRegisteredServiceProvidersProfileInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Profiles.MixedRealityRegisteredServiceProvidersProfileInspector.html", - "hash": "MX0v5IY69u0eAOo3R67D3Q5lU75huy7VPGF4Gm6jEGo=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Profiles.MixedRealityServiceProfileInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Profiles.MixedRealityServiceProfileInspector.html", - "hash": "2k0PRRQP8dTkPnJ3C1X5wlabCv1Ueg0zSapTnP5INpM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Profiles.MixedRealityToolkitRootProfileInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Profiles.MixedRealityToolkitRootProfileInspector.html", - "hash": "p0tuwA8v/vOuJAAfoDlo8J/wtiOSke9rb6S4WtqLxDE=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySpatialMeshObserverProfileInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySpatialMeshObserverProfileInspector.html", - "hash": "RRlC8xHzp1yv4AtnAhLcn7yY/iLn7BbDEA2odDHmb1I=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySpatialObserverProfileInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySpatialObserverProfileInspector.html", - "hash": "phUqUenDx43ZdRuCpn5HTdr1+BYYuWOwegbbeON2LE4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySurfaceObserverProfileInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySurfaceObserverProfileInspector.html", - "hash": "nIs2ch9CpPx+ZBPurzxLOjx9ArLwOqVLfElCXHSwXmM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Profiles.SpatialAwareness.MixedRealitySpatialAwarenessSystemProfileInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Profiles.SpatialAwareness.MixedRealitySpatialAwarenessSystemProfileInspector.html", - "hash": "mFbsOd2ZCmc6LFtMJHGHAbOyw4ra+sMhZpDIhfQkzqg=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Profiles.SpatialAwareness.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Profiles.SpatialAwareness.html", - "hash": "ZSIcxxFWa4A1s4+UBMxNfclXSObVELqYcwPc2E9xUrQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Profiles.TeleportSystem.MixedRealityTeleportSystemProfileInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Profiles.TeleportSystem.MixedRealityTeleportSystemProfileInspector.html", - "hash": "RS75v5u7HMgkaqFxpgK23x5YbeJ1V6wWorD+N4Lpq5w=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Profiles.TeleportSystem.MixedRealityTeleportValidationDataProviderProfileInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Profiles.TeleportSystem.MixedRealityTeleportValidationDataProviderProfileInspector.html", - "hash": "pae0HQgpl4We9/dop1TqkK+gcTkqUfvFlBEWo+iCtQE=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Profiles.TeleportSystem.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Profiles.TeleportSystem.html", - "hash": "ggtjrDqGRrOqZnM850NsghoUAzII1oFQgNwteSSTu5w=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Profiles.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Profiles.html", - "hash": "XS0ZsimtZh9/4llQppoiMgde+vifAYfmCzy14UOJb8k=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.PropertyDrawers.AxisConstraintAttributeDrawer.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.PropertyDrawers.AxisConstraintAttributeDrawer.html", - "hash": "XWDKH0T1cja5CsNyQbkVFzpX+MBRsB03bDhqw5zW2gw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.PropertyDrawers.EnumFlagsAttributeDrawer.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.PropertyDrawers.EnumFlagsAttributeDrawer.html", - "hash": "nKqaBvpt4RouroN4AWH5/DdbnJIhU3S6TYxu0sHuK+Y=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.PropertyDrawers.InputActionPropertyDrawer.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.PropertyDrawers.InputActionPropertyDrawer.html", - "hash": "ohBRv97OQ6y0gU07+1ZYCqEgU9DuaLBEmBY9UKQKpjY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.PropertyDrawers.MinPropertyDrawer.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.PropertyDrawers.MinPropertyDrawer.html", - "hash": "N95w4hL6ydpuyec6RBgxjCw+vnttR5kMIunBwyclJio=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.PropertyDrawers.MixedRealityInputActionDropdown.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.PropertyDrawers.MixedRealityInputActionDropdown.html", - "hash": "BlUJypr6ri91IklPWt7k9avwUHBdjqPDj6obA4fDwuQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.PropertyDrawers.MixedRealityPosePropertyDrawer.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.PropertyDrawers.MixedRealityPosePropertyDrawer.html", - "hash": "0b7Xqyg1eLeQK30hh/oQRwM/p3IMIbKS4Re9oPac2CY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.PropertyDrawers.MixedRealityProfilePropertyDrawer.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.PropertyDrawers.MixedRealityProfilePropertyDrawer.html", - "hash": "TPu+tYiN/mjjBPpR96ur0A9xiBZvzd4i/Uc7oNYbA4Y=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.PropertyDrawers.PhysicsLayerAttributeDrawer.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.PropertyDrawers.PhysicsLayerAttributeDrawer.html", - "hash": "Rq/n866VfftGdPTDrfWzAaqThelYS8eQdCgCD8OGgT0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.PropertyDrawers.PlatformEntryPropertyDrawer.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.PropertyDrawers.PlatformEntryPropertyDrawer.html", - "hash": "KXNb6UP9h27m53pdOCWLkEYAv5J2u1UxZ5Sgs8HHmT4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.PropertyDrawers.PrefabPropertyDrawer.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.PropertyDrawers.PrefabPropertyDrawer.html", - "hash": "ThU7aJA6+eJhAPAhveX8U4az9G/QWLvLdSIM1jhlibM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.PropertyDrawers.SpeechCommandPropertyDrawer.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.PropertyDrawers.SpeechCommandPropertyDrawer.html", - "hash": "NqKyGYxMcshEg2h+e1S8AYSriZIrFntm3x/xRU8hdjE=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.html", - "hash": "REeVrgL01wHgmZrWnjmAAAFaZQIkAN1Cbusm4lQGAuo=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.PropertyDrawers.Vector3RangePropertyDrawer.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.PropertyDrawers.Vector3RangePropertyDrawer.html", - "hash": "1gyLW81TOh90xi9F27iwd02NMU/oXs2trIWKtRYJo3E=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.PropertyDrawers.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.PropertyDrawers.html", - "hash": "03zcdObm9hBEeDys5qchmv8Ic4P44IFBj4za8suxZQY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Rendering.ClippingBoxEditor.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Rendering.ClippingBoxEditor.html", - "hash": "672bzSVY8/MCHSNHE/ii3la85svrue32tAh8pOGEo3U=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Rendering.ClippingPlaneEditor.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Rendering.ClippingPlaneEditor.html", - "hash": "NCRxbx4lOHyJYtjTX1Ka+DPdYSiJpeuVyvXte5rXmM0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Rendering.ClippingSphereEditor.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Rendering.ClippingSphereEditor.html", - "hash": "f6ljmkj3NGnAHaRW4KACzSCYD5bhXVyULoqfnPjpArs=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Rendering.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Rendering.html", - "hash": "IHDxhOcT4mOYHpNoy0ox/jgSw1xNFG+a6+/Hc1byA8U=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.SystemTypeRepairWindow.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.SystemTypeRepairWindow.html", - "hash": "rCO8vm6iF2yUa5xtaIBHDPh35IVO43K6Xj2tL8zVwxM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Text3DShaderGUI.Styles.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Text3DShaderGUI.Styles.html", - "hash": "SGJSkTAU+431L5Jyu6e65X8GP6b4s0mXqfIdrqHMkEQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Text3DShaderGUI.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Text3DShaderGUI.html", - "hash": "P1w2zGivY7Z6qnedqW9j1RcTlACjlaxuCgrtrgq27z8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Utilities.AssemblyDefinitionEditorExtension.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Utilities.AssemblyDefinitionEditorExtension.html", - "hash": "Qsw4RFE5vrPHu2a1R5Pbiw5YU8Rb3mpIO4XwJPYAG4k=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Utilities.AutoSceneSwitcher.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Utilities.AutoSceneSwitcher.html", - "hash": "9nd2jqqOxvdrjkkvFm6cflPvVGRTYRcOU7Pbmd73CFE=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Utilities.BaseMixedRealityProfileInspectorExtensions.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Utilities.BaseMixedRealityProfileInspectorExtensions.html", - "hash": "1DoSznrugGInY7VDPAR+Hv635KJZ+DFEz6lP73xoXZY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Utilities.CanvasEditorExtension.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Utilities.CanvasEditorExtension.html", - "hash": "mpHF3aeXgoh7/t8KWXiEd2crUycbYOHdRoJATkzK7T4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Utilities.ChannelPackerWindow.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Utilities.ChannelPackerWindow.html", - "hash": "f4j04yD8DYB9kHNecJh/EbdjUf4lyavja9UvUpu1CxQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Utilities.ControllerMappingUtilities.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Utilities.ControllerMappingUtilities.html", - "hash": "Z8SReac1O7VQymVRk1GvJF6M6R/VYQAhuidDL8h376I=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Utilities.CorePathFinder.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Utilities.CorePathFinder.html", - "hash": "dVsv6cLloDPnjCTkUpwP8BqPyP5YewLmh7FKCW9sKXU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Utilities.DevOpsLoggingUtility.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Utilities.DevOpsLoggingUtility.html", - "hash": "2Jq6ttSL6h/zRSv8U9axupEVnxHhLTIUAjBxAR5hucs=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Utilities.EditorAssemblyReloadManager.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Utilities.EditorAssemblyReloadManager.html", - "hash": "38p+X7G/ITkXp8N70PGW5cm5Hgyw+5cbwN6WkNsn3iI=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Utilities.EditorPreferences.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Utilities.EditorPreferences.html", - "hash": "hla8AyY0EM7tnbH0EK+vPb4XiYbYFUGcxIHyLSEsHpg=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Utilities.GitUtilities.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Utilities.GitUtilities.html", - "hash": "d6HOuUKRNS8dIDZpm1xxIEsj5h8/+uG6UjEuXHrRYzw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Utilities.GuidRegenerator.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Utilities.GuidRegenerator.html", - "hash": "HabrkzRWr0VjLgnjsbBS7GUC8uQo4PU9lFzjHU8D9f0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Utilities.HoverLightInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Utilities.HoverLightInspector.html", - "hash": "OQuVCjLS/OQiNZDjDusRcFsZFVlNkVYjbds1d/ZWEvw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Utilities.IPathFinder.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Utilities.IPathFinder.html", - "hash": "exrOCXKh9W40vFN6lkZ5cHleqFT9afs/gV4AmnzEdZ4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Utilities.IconEditor.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Utilities.IconEditor.html", - "hash": "WN25I/2V8v+8XsvUBe9uS7AioWQBVsTT9ZW9lis9Vns=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Utilities.InputManagerAxis.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Utilities.InputManagerAxis.html", - "hash": "rUaPi+viBot0bHIdmM4a0Nc5qwEPUdor3kiNgkWG08k=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Utilities.InputManagerAxisType.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Utilities.InputManagerAxisType.html", - "hash": "P3V1eTrVB2M0syD8Ie6PBxatv7iZIOqH9Xpm9cZ6sJs=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Utilities.InputMappingAxisUtility.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Utilities.InputMappingAxisUtility.html", - "hash": "/V0bxb1nl7JCAm2XYogCVrcD5IEg+KQDAwTy5GvaJrw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Utilities.LayerUtilities.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Utilities.LayerUtilities.html", - "hash": "1WzbH3qbkWbnPrM14xwNUBc5fkixvIm2KJfbn3i9bDc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.html", - "hash": "2TNbX/AHHT7Gio5uwuBf9gm7LweMgd0qGg0f7IpT13M=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Utilities.Lines.DataProviders.BezierDataProviderInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Utilities.Lines.DataProviders.BezierDataProviderInspector.html", - "hash": "aBHVxKxdMFA8L+4eoQ2lqjOacWf5Dlzv9NsQI0pvkbA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Utilities.Lines.DataProviders.EllipseLineDataProviderInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Utilities.Lines.DataProviders.EllipseLineDataProviderInspector.html", - "hash": "z0eCEToJM+RPrlMwp9uWCH5q9WeBd4CuEDX7SaJG358=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProviderInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProviderInspector.html", - "hash": "iLcpFNi6zB1aHTBg53olPLLAFDb0LnoKdvpRJpiUfqQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Utilities.Lines.DataProviders.ParabolicConstrainedLineDataProviderInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Utilities.Lines.DataProviders.ParabolicConstrainedLineDataProviderInspector.html", - "hash": "b04csRgjr5RvalblPD8SXQp6X+44kKPVlFciHmrmOxo=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Utilities.Lines.DataProviders.RectangleLineDataProviderInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Utilities.Lines.DataProviders.RectangleLineDataProviderInspector.html", - "hash": "1uhQHmM3h2W0/HpoF3Re2InXGGUHofaVbNpKpyHsWLs=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Utilities.Lines.DataProviders.SimpleLineDataProviderInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Utilities.Lines.DataProviders.SimpleLineDataProviderInspector.html", - "hash": "p78phfTC+GSLMxxlIjXu6KkbctP1oPzqfM/agsstvRU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Utilities.Lines.DataProviders.SplineDataProviderInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Utilities.Lines.DataProviders.SplineDataProviderInspector.html", - "hash": "nE7sjUAoLht8yK7GrDVvu0Oy7NQYCUs90o+YycG9j0Y=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Utilities.Lines.DataProviders.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Utilities.Lines.DataProviders.html", - "hash": "qV4kyy6tBLR+w6iMGWSbjuDj0KMNihArsf2t9UxnTag=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Utilities.MixedRealityEditorSettings.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Utilities.MixedRealityEditorSettings.html", - "hash": "DBQ9lZB4gPc3wfX8Luq74TtOl5qCM98OcDDn2mOZDhA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Utilities.MixedRealityInspectorUtility.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Utilities.MixedRealityInspectorUtility.html", - "hash": "zWs/+b5RV2l2eXZxMyRZqj7Q6bJkXNan0qAf7woGfjw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Utilities.MixedRealityServiceWizard.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Utilities.MixedRealityServiceWizard.html", - "hash": "1ctjTZqeIGsY3kW9ZbZZSLGBEaY0+zdy76OzsFJvSFc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Utilities.PathFinderUtility.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Utilities.PathFinderUtility.html", - "hash": "wNe7JT3RC39XK0BWoKALIUTiD2epquHS3UMVRs3U4wU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Utilities.SceneHelpers.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Utilities.SceneHelpers.html", - "hash": "wt+I6rfn9MQ4jqi1+9y5UTer/mDCGtwJkySNPX2WDOA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.html", - "hash": "/gByPX5L3srU8zYnsKZ4q/rNSuYxc0i58P7ZNqT8Ras=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinkSettings.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinkSettings.html", - "hash": "RGoyZ5IjozV4IzJxTiRZG2rJ+JQUkJedCn53m7cir0s=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinkSettingsInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinkSettingsInspector.html", - "hash": "j8JALEMOD9zuY4i6jlSOCothO3yFGD/+oLbNNLGW5OE=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinker.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinker.html", - "hash": "RMFkxyPxhMREgOe0bFwtniSq3wlm9B7mnGJoYFoSn0Y=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinkerWindow.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinkerWindow.html", - "hash": "zKE4H3SA0FByFy2Fsrcg5Kk9fAaolQpr0QAwXJJr/wY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Utilities.SymbolicLinks.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Utilities.SymbolicLinks.html", - "hash": "PBY5YoKqtIoP9yUH9pIFAKJCeGoVGwIV/r6vbBnp6BA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Utilities.USB.USBDeviceInfo.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Utilities.USB.USBDeviceInfo.html", - "hash": "O7Eby5A6TcuDF/iKWqXv60Xuk880px0zD7UiMB3ii5M=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Utilities.USB.USBDeviceListener.OnUsbDevicesChanged.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Utilities.USB.USBDeviceListener.OnUsbDevicesChanged.html", - "hash": "+H1QMHyTvs2wTxG1doZh/8jOTO/IGhwUBJzEwX2pqnA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Utilities.USB.USBDeviceListener.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Utilities.USB.USBDeviceListener.html", - "hash": "RcQDJ9qLBptdsRvod1DCK8W0sLKcWTR1kfQPR/Za8Rw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Utilities.USB.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Utilities.USB.html", - "hash": "7qkAoWWWZgTInUfdzePp6CEc6nxW2n8s4Cb3lxroHQ0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Utilities.UnityFileHelper.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Utilities.UnityFileHelper.html", - "hash": "wnQtKBjec4jqLJD5fml3UxvOY6ozBsVwhwv6H9oO8ck=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.Utilities.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.Utilities.html", - "hash": "cXs4HsBwh8IkCDGEBri5m15ok+rehRcI68nr/CUrdWs=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Editor.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Editor.html", - "hash": "HuwxZl2n/jiw8I0XU8mcYbZdkB7bhzhXNz4B9LrH914=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.EventDatum.DiagnosticsSystem.BaseDiagnosticsEventData.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.EventDatum.DiagnosticsSystem.BaseDiagnosticsEventData.html", - "hash": "LWQWJxzLHCHpc2UiE8nUYkIHkz/URnNXZBHlK6hv/EA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.EventDatum.DiagnosticsSystem.ConsoleEventData.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.EventDatum.DiagnosticsSystem.ConsoleEventData.html", - "hash": "u9mACtp9X0Cs7nNtQuhVANhTPX2MPiuepBllew9s+xc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.EventDatum.DiagnosticsSystem.FrameEventData.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.EventDatum.DiagnosticsSystem.FrameEventData.html", - "hash": "2R1RwGXmfN7aSwP42kCY/Jr9ynJcSeW3zJSJdlRdZBw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.EventDatum.DiagnosticsSystem.MemoryEventData.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.EventDatum.DiagnosticsSystem.MemoryEventData.html", - "hash": "cPY12J+hCPILmcf56YDtWgZloyrv7lveeonA74zlDuw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.EventDatum.DiagnosticsSystem.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.EventDatum.DiagnosticsSystem.html", - "hash": "PMssDfK9kb7YiZxDUCqypF2iU9DykyLZjgqO8oszdUw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.EventDatum.GenericBaseEventData.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.EventDatum.GenericBaseEventData.html", - "hash": "SZGDZ+/Ei+Se9CIJKjO5j2W9CCoVTdndGer0gYKy5tc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.EventDatum.Input.BaseInputEventData.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.EventDatum.Input.BaseInputEventData.html", - "hash": "WsoPbj5nv85V0w8H98VV4z+qMcnwI6/9lCFvbYkNnS4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.EventDatum.Input.DictationEventData.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.EventDatum.Input.DictationEventData.html", - "hash": "It3OKkil8AWIO9KZZQpmDKzssnBL4h6AlLQdTV1JxVo=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.EventDatum.Input.FocusEventData.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.EventDatum.Input.FocusEventData.html", - "hash": "kUBe9nP8Qc1Qu5KDuQE24SE0NZZ5VE1lJj/8vux3O88=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.EventDatum.Input.GraphicInputEventData.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.EventDatum.Input.GraphicInputEventData.html", - "hash": "4mgSYe/mpgq3jI6kUkqjjsXC1sNJEI4DjucpzY9oC48=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.EventDatum.Input.InputEventData-1.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.EventDatum.Input.InputEventData-1.html", - "hash": "2bGttI1Ee0J3TGjKIb6rJ3wLbexyp274mYgtItZwdPk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.EventDatum.Input.InputEventData.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.EventDatum.Input.InputEventData.html", - "hash": "9c9pdRau4AFutchW92Xrh738cjN1Euk0tK0XKcT/yGo=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.EventDatum.Input.MixedRealityPointerDragEventData.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.EventDatum.Input.MixedRealityPointerDragEventData.html", - "hash": "r125XhXDgwsFK249VW/Ykq9NShcluuN4oL/n+0ZOsSo=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.EventDatum.Input.MixedRealityPointerEventData.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.EventDatum.Input.MixedRealityPointerEventData.html", - "hash": "FuJExPFpRkd6Wcu1Liz2gLbMlLhDWSAlZ5U5OjWx+zg=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.EventDatum.Input.MixedRealityPointerScrollEventData.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.EventDatum.Input.MixedRealityPointerScrollEventData.html", - "hash": "kk97xVZPCscPKZqo5zIqey2YMhPyH5sabBGgyBcYDF0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.EventDatum.Input.SourcePoseEventData-1.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.EventDatum.Input.SourcePoseEventData-1.html", - "hash": "u1N/OsgLHMXO49zLYNsAgUrqfEJJl6Edvo5nIPmG1sk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.EventDatum.Input.SourceStateEventData.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.EventDatum.Input.SourceStateEventData.html", - "hash": "ZT1nazyLsvyfgJc8tMa8KB/hI1qY414NcIM81fLKY8o=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.EventDatum.Input.SpeechEventData.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.EventDatum.Input.SpeechEventData.html", - "hash": "m2jBR+MEaY/bxhkxkBeYxi3pyCqoNIIsRYvdh4Eru78=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.EventDatum.Input.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.EventDatum.Input.html", - "hash": "b0y6rXaNRY8WMSVhh7RLAiNHQNgQ7YSf+sf+TM8kNxA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.EventDatum.Networking.BaseNetworkingEventData-1.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.EventDatum.Networking.BaseNetworkingEventData-1.html", - "hash": "bKtVqEzVGRRQ29JQDkZKqN/eaQfuwXfBZpzjfNm/i2c=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.EventDatum.Networking.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.EventDatum.Networking.html", - "hash": "aLPsM/8nL6DMW3Dy8at2iBXEk1Af6aUTQlAFWXWUjI0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.EventDatum.PlacementEventData.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.EventDatum.PlacementEventData.html", - "hash": "ogMwygpTkEZEt11ba8qaJ5wenV3q8se5KbCmz1jz5Dk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData-1.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData-1.html", - "hash": "orlZXYDXwS/u3qVHuJ1C6syvES1dWmNZh8oG44AzKco=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.EventDatum.SpatialAwarenessSystem.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.EventDatum.SpatialAwarenessSystem.html", - "hash": "KVBqRueKBk/a+a/53rbNCoo2nnmiY36R8Dg8VsDp9OE=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.EventDatum.Teleport.TeleportEventData.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.EventDatum.Teleport.TeleportEventData.html", - "hash": "tM2zEc8chVmOxogIrdJZhDAnDlc4rLSEk36NBdaIqt8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.EventDatum.Teleport.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.EventDatum.Teleport.html", - "hash": "Oiun8er3B1O8PAoKzjgNwwYtoFcNv2TMXk2Ro7X9TeA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.EventDatum.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.EventDatum.html", - "hash": "LFg0bWSE/gvDbHjuLM565E+0Sufd7CdeW2zy3to84rI=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Examples.Demos.BoundarySystem.BoundaryVisualizationDemo.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Examples.Demos.BoundarySystem.BoundaryVisualizationDemo.html", - "hash": "MIzp6ARDVJOb4pLQ/dfBgDffFtjeKs2sLcxZ0zOZSYg=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Examples.Demos.BoundarySystem.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Examples.Demos.BoundarySystem.html", - "hash": "n6qwBvg3NXmWV7LZeKnnrf2cNx9euTeaopQNeGj63qc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionService.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionService.html", - "hash": "2uvfaKnqlC5gEVLDtY8NrHXwTZtVTgymGBd4G8EZZ/A=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionServiceProfile.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionServiceProfile.html", - "hash": "m4IIEl7YmErxb3NyQVThi17Zl2xUV58AKj9eTtiBjHc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Examples.Demos.CustomExtensionServices.IDemoCustomExtensionService.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Examples.Demos.CustomExtensionServices.IDemoCustomExtensionService.html", - "hash": "JVVBUXTtYv+CKbEj6D03jI34HxUW55TYXa34eh4ZK7E=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Examples.Demos.CustomExtensionServices.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Examples.Demos.CustomExtensionServices.html", - "hash": "7C2aq3QwLT+evdIigyuHCRJTl1LfPdhh54vxWhMEjbQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Examples.Demos.CustomServices.Editor.DemoCustomExtensionServiceProfileInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Examples.Demos.CustomServices.Editor.DemoCustomExtensionServiceProfileInspector.html", - "hash": "C21RkWUqg4y1J02C9DEn2+iFTy2fJYcdLuvQbHhIbpQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Examples.Demos.CustomServices.Editor.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Examples.Demos.CustomServices.Editor.html", - "hash": "+HuDUBaK+p916R/C99fNCNBQAq6xBFopa0x/Mq0JQog=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Examples.Demos.DemoSpatialMeshHandler.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Examples.Demos.DemoSpatialMeshHandler.html", - "hash": "KIP/J88Z/Ktn4T0v+Wflq+5QZXTWM7iwULuL7la8x2g=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Examples.Demos.DiagnosticsDemoControls.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Examples.Demos.DiagnosticsDemoControls.html", - "hash": "60vexMp/0pp6LFHlXyD7oPPCrG0VIsjfXl+vcXhDZgg=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Examples.Demos.Gltf.TestGlbLoading.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Examples.Demos.Gltf.TestGlbLoading.html", - "hash": "TySZYncKmhxAKVPu+soKHRWoMCu1KoAKv2U7nbQC8kw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Examples.Demos.Gltf.TestGltfLoading.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Examples.Demos.Gltf.TestGltfLoading.html", - "hash": "KalY9zDRoHAsbzFe07EU62vbwBf0ZvB/ZZw4+GrFRTU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Examples.Demos.Gltf.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Examples.Demos.Gltf.html", - "hash": "HTS8BR3WFCixMc2UtP6nC3pqMUJlrUt2fUHTxBNWsu4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Examples.Demos.HandController.HandPhysicsDemoStation.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Examples.Demos.HandController.HandPhysicsDemoStation.html", - "hash": "hSoMTb0CU+xtWsXnxlPIFt58A385oUH/rYTTxpiah7I=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Examples.Demos.HandController.RenderingModeDemoStation.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Examples.Demos.HandController.RenderingModeDemoStation.html", - "hash": "zMzL04aqNG2mtCsVIXu5n1ju2jxXiPEaYbgsKtQtUrQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Examples.Demos.HandController.TrackedPoseDemoStation.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Examples.Demos.HandController.TrackedPoseDemoStation.html", - "hash": "OGFrFM4xCC+cRXzpZK6hqbHIbgnrmdonUXXoo5gkBWQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Examples.Demos.HandController.UX.DemoButton.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Examples.Demos.HandController.UX.DemoButton.html", - "hash": "t4zUnQMFlB/BtEQC4LzYb+7JsFr7a/9M4YBG7S1lzr8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Examples.Demos.HandController.UX.DemoGrabbable.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Examples.Demos.HandController.UX.DemoGrabbable.html", - "hash": "GrIGu0LlCJgGR0WR7cx1CVDPqW3xnAX2JzMBqNbIxhU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Examples.Demos.HandController.UX.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Examples.Demos.HandController.UX.html", - "hash": "ilzvVGdjWM9Ju++r9awsYOhm9dddQEikv8ZO8Y+JSVs=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Examples.Demos.HandController.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Examples.Demos.HandController.html", - "hash": "1neFTQMDfqRxqvFb12+2th8M2oTSeA10FD74bMD0kxo=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Examples.Demos.Input.DemoInputHandler.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Examples.Demos.Input.DemoInputHandler.html", - "hash": "VC7HPsGj5OVqRy3M/EPzTXvgHSTql69zOQT1Vg4qHFo=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Examples.Demos.Input.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Examples.Demos.Input.html", - "hash": "BjWVv6P6viU9HXRL5rWcglaTauDa158L/t0hs/EOY8Y=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Examples.Demos.LoFiFilterSelection.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Examples.Demos.LoFiFilterSelection.html", - "hash": "zdlFuhzJuAGNqL4ALGL2uXcSmX/Ab2nKY+a14AT+uwQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Examples.Demos.StandardShader.MaterialMatrix.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Examples.Demos.StandardShader.MaterialMatrix.html", - "hash": "VrKxU+5a/47Ux6IqsalPcHyP4sRma4jm6fHtycxnyFk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Examples.Demos.StandardShader.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Examples.Demos.StandardShader.html", - "hash": "mjRiK632RC1P60ifYF5qdDX5zTYMn1vmlZt9emidX1U=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Examples.Demos.SwapVolume.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Examples.Demos.SwapVolume.html", - "hash": "aUqMJQ3v0sa89YtUW8GnJNhoQOgNSw/qlJ6Z/DC2/4Q=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Examples.Demos.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Examples.Demos.html", - "hash": "kb6gsMprsuw+PHXnjLMOwk43j4GmWlJSPKzEAKXYIsU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Extensions.AnimationCurveExtensions.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Extensions.AnimationCurveExtensions.html", - "hash": "EF6WIlN32WIpDqIzKlgnDcWv3qZxImXRjoJ0o2OqH+k=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Extensions.ArrayExtensions.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Extensions.ArrayExtensions.html", - "hash": "d2f7HNZCVckPzoNmLYzDlQIQHATXQ0C/CRaz/ohjLtg=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Extensions.BoundsExtensions.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Extensions.BoundsExtensions.html", - "hash": "T7vPiYGxlFpjG83UAuzX/HsvUlmLUgbII4+E1y8ifmI=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Extensions.CameraExtensions.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Extensions.CameraExtensions.html", - "hash": "ohVjonVXRHtp0+tiZdsNb5zqu/jS1wRRiA3Ywg+WNdk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Extensions.CanvasExtensions.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Extensions.CanvasExtensions.html", - "hash": "rZN7rTQWiMrxE7LiaeHLoTOdeVsAqAgogFGkE28Fx8c=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Extensions.CollectionsExtensions.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Extensions.CollectionsExtensions.html", - "hash": "n80k4LcVntsmzCGwCP87IQOcPkGCWD5ULJEZSUsCQ2s=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Extensions.ColliderExtensions.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Extensions.ColliderExtensions.html", - "hash": "8jyCH0Rgrq8b3kWZm3bchdZWzYWuj5MiIKJTYYR7XXA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Extensions.CollisionExtensions.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Extensions.CollisionExtensions.html", - "hash": "uG99QfB6mrYTO38emnczMVJ0y6hF1rfr2Dx1rJxOBcA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Extensions.Color32Extensions.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Extensions.Color32Extensions.html", - "hash": "aAZvxKIS6kHHoad9PAuB4WcU4JamqUYDJ4jHhjO/+9A=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Extensions.ComparerExtensions.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Extensions.ComparerExtensions.html", - "hash": "Bhup0nwtZW3wGIx7UDSLmMKbC+iVMPQLF6y9NHe2LqM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Extensions.ComponentExtensions.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Extensions.ComponentExtensions.html", - "hash": "piCQVIM09sKCG/7IvwOVLNs/nf09HUJUrDEzEhXExaA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Extensions.ConverterExtensions.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Extensions.ConverterExtensions.html", - "hash": "iDcoXCbrsoDFQ6/+jkuTxNeO8mCortELOHbtXjjHY04=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Extensions.DoubleExtensions.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Extensions.DoubleExtensions.html", - "hash": "2uKgLtIrrd7TaF/oj3x2AI9ru6TEg9Ts7U5MrAlHqFQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Extensions.EnumExtensions-1.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Extensions.EnumExtensions-1.html", - "hash": "Ayalg2NeEQ+6FMFYBIDQHOOoS9hD6rVijjUBQzNgw5Q=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Extensions.EnumExtensions.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Extensions.EnumExtensions.html", - "hash": "OCuv5oWs0Pmaz4+5BOEIiuGdjBWvs88/LkZO6qqLQcM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Extensions.EnumerableExtensions.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Extensions.EnumerableExtensions.html", - "hash": "taTx/yfWjSSUinWdYZok0D27G8b5upf+FSx6aev4hzk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Extensions.EventSystemExtensions.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Extensions.EventSystemExtensions.html", - "hash": "rYvR6ifGhyC+KAo97+2nmtWJ0hkPsfpXcC5thsv2PAI=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Extensions.FloatExtensions.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Extensions.FloatExtensions.html", - "hash": "eawycXE7WmfewHIEwxYdfx5AH81mb8f70IJY9DExMLE=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Extensions.GameObjectExtensions.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Extensions.GameObjectExtensions.html", - "hash": "I4Pc2Hru7RhDvKP1EJnmSDUzjSoaDQxMO8u/6LS6QO0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Extensions.HandControllerPoseProfileExtensions.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Extensions.HandControllerPoseProfileExtensions.html", - "hash": "2ZI8XE/SIoXbkOI+TeWatHBss09DMN0iw73F8DONKZk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Extensions.InteractionMappingsExtensions.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Extensions.InteractionMappingsExtensions.html", - "hash": "saQBrEhwlq09OV1qqlGOclEDUP5ivIdlcmYMvIYgrmg=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Extensions.LayerExtensions.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Extensions.LayerExtensions.html", - "hash": "OVu42nfOJLi9AEwO2L14QNVoK6UYAfClSSi9utz1ya4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Extensions.MathExtensions.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Extensions.MathExtensions.html", - "hash": "CVNRGV8zvje7X9olFJN624j8PgZHIAGHqY/Z09Kq1WY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Extensions.ProcessExtensions.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Extensions.ProcessExtensions.html", - "hash": "styGSP59iRJyIYw1pwwXyo20ul5qxfoW7hzJuBEW97A=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Extensions.QuaternionExtensions.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Extensions.QuaternionExtensions.html", - "hash": "/1pKLuLeiqcPNJCrtPkrQ2FlEXxaOeQI/SiCrCbBYw4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Extensions.RayExtensions.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Extensions.RayExtensions.html", - "hash": "kfmlE69MQaccv6k9y7mcu/FsbYTgl4NmH7SUzwJSYUY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Extensions.StringExtensions.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Extensions.StringExtensions.html", - "hash": "1HXbkpEuZ8JsdoBzk2MiIL7sKQS9V9VfVB6NpnkTIWc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Extensions.SystemNumericsExtensions.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Extensions.SystemNumericsExtensions.html", - "hash": "aiApqhO+l+E36Xf+MsO6dCeRT1T8DdDTQNtgI+hCCjo=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Extensions.TextureExtensions.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Extensions.TextureExtensions.html", - "hash": "rAcNYLDlylAQwjNCFk3OnZDGd5gKEcnJIH7+G8DX6oM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Extensions.TransformExtensions.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Extensions.TransformExtensions.html", - "hash": "g+c3IQNKZUxwVWkL4D/5aeT1nGOus3Amj+jGnLSNg6w=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Extensions.TypeExtensions.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Extensions.TypeExtensions.html", - "hash": "BqzJ55+KDT6YWs/xqrhlQmLEvtmnUnWqMDmUE2eh8no=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Extensions.UnityObjectExtensions.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Extensions.UnityObjectExtensions.html", - "hash": "QAI65WDt4EefvpOB+3JuRVaHZwINz+bueMXTjuIuLQU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Extensions.VectorExtensions.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Extensions.VectorExtensions.html", - "hash": "J92pR2UnHhYZiwpkl8IxbQb1pWSWVkN4H6oTb9xSQN0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Extensions.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Extensions.html", - "hash": "+y4ZqfElhsc3zXYF/RnVjtBcN8ykLoxrh2bBI+AFGvg=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.Audio.IAudioInfluencer.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.Audio.IAudioInfluencer.html", - "hash": "2nnHDSGELSQfj26IZa5Xwjq7Z5zwPqEfFN4s0znL1eo=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.Audio.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.Audio.html", - "hash": "gl02BJ20oVhx1i1rkciQCVSWeHj+i64MD9kjta2GEZo=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.BoundarySystem.IMixedRealityBoundaryDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.BoundarySystem.IMixedRealityBoundaryDataProvider.html", - "hash": "tkYgsYslKRSwaFAL7Ykc3lGS7K/+YjSMDCsgmNSeCDk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.html", - "hash": "pzwRfp+pEDi6CK8whSJq817aknCz02d0AVVz/XI2iY8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.BoundarySystem.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.BoundarySystem.html", - "hash": "9i4FFuqU/1lZjkiXeV27mUbJEoqmyfLjsyzCKRGRy+0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider.html", - "hash": "fOgw/V9gXzgoRmK6oV6oe21ax+dX8YfdCQfweKIW6bI=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig.html", - "hash": "nH0t4tOKFNduimTgg8wfpII8vIgmQXFpFcqbAoiEai0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem.html", - "hash": "PWUkHn9aYub4PKLtitzhU2bq2hBRGuMnlVH276zpgmk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.CameraSystem.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.CameraSystem.html", - "hash": "GoZ0UScOoQwCW1VEKQbCwFRreAFkD8JehQg0cDgWH8Q=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityConsoleDiagnosticsHandler.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityConsoleDiagnosticsHandler.html", - "hash": "EppX5e/Kv4kEaokuEx20K2U78KM+Oam03SuPcHLNhGo=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityDiagnosticsHandler.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityDiagnosticsHandler.html", - "hash": "81aEsdxAOTigIC0s8Yw46xTryvion1tO1P1BvgcqeDY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityFrameDiagnosticsHandler.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityFrameDiagnosticsHandler.html", - "hash": "toC4P2PXL1ivrrfIssQuaIjxSjRT3MZ7ioZnxC3lTDc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityMemoryDiagnosticsHandler.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityMemoryDiagnosticsHandler.html", - "hash": "bC3iCvlZwVNRO+O34DGE0DC43AEoD1aMYdMJvqMfR4E=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.DiagnosticsSystem.Handlers.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.DiagnosticsSystem.Handlers.html", - "hash": "+oiLzubMgamwOKkyg6ukN+KCjWDXFxVDhcJ0E08uKRc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsDataProvider.html", - "hash": "uEkyDJhm1HankLZK3bBqiSo4DNrlBNb9GUL/h3xS5tE=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.html", - "hash": "RD9mlc50AvYRFrOvu8ALGRsXVSpduKWkDLeNOcMdjZ0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.DiagnosticsSystem.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.DiagnosticsSystem.html", - "hash": "SuHUUkx3k6omXYj7yJJ5NJXGzibfcPm5ttKJl0Xen8A=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.Events.Handlers.IMixedRealityEventHandler.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.Events.Handlers.IMixedRealityEventHandler.html", - "hash": "SnGfgCnBUO4GPEpIfDScAVQFYrVw0FcI6usCKDX86j0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.Events.Handlers.IMixedRealityPlacementHandler.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.Events.Handlers.IMixedRealityPlacementHandler.html", - "hash": "59gCdWi6EimMtiLwUZBB6ORGdzAuBxzXc4x7rZsCQr4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.Events.Handlers.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.Events.Handlers.html", - "hash": "lW+NiaN5Z9FDxPXb54NxBi2H77tkkzLX8ESR8JbD1/0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.Events.IMixedRealityEventSource.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.Events.IMixedRealityEventSource.html", - "hash": "gc6Hi9K1IcnRG7UL9Q+/Ed+Nqns/jVjeD9lcUl33iII=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.Events.IMixedRealityEventSystem.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.Events.IMixedRealityEventSystem.html", - "hash": "hPRjLt8nOtWrO/4kiuGt6spnqaMG4nhkaA3ZDMdUWYE=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.Events.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.Events.html", - "hash": "bYvboDoeZj6unDkq/J0wZghNrctgJOlsEHbjtyZMfSc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.IMixedRealityDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.IMixedRealityDataProvider.html", - "hash": "0UbGGRbgRVwvfaq4GSY5XUo6fJsrCjZvb1srGb06l+s=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.IMixedRealityExtensionDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.IMixedRealityExtensionDataProvider.html", - "hash": "UrOPaWY3lrNAQk9+04w4Rahup/kCsfp7Wpzw1G8cEFQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.IMixedRealityExtensionService.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.IMixedRealityExtensionService.html", - "hash": "TU9zpD7WnEFRAsGE3gFVFE8YZvVTONP2Dqyg3dXaEwI=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.IMixedRealityPlatform.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.IMixedRealityPlatform.html", - "hash": "WmlSvLKrSGCy606qWZWSpxrROsWFbg9QYfjUYHqiy4w=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.IMixedRealityService.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.IMixedRealityService.html", - "hash": "gjVXdlU8yi0ROHzCDVsI2PAiCDy2ljOM94JhNymmbko=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.IMixedRealityServiceConfiguration-1.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.IMixedRealityServiceConfiguration-1.html", - "hash": "lyE5Nza8P9gAJi82dM8bCccMD4eJCzabT2MdlmNTVa8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.IMixedRealityServiceConfiguration.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.IMixedRealityServiceConfiguration.html", - "hash": "A9HrK+pLi2hTesBfHc5fnHLWuCpkgiHxQ9QW/L/8RNs=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.IMixedRealitySystem.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.IMixedRealitySystem.html", - "hash": "rv4LiIqixP0xLA4Gf8bjtwOmAOi2+B246MM/t9VV9Yw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer.html", - "hash": "SkOSpUQHntjgUM+WKOJ6oy3rnRX6Lr+cHCRbGHcWJ2w=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerVisualizer.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerVisualizer.html", - "hash": "fE/j2HkKi2prUz2j84j6+JDwjoS1AVI58LfizVnVCDQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityDictationHandler.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityDictationHandler.html", - "hash": "GnGiUvl8G8E/+h5yyqy887R4HPUyzH71qb23hVIKh/w=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusChangedHandler.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusChangedHandler.html", - "hash": "Va+tkYjNiEQsA5zhH4qzV+dUIDSXB4Jymj8jRkXypXk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusHandler.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusHandler.html", - "hash": "PeemRMDLsLEHG4dkradq2Y+1FrNE/Qhf2g+TBnL4gFA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler-1.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler-1.html", - "hash": "sgHryjrLXcLwzhoc6axUYE7cQhF4c5IOvZRpcGowLhQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.html", - "hash": "Z3pm4t5FQFVXXRLad5ZxSrr+KgQJEJ9su/7RPK4iLqc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler-1.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler-1.html", - "hash": "GlCWujjQaTogccW4OpLW0pWId2Ef4YXezxB96vK6axs=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.html", - "hash": "Vtju5aha68W/4e1V3YuTW27EJ/oD877ZMWUYYy98RYE=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerDragHandler.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerDragHandler.html", - "hash": "ZyehrruyxDfBCzJMdjiHL6k6AilOljvMfFSG7EOFa6s=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerHandler.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerHandler.html", - "hash": "XZ1akSNF/xc5/Deh0TlbJSWjyj6c+F3rzkjdIiNGaM4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerScrollHandler.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerScrollHandler.html", - "hash": "O2F+iTxzp1Gi0lW3aQmH+DKQiThswGuXGGWYRv2E3dA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourcePoseHandler.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourcePoseHandler.html", - "hash": "+Jz3OtXFpUDmSry6lTe1+rPWbfUGb8rvfAHMQR2RY0g=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourceStateHandler.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourceStateHandler.html", - "hash": "KXKjTtLRKvOSXvOqjkkR6RHFStfwQjK7mEo506uVuis=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySpeechHandler.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySpeechHandler.html", - "hash": "+he3mEuY8fVxqrTXVSsQr9eUQ1QMbgLaCllz3rtDZjI=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.InputSystem.Handlers.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.InputSystem.Handlers.html", - "hash": "oVDU1Bq75JJbk1BcMzx6xo3ATu51OGe4qwjVX8xDsTk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.InputSystem.ICursorModifier.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.InputSystem.ICursorModifier.html", - "hash": "ar/FP3ugSRusr5IootC4/+JDZ9LJwAZr122pk+4LEYQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.InputSystem.IMixedRealityCursor.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.InputSystem.IMixedRealityCursor.html", - "hash": "eDhwi0/ODbd+2UkNbCoDKmEBhY4w0cATqj/hREOHTbM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.html", - "hash": "9FRmD6/QHKLEWJ1YlU3GJoJNrIhsTwLz1qMYSJYce2s=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.html", - "hash": "6iC7LJ6rIR3xrQKGgOuoTX/1PYGwxUoBhCH3plLgxmY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.InputSystem.IMixedRealityInputSource.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.InputSystem.IMixedRealityInputSource.html", - "hash": "3hk5fLb4THIwgJOF+lK+xzXfMUCXJE2cWvOa1m09e/c=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html", - "hash": "ICFVqPuAPzc6F7/2Yn98xa1QTdpV60EUPfaaz48RTIQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.html", - "hash": "gh6BKMyzEpxEEI2c+mPc9UD5RDsC+7isW8oCxrzgkSM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html", - "hash": "oQhleqmkc6dZoHeV6F4LP8ElL0CSNsglbr2XMnePFUw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.InputSystem.IMixedRealityTouchPointer.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.InputSystem.IMixedRealityTouchPointer.html", - "hash": "bfsDveKBp4s3qk1yuhW0YRy7oENtTuJTR3YSYNes0C8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.InputSystem.IPointerResult.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.InputSystem.IPointerResult.html", - "hash": "DuVvRZreTcZBwGNSIuF1xhQdwZ7P6ZjTfe+X8tre5M4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.InputSystem.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.InputSystem.html", - "hash": "2yRhUZhzrPNq/SqwbSFm9NOC76ysAbo4zXSgm2Je7n4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.NetworkingSystem.Handlers.IMixedRealityNetworkingHandler-1.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.NetworkingSystem.Handlers.IMixedRealityNetworkingHandler-1.html", - "hash": "VXPDFCuRKdFLpnFfmU0idpHGzr/jvmHNN/ups+4Vcck=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.NetworkingSystem.Handlers.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.NetworkingSystem.Handlers.html", - "hash": "jszecKM/m1aPfS6YFoxbVpx3gzrjJEhgfX+Xd4dJvUo=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider-2.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider-2.html", - "hash": "YrwFvbOUuMF9vDITK6AosXgQNhGRw6aYo7RdmcYD1QY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider.html", - "hash": "PfQrWs4i/R348wTEsokG15f2jWi5CS9PX8A1gc7kx1A=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.html", - "hash": "DwJwXA2N/qlmBoBavI1FojKBsuj2Cycq7wPqzzvHbyg=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.NetworkingSystem.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.NetworkingSystem.html", - "hash": "dw/GGBgr4N0VtIdk+iKWpL4UvkVmeg6G8qf4BrfcuxY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.Physics.IBaseRayStabilizer.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.Physics.IBaseRayStabilizer.html", - "hash": "xUGRKaLuuy9IcVZ/Lh104nxcTlDFSUhGFqSfLBY5BHc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.Physics.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.Physics.html", - "hash": "D0k3h92HHe6meArCsGvfn0T0DxG9gDOZvpnEplCfSCg=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.Providers.Controllers.Hands.IHandDataPostProcessor.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.Providers.Controllers.Hands.IHandDataPostProcessor.html", - "hash": "nxYB+rFVeES8SajEWFIGkt5587Zq1IsOM9UzY1eGemw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.html", - "hash": "VaxXpCNP9Kt5A7AeNPIpoJrbAF+pCe9pQRmO313daKw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandControllerDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandControllerDataProvider.html", - "hash": "+42rUXI0km0e2FMlJhFnpQHeSGd3/Li7EC3ASvmS7Ys=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.Providers.Controllers.Hands.ISimulatedHandControllerDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.Providers.Controllers.Hands.ISimulatedHandControllerDataProvider.html", - "hash": "cFBkKOaUhdkApzA0Zdpky38zzfxzd2KAJRpVzOr2g7w=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.Providers.Controllers.Hands.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.Providers.Controllers.Hands.html", - "hash": "NsIsRk96uUU+1L6/QuabZXeBIaHjaIb5nMCUJjjuPPo=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.Providers.Controllers.IMixedRealityController.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.Providers.Controllers.IMixedRealityController.html", - "hash": "HZbJnP/kzse741lWx0YfWfLbDlQz251CvF8bf4n5NH4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider.html", - "hash": "lTGwMgLsrrv27r9TdctubbafbmX9NWcnfNvtZXPjbnw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.Providers.Controllers.IMixedRealitySimulatedController.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.Providers.Controllers.IMixedRealitySimulatedController.html", - "hash": "8K6zJajbve/n6ZbKYnml0Zb04dOHy8t63GLSP2gzdxg=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.html", - "hash": "f+3uzrW11vBtk5l3/cokrgGtUcf3BRLOjmyoTWAzBQc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.Providers.Controllers.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.Providers.Controllers.html", - "hash": "DFT0SaK6pIW8GOSn5iu9/3yaPvL/vNZRftcC7UZfP/c=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.Providers.IMixedRealityInputDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.Providers.IMixedRealityInputDataProvider.html", - "hash": "lc18vKfbm1sn6pdP1r1Hb8PTv5WPOizXylAnbGeMU0g=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider.html", - "hash": "CWJBPB8Tf0YX3JXzdvshAXtsm5UlG8GVBjQdZcZH9C0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.html", - "hash": "hhFsrSKJHV2C4QHmVy+jJHUNLCzk8F+fEWut1/p6y0o=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.html", - "hash": "yiwKQZ12X2DDBkkn+ARYaEjS1HOcLvXRXkKuCiv4iOQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.Providers.SpatialObservers.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.Providers.SpatialObservers.html", - "hash": "7s1VCZ1l+REP3vqncxersLn/B8UDJyLFSIzvX8xDI40=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.Providers.Speech.IMixedRealityDictationDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.Providers.Speech.IMixedRealityDictationDataProvider.html", - "hash": "u8NbX+Wrs4hmNVts9tnciE6Xvd6DAX0BwbKJSUE9k+8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.Providers.Speech.IMixedRealitySpeechDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.Providers.Speech.IMixedRealitySpeechDataProvider.html", - "hash": "rpVvN854GNnIfUhxJqMhUoO37zIqBS3W3d+3VlD3rxM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.Providers.Speech.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.Providers.Speech.html", - "hash": "J0pEtBlZmkkPxj1/+u/vHs/xNFpGVSnQj8+H5bjfV3A=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.Providers.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.Providers.html", - "hash": "+nZ4rZKFTPjfpJN+WNjX7wxEWeS+Ffv8We7YFxc/lWQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessMeshHandler-1.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessMeshHandler-1.html", - "hash": "kNw7P/yO9CgyZJ0HDxyDMtejcAuJ7MFnQXJYKqe33iQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessSurfaceFindingHandler-1.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessSurfaceFindingHandler-1.html", - "hash": "IC2Z2+eJRmlca1sFC550++Dh3IqptiYM998OOD7aB04=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.SpatialAwarenessSystem.Handlers.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.SpatialAwarenessSystem.Handlers.html", - "hash": "JC2GcuAE2UPt7+EP1z8R6yHFWt34DVfn3P8cSqaLNmo=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.html", - "hash": "l2692u//g/so7IjhAk34tt0G+5F2Mq2ZF9oz8J+aPy0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.SpatialAwarenessSystem.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.SpatialAwarenessSystem.html", - "hash": "YHw0RooCWYZENkKiQ9xTjaydHYpXJcaUEu1zYzu33TE=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.TeleportSystem.Handlers.IMixedRealityTeleportHandler.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.TeleportSystem.Handlers.IMixedRealityTeleportHandler.html", - "hash": "5wFvlr8i6PAVnWGvKpufamtOTsRLKx7x7MJbYephvYI=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.TeleportSystem.Handlers.IMixedRealityTeleportProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.TeleportSystem.Handlers.IMixedRealityTeleportProvider.html", - "hash": "H4oLIAdLxdgaU7eKB1M6PO4kdcJsxFt6x7e13nzR5Tc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.TeleportSystem.Handlers.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.TeleportSystem.Handlers.html", - "hash": "u80q8ohYuy4p/NZL5dQ7XHTwRIiKboB5mpaO+UPEOsQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportDataProvider.html", - "hash": "sFq0bQdnzL7XEgdDDhUKxtpZIBunHeAHDFs9XDR7QlI=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot.html", - "hash": "zq2U5xNJ46tJJwtVVw0pGrb9hSceThoock7f+m59v4Q=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportSystem.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportSystem.html", - "hash": "Jcd6pZwxodmJA26CI80pZBTDFDOZND4Nskb9tkouAso=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportValidationDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportValidationDataProvider.html", - "hash": "YdRip7Iv9WrMV2df5NSHh7ExXcap7odHE38QOJsEuQ0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.TeleportSystem.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.TeleportSystem.html", - "hash": "eGSWcteVgnTt1nGX/yUzsEwxraD4LvobiVTWZ/AFHtk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Interfaces.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Interfaces.html", - "hash": "S/ebivpWcdCpVhDHk0ca42+aFTcQwdM04a95htJAIEs=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Lumin.Editor.LabDriver.LabDriverQuery.Result.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Lumin.Editor.LabDriver.LabDriverQuery.Result.html", - "hash": "NvrFF+l/NW7iu95jnKQFm84xhqLNPxLmw4KhDW8lSiU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Lumin.Editor.LabDriver.LabDriverQuery.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Lumin.Editor.LabDriver.LabDriverQuery.html", - "hash": "uAIfG6vNEIDb4mU3COyy0vRa1nwLIQBGKQY88rRBZ0A=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Lumin.Editor.LabDriver.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Lumin.Editor.LabDriver.html", - "hash": "VcwYOSjwsFG4K3nUI2Cgfwt2ZsOlmDQJw4n3fHKZ7HA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Lumin.Editor.LuminHandControllerDataProviderProfileInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Lumin.Editor.LuminHandControllerDataProviderProfileInspector.html", - "hash": "QxwIBo9EzWQUu/eHGVFSNVStm+fkIKPo7uxAkrwBiUA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Lumin.Editor.LuminPathFinder.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Lumin.Editor.LuminPathFinder.html", - "hash": "hs2yt2LAGOGW7F/GKcZzXa7kCaomIQM9p468XFKmhkY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Lumin.Editor.LuminRemote.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Lumin.Editor.LuminRemote.html", - "hash": "7FjRO+pIDwIu+znCfi9pfEdx+fzSvPvegeTbrdM4QSA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Lumin.Editor.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Lumin.Editor.html", - "hash": "Kle0z+/IAvPQjnljwyMlWg18B9ywTDvY+wGzaMR2ar0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Lumin.MLKeyPointFilterLevel.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Lumin.MLKeyPointFilterLevel.html", - "hash": "Biu9MWoh+n/NaXnIloDT4x7mA+BsiOD2zLLt0tnFIOo=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Lumin.MLPoseFilterLevel.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Lumin.MLPoseFilterLevel.html", - "hash": "GTnHJgcZNqD8MslaxdS+vi9E9sMv14ykmIbssCJZi4Y=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Lumin.Profiles.LuminControllerDataProviderProfile.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Lumin.Profiles.LuminControllerDataProviderProfile.html", - "hash": "X9eEeYIUfyh/hvaMHsR0zl5g6F149zX7ZFFr+srzua8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Lumin.Profiles.LuminHandControllerDataProviderProfile.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Lumin.Profiles.LuminHandControllerDataProviderProfile.html", - "hash": "smYCDcDiocoBC+1PPo3ERB/Dk9nXGM/adqfNBsW84TY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Lumin.Profiles.LuminSpatialMeshObserverProfile.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Lumin.Profiles.LuminSpatialMeshObserverProfile.html", - "hash": "c72Wzh+iZboAdEhfRGWcvfoJFnD55k0God4PJEElF30=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Lumin.Profiles.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Lumin.Profiles.html", - "hash": "yBwz8ZzwXfhWtobhifJrs3W1Qa5QrmnUjPfZFQTEJwQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.html", - "hash": "Ka8ECAQBFfzuHspHsgDCbq9Ttz2XCePw2bun5QhXRNY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Lumin.Providers.CameraSystem.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Lumin.Providers.CameraSystem.html", - "hash": "BfktrzBZsEzIFx99hDREYpKoP89M1kfWyymQjFZ+hW8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Lumin.Providers.Controllers.LuminController.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Lumin.Providers.Controllers.LuminController.html", - "hash": "B9FKd2cTI4HzW6IRJEwV53c9dqhdG0xCNYjyVR9QSHY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Lumin.Providers.Controllers.LuminControllerDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Lumin.Providers.Controllers.LuminControllerDataProvider.html", - "hash": "0Gow99kuoRryO5A80zxGGn4npY0F8nmf3AOL+I7iZnY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Lumin.Providers.Controllers.LuminHandControllerDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Lumin.Providers.Controllers.LuminHandControllerDataProvider.html", - "hash": "+YDFVD359hC80VNO5wJML2stoqnbtE0ubi2JQvzD7bk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Lumin.Providers.Controllers.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Lumin.Providers.Controllers.html", - "hash": "Nw+iNPiLPmGJYpFrV7rv63v7BDdQPysGWZ+UVRKWxIc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver.html", - "hash": "vtXnPhUn5JqX+qmw/nVY4GAdVC+79Qm5BE/rkfLAFcU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.html", - "hash": "M50F6Lp2qv7h/Q8azl931liGdoRwNg8+Qj5xAOaazGA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Lumin.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Lumin.html", - "hash": "zjIVjtjY8ocgJcrAfxLq1I3EjlsA7Any3HTL2EXPqD8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Editor.Build.OculusManifestPreprocessor.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Editor.Build.OculusManifestPreprocessor.html", - "hash": "ky0tamuIZBtcNQftsgBH06NMNNfYfH/Mw4/Ng4NUfLc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Editor.Build.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Editor.Build.html", - "hash": "ooQFUXgdCxvkZ09vOv8ouZ4tSP7PK9rhTBG3NcTmnEg=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Editor.OculusHandControllerDataProviderProfileInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Editor.OculusHandControllerDataProviderProfileInspector.html", - "hash": "mgV9dA2U3qV2k0CSGjuFBClvnQC1jY7uXtXDnqTDl8o=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Editor.OculusPathFinder.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Editor.OculusPathFinder.html", - "hash": "VlvzjVG/PRHE9Ycka35K2OCpfPf+mvOKwf2oRTmAudk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Editor.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Editor.html", - "hash": "2RAbzQbMkxRKUsk89zK30f7eLU3lkv5zqEX5OR6EPP4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Extensions.HandednessExtensions.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Extensions.HandednessExtensions.html", - "hash": "D5xwlDs84Kz4ME7Em1G2L9wqtJBuFYMAQVZKUadV1pk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Extensions.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Extensions.html", - "hash": "VnXDUl4Q+H8DAdvdknUnIQMJtUm3vUbICD293onrbXg=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.OculusPlatform.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.OculusPlatform.html", - "hash": "xe0dV37xljlsL0RU618zxaTNVhzj2yQmd0E3TXsgShE=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.BatteryStatus.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.BatteryStatus.html", - "hash": "O2pKR21Ng72XOoNaXYgUafitOZkboQsH0EB4dBWZyis=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.Bone.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.Bone.html", - "hash": "tbt48pkSxTtNWiMjN0ofyVTeIx0S2KsZ9/vw16H02ck=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.BoneCapsule.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.BoneCapsule.html", - "hash": "hho6AD8HTutLXn9FQkNeSN6HWVIlanJ4sHKGrZ0NT7o=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.BoneId.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.BoneId.html", - "hash": "8LlqrbMC2xYWC8/pdQ4yTr86xxOuq+GQg3JDE8rKo9c=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.Bool.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.Bool.html", - "hash": "ZEgwDbXPw48yKqRzZMmy/Hg2/W3QQLQMmfzzyQD5H3s=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.BoundaryGeometry.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.BoundaryGeometry.html", - "hash": "GXf3LBc8otRlYqhXYMqTifCL0p5HjpUvGwhNFFHbux8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.BoundaryTestResult.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.BoundaryTestResult.html", - "hash": "R3fgGqQIOYMcJhow0jVTdBg6uTbfFrjDXvHqc49DH9o=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.BoundaryType.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.BoundaryType.html", - "hash": "K9kVBPuOY1z8+Uo6qErHmapmQfbyjZuLs6SxCYWVJms=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.CameraAnchorType.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.CameraAnchorType.html", - "hash": "wFFqIVDqVVw80dGP6p+sjS/TUDTMzzVWhpWL2fcYjhs=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.CameraExtrinsics.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.CameraExtrinsics.html", - "hash": "5pNxRW40Tclu72h+tsFcHOT0088rlA/1GqKSGEEoMFA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.CameraIntrinsics.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.CameraIntrinsics.html", - "hash": "yvGd9HlUwMCC60ErSB1vtAUXwMflkbvixKu7KAOSKrE=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.CameraStatus.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.CameraStatus.html", - "hash": "SYA4Lds0bK+Ge3wzcUhmfghMpcBy/57AGj9Q4i7tzTg=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.ColorSpace.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.ColorSpace.html", - "hash": "A0Qjow1W/AIVBEQkp/dSoZ0iGwdVvbCDi5Xg8x0IjQQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.Colorf.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.Colorf.html", - "hash": "fZ65PGlchlAY4rE4JlSIGSXj2Hyd/QIJ6BdkiByyeHk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.Controller.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.Controller.html", - "hash": "+eSuA7l7YYBXLzALTvOBXFyn5icTrQDU73TymHif0JY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.ControllerState4.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.ControllerState4.html", - "hash": "GboGvzvfBcyyLrUC2a+Z1wYVg03n6vnpwYr2p9US6u8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.EventDataBuffer.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.EventDataBuffer.html", - "hash": "BNpvSlVlLivGhJ7y7MaIowHKdhYCB8Oc6TrA/4MnaLk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.EventType.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.EventType.html", - "hash": "W8oT3tw1XFzB2blsajwAXMriQJ3EPKuPQ1fuzTQ0Apk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.FixedFoveatedRenderingLevel.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.FixedFoveatedRenderingLevel.html", - "hash": "YB/5hg5jzDK8O1gm1bQgUHC/ObL2EyUXdm/sCQMkR8g=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.Fovf.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.Fovf.html", - "hash": "IkFheS0z6WiEM8DECjMmDTj9esc6wmFjnDm1ZOHyNRk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.Frustumf.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.Frustumf.html", - "hash": "spoIARllVWVF6OE6x+JhmOvIv8mIyy2zIoUz3P2d58k=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.Frustumf2.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.Frustumf2.html", - "hash": "e1jC/2d4pDpUuFDOs5+ULi+qOQM8WOBvboFhgS6BuIc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.Hand.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.Hand.html", - "hash": "fBD8r1qmNg9SJuPP+8tlDGYxc5V+NCOAvxHeuXK3gfI=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.HandFinger.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.HandFinger.html", - "hash": "Rb25n7GxczVo+OM7imk9HlCIIzQVw0RofMV5K32HsCw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.HandFingerPinch.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.HandFingerPinch.html", - "hash": "crCHokbWweFWVcjE48FPs026acNtK5kWY827eZM7MOQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.HandState.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.HandState.html", - "hash": "SRRLe9om8L2P70oIp8si35Bb4zOzil/v7juozv4YKkU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.HandStatus.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.HandStatus.html", - "hash": "8namyojxry2GccE1+AudcdtdW87Rx5/V/SnT/ZKHxhE=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.Handedness.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.Handedness.html", - "hash": "GcqWl95dVHwaXp3K+37TqjWtUDaOiMkJz/hiOYlrTmw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.HapticsBuffer.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.HapticsBuffer.html", - "hash": "OvmEDtV/er8WgWHytS4oTI641/nBASQvsb6xepshmEA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.HapticsDesc.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.HapticsDesc.html", - "hash": "ySJFLu+cFOWodrpK345y23/25uO7lcNFcbyu8H5U2fg=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.HapticsState.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.HapticsState.html", - "hash": "5O0UroM3DWLSmm0OuCQnXtaIweMOqPULasqeqrGnL94=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.Mesh.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.Mesh.html", - "hash": "O/tMLACJ4zy1tIvdszzeXE8/SDnBBHuvH0EFy6pvSzo=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.MeshConstants.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.MeshConstants.html", - "hash": "IQe1p4PzaAWgjAuCyqKmRg1lmECbL72HbTvcBs+l1xA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.MeshType.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.MeshType.html", - "hash": "LvUzqr0B0LHxAvrF1Vyw2caqQG23CUfTI0FAJgYKFro=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.Node.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.Node.html", - "hash": "QnuLBoYGo17gCzRvv4sd2eqfSSW405Oz8Zom/PuSabM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer.html", - "hash": "FTfFKGuF+xH9UPf2uuRKSdrgMOCDDRpavJNUnYYf+R8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.PoseStatef.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.PoseStatef.html", - "hash": "lHhZN3PypVPUxYz8TK/9KGjaV4HWTe/oOfvEVnEWzhA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.Posef.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.Posef.html", - "hash": "ZWg3hh/MaBLVtem11Xe8ewl+2yABcpjE55FpNbn3Ahc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.Quatf.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.Quatf.html", - "hash": "7Vd7bgPvL5W432kkaRDN+UreT5zWnbm+ZjkHFPDjGuY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.RawAxis1D.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.RawAxis1D.html", - "hash": "heIGOIhiJvx+lsrXUKOFPX9iyC/d9itYtAYrJRKaleU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.RawAxis2D.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.RawAxis2D.html", - "hash": "ujM/MzAO5JbPqXsf9bt2pyqQhoc/w65sjH3HKBfg/EU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.RawButton.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.RawButton.html", - "hash": "yUc17PAcv5NsLaCDDTrNG5cH/eitxAy7YgASKbNPHgo=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.RawNearTouch.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.RawNearTouch.html", - "hash": "g66jHhERhlkpBjy1h0qDBOixNfmhJ916ieHuUZ2hKTA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.RawTouch.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.RawTouch.html", - "hash": "dDzqUgRiK2G+3SxdFhonQr/UrpQp7SeOTrHwXBKSB1o=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.RecenterFlags.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.RecenterFlags.html", - "hash": "nDNjQuTqdNvorpMTPqUhVn+c6fBKVwZVN8N0wtrWnvQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.Rectf.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.Rectf.html", - "hash": "b655cXn7nHm4e5JVMRkg3aMaucToKpNLGkwV23/r9go=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.Recti.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.Recti.html", - "hash": "RrtOz//yu66FtXeRTsRKFXTsOWC8AujlYOLLf9l5kYY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.Result.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.Result.html", - "hash": "OoKSBVPg1lhaGInK7MeuW7TEujVuLzyaiEhqwF+Jnf8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.Sizef.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.Sizef.html", - "hash": "d1eNjqRs+X4OO/deBLZGpG3huhAj47HITWRnyMOUHGA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.Sizei.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.Sizei.html", - "hash": "Fsp6D14JslpnyZRDOQUXcufabMep+4VBjTiW6+9cXU4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.Skeleton.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.Skeleton.html", - "hash": "UCJA2NviZePGvyNpqGYeoXMculzbjtyDTtmwrBbbmrc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.Skeleton2.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.Skeleton2.html", - "hash": "xqb8BPPqIAb2HB8HLBGOKtk1ZxULGjEE1VmTcwQIEfA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.SkeletonConstants.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.SkeletonConstants.html", - "hash": "u5otwHn/tQ8PuzkYujgmwSL3vD3iw5WKFgYwZtznUEg=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.SkeletonType.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.SkeletonType.html", - "hash": "4DndjGRaD+LdQQCBlF3YlbSmGus+uIn8aN5OTcFU5NU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.Step.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.Step.html", - "hash": "o2gDTfrfYe5azI2jNlKCPCdUhgt+jNg/6YLT/3y/sC8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.SystemHeadset.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.SystemHeadset.html", - "hash": "Edw3/uWp/cDi+l71ETjWMNZHtS9HAQgMIKvPS1md6bI=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.TrackingConfidence.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.TrackingConfidence.html", - "hash": "XkEUZ/hBOhE+YWKFVvulby/YheVt6nzsOqiaxfTKYQM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.TrackingOrigin.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.TrackingOrigin.html", - "hash": "mjMt/RVyD7wRtgVxcETaJTaqUF2G23GTR0SoaVb/uD0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.Vector2f.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.Vector2f.html", - "hash": "mpWjNfMIj2mEBsiO+d0SnurAGtNdv0qIzcOF21RjfpI=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.Vector2i.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.Vector2i.html", - "hash": "+JiYfYE4QwKFRz049uQnQ0fW/VKCErJcUlBshpnshIs=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.Vector3f.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.Vector3f.html", - "hash": "5ajJAeyJjZqn40TcBS5alPfzB5vLLOv6JKPnjkmQbFs=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.Vector4f.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.Vector4f.html", - "hash": "nqQXvoyIwDyWrxW70hYtW9xpoKS1mTXRyF/GvCO7FS4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.Vector4s.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.Vector4s.html", - "hash": "DnfQY/iDVvlTTv4CQ/dk5qtPccRpxHC+qtv26k+W4J4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.XrApi.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.XrApi.html", - "hash": "luew8O/+Qnnqb/jBEPfIW6cGHXWpIspGoWSsx4lZzrE=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.OculusApi.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.OculusApi.html", - "hash": "4zrA7U3FyOxGUjvBSvYK3GLZ0AYPl+z1lfDtZ5ojfLw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Plugins.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Plugins.html", - "hash": "7OkBLC6sdq/9Tk6er1FHFcTArX5hNt35H9NdY1ndYx8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Profiles.OculusControllerDataProviderProfile.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Profiles.OculusControllerDataProviderProfile.html", - "hash": "JncSBePT6kuOtC25x5chJ3XWaYP3v211nAakhH3YaBo=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Profiles.OculusHandControllerDataProviderProfile.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Profiles.OculusHandControllerDataProviderProfile.html", - "hash": "cfkFevJWXIHVPG+v1QbFZ9RSS2b/i/TOK+L78zQQo0I=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Profiles.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Profiles.html", - "hash": "J8Fwdk6fW9cwhQiWsZIeqi+9VYQKhTVBPPdf0CC7Ql0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Providers.BoundarySystem.OculusBoundaryDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Providers.BoundarySystem.OculusBoundaryDataProvider.html", - "hash": "mO8JNYWRIwPDUQ2DL9u+JNG7FARY90PjjTR8uFiarg0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Providers.BoundarySystem.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Providers.BoundarySystem.html", - "hash": "zpA8tvsH1ZPfa55+38GcNKfAQ39LVyjGF/zCz411RNc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Providers.CameraSystem.OculusCameraDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Providers.CameraSystem.OculusCameraDataProvider.html", - "hash": "Dn+Tb6Npz05hXMA/mKYJfslhYbiXeGhIIVAOSImE1ME=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Providers.CameraSystem.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Providers.CameraSystem.html", - "hash": "WjmS9vx0+KmCCZbtowqkWAvAM+5h3UHU4+qJNZ6DWy0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Providers.Controllers.BaseOculusController.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Providers.Controllers.BaseOculusController.html", - "hash": "hmMHmn8HXxCA0fcZais6rsQKwqsRyhxYX8aH0rgsndI=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Providers.Controllers.OculusControllerDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Providers.Controllers.OculusControllerDataProvider.html", - "hash": "EWywtKsnrBYmzMOie7NkfV6cNZ6aIg6G4SoRVL3Ib10=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Providers.Controllers.OculusHandControllerDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Providers.Controllers.OculusHandControllerDataProvider.html", - "hash": "S5LnW/51g4OoQuEaF2qVk1dWxgvcR162/KUVjnROh9Q=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Providers.Controllers.OculusRemoteController.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Providers.Controllers.OculusRemoteController.html", - "hash": "NIM1axW/VzMGq2OT5pCFQ+qyEafsK9oLE3I3I9/Wcfo=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Providers.Controllers.OculusTouchController.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Providers.Controllers.OculusTouchController.html", - "hash": "YBlLqkdx9C+TPbsgNvBuIea/5KwQcVH/4m4lyS6lXvs=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Providers.Controllers.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Providers.Controllers.html", - "hash": "u2FkpK2rIYFISInJItlU3PCRISW9p4h7R+rUuuxxZy8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Utilities.OculusHandDataConverter.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Utilities.OculusHandDataConverter.html", - "hash": "R9gfY7oA3kYp5AU+F0GgCXH4bOOmRQzFd4rbzH4FFUA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.Utilities.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.Utilities.html", - "hash": "cAj+Ilyf6xT7QCR4Cu9+dDd3bbPny8h+4OxvoDbGRos=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Oculus.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Oculus.html", - "hash": "wH9cnQSkzO4FJINON++l11XfVUzsZrlJupjYpz7xGbg=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Providers.CameraSystem.BaseCameraDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Providers.CameraSystem.BaseCameraDataProvider.html", - "hash": "oNcfxMMhCIaesKpbKnNslPyjt4sR3c7tVO2BdLNY/RA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Providers.CameraSystem.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Providers.CameraSystem.html", - "hash": "CXAqwMU5ksPN69b/4vwMfhN01nwj80pxCTbEllvznAY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Providers.Controllers.BaseController.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Providers.Controllers.BaseController.html", - "hash": "Im++LM42vFf7QAYzHtiLs/Y7IyCoCsK85Ynz74f+NZE=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Providers.Controllers.BaseControllerDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Providers.Controllers.BaseControllerDataProvider.html", - "hash": "vkK42VkGnbJUycja6/PWTIf2dA2ji8A2MfdT9K/woxQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider.html", - "hash": "dT6uAnYa45dW0HIy0qsCvWWpgkDo47aTjmNUPO9V6zw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Providers.Controllers.Hands.HandDataPostProcessor.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Providers.Controllers.Hands.HandDataPostProcessor.html", - "hash": "CbWS8ez6n46sChhHByffjQHCGVVwseLff3yLjlObCxc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Providers.Controllers.Hands.HandGripPostProcessor.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Providers.Controllers.Hands.HandGripPostProcessor.html", - "hash": "+9OB/65Ou1/hODB3mgswJsbVIhW1fhhoVBwxZF7WjzA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Providers.Controllers.Hands.HandTrackedPosePostProcessor.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Providers.Controllers.Hands.HandTrackedPosePostProcessor.html", - "hash": "qjO7jXSCYPNiF1oKfbnkKNhT854NU7I/1qodBObhkA8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Providers.Controllers.Hands.MixedRealityHandController.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Providers.Controllers.Hands.MixedRealityHandController.html", - "hash": "zCYW453/7fPpuuGP7o7xvSKnRYCknUaADl+K7SxgiSs=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Providers.Controllers.Hands.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Providers.Controllers.Hands.html", - "hash": "+VyEV8kod4FRhN+quq8tYNYQnXLkBBwUA3vutf8zBgY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.html", - "hash": "EmQSlDV2jiSjXXa4SVjA+vlxwx+IoFSpWJbCukdF5Sw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Providers.Controllers.OpenVR.OculusGoOpenVRController.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Providers.Controllers.OpenVR.OculusGoOpenVRController.html", - "hash": "zOk1OBU8gEf0AIxhQy4xJhDnPN8j6c+201vejS6XTTA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Providers.Controllers.OpenVR.OculusRemoteOpenVRController.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Providers.Controllers.OpenVR.OculusRemoteOpenVRController.html", - "hash": "WqAhikjX2EIBecD1rLq4vgwt8N+Z1oKaO6bhcgvSHLg=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Providers.Controllers.OpenVR.OculusTouchOpenVRController.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Providers.Controllers.OpenVR.OculusTouchOpenVRController.html", - "hash": "VJaT9NOk5M9L7i+4+UZuNBJ1yEwJr+q20N/rpqQ8BlY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Providers.Controllers.OpenVR.OpenVRControllerDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Providers.Controllers.OpenVR.OpenVRControllerDataProvider.html", - "hash": "IeHBxl8NWMt9K2nOQ7FUTweEPvI5nnKwCVlLSYfqOow=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Providers.Controllers.OpenVR.ViveKnucklesOpenVRController.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Providers.Controllers.OpenVR.ViveKnucklesOpenVRController.html", - "hash": "NPtSBcbc61OYGjOwoTfOKLl9YR6fK/MM2FVpV2yRnog=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Providers.Controllers.OpenVR.ViveWandOpenVRController.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Providers.Controllers.OpenVR.ViveWandOpenVRController.html", - "hash": "ubRJPgKvvmvSABe8GSKTSER3QW+g/FvYVBNv7on5kN8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Providers.Controllers.OpenVR.WindowsMixedRealityOpenVRMotionController.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Providers.Controllers.OpenVR.WindowsMixedRealityOpenVRMotionController.html", - "hash": "P3oA/8aVf/lvbrK5dfCK1gg8ANv3EOIufVIKp4F50NM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Providers.Controllers.OpenVR.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Providers.Controllers.OpenVR.html", - "hash": "XE0BoQe+FcqlwMH5Ysb/jt0tD3fzIZXBYb2cav3ZKwE=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.html", - "hash": "86MDWqp91Rtzw9lC8tuMLSO5QZXvIaCY5Mqe/VOI7RM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.html", - "hash": "BPFtCCnLJYsQL2HWxeLeCaDKUjSmSuOMVtKwAZsWDeE=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.html", - "hash": "LnFdqHbnNK5g8rItUA7Ugevt42/4TGBN6/b8JoatMDQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedMixedRealityHandController.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedMixedRealityHandController.html", - "hash": "61rAa3t220ZjJsPbE5kpYiUDo0WOB9nenD1sonpfHVU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Providers.Controllers.Simulation.Hands.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Providers.Controllers.Simulation.Hands.html", - "hash": "F/GWgI4t7rzX6gfRE/H759/ulTTHLSXKZPggLHUCl/w=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Providers.Controllers.Simulation.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Providers.Controllers.Simulation.html", - "hash": "cE8keXVlv5VOK3oN8yhI6hhMaWc2xgA+Xypy0ym1VVw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Providers.Controllers.UnityInput.GenericJoystickController.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Providers.Controllers.UnityInput.GenericJoystickController.html", - "hash": "YPaYZk8ffTyqE0eBavHmBIIwAIjSt1ed9gon6gGbjSo=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Providers.Controllers.UnityInput.MouseController.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Providers.Controllers.UnityInput.MouseController.html", - "hash": "Co5AV6+XivTOhbVgvFTVXlMklqk45XGsYIeElmsWqp4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Providers.Controllers.UnityInput.MouseDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Providers.Controllers.UnityInput.MouseDataProvider.html", - "hash": "3y49XeweHwsa99PJKcgVrQi9UEwTxTSAVow0NLaIuXs=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.html", - "hash": "m8evFdLFCsypFz7spZ0y9O8HrnN8XW3c3FAjtHF/OcQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Providers.Controllers.UnityInput.UnityTouchController.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Providers.Controllers.UnityInput.UnityTouchController.html", - "hash": "0df9ka3ClBD0ub6zSqVh2ZL3XTlK25bLG2r2akGqtf0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Providers.Controllers.UnityInput.UnityTouchDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Providers.Controllers.UnityInput.UnityTouchDataProvider.html", - "hash": "v4Q01kC93p6tsKoQDJvgyc/zZ4UMotrBl0taAa99UVk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Providers.Controllers.UnityInput.XboxController.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Providers.Controllers.UnityInput.XboxController.html", - "hash": "W2NzdqYiKKXqYOm8AErkeb97hbah7fUUyrDfFhFZTH8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Providers.Controllers.UnityInput.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Providers.Controllers.UnityInput.html", - "hash": "TlnFOz6adLLbAWqTtQTlZ6WP5KoD7Ao/1ZhPAsTYmWg=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Providers.Controllers.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Providers.Controllers.html", - "hash": "tHkaCRMRJYbwNmRUayylKgRbWbNByR2+RQAdiNvucsM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Providers.Networking.Profiles.BaseMixedRealityNetworkProviderProfile.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Providers.Networking.Profiles.BaseMixedRealityNetworkProviderProfile.html", - "hash": "iLETtc4vA9fw3vcPF3WK//kcpzW2CPYdNqBApAzHG10=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Providers.Networking.Profiles.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Providers.Networking.Profiles.html", - "hash": "oHV8RlBFtB6OHuYCL8ffnXteb8IeS3Kgi5amAppHFdg=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.html", - "hash": "0z6WhLRjpbXHWCMHuENV/YAFvR/YrT2HkA9L0nI+pnc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcNetworkProviderProfile.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcNetworkProviderProfile.html", - "hash": "7b1kcMKt0fxxjjx1wkwzuwIDD2x2M6eTuQp0hM+a0VM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Providers.Networking.WebRTC.WebRtcPeerConnection.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Providers.Networking.WebRTC.WebRtcPeerConnection.html", - "hash": "itmFC0spZaQ5QkHaTWDsixBi7PymM+OxhxVi2CcRdCI=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Providers.Networking.WebRTC.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Providers.Networking.WebRTC.html", - "hash": "BLqBrIwIyUQ4DG8vCK05ElviSwu0hF9pHhCmRZfy+iU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.html", - "hash": "W+fduuJMw5g+8FBcuxy1kc3B7AppCWKRtSGP8PN9CS4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile.html", - "hash": "U1LrpDTG3u3SUayR/YmFJcQ3/QDnFhdZOJS4ElcLgEw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.html", - "hash": "cWKoRtl/IGupNRfT4KOVJwaRYz15FgBi6evMEx+ezCU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverProfile.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverProfile.html", - "hash": "QHhByNbvQA3EndlyF3AobMB/ycHh9hml57inXTcCfmY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.html", - "hash": "F0D6Q+IEMIJJ6nBHy0V/6rNbGjVqyWAaxVrNgVHsI+g=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.html", - "hash": "JrFl1V75mCnvbLhK2fRodD1aePcegkonoy2saSBZiZk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Providers.SpatialObservers.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Providers.SpatialObservers.html", - "hash": "8lNmq89mMGT/Lbwe5vqkNb9iRIzMjEJJm/yPhZ8MAW8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Providers.Speech.BaseDictationDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Providers.Speech.BaseDictationDataProvider.html", - "hash": "9q51YCHibG+UyN6sJNbqH1F8x+OqI4RSyXuy0mZEqe0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Providers.Speech.BaseSpeechDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Providers.Speech.BaseSpeechDataProvider.html", - "hash": "vt6VgcD1uaGP366TIxc0FFT6f4qw367Ki28HOrCOLUE=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Providers.Speech.WindowsDictationDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Providers.Speech.WindowsDictationDataProvider.html", - "hash": "xfouf5oliRsUx0xvcrQateVo8fPPNDtmxEvd1ROtYiQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Providers.Speech.WindowsSpeechDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Providers.Speech.WindowsSpeechDataProvider.html", - "hash": "TMQQwLPshuHJ/SkbC+gs6d3rJM++hW9BBGqoLLDJJPA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Providers.Speech.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Providers.Speech.html", - "hash": "Kn2Sb4KzXJDjom9Ezm//JpaTl3RVfGtFnWkgbjGs0Us=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.Audio.Influencers.AudioInfluencerController.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.Audio.Influencers.AudioInfluencerController.html", - "hash": "DHRhNyn3qv6daQJMs/43AFn4seWQb5qQWEG02OC21ZA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.Audio.Influencers.AudioLoFiEffect.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.Audio.Influencers.AudioLoFiEffect.html", - "hash": "URt8F0uGS8HBjTJGqXRkXv0oRoHGXpXJMO9CEahCp4g=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.Audio.Influencers.AudioLoFiSourceQualityType.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.Audio.Influencers.AudioLoFiSourceQualityType.html", - "hash": "z3UrfhXvab+kJgdH92332DjDro3tnsCEmlI+/lZ3Dc4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.Audio.Influencers.AudioOccluder.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.Audio.Influencers.AudioOccluder.html", - "hash": "DXUmLorzmh3gSAzWpwGYKyVg9g4giyT87NQ02SGU57c=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.Audio.Influencers.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.Audio.Influencers.html", - "hash": "S2gsOtkOFCvMmomwdRcDqTQFtniFCtNPpsEALQRgtGE=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.DiagnosticsSystem.MixedRealityConsoleDiagnosticsHandler.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.DiagnosticsSystem.MixedRealityConsoleDiagnosticsHandler.html", - "hash": "V9gD0wurckBo2kvZlKK2kohmSvqF+HWLvwyz8Rp85jg=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.DiagnosticsSystem.MixedRealityDiagnosticsWindow.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.DiagnosticsSystem.MixedRealityDiagnosticsWindow.html", - "hash": "pIImzWUaYlMvaVY80KPB3THbMGgDPV9Og+V5md955Lw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.DiagnosticsSystem.MixedRealityFrameDiagnosticsHandler.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.DiagnosticsSystem.MixedRealityFrameDiagnosticsHandler.html", - "hash": "V8MCLtc197+o9d3uff2bc7jMyDAmJWRZ0PX51OSSCEA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.DiagnosticsSystem.MixedRealityMemoryDiagnosticsHandler.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.DiagnosticsSystem.MixedRealityMemoryDiagnosticsHandler.html", - "hash": "hc/q2MDZX+q6LfIWBZFEfP2ruqOBVLLdmeq7KtcaJAc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.DiagnosticsSystem.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.DiagnosticsSystem.html", - "hash": "vFw0h5eSinhN3YVbdL6BpUVm6PdLx2f++38hQjehXxI=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.Editor.Input.Handlers.BaseInputHandlerInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.Editor.Input.Handlers.BaseInputHandlerInspector.html", - "hash": "ZpD0Ga+VMXkfwE26dLInGbDBdJXUkQm1Nx2zpJJFLP0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.Editor.Input.Handlers.ControllerPoseSynchronizerInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.Editor.Input.Handlers.ControllerPoseSynchronizerInspector.html", - "hash": "XO2YNRnzzYZBp9k8NyWJIQc9U9MzUq+Li6PEHZjmkPc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.Editor.Input.Handlers.DefaultMixedRealityControllerVisualizerInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.Editor.Input.Handlers.DefaultMixedRealityControllerVisualizerInspector.html", - "hash": "AVM5uvD97RDWEnK/mV75OhkxCPFaQsL6lq7nx1kzSBY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.Editor.Input.Handlers.PointerClickHandlerInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.Editor.Input.Handlers.PointerClickHandlerInspector.html", - "hash": "T3yCVt8PSiwJ+Xo4vkLxNJC5VbCYbnBlc5OXzMtgTGQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.Editor.Input.Handlers.SpeechInputHandlerInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.Editor.Input.Handlers.SpeechInputHandlerInspector.html", - "hash": "lQ+IUJ9btCv7fyQ5/5Lq0tZ4uMjKa2apCp4fMzHy1E8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.Editor.Input.Handlers.WindowsMixedRealityControllerVisualizerInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.Editor.Input.Handlers.WindowsMixedRealityControllerVisualizerInspector.html", - "hash": "4/O5w2VpUxJUfWC1zx3XLagxJc7nSXgr/Xx2sqVvRBU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.Editor.Input.Handlers.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.Editor.Input.Handlers.html", - "hash": "qlXYj3RouJcPKry47dAt5qfeYc8/saNNgFRTamc/aDk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.Editor.SdkPathFinder.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.Editor.SdkPathFinder.html", - "hash": "DIRB/LVm7GFxfNhVWtRYnG8MGrTb5Guy5FD17rbfXqk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.Editor.UX.Collections.BaseCollectionInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.Editor.UX.Collections.BaseCollectionInspector.html", - "hash": "kmgNMBuqhZeJIgQEO1MqVjbV3ADQSKW9PevAPT71Few=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.Editor.UX.Collections.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.Editor.UX.Collections.html", - "hash": "+C5zVVoQbwYVqesQfbHMUCK5+rPXRtIVUrZyoFLE5nE=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.Editor.UX.Pointers.BaseControllerPointerInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.Editor.UX.Pointers.BaseControllerPointerInspector.html", - "hash": "cTJRKWM8bC0R4cyRTTbMpP6i/W+mu8UYg4BvYmQ/oO4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.Editor.UX.Pointers.HandSpatialPointerInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.Editor.UX.Pointers.HandSpatialPointerInspector.html", - "hash": "hhf/LJXhweh040gnw7X1BhHfqLIaj2mfEiQ5lJykmgI=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.Editor.UX.Pointers.LinePointerInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.Editor.UX.Pointers.LinePointerInspector.html", - "hash": "9cOXRXR9zk92sXqJPyJsYKSbkQwg6022pkfB3kcjflg=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.Editor.UX.Pointers.MousePointerInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.Editor.UX.Pointers.MousePointerInspector.html", - "hash": "vYIE2iesDiVUwG1lhIbkZcxSydkJLFKo4tTiNnZlxO8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.Editor.UX.Pointers.ParabolicTeleportPointerInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.Editor.UX.Pointers.ParabolicTeleportPointerInspector.html", - "hash": "v1MclaJlZ5LhtoiazJ1zCI3wmkdotdR7oKjPQ9js/5w=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.Editor.UX.Pointers.TeleportPointerInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.Editor.UX.Pointers.TeleportPointerInspector.html", - "hash": "vs2Vbl4WVSGQxaqWuJg7/0MuiRptPkWrAl0ZIhYNgCU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.Editor.UX.Pointers.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.Editor.UX.Pointers.html", - "hash": "WyZdcvlX2Qiff/JBjRX6fXbeltqk5KpxOJhFGwVhhsU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.Editor.Utilities.Solvers.ControllerFinderInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.Editor.Utilities.Solvers.ControllerFinderInspector.html", - "hash": "ULZKhU62yBDOH82Zg5yrxyyua+5tO+QZn9HEs3qO+WI=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.Editor.Utilities.Solvers.InBetweenEditor.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.Editor.Utilities.Solvers.InBetweenEditor.html", - "hash": "HSAWi5Tv7+jGMOiCU5RVvyBVgJj5lCZPAOSt94nZR3s=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.Editor.Utilities.Solvers.SolverHandlerInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.Editor.Utilities.Solvers.SolverHandlerInspector.html", - "hash": "l0dqTe8BSFXuio/+mN3xG+q4v1cqwcgw3X31FEdifek=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.Editor.Utilities.Solvers.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.Editor.Utilities.Solvers.html", - "hash": "r/VkHCuL3tte/AY3cJHV6NewKXuRsjSIHN3LJpIBP9k=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.Editor.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.Editor.html", - "hash": "gMJpRh4yJllHjzdL4BlxzRcePyVHXR583jBELBkDpc8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.Input.HandDataRecorder.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.Input.HandDataRecorder.html", - "hash": "ETjGjZFCt6cxiS92w2s6Dzo0UvvfNWNh/lB+Mj1ISTM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.Input.Handlers.BaseDictationHandler.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.Input.Handlers.BaseDictationHandler.html", - "hash": "nCBInSXDDXLC3PghZomMCPBZOAATXFmgYtaEG8wNAJg=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.Input.Handlers.BaseFocusHandler.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.Input.Handlers.BaseFocusHandler.html", - "hash": "KMx7qp/27nTNk2pVVH1hmP/H12EmD/98gpcVty/U7d8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.Input.Handlers.BaseInputHandler.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.Input.Handlers.BaseInputHandler.html", - "hash": "nJSZlcEuy5P4/ot1q4fFjE/Qi7R2qnD6XEJ2KsOpbDs=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.html", - "hash": "7/y1jYJMrw8IMKcUkA6cTJ854CMT+UY9P8hWYVpM/Sw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.Input.Handlers.DragAndDropHandler.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.Input.Handlers.DragAndDropHandler.html", - "hash": "Cub6sI8jZYXTtT0W4KOCMSrOdy6NSAhnXNayZv1kscI=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.Input.Handlers.ManipulationHandler.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.Input.Handlers.ManipulationHandler.html", - "hash": "j18UExNpDeqqWfcZUuMoLGEZ4NEwQkYL5IKc9mo/V+M=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.Input.Handlers.PointerClickHandler.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.Input.Handlers.PointerClickHandler.html", - "hash": "fkQmiUfMmDGMX2h/1rApIfb/57d1XnPygb51wBnucx8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.Input.Handlers.SpeechInputHandler.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.Input.Handlers.SpeechInputHandler.html", - "hash": "fm4bFRcKtH+vw6DV8hYrRmfUb6z7yat2JK6UudLkrb8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.Input.Handlers.TeleportHotSpot.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.Input.Handlers.TeleportHotSpot.html", - "hash": "oERRFzxkfRazIw2iWY7fuNzKHAWLBGnVrLwGcTxR97c=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.Input.Handlers.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.Input.Handlers.html", - "hash": "tt6yxM16R2UEtLOOQzyGy5Cmz2E7lOd7/+Xlp/+UTVg=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.Input.InputSystemGlobalListener.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.Input.InputSystemGlobalListener.html", - "hash": "401A4xY5Mc5Nw6CCZXd4RtPtPuTUwnFDo48yUCMNSHk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.Input.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.Input.html", - "hash": "fAbu1J3QZQtsXogBFEpKGoodyTUeHkHVqn+hgyS9GUY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.TeleportSystem.BaseTeleportProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.TeleportSystem.BaseTeleportProvider.html", - "hash": "oQzgBnLF3Tlbwgx/LQdPa/wkKClymmOq6KU2wb1V4po=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.TeleportSystem.FadingTeleportProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.TeleportSystem.FadingTeleportProvider.html", - "hash": "47mJ2KIZsMnQh6sOGysuBp2zKUlopPkZgzJqQBkttLo=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.TeleportSystem.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.TeleportSystem.html", - "hash": "IS3gLDnbe+zcgjl7mS/f/88PyP3tjX2jVslXDlT9KTw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.BoundingBox.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.BoundingBox.html", - "hash": "5+SSvlp0k6MsSFssjI1/bIEdHDBKn/uI+uk91wVb/00=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.Collections.BaseObjectCollection.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.Collections.BaseObjectCollection.html", - "hash": "7oAeYDui3nD8gutCIdMqEVHebtM+OEH1egy9+koGZi4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.Collections.GridObjectCollection.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.Collections.GridObjectCollection.html", - "hash": "GSRWfbaXMmeaGEDp9at4xdE0vobRUUYE0CfHnWIuPk0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.Collections.LayoutOrderType.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.Collections.LayoutOrderType.html", - "hash": "1aBrB1QYS9FXBlw+D4JWzDuUuqD54bIAa0dUERrtXQU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.Collections.ObjectCollectionNode.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.Collections.ObjectCollectionNode.html", - "hash": "iSiC6rZqOAebGj0s5GxyqhMjLSxhWhvk39Leo+FTS6A=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.Collections.ObjectOrientationSurfaceType.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.Collections.ObjectOrientationSurfaceType.html", - "hash": "Mul4SYIdOwiyPEjuZx+tMDYSBrgwX9hL8kKrW2vLkoA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.Collections.ScatterObjectCollection.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.Collections.ScatterObjectCollection.html", - "hash": "XXg3TrNAdPNbCqerxcVcIGDGx4e/r+Y3qoytBUk5Jlk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.Collections.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.Collections.html", - "hash": "9LpFuH0LIWCgBfEu/3J4CtUbr2u6iGzJJJ9T3+sqEmA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.Controllers.DefaultMixedRealityControllerVisualizer.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.Controllers.DefaultMixedRealityControllerVisualizer.html", - "hash": "rcpqZ3+1G5dVA3puu/s8K1rmzoqGhEhRsy3yOG5a8FY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer.html", - "hash": "Wcs4Y9Usz36J0ZBK0MVp8+MyHlBmVIA4NnhHY2ucsZ0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.Controllers.Hands.HandControllerJointsVisualizer.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.Controllers.Hands.HandControllerJointsVisualizer.html", - "hash": "nBlf/BrVhsTdJECZvmWSFlU/OPsdRA2eZweAL8WJWdw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.Controllers.Hands.HandControllerMeshVisualizer.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.Controllers.Hands.HandControllerMeshVisualizer.html", - "hash": "QdKn8MjkLo/5SySpT5PgMkqF/GzvtxWH6TcafA2wMz8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.Controllers.Hands.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.Controllers.Hands.html", - "hash": "PvM2LH3ibypbSfgUiU2hIqe5pv0+YExl3CvT8PQwInI=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.html", - "hash": "rEO1GVlMxst2LXf4dYujIRQRGAofdrOazabSj/yphUg=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.Controllers.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.Controllers.html", - "hash": "61a7n9wE7GdpQA2Kh+/dBI4MN6xGTYLodtfGkZ8DZdI=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.Cursors.AnimatedCursor.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.Cursors.AnimatedCursor.html", - "hash": "9/meX68cOR53LJTpY+zY6QZ3hZu+dsBbZRiZrz8zJzo=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.Cursors.BaseCursor.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.Cursors.BaseCursor.html", - "hash": "Fe8yT/hxG0L8Oq5/iuDmlVwuQxHI+p0Lxi6kTjFBB3g=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.Cursors.CursorModifier.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.Cursors.CursorModifier.html", - "hash": "yJ96vrxiZsdP6r8/Ig3ebR/GzxfotASjAjhPYcgSRiQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.Cursors.InteractiveMeshCursor.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.Cursors.InteractiveMeshCursor.html", - "hash": "wwJ66n/a0kc9lOHVlp24QNBcY0YjSofUBRbtyPej6Tw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.Cursors.MeshCursor.MeshCursorDatum.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.Cursors.MeshCursor.MeshCursorDatum.html", - "hash": "d5rVkvL+j/SJWeUZfuU4DW3zo5hHyU1tIqD9tbUau2w=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.Cursors.MeshCursor.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.Cursors.MeshCursor.html", - "hash": "RVMLhZ9Ask1rRYt3rcoeH9xz/3n9V/lCWfMskz+AQfo=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.Cursors.ObjectCursor.ObjectCursorDatum.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.Cursors.ObjectCursor.ObjectCursorDatum.html", - "hash": "82F2cCsToihExDgmnQy1Cwq0v7raZzFBNhS91lfefdM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.Cursors.ObjectCursor.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.Cursors.ObjectCursor.html", - "hash": "RAnfDViUdhm0+4jLF3WhdMNfVGH5o65qqe6nConYqW0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.Cursors.SpriteCursor.SpriteCursorDatum.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.Cursors.SpriteCursor.SpriteCursorDatum.html", - "hash": "Evb2uYh22UmSwga/P1sAhHVvGIxvidMzua+E+1Tf7Qc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.Cursors.SpriteCursor.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.Cursors.SpriteCursor.html", - "hash": "30A9LBb1XbC5Hdpu8JIlRU6WHcXK+gaIwCRQwrJv/uM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.Cursors.TeleportCursor.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.Cursors.TeleportCursor.html", - "hash": "BgaXWl1NLBf6zjC8UD0riQJJtimtrERzkRDzMiFvEK8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.Cursors.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.Cursors.html", - "hash": "dlo7KDLl/oxSy6wJ4m94TJyVHjyXVq2z1PJ7pcTiyNA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.Pointers.BaseControllerPointer.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html", - "hash": "L0D1/g27e7D3GpJ5Bk33F6pgozg0uXISAOgmEX+mQ9Y=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.Pointers.HandNearPointer.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.Pointers.HandNearPointer.html", - "hash": "VDfOyEVWiNoJeZ1Y1IaaSgdizYS1xOWtc71/IQgGnUM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.Pointers.HandSpatialPointer.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.Pointers.HandSpatialPointer.html", - "hash": "M8DZfDwlqJJxthdWEtRTStk/xF/Vx4DJyBW3XmaiX60=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.Pointers.LinePointer.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.Pointers.LinePointer.html", - "hash": "yeRUvoiyfh5wSlBoJq6XCRS0d/GTMvmC4zQjK0Ha+7M=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.Pointers.MousePointer.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.Pointers.MousePointer.html", - "hash": "WBWZMNceYqL2vJitHDDhlnoVezdvXsgYG283wwn2RCw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.Pointers.ParabolicTeleportPointer.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.Pointers.ParabolicTeleportPointer.html", - "hash": "k+vWUESMHFfNgdQhCgUxNO1+PpnDUOf4xuNssY8HISk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.Pointers.TeleportPointer.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.Pointers.TeleportPointer.html", - "hash": "hcnOEkWsFfE0Mt9bmiDdSxURTAph/TJ7n7/ZwYO0YvM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.Pointers.TouchPointer.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.Pointers.TouchPointer.html", - "hash": "bwpD7tNRcFU+xnBuDqxEC2PQE2kWAUDgUxpamKb9q+U=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.Pointers.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.Pointers.html", - "hash": "IJBzX3YctEjt9nw92Bpe5ISr/XnQGCXcg6ZUnFMH7Ik=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.Receivers.InteractionReceiver.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.Receivers.InteractionReceiver.html", - "hash": "551vAlIDOw4HO94VDaipb0CRwSeHAKfy4FipLo9iULs=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.Receivers.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.Receivers.html", - "hash": "IPGv4fSRNlAf7rNns69Rd2/KicNf4rJ2OBOfSnAVDHY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.ToolTips.ConnectorFollowType.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.ToolTips.ConnectorFollowType.html", - "hash": "WWG9W+ycjH8u8hzcRpN7l6MWraFvFtGIhodSpfR7MlQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.ToolTips.ConnectorOrientType.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.ToolTips.ConnectorOrientType.html", - "hash": "2fUmFteB86bTNDISej4bH5xr0F7F1Nr/m/HfF4gGIaE=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.ToolTips.ConnectorPivotDirectionType.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.ToolTips.ConnectorPivotDirectionType.html", - "hash": "uas3dygUg9yu0nRvrWlzXN5QW+80BjNie3uGGfAKmaE=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.ToolTips.ConnectorPivotModeType.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.ToolTips.ConnectorPivotModeType.html", - "hash": "zufgp95FkK4PS9r80wjwtH3JY+i3emOhKmP04cV/ESw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.ToolTips.DisplayModeType.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.ToolTips.DisplayModeType.html", - "hash": "g06zSZpJUb7mCPgA3K6w1v7IApRlFuUUZUAvEPPuVdQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.ToolTips.ToolTip.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.ToolTips.ToolTip.html", - "hash": "iaVXFPM+5csFlb51XgBk/lxkf4Kstg2BGt3OgbXaEVA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.ToolTips.ToolTipAttachPointType.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.ToolTips.ToolTipAttachPointType.html", - "hash": "YcdZNEDIfhjFR8OKLVsQpYPpgRMGM/xFLWeHIiRXG5A=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.ToolTips.ToolTipBackground.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.ToolTips.ToolTipBackground.html", - "hash": "9tFGPQpHSjNFz9aAbs9Dbg89jLWQbeB+fPcNpTheSmw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.html", - "hash": "/4e+1ftpbefGcuOAIUuCv0xF/WRg6VtAGQIYDYuLajI=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.ToolTips.ToolTipBackgroundCorners.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.ToolTips.ToolTipBackgroundCorners.html", - "hash": "VIfUmtXebFSZdVjWz3kr4nzvm9fD1P1AwNkT8a2/wnA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.ToolTips.ToolTipBackgroundMesh.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.ToolTips.ToolTipBackgroundMesh.html", - "hash": "UM6b1sQIK9pxVW7ViF4dPQFzWWI+CWG4kse53yONgAQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.ToolTips.ToolTipConnector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.ToolTips.ToolTipConnector.html", - "hash": "RMEj5GRG63pwPGCjH+9EHHy0D7rz/4bdBTkfy6TCxA4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.ToolTips.ToolTipSpawner.RemainType.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.ToolTips.ToolTipSpawner.RemainType.html", - "hash": "L1LYvOZNI6i4Gc2EmKah8Qxn6YHe4bX5hpehX1iaU1Q=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.ToolTips.ToolTipSpawner.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.ToolTips.ToolTipSpawner.html", - "hash": "1otyXiXFzA2xIY+RzvJcjlP9kzo3RXCcLH2NMCaLgEQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.ToolTips.ToolTipUtility.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.ToolTips.ToolTipUtility.html", - "hash": "XBibIQ62yJKLGLGj2LS1VBPM9ZORRJmu/VEWyiZ8G3Y=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.ToolTips.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.ToolTips.html", - "hash": "YgIKLG7DC+EJzyvzz5m3gYTLB4CI5tH3f+/DgwP2YiE=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.Utilities.Billboard.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.Utilities.Billboard.html", - "hash": "XsauTiaWASgAjM/w4ugf6zvINVqzh2yn9VR0xJjEyfE=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.Utilities.InteractableHighlight.HighlightedMaterialStyle.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.Utilities.InteractableHighlight.HighlightedMaterialStyle.html", - "hash": "x5+hwE1KIYsEXpXwMsXer8Q9FX3UF86RwJBmJb3Icw0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.Utilities.InteractableHighlight.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.Utilities.InteractableHighlight.html", - "hash": "BS//zdwscZQXV1xYeeVV6wMgGZ+zDViCgheoX52kzwk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.Utilities.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.Utilities.html", - "hash": "AB467crL2k0idB+iBYkeN4oX3swKcCzJRD7qVgRzdKg=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.UX.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.UX.html", - "hash": "+nZ61fKLr19oEJOZLLqY69y5QtWNWQfruCQwQCuLj20=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.Utilities.Solvers.ConstantViewSize.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.Utilities.Solvers.ConstantViewSize.html", - "hash": "H6FUl3AAo07FHwluCOTF9Gf2v4s3b6E7YhJzD+C8MbM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.Utilities.Solvers.ControllerFinder.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.Utilities.Solvers.ControllerFinder.html", - "hash": "XguJpYWlsNANkhdztWJTVqfsDHQPTXOTYe1R0QvBKd0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.Utilities.Solvers.InBetween.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.Utilities.Solvers.InBetween.html", - "hash": "9z32Nk3H3pbujNNAN9iOBKCxIcvu+4oZWCyqcaExbSE=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.Utilities.Solvers.Momentum.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.Utilities.Solvers.Momentum.html", - "hash": "/vQqcZQo2vGbs2eCtDXoG1CdjpmEXaa3wXmyHboGZjM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.Utilities.Solvers.Orbital.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.Utilities.Solvers.Orbital.html", - "hash": "f9MyrZOSygMAyv3B9UURwD3YV7vvEYuiSOVZlLhXGP8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.Utilities.Solvers.Overlap.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.Utilities.Solvers.Overlap.html", - "hash": "4wz9xf7BM7Yitm92bSa3r8k57OHQpPFa9UEC1SV2oMc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.Utilities.Solvers.RadialView.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.Utilities.Solvers.RadialView.html", - "hash": "NwAL3ajzLNDdDRmUu14XD8I5RN/vkHc7cFNM354zK28=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.Utilities.Solvers.Solver.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.Utilities.Solvers.Solver.html", - "hash": "YmzocP4cVcKClDc13pLk0yW9xINxmg/N1oKR5v3Nziw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.Utilities.Solvers.SolverHandler.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.Utilities.Solvers.SolverHandler.html", - "hash": "Mb1qUzG+JzQ9lh9/ZKP6ZxontcIUYvtmCZk6W8e8q64=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.Utilities.Solvers.SurfaceMagnetism.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.Utilities.Solvers.SurfaceMagnetism.html", - "hash": "JSaWpjNZjnA3SEqEGCxz5t8ZpaOykz/3EzXWwvUI4bo=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.SDK.Utilities.Solvers.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.SDK.Utilities.Solvers.html", - "hash": "zFnHac0aW684IkVBP6QyAYvwl2MrnVst2rOho/Qp9A8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Seed.MixedRealityPackageSeed.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Seed.MixedRealityPackageSeed.html", - "hash": "LNYWg8N/qo60DSwrHPlcgICKU6AvN2PtbMzV15WQ5dM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Seed.PackagePickerWindow.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Seed.PackagePickerWindow.html", - "hash": "uWrYuc7zUNmNqBc+cfXQBcbB1FyMbznvp3Q0jMGadjc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Seed.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Seed.html", - "hash": "uso+sHvZagXP0wCS/AzVLUcivKrDtyhhWzF4/mFz30c=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Services.BaseDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Services.BaseDataProvider.html", - "hash": "pzuqZb5x8qcqNiix1BmqqOJm12//p5xRSMQvemb74m8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Services.BaseEventSystem.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Services.BaseEventSystem.html", - "hash": "CwcKM1st7WLFu54PuOm0ebACz4C5uTSRRDREqg/GWbs=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Services.BaseExtensionDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Services.BaseExtensionDataProvider.html", - "hash": "+3096dvrMhFKTArBRPK0UQhI76wM4R/PvxwrmFNP9yU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Services.BaseExtensionService.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Services.BaseExtensionService.html", - "hash": "WisEw0MMz8RrvUAYU8/fM4BDI9iXijwJkcK8y8PM8n8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Services.BaseService.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Services.BaseService.html", - "hash": "Hfz8lASUiMirYKefXyVvHiTJS3022Cd7py8E56di/64=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Services.BaseServiceWithConstructor.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Services.BaseServiceWithConstructor.html", - "hash": "Z8JnnRFACKFJbO/b3w1/weOUKEoPxt8Id+/Q5GQsM5w=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Services.BaseSystem.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Services.BaseSystem.html", - "hash": "KqRtGvO1woezZbaY41nt5za/WkroXh3rQtS/FftH78g=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.html", - "hash": "NxWlIVoSgAptzXZoDU/AsR+XlKnSgZ0om/huilGqbac=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Services.BoundarySystem.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Services.BoundarySystem.html", - "hash": "kJTanqPXE8NHq+TuZJ4FsS09JwAedxk0hdeG6ytXem0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Services.CameraSystem.DefaultCameraRig.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Services.CameraSystem.DefaultCameraRig.html", - "hash": "pph//jAr/HL+RoBPmdSDEy2Nd85iPPQuLPkTmt5mxPk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Services.CameraSystem.MixedRealityCameraSystem.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Services.CameraSystem.MixedRealityCameraSystem.html", - "hash": "hch/w1l06xGGogFL1DEwJP2I4f2hn+c+zzaWNahhNSI=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Services.CameraSystem.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Services.CameraSystem.html", - "hash": "hhQYLP68Td89ER8r5XO11BkBcQbmwZHxvTV28pYqGAA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Services.DiagnosticsSystem.BaseMixedRealityDiagnosticsDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Services.DiagnosticsSystem.BaseMixedRealityDiagnosticsDataProvider.html", - "hash": "Ocqxv+/C8g+3qgrnSuYWiYnU5gv0qjNv4HQsCaAqlz4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Services.DiagnosticsSystem.DiagnosticsUtils.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Services.DiagnosticsSystem.DiagnosticsUtils.html", - "hash": "XCHfoLYtrZKQrWQWHvXYW8/s3AjCLvgNLJfsSvp8IKY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Services.DiagnosticsSystem.MixedRealityConsoleDiagnosticsDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Services.DiagnosticsSystem.MixedRealityConsoleDiagnosticsDataProvider.html", - "hash": "r+hGeARC7vmTIJ6hz4zPVd+Kb+9FcKxLLCJAn8xVimQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.html", - "hash": "2F7aA1wQPia2ScRTg/p0sEFK3mv/u1zj21qAAzkujCU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Services.DiagnosticsSystem.MixedRealityFrameDiagnosticsDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Services.DiagnosticsSystem.MixedRealityFrameDiagnosticsDataProvider.html", - "hash": "D0cW91NyXQHe9+NKXnL8o20qhnDyEjPPDMrAkpX0aM0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Services.DiagnosticsSystem.MixedRealityMemoryDiagnosticsDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Services.DiagnosticsSystem.MixedRealityMemoryDiagnosticsDataProvider.html", - "hash": "qkEWXr/U91M0bpCSCR0eM43VykYJ6tznCcpl9YJLjuQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Services.DiagnosticsSystem.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Services.DiagnosticsSystem.html", - "hash": "RdJCxDxf/p8oDBDmHEd6w2nJWzQXvhFBq/hYT1NcdKE=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Services.InputSystem.FocusProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Services.InputSystem.FocusProvider.html", - "hash": "jBVrV9nQm7Tv2cAqgVhNUOV16VAybueuBeULa0c3lKw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Services.InputSystem.GazeProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Services.InputSystem.GazeProvider.html", - "hash": "yRbIW9hZjcMH8DHDZHZrKgV7b07tGV5IKnC0KBN73l0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Services.InputSystem.MixedRealityInputSystem.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Services.InputSystem.MixedRealityInputSystem.html", - "hash": "WmmIzS8WJ0zGep3YG7HBJBgF0F8yJbwDMkqvR3cX7jo=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Services.InputSystem.Pointers.GenericPointer.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Services.InputSystem.Pointers.GenericPointer.html", - "hash": "6LXFQM07r6yBuGumZ316JULSAg33hwbwbghd2ffjZO0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Services.InputSystem.Pointers.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Services.InputSystem.Pointers.html", - "hash": "4mifnq4n1XeFv3CFNdu8gjRLe/yIEgu0hs1Lkp7Smuk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Services.InputSystem.Sources.BaseGenericInputSource.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Services.InputSystem.Sources.BaseGenericInputSource.html", - "hash": "2vFzVc4eDIzJDnXLe8jWSILFChEiPuxvkp2EoSj6Pfw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Services.InputSystem.Sources.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Services.InputSystem.Sources.html", - "hash": "Y7iKf/aHB8o80UB+EDS1YGCXCWdG6lUQuwR7LLVlw8c=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Services.InputSystem.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Services.InputSystem.html", - "hash": "bBgi23zeQ7ddn+0yFJeYJ6XTEJmQ2xE3kmz4ROlqNlY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Services.MixedRealityToolkit.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Services.MixedRealityToolkit.html", - "hash": "oBITIzGTJBNcHQ21qj/e7RDSkWkv7h4YAYUErPJ4G1Y=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.html", - "hash": "g73wCNRCfviVTFwux1+w1xnLOlPqVsgIXwhWP01QtUk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Services.NetworkingSystem.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Services.NetworkingSystem.html", - "hash": "6VHcqafZ5CCSBZl9bVXHKXMMKSe4bLDJiINS0ztNS88=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.html", - "hash": "p6bYmGuaIXskXHeT9lh9klNH/1SIWWr9j2fGTbZsb74=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Services.SpatialAwarenessSystem.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Services.SpatialAwarenessSystem.html", - "hash": "LoikjPHzfLi8EYlY5GYlPUDjz/bMd9aeVtSZWnY0bn8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Services.Teleportation.MixedRealityTeleportSystem.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Services.Teleportation.MixedRealityTeleportSystem.html", - "hash": "BfCHR5jxvMPWrDZFt2J9ihZoswqFd6s8jvs6+FGynYs=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Services.Teleportation.MixedRealityTeleportValidationDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Services.Teleportation.MixedRealityTeleportValidationDataProvider.html", - "hash": "qj8XXrsDaGYw7XiSMwtOs2mD+VxI6nGkBW5Rucv0Cek=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Services.Teleportation.TeleportValidationResult.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Services.Teleportation.TeleportValidationResult.html", - "hash": "XbgKvlLuy0Slz8a9CeVSnRSIpXOBWni0yqIvh6XZPKA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Services.Teleportation.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Services.Teleportation.html", - "hash": "fWrEiYxCzsFmeFWoK2ijvYl1LilqPl3E+TJqB3TsJRE=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Services.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Services.html", - "hash": "c8p/svHlTwsHg8IjFno774KnMlsr0g1VjsJ2Pjvpo00=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html", - "hash": "XLLhbN6Mx5+8DxcoaQ1LF6ZADoLuY5VTyNA8ELOuSGM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Tests.Core.TestFixture_02_MixedRealityToolkitUtilityTests.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Tests.Core.TestFixture_02_MixedRealityToolkitUtilityTests.html", - "hash": "oVxiC7gTVNIqpVIcC2MOGTcs5tj7BvuoMghyOC0Aong=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Tests.Core.TestFixture_03_ExtensionsTests.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Tests.Core.TestFixture_03_ExtensionsTests.html", - "hash": "xG/mSTicw9C4solSFrW7dZgFvP5+W8Q0uJJ/yzNz0xU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Tests.Core.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Tests.Core.html", - "hash": "IPey9v7ekHicSHGWLGCmQjVrO8/FGHTfm+mXt/h9W+M=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Tests.Extensions.EnumExtensionTests.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Tests.Extensions.EnumExtensionTests.html", - "hash": "1U4gnppuBS69Oq0KX/kcMZNMdapSjNScjw+QrriAQ/o=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Tests.Extensions.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Tests.Extensions.html", - "hash": "4aRVtk2DSEM/0WL8hEIjBqp0a8icTnpPgfYxsMZCMas=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Tests.InputSystem.InputSystemTestUtilities.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Tests.InputSystem.InputSystemTestUtilities.html", - "hash": "MxSSQvz7+CkYHy+ogh8LYNU+L9Hozudpiz1x/BbnI2k=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Tests.InputSystem.TestFixture_01_UnityInputManagerHelperTests.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Tests.InputSystem.TestFixture_01_UnityInputManagerHelperTests.html", - "hash": "5xkwnWXHZuwZC4OQ3MkktZmZT4LTzIIE37p2it3Q3WM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html", - "hash": "x0SCfqA5zq896GBywmyA/TJ82ldWyJ3uRSx+cHEcHeY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Tests.InputSystem.TestFixture_03_InputSystemTests.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Tests.InputSystem.TestFixture_03_InputSystemTests.html", - "hash": "qxD/rbBBl8Kj+ZgQZvik3EjaIwNMgQieHJcoTPQbHso=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Tests.InputSystem.TestFixture_04_InputActionTests.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Tests.InputSystem.TestFixture_04_InputActionTests.html", - "hash": "qAQvVOIBR0O0QBdZDq4zthv5gtGaJdC8wemvvKlyj9Q=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Tests.InputSystem.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Tests.InputSystem.html", - "hash": "J6Bgky7e6ghDe1B0/oUWyYvu3G6yHDOCUX3YINN+3OI=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Tests.TestUtilities.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Tests.TestUtilities.html", - "hash": "ZZ3pfpilLLWdWOPljC2iX/OQuSpw4tcNNARhSqok3x8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Tests.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Tests.html", - "hash": "hudB8yWHAO5LTuAUAzeBHJs3bNWnP0VupSTWfYmkxJs=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Ultraleap.Definitions.UltraleapDeviceOffsetMode.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Ultraleap.Definitions.UltraleapDeviceOffsetMode.html", - "hash": "KeRAOQXK0ADHDpWLqMHcWQ/CAodnUlXvaLZtPRA98OQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Ultraleap.Definitions.UltraleapFrameOptimizationMode.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Ultraleap.Definitions.UltraleapFrameOptimizationMode.html", - "hash": "EcrR9R7Zyzd4s27rhXn9v2RYlVAd9Zl6y9/aMzmstPA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Ultraleap.Definitions.UltraleapOperationMode.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Ultraleap.Definitions.UltraleapOperationMode.html", - "hash": "/Zqvl/f0yxJIFavCXnZEA0ePVep9GPMgP/0guDRJDsc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Ultraleap.Definitions.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Ultraleap.Definitions.html", - "hash": "8BqyLTfrI8mBghpwGSoeX1M1kfIThvFadDogR4EICkA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Ultraleap.Editor.Inspectors.UltraleapHandControllerDataProviderProfileInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Ultraleap.Editor.Inspectors.UltraleapHandControllerDataProviderProfileInspector.html", - "hash": "xyaAca3vk6EaCcJqi5pJ1P2v/p5xkL1DsCKqRZL586w=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Ultraleap.Editor.Inspectors.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Ultraleap.Editor.Inspectors.html", - "hash": "2OTVvOZsE3Q72YXiZwdVPnymY7Maigdj3F1swnaVEH8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Ultraleap.Editor.UltraleapPathFinder.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Ultraleap.Editor.UltraleapPathFinder.html", - "hash": "Wj7OlyGHm+dM0a8Iy885EqlFgO76gYboG+T6fHl9CrA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Ultraleap.Editor.UltraleapPluginUtility.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Ultraleap.Editor.UltraleapPluginUtility.html", - "hash": "8g3umjLEKh2InP4nyfDuFKyOZWU5Er2TlwW0hNoh3rg=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Ultraleap.Editor.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Ultraleap.Editor.html", - "hash": "dTiN6PNqJ9X4o61kzf0JMw1zqnWPDGxO7tnWP08Gt80=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Ultraleap.Extensions.QuaternionExtensions.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Ultraleap.Extensions.QuaternionExtensions.html", - "hash": "q7SyaLcAGswqtokZO/bcoNksJTFrG2QmjAxtQIAhUKM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Ultraleap.Extensions.TransformExtensions.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Ultraleap.Extensions.TransformExtensions.html", - "hash": "r7pObR0kyBjYcodaPxCtkRGX42+/pe7RX9jdVs8uW8w=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Ultraleap.Extensions.VectorExtensions.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Ultraleap.Extensions.VectorExtensions.html", - "hash": "dR6tXnKL7h1IoAWn7nD74YXLiRFHCTZ3RcJpJil7GME=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Ultraleap.Extensions.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Ultraleap.Extensions.html", - "hash": "G0siLdIw51xTwifBt4Bwx2bg65yR2Y6A9KvkEH7RDvg=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.html", - "hash": "SmyfQaY9MMUq+J858PsFaQC7hd9v8ljPimH5YpV/ueU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Ultraleap.Profiles.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Ultraleap.Profiles.html", - "hash": "yHWnCXTNLetNIr8GtxY73PpPxwDbIcEe7gxnhSBkjnQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.html", - "hash": "Zdm7Wlz2Vw2nQTysIhIThe5jqSnxRtC4tbqv8eYl5nw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Ultraleap.Providers.Controllers.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Ultraleap.Providers.Controllers.html", - "hash": "Q7UUOZCAzagb+pq2631eFj+dqBg8Qw2W+O+8whQZnWY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Ultraleap.Tests.ExampleTestScript.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Ultraleap.Tests.ExampleTestScript.html", - "hash": "oHyqydGcYRTZVXTjyH7QcQco4fFpOVYNF+89jh0jkGQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Ultraleap.Tests.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Ultraleap.Tests.html", - "hash": "gosDLs2ntBHM0I/CZXbmsyhQPluAY5UvmsGO9mVURjg=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Async.AwaitYieldInstructions.BackgroundThread.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Async.AwaitYieldInstructions.BackgroundThread.html", - "hash": "w3FjqeqwmeFmE3KwEMwDrNrxD9aYLCW1FUrx1nhzJM4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Async.AwaitYieldInstructions.UnityMainThread.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Async.AwaitYieldInstructions.UnityMainThread.html", - "hash": "iX7goHCXczwgm/H6mVZDCoxZW1ExhPguQm6Dinafyyw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Async.AwaitYieldInstructions.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Async.AwaitYieldInstructions.html", - "hash": "A0ajieS963jpqh7wSjn674ZM8ZFkw+TEKlnnQmLeVVQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter-1.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter-1.html", - "hash": "GXwqXUU+PEYT41JKlgxX81ChXrzbsyJsTEcNJhFdvqY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter.html", - "hash": "Tm7l0xQ7a4lris9OtpKhk+NAXINsJmKhQ/mEH+gNXcQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Async.AwaiterExtensions.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Async.AwaiterExtensions.html", - "hash": "rhIwHcL9p49rSyan4kfoozmescOloCa3Lqw163YutpM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Async.Awaiters.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Async.Awaiters.html", - "hash": "27Omf/euR2vSV0LjKI/JuSp2NhV/p+cmYkxfCv4ksWE=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Async.Internal.SyncContextUtility.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Async.Internal.SyncContextUtility.html", - "hash": "IxrotqWq0v5GkcPq8W5Q/g8fgEWzlIMSSTN0mhJdduM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Async.Internal.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Async.Internal.html", - "hash": "gWcuvRG8MSc+zKE++JmSQgbgw02y3o+vsXi55LMMk+s=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Async.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Async.html", - "hash": "rzLbTbzHFbBzRXR6VmGuHbLG78Yh8LJl+zYFGXsOuVg=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.BoundsCache.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.BoundsCache.html", - "hash": "QqrOKezzBzQsIIk2uXRopfBSSPartMGRGL0jEdP2E0w=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.CalibrationSpace.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.CalibrationSpace.html", - "hash": "MgAFriT+igBNUPIOcVg1RZwkAC4Ob6NlJoCVwrKtMnU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.CameraCache.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.CameraCache.html", - "hash": "rN5TlQQrQ6oaI2H8VHQRWaZMtBe4KqIyCVd6DvakwNU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.CanvasUtility.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.CanvasUtility.html", - "hash": "UJNqhoFDvnvv/KGfsxVbe1uL77VPk0CBlqvdALZQ+f0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.DebugUtilities.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.DebugUtilities.html", - "hash": "6Iz5nzpKSPUcaMjCyhhEvbRjrt02ldrTrHyb8kx1tQs=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.EdgeUtilities.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.EdgeUtilities.html", - "hash": "hv6ooFVt35ld+BdhYUqGc2xJ2s6QDlF+uCWvB8/YMM0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.FastSimplexNoise.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.FastSimplexNoise.html", - "hash": "6r3AUpF/JFd+7A/IRzr/CWRkvgWZGhTlxkahm23UU3Y=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.GltfAsset.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.GltfAsset.html", - "hash": "1rFbLNv8sZiqpkDdzE9XkLOPI3bhdlOzGFkwwdB7u2o=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Schema.Extensions.GltfExtension.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Schema.Extensions.GltfExtension.html", - "hash": "VN67MM9EhTG5Uvv5QRGXzF8nTfXqDLNrFE6ISM4MA3s=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Schema.Extensions.KHR_Materials_PbrSpecularGlossiness.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Schema.Extensions.KHR_Materials_PbrSpecularGlossiness.html", - "hash": "v08LnvO5wsOfXU5acRy8vVGTap0J/d8BAs4SLWytyIQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Schema.Extensions.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Schema.Extensions.html", - "hash": "oaoumSdZOFi66ZKX5qp84evAqXFozVRyUrRdSJIoekA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Schema.GltfAccessor.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Schema.GltfAccessor.html", - "hash": "CMXd3EZYiUwKzORyur4bsHm0QoNxf3ATWlZw8kptSWA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Schema.GltfAccessorAttributeType.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Schema.GltfAccessorAttributeType.html", - "hash": "cKKYmuQgbmUAN3b1VxLap1RDD7LzwMSQIeci/PFO3xw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Schema.GltfAccessorSparse.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Schema.GltfAccessorSparse.html", - "hash": "jP6+qJxeLwcZ1juZMWoAr/vUFlywH3KlOJ1wYn8ok0g=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Schema.GltfAccessorSparseIndices.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Schema.GltfAccessorSparseIndices.html", - "hash": "jk+cjF2apvLsgZ4sTCIuCBTWEMhwHOMCQmEPMw8lMjU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Schema.GltfAccessorSparseValues.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Schema.GltfAccessorSparseValues.html", - "hash": "Egn1zbckdbMqbZdicFQ6HTmyDCHNFO5BJMrOe4JtQXU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Schema.GltfAlphaMode.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Schema.GltfAlphaMode.html", - "hash": "PU/1pVpH8KJTy0qCi3lML7Urj8/VQPQKGF15j+hQXFk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Schema.GltfAnimation.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Schema.GltfAnimation.html", - "hash": "ma+l5XzcCjYxnS8nlZOiLqS0VzPh8z+R/OJFyV1b5uw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Schema.GltfAnimationChannel.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Schema.GltfAnimationChannel.html", - "hash": "gyBRc0jLvlb8HiDriPJxKEuKjM34qIKnXUBnWJt1Zes=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Schema.GltfAnimationChannelPath.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Schema.GltfAnimationChannelPath.html", - "hash": "a/7mWycl86JIfO+kQnAgsMNMZritJwto66l19Eq4ZVc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Schema.GltfAnimationChannelTarget.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Schema.GltfAnimationChannelTarget.html", - "hash": "TqmauD8OD2ceGk456ZG0UGAHS4XjAbOsfdL0EpUJB24=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Schema.GltfAnimationSampler.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Schema.GltfAnimationSampler.html", - "hash": "3OrnMJ+nuiqum8hUTSK++d837dhQWmiBpTSMdaegPGo=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Schema.GltfAssetInfo.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Schema.GltfAssetInfo.html", - "hash": "p9WGjqXsafyzKZ/9pE+PY+E3AA7+SZxFgIfyWHkY7VQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Schema.GltfBuffer.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Schema.GltfBuffer.html", - "hash": "ofFCWI8Lsgjtv+ZSUAYdn0iczkFCqkpn62Xvmn8JUv8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Schema.GltfBufferView.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Schema.GltfBufferView.html", - "hash": "LW4vEKN+t9m8h5dKQpauf41ttKlo55C9Z3VBu2Gz2XM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Schema.GltfBufferViewTarget.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Schema.GltfBufferViewTarget.html", - "hash": "7ossXDWlNeBQuNA7MvfiqEuRc3pzJ5uY4SGYpOxjbYo=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Schema.GltfCamera.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Schema.GltfCamera.html", - "hash": "m7KZDYsWIIHIPy5kq5GRZcX4PjLDrWJh6mVV7V/KiG4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Schema.GltfCameraOrthographic.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Schema.GltfCameraOrthographic.html", - "hash": "rHml1SHOQH+1rdnNd4O5gBYc4S5jguR+l/uBSNsALao=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Schema.GltfCameraPerspective.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Schema.GltfCameraPerspective.html", - "hash": "da84RTyEEukyrIeLLdvQvVcuIb3gvF08CmvkPPsa+Bk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Schema.GltfCameraType.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Schema.GltfCameraType.html", - "hash": "+g09IHXuwJzmflBYidEC6vmf2oq7ls4SIe632a2crSY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Schema.GltfChildOfRootProperty.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Schema.GltfChildOfRootProperty.html", - "hash": "IrqB47Usb72GbWz/Am2io6fUoboL5yJ5pqT9k9CB4Z4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Schema.GltfComponentType.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Schema.GltfComponentType.html", - "hash": "tS3ILS3lZGUDYP9/51M1lgkOzS125+YgZPcegzf6/B4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Schema.GltfDrawMode.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Schema.GltfDrawMode.html", - "hash": "sv9qNwqHBse4M9v6dB9j9ZzYdKWgTp5F/DYKnGEmvZI=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Schema.GltfImage.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Schema.GltfImage.html", - "hash": "JnhJ64AcpxyPhXaB6kb9sp7+3zqvQSaNoiL/KOekcH4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Schema.GltfInterpolationType.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Schema.GltfInterpolationType.html", - "hash": "otGKis7gMW/LZL2d7N1afAdy+IUslXVDVAuFF3RIMxs=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Schema.GltfMagnificationFilterMode.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Schema.GltfMagnificationFilterMode.html", - "hash": "sIC6xFYat+PG770hw/iVJR53jIBHg5TcDdbO2tWbAyw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Schema.GltfMaterial.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Schema.GltfMaterial.html", - "hash": "WC6KvTRvs7RqcA7Xp7nd4LHt+W7lI3I4VPwmbqN0D3Y=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Schema.GltfMaterialCommonConstant.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Schema.GltfMaterialCommonConstant.html", - "hash": "TUmJCukLm5PW2fPs+Gve+f6OGjVAsLDe19tqOxc6kO0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Schema.GltfMesh.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Schema.GltfMesh.html", - "hash": "8JKKaNYjhiZl6ZbEooT3xV1G36vJIh77w20d3ouBxb8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Schema.GltfMeshPrimitive.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Schema.GltfMeshPrimitive.html", - "hash": "5iC1QNa/fbNcy+wRASsfsBzKAho7+pUvpWIhau2f3Oo=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Schema.GltfMeshPrimitiveAttributes.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Schema.GltfMeshPrimitiveAttributes.html", - "hash": "n2cctFRGQeLUakPN8JD5C1No0R6UkvQVKLHOB4N7arM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Schema.GltfMinFilterMode.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Schema.GltfMinFilterMode.html", - "hash": "MYEuFJo88072a925eT6DKHgrkfRFVFmXsN+ag4UT17k=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Schema.GltfNode.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Schema.GltfNode.html", - "hash": "HHcMCZQxCi8xm7+UTSmT6xKCEP/YJD6d3lX8aLbtxh8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Schema.GltfNormalTextureInfo.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Schema.GltfNormalTextureInfo.html", - "hash": "YfGxI5Z8aJ9iutG1xtITlj4hSrceiRPbbpAsX67rDVg=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Schema.GltfObject.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Schema.GltfObject.html", - "hash": "+xnStnurHPcd+BiIzwglHqRmHRAodnhduPZmZGOILfM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Schema.GltfOcclusionTextureInfo.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Schema.GltfOcclusionTextureInfo.html", - "hash": "8bq0ZoxxQe7Jc4Ag2QNBmS58E4l8Pcj1WEhf8IbEnWo=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Schema.GltfPbrMetallicRoughness.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Schema.GltfPbrMetallicRoughness.html", - "hash": "zLLENchUogAqdAytetMFmsIbNQQ8uv5ynJMIv0me8H0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Schema.GltfProperty.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Schema.GltfProperty.html", - "hash": "4Suovp6Z8DbMoOHPyKdAf/LYxtJZhq3XuqrrMjxiSck=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Schema.GltfSampler.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Schema.GltfSampler.html", - "hash": "GWIszTffFHRtuL+5Msf4um5c17k1yDfJeDeQXrE+zPo=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Schema.GltfScene.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Schema.GltfScene.html", - "hash": "df33Y17OTshknZGPmjqrcYwcz6WuPQLGCjRss3IJVAA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Schema.GltfSkin.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Schema.GltfSkin.html", - "hash": "Mcdb8e+Mc+tSKQJnbR6otRZ9ntq8HT9OHLrF7DEpCec=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Schema.GltfTexture.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Schema.GltfTexture.html", - "hash": "pvAc3DBRv+p7z6A9ObeCEym9Wf7lgriWZueMC5e/9j4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Schema.GltfTextureInfo.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Schema.GltfTextureInfo.html", - "hash": "ETVabtFiK3InhE3wNRiE1fArrP4y8GFW1/XpXGPxnSY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Schema.GltfWrapMode.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Schema.GltfWrapMode.html", - "hash": "XswN8kDlU3CfGzoi5YekBnxQ4LSB5/2j6jwlkDnxptw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Schema.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Schema.html", - "hash": "6U7FlRDOSl1icMTu8viy8E0Ud/tXjNVzoewt7hNNLLQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Serialization.ColliderType.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Serialization.ColliderType.html", - "hash": "ojcCDC9Tt9ohkpBp47a0Fj8dUVyy7sfHrMGDTXIW9B4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Serialization.ConstructGltf.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Serialization.ConstructGltf.html", - "hash": "TC+KwAx6zojh28W6Q0phGM3kfFL+Rv92fFgLDkhiH8g=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Serialization.ExportGltf.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Serialization.ExportGltf.html", - "hash": "uE1+P+4s73afxSPekrZ6rp83RnTfScE5l3CZW0UTjVU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Serialization.GltfChunkType.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Serialization.GltfChunkType.html", - "hash": "THPeuxpgol7WgM1CkmpLBOZec+fxYsadJjQSOzcFOyY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Serialization.GltfUtility.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Serialization.GltfUtility.html", - "hash": "7lhSXAziG/jSlvdi1Dp8VCd7qgy0/njmrbt8711k8t8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Serialization.Importers.GlbAssetImporter.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Serialization.Importers.GlbAssetImporter.html", - "hash": "CnFsFWWKicR9+dA16hKGy5R7s5cOVqGMb5n5dgrBMts=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Serialization.Importers.GltfAssetImporter.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Serialization.Importers.GltfAssetImporter.html", - "hash": "jjNMxsn7yz28p1+6XabrjGG58meJb8g/RqEKNPDy9c4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Serialization.Importers.GltfEditorImporter.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Serialization.Importers.GltfEditorImporter.html", - "hash": "xyAHaFSq9Drgp1Ys+U68XhMR/uPuQiRvXZuCs6JXHKE=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Serialization.Importers.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Serialization.Importers.html", - "hash": "o1+qIUtuKto27yr59Wy/gJkBXBnIjGovxmTz4AJ8iX8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.Serialization.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.Serialization.html", - "hash": "ITcxh95RmI9/xat+tYk78sT7YUEpGheejGZHE66SInA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Gltf.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Gltf.html", - "hash": "jyDu1TmiM9EPAwIrka1Ltn2Ukrma7JtyYGUIx4ccp9E=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.HandUtilities.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.HandUtilities.html", - "hash": "dX6PaQRFGLmSNIOeBFsFQhKZ5buGSApJWjI3b3Ifff4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.HoverLight.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.HoverLight.html", - "hash": "SBWIYFBdDe95nESIvQz+q5dlYRC3idHe57Gjftnmqsw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Lines.BezierLineDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Lines.BezierLineDataProvider.html", - "hash": "Yw1C57iqtqxJwYHFivqrzQeih+7lophJ4IMdQlr1pT8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html", - "hash": "3wNMEQZwTLWCj3TJhxDBJLbbIabVjiR28HuUEVFRnGA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.html", - "hash": "iUgWt9h82QA6TPdK3pt6uyM9ltV/9J8Lmfb0qECsXOQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.html", - "hash": "adDkxuAj1q3t9aQU1S07dKbhyD7ejMgWOZSSe+Ny8co=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Lines.DataProviders.ParabolaLineDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Lines.DataProviders.ParabolaLineDataProvider.html", - "hash": "HliRM/r0RtJJGjhf3oTVYskdYUEXhf7vFptvgROKQqI=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.html", - "hash": "JxWkHqprVpBNISrT9KXv6mPLBJVoMdAncOW8w2n1X6c=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.html", - "hash": "MFZw6wRpLr1P/MjjAyiAWsFNyMNX2eahyVBHQ0v0Hqo=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.html", - "hash": "OWwFCBJWODOQMpl50P/Kr3n2h4QasSK0mCF91FTPzdM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Lines.DataProviders.SplineDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Lines.DataProviders.SplineDataProvider.html", - "hash": "aZNr2+T/rvD1BTkqaYrNmZFgWIazJI1PuSaxugiNGvA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Lines.DataProviders.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Lines.DataProviders.html", - "hash": "IGyBma1/IJhqgTTZngRTjvZFmcZAE0UNNAUYn4+dPmg=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Lines.LineFollower.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Lines.LineFollower.html", - "hash": "inlbdeZ+Z81YwCALafcQlzy7c0dcMRlbz40QcavqoLU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Lines.LineUtility.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Lines.LineUtility.html", - "hash": "MPr8IIzQzqC5aod9tN10ISw9VKwfRdsyOJW/1Yw8rEI=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.html", - "hash": "Xnr3dqAC2aH8evJ/WZ48EHVx8gqsu3BGyY/bIEb+Kts=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Lines.Renderers.MeshLineRenderer.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Lines.Renderers.MeshLineRenderer.html", - "hash": "kP/3yYcvvLq7ABslRncRX9XE9gif2y4Z6R29Ex9SSgQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Lines.Renderers.MixedRealityLineRenderer.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Lines.Renderers.MixedRealityLineRenderer.html", - "hash": "zbOuRlN2GQzZprCb3TEyk8XArwJxgXUgZkxAPIbcs0I=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.html", - "hash": "84Bkp48MLihJ2ac+nnOmpZB0w7olBcBus3bpo3xqBB4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Lines.Renderers.StripMeshLineRenderer.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Lines.Renderers.StripMeshLineRenderer.html", - "hash": "oRP2+Mq3FkGmVoa5URWPZ6VrkdhqL5o1vMaYIn6ucqo=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Lines.Renderers.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Lines.Renderers.html", - "hash": "/aiDkhIY/NX5sdIcxgO0p7C8g2Wz7ooeCt+Sf0EMKQA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Lines.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Lines.html", - "hash": "3nVmMkjtOHepirMeN2rMLWvAUStY28D4cnZmRQ1hQt8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.MathUtilities.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.MathUtilities.html", - "hash": "kaGAMAW3Ii/cNEm03MSp+nF2/gq5Tb2KSXDxEpWkYcs=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Physics.BaseRayStabilizer.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Physics.BaseRayStabilizer.html", - "hash": "UvbYX4jmPQZHRteylE22BJyU3aLrL4pJyHPhBv3kKkY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Physics.Distorters.Distorter.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Physics.Distorters.Distorter.html", - "hash": "OFovQV1L+aMYrbbcTyK2SePspOkkkQ/r3KWm91GC24w=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Physics.Distorters.DistorterBulge.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Physics.Distorters.DistorterBulge.html", - "hash": "ZGRw2s71b2lTG3Mm3uKwRMgvkfBfcBUa0talgnswICE=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Physics.Distorters.DistorterGravity.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Physics.Distorters.DistorterGravity.html", - "hash": "kvmNF1UbUvQmVKJl9sKN1snY58yh/WK89hKS83bsu8M=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Physics.Distorters.DistorterSimplex.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Physics.Distorters.DistorterSimplex.html", - "hash": "O+2rEuzeM0fz1FGGeFtJhiRANWiizON1UbFrBTa6fIs=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Physics.Distorters.DistorterSphere.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Physics.Distorters.DistorterSphere.html", - "hash": "JA+dTWhXUVXB70IGpJPX+iZD3FmLjSqU5sGg+naBEPs=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Physics.Distorters.DistorterWiggly.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Physics.Distorters.DistorterWiggly.html", - "hash": "Owvxc92EQjwCGHwLDQ3TGGrngDxCoW17yOF9gv5tDvc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Physics.Distorters.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Physics.Distorters.html", - "hash": "LNFOS+8+Vsh6rXkov3bm7+JPh4iUeCFlJ9xs4of4idk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Physics.GenericStabilizer.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Physics.GenericStabilizer.html", - "hash": "y2+ud+FQnupFCiQf93hgk82ajgU0WwZLgTvfX5FxxKQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Physics.InterpolationUtilities.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Physics.InterpolationUtilities.html", - "hash": "z2pnh/x+b/Ci2WhjbkQqlvAXR7CnTF4tTmi9mLDUFNM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Physics.Interpolator.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Physics.Interpolator.html", - "hash": "VjP36ctKdXA989GraRD5NXLHGeVkZzHeTAzxtAKlY5c=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Physics.MixedRealityRaycaster.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Physics.MixedRealityRaycaster.html", - "hash": "W9tiX8nS89BWU7iGhNZ2aqChlvv/3ovbnZ1MSlW6z68=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Physics.RaycastResultComparer.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Physics.RaycastResultComparer.html", - "hash": "xBd7VK7PQJB2r+ap5sc7/XgXI9Zr9RapU24byHmaVig=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Physics.TwoHandMoveLogic.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Physics.TwoHandMoveLogic.html", - "hash": "kJeUsiS9XeJF0qlDhr5gJznx/auZogx3zRoWPU6gXzU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Physics.TwoHandRotateLogic.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Physics.TwoHandRotateLogic.html", - "hash": "M5hiQ+hsb+YCPRH3Z2vbRkvpYsf/5Dl36aFYicCwnTs=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Physics.TwoHandScaleLogic.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Physics.TwoHandScaleLogic.html", - "hash": "1JjQIm74wz3IJ7DCqkXIvcTBdsQ+bd0mXouIXteYe10=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Physics.VectorRollingStatistics.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Physics.VectorRollingStatistics.html", - "hash": "mxGzsIwf8tLkQgW3DKSmalGV1zVJRN8BZQ3enJxqQcc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Physics.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Physics.html", - "hash": "AHWIHuBgYS8Gf0Gy4jUTj6/1qsXkS88ZMJzeKOi0VvU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.ProximityLight.LightSettings.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.ProximityLight.LightSettings.html", - "hash": "x2da7758INA/WMbq+EKTjuL+zk41MpY41kgNuDvtvBo=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.ProximityLight.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.ProximityLight.html", - "hash": "Ogr4E7+7TGZykPakNXTLo+QWtHIEpOSCgrbb7v9wlSg=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.RenderPipelineUtilities.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.RenderPipelineUtilities.html", - "hash": "NJJ+9h21cpRk+jorTWK2G8tA52O7LKPqPyjUb8+Wjh0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Rendering.ClippingBox.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Rendering.ClippingBox.html", - "hash": "IaoW2Fnlz+1JnSu2pXt1HfVjMz3JF45ITpsv+1kGXuY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Rendering.ClippingPlane.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Rendering.ClippingPlane.html", - "hash": "LflGH1BoqovVMn2UygakIWDfQGsQgA9xzNVwKHjIiJc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Rendering.ClippingPrimitive.Side.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Rendering.ClippingPrimitive.Side.html", - "hash": "eYVtxUqSBbiTvLs3kPeeFjaU6i8r9LF5eNxcL7LzyQ8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Rendering.ClippingPrimitive.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Rendering.ClippingPrimitive.html", - "hash": "rWB4/o3ZNivCxdnLPiUmOJUCwtbqRE7uo7r9tMBWyo0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Rendering.ClippingSphere.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Rendering.ClippingSphere.html", - "hash": "dn1F15Ct1O2TAoMWb4Bt0wAp2lq1KcmqxOADQPhE5GQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.Rendering.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.Rendering.html", - "hash": "SbpjiVgbn7AFPzIbawHha1sJp6OikCgiSZQLr3nHn7Y=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.StopWatch.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.StopWatch.html", - "hash": "cG/5skCHAQOafllSswb9/g4AFiGssYudvJm1AgTXSsQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.ValidateConfiguration.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.ValidateConfiguration.html", - "hash": "UPiGiIZxeDoALhvxTcYnh5lRD5osI4FUtR/9pDIGOO8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.WebRequestRest.Response.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.WebRequestRest.Response.html", - "hash": "bMrDndQaK6bJ8RrZqvc6JtYTER9NsvrbAzyTLfzHUYs=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.WebRequestRest.Rest.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.WebRequestRest.Rest.html", - "hash": "1khCZqncssWql2tu1k7gnk2Eryhj/HY1u9kdJMKtTqA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.WebRequestRest.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.WebRequestRest.html", - "hash": "fMEZlM5LniB5CfDRLTFg3HQrlZOqqgJHz/hi8qi2V5E=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.WindowsDevicePortal.DataStructures.ActivePowerSchemeInfo.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.WindowsDevicePortal.DataStructures.ActivePowerSchemeInfo.html", - "hash": "hxP3IuTfOr/+kdf2/0prxIGoHEgYmt9Qm8u7wbz5QqM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.WindowsDevicePortal.DataStructures.AdapterInfo.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.WindowsDevicePortal.DataStructures.AdapterInfo.html", - "hash": "TbsTVztwoUc/mWqjjK+Nb6P0lviYVhzlGG1Mr3OdsHQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.WindowsDevicePortal.DataStructures.ApplicationInfo.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.WindowsDevicePortal.DataStructures.ApplicationInfo.html", - "hash": "COlbcAhmMJtl825xstXLX/XBMkKQk2Da5F/od9fjCFM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.WindowsDevicePortal.DataStructures.AvailableWiFiNetworks.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.WindowsDevicePortal.DataStructures.AvailableWiFiNetworks.html", - "hash": "8zwx/tq7Qe1HfvdntNaCYpp04HcnGHfILgs+cBPuDVs=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo.html", - "hash": "jc48t87af5hLiB4KVIJNW9IqJf74u9OeedJIbyc7TxY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.WindowsDevicePortal.DataStructures.DHCPInfo.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.WindowsDevicePortal.DataStructures.DHCPInfo.html", - "hash": "3N8W/uHQIaWGg+E0chunZEeL7qeg77rzu7JX88SbUsY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.html", - "hash": "8SJUz+VxWQUux1rbPl5o1DLAAVAcdGztq3B4rR75Zx8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceOsInfo.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceOsInfo.html", - "hash": "91bbb5NJjseH/MBA9GJ7je5n5qmLCdCwMlHl1fOR1d4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.WindowsDevicePortal.DataStructures.DevicePortalConnections.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.WindowsDevicePortal.DataStructures.DevicePortalConnections.html", - "hash": "r0CBel7SMM4xZdmSq4QTmoCsgJbEChgQaqnalUs+DGo=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.WindowsDevicePortal.DataStructures.FileInfo.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.WindowsDevicePortal.DataStructures.FileInfo.html", - "hash": "xljLAnUnp8qkSKhAuzbShdCdwaODi2OyDn/9TfJ8oyg=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.WindowsDevicePortal.DataStructures.FileList.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.WindowsDevicePortal.DataStructures.FileList.html", - "hash": "Jx+4Id4bo2qUOuUEnI2HwAd+nxf4XPtPodGWNcDjlWw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.WindowsDevicePortal.DataStructures.InstallStatus.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.WindowsDevicePortal.DataStructures.InstallStatus.html", - "hash": "IUjBbsXZoiMBDoQd7x7NzBdYRr+Esr2o//vq9EVCqHc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.WindowsDevicePortal.DataStructures.InstalledApps.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.WindowsDevicePortal.DataStructures.InstalledApps.html", - "hash": "nHJUrQfgw2Aq4jlUEC9i3tciX6atfQkGlIzCsyklDYs=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.WindowsDevicePortal.DataStructures.InterfaceInfo.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.WindowsDevicePortal.DataStructures.InterfaceInfo.html", - "hash": "wQevCpiHquPcVaqvceIPu+c734H3mixUPX7qIHJJWBw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.WindowsDevicePortal.DataStructures.IpAddressInfo.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.WindowsDevicePortal.DataStructures.IpAddressInfo.html", - "hash": "lX55A4yf1RUwG/FoPlxzTh6lWF3iLa3B0l2CfuDZEPk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.WindowsDevicePortal.DataStructures.IpConfigInfo.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.WindowsDevicePortal.DataStructures.IpConfigInfo.html", - "hash": "kojgLRjg08s+DSA+EsMbiRP7VsP6MhmiEg6s3N5fCgY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.WindowsDevicePortal.DataStructures.MachineName.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.WindowsDevicePortal.DataStructures.MachineName.html", - "hash": "8ypnxUdaI4PY2s0VFYdUB/jIo0EaJOJGpsv9ox1yzGE=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.WindowsDevicePortal.DataStructures.NetworkInterfaces.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.WindowsDevicePortal.DataStructures.NetworkInterfaces.html", - "hash": "OtdznAlkI7YSp3asGwgViOSFcH7Md6qxz0xVsZcBbPk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.WindowsDevicePortal.DataStructures.NetworkProfileInfo.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.WindowsDevicePortal.DataStructures.NetworkProfileInfo.html", - "hash": "tK/tfqkczW6Hru0ODb+vz3SDfLWcFohOFLxja/WrB9M=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.WindowsDevicePortal.DataStructures.PowerStateInfo.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.WindowsDevicePortal.DataStructures.PowerStateInfo.html", - "hash": "+Srz0eUWBlnlfOqLTsYOYGctqJjQPRII1PdD27cary0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessInfo.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessInfo.html", - "hash": "zKjQXFWCww7gVvG7jh30FRr9XQ1D3tG8LAryobPI/Yc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessList.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessList.html", - "hash": "/utwUhZ8f4UD6eCSSC49Z+g+FNrHTASRIJCj9Ywb5YY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.html", - "hash": "2+1lTQWXj210me/gi+3PNfgjvfexbWt9ebSpUnf8dwU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.WindowsDevicePortal.DataStructures.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.WindowsDevicePortal.DataStructures.html", - "hash": "t6T4cMZOF+1+rsXfMljTiA2EnxhAR9cfLYEJH7a2SI8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.WindowsDevicePortal.DevicePortal.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.WindowsDevicePortal.DevicePortal.html", - "hash": "O3BQdmWo0WLbwShBwLSd0C/ICZs70eEbOn1tBPRQdNc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.WindowsDevicePortal.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.WindowsDevicePortal.html", - "hash": "98ShwdLEkmKL5oZdhjOrQGI0y6aom3WWeTR5UhW+JMg=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.XRDeviceUtilities.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.XRDeviceUtilities.html", - "hash": "OzKMIKsV4eukNKgP7wLoNOgGCq5a7dm/vStWY3nW9M8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.Utilities.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.Utilities.html", - "hash": "XpySmu31S5cT7RLzjazm8GWemgL49aPgwmrHf5udZoo=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.WindowsMixedReality.Definitions.WindowsGestureSettings.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.WindowsMixedReality.Definitions.WindowsGestureSettings.html", - "hash": "/sYyLkwXzeBm6BffKgLYkWQBF6MuT5Z0wD80oxX52mQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.WindowsMixedReality.Definitions.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.WindowsMixedReality.Definitions.html", - "hash": "6udIwKQ0CZhJ4TDzYliJ5f4vIt64Mbi4O/84PtyPVK0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.WindowsMixedReality.Editor.Profiles.WindowsMixedRealityControllerDataProviderProfileInspector.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.WindowsMixedReality.Editor.Profiles.WindowsMixedRealityControllerDataProviderProfileInspector.html", - "hash": "cMAFWlr/cK6pbgBZ0QR8nEEokqGTtrOz3GGsKmQoUiQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.WindowsMixedReality.Editor.Profiles.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.WindowsMixedReality.Editor.Profiles.html", - "hash": "5M3n/Eyq2ykqFubGKy+gqrayQKgvm50fhbTMP5kfoVQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.WindowsMixedReality.Editor.WindowsMixedRealityPathFinder.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.WindowsMixedReality.Editor.WindowsMixedRealityPathFinder.html", - "hash": "5FlK4/Yrhkw2MXkoxq+TFBwiCqm9dmxrWSujXGWGsxI=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.WindowsMixedReality.Editor.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.WindowsMixedReality.Editor.html", - "hash": "0GBpjElyLmHj8AlWW2yPPSx84geFomi0vFy5+zfFhGo=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile.html", - "hash": "6smtqVQkTVS9F+RFIPa6elDL77487s/oeNsdbO4zoe8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.WindowsMixedReality.Profiles.WindowsMixedRealitySpatialMeshObserverProfile.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.WindowsMixedReality.Profiles.WindowsMixedRealitySpatialMeshObserverProfile.html", - "hash": "Q9kMYA1RAsnL3rHyBMzuMsAvkte9QHFImFpxH+M68kc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.WindowsMixedReality.Profiles.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.WindowsMixedReality.Profiles.html", - "hash": "KsnorLluR7rW+wb8CRXzmJbyJCOugvCtzMsWcS9hc2w=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.WindowsMixedReality.Providers.BoundarySystem.WindowsMixedRealityBoundaryDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.WindowsMixedReality.Providers.BoundarySystem.WindowsMixedRealityBoundaryDataProvider.html", - "hash": "rV3vFx7zuAc6EzfCnitMrfaCIWiu3FG1YK3QdXy8cxY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.WindowsMixedReality.Providers.BoundarySystem.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.WindowsMixedReality.Providers.BoundarySystem.html", - "hash": "sXo2vpj3GKVCIg/kYoLvpsDg4zMepmHdh5zm7LKeHVw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.WindowsMixedReality.Providers.CameraSystem.WindowsMixedRealityCameraDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.WindowsMixedReality.Providers.CameraSystem.WindowsMixedRealityCameraDataProvider.html", - "hash": "yOpULPoIZmJ945y83TRSYkkRsBX53/u81Qvm3fneUAw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.WindowsMixedReality.Providers.CameraSystem.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.WindowsMixedReality.Providers.CameraSystem.html", - "hash": "truFZ+xuavHS4LhbfafySzxbXZd0HQdXcjV9WnN+bkA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityControllerDataProvider.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityControllerDataProvider.html", - "hash": "vlZJKZxxXVMnsNSnpm9SVHOO585bDQGfObojduybXAE=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityHololensOneController.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityHololensOneController.html", - "hash": "MkzfQ/rChp6XYVSullX3GGCvAu8cyCNH9FDi5Fc0spU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityMotionController.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityMotionController.html", - "hash": "tcAVVDTcU5wRW+3NShtaXOpXkA6MEB/35AtTwnixam8=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.WindowsMixedReality.Providers.Controllers.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.WindowsMixedReality.Providers.Controllers.html", - "hash": "4lUrpk51+FxS0dn4gGRs2NVplA5nUulAYcn80LQvVbQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.WindowsMixedReality.Providers.SpatialAwarenessSystem.SpatialObservers.WindowsMixedRealitySpatialMeshObserver.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.WindowsMixedReality.Providers.SpatialAwarenessSystem.SpatialObservers.WindowsMixedRealitySpatialMeshObserver.html", - "hash": "Mn8sBfkMH18iFFMNrFLRUw5qxyiRvcZpyhFCQ7Ja9Xs=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.WindowsMixedReality.Providers.SpatialAwarenessSystem.SpatialObservers.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.WindowsMixedReality.Providers.SpatialAwarenessSystem.SpatialObservers.html", - "hash": "yoznGLQF2eWzMAF1FC8XkOZqe/gHyaMHlRrqqfSfMj4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.WindowsMixedReality.Utilities.WindowsMixedRealityHandDataConverter.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.WindowsMixedReality.Utilities.WindowsMixedRealityHandDataConverter.html", - "hash": "Bt8k/rpqRmaY8ftLaKzSyB8TGMCdAhIuzDLTmGX/1xY=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.WindowsMixedReality.Utilities.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.WindowsMixedReality.Utilities.html", - "hash": "JPG+TnF/u+z2XShs9n8q7NELglxdq+YWU/H25AWzHbQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.glTF.Editor.glTFPathFinder.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.glTF.Editor.glTFPathFinder.html", - "hash": "w2SCYynheaQeBPWTIXwRsDCv5E51JFRFpiNgMl0Fzsk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "../api/XRTK.glTF.Editor.yml", - "output": { - ".html": { - "relative_path": "api/XRTK.glTF.Editor.html", - "hash": "BgeRW7x7CPSon0zyMQmLU9JutQsGEV1uXBASY/y++pQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Conceptual", - "source_relative_path": "../api/index.md", - "output": { - ".html": { - "relative_path": "api/index.html", - "hash": "dI+t5wiCllY3qqfZX1/FCPvMFgAeK4H/eJuA8jdVoKI=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Toc", - "source_relative_path": "../api/toc.yml", - "output": { - ".html": { - "relative_path": "api/toc.html", - "hash": "8weRZTAgkjdFDkmfWgVBqasQdQsPM/w+vOie4ItkxJE=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Conceptual", - "source_relative_path": "../articles/00-GettingStarted.md", - "output": { - ".html": { - "relative_path": "articles/00-GettingStarted.html", - "hash": "764NyRRe+i3LP30+8j4y9XzlfQztCLiS9tgQ1TFBmSQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Conceptual", - "source_relative_path": "../articles/01-DownloadingTheXRTK.md", - "output": { - ".html": { - "relative_path": "articles/01-DownloadingTheXRTK.html", - "hash": "GsfmcM6rRJ0D8ryBVhbqCMBI7g+E0e6Oce0Bq3zYgj4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Conceptual", - "source_relative_path": "../articles/02-Configuration.md", - "output": { - ".html": { - "relative_path": "articles/02-Configuration.html", - "hash": "1lAvq77n1A+KKH1ViQ3/VafJfDAiOs1Wvji1tK1Qo3Q=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Conceptual", - "source_relative_path": "../articles/03-template-generator.md", - "output": { - ".html": { - "relative_path": "articles/03-template-generator.html", - "hash": "9rYvbz2/Oa2+Z623QnBCCBsdMpCzZTmjKoprc7phzDc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Conceptual", - "source_relative_path": "../articles/04-KnownIssues.md", - "output": { - ".html": { - "relative_path": "articles/04-KnownIssues.html", - "hash": "syb1Eg4+wDhAWhtfK/6mxXXUwv8Ioh/bfpzvx5e8FgU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Conceptual", - "source_relative_path": "../articles/Template.md", - "output": { - ".html": { - "relative_path": "articles/Template.html", - "hash": "cPrCHVz0a0668eFBUfO9U1wb5/FlwLGJn5+514wB6c0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Conceptual", - "source_relative_path": "../articles/appendices/A01-CodingGuidelines.md", - "output": { - ".html": { - "relative_path": "articles/appendices/A01-CodingGuidelines.html", - "hash": "rG8VOd6dTUC5kUhYNnfgsm4SFDt6wn4us04nm7tqvpo=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Conceptual", - "source_relative_path": "../articles/appendices/A02-ChoosingXRTKvsMRTK.md", - "output": { - ".html": { - "relative_path": "articles/appendices/A02-ChoosingXRTKvsMRTK.html", - "hash": "342WQHhB1zyuLa2JUpN8P/XiLaSB7nu8GTFd/BtnjS0=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Conceptual", - "source_relative_path": "../articles/appendices/A03-Roadmap.md", - "output": { - ".html": { - "relative_path": "articles/appendices/A03-Roadmap.html", - "hash": "nJgJnKfp5LrMF+9sU+ELYAwd2Y75nOrXhK9MtaGsC7U=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Conceptual", - "source_relative_path": "../articles/appendices/A04-FAQ.md", - "output": { - ".html": { - "relative_path": "articles/appendices/A04-FAQ.html", - "hash": "8LhglU57JEcnpMDrDik4RUcENlo0zpLDHY0LYbi+laI=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Conceptual", - "source_relative_path": "../articles/examples/examples.md", - "output": { - ".html": { - "relative_path": "articles/examples/examples.html", - "hash": "lSvsJrmpe1Am3FyXx2OnMNcaMhWD+5HZa0/qDKZUjXw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Conceptual", - "source_relative_path": "../articles/platforms/etee.md", - "output": { - ".html": { - "relative_path": "articles/platforms/etee.html", - "hash": "lM9Ens9640H0qMGXzDSAPtBsvL4MMeSBA72YC1CBvFw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Conceptual", - "source_relative_path": "../articles/platforms/magicleap.md", - "output": { - ".html": { - "relative_path": "articles/platforms/magicleap.html", - "hash": "/4JTRKBIEzlvOtvnPB8HlunX76k3Sb0lFz7zoWMHihc=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Conceptual", - "source_relative_path": "../articles/platforms/oculus.md", - "output": { - ".html": { - "relative_path": "articles/platforms/oculus.html", - "hash": "7DKa8xHFV2U/n0VyanzRfXduOpJQePiYUkoW9V3e/58=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Conceptual", - "source_relative_path": "../articles/platforms/platforms.md", - "output": { - ".html": { - "relative_path": "articles/platforms/platforms.html", - "hash": "bhVMxYE6cfc5jcKfYoXSuEXMoAEgO4isINovj50wIRk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Conceptual", - "source_relative_path": "../articles/platforms/steamvr.md", - "output": { - ".html": { - "relative_path": "articles/platforms/steamvr.html", - "hash": "UcDPl8KZ6Hr6PGihW1zmeSy9zQzATPe6JU8VO5NxPFE=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Conceptual", - "source_relative_path": "../articles/platforms/ultraleap.md", - "output": { - ".html": { - "relative_path": "articles/platforms/ultraleap.html", - "hash": "0WTswOh1L0chFuusUejkm5gSKBm30olcL4w0seCFAJ4=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Conceptual", - "source_relative_path": "../articles/platforms/webxr.md", - "output": { - ".html": { - "relative_path": "articles/platforms/webxr.html", - "hash": "qJYtEEIr9FIzrXUm5wxtTDjJftn/dbVX2/3clr+GFbA=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Conceptual", - "source_relative_path": "../articles/platforms/windowsmixedreality.md", - "output": { - ".html": { - "relative_path": "articles/platforms/windowsmixedreality.html", - "hash": "ePWtfoCCr4fkSXkXvYw8NJ5ZgVSd+sM4Y1gSfVDPKJk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Conceptual", - "source_relative_path": "../articles/systems/01-camera-system.md", - "output": { - ".html": { - "relative_path": "articles/systems/01-camera-system.html", - "hash": "d6m8XaMMh7V8rDeesSl4dvL6B3jN8Nu++/XM+Jsj2Yk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Conceptual", - "source_relative_path": "../articles/systems/02-input-system.md", - "output": { - ".html": { - "relative_path": "articles/systems/02-input-system.html", - "hash": "W4HK68H222bz2bZX06HFgfKd56It1umiae5Xc/YB7NM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Conceptual", - "source_relative_path": "../articles/systems/03-boundary-system.md", - "output": { - ".html": { - "relative_path": "articles/systems/03-boundary-system.html", - "hash": "J6DFpJmA4ZPwpBIo/WwciEBZpHCztrQsfwC971gbLgQ=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Conceptual", - "source_relative_path": "../articles/systems/04-teleporting-system.md", - "output": { - ".html": { - "relative_path": "articles/systems/04-teleporting-system.html", - "hash": "QEbjwtsIXIA/1wC0tBciYtceb3+Ha1cG1S4AlkWjVLM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Conceptual", - "source_relative_path": "../articles/systems/05-spatial-awareness-system.md", - "output": { - ".html": { - "relative_path": "articles/systems/05-spatial-awareness-system.html", - "hash": "OL5CZk/m49O1yCBE229ErU9jIlY2JNSsDfQOV9DN+iM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Conceptual", - "source_relative_path": "../articles/systems/06-diagnostics-system.md", - "output": { - ".html": { - "relative_path": "articles/systems/06-diagnostics-system.html", - "hash": "AQGy4s005AAqjkVKMFOIGvrDnbhyZoqMP2iDHFaoMYo=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Conceptual", - "source_relative_path": "../articles/systems/07-additional-serivce-providers.md", - "output": { - ".html": { - "relative_path": "articles/systems/07-additional-serivce-providers.html", - "hash": "8LvRjQbnGCQb+MfkvSb/MTXT4wBTQMLf2wIAT9jYsaw=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Conceptual", - "source_relative_path": "../articles/testplans/TP-00_Import-XRTK.SDK-And_Configure.md", - "output": { - ".html": { - "relative_path": "articles/testplans/TP-00_Import-XRTK.SDK-And_Configure.html", - "hash": "7Jo/qZfDA9ZTIpC3MCKNdJGUej8N7FXWX/CkmgdU6xI=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Conceptual", - "source_relative_path": "../articles/testplans/TP-01_Import-XRTK.Oculus.md", - "output": { - ".html": { - "relative_path": "articles/testplans/TP-01_Import-XRTK.Oculus.html", - "hash": "NkwRVkJMtnU56Vt6j4LEQCG2T875RzrwRTwemOI/Q94=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Conceptual", - "source_relative_path": "../articles/testplans/TP-02_Import-XRTK.WMR.md", - "output": { - ".html": { - "relative_path": "articles/testplans/TP-02_Import-XRTK.WMR.html", - "hash": "cYlsWg6qMW7ZDI8W8TTBhxrZ0X+Qmi967oQr09nH8mM=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Conceptual", - "source_relative_path": "../articles/testplans/TP_Overview.md", - "output": { - ".html": { - "relative_path": "articles/testplans/TP_Overview.html", - "hash": "TJSeyeONB8VkLwfw0vYQn5ny9YTxPncdFIniSMgjbkk=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Toc", - "source_relative_path": "../articles/toc.yml", - "output": { - ".html": { - "relative_path": "articles/toc.html", - "hash": "c7c99tMQKQqpP97Ap3CD83sQcgXmmaKXRl0jo2MvLwU=" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/Branding/Roadmap.png", - "output": { - "resource": { - "relative_path": "images/Branding/Roadmap.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/Branding/XRTK-Background.png", - "output": { - "resource": { - "relative_path": "images/Branding/XRTK-Background.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/Branding/XRTK_Logo_1200x250.png", - "output": { - "resource": { - "relative_path": "images/Branding/XRTK_Logo_1200x250.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/Branding/XRTK_Logo_250x250.png", - "output": { - "resource": { - "relative_path": "images/Branding/XRTK_Logo_250x250.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/Branding/XRTK_Logo_948x474.png", - "output": { - "resource": { - "relative_path": "images/Branding/XRTK_Logo_948x474.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/Branding/XRTK_Logo_sm.png", - "output": { - "resource": { - "relative_path": "images/Branding/XRTK_Logo_sm.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/Branding/xrtk_logo.psd", - "output": { - "resource": { - "relative_path": "images/Branding/xrtk_logo.psd" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/Branding/xrtk_logo_3kx3k_transparent.png", - "output": { - "resource": { - "relative_path": "images/Branding/xrtk_logo_3kx3k_transparent.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/Branding/xrtk_logo_black_3kx3k.png", - "output": { - "resource": { - "relative_path": "images/Branding/xrtk_logo_black_3kx3k.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/Branding/xrtk_logo_white_3kx3k.png", - "output": { - "resource": { - "relative_path": "images/Branding/xrtk_logo_white_3kx3k.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/Configuration/AdditionalServices/AdditionalServiceProvidersList.png", - "output": { - "resource": { - "relative_path": "images/Configuration/AdditionalServices/AdditionalServiceProvidersList.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/Configuration/AdditionalServices/AdditionalServiceProvidersProfile.png", - "output": { - "resource": { - "relative_path": "images/Configuration/AdditionalServices/AdditionalServiceProvidersProfile.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/Configuration/BoundarySystem/BoundarySystemProfile.png", - "output": { - "resource": { - "relative_path": "images/Configuration/BoundarySystem/BoundarySystemProfile.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/Configuration/BoundarySystem/BoundarySystemSettings.png", - "output": { - "resource": { - "relative_path": "images/Configuration/BoundarySystem/BoundarySystemSettings.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/Configuration/CameraSystem/CameraSystemOptions.png", - "output": { - "resource": { - "relative_path": "images/Configuration/CameraSystem/CameraSystemOptions.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/Configuration/CameraSystem/CameraSystemProfile.png", - "output": { - "resource": { - "relative_path": "images/Configuration/CameraSystem/CameraSystemProfile.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/Configuration/CameraSystem/CameraSystemSettings.png", - "output": { - "resource": { - "relative_path": "images/Configuration/CameraSystem/CameraSystemSettings.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/Configuration/Diagnostics/DiagnosticsDataProviders.png", - "output": { - "resource": { - "relative_path": "images/Configuration/Diagnostics/DiagnosticsDataProviders.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/Configuration/Diagnostics/DiagnosticsSettings.png", - "output": { - "resource": { - "relative_path": "images/Configuration/Diagnostics/DiagnosticsSettings.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/Configuration/Diagnostics/DiagnosticsSystemProfile.png", - "output": { - "resource": { - "relative_path": "images/Configuration/Diagnostics/DiagnosticsSystemProfile.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/Configuration/Diagnostics/DiagnosticsSystemSettings.png", - "output": { - "resource": { - "relative_path": "images/Configuration/Diagnostics/DiagnosticsSystemSettings.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/Configuration/InputSystem/ConfiguredControllerDataProviders.png", - "output": { - "resource": { - "relative_path": "images/Configuration/InputSystem/ConfiguredControllerDataProviders.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/Configuration/InputSystem/ControllerDataProvider.png", - "output": { - "resource": { - "relative_path": "images/Configuration/InputSystem/ControllerDataProvider.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/Configuration/InputSystem/ControllerDataProviderProfile.png", - "output": { - "resource": { - "relative_path": "images/Configuration/InputSystem/ControllerDataProviderProfile.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/Configuration/InputSystem/ControllerProfile.png", - "output": { - "resource": { - "relative_path": "images/Configuration/InputSystem/ControllerProfile.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/Configuration/InputSystem/GlobalHandSettings.png", - "output": { - "resource": { - "relative_path": "images/Configuration/InputSystem/GlobalHandSettings.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/Configuration/InputSystem/GlobalPointerSettings.png", - "output": { - "resource": { - "relative_path": "images/Configuration/InputSystem/GlobalPointerSettings.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/Configuration/InputSystem/InputActions.png", - "output": { - "resource": { - "relative_path": "images/Configuration/InputSystem/InputActions.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/Configuration/InputSystem/InputSystemProfile.png", - "output": { - "resource": { - "relative_path": "images/Configuration/InputSystem/InputSystemProfile.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/Configuration/InputSystem/InputSystemSettings.png", - "output": { - "resource": { - "relative_path": "images/Configuration/InputSystem/InputSystemSettings.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/Configuration/InputSystem/ShortcutControllerActionMappings.png", - "output": { - "resource": { - "relative_path": "images/Configuration/InputSystem/ShortcutControllerActionMappings.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/Configuration/MixedRealityProfileCloneButton.png", - "output": { - "resource": { - "relative_path": "images/Configuration/MixedRealityProfileCloneButton.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/Configuration/MixedRealityProfileView.png", - "output": { - "resource": { - "relative_path": "images/Configuration/MixedRealityProfileView.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/Configuration/MixedRealityToolkitConfiguration.png", - "output": { - "resource": { - "relative_path": "images/Configuration/MixedRealityToolkitConfiguration.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/Configuration/Platforms/PlatformConfigurationDefaults.png", - "output": { - "resource": { - "relative_path": "images/Configuration/Platforms/PlatformConfigurationDefaults.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/Configuration/Platforms/PlatformSelector.png", - "output": { - "resource": { - "relative_path": "images/Configuration/Platforms/PlatformSelector.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/Configuration/Platforms/PlatformServiceConfigurationProfile.png", - "output": { - "resource": { - "relative_path": "images/Configuration/Platforms/PlatformServiceConfigurationProfile.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/Configuration/SpatialAwareness/SpatialAwarenessDataProviders.png", - "output": { - "resource": { - "relative_path": "images/Configuration/SpatialAwareness/SpatialAwarenessDataProviders.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/Configuration/SpatialAwareness/SpatialAwarenessSystemProfile.png", - "output": { - "resource": { - "relative_path": "images/Configuration/SpatialAwareness/SpatialAwarenessSystemProfile.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/Configuration/SpatialAwareness/SpatialAwarenessSystemSettings.png", - "output": { - "resource": { - "relative_path": "images/Configuration/SpatialAwareness/SpatialAwarenessSystemSettings.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/Configuration/SpatialAwareness/SpatialMeshObserverOptions.png", - "output": { - "resource": { - "relative_path": "images/Configuration/SpatialAwareness/SpatialMeshObserverOptions.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/Configuration/SpatialAwareness/SpatialSurfaceObserverOptions.png", - "output": { - "resource": { - "relative_path": "images/Configuration/SpatialAwareness/SpatialSurfaceObserverOptions.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/Configuration/TeleportSystem/TeleportSystemDataProviders.png", - "output": { - "resource": { - "relative_path": "images/Configuration/TeleportSystem/TeleportSystemDataProviders.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/Configuration/TeleportSystem/TeleportSystemProfile.png", - "output": { - "resource": { - "relative_path": "images/Configuration/TeleportSystem/TeleportSystemProfile.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/Configuration/TeleportSystem/TeleportSystemSettings.png", - "output": { - "resource": { - "relative_path": "images/Configuration/TeleportSystem/TeleportSystemSettings.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/Configuration/TeleportSystem/TeleportValidationOptions.png", - "output": { - "resource": { - "relative_path": "images/Configuration/TeleportSystem/TeleportValidationOptions.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/DownloadingTheXRTK/LocatePackagesFolder.png", - "output": { - "resource": { - "relative_path": "images/DownloadingTheXRTK/LocatePackagesFolder.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/DownloadingTheXRTK/PackageManager.png", - "output": { - "resource": { - "relative_path": "images/DownloadingTheXRTK/PackageManager.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/DownloadingTheXRTK/ScopedRegistry.png", - "output": { - "resource": { - "relative_path": "images/DownloadingTheXRTK/ScopedRegistry.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/DownloadingTheXRTK/SymbolicLinkWizard.png", - "output": { - "resource": { - "relative_path": "images/DownloadingTheXRTK/SymbolicLinkWizard.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/DownloadingTheXRTK/SymbolicLinks.png", - "output": { - "resource": { - "relative_path": "images/DownloadingTheXRTK/SymbolicLinks.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/DownloadingTheXRTK/UnityPackageManager-Advanced.jpg", - "output": { - "resource": { - "relative_path": "images/DownloadingTheXRTK/UnityPackageManager-Advanced.jpg" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/DownloadingTheXRTK/UnityPackageManager-MyRegistries.jpg", - "output": { - "resource": { - "relative_path": "images/DownloadingTheXRTK/UnityPackageManager-MyRegistries.jpg" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/DownloadingTheXRTK/UnityPackageManager-ScopedRegistries.jpg", - "output": { - "resource": { - "relative_path": "images/DownloadingTheXRTK/UnityPackageManager-ScopedRegistries.jpg" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/DownloadingTheXRTK/UnityPackageManager-XRTKRegistries.jpg", - "output": { - "resource": { - "relative_path": "images/DownloadingTheXRTK/UnityPackageManager-XRTKRegistries.jpg" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/DownloadingTheXRTK/XRTKAutoInstallAsset.png", - "output": { - "resource": { - "relative_path": "images/DownloadingTheXRTK/XRTKAutoInstallAsset.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/DownloadingTheXRTK/XRTKPackageList.png", - "output": { - "resource": { - "relative_path": "images/DownloadingTheXRTK/XRTKPackageList.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/FAQ/DefaultCameraSettings.png", - "output": { - "resource": { - "relative_path": "images/FAQ/DefaultCameraSettings.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/GettingStarted/MixedRealityBuildWindow.png", - "output": { - "resource": { - "relative_path": "images/GettingStarted/MixedRealityBuildWindow.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/GettingStarted/MixedRealityConfigure.png", - "output": { - "resource": { - "relative_path": "images/GettingStarted/MixedRealityConfigure.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/GettingStarted/MixedRealityScene.png", - "output": { - "resource": { - "relative_path": "images/GettingStarted/MixedRealityScene.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/GettingStarted/NewPlatformPrompt.png", - "output": { - "resource": { - "relative_path": "images/GettingStarted/NewPlatformPrompt.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/GettingStarted/UnityPackageManager-XRTK.png", - "output": { - "resource": { - "relative_path": "images/GettingStarted/UnityPackageManager-XRTK.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/GettingStarted/XR_SDK_Manager.png", - "output": { - "resource": { - "relative_path": "images/GettingStarted/XR_SDK_Manager.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/Sponsors/vim_logo.jpg", - "output": { - "resource": { - "relative_path": "images/Sponsors/vim_logo.jpg" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/TemplateGeneration/BranchMetaFiles.png", - "output": { - "resource": { - "relative_path": "images/TemplateGeneration/BranchMetaFiles.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/TemplateGeneration/BranchProtections-01.png", - "output": { - "resource": { - "relative_path": "images/TemplateGeneration/BranchProtections-01.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/TemplateGeneration/BranchProtections-02.png", - "output": { - "resource": { - "relative_path": "images/TemplateGeneration/BranchProtections-02.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/TemplateGeneration/CloneLocalRepo.png", - "output": { - "resource": { - "relative_path": "images/TemplateGeneration/CloneLocalRepo.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/TemplateGeneration/CloneRepo.png", - "output": { - "resource": { - "relative_path": "images/TemplateGeneration/CloneRepo.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/TemplateGeneration/CommitToMaster.png", - "output": { - "resource": { - "relative_path": "images/TemplateGeneration/CommitToMaster.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/TemplateGeneration/CommitToMetaFiles.png", - "output": { - "resource": { - "relative_path": "images/TemplateGeneration/CommitToMetaFiles.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/TemplateGeneration/DefaultBranch.png", - "output": { - "resource": { - "relative_path": "images/TemplateGeneration/DefaultBranch.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/TemplateGeneration/DevelopmentBranch.png", - "output": { - "resource": { - "relative_path": "images/TemplateGeneration/DevelopmentBranch.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/TemplateGeneration/DevelopmentCommit.png", - "output": { - "resource": { - "relative_path": "images/TemplateGeneration/DevelopmentCommit.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/TemplateGeneration/DisableFeatures.png", - "output": { - "resource": { - "relative_path": "images/TemplateGeneration/DisableFeatures.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/TemplateGeneration/LaunchUnity.png", - "output": { - "resource": { - "relative_path": "images/TemplateGeneration/LaunchUnity.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/TemplateGeneration/MergeButtonFeatures.png", - "output": { - "resource": { - "relative_path": "images/TemplateGeneration/MergeButtonFeatures.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/TemplateGeneration/NewPipeline-01.png", - "output": { - "resource": { - "relative_path": "images/TemplateGeneration/NewPipeline-01.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/TemplateGeneration/NewPipeline-02.png", - "output": { - "resource": { - "relative_path": "images/TemplateGeneration/NewPipeline-02.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/TemplateGeneration/NewPipeline-03.png", - "output": { - "resource": { - "relative_path": "images/TemplateGeneration/NewPipeline-03.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/TemplateGeneration/NewPipeline-04.png", - "output": { - "resource": { - "relative_path": "images/TemplateGeneration/NewPipeline-04.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/TemplateGeneration/NewPipeline-05.png", - "output": { - "resource": { - "relative_path": "images/TemplateGeneration/NewPipeline-05.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/TemplateGeneration/NewPipeline-06.png", - "output": { - "resource": { - "relative_path": "images/TemplateGeneration/NewPipeline-06.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/TemplateGeneration/NewPipeline-07.png", - "output": { - "resource": { - "relative_path": "images/TemplateGeneration/NewPipeline-07.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/TemplateGeneration/NewPipeline-08.png", - "output": { - "resource": { - "relative_path": "images/TemplateGeneration/NewPipeline-08.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/TemplateGeneration/NewRepoButton.png", - "output": { - "resource": { - "relative_path": "images/TemplateGeneration/NewRepoButton.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/TemplateGeneration/NewRepoSettings.png", - "output": { - "resource": { - "relative_path": "images/TemplateGeneration/NewRepoSettings.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/TemplateGeneration/ProjectRootExplorer.png", - "output": { - "resource": { - "relative_path": "images/TemplateGeneration/ProjectRootExplorer.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/TemplateGeneration/PullRequest-01.png", - "output": { - "resource": { - "relative_path": "images/TemplateGeneration/PullRequest-01.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/TemplateGeneration/PullRequest-02.png", - "output": { - "resource": { - "relative_path": "images/TemplateGeneration/PullRequest-02.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/TemplateGeneration/PullRequest-03.png", - "output": { - "resource": { - "relative_path": "images/TemplateGeneration/PullRequest-03.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Resource", - "source_relative_path": "../images/TemplateGeneration/RunPowershell.png", - "output": { - "resource": { - "relative_path": "images/TemplateGeneration/RunPowershell.png" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "Toc", - "source_relative_path": "../toc.yml", - "output": { - ".html": { - "relative_path": "toc.html", - "hash": "Qi8cw4CpesAajb8fB0CLmmcLw0KVZJiENjPx7o+Fn2w=" - } - }, - "is_incremental": false, - "version": "" - } - ], - "incremental_info": [ - { - "status": { - "can_incremental": false, - "details": "Cannot build incrementally because last build info is missing.", - "incrementalPhase": "build", - "total_file_count": 0, - "skipped_file_count": 0, - "full_build_reason_code": "NoAvailableBuildCache" - }, - "processors": { - "ConceptualDocumentProcessor": { - "can_incremental": false, - "incrementalPhase": "build", - "total_file_count": 36, - "skipped_file_count": 0 - }, - "ManagedReferenceDocumentProcessor": { - "can_incremental": false, - "incrementalPhase": "build", - "total_file_count": 1017, - "skipped_file_count": 0 - }, - "ResourceDocumentProcessor": { - "can_incremental": false, - "details": "Processor ResourceDocumentProcessor cannot support incremental build because the processor doesn't implement ISupportIncrementalDocumentProcessor interface.", - "incrementalPhase": "build", - "total_file_count": 0, - "skipped_file_count": 0 - }, - "TocDocumentProcessor": { - "can_incremental": false, - "details": "Processor TocDocumentProcessor cannot support incremental build because the processor doesn't implement ISupportIncrementalDocumentProcessor interface.", - "incrementalPhase": "build", - "total_file_count": 0, - "skipped_file_count": 0 - } - } - }, - { - "status": { - "can_incremental": false, - "details": "Cannot support incremental post processing, the reason is: last post processor info is null.", - "incrementalPhase": "postProcessing", - "total_file_count": 0, - "skipped_file_count": 0 - }, - "processors": {} - } - ], - "version_info": {}, - "groups": [ - { - "xrefmap": "xrefmap.yml" - } - ] -} \ No newline at end of file diff --git a/docs/search-stopwords.json b/docs/search-stopwords.json deleted file mode 100644 index 0bdcc2c00..000000000 --- a/docs/search-stopwords.json +++ /dev/null @@ -1,121 +0,0 @@ -[ - "a", - "able", - "about", - "across", - "after", - "all", - "almost", - "also", - "am", - "among", - "an", - "and", - "any", - "are", - "as", - "at", - "be", - "because", - "been", - "but", - "by", - "can", - "cannot", - "could", - "dear", - "did", - "do", - "does", - "either", - "else", - "ever", - "every", - "for", - "from", - "get", - "got", - "had", - "has", - "have", - "he", - "her", - "hers", - "him", - "his", - "how", - "however", - "i", - "if", - "in", - "into", - "is", - "it", - "its", - "just", - "least", - "let", - "like", - "likely", - "may", - "me", - "might", - "most", - "must", - "my", - "neither", - "no", - "nor", - "not", - "of", - "off", - "often", - "on", - "only", - "or", - "other", - "our", - "own", - "rather", - "said", - "say", - "says", - "she", - "should", - "since", - "so", - "some", - "than", - "that", - "the", - "their", - "them", - "then", - "there", - "these", - "they", - "this", - "tis", - "to", - "too", - "twas", - "us", - "wants", - "was", - "we", - "were", - "what", - "when", - "where", - "which", - "while", - "who", - "whom", - "why", - "will", - "with", - "would", - "yet", - "you", - "your" -] diff --git a/docs/styles/docfx.css b/docs/styles/docfx.css deleted file mode 100644 index 64dcde338..000000000 --- a/docs/styles/docfx.css +++ /dev/null @@ -1,1032 +0,0 @@ -/* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License.txt in the project root for license information. */ -html, -body { - font-family: 'Segoe UI', Tahoma, Helvetica, sans-serif; - height: 100%; -} -button, -a { - color: #337ab7; - cursor: pointer; -} -button:hover, -button:focus, -a:hover, -a:focus { - color: #23527c; - text-decoration: none; -} -a.disable, -a.disable:hover { - text-decoration: none; - cursor: default; - color: #000000; -} - -h1, h2, h3, h4, h5, h6, .text-break { - word-wrap: break-word; - word-break: break-word; -} - -h1 mark, -h2 mark, -h3 mark, -h4 mark, -h5 mark, -h6 mark { - padding: 0; -} - -.inheritance .level0:before, -.inheritance .level1:before, -.inheritance .level2:before, -.inheritance .level3:before, -.inheritance .level4:before, -.inheritance .level5:before, -.inheritance .level6:before, -.inheritance .level7:before, -.inheritance .level8:before, -.inheritance .level9:before { - content: '↳'; - margin-right: 5px; -} - -.inheritance .level0 { - margin-left: 0em; -} - -.inheritance .level1 { - margin-left: 1em; -} - -.inheritance .level2 { - margin-left: 2em; -} - -.inheritance .level3 { - margin-left: 3em; -} - -.inheritance .level4 { - margin-left: 4em; -} - -.inheritance .level5 { - margin-left: 5em; -} - -.inheritance .level6 { - margin-left: 6em; -} - -.inheritance .level7 { - margin-left: 7em; -} - -.inheritance .level8 { - margin-left: 8em; -} - -.inheritance .level9 { - margin-left: 9em; -} - -.level0.summary { - margin: 2em 0 2em 0; -} - -.level1.summary { - margin: 1em 0 1em 0; -} - -span.parametername, -span.paramref, -span.typeparamref { - font-style: italic; -} -span.languagekeyword{ - font-weight: bold; -} - -svg:hover path { - fill: #ffffff; -} - -.hljs { - display: inline; - background-color: inherit; - padding: 0; -} -/* additional spacing fixes */ -.btn + .btn { - margin-left: 10px; -} -.btn.pull-right { - margin-left: 10px; - margin-top: 5px; -} -.table { - margin-bottom: 10px; -} -table p { - margin-bottom: 0; -} -table a { - display: inline-block; -} - -/* Make hidden attribute compatible with old browser.*/ -[hidden] { - display: none !important; -} - -h1, -.h1, -h2, -.h2, -h3, -.h3 { - margin-top: 15px; - margin-bottom: 10px; - font-weight: 400; -} -h4, -.h4, -h5, -.h5, -h6, -.h6 { - margin-top: 10px; - margin-bottom: 5px; -} -.navbar { - margin-bottom: 0; -} -#wrapper { - min-height: 100%; - position: relative; -} -/* blends header footer and content together with gradient effect */ -.grad-top { - /* For Safari 5.1 to 6.0 */ - /* For Opera 11.1 to 12.0 */ - /* For Firefox 3.6 to 15 */ - background: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0)); - /* Standard syntax */ - height: 5px; -} -.grad-bottom { - /* For Safari 5.1 to 6.0 */ - /* For Opera 11.1 to 12.0 */ - /* For Firefox 3.6 to 15 */ - background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.05)); - /* Standard syntax */ - height: 5px; -} -.divider { - margin: 0 5px; - color: #cccccc; -} -hr { - border-color: #cccccc; -} -header { - position: fixed; - top: 0; - left: 0; - right: 0; - z-index: 1000; -} -header .navbar { - border-width: 0 0 1px; - border-radius: 0; -} -.navbar-brand { - font-size: inherit; - padding: 0; -} -.navbar-collapse { - margin: 0 -15px; -} -.subnav { - min-height: 40px; -} - -.inheritance h5, .inheritedMembers h5{ - padding-bottom: 5px; - border-bottom: 1px solid #ccc; -} - -article h1, article h2, article h3, article h4{ - margin-top: 25px; -} - -article h4{ - border: 0; - font-weight: bold; - margin-top: 2em; -} - -article span.small.pull-right{ - margin-top: 20px; -} - -article section { - margin-left: 1em; -} - -/*.expand-all { - padding: 10px 0; -}*/ -.breadcrumb { - margin: 0; - padding: 10px 0; - background-color: inherit; - white-space: nowrap; -} -.breadcrumb > li + li:before { - content: "\00a0/"; -} -#autocollapse.collapsed .navbar-header { - float: none; -} -#autocollapse.collapsed .navbar-toggle { - display: block; -} -#autocollapse.collapsed .navbar-collapse { - border-top: 1px solid transparent; - box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); -} -#autocollapse.collapsed .navbar-collapse.collapse { - display: none !important; -} -#autocollapse.collapsed .navbar-nav { - float: none !important; - margin: 7.5px -15px; -} -#autocollapse.collapsed .navbar-nav > li { - float: none; -} -#autocollapse.collapsed .navbar-nav > li > a { - padding-top: 10px; - padding-bottom: 10px; -} -#autocollapse.collapsed .collapse.in, -#autocollapse.collapsed .collapsing { - display: block !important; -} -#autocollapse.collapsed .collapse.in .navbar-right, -#autocollapse.collapsed .collapsing .navbar-right { - float: none !important; -} -#autocollapse .form-group { - width: 100%; -} -#autocollapse .form-control { - width: 100%; -} -#autocollapse .navbar-header { - margin-left: 0; - margin-right: 0; -} -#autocollapse .navbar-brand { - margin-left: 0; -} -.collapse.in, -.collapsing { - text-align: center; -} -.collapsing .navbar-form { - margin: 0 auto; - max-width: 400px; - padding: 10px 15px; - box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); -} -.collapsed .collapse.in .navbar-form { - margin: 0 auto; - max-width: 400px; - padding: 10px 15px; - box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); -} -.navbar .navbar-nav { - display: inline-block; -} -.docs-search { - background: white; - vertical-align: middle; -} -.docs-search > .search-query { - font-size: 14px; - border: 0; - width: 120%; - color: #555; -} -.docs-search > .search-query:focus { - outline: 0; -} -.search-results-frame { - clear: both; - display: table; - width: 100%; -} -.search-results.ng-hide { - display: none; -} -.search-results-container { - padding-bottom: 1em; - border-top: 1px solid #111; - background: rgba(25, 25, 25, 0.5); -} -.search-results-container .search-results-group { - padding-top: 50px !important; - padding: 10px; -} -.search-results-group-heading { - font-family: "Open Sans"; - padding-left: 10px; - color: white; -} -.search-close { - position: absolute; - left: 50%; - margin-left: -100px; - color: white; - text-align: center; - padding: 5px; - background: #333; - border-top-right-radius: 5px; - border-top-left-radius: 5px; - width: 200px; - box-shadow: 0 0 10px #111; -} -#search { - display: none; -} - -/* Search results display*/ -#search-results { - max-width: 960px !important; - margin-top: 120px; - margin-bottom: 115px; - margin-left: auto; - margin-right: auto; - line-height: 1.8; - display: none; -} - -#search-results>.search-list { - text-align: center; - font-size: 2.5rem; - margin-bottom: 50px; -} - -#search-results p { - text-align: center; -} - -#search-results p .index-loading { - animation: index-loading 1.5s infinite linear; - -webkit-animation: index-loading 1.5s infinite linear; - -o-animation: index-loading 1.5s infinite linear; - font-size: 2.5rem; -} - -@keyframes index-loading { - from { transform: scale(1) rotate(0deg);} - to { transform: scale(1) rotate(360deg);} -} - -@-webkit-keyframes index-loading { - from { -webkit-transform: rotate(0deg);} - to { -webkit-transform: rotate(360deg);} -} - -@-o-keyframes index-loading { - from { -o-transform: rotate(0deg);} - to { -o-transform: rotate(360deg);} -} - -#search-results .sr-items { - font-size: 24px; -} - -.sr-item { - margin-bottom: 25px; -} - -.sr-item>.item-href { - font-size: 14px; - color: #093; -} - -.sr-item>.item-brief { - font-size: 13px; -} - -.pagination>li>a { - color: #47A7A0 -} - -.pagination>.active>a { - background-color: #47A7A0; - border-color: #47A7A0; -} - -.fixed_header { - position: fixed; - width: 100%; - padding-bottom: 10px; - padding-top: 10px; - margin: 0px; - top: 0; - z-index: 9999; - left: 0; -} - -.fixed_header+.toc{ - margin-top: 50px; - margin-left: 0; -} - -.sidenav, .fixed_header, .toc { - background-color: #f1f1f1; -} - -.sidetoc { - position: fixed; - width: 260px; - top: 150px; - bottom: 0; - overflow-x: hidden; - overflow-y: auto; - background-color: #f1f1f1; - border-left: 1px solid #e7e7e7; - border-right: 1px solid #e7e7e7; - z-index: 1; -} - -.sidetoc.shiftup { - bottom: 70px; -} - -body .toc{ - background-color: #f1f1f1; - overflow-x: hidden; -} - -.sidetoggle.ng-hide { - display: block !important; -} -.sidetoc-expand > .caret { - margin-left: 0px; - margin-top: -2px; -} -.sidetoc-expand > .caret-side { - border-left: 4px solid; - border-top: 4px solid transparent; - border-bottom: 4px solid transparent; - margin-left: 4px; - margin-top: -4px; -} -.sidetoc-heading { - font-weight: 500; -} - -.toc { - margin: 0px 0 0 10px; - padding: 0 10px; -} -.expand-stub { - position: absolute; - left: -10px; -} -.toc .nav > li > a.sidetoc-expand { - position: absolute; - top: 0; - left: 0; -} -.toc .nav > li > a { - color: #666666; - margin-left: 5px; - display: block; - padding: 0; -} -.toc .nav > li > a:hover, -.toc .nav > li > a:focus { - color: #000000; - background: none; - text-decoration: inherit; -} -.toc .nav > li.active > a { - color: #337ab7; -} -.toc .nav > li.active > a:hover, -.toc .nav > li.active > a:focus { - color: #23527c; -} - -.toc .nav > li> .expand-stub { - cursor: pointer; -} - -.toc .nav > li.active > .expand-stub::before, -.toc .nav > li.in > .expand-stub::before, -.toc .nav > li.in.active > .expand-stub::before, -.toc .nav > li.filtered > .expand-stub::before { - content: "-"; -} - -.toc .nav > li > .expand-stub::before, -.toc .nav > li.active > .expand-stub::before { - content: "+"; -} - -.toc .nav > li.filtered > ul, -.toc .nav > li.in > ul { - display: block; -} - -.toc .nav > li > ul { - display: none; -} - -.toc ul{ - font-size: 12px; - margin: 0 0 0 3px; -} - -.toc .level1 > li { - font-weight: bold; - margin-top: 10px; - position: relative; - font-size: 16px; -} -.toc .level2 { - font-weight: normal; - margin: 5px 0 0 15px; - font-size: 14px; -} -.toc-toggle { - display: none; - margin: 0 15px 0px 15px; -} -.sidefilter { - position: fixed; - top: 90px; - width: 260px; - background-color: #f1f1f1; - padding: 15px; - border-left: 1px solid #e7e7e7; - border-right: 1px solid #e7e7e7; - z-index: 1; -} -.toc-filter { - border-radius: 5px; - background: #fff; - color: #666666; - padding: 5px; - position: relative; - margin: 0 5px 0 5px; -} -.toc-filter > input { - border: 0; - color: #666666; - padding-left: 20px; - padding-right: 20px; - width: 100%; -} -.toc-filter > input:focus { - outline: 0; -} -.toc-filter > .filter-icon { - position: absolute; - top: 10px; - left: 5px; -} -.toc-filter > .clear-icon { - position: absolute; - top: 10px; - right: 5px; -} -.article { - margin-top: 120px; - margin-bottom: 115px; -} - -#_content>a{ - margin-top: 105px; -} - -.article.grid-right { - margin-left: 280px; -} - -.inheritance hr { - margin-top: 5px; - margin-bottom: 5px; -} -.article img { - max-width: 100%; -} -.sideaffix { - margin-top: 50px; - font-size: 12px; - max-height: 100%; - overflow: hidden; - top: 100px; - bottom: 10px; - position: fixed; -} -.sideaffix.shiftup { - bottom: 70px; -} -.affix { - position: relative; - height: 100%; -} -.sideaffix > div.contribution { - margin-bottom: 20px; -} -.sideaffix > div.contribution > ul > li > a.contribution-link { - padding: 6px 10px; - font-weight: bold; - font-size: 14px; -} -.sideaffix > div.contribution > ul > li > a.contribution-link:hover { - background-color: #ffffff; -} -.sideaffix ul.nav > li > a:focus { - background: none; -} -.affix h5 { - font-weight: bold; - text-transform: uppercase; - padding-left: 10px; - font-size: 12px; -} -.affix > ul.level1 { - overflow: hidden; - padding-bottom: 10px; - height: calc(100% - 100px); -} -.affix ul > li > a:before { - color: #cccccc; - position: absolute; -} -.affix ul > li > a:hover { - background: none; - color: #666666; -} -.affix ul > li.active > a, -.affix ul > li.active > a:before { - color: #337ab7; -} -.affix ul > li > a { - padding: 5px 12px; - color: #666666; -} -.affix > ul > li.active:last-child { - margin-bottom: 50px; -} -.affix > ul > li > a:before { - content: "|"; - font-size: 16px; - top: 1px; - left: 0; -} -.affix > ul > li.active > a, -.affix > ul > li.active > a:before { - color: #337ab7; - font-weight: bold; -} -.affix ul ul > li > a { - padding: 2px 15px; -} -.affix ul ul > li > a:before { - content: ">"; - font-size: 14px; - top: -1px; - left: 5px; -} -.affix ul > li > a:before, -.affix ul ul { - display: none; -} -.affix ul > li.active > ul, -.affix ul > li.active > a:before, -.affix ul > li > a:hover:before { - display: block; - white-space: nowrap; -} -.codewrapper { - position: relative; -} -.trydiv { - height: 0px; -} -.tryspan { - position: absolute; - top: 0px; - right: 0px; - border-style: solid; - border-radius: 0px 4px; - box-sizing: border-box; - border-width: 1px; - border-color: #cccccc; - text-align: center; - padding: 2px 8px; - background-color: white; - font-size: 12px; - cursor: pointer; - z-index: 100; - display: none; - color: #767676; -} -.tryspan:hover { - background-color: #3b8bd0; - color: white; - border-color: #3b8bd0; -} -.codewrapper:hover .tryspan { - display: block; -} -.sample-response .response-content{ - max-height: 200px; -} -footer { - position: absolute; - left: 0; - right: 0; - bottom: 0; - z-index: 1000; -} -.footer { - border-top: 1px solid #e7e7e7; - background-color: #f8f8f8; - padding: 15px 0; -} -@media (min-width: 768px) { - #sidetoggle.collapse { - display: block; - } - .topnav .navbar-nav { - float: none; - white-space: nowrap; - } - .topnav .navbar-nav > li { - float: none; - display: inline-block; - } -} -@media only screen and (max-width: 768px) { - #mobile-indicator { - display: block; - } - /* TOC display for responsive */ - .article { - margin-top: 30px !important; - } - header { - position: static; - } - .topnav { - text-align: center; - } - .sidenav { - padding: 15px 0; - margin-left: -15px; - margin-right: -15px; - } - .sidefilter { - position: static; - width: auto; - float: none; - border: none; - } - .sidetoc { - position: static; - width: auto; - float: none; - padding-bottom: 0px; - border: none; - } - .toc .nav > li, .toc .nav > li >a { - display: inline-block; - } - .toc li:after { - margin-left: -3px; - margin-right: 5px; - content: ", "; - color: #666666; - } - .toc .level1 > li { - display: block; - } - - .toc .level1 > li:after { - display: none; - } - .article.grid-right { - margin-left: 0; - } - .grad-top, - .grad-bottom { - display: none; - } - .toc-toggle { - display: block; - } - .sidetoggle.ng-hide { - display: none !important; - } - /*.expand-all { - display: none; - }*/ - .sideaffix { - display: none; - } - .mobile-hide { - display: none; - } - .breadcrumb { - white-space: inherit; - } - - /* workaround for #hashtag url is no longer needed*/ - h1:before, - h2:before, - h3:before, - h4:before { - content: ''; - display: none; - } -} - -/* For toc iframe */ -@media (max-width: 260px) { - .toc .level2 > li { - display: block; - } - - .toc .level2 > li:after { - display: none; - } -} - -/* Code snippet */ -code { - color: #717374; - background-color: #f1f2f3; -} - -a code { - color: #337ab7; - background-color: #f1f2f3; -} - -a code:hover { - text-decoration: underline; -} - -.hljs-keyword { - color: rgb(86,156,214); -} - -.hljs-string { - color: rgb(214, 157, 133); -} - -pre { - border: 0; -} - -/* For code snippet line highlight */ -pre > code .line-highlight { - background-color: #ffffcc; -} - -/* Alerts */ -.alert h5 { - text-transform: uppercase; - font-weight: bold; - margin-top: 0; -} - -.alert h5:before { - position:relative; - top:1px; - display:inline-block; - font-family:'Glyphicons Halflings'; - line-height:1; - -webkit-font-smoothing:antialiased; - -moz-osx-font-smoothing:grayscale; - margin-right: 5px; - font-weight: normal; -} - -.alert-info h5:before { - content:"\e086" -} - -.alert-warning h5:before { - content:"\e127" -} - -.alert-danger h5:before { - content:"\e107" -} - -/* For Embedded Video */ -div.embeddedvideo { - padding-top: 56.25%; - position: relative; - width: 100%; -} - -div.embeddedvideo iframe { - position: absolute; - top: 0; - left: 0; - right: 0; - bottom: 0; - width: 100%; - height: 100%; -} - -/* For printer */ -@media print{ - .article.grid-right { - margin-top: 0px; - margin-left: 0px; - } - .sideaffix { - display: none; - } - .mobile-hide { - display: none; - } - .footer { - display: none; - } -} - -/* For tabbed content */ - -.tabGroup { - margin-top: 1rem; } - .tabGroup ul[role="tablist"] { - margin: 0; - padding: 0; - list-style: none; } - .tabGroup ul[role="tablist"] > li { - list-style: none; - display: inline-block; } - .tabGroup a[role="tab"] { - color: #6e6e6e; - box-sizing: border-box; - display: inline-block; - padding: 5px 7.5px; - text-decoration: none; - border-bottom: 2px solid #fff; } - .tabGroup a[role="tab"]:hover, .tabGroup a[role="tab"]:focus, .tabGroup a[role="tab"][aria-selected="true"] { - border-bottom: 2px solid #0050C5; } - .tabGroup a[role="tab"][aria-selected="true"] { - color: #222; } - .tabGroup a[role="tab"]:hover, .tabGroup a[role="tab"]:focus { - color: #0050C5; } - .tabGroup a[role="tab"]:focus { - outline: 1px solid #0050C5; - outline-offset: -1px; } - @media (min-width: 768px) { - .tabGroup a[role="tab"] { - padding: 5px 15px; } } - .tabGroup section[role="tabpanel"] { - border: 1px solid #e0e0e0; - padding: 15px; - margin: 0; - overflow: hidden; } - .tabGroup section[role="tabpanel"] > .codeHeader, - .tabGroup section[role="tabpanel"] > pre { - margin-left: -16px; - margin-right: -16px; } - .tabGroup section[role="tabpanel"] > :first-child { - margin-top: 0; } - .tabGroup section[role="tabpanel"] > pre:last-child { - display: block; - margin-bottom: -16px; } - -.mainContainer[dir='rtl'] main ul[role="tablist"] { - margin: 0; } - -/* Color theme */ - -/* These are not important, tune down **/ -.decalaration, .fieldValue, .parameters, .returns { - color: #a2a2a2; -} - -/* Major sections, increase visibility **/ -#fields, #properties, #methods, #events { - font-weight: bold; - margin-top: 2em; -} diff --git a/docs/styles/docfx.js b/docs/styles/docfx.js deleted file mode 100644 index 3bc1b6774..000000000 --- a/docs/styles/docfx.js +++ /dev/null @@ -1,1223 +0,0 @@ -// Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE file in the project root for full license information. -$(function () { - var active = 'active'; - var expanded = 'in'; - var collapsed = 'collapsed'; - var filtered = 'filtered'; - var show = 'show'; - var hide = 'hide'; - var util = new utility(); - - workAroundFixedHeaderForAnchors(); - highlight(); - enableSearch(); - - renderTables(); - renderAlerts(); - renderLinks(); - renderNavbar(); - renderSidebar(); - renderAffix(); - renderFooter(); - renderLogo(); - - breakText(); - renderTabs(); - - window.refresh = function (article) { - // Update markup result - if (typeof article == 'undefined' || typeof article.content == 'undefined') - console.error("Null Argument"); - $("article.content").html(article.content); - - highlight(); - renderTables(); - renderAlerts(); - renderAffix(); - renderTabs(); - } - - // Add this event listener when needed - // window.addEventListener('content-update', contentUpdate); - - function breakText() { - $(".xref").addClass("text-break"); - var texts = $(".text-break"); - texts.each(function () { - $(this).breakWord(); - }); - } - - // Styling for tables in conceptual documents using Bootstrap. - // See http://getbootstrap.com/css/#tables - function renderTables() { - $('table').addClass('table table-bordered table-striped table-condensed').wrap('
'); - } - - // Styling for alerts. - function renderAlerts() { - $('.NOTE, .TIP').addClass('alert alert-info'); - $('.WARNING').addClass('alert alert-warning'); - $('.IMPORTANT, .CAUTION').addClass('alert alert-danger'); - } - - // Enable anchors for headings. - (function () { - anchors.options = { - placement: 'left', - visible: 'hover' - }; - anchors.add('article h2:not(.no-anchor), article h3:not(.no-anchor), article h4:not(.no-anchor)'); - })(); - - // Open links to different host in a new window. - function renderLinks() { - if ($("meta[property='docfx:newtab']").attr("content") === "true") { - $(document.links).filter(function () { - return this.hostname !== window.location.hostname; - }).attr('target', '_blank'); - } - } - - // Enable highlight.js - function highlight() { - $('pre code').each(function (i, block) { - hljs.highlightBlock(block); - }); - $('pre code[highlight-lines]').each(function (i, block) { - if (block.innerHTML === "") return; - var lines = block.innerHTML.split('\n'); - - queryString = block.getAttribute('highlight-lines'); - if (!queryString) return; - - var ranges = queryString.split(','); - for (var j = 0, range; range = ranges[j++];) { - var found = range.match(/^(\d+)\-(\d+)?$/); - if (found) { - // consider region as `{startlinenumber}-{endlinenumber}`, in which {endlinenumber} is optional - var start = +found[1]; - var end = +found[2]; - if (isNaN(end) || end > lines.length) { - end = lines.length; - } - } else { - // consider region as a sigine line number - if (isNaN(range)) continue; - var start = +range; - var end = start; - } - if (start <= 0 || end <= 0 || start > end || start > lines.length) { - // skip current region if invalid - continue; - } - lines[start - 1] = '' + lines[start - 1]; - lines[end - 1] = lines[end - 1] + ''; - } - - block.innerHTML = lines.join('\n'); - }); - } - - // Support full-text-search - function enableSearch() { - var query; - var relHref = $("meta[property='docfx\\:rel']").attr("content"); - if (typeof relHref === 'undefined') { - return; - } - try { - var worker = new Worker(relHref + 'styles/search-worker.js'); - if (!worker && !window.worker) { - localSearch(); - } else { - webWorkerSearch(); - } - - renderSearchBox(); - highlightKeywords(); - addSearchEvent(); - } catch (e) { - console.error(e); - } - - //Adjust the position of search box in navbar - function renderSearchBox() { - autoCollapse(); - $(window).on('resize', autoCollapse); - $(document).on('click', '.navbar-collapse.in', function (e) { - if ($(e.target).is('a')) { - $(this).collapse('hide'); - } - }); - - function autoCollapse() { - var navbar = $('#autocollapse'); - if (navbar.height() === null) { - setTimeout(autoCollapse, 300); - } - navbar.removeClass(collapsed); - if (navbar.height() > 60) { - navbar.addClass(collapsed); - } - } - } - - // Search factory - function localSearch() { - console.log("using local search"); - var lunrIndex = lunr(function () { - this.ref('href'); - this.field('title', { boost: 50 }); - this.field('keywords', { boost: 20 }); - }); - lunr.tokenizer.seperator = /[\s\-\.]+/; - var searchData = {}; - var searchDataRequest = new XMLHttpRequest(); - - var indexPath = relHref + "index.json"; - if (indexPath) { - searchDataRequest.open('GET', indexPath); - searchDataRequest.onload = function () { - if (this.status != 200) { - return; - } - searchData = JSON.parse(this.responseText); - for (var prop in searchData) { - if (searchData.hasOwnProperty(prop)) { - lunrIndex.add(searchData[prop]); - } - } - } - searchDataRequest.send(); - } - - $("body").bind("queryReady", function () { - var hits = lunrIndex.search(query); - var results = []; - hits.forEach(function (hit) { - var item = searchData[hit.ref]; - results.push({ 'href': item.href, 'title': item.title, 'keywords': item.keywords }); - }); - handleSearchResults(results); - }); - } - - function webWorkerSearch() { - console.log("using Web Worker"); - var indexReady = $.Deferred(); - - worker.onmessage = function (oEvent) { - switch (oEvent.data.e) { - case 'index-ready': - indexReady.resolve(); - break; - case 'query-ready': - var hits = oEvent.data.d; - handleSearchResults(hits); - break; - } - } - - indexReady.promise().done(function () { - $("body").bind("queryReady", function () { - worker.postMessage({ q: query }); - }); - if (query && (query.length >= 3)) { - worker.postMessage({ q: query }); - } - }); - } - - // Highlight the searching keywords - function highlightKeywords() { - var q = url('?q'); - if (q) { - var keywords = q.split("%20"); - keywords.forEach(function (keyword) { - if (keyword !== "") { - $('.data-searchable *').mark(keyword); - $('article *').mark(keyword); - } - }); - } - } - - function addSearchEvent() { - $('body').bind("searchEvent", function () { - $('#search-query').keypress(function (e) { - return e.which !== 13; - }); - - $('#search-query').keyup(function () { - query = $(this).val(); - if (query.length < 3) { - flipContents("show"); - } else { - flipContents("hide"); - $("body").trigger("queryReady"); - $('#search-results>.search-list>span').text('"' + query + '"'); - } - }).off("keydown"); - }); - } - - function flipContents(action) { - if (action === "show") { - $('.hide-when-search').show(); - $('#search-results').hide(); - } else { - $('.hide-when-search').hide(); - $('#search-results').show(); - } - } - - function relativeUrlToAbsoluteUrl(currentUrl, relativeUrl) { - var currentItems = currentUrl.split(/\/+/); - var relativeItems = relativeUrl.split(/\/+/); - var depth = currentItems.length - 1; - var items = []; - for (var i = 0; i < relativeItems.length; i++) { - if (relativeItems[i] === '..') { - depth--; - } else if (relativeItems[i] !== '.') { - items.push(relativeItems[i]); - } - } - return currentItems.slice(0, depth).concat(items).join('/'); - } - - function extractContentBrief(content) { - var briefOffset = 512; - var words = query.split(/\s+/g); - var queryIndex = content.indexOf(words[0]); - var briefContent; - if (queryIndex > briefOffset) { - return "..." + content.slice(queryIndex - briefOffset, queryIndex + briefOffset) + "..."; - } else if (queryIndex <= briefOffset) { - return content.slice(0, queryIndex + briefOffset) + "..."; - } - } - - function handleSearchResults(hits) { - var numPerPage = 10; - var pagination = $('#pagination'); - pagination.empty(); - pagination.removeData("twbs-pagination"); - if (hits.length === 0) { - $('#search-results>.sr-items').html('

No results found

'); - } else { - pagination.twbsPagination({ - first: pagination.data('first'), - prev: pagination.data('prev'), - next: pagination.data('next'), - last: pagination.data('last'), - totalPages: Math.ceil(hits.length / numPerPage), - visiblePages: 5, - onPageClick: function (event, page) { - var start = (page - 1) * numPerPage; - var curHits = hits.slice(start, start + numPerPage); - $('#search-results>.sr-items').empty().append( - curHits.map(function (hit) { - var currentUrl = window.location.href; - var itemRawHref = relativeUrlToAbsoluteUrl(currentUrl, relHref + hit.href); - var itemHref = relHref + hit.href + "?q=" + query; - var itemTitle = hit.title; - var itemBrief = extractContentBrief(hit.keywords); - - var itemNode = $('
').attr('class', 'sr-item'); - var itemTitleNode = $('
').attr('class', 'item-title').append($('').attr('href', itemHref).attr("target", "_blank").attr("rel", "noopener noreferrer").text(itemTitle)); - var itemHrefNode = $('
').attr('class', 'item-href').text(itemRawHref); - var itemBriefNode = $('
').attr('class', 'item-brief').text(itemBrief); - itemNode.append(itemTitleNode).append(itemHrefNode).append(itemBriefNode); - return itemNode; - }) - ); - query.split(/\s+/).forEach(function (word) { - if (word !== '') { - $('#search-results>.sr-items *').mark(word); - } - }); - } - }); - } - } - }; - - // Update href in navbar - function renderNavbar() { - var navbar = $('#navbar ul')[0]; - if (typeof (navbar) === 'undefined') { - loadNavbar(); - } else { - $('#navbar ul a.active').parents('li').addClass(active); - renderBreadcrumb(); - showSearch(); - } - - function showSearch() { - if ($('#search-results').length !== 0) { - $('#search').show(); - $('body').trigger("searchEvent"); - } - } - - function loadNavbar() { - var navbarPath = $("meta[property='docfx\\:navrel']").attr("content"); - if (!navbarPath) { - return; - } - navbarPath = navbarPath.replace(/\\/g, '/'); - var tocPath = $("meta[property='docfx\\:tocrel']").attr("content") || ''; - if (tocPath) tocPath = tocPath.replace(/\\/g, '/'); - $.get(navbarPath, function (data) { - $(data).find("#toc>ul").appendTo("#navbar"); - showSearch(); - var index = navbarPath.lastIndexOf('/'); - var navrel = ''; - if (index > -1) { - navrel = navbarPath.substr(0, index + 1); - } - $('#navbar>ul').addClass('navbar-nav'); - var currentAbsPath = util.getCurrentWindowAbsolutePath(); - // set active item - $('#navbar').find('a[href]').each(function (i, e) { - var href = $(e).attr("href"); - if (util.isRelativePath(href)) { - href = navrel + href; - $(e).attr("href", href); - - var isActive = false; - var originalHref = e.name; - if (originalHref) { - originalHref = navrel + originalHref; - if (util.getDirectory(util.getAbsolutePath(originalHref)) === util.getDirectory(util.getAbsolutePath(tocPath))) { - isActive = true; - } - } else { - if (util.getAbsolutePath(href) === currentAbsPath) { - var dropdown = $(e).attr('data-toggle') == "dropdown" - if (!dropdown) { - isActive = true; - } - } - } - if (isActive) { - $(e).addClass(active); - } - } - }); - renderNavbar(); - }); - } - } - - function renderSidebar() { - var sidetoc = $('#sidetoggle .sidetoc')[0]; - if (typeof (sidetoc) === 'undefined') { - loadToc(); - } else { - registerTocEvents(); - if ($('footer').is(':visible')) { - $('.sidetoc').addClass('shiftup'); - } - - // Scroll to active item - var top = 0; - $('#toc a.active').parents('li').each(function (i, e) { - $(e).addClass(active).addClass(expanded); - $(e).children('a').addClass(active); - }) - $('#toc a.active').parents('li').each(function (i, e) { - top += $(e).position().top; - }) - $('.sidetoc').scrollTop(top - 50); - - if ($('footer').is(':visible')) { - $('.sidetoc').addClass('shiftup'); - } - - renderBreadcrumb(); - } - - function registerTocEvents() { - var tocFilterInput = $('#toc_filter_input'); - var tocFilterClearButton = $('#toc_filter_clear'); - - $('.toc .nav > li > .expand-stub').click(function (e) { - $(e.target).parent().toggleClass(expanded); - }); - $('.toc .nav > li > .expand-stub + a:not([href])').click(function (e) { - $(e.target).parent().toggleClass(expanded); - }); - tocFilterInput.on('input', function (e) { - var val = this.value; - //Save filter string to local session storage - if (typeof(Storage) !== "undefined") { - try { - sessionStorage.filterString = val; - } - catch(e) - {} - } - if (val === '') { - // Clear 'filtered' class - $('#toc li').removeClass(filtered).removeClass(hide); - tocFilterClearButton.fadeOut(); - return; - } - tocFilterClearButton.fadeIn(); - - // set all parent nodes status - $('#toc li>a').filter(function (i, e) { - return $(e).siblings().length > 0 - }).each(function (i, anchor) { - var parent = $(anchor).parent(); - parent.addClass(hide); - parent.removeClass(show); - parent.removeClass(filtered); - }) - - // Get leaf nodes - $('#toc li>a').filter(function (i, e) { - return $(e).siblings().length === 0 - }).each(function (i, anchor) { - var text = $(anchor).attr('title'); - var parent = $(anchor).parent(); - var parentNodes = parent.parents('ul>li'); - for (var i = 0; i < parentNodes.length; i++) { - var parentText = $(parentNodes[i]).children('a').attr('title'); - if (parentText) text = parentText + '.' + text; - }; - if (filterNavItem(text, val)) { - parent.addClass(show); - parent.removeClass(hide); - } else { - parent.addClass(hide); - parent.removeClass(show); - } - }); - $('#toc li>a').filter(function (i, e) { - return $(e).siblings().length > 0 - }).each(function (i, anchor) { - var parent = $(anchor).parent(); - if (parent.find('li.show').length > 0) { - parent.addClass(show); - parent.addClass(filtered); - parent.removeClass(hide); - } else { - parent.addClass(hide); - parent.removeClass(show); - parent.removeClass(filtered); - } - }) - - function filterNavItem(name, text) { - if (!text) return true; - if (name && name.toLowerCase().indexOf(text.toLowerCase()) > -1) return true; - return false; - } - }); - - // toc filter clear button - tocFilterClearButton.hide(); - tocFilterClearButton.on("click", function(e){ - tocFilterInput.val(""); - tocFilterInput.trigger('input'); - if (typeof(Storage) !== "undefined") { - try { - sessionStorage.filterString = ""; - } - catch(e) - {} - } - }); - - //Set toc filter from local session storage on page load - if (typeof(Storage) !== "undefined") { - try { - tocFilterInput.val(sessionStorage.filterString); - tocFilterInput.trigger('input'); - } - catch(e) - {} - } - } - - function loadToc() { - var tocPath = $("meta[property='docfx\\:tocrel']").attr("content"); - if (!tocPath) { - return; - } - tocPath = tocPath.replace(/\\/g, '/'); - $('#sidetoc').load(tocPath + " #sidetoggle > div", function () { - var index = tocPath.lastIndexOf('/'); - var tocrel = ''; - if (index > -1) { - tocrel = tocPath.substr(0, index + 1); - } - var currentHref = util.getCurrentWindowAbsolutePath(); - if(!currentHref.endsWith('.html')) { - currentHref += '.html'; - } - $('#sidetoc').find('a[href]').each(function (i, e) { - var href = $(e).attr("href"); - if (util.isRelativePath(href)) { - href = tocrel + href; - $(e).attr("href", href); - } - - if (util.getAbsolutePath(e.href) === currentHref) { - $(e).addClass(active); - } - - $(e).breakWord(); - }); - - renderSidebar(); - }); - } - } - - function renderBreadcrumb() { - var breadcrumb = []; - $('#navbar a.active').each(function (i, e) { - breadcrumb.push({ - href: e.href, - name: e.innerHTML - }); - }) - $('#toc a.active').each(function (i, e) { - breadcrumb.push({ - href: e.href, - name: e.innerHTML - }); - }) - - var html = util.formList(breadcrumb, 'breadcrumb'); - $('#breadcrumb').html(html); - } - - //Setup Affix - function renderAffix() { - var hierarchy = getHierarchy(); - if (!hierarchy || hierarchy.length <= 0) { - $("#affix").hide(); - } - else { - var html = util.formList(hierarchy, ['nav', 'bs-docs-sidenav']); - $("#affix>div").empty().append(html); - if ($('footer').is(':visible')) { - $(".sideaffix").css("bottom", "70px"); - } - $('#affix a').click(function(e) { - var scrollspy = $('[data-spy="scroll"]').data()['bs.scrollspy']; - var target = e.target.hash; - if (scrollspy && target) { - scrollspy.activate(target); - } - }); - } - - function getHierarchy() { - // supported headers are h1, h2, h3, and h4 - var $headers = $($.map(['h1', 'h2', 'h3', 'h4'], function (h) { return ".article article " + h; }).join(", ")); - - // a stack of hierarchy items that are currently being built - var stack = []; - $headers.each(function (i, e) { - if (!e.id) { - return; - } - - var item = { - name: htmlEncode($(e).text()), - href: "#" + e.id, - items: [] - }; - - if (!stack.length) { - stack.push({ type: e.tagName, siblings: [item] }); - return; - } - - var frame = stack[stack.length - 1]; - if (e.tagName === frame.type) { - frame.siblings.push(item); - } else if (e.tagName[1] > frame.type[1]) { - // we are looking at a child of the last element of frame.siblings. - // push a frame onto the stack. After we've finished building this item's children, - // we'll attach it as a child of the last element - stack.push({ type: e.tagName, siblings: [item] }); - } else { // e.tagName[1] < frame.type[1] - // we are looking at a sibling of an ancestor of the current item. - // pop frames from the stack, building items as we go, until we reach the correct level at which to attach this item. - while (e.tagName[1] < stack[stack.length - 1].type[1]) { - buildParent(); - } - if (e.tagName === stack[stack.length - 1].type) { - stack[stack.length - 1].siblings.push(item); - } else { - stack.push({ type: e.tagName, siblings: [item] }); - } - } - }); - while (stack.length > 1) { - buildParent(); - } - - function buildParent() { - var childrenToAttach = stack.pop(); - var parentFrame = stack[stack.length - 1]; - var parent = parentFrame.siblings[parentFrame.siblings.length - 1]; - $.each(childrenToAttach.siblings, function (i, child) { - parent.items.push(child); - }); - } - if (stack.length > 0) { - - var topLevel = stack.pop().siblings; - if (topLevel.length === 1) { // if there's only one topmost header, dump it - return topLevel[0].items; - } - return topLevel; - } - return undefined; - } - - function htmlEncode(str) { - if (!str) return str; - return str - .replace(/&/g, '&') - .replace(/"/g, '"') - .replace(/'/g, ''') - .replace(//g, '>'); - } - - function htmlDecode(value) { - if (!str) return str; - return value - .replace(/"/g, '"') - .replace(/'/g, "'") - .replace(/</g, '<') - .replace(/>/g, '>') - .replace(/&/g, '&'); - } - - function cssEscape(str) { - // see: http://stackoverflow.com/questions/2786538/need-to-escape-a-special-character-in-a-jquery-selector-string#answer-2837646 - if (!str) return str; - return str - .replace(/[!"#$%&'()*+,.\/:;<=>?@[\\\]^`{|}~]/g, "\\$&"); - } - } - - // Show footer - function renderFooter() { - initFooter(); - $(window).on("scroll", showFooterCore); - - function initFooter() { - if (needFooter()) { - shiftUpBottomCss(); - $("footer").show(); - } else { - resetBottomCss(); - $("footer").hide(); - } - } - - function showFooterCore() { - if (needFooter()) { - shiftUpBottomCss(); - $("footer").fadeIn(); - } else { - resetBottomCss(); - $("footer").fadeOut(); - } - } - - function needFooter() { - var scrollHeight = $(document).height(); - var scrollPosition = $(window).height() + $(window).scrollTop(); - return (scrollHeight - scrollPosition) < 1; - } - - function resetBottomCss() { - $(".sidetoc").removeClass("shiftup"); - $(".sideaffix").removeClass("shiftup"); - } - - function shiftUpBottomCss() { - $(".sidetoc").addClass("shiftup"); - $(".sideaffix").addClass("shiftup"); - } - } - - function renderLogo() { - // For LOGO SVG - // Replace SVG with inline SVG - // http://stackoverflow.com/questions/11978995/how-to-change-color-of-svg-image-using-css-jquery-svg-image-replacement - jQuery('img.svg').each(function () { - var $img = jQuery(this); - var imgID = $img.attr('id'); - var imgClass = $img.attr('class'); - var imgURL = $img.attr('src'); - - jQuery.get(imgURL, function (data) { - // Get the SVG tag, ignore the rest - var $svg = jQuery(data).find('svg'); - - // Add replaced image's ID to the new SVG - if (typeof imgID !== 'undefined') { - $svg = $svg.attr('id', imgID); - } - // Add replaced image's classes to the new SVG - if (typeof imgClass !== 'undefined') { - $svg = $svg.attr('class', imgClass + ' replaced-svg'); - } - - // Remove any invalid XML tags as per http://validator.w3.org - $svg = $svg.removeAttr('xmlns:a'); - - // Replace image with new SVG - $img.replaceWith($svg); - - }, 'xml'); - }); - } - - function renderTabs() { - var contentAttrs = { - id: 'data-bi-id', - name: 'data-bi-name', - type: 'data-bi-type' - }; - - var Tab = (function () { - function Tab(li, a, section) { - this.li = li; - this.a = a; - this.section = section; - } - Object.defineProperty(Tab.prototype, "tabIds", { - get: function () { return this.a.getAttribute('data-tab').split(' '); }, - enumerable: true, - configurable: true - }); - Object.defineProperty(Tab.prototype, "condition", { - get: function () { return this.a.getAttribute('data-condition'); }, - enumerable: true, - configurable: true - }); - Object.defineProperty(Tab.prototype, "visible", { - get: function () { return !this.li.hasAttribute('hidden'); }, - set: function (value) { - if (value) { - this.li.removeAttribute('hidden'); - this.li.removeAttribute('aria-hidden'); - } - else { - this.li.setAttribute('hidden', 'hidden'); - this.li.setAttribute('aria-hidden', 'true'); - } - }, - enumerable: true, - configurable: true - }); - Object.defineProperty(Tab.prototype, "selected", { - get: function () { return !this.section.hasAttribute('hidden'); }, - set: function (value) { - if (value) { - this.a.setAttribute('aria-selected', 'true'); - this.a.tabIndex = 0; - this.section.removeAttribute('hidden'); - this.section.removeAttribute('aria-hidden'); - } - else { - this.a.setAttribute('aria-selected', 'false'); - this.a.tabIndex = -1; - this.section.setAttribute('hidden', 'hidden'); - this.section.setAttribute('aria-hidden', 'true'); - } - }, - enumerable: true, - configurable: true - }); - Tab.prototype.focus = function () { - this.a.focus(); - }; - return Tab; - }()); - - initTabs(document.body); - - function initTabs(container) { - var queryStringTabs = readTabsQueryStringParam(); - var elements = container.querySelectorAll('.tabGroup'); - var state = { groups: [], selectedTabs: [] }; - for (var i = 0; i < elements.length; i++) { - var group = initTabGroup(elements.item(i)); - if (!group.independent) { - updateVisibilityAndSelection(group, state); - state.groups.push(group); - } - } - container.addEventListener('click', function (event) { return handleClick(event, state); }); - if (state.groups.length === 0) { - return state; - } - selectTabs(queryStringTabs, container); - updateTabsQueryStringParam(state); - notifyContentUpdated(); - return state; - } - - function initTabGroup(element) { - var group = { - independent: element.hasAttribute('data-tab-group-independent'), - tabs: [] - }; - var li = element.firstElementChild.firstElementChild; - while (li) { - var a = li.firstElementChild; - a.setAttribute(contentAttrs.name, 'tab'); - var dataTab = a.getAttribute('data-tab').replace(/\+/g, ' '); - a.setAttribute('data-tab', dataTab); - var section = element.querySelector("[id=\"" + a.getAttribute('aria-controls') + "\"]"); - var tab = new Tab(li, a, section); - group.tabs.push(tab); - li = li.nextElementSibling; - } - element.setAttribute(contentAttrs.name, 'tab-group'); - element.tabGroup = group; - return group; - } - - function updateVisibilityAndSelection(group, state) { - var anySelected = false; - var firstVisibleTab; - for (var _i = 0, _a = group.tabs; _i < _a.length; _i++) { - var tab = _a[_i]; - tab.visible = tab.condition === null || state.selectedTabs.indexOf(tab.condition) !== -1; - if (tab.visible) { - if (!firstVisibleTab) { - firstVisibleTab = tab; - } - } - tab.selected = tab.visible && arraysIntersect(state.selectedTabs, tab.tabIds); - anySelected = anySelected || tab.selected; - } - if (!anySelected) { - for (var _b = 0, _c = group.tabs; _b < _c.length; _b++) { - var tabIds = _c[_b].tabIds; - for (var _d = 0, tabIds_1 = tabIds; _d < tabIds_1.length; _d++) { - var tabId = tabIds_1[_d]; - var index = state.selectedTabs.indexOf(tabId); - if (index === -1) { - continue; - } - state.selectedTabs.splice(index, 1); - } - } - var tab = firstVisibleTab; - tab.selected = true; - state.selectedTabs.push(tab.tabIds[0]); - } - } - - function getTabInfoFromEvent(event) { - if (!(event.target instanceof HTMLElement)) { - return null; - } - var anchor = event.target.closest('a[data-tab]'); - if (anchor === null) { - return null; - } - var tabIds = anchor.getAttribute('data-tab').split(' '); - var group = anchor.parentElement.parentElement.parentElement.tabGroup; - if (group === undefined) { - return null; - } - return { tabIds: tabIds, group: group, anchor: anchor }; - } - - function handleClick(event, state) { - var info = getTabInfoFromEvent(event); - if (info === null) { - return; - } - event.preventDefault(); - info.anchor.href = 'javascript:'; - setTimeout(function () { return info.anchor.href = '#' + info.anchor.getAttribute('aria-controls'); }); - var tabIds = info.tabIds, group = info.group; - var originalTop = info.anchor.getBoundingClientRect().top; - if (group.independent) { - for (var _i = 0, _a = group.tabs; _i < _a.length; _i++) { - var tab = _a[_i]; - tab.selected = arraysIntersect(tab.tabIds, tabIds); - } - } - else { - if (arraysIntersect(state.selectedTabs, tabIds)) { - return; - } - var previousTabId = group.tabs.filter(function (t) { return t.selected; })[0].tabIds[0]; - state.selectedTabs.splice(state.selectedTabs.indexOf(previousTabId), 1, tabIds[0]); - for (var _b = 0, _c = state.groups; _b < _c.length; _b++) { - var group_1 = _c[_b]; - updateVisibilityAndSelection(group_1, state); - } - updateTabsQueryStringParam(state); - } - notifyContentUpdated(); - var top = info.anchor.getBoundingClientRect().top; - if (top !== originalTop && event instanceof MouseEvent) { - window.scrollTo(0, window.pageYOffset + top - originalTop); - } - } - - function selectTabs(tabIds) { - for (var _i = 0, tabIds_1 = tabIds; _i < tabIds_1.length; _i++) { - var tabId = tabIds_1[_i]; - var a = document.querySelector(".tabGroup > ul > li > a[data-tab=\"" + tabId + "\"]:not([hidden])"); - if (a === null) { - return; - } - a.dispatchEvent(new CustomEvent('click', { bubbles: true })); - } - } - - function readTabsQueryStringParam() { - var qs = parseQueryString(); - var t = qs.tabs; - if (t === undefined || t === '') { - return []; - } - return t.split(','); - } - - function updateTabsQueryStringParam(state) { - var qs = parseQueryString(); - qs.tabs = state.selectedTabs.join(); - var url = location.protocol + "//" + location.host + location.pathname + "?" + toQueryString(qs) + location.hash; - if (location.href === url) { - return; - } - history.replaceState({}, document.title, url); - } - - function toQueryString(args) { - var parts = []; - for (var name_1 in args) { - if (args.hasOwnProperty(name_1) && args[name_1] !== '' && args[name_1] !== null && args[name_1] !== undefined) { - parts.push(encodeURIComponent(name_1) + '=' + encodeURIComponent(args[name_1])); - } - } - return parts.join('&'); - } - - function parseQueryString(queryString) { - var match; - var pl = /\+/g; - var search = /([^&=]+)=?([^&]*)/g; - var decode = function (s) { return decodeURIComponent(s.replace(pl, ' ')); }; - if (queryString === undefined) { - queryString = ''; - } - queryString = queryString.substring(1); - var urlParams = {}; - while (match = search.exec(queryString)) { - urlParams[decode(match[1])] = decode(match[2]); - } - return urlParams; - } - - function arraysIntersect(a, b) { - for (var _i = 0, a_1 = a; _i < a_1.length; _i++) { - var itemA = a_1[_i]; - for (var _a = 0, b_1 = b; _a < b_1.length; _a++) { - var itemB = b_1[_a]; - if (itemA === itemB) { - return true; - } - } - } - return false; - } - - function notifyContentUpdated() { - // Dispatch this event when needed - // window.dispatchEvent(new CustomEvent('content-update')); - } - } - - function utility() { - this.getAbsolutePath = getAbsolutePath; - this.isRelativePath = isRelativePath; - this.isAbsolutePath = isAbsolutePath; - this.getCurrentWindowAbsolutePath = getCurrentWindowAbsolutePath; - this.getDirectory = getDirectory; - this.formList = formList; - - function getAbsolutePath(href) { - if (isAbsolutePath(href)) return href; - var currentAbsPath = getCurrentWindowAbsolutePath(); - var stack = currentAbsPath.split("/"); - stack.pop(); - var parts = href.split("/"); - for (var i=0; i< parts.length; i++) { - if (parts[i] == ".") continue; - if (parts[i] == ".." && stack.length > 0) - stack.pop(); - else - stack.push(parts[i]); - } - var p = stack.join("/"); - return p; - } - - function isRelativePath(href) { - if (href === undefined || href === '' || href[0] === '/') { - return false; - } - return !isAbsolutePath(href); - } - - function isAbsolutePath(href) { - return (/^(?:[a-z]+:)?\/\//i).test(href); - } - - function getCurrentWindowAbsolutePath() { - return window.location.origin + window.location.pathname; - } - function getDirectory(href) { - if (!href) return ''; - var index = href.lastIndexOf('/'); - if (index == -1) return ''; - if (index > -1) { - return href.substr(0, index); - } - } - - function formList(item, classes) { - var level = 1; - var model = { - items: item - }; - var cls = [].concat(classes).join(" "); - return getList(model, cls); - - function getList(model, cls) { - if (!model || !model.items) return null; - var l = model.items.length; - if (l === 0) return null; - var html = ''; - return html; - } - } - - /** - * Add into long word. - * @param {String} text - The word to break. It should be in plain text without HTML tags. - */ - function breakPlainText(text) { - if (!text) return text; - return text.replace(/([a-z])([A-Z])|(\.)(\w)/g, '$1$3$2$4') - } - - /** - * Add into long word. The jQuery element should contain no html tags. - * If the jQuery element contains tags, this function will not change the element. - */ - $.fn.breakWord = function () { - if (this.html() == this.text()) { - this.html(function (index, text) { - return breakPlainText(text); - }) - } - return this; - } - } - - // adjusted from https://stackoverflow.com/a/13067009/1523776 - function workAroundFixedHeaderForAnchors() { - var HISTORY_SUPPORT = !!(history && history.pushState); - var ANCHOR_REGEX = /^#[^ ]+$/; - - function getFixedOffset() { - return $('header').first().height(); - } - - /** - * If the provided href is an anchor which resolves to an element on the - * page, scroll to it. - * @param {String} href - * @return {Boolean} - Was the href an anchor. - */ - function scrollIfAnchor(href, pushToHistory) { - var match, rect, anchorOffset; - - if (!ANCHOR_REGEX.test(href)) { - return false; - } - - match = document.getElementById(href.slice(1)); - - if (match) { - rect = match.getBoundingClientRect(); - anchorOffset = window.pageYOffset + rect.top - getFixedOffset(); - window.scrollTo(window.pageXOffset, anchorOffset); - - // Add the state to history as-per normal anchor links - if (HISTORY_SUPPORT && pushToHistory) { - history.pushState({}, document.title, location.pathname + href); - } - } - - return !!match; - } - - /** - * Attempt to scroll to the current location's hash. - */ - function scrollToCurrent() { - scrollIfAnchor(window.location.hash); - } - - /** - * If the click event's target was an anchor, fix the scroll position. - */ - function delegateAnchors(e) { - var elem = e.target; - - if (scrollIfAnchor(elem.getAttribute('href'), true)) { - e.preventDefault(); - } - } - - $(window).on('hashchange', scrollToCurrent); - - $(window).on('load', function () { - // scroll to the anchor if present, offset by the header - scrollToCurrent(); - }); - - $(document).ready(function () { - // Exclude tabbed content case - $('a:not([data-tab])').click(function (e) { delegateAnchors(e); }); - }); - } -}); diff --git a/docs/styles/docfx.vendor.css b/docs/styles/docfx.vendor.css deleted file mode 100644 index 9bd4516af..000000000 --- a/docs/styles/docfx.vendor.css +++ /dev/null @@ -1,1472 +0,0 @@ -/*! - * Bootstrap v3.4.1 (https://getbootstrap.com/) - * Copyright 2011-2019 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - */ -/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */ -.label,sub,sup{vertical-align:baseline} -hr,img{border:0} -body,figure{margin:0} -.btn-group>.btn-group,.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.dropdown-menu{float:left} -.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.pre-scrollable{max-height:340px} -html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%} -article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block} -audio,canvas,progress,video{display:inline-block;vertical-align:baseline} -audio:not([controls]){display:none;height:0} -[hidden],template{display:none} -a{background-color:transparent} -a:active,a:hover{outline:0} -abbr[title]{border-bottom:none;-webkit-text-decoration:underline dotted;-moz-text-decoration:underline dotted;text-decoration:underline dotted} -b,optgroup,strong{font-weight:700} -dfn{font-style:italic} -h1{margin:.67em 0} -mark{background:#ff0;color:#000} -sub,sup{font-size:75%;line-height:0;position:relative} -sup{top:-.5em} -sub{bottom:-.25em} -img{vertical-align:middle} -svg:not(:root){overflow:hidden} -hr{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;height:0} -pre,textarea{overflow:auto} -code,kbd,pre,samp{font-size:1em} -button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0} -.glyphicon,address{font-style:normal} -button{overflow:visible} -button,select{text-transform:none} -button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer} -button[disabled],html input[disabled]{cursor:default} -button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0} -input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0} -input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto} -input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none} -table{border-collapse:collapse;border-spacing:0} -td,th{padding:0} -/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */ -@media print{blockquote,img,pre,tr{page-break-inside:avoid} -*,:after,:before{color:#000!important;text-shadow:none!important;background:0 0!important;-webkit-box-shadow:none!important;box-shadow:none!important} -a,a:visited{text-decoration:underline} -a[href]:after{content:" (" attr(href) ")"} -abbr[title]:after{content:" (" attr(title) ")"} -a[href^="javascript:"]:after,a[href^="#"]:after{content:""} -blockquote,pre{border:1px solid #999} -thead{display:table-header-group} -img{max-width:100%!important} -h2,h3,p{orphans:3;widows:3} -h2,h3{page-break-after:avoid} -.navbar{display:none} -.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important} -.label{border:1px solid #000} -.table{border-collapse:collapse!important} -.table td,.table th{background-color:#fff!important} -.table-bordered td,.table-bordered th{border:1px solid #ddd!important} -} -.img-thumbnail,body{background-color:#fff} -@font-face{font-family:"Glyphicons Halflings";src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format("embedded-opentype"),url(../fonts/glyphicons-halflings-regular.woff2) format("woff2"),url(../fonts/glyphicons-halflings-regular.woff) format("woff"),url(../fonts/glyphicons-halflings-regular.ttf) format("truetype"),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format("svg")} -.glyphicon{position:relative;top:1px;display:inline-block;font-family:"Glyphicons Halflings";font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale} -.glyphicon-asterisk:before{content:"\002a"} -.glyphicon-plus:before{content:"\002b"} -.glyphicon-eur:before,.glyphicon-euro:before{content:"\20ac"} -.glyphicon-minus:before{content:"\2212"} -.glyphicon-cloud:before{content:"\2601"} -.glyphicon-envelope:before{content:"\2709"} -.glyphicon-pencil:before{content:"\270f"} -.glyphicon-glass:before{content:"\e001"} -.glyphicon-music:before{content:"\e002"} -.glyphicon-search:before{content:"\e003"} -.glyphicon-heart:before{content:"\e005"} -.glyphicon-star:before{content:"\e006"} -.glyphicon-star-empty:before{content:"\e007"} -.glyphicon-user:before{content:"\e008"} -.glyphicon-film:before{content:"\e009"} -.glyphicon-th-large:before{content:"\e010"} -.glyphicon-th:before{content:"\e011"} -.glyphicon-th-list:before{content:"\e012"} -.glyphicon-ok:before{content:"\e013"} -.glyphicon-remove:before{content:"\e014"} -.glyphicon-zoom-in:before{content:"\e015"} -.glyphicon-zoom-out:before{content:"\e016"} -.glyphicon-off:before{content:"\e017"} -.glyphicon-signal:before{content:"\e018"} -.glyphicon-cog:before{content:"\e019"} -.glyphicon-trash:before{content:"\e020"} -.glyphicon-home:before{content:"\e021"} -.glyphicon-file:before{content:"\e022"} -.glyphicon-time:before{content:"\e023"} -.glyphicon-road:before{content:"\e024"} -.glyphicon-download-alt:before{content:"\e025"} -.glyphicon-download:before{content:"\e026"} -.glyphicon-upload:before{content:"\e027"} -.glyphicon-inbox:before{content:"\e028"} -.glyphicon-play-circle:before{content:"\e029"} -.glyphicon-repeat:before{content:"\e030"} -.glyphicon-refresh:before{content:"\e031"} -.glyphicon-list-alt:before{content:"\e032"} -.glyphicon-lock:before{content:"\e033"} -.glyphicon-flag:before{content:"\e034"} -.glyphicon-headphones:before{content:"\e035"} -.glyphicon-volume-off:before{content:"\e036"} -.glyphicon-volume-down:before{content:"\e037"} -.glyphicon-volume-up:before{content:"\e038"} -.glyphicon-qrcode:before{content:"\e039"} -.glyphicon-barcode:before{content:"\e040"} -.glyphicon-tag:before{content:"\e041"} -.glyphicon-tags:before{content:"\e042"} -.glyphicon-book:before{content:"\e043"} -.glyphicon-bookmark:before{content:"\e044"} -.glyphicon-print:before{content:"\e045"} -.glyphicon-camera:before{content:"\e046"} -.glyphicon-font:before{content:"\e047"} -.glyphicon-bold:before{content:"\e048"} -.glyphicon-italic:before{content:"\e049"} -.glyphicon-text-height:before{content:"\e050"} -.glyphicon-text-width:before{content:"\e051"} -.glyphicon-align-left:before{content:"\e052"} -.glyphicon-align-center:before{content:"\e053"} -.glyphicon-align-right:before{content:"\e054"} -.glyphicon-align-justify:before{content:"\e055"} -.glyphicon-list:before{content:"\e056"} -.glyphicon-indent-left:before{content:"\e057"} -.glyphicon-indent-right:before{content:"\e058"} -.glyphicon-facetime-video:before{content:"\e059"} -.glyphicon-picture:before{content:"\e060"} -.glyphicon-map-marker:before{content:"\e062"} -.glyphicon-adjust:before{content:"\e063"} -.glyphicon-tint:before{content:"\e064"} -.glyphicon-edit:before{content:"\e065"} -.glyphicon-share:before{content:"\e066"} -.glyphicon-check:before{content:"\e067"} -.glyphicon-move:before{content:"\e068"} -.glyphicon-step-backward:before{content:"\e069"} -.glyphicon-fast-backward:before{content:"\e070"} -.glyphicon-backward:before{content:"\e071"} -.glyphicon-play:before{content:"\e072"} -.glyphicon-pause:before{content:"\e073"} -.glyphicon-stop:before{content:"\e074"} -.glyphicon-forward:before{content:"\e075"} -.glyphicon-fast-forward:before{content:"\e076"} -.glyphicon-step-forward:before{content:"\e077"} -.glyphicon-eject:before{content:"\e078"} -.glyphicon-chevron-left:before{content:"\e079"} -.glyphicon-chevron-right:before{content:"\e080"} -.glyphicon-plus-sign:before{content:"\e081"} -.glyphicon-minus-sign:before{content:"\e082"} -.glyphicon-remove-sign:before{content:"\e083"} -.glyphicon-ok-sign:before{content:"\e084"} -.glyphicon-question-sign:before{content:"\e085"} -.glyphicon-info-sign:before{content:"\e086"} -.glyphicon-screenshot:before{content:"\e087"} -.glyphicon-remove-circle:before{content:"\e088"} -.glyphicon-ok-circle:before{content:"\e089"} -.glyphicon-ban-circle:before{content:"\e090"} -.glyphicon-arrow-left:before{content:"\e091"} -.glyphicon-arrow-right:before{content:"\e092"} -.glyphicon-arrow-up:before{content:"\e093"} -.glyphicon-arrow-down:before{content:"\e094"} -.glyphicon-share-alt:before{content:"\e095"} -.glyphicon-resize-full:before{content:"\e096"} -.glyphicon-resize-small:before{content:"\e097"} -.glyphicon-exclamation-sign:before{content:"\e101"} -.glyphicon-gift:before{content:"\e102"} -.glyphicon-leaf:before{content:"\e103"} -.glyphicon-fire:before{content:"\e104"} -.glyphicon-eye-open:before{content:"\e105"} -.glyphicon-eye-close:before{content:"\e106"} -.glyphicon-warning-sign:before{content:"\e107"} -.glyphicon-plane:before{content:"\e108"} -.glyphicon-calendar:before{content:"\e109"} -.glyphicon-random:before{content:"\e110"} -.glyphicon-comment:before{content:"\e111"} -.glyphicon-magnet:before{content:"\e112"} -.glyphicon-chevron-up:before{content:"\e113"} -.glyphicon-chevron-down:before{content:"\e114"} -.glyphicon-retweet:before{content:"\e115"} -.glyphicon-shopping-cart:before{content:"\e116"} -.glyphicon-folder-close:before{content:"\e117"} -.glyphicon-folder-open:before{content:"\e118"} -.glyphicon-resize-vertical:before{content:"\e119"} -.glyphicon-resize-horizontal:before{content:"\e120"} -.glyphicon-hdd:before{content:"\e121"} -.glyphicon-bullhorn:before{content:"\e122"} -.glyphicon-bell:before{content:"\e123"} -.glyphicon-certificate:before{content:"\e124"} -.glyphicon-thumbs-up:before{content:"\e125"} -.glyphicon-thumbs-down:before{content:"\e126"} -.glyphicon-hand-right:before{content:"\e127"} -.glyphicon-hand-left:before{content:"\e128"} -.glyphicon-hand-up:before{content:"\e129"} -.glyphicon-hand-down:before{content:"\e130"} -.glyphicon-circle-arrow-right:before{content:"\e131"} -.glyphicon-circle-arrow-left:before{content:"\e132"} -.glyphicon-circle-arrow-up:before{content:"\e133"} -.glyphicon-circle-arrow-down:before{content:"\e134"} -.glyphicon-globe:before{content:"\e135"} -.glyphicon-wrench:before{content:"\e136"} -.glyphicon-tasks:before{content:"\e137"} -.glyphicon-filter:before{content:"\e138"} -.glyphicon-briefcase:before{content:"\e139"} -.glyphicon-fullscreen:before{content:"\e140"} -.glyphicon-dashboard:before{content:"\e141"} -.glyphicon-paperclip:before{content:"\e142"} -.glyphicon-heart-empty:before{content:"\e143"} -.glyphicon-link:before{content:"\e144"} -.glyphicon-phone:before{content:"\e145"} -.glyphicon-pushpin:before{content:"\e146"} -.glyphicon-usd:before{content:"\e148"} -.glyphicon-gbp:before{content:"\e149"} -.glyphicon-sort:before{content:"\e150"} -.glyphicon-sort-by-alphabet:before{content:"\e151"} -.glyphicon-sort-by-alphabet-alt:before{content:"\e152"} -.glyphicon-sort-by-order:before{content:"\e153"} -.glyphicon-sort-by-order-alt:before{content:"\e154"} -.glyphicon-sort-by-attributes:before{content:"\e155"} -.glyphicon-sort-by-attributes-alt:before{content:"\e156"} -.glyphicon-unchecked:before{content:"\e157"} -.glyphicon-expand:before{content:"\e158"} -.glyphicon-collapse-down:before{content:"\e159"} -.glyphicon-collapse-up:before{content:"\e160"} -.glyphicon-log-in:before{content:"\e161"} -.glyphicon-flash:before{content:"\e162"} -.glyphicon-log-out:before{content:"\e163"} -.glyphicon-new-window:before{content:"\e164"} -.glyphicon-record:before{content:"\e165"} -.glyphicon-save:before{content:"\e166"} -.glyphicon-open:before{content:"\e167"} -.glyphicon-saved:before{content:"\e168"} -.glyphicon-import:before{content:"\e169"} -.glyphicon-export:before{content:"\e170"} -.glyphicon-send:before{content:"\e171"} -.glyphicon-floppy-disk:before{content:"\e172"} -.glyphicon-floppy-saved:before{content:"\e173"} -.glyphicon-floppy-remove:before{content:"\e174"} -.glyphicon-floppy-save:before{content:"\e175"} -.glyphicon-floppy-open:before{content:"\e176"} -.glyphicon-credit-card:before{content:"\e177"} -.glyphicon-transfer:before{content:"\e178"} -.glyphicon-cutlery:before{content:"\e179"} -.glyphicon-header:before{content:"\e180"} -.glyphicon-compressed:before{content:"\e181"} -.glyphicon-earphone:before{content:"\e182"} -.glyphicon-phone-alt:before{content:"\e183"} -.glyphicon-tower:before{content:"\e184"} -.glyphicon-stats:before{content:"\e185"} -.glyphicon-sd-video:before{content:"\e186"} -.glyphicon-hd-video:before{content:"\e187"} -.glyphicon-subtitles:before{content:"\e188"} -.glyphicon-sound-stereo:before{content:"\e189"} -.glyphicon-sound-dolby:before{content:"\e190"} -.glyphicon-sound-5-1:before{content:"\e191"} -.glyphicon-sound-6-1:before{content:"\e192"} -.glyphicon-sound-7-1:before{content:"\e193"} -.glyphicon-copyright-mark:before{content:"\e194"} -.glyphicon-registration-mark:before{content:"\e195"} -.glyphicon-cloud-download:before{content:"\e197"} -.glyphicon-cloud-upload:before{content:"\e198"} -.glyphicon-tree-conifer:before{content:"\e199"} -.glyphicon-tree-deciduous:before{content:"\e200"} -.glyphicon-cd:before{content:"\e201"} -.glyphicon-save-file:before{content:"\e202"} -.glyphicon-open-file:before{content:"\e203"} -.glyphicon-level-up:before{content:"\e204"} -.glyphicon-copy:before{content:"\e205"} -.glyphicon-paste:before{content:"\e206"} -.glyphicon-alert:before{content:"\e209"} -.glyphicon-equalizer:before{content:"\e210"} -.glyphicon-king:before{content:"\e211"} -.glyphicon-queen:before{content:"\e212"} -.glyphicon-pawn:before{content:"\e213"} -.glyphicon-bishop:before{content:"\e214"} -.glyphicon-knight:before{content:"\e215"} -.glyphicon-baby-formula:before{content:"\e216"} -.glyphicon-tent:before{content:"\26fa"} -.glyphicon-blackboard:before{content:"\e218"} -.glyphicon-bed:before{content:"\e219"} -.glyphicon-apple:before{content:"\f8ff"} -.glyphicon-erase:before{content:"\e221"} -.glyphicon-hourglass:before{content:"\231b"} -.glyphicon-lamp:before{content:"\e223"} -.glyphicon-duplicate:before{content:"\e224"} -.glyphicon-piggy-bank:before{content:"\e225"} -.glyphicon-scissors:before{content:"\e226"} -.glyphicon-bitcoin:before,.glyphicon-btc:before,.glyphicon-xbt:before{content:"\e227"} -.glyphicon-jpy:before,.glyphicon-yen:before{content:"\00a5"} -.glyphicon-rub:before,.glyphicon-ruble:before{content:"\20bd"} -.glyphicon-scale:before{content:"\e230"} -.glyphicon-ice-lolly:before{content:"\e231"} -.glyphicon-ice-lolly-tasted:before{content:"\e232"} -.glyphicon-education:before{content:"\e233"} -.glyphicon-option-horizontal:before{content:"\e234"} -.glyphicon-option-vertical:before{content:"\e235"} -.glyphicon-menu-hamburger:before{content:"\e236"} -.glyphicon-modal-window:before{content:"\e237"} -.glyphicon-oil:before{content:"\e238"} -.glyphicon-grain:before{content:"\e239"} -.glyphicon-sunglasses:before{content:"\e240"} -.glyphicon-text-size:before{content:"\e241"} -.glyphicon-text-color:before{content:"\e242"} -.glyphicon-text-background:before{content:"\e243"} -.glyphicon-object-align-top:before{content:"\e244"} -.glyphicon-object-align-bottom:before{content:"\e245"} -.glyphicon-object-align-horizontal:before{content:"\e246"} -.glyphicon-object-align-left:before{content:"\e247"} -.glyphicon-object-align-vertical:before{content:"\e248"} -.glyphicon-object-align-right:before{content:"\e249"} -.glyphicon-triangle-right:before{content:"\e250"} -.glyphicon-triangle-left:before{content:"\e251"} -.glyphicon-triangle-bottom:before{content:"\e252"} -.glyphicon-triangle-top:before{content:"\e253"} -.glyphicon-console:before{content:"\e254"} -.glyphicon-superscript:before{content:"\e255"} -.glyphicon-subscript:before{content:"\e256"} -.glyphicon-menu-left:before{content:"\e257"} -.glyphicon-menu-right:before{content:"\e258"} -.glyphicon-menu-down:before{content:"\e259"} -.glyphicon-menu-up:before{content:"\e260"} -*,:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} -html{font-size:10px;-webkit-tap-highlight-color:transparent} -body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333} -button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit} -a{color:#337ab7;text-decoration:none} -a:focus,a:hover{color:#23527c;text-decoration:underline} -a:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px} -.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto} -.img-rounded{border-radius:6px} -.img-thumbnail{padding:4px;line-height:1.42857143;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto} -.img-circle{border-radius:50%} -hr{margin-top:20px;margin-bottom:20px;border-top:1px solid #eee} -.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0} -.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto} -[role=button]{cursor:pointer} -.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit} -.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777} -.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px} -.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%} -.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px} -.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%} -.h1,h1{font-size:36px} -.h2,h2{font-size:30px} -.h3,h3{font-size:24px} -.h4,h4{font-size:18px} -.h5,h5{font-size:14px} -.h6,h6{font-size:12px} -p{margin:0 0 10px} -.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4} -dt,kbd kbd,label{font-weight:700} -address,blockquote .small,blockquote footer,blockquote small,dd,dt,pre{line-height:1.42857143} -@media (min-width:768px){.lead{font-size:21px} -} -.small,small{font-size:85%} -.mark,mark{padding:.2em;background-color:#fcf8e3} -.list-inline,.list-unstyled{padding-left:0;list-style:none} -.text-left{text-align:left} -.text-right{text-align:right} -.text-center{text-align:center} -.text-justify{text-align:justify} -.text-nowrap{white-space:nowrap} -.text-lowercase{text-transform:lowercase} -.text-uppercase{text-transform:uppercase} -.text-capitalize{text-transform:capitalize} -.text-muted{color:#777} -.text-primary{color:#337ab7} -a.text-primary:focus,a.text-primary:hover{color:#286090} -.text-success{color:#3c763d} -a.text-success:focus,a.text-success:hover{color:#2b542c} -.text-info{color:#31708f} -a.text-info:focus,a.text-info:hover{color:#245269} -.text-warning{color:#8a6d3b} -a.text-warning:focus,a.text-warning:hover{color:#66512c} -.text-danger{color:#a94442} -a.text-danger:focus,a.text-danger:hover{color:#843534} -.bg-primary{color:#fff;background-color:#337ab7} -a.bg-primary:focus,a.bg-primary:hover{background-color:#286090} -.bg-success{background-color:#dff0d8} -a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3} -.bg-info{background-color:#d9edf7} -a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee} -.bg-warning{background-color:#fcf8e3} -a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5} -.bg-danger{background-color:#f2dede} -a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9} -pre code,table{background-color:transparent} -.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee} -dl,ol,ul{margin-top:0} -blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child,ol ol,ol ul,ul ol,ul ul{margin-bottom:0} -address,dl{margin-bottom:20px} -ol,ul{margin-bottom:10px} -.list-inline{margin-left:-5px} -.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px} -dd{margin-left:0} -@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap} -.dl-horizontal dd{margin-left:180px} -.container{width:750px} -} -abbr[data-original-title],abbr[title]{cursor:help} -.checkbox.disabled label,.form-control[disabled],.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .form-control,fieldset[disabled] .radio label,fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed} -.initialism{font-size:90%;text-transform:uppercase} -blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee} -blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;color:#777} -legend,pre{display:block;color:#333} -blockquote .small:before,blockquote footer:before,blockquote small:before{content:"\2014 \00A0"} -.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0} -code,kbd{padding:2px 4px;font-size:90%} -caption,th{text-align:left} -.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:""} -.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:"\00A0 \2014"} -code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace} -code{color:#c7254e;background-color:#f9f2f4;border-radius:4px} -kbd{color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)} -kbd kbd{padding:0;font-size:100%;-webkit-box-shadow:none;box-shadow:none} -pre{padding:9.5px;margin:0 0 10px;font-size:13px;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px} -pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;border-radius:0} -.container,.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto} -.pre-scrollable{overflow-y:scroll} -@media (min-width:992px){.container{width:970px} -} -@media (min-width:1200px){.container{width:1170px} -} -.row{margin-right:-15px;margin-left:-15px} -.row-no-gutters{margin-right:0;margin-left:0} -.row-no-gutters [class*=col-]{padding-right:0;padding-left:0} -.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px} -.col-xs-12{width:100%} -.col-xs-11{width:91.66666667%} -.col-xs-10{width:83.33333333%} -.col-xs-9{width:75%} -.col-xs-8{width:66.66666667%} -.col-xs-7{width:58.33333333%} -.col-xs-6{width:50%} -.col-xs-5{width:41.66666667%} -.col-xs-4{width:33.33333333%} -.col-xs-3{width:25%} -.col-xs-2{width:16.66666667%} -.col-xs-1{width:8.33333333%} -.col-xs-pull-12{right:100%} -.col-xs-pull-11{right:91.66666667%} -.col-xs-pull-10{right:83.33333333%} -.col-xs-pull-9{right:75%} -.col-xs-pull-8{right:66.66666667%} -.col-xs-pull-7{right:58.33333333%} -.col-xs-pull-6{right:50%} -.col-xs-pull-5{right:41.66666667%} -.col-xs-pull-4{right:33.33333333%} -.col-xs-pull-3{right:25%} -.col-xs-pull-2{right:16.66666667%} -.col-xs-pull-1{right:8.33333333%} -.col-xs-pull-0{right:auto} -.col-xs-push-12{left:100%} -.col-xs-push-11{left:91.66666667%} -.col-xs-push-10{left:83.33333333%} -.col-xs-push-9{left:75%} -.col-xs-push-8{left:66.66666667%} -.col-xs-push-7{left:58.33333333%} -.col-xs-push-6{left:50%} -.col-xs-push-5{left:41.66666667%} -.col-xs-push-4{left:33.33333333%} -.col-xs-push-3{left:25%} -.col-xs-push-2{left:16.66666667%} -.col-xs-push-1{left:8.33333333%} -.col-xs-push-0{left:auto} -.col-xs-offset-12{margin-left:100%} -.col-xs-offset-11{margin-left:91.66666667%} -.col-xs-offset-10{margin-left:83.33333333%} -.col-xs-offset-9{margin-left:75%} -.col-xs-offset-8{margin-left:66.66666667%} -.col-xs-offset-7{margin-left:58.33333333%} -.col-xs-offset-6{margin-left:50%} -.col-xs-offset-5{margin-left:41.66666667%} -.col-xs-offset-4{margin-left:33.33333333%} -.col-xs-offset-3{margin-left:25%} -.col-xs-offset-2{margin-left:16.66666667%} -.col-xs-offset-1{margin-left:8.33333333%} -.col-xs-offset-0{margin-left:0} -@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left} -.col-sm-12{width:100%} -.col-sm-11{width:91.66666667%} -.col-sm-10{width:83.33333333%} -.col-sm-9{width:75%} -.col-sm-8{width:66.66666667%} -.col-sm-7{width:58.33333333%} -.col-sm-6{width:50%} -.col-sm-5{width:41.66666667%} -.col-sm-4{width:33.33333333%} -.col-sm-3{width:25%} -.col-sm-2{width:16.66666667%} -.col-sm-1{width:8.33333333%} -.col-sm-pull-12{right:100%} -.col-sm-pull-11{right:91.66666667%} -.col-sm-pull-10{right:83.33333333%} -.col-sm-pull-9{right:75%} -.col-sm-pull-8{right:66.66666667%} -.col-sm-pull-7{right:58.33333333%} -.col-sm-pull-6{right:50%} -.col-sm-pull-5{right:41.66666667%} -.col-sm-pull-4{right:33.33333333%} -.col-sm-pull-3{right:25%} -.col-sm-pull-2{right:16.66666667%} -.col-sm-pull-1{right:8.33333333%} -.col-sm-pull-0{right:auto} -.col-sm-push-12{left:100%} -.col-sm-push-11{left:91.66666667%} -.col-sm-push-10{left:83.33333333%} -.col-sm-push-9{left:75%} -.col-sm-push-8{left:66.66666667%} -.col-sm-push-7{left:58.33333333%} -.col-sm-push-6{left:50%} -.col-sm-push-5{left:41.66666667%} -.col-sm-push-4{left:33.33333333%} -.col-sm-push-3{left:25%} -.col-sm-push-2{left:16.66666667%} -.col-sm-push-1{left:8.33333333%} -.col-sm-push-0{left:auto} -.col-sm-offset-12{margin-left:100%} -.col-sm-offset-11{margin-left:91.66666667%} -.col-sm-offset-10{margin-left:83.33333333%} -.col-sm-offset-9{margin-left:75%} -.col-sm-offset-8{margin-left:66.66666667%} -.col-sm-offset-7{margin-left:58.33333333%} -.col-sm-offset-6{margin-left:50%} -.col-sm-offset-5{margin-left:41.66666667%} -.col-sm-offset-4{margin-left:33.33333333%} -.col-sm-offset-3{margin-left:25%} -.col-sm-offset-2{margin-left:16.66666667%} -.col-sm-offset-1{margin-left:8.33333333%} -.col-sm-offset-0{margin-left:0} -} -@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left} -.col-md-12{width:100%} -.col-md-11{width:91.66666667%} -.col-md-10{width:83.33333333%} -.col-md-9{width:75%} -.col-md-8{width:66.66666667%} -.col-md-7{width:58.33333333%} -.col-md-6{width:50%} -.col-md-5{width:41.66666667%} -.col-md-4{width:33.33333333%} -.col-md-3{width:25%} -.col-md-2{width:16.66666667%} -.col-md-1{width:8.33333333%} -.col-md-pull-12{right:100%} -.col-md-pull-11{right:91.66666667%} -.col-md-pull-10{right:83.33333333%} -.col-md-pull-9{right:75%} -.col-md-pull-8{right:66.66666667%} -.col-md-pull-7{right:58.33333333%} -.col-md-pull-6{right:50%} -.col-md-pull-5{right:41.66666667%} -.col-md-pull-4{right:33.33333333%} -.col-md-pull-3{right:25%} -.col-md-pull-2{right:16.66666667%} -.col-md-pull-1{right:8.33333333%} -.col-md-pull-0{right:auto} -.col-md-push-12{left:100%} -.col-md-push-11{left:91.66666667%} -.col-md-push-10{left:83.33333333%} -.col-md-push-9{left:75%} -.col-md-push-8{left:66.66666667%} -.col-md-push-7{left:58.33333333%} -.col-md-push-6{left:50%} -.col-md-push-5{left:41.66666667%} -.col-md-push-4{left:33.33333333%} -.col-md-push-3{left:25%} -.col-md-push-2{left:16.66666667%} -.col-md-push-1{left:8.33333333%} -.col-md-push-0{left:auto} -.col-md-offset-12{margin-left:100%} -.col-md-offset-11{margin-left:91.66666667%} -.col-md-offset-10{margin-left:83.33333333%} -.col-md-offset-9{margin-left:75%} -.col-md-offset-8{margin-left:66.66666667%} -.col-md-offset-7{margin-left:58.33333333%} -.col-md-offset-6{margin-left:50%} -.col-md-offset-5{margin-left:41.66666667%} -.col-md-offset-4{margin-left:33.33333333%} -.col-md-offset-3{margin-left:25%} -.col-md-offset-2{margin-left:16.66666667%} -.col-md-offset-1{margin-left:8.33333333%} -.col-md-offset-0{margin-left:0} -} -@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left} -.col-lg-12{width:100%} -.col-lg-11{width:91.66666667%} -.col-lg-10{width:83.33333333%} -.col-lg-9{width:75%} -.col-lg-8{width:66.66666667%} -.col-lg-7{width:58.33333333%} -.col-lg-6{width:50%} -.col-lg-5{width:41.66666667%} -.col-lg-4{width:33.33333333%} -.col-lg-3{width:25%} -.col-lg-2{width:16.66666667%} -.col-lg-1{width:8.33333333%} -.col-lg-pull-12{right:100%} -.col-lg-pull-11{right:91.66666667%} -.col-lg-pull-10{right:83.33333333%} -.col-lg-pull-9{right:75%} -.col-lg-pull-8{right:66.66666667%} -.col-lg-pull-7{right:58.33333333%} -.col-lg-pull-6{right:50%} -.col-lg-pull-5{right:41.66666667%} -.col-lg-pull-4{right:33.33333333%} -.col-lg-pull-3{right:25%} -.col-lg-pull-2{right:16.66666667%} -.col-lg-pull-1{right:8.33333333%} -.col-lg-pull-0{right:auto} -.col-lg-push-12{left:100%} -.col-lg-push-11{left:91.66666667%} -.col-lg-push-10{left:83.33333333%} -.col-lg-push-9{left:75%} -.col-lg-push-8{left:66.66666667%} -.col-lg-push-7{left:58.33333333%} -.col-lg-push-6{left:50%} -.col-lg-push-5{left:41.66666667%} -.col-lg-push-4{left:33.33333333%} -.col-lg-push-3{left:25%} -.col-lg-push-2{left:16.66666667%} -.col-lg-push-1{left:8.33333333%} -.col-lg-push-0{left:auto} -.col-lg-offset-12{margin-left:100%} -.col-lg-offset-11{margin-left:91.66666667%} -.col-lg-offset-10{margin-left:83.33333333%} -.col-lg-offset-9{margin-left:75%} -.col-lg-offset-8{margin-left:66.66666667%} -.col-lg-offset-7{margin-left:58.33333333%} -.col-lg-offset-6{margin-left:50%} -.col-lg-offset-5{margin-left:41.66666667%} -.col-lg-offset-4{margin-left:33.33333333%} -.col-lg-offset-3{margin-left:25%} -.col-lg-offset-2{margin-left:16.66666667%} -.col-lg-offset-1{margin-left:8.33333333%} -.col-lg-offset-0{margin-left:0} -} -table col[class*=col-]{position:static;display:table-column;float:none} -table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none} -caption{padding-top:8px;padding-bottom:8px;color:#777} -.table{width:100%;max-width:100%;margin-bottom:20px} -.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd} -.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd} -.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0} -.table>tbody+tbody{border-top:2px solid #ddd} -.table .table{background-color:#fff} -.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px} -.table-bordered,.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd} -.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px} -.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9} -.table-hover>tbody>tr:hover,.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5} -.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8} -.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8} -.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6} -.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7} -.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3} -.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3} -.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc} -.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede} -.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc} -.table-responsive{min-height:.01%;overflow-x:auto} -.checkbox label,.radio label,.well{min-height:20px} -@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd} -.table-responsive>.table{margin-bottom:0} -.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap} -.table-responsive>.table-bordered{border:0} -.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0} -.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0} -.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0} -} -fieldset,legend{padding:0;border:0} -fieldset{min-width:0;margin:0} -legend{width:100%;margin-bottom:20px;font-size:21px;line-height:inherit;border-bottom:1px solid #e5e5e5} -label{display:inline-block;max-width:100%;margin-bottom:5px} -input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-appearance:none;-moz-appearance:none;appearance:none} -input[type=checkbox],input[type=radio]{margin:4px 0 0;margin-top:1px\9;line-height:normal} -.form-control,output{font-size:14px;line-height:1.42857143;color:#555;display:block} -input[type=file]{display:block} -input[type=range]{display:block;width:100%} -select[multiple],select[size]{height:auto} -input[type=file]:focus,input[type=checkbox]:focus,input[type=radio]:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px} -output{padding-top:7px} -.form-control{width:100%;height:34px;padding:6px 12px;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s,-webkit-box-shadow ease-in-out .15s} -.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)} -.form-control::-moz-placeholder{color:#999;opacity:1} -.form-control:-ms-input-placeholder{color:#999} -.form-control::-webkit-input-placeholder{color:#999} -.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .form-control-feedback,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d} -.form-control::-ms-expand{background-color:transparent;border:0} -.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1} -textarea.form-control{height:auto} -@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control{line-height:34px} -.input-group-sm input[type=date],.input-group-sm input[type=time],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:30px} -.input-group-lg input[type=date],.input-group-lg input[type=time],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:46px} -} -.form-group{margin-bottom:15px} -.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px} -.checkbox label,.checkbox-inline,.radio label,.radio-inline{padding-left:20px;cursor:pointer;margin-bottom:0;font-weight:400} -.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-top:4px\9;margin-left:-20px} -.checkbox+.checkbox,.radio+.radio{margin-top:-5px} -.checkbox-inline,.radio-inline{position:relative;display:inline-block;vertical-align:middle} -.checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline{cursor:not-allowed} -.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px} -.form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0} -.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0} -.form-group-sm .form-control,.input-sm{padding:5px 10px;border-radius:3px;font-size:12px} -.input-sm{height:30px;line-height:1.5} -select.input-sm{height:30px;line-height:30px} -select[multiple].input-sm,textarea.input-sm{height:auto} -.form-group-sm .form-control{height:30px;line-height:1.5} -.form-group-lg .form-control,.input-lg{border-radius:6px;padding:10px 16px;font-size:18px} -.form-group-sm select.form-control{height:30px;line-height:30px} -.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto} -.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5} -.input-lg{height:46px;line-height:1.3333333} -select.input-lg{height:46px;line-height:46px} -select[multiple].input-lg,textarea.input-lg{height:auto} -.form-group-lg .form-control{height:46px;line-height:1.3333333} -.form-group-lg select.form-control{height:46px;line-height:46px} -.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto} -.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333} -.has-feedback{position:relative} -.has-feedback .form-control{padding-right:42.5px} -.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none} -.collapsing,.dropdown,.dropup{position:relative} -.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px} -.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px} -.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)} -.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168} -.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d} -.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .form-control-feedback,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b} -.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)} -.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b} -.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b} -.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .form-control-feedback,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442} -.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)} -.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483} -.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442} -.has-feedback label~.form-control-feedback{top:25px} -.has-feedback label.sr-only~.form-control-feedback{top:0} -.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373} -@media (min-width:768px){.form-inline .form-control-static,.form-inline .form-group{display:inline-block} -.form-inline .control-label,.form-inline .form-group{margin-bottom:0;vertical-align:middle} -.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle} -.form-inline .input-group{display:inline-table;vertical-align:middle} -.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto} -.form-inline .input-group>.form-control{width:100%} -.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle} -.form-inline .checkbox label,.form-inline .radio label{padding-left:0} -.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0} -.form-inline .has-feedback .form-control-feedback{top:0} -.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right} -} -.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{padding-top:7px;margin-top:0;margin-bottom:0} -.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px} -.form-horizontal .form-group{margin-right:-15px;margin-left:-15px} -.form-horizontal .has-feedback .form-control-feedback{right:15px} -@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px} -.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px} -} -.btn{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none} -.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px} -.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none} -.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)} -.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;filter:alpha(opacity=65);opacity:.65;-webkit-box-shadow:none;box-shadow:none} -a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none} -.btn-default{color:#333;background-color:#fff;border-color:#ccc} -.btn-default.focus,.btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c} -.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad} -.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;background-image:none;border-color:#adadad} -.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c} -.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc} -.btn-default .badge{color:#fff;background-color:#333} -.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4} -.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40} -.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74} -.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;background-image:none;border-color:#204d74} -.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40} -.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4} -.btn-primary .badge{color:#337ab7;background-color:#fff} -.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c} -.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625} -.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439} -.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;background-image:none;border-color:#398439} -.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#255625} -.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c} -.btn-success .badge{color:#5cb85c;background-color:#fff} -.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da} -.btn-info.focus,.btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85} -.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc} -.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;background-image:none;border-color:#269abc} -.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85} -.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da} -.btn-info .badge{color:#5bc0de;background-color:#fff} -.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236} -.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d} -.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512} -.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;background-image:none;border-color:#d58512} -.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d} -.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236} -.btn-warning .badge{color:#f0ad4e;background-color:#fff} -.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a} -.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19} -.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925} -.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;background-image:none;border-color:#ac2925} -.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19} -.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a} -.btn-danger .badge{color:#d9534f;background-color:#fff} -.btn-link{font-weight:400;color:#337ab7;border-radius:0} -.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none} -.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent} -.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent} -.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none} -.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px} -.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px} -.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px} -.btn-block{display:block;width:100%} -.btn-block+.btn-block{margin-top:5px} -input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%} -.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear} -.fade.in{opacity:1} -.collapse{display:none} -.collapse.in{display:block} -tr.collapse.in{display:table-row} -tbody.collapse.in{display:table-row-group} -.collapsing{height:0;overflow:hidden;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease} -.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid\9;border-right:4px solid transparent;border-left:4px solid transparent} -.dropdown-toggle:focus{outline:0} -.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)} -.dropdown-menu-right,.dropdown-menu.pull-right{right:0;left:auto} -.dropdown-header,.dropdown-menu>li>a{display:block;padding:3px 20px;line-height:1.42857143;white-space:nowrap} -.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle,.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0} -.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child,.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0} -.btn-group-vertical>.btn:not(:first-child):not(:last-child),.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn,.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0} -.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5} -.dropdown-menu>li>a{clear:both;font-weight:400;color:#333} -.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5} -.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0} -.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777} -.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)} -.open>.dropdown-menu{display:block} -.open>a{outline:0} -.dropdown-menu-left{right:auto;left:0} -.dropdown-header{font-size:12px;color:#777} -.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990} -.nav-justified>.dropdown .dropdown-menu,.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto} -.pull-right>.dropdown-menu{right:0;left:auto} -.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px dashed;border-bottom:4px solid\9} -.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px} -@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto} -.navbar-right .dropdown-menu-left{right:auto;left:0} -} -.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle} -.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left} -.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2} -.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px} -.btn-toolbar{margin-left:-5px} -.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px} -.btn .caret,.btn-group>.btn:first-child{margin-left:0} -.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0} -.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px} -.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px} -.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)} -.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none} -.btn-lg .caret{border-width:5px 5px 0} -.dropup .btn-lg .caret{border-width:0 5px 5px} -.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%} -.btn-group-vertical>.btn-group>.btn{float:none} -.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0} -.btn-group-vertical>.btn:first-child:not(:last-child){border-radius:4px 4px 0 0} -.btn-group-vertical>.btn:last-child:not(:first-child){border-radius:0 0 4px 4px} -.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0} -.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0} -.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0} -.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate} -.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%} -.btn-group-justified>.btn-group .btn{width:100%} -.btn-group-justified>.btn-group .dropdown-menu{left:auto} -[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none} -.input-group{position:relative;display:table;border-collapse:separate} -.input-group[class*=col-]{float:none;padding-right:0;padding-left:0} -.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0} -.input-group .form-control:focus{z-index:3} -.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px} -select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px} -select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto} -.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px} -select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px} -select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto} -.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell} -.nav>li,.nav>li>a{display:block;position:relative} -.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0} -.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle} -.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px} -.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px} -.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px} -.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0} -.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0} -.input-group-addon:first-child{border-right:0} -.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-top-left-radius:0;border-bottom-left-radius:0} -.input-group-addon:last-child{border-left:0} -.input-group-btn{position:relative;font-size:0;white-space:nowrap} -.input-group-btn>.btn{position:relative} -.input-group-btn>.btn+.btn{margin-left:-1px} -.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2} -.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px} -.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px} -.nav{padding-left:0;margin-bottom:0;list-style:none} -.nav>li>a{padding:10px 15px} -.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee} -.nav>li.disabled>a{color:#777} -.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent} -.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#337ab7} -.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5} -.nav>li>a>img{max-width:none} -.nav-tabs{border-bottom:1px solid #ddd} -.nav-tabs>li{float:left;margin-bottom:-1px} -.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0} -.nav-tabs>li>a:hover{border-color:#eee #eee #ddd} -.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent} -.nav-tabs.nav-justified{width:100%;border-bottom:0} -.nav-tabs.nav-justified>li{float:none} -.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center;margin-right:0;border-radius:4px} -.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd} -@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%} -.nav-tabs.nav-justified>li>a{margin-bottom:0;border-bottom:1px solid #ddd;border-radius:4px 4px 0 0} -.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff} -} -.nav-pills>li{float:left} -.nav-justified>li,.nav-stacked>li{float:none} -.nav-pills>li>a{border-radius:4px} -.nav-pills>li+li{margin-left:2px} -.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#337ab7} -.nav-stacked>li+li{margin-top:2px;margin-left:0} -.nav-justified{width:100%} -.nav-justified>li>a{margin-bottom:5px;text-align:center} -.nav-tabs-justified{border-bottom:0} -.nav-tabs-justified>li>a{margin-right:0;border-radius:4px} -.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ddd} -@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%} -.nav-justified>li>a{margin-bottom:0} -.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0} -.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff} -} -.tab-content>.tab-pane{display:none} -.tab-content>.active{display:block} -.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0} -.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent} -.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1);-webkit-overflow-scrolling:touch} -.navbar-collapse.in{overflow-y:auto} -@media (min-width:768px){.navbar{border-radius:4px} -.navbar-header{float:left} -.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none} -.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important} -.navbar-collapse.in{overflow-y:visible} -.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-right:0;padding-left:0} -.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0} -} -.embed-responsive,.modal,.modal-open,.progress{overflow:hidden} -.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030} -@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px} -} -.navbar-fixed-top{top:0;border-width:0 0 1px} -.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0} -.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px} -.navbar-static-top{z-index:1000;border-width:0 0 1px} -.navbar-brand{float:left;height:50px;padding:15px;font-size:18px;line-height:20px} -.navbar-brand:focus,.navbar-brand:hover{text-decoration:none} -.navbar-brand>img{display:block} -@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0} -.navbar-static-top{border-radius:0} -.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px} -} -.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-right:15px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px} -.navbar-toggle:focus{outline:0} -.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px} -.navbar-toggle .icon-bar+.icon-bar{margin-top:4px} -.navbar-nav{margin:7.5px -15px} -.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px} -@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none} -.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px} -.navbar-nav .open .dropdown-menu>li>a{line-height:20px} -.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none} -} -.progress-bar-striped,.progress-striped .progress-bar,.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)} -@media (min-width:768px){.navbar-toggle{display:none} -.navbar-nav{float:left;margin:0} -.navbar-nav>li{float:left} -.navbar-nav>li>a{padding-top:15px;padding-bottom:15px} -} -.navbar-form{padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);margin:8px -15px} -@media (min-width:768px){.navbar-form .form-control-static,.navbar-form .form-group{display:inline-block} -.navbar-form .control-label,.navbar-form .form-group{margin-bottom:0;vertical-align:middle} -.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle} -.navbar-form .input-group{display:inline-table;vertical-align:middle} -.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto} -.navbar-form .input-group>.form-control{width:100%} -.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle} -.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0} -.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0} -.navbar-form .has-feedback .form-control-feedback{top:0} -.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none} -} -.breadcrumb>li,.pagination{display:inline-block} -.btn .badge,.btn .label{top:-1px;position:relative} -@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px} -.navbar-form .form-group:last-child{margin-bottom:0} -} -.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0} -.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-radius:4px 4px 0 0} -.navbar-btn{margin-top:8px;margin-bottom:8px} -.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px} -.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px} -.navbar-text{margin-top:15px;margin-bottom:15px} -@media (min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px} -.navbar-left{float:left!important} -.navbar-right{float:right!important;margin-right:-15px} -.navbar-right~.navbar-right{margin-right:0} -} -.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7} -.navbar-default .navbar-brand{color:#777} -.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent} -.navbar-default .navbar-nav>li>a,.navbar-default .navbar-text{color:#777} -.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent} -.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7} -.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent} -.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{color:#555;background-color:#e7e7e7} -@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777} -.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent} -.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7} -.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent} -} -.navbar-default .navbar-toggle{border-color:#ddd} -.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd} -.navbar-default .navbar-toggle .icon-bar{background-color:#888} -.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7} -.navbar-default .navbar-link{color:#777} -.navbar-default .navbar-link:hover{color:#333} -.navbar-default .btn-link{color:#777} -.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333} -.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc} -.navbar-inverse{background-color:#222;border-color:#080808} -.navbar-inverse .navbar-brand{color:#9d9d9d} -.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent} -.navbar-inverse .navbar-nav>li>a,.navbar-inverse .navbar-text{color:#9d9d9d} -.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent} -.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808} -.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent} -.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{color:#fff;background-color:#080808} -@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808} -.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808} -.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d} -.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent} -.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808} -.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent} -} -.navbar-inverse .navbar-toggle{border-color:#333} -.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333} -.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff} -.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010} -.navbar-inverse .navbar-link{color:#9d9d9d} -.navbar-inverse .navbar-link:hover{color:#fff} -.navbar-inverse .btn-link{color:#9d9d9d} -.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff} -.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444} -.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px} -.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"} -.breadcrumb>.active{color:#777} -.pagination{padding-left:0;margin:20px 0;border-radius:4px} -.pager li,.pagination>li{display:inline} -.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd} -.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd} -.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px} -.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px} -.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7} -.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd} -.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333} -.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px} -.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px} -.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5} -.badge,.label{font-weight:700;line-height:1;white-space:nowrap;text-align:center} -.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px} -.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px} -.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none} -.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px} -.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#eee} -.pager .next>a,.pager .next>span{float:right} -.pager .previous>a,.pager .previous>span{float:left} -.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;cursor:not-allowed;background-color:#fff} -a.badge:focus,a.badge:hover,a.label:focus,a.label:hover{color:#fff;cursor:pointer;text-decoration:none} -.label{display:inline;padding:.2em .6em .3em;font-size:75%;color:#fff;border-radius:.25em} -.label:empty{display:none} -.label-default{background-color:#777} -.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e} -.label-primary{background-color:#337ab7} -.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090} -.label-success{background-color:#5cb85c} -.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44} -.label-info{background-color:#5bc0de} -.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5} -.label-warning{background-color:#f0ad4e} -.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f} -.label-danger{background-color:#d9534f} -.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c} -.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;color:#fff;vertical-align:middle;background-color:#777;border-radius:10px} -.badge:empty{display:none} -.media-object,.thumbnail{display:block} -.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px} -.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff} -.jumbotron,.jumbotron .h1,.jumbotron h1{color:inherit} -.list-group-item>.badge{float:right} -.list-group-item>.badge+.badge{margin-right:5px} -.nav-pills>li>a>.badge{margin-left:3px} -.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;background-color:#eee} -.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200} -.alert,.thumbnail{margin-bottom:20px} -.alert .alert-link,.close{font-weight:700} -.jumbotron>hr{border-top-color:#d5d5d5} -.container .jumbotron,.container-fluid .jumbotron{padding-right:15px;padding-left:15px;border-radius:6px} -.jumbotron .container{max-width:100%} -@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px} -.container .jumbotron,.container-fluid .jumbotron{padding-right:60px;padding-left:60px} -.jumbotron .h1,.jumbotron h1{font-size:63px} -} -.thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out} -.thumbnail a>img,.thumbnail>img{margin-right:auto;margin-left:auto} -a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#337ab7} -.thumbnail .caption{padding:9px;color:#333} -.alert{padding:15px;border:1px solid transparent;border-radius:4px} -.alert h4{margin-top:0;color:inherit} -.alert>p,.alert>ul{margin-bottom:0} -.alert>p+p{margin-top:5px} -.alert-dismissable,.alert-dismissible{padding-right:35px} -.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit} -.modal,.modal-backdrop{top:0;right:0;bottom:0;left:0} -.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6} -.alert-success hr{border-top-color:#c9e2b3} -.alert-success .alert-link{color:#2b542c} -.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1} -.alert-info hr{border-top-color:#a6e1ec} -.alert-info .alert-link{color:#245269} -.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc} -.alert-warning hr{border-top-color:#f7e1b5} -.alert-warning .alert-link{color:#66512c} -.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1} -.alert-danger hr{border-top-color:#e4b9c0} -.alert-danger .alert-link{color:#843534} -@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0} -to{background-position:0 0} -} -@-o-keyframes progress-bar-stripes{from{background-position:40px 0} -to{background-position:0 0} -} -@keyframes progress-bar-stripes{from{background-position:40px 0} -to{background-position:0 0} -} -.progress{height:20px;margin-bottom:20px;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)} -.progress-bar{float:left;width:0%;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease} -.progress-bar-striped,.progress-striped .progress-bar{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px} -.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite} -.progress-bar-success{background-color:#5cb85c} -.progress-striped .progress-bar-success{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)} -.progress-striped .progress-bar-info,.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)} -.progress-bar-info{background-color:#5bc0de} -.progress-striped .progress-bar-info{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)} -.progress-bar-warning{background-color:#f0ad4e} -.progress-striped .progress-bar-warning{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)} -.progress-bar-danger{background-color:#d9534f} -.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)} -.media{margin-top:15px} -.media:first-child{margin-top:0} -.media,.media-body{overflow:hidden;zoom:1} -.media-body{width:10000px} -.media-object.img-thumbnail{max-width:none} -.media-right,.media>.pull-right{padding-left:10px} -.media-left,.media>.pull-left{padding-right:10px} -.media-body,.media-left,.media-right{display:table-cell;vertical-align:top} -.media-middle{vertical-align:middle} -.media-bottom{vertical-align:bottom} -.media-heading{margin-top:0;margin-bottom:5px} -.media-list{padding-left:0;list-style:none} -.list-group{padding-left:0;margin-bottom:20px} -.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd} -.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px} -.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px} -.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{color:#777;cursor:not-allowed;background-color:#eee} -.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit} -.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777} -.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7} -.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit} -.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#c7ddef} -a.list-group-item,button.list-group-item{color:#555} -a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333} -a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5} -button.list-group-item{width:100%;text-align:left} -.list-group-item-success{color:#3c763d;background-color:#dff0d8} -a.list-group-item-success,button.list-group-item-success{color:#3c763d} -a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit} -a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6} -a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d} -.list-group-item-info{color:#31708f;background-color:#d9edf7} -a.list-group-item-info,button.list-group-item-info{color:#31708f} -a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit} -a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3} -a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f} -.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3} -a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b} -a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit} -a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc} -a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b} -.list-group-item-danger{color:#a94442;background-color:#f2dede} -a.list-group-item-danger,button.list-group-item-danger{color:#a94442} -a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit} -a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc} -a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442} -.panel-heading>.dropdown .dropdown-toggle,.panel-title,.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit} -.list-group-item-heading{margin-top:0;margin-bottom:5px} -.list-group-item-text{margin-bottom:0;line-height:1.3} -.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)} -.panel-title,.panel>.list-group,.panel>.panel-collapse>.list-group,.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0} -.panel-body{padding:15px} -.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px} -.panel-title{margin-top:0;font-size:16px} -.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px} -.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0} -.panel-group .panel-heading,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0} -.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px} -.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px} -.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0} -.list-group+.panel-footer,.panel-heading+.list-group .list-group-item:first-child{border-top-width:0} -.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-right:15px;padding-left:15px} -.panel>.table-responsive:first-child>.table:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px} -.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px} -.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px} -.panel>.table-responsive:last-child>.table:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px} -.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px} -.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px} -.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd} -.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0} -.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0} -.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0} -.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0} -.panel>.table-responsive{margin-bottom:0;border:0} -.panel-group{margin-bottom:20px} -.panel-group .panel{margin-bottom:0;border-radius:4px} -.panel-group .panel+.panel{margin-top:5px} -.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd} -.panel-group .panel-footer{border-top:0} -.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd} -.panel-default{border-color:#ddd} -.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd} -.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd} -.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333} -.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd} -.panel-primary{border-color:#337ab7} -.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7} -.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7} -.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff} -.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7} -.panel-success{border-color:#d6e9c6} -.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6} -.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6} -.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d} -.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6} -.panel-info{border-color:#bce8f1} -.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1} -.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1} -.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f} -.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1} -.panel-warning{border-color:#faebcc} -.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc} -.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc} -.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b} -.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc} -.panel-danger{border-color:#ebccd1} -.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1} -.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1} -.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442} -.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1} -.embed-responsive{position:relative;display:block;height:0;padding:0} -.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0} -.embed-responsive-16by9{padding-bottom:56.25%} -.embed-responsive-4by3{padding-bottom:75%} -.well{padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)} -.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)} -.well-lg{padding:24px;border-radius:6px} -.well-sm{padding:9px;border-radius:3px} -.close{float:right;font-size:21px;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2} -.popover,.tooltip{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;line-height:1.42857143;line-break:auto;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;text-decoration:none} -.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5} -button.close{padding:0;cursor:pointer;background:0 0;border:0;-webkit-appearance:none;-moz-appearance:none;appearance:none} -.modal-content,.popover{background-clip:padding-box} -.modal{position:fixed;z-index:1050;display:none;-webkit-overflow-scrolling:touch;outline:0} -.modal.fade .modal-dialog{-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%);-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out,-o-transform .3s ease-out} -.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)} -.modal-open .modal{overflow-x:hidden;overflow-y:auto} -.modal-dialog{position:relative;width:auto;margin:10px} -.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5);outline:0} -.modal-backdrop{position:fixed;z-index:1040;background-color:#000} -.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0} -.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5} -.modal-header{padding:15px;border-bottom:1px solid #e5e5e5} -.modal-header .close{margin-top:-2px} -.modal-title{margin:0;line-height:1.42857143} -.modal-body{position:relative;padding:15px} -.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5} -.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px} -.modal-footer .btn-group .btn+.btn{margin-left:-1px} -.modal-footer .btn-block+.btn-block{margin-left:0} -.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll} -@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto} -.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)} -.modal-sm{width:300px} -} -.tooltip.top-left .tooltip-arrow,.tooltip.top-right .tooltip-arrow{bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000} -@media (min-width:992px){.modal-lg{width:900px} -} -.tooltip{position:absolute;z-index:1070;display:block;text-align:left;text-align:start;font-size:12px;filter:alpha(opacity=0);opacity:0} -.tooltip.in{filter:alpha(opacity=90);opacity:.9} -.tooltip.top{padding:5px 0;margin-top:-3px} -.tooltip.right{padding:0 5px;margin-left:3px} -.tooltip.bottom{padding:5px 0;margin-top:3px} -.tooltip.left{padding:0 5px;margin-left:-3px} -.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000} -.tooltip.top-left .tooltip-arrow{right:5px} -.tooltip.top-right .tooltip-arrow{left:5px} -.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000} -.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000} -.tooltip.bottom .tooltip-arrow,.tooltip.bottom-left .tooltip-arrow,.tooltip.bottom-right .tooltip-arrow{border-width:0 5px 5px;border-bottom-color:#000;top:0} -.tooltip.bottom .tooltip-arrow{left:50%;margin-left:-5px} -.tooltip.bottom-left .tooltip-arrow{right:5px;margin-top:-5px} -.tooltip.bottom-right .tooltip-arrow{left:5px;margin-top:-5px} -.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px} -.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid} -.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;text-align:left;text-align:start;font-size:14px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2)} -.carousel-caption,.carousel-control{color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)} -.popover.top{margin-top:-10px} -.popover.right{margin-left:10px} -.popover.bottom{margin-top:10px} -.popover.left{margin-left:-10px} -.popover>.arrow{border-width:11px} -.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid} -.carousel,.carousel-inner{position:relative} -.popover>.arrow:after{content:"";border-width:10px} -.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0} -.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0} -.popover.left>.arrow:after,.popover.right>.arrow:after{bottom:-10px;content:" "} -.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0} -.popover.right>.arrow:after{left:1px;border-right-color:#fff;border-left-width:0} -.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)} -.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff} -.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)} -.popover.left>.arrow:after{right:1px;border-right-width:0;border-left-color:#fff} -.popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0} -.popover-content{padding:9px 14px} -.carousel-inner{width:100%;overflow:hidden} -.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left} -.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1} -@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:-webkit-transform .6s ease-in-out;transition:transform .6s ease-in-out;transition:transform .6s ease-in-out,-webkit-transform .6s ease-in-out,-o-transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px} -.carousel-inner>.item.active.right,.carousel-inner>.item.next{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);left:0} -.carousel-inner>.item.active.left,.carousel-inner>.item.prev{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);left:0} -.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);left:0} -} -.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block} -.carousel-inner>.active{left:0} -.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%} -.carousel-inner>.next{left:100%} -.carousel-inner>.prev{left:-100%} -.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0} -.carousel-inner>.active.left{left:-100%} -.carousel-inner>.active.right{left:100%} -.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;background-color:rgba(0,0,0,0);filter:alpha(opacity=50);opacity:.5} -.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x} -.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x} -.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;outline:0;filter:alpha(opacity=90);opacity:.9} -.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px} -.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px} -.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px} -.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;font-family:serif;line-height:1} -.carousel-control .icon-prev:before{content:"\2039"} -.carousel-control .icon-next:before{content:"\203a"} -.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none} -.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000\9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px} -.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff} -.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px} -.carousel-caption .btn,.text-hide{text-shadow:none} -@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px} -.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px} -.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px} -.carousel-caption{right:20%;left:20%;padding-bottom:30px} -.carousel-indicators{bottom:20px} -} -.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{display:table;content:" "} -.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.modal-header:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both} -.center-block{display:block;margin-right:auto;margin-left:auto} -.pull-right{float:right!important} -.pull-left{float:left!important} -.hide{display:none!important} -.show{display:block!important} -.hidden,.visible-lg,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important} -.invisible{visibility:hidden} -.text-hide{font:0/0 a;color:transparent;background-color:transparent;border:0} -.affix{position:fixed} -@-ms-viewport{width:device-width} -@media (max-width:767px){.visible-xs{display:block!important} -table.visible-xs{display:table!important} -tr.visible-xs{display:table-row!important} -td.visible-xs,th.visible-xs{display:table-cell!important} -.visible-xs-block{display:block!important} -.visible-xs-inline{display:inline!important} -.visible-xs-inline-block{display:inline-block!important} -} -@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important} -table.visible-sm{display:table!important} -tr.visible-sm{display:table-row!important} -td.visible-sm,th.visible-sm{display:table-cell!important} -.visible-sm-block{display:block!important} -.visible-sm-inline{display:inline!important} -.visible-sm-inline-block{display:inline-block!important} -} -@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important} -table.visible-md{display:table!important} -tr.visible-md{display:table-row!important} -td.visible-md,th.visible-md{display:table-cell!important} -.visible-md-block{display:block!important} -.visible-md-inline{display:inline!important} -.visible-md-inline-block{display:inline-block!important} -} -@media (min-width:1200px){.visible-lg{display:block!important} -table.visible-lg{display:table!important} -tr.visible-lg{display:table-row!important} -td.visible-lg,th.visible-lg{display:table-cell!important} -.visible-lg-block{display:block!important} -.visible-lg-inline{display:inline!important} -.visible-lg-inline-block{display:inline-block!important} -.hidden-lg{display:none!important} -} -@media (max-width:767px){.hidden-xs{display:none!important} -} -@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important} -} -@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important} -} -.visible-print{display:none!important} -@media print{.visible-print{display:block!important} -table.visible-print{display:table!important} -tr.visible-print{display:table-row!important} -td.visible-print,th.visible-print{display:table-cell!important} -} -.visible-print-block{display:none!important} -@media print{.visible-print-block{display:block!important} -} -.visible-print-inline{display:none!important} -@media print{.visible-print-inline{display:inline!important} -} -.visible-print-inline-block{display:none!important} -@media print{.visible-print-inline-block{display:inline-block!important} -.hidden-print{display:none!important} -} -.hljs{display:block;background:#fff;padding:.5em;color:#333;overflow-x:auto} -.hljs-comment,.hljs-meta{color:#969896} -.hljs-emphasis,.hljs-quote,.hljs-string,.hljs-strong,.hljs-template-variable,.hljs-variable{color:#df5000} -.hljs-keyword,.hljs-selector-tag,.hljs-type{color:#a71d5d} -.hljs-attribute,.hljs-bullet,.hljs-literal,.hljs-symbol{color:#0086b3} -.hljs-name,.hljs-section{color:#63a35c} -.hljs-tag{color:#333} -.hljs-attr,.hljs-selector-attr,.hljs-selector-class,.hljs-selector-id,.hljs-selector-pseudo,.hljs-title{color:#795da3} -.hljs-addition{color:#55a532;background-color:#eaffea} -.hljs-deletion{color:#bd2c00;background-color:#ffecec} -.hljs-link{text-decoration:underline} \ No newline at end of file diff --git a/docs/styles/docfx.vendor.js b/docs/styles/docfx.vendor.js deleted file mode 100644 index 6327c89ce..000000000 --- a/docs/styles/docfx.vendor.js +++ /dev/null @@ -1,52 +0,0 @@ -/*! jQuery v3.5.1 | (c) JS Foundation and other contributors | jquery.org/license */ -!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],r=Object.getPrototypeOf,s=t.slice,g=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)},u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},x=function(e){return null!=e&&e===e.window},E=C.document,c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.5.1",S=function(e,t){return new S.fn.init(e,t)};function p(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ye(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace($,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||v.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||v.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",F)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&y(p,e)?-1:t==C||t.ownerDocument==p&&y(p,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function D(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):"string"!=typeof n?S.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||j,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,j=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement("div")),(fe=E.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),y.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="",y.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="",y.option=!!ce.lastChild;var ge={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n",""]);var me=/<|&#?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function qe(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function Le(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function He(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Oe(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var Ut,Xt=[],Vt=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Xt.pop()||S.expando+"_"+Ct.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Vt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Vt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Vt,"$1"+r):!1!==e.jsonp&&(e.url+=(Et.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||S.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Xt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((Ut=E.implementation.createHTMLDocument("").body).innerHTML="
",2===Ut.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(S.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,"position"),c=S(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=S.css(e,"top"),u=S.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):("number"==typeof f.top&&(f.top+="px"),"number"==typeof f.left&&(f.left+="px"),c.css(f))}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===S.css(e,"position"))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;S.fn[t]=function(e){return $(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each(["top","left"],function(e,n){S.cssHooks[n]=$e(y.pixelPosition,function(e,t){if(t)return t=Be(e,n),Me.test(t)?S(e).position()[n]+"px":t})}),S.each({Height:"height",Width:"width"},function(a,s){S.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return $(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){S.fn[n]=function(e,t){return 0this.$items.length-1||t<0))return this.sliding?this.$element.one("slid.bs.carousel",function(){e.to(t)}):i==t?this.pause().cycle():this.slide(idocument.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&t?this.scrollbarWidth:"",paddingRight:this.bodyIsOverflowing&&!t?this.scrollbarWidth:""})},s.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:"",paddingRight:""})},s.prototype.checkScrollbar=function(){var t=window.innerWidth;if(!t){var e=document.documentElement.getBoundingClientRect();t=e.right-Math.abs(e.left)}this.bodyIsOverflowing=document.body.clientWidth
',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0},sanitize:!0,sanitizeFn:null,whiteList:t},m.prototype.init=function(t,e,i){if(this.enabled=!0,this.type=t,this.$element=g(e),this.options=this.getOptions(i),this.$viewport=this.options.viewport&&g(document).find(g.isFunction(this.options.viewport)?this.options.viewport.call(this,this.$element):this.options.viewport.selector||this.options.viewport),this.inState={click:!1,hover:!1,focus:!1},this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");for(var o=this.options.trigger.split(" "),n=o.length;n--;){var s=o[n];if("click"==s)this.$element.on("click."+this.type,this.options.selector,g.proxy(this.toggle,this));else if("manual"!=s){var a="hover"==s?"mouseenter":"focusin",r="hover"==s?"mouseleave":"focusout";this.$element.on(a+"."+this.type,this.options.selector,g.proxy(this.enter,this)),this.$element.on(r+"."+this.type,this.options.selector,g.proxy(this.leave,this))}}this.options.selector?this._options=g.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},m.prototype.getDefaults=function(){return m.DEFAULTS},m.prototype.getOptions=function(t){var e=this.$element.data();for(var i in e)e.hasOwnProperty(i)&&-1!==g.inArray(i,o)&&delete e[i];return(t=g.extend({},this.getDefaults(),e,t)).delay&&"number"==typeof t.delay&&(t.delay={show:t.delay,hide:t.delay}),t.sanitize&&(t.template=n(t.template,t.whiteList,t.sanitizeFn)),t},m.prototype.getDelegateOptions=function(){var i={},o=this.getDefaults();return this._options&&g.each(this._options,function(t,e){o[t]!=e&&(i[t]=e)}),i},m.prototype.enter=function(t){var e=t instanceof this.constructor?t:g(t.currentTarget).data("bs."+this.type);if(e||(e=new this.constructor(t.currentTarget,this.getDelegateOptions()),g(t.currentTarget).data("bs."+this.type,e)),t instanceof g.Event&&(e.inState["focusin"==t.type?"focus":"hover"]=!0),e.tip().hasClass("in")||"in"==e.hoverState)e.hoverState="in";else{if(clearTimeout(e.timeout),e.hoverState="in",!e.options.delay||!e.options.delay.show)return e.show();e.timeout=setTimeout(function(){"in"==e.hoverState&&e.show()},e.options.delay.show)}},m.prototype.isInStateTrue=function(){for(var t in this.inState)if(this.inState[t])return!0;return!1},m.prototype.leave=function(t){var e=t instanceof this.constructor?t:g(t.currentTarget).data("bs."+this.type);if(e||(e=new this.constructor(t.currentTarget,this.getDelegateOptions()),g(t.currentTarget).data("bs."+this.type,e)),t instanceof g.Event&&(e.inState["focusout"==t.type?"focus":"hover"]=!1),!e.isInStateTrue()){if(clearTimeout(e.timeout),e.hoverState="out",!e.options.delay||!e.options.delay.hide)return e.hide();e.timeout=setTimeout(function(){"out"==e.hoverState&&e.hide()},e.options.delay.hide)}},m.prototype.show=function(){var t=g.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(t);var e=g.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(t.isDefaultPrevented()||!e)return;var i=this,o=this.tip(),n=this.getUID(this.type);this.setContent(),o.attr("id",n),this.$element.attr("aria-describedby",n),this.options.animation&&o.addClass("fade");var s="function"==typeof this.options.placement?this.options.placement.call(this,o[0],this.$element[0]):this.options.placement,a=/\s?auto?\s?/i,r=a.test(s);r&&(s=s.replace(a,"")||"top"),o.detach().css({top:0,left:0,display:"block"}).addClass(s).data("bs."+this.type,this),this.options.container?o.appendTo(g(document).find(this.options.container)):o.insertAfter(this.$element),this.$element.trigger("inserted.bs."+this.type);var l=this.getPosition(),h=o[0].offsetWidth,d=o[0].offsetHeight;if(r){var p=s,c=this.getPosition(this.$viewport);s="bottom"==s&&l.bottom+d>c.bottom?"top":"top"==s&&l.top-dc.width?"left":"left"==s&&l.left-ha.top+a.height&&(n.top=a.top+a.height-l)}else{var h=e.left-s,d=e.left+s+i;ha.right&&(n.left=a.left+a.width-d)}return n},m.prototype.getTitle=function(){var t=this.$element,e=this.options;return t.attr("data-original-title")||("function"==typeof e.title?e.title.call(t[0]):e.title)},m.prototype.getUID=function(t){for(;t+=~~(1e6*Math.random()),document.getElementById(t););return t},m.prototype.tip=function(){if(!this.$tip&&(this.$tip=g(this.options.template),1!=this.$tip.length))throw new Error(this.type+" `template` option must consist of exactly 1 top-level element!");return this.$tip},m.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},m.prototype.enable=function(){this.enabled=!0},m.prototype.disable=function(){this.enabled=!1},m.prototype.toggleEnabled=function(){this.enabled=!this.enabled},m.prototype.toggle=function(t){var e=this;t&&((e=g(t.currentTarget).data("bs."+this.type))||(e=new this.constructor(t.currentTarget,this.getDelegateOptions()),g(t.currentTarget).data("bs."+this.type,e))),t?(e.inState.click=!e.inState.click,e.isInStateTrue()?e.enter(e):e.leave(e)):e.tip().hasClass("in")?e.leave(e):e.enter(e)},m.prototype.destroy=function(){var t=this;clearTimeout(this.timeout),this.hide(function(){t.$element.off("."+t.type).removeData("bs."+t.type),t.$tip&&t.$tip.detach(),t.$tip=null,t.$arrow=null,t.$viewport=null,t.$element=null})},m.prototype.sanitizeHtml=function(t){return n(t,this.options.whiteList,this.options.sanitizeFn)};var e=g.fn.tooltip;g.fn.tooltip=function i(o){return this.each(function(){var t=g(this),e=t.data("bs.tooltip"),i="object"==typeof o&&o;!e&&/destroy|hide/.test(o)||(e||t.data("bs.tooltip",e=new m(this,i)),"string"==typeof o&&e[o]())})},g.fn.tooltip.Constructor=m,g.fn.tooltip.noConflict=function(){return g.fn.tooltip=e,this}}(jQuery),function(n){"use strict";var s=function(t,e){this.init("popover",t,e)};if(!n.fn.tooltip)throw new Error("Popover requires tooltip.js");s.VERSION="3.4.1",s.DEFAULTS=n.extend({},n.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:''}),((s.prototype=n.extend({},n.fn.tooltip.Constructor.prototype)).constructor=s).prototype.getDefaults=function(){return s.DEFAULTS},s.prototype.setContent=function(){var t=this.tip(),e=this.getTitle(),i=this.getContent();if(this.options.html){var o=typeof i;this.options.sanitize&&(e=this.sanitizeHtml(e),"string"===o&&(i=this.sanitizeHtml(i))),t.find(".popover-title").html(e),t.find(".popover-content").children().detach().end()["string"===o?"html":"append"](i)}else t.find(".popover-title").text(e),t.find(".popover-content").children().detach().end().text(i);t.removeClass("fade top bottom left right in"),t.find(".popover-title").html()||t.find(".popover-title").hide()},s.prototype.hasContent=function(){return this.getTitle()||this.getContent()},s.prototype.getContent=function(){var t=this.$element,e=this.options;return t.attr("data-content")||("function"==typeof e.content?e.content.call(t[0]):e.content)},s.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")};var t=n.fn.popover;n.fn.popover=function e(o){return this.each(function(){var t=n(this),e=t.data("bs.popover"),i="object"==typeof o&&o;!e&&/destroy|hide/.test(o)||(e||t.data("bs.popover",e=new s(this,i)),"string"==typeof o&&e[o]())})},n.fn.popover.Constructor=s,n.fn.popover.noConflict=function(){return n.fn.popover=t,this}}(jQuery),function(s){"use strict";function n(t,e){this.$body=s(document.body),this.$scrollElement=s(t).is(document.body)?s(window):s(t),this.options=s.extend({},n.DEFAULTS,e),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",s.proxy(this.process,this)),this.refresh(),this.process()}function e(o){return this.each(function(){var t=s(this),e=t.data("bs.scrollspy"),i="object"==typeof o&&o;e||t.data("bs.scrollspy",e=new n(this,i)),"string"==typeof o&&e[o]()})}n.VERSION="3.4.1",n.DEFAULTS={offset:10},n.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},n.prototype.refresh=function(){var t=this,o="offset",n=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),s.isWindow(this.$scrollElement[0])||(o="position",n=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){var t=s(this),e=t.data("target")||t.attr("href"),i=/^#./.test(e)&&s(e);return i&&i.length&&i.is(":visible")&&[[i[o]().top+n,e]]||null}).sort(function(t,e){return t[0]-e[0]}).each(function(){t.offsets.push(this[0]),t.targets.push(this[1])})},n.prototype.process=function(){var t,e=this.$scrollElement.scrollTop()+this.options.offset,i=this.getScrollHeight(),o=this.options.offset+i-this.$scrollElement.height(),n=this.offsets,s=this.targets,a=this.activeTarget;if(this.scrollHeight!=i&&this.refresh(),o<=e)return a!=(t=s[s.length-1])&&this.activate(t);if(a&&e=n[t]&&(n[t+1]===undefined||e .active"),n=i&&r.support.transition&&(o.length&&o.hasClass("fade")||!!e.find("> .fade").length);function s(){o.removeClass("active").find("> .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),t.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),n?(t[0].offsetWidth,t.addClass("in")):t.removeClass("fade"),t.parent(".dropdown-menu").length&&t.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),i&&i()}o.length&&n?o.one("bsTransitionEnd",s).emulateTransitionEnd(a.TRANSITION_DURATION):s(),o.removeClass("in")};var t=r.fn.tab;r.fn.tab=e,r.fn.tab.Constructor=a,r.fn.tab.noConflict=function(){return r.fn.tab=t,this};var i=function(t){t.preventDefault(),e.call(r(this),"show")};r(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',i).on("click.bs.tab.data-api",'[data-toggle="pill"]',i)}(jQuery),function(l){"use strict";var h=function(t,e){this.options=l.extend({},h.DEFAULTS,e);var i=this.options.target===h.DEFAULTS.target?l(this.options.target):l(document).find(this.options.target);this.$target=i.on("scroll.bs.affix.data-api",l.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",l.proxy(this.checkPositionWithEventLoop,this)),this.$element=l(t),this.affixed=null,this.unpin=null,this.pinnedOffset=null,this.checkPosition()};function i(o){return this.each(function(){var t=l(this),e=t.data("bs.affix"),i="object"==typeof o&&o;e||t.data("bs.affix",e=new h(this,i)),"string"==typeof o&&e[o]()})}h.VERSION="3.4.1",h.RESET="affix affix-top affix-bottom",h.DEFAULTS={offset:0,target:window},h.prototype.getState=function(t,e,i,o){var n=this.$target.scrollTop(),s=this.$element.offset(),a=this.$target.height();if(null!=i&&"top"==this.affixed)return n/g,">")}function r(e){return e.nodeName.toLowerCase()}function a(e,t){var r=e&&e.exec(t);return r&&0===r.index}function i(e){return T.test(e)}function n(e){var t,r,a,n,o=e.className+" ";if(o+=e.parentNode?e.parentNode.className:"",r=w.exec(o))return S(r[1])?r[1]:"no-highlight";for(o=o.split(/\s+/),t=0,a=o.length;a>t;t++)if(n=o[t],i(n)||S(n))return n}function o(e){var t,r={},a=Array.prototype.slice.call(arguments,1);for(t in e)r[t]=e[t];return a.forEach(function(e){for(t in e)r[t]=e[t]}),r}function s(e){var t=[];return function a(e,i){for(var n=e.firstChild;n;n=n.nextSibling)3===n.nodeType?i+=n.nodeValue.length:1===n.nodeType&&(t.push({event:"start",offset:i,node:n}),i=a(n,i),r(n).match(/br|hr|img|input/)||t.push({event:"stop",offset:i,node:n}));return i}(e,0),t}function l(e,a,i){function n(){return e.length&&a.length?e[0].offset!==a[0].offset?e[0].offset"}function s(e){d+=""}function l(e){("start"===e.event?o:s)(e.node)}for(var c=0,d="",p=[];e.length||a.length;){var m=n();if(d+=t(i.substring(c,m[0].offset)),c=m[0].offset,m===e){p.reverse().forEach(s);do l(m.splice(0,1)[0]),m=n();while(m===e&&m.length&&m[0].offset===c);p.reverse().forEach(o)}else"start"===m[0].event?p.push(m[0].node):p.pop(),l(m.splice(0,1)[0])}return d+t(i.substr(c))}function c(e){return e.v&&!e.cached_variants&&(e.cached_variants=e.v.map(function(t){return o(e,{v:null},t)})),e.cached_variants||e.eW&&[o(e)]||[e]}function d(e){function t(e){return e&&e.source||e}function r(r,a){return new RegExp(t(r),"m"+(e.cI?"i":"")+(a?"g":""))}function a(i,n){if(!i.compiled){if(i.compiled=!0,i.k=i.k||i.bK,i.k){var o={},s=function(t,r){e.cI&&(r=r.toLowerCase()),r.split(" ").forEach(function(e){var r=e.split("|");o[r[0]]=[t,r[1]?Number(r[1]):1]})};"string"==typeof i.k?s("keyword",i.k):x(i.k).forEach(function(e){s(e,i.k[e])}),i.k=o}i.lR=r(i.l||/\w+/,!0),n&&(i.bK&&(i.b="\\b("+i.bK.split(" ").join("|")+")\\b"),i.b||(i.b=/\B|\b/),i.bR=r(i.b),i.e||i.eW||(i.e=/\B|\b/),i.e&&(i.eR=r(i.e)),i.tE=t(i.e)||"",i.eW&&n.tE&&(i.tE+=(i.e?"|":"")+n.tE)),i.i&&(i.iR=r(i.i)),null==i.r&&(i.r=1),i.c||(i.c=[]),i.c=Array.prototype.concat.apply([],i.c.map(function(e){return c("self"===e?i:e)})),i.c.forEach(function(e){a(e,i)}),i.starts&&a(i.starts,n);var l=i.c.map(function(e){return e.bK?"\\.?("+e.b+")\\.?":e.b}).concat([i.tE,i.i]).map(t).filter(Boolean);i.t=l.length?r(l.join("|"),!0):{exec:function(){return null}}}}a(e)}function p(e,r,i,n){function o(e,t){var r,i;for(r=0,i=t.c.length;i>r;r++)if(a(t.c[r].bR,e))return t.c[r]}function s(e,t){if(a(e.eR,t)){for(;e.endsParent&&e.parent;)e=e.parent;return e}return e.eW?s(e.parent,t):void 0}function l(e,t){return!i&&a(t.iR,e)}function c(e,t){var r=v.cI?t[0].toLowerCase():t[0];return e.k.hasOwnProperty(r)&&e.k[r]}function u(e,t,r,a){var i=a?"":D.classPrefix,n='',n+t+o}function b(){var e,r,a,i;if(!C.k)return t(T);for(i="",r=0,C.lR.lastIndex=0,a=C.lR.exec(T);a;)i+=t(T.substring(r,a.index)),e=c(C,a),e?(w+=e[1],i+=u(e[0],t(a[0]))):i+=t(a[0]),r=C.lR.lastIndex,a=C.lR.exec(T);return i+t(T.substr(r))}function g(){var e="string"==typeof C.sL;if(e&&!E[C.sL])return t(T);var r=e?p(C.sL,T,!0,x[C.sL]):m(T,C.sL.length?C.sL:void 0);return C.r>0&&(w+=r.r),e&&(x[C.sL]=r.top),u(r.language,r.value,!1,!0)}function f(){N+=null!=C.sL?g():b(),T=""}function _(e){N+=e.cN?u(e.cN,"",!0):"",C=Object.create(e,{parent:{value:C}})}function h(e,t){if(T+=e,null==t)return f(),0;var r=o(t,C);if(r)return r.skip?T+=t:(r.eB&&(T+=t),f(),r.rB||r.eB||(T=t)),_(r,t),r.rB?0:t.length;var a=s(C,t);if(a){var i=C;i.skip?T+=t:(i.rE||i.eE||(T+=t),f(),i.eE&&(T=t));do C.cN&&(N+=M),C.skip||(w+=C.r),C=C.parent;while(C!==a.parent);return a.starts&&_(a.starts,""),i.rE?0:t.length}if(l(t,C))throw new Error('Illegal lexeme "'+t+'" for mode "'+(C.cN||"")+'"');return T+=t,t.length||1}var v=S(e);if(!v)throw new Error('Unknown language: "'+e+'"');d(v);var y,C=n||v,x={},N="";for(y=C;y!==v;y=y.parent)y.cN&&(N=u(y.cN,"",!0)+N);var T="",w=0;try{for(var A,I,k=0;;){if(C.t.lastIndex=k,A=C.t.exec(r),!A)break;I=h(r.substring(k,A.index),A[0]),k=A.index+I}for(h(r.substr(k)),y=C;y.parent;y=y.parent)y.cN&&(N+=M);return{r:w,value:N,language:e,top:C}}catch(R){if(R.message&&-1!==R.message.indexOf("Illegal"))return{r:0,value:t(r)};throw R}}function m(e,r){r=r||D.languages||x(E);var a={r:0,value:t(e)},i=a;return r.filter(S).forEach(function(t){var r=p(t,e,!1);r.language=t,r.r>i.r&&(i=r),r.r>a.r&&(i=a,a=r)}),i.language&&(a.second_best=i),a}function u(e){return D.tabReplace||D.useBR?e.replace(A,function(e,t){return D.useBR&&"\n"===e?"
":D.tabReplace?t.replace(/\t/g,D.tabReplace):""}):e}function b(e,t,r){var a=t?N[t]:r,i=[e.trim()];return e.match(/\bhljs\b/)||i.push("hljs"),-1===e.indexOf(a)&&i.push(a),i.join(" ").trim()}function g(e){var t,r,a,o,c,d=n(e);i(d)||(D.useBR?(t=document.createElementNS("http://www.w3.org/1999/xhtml","div"),t.innerHTML=e.innerHTML.replace(/\n/g,"").replace(//g,"\n")):t=e,c=t.textContent,a=d?p(d,c,!0):m(c),r=s(t),r.length&&(o=document.createElementNS("http://www.w3.org/1999/xhtml","div"),o.innerHTML=a.value,a.value=l(r,s(o),c)),a.value=u(a.value),e.innerHTML=a.value,e.className=b(e.className,d,a.language),e.result={language:a.language,re:a.r},a.second_best&&(e.second_best={language:a.second_best.language,re:a.second_best.r}))}function f(e){D=o(D,e)}function _(){if(!_.called){_.called=!0;var e=document.querySelectorAll("pre code");C.forEach.call(e,g)}}function h(){addEventListener("DOMContentLoaded",_,!1),addEventListener("load",_,!1)}function v(t,r){var a=E[t]=r(e);a.aliases&&a.aliases.forEach(function(e){N[e]=t})}function y(){return x(E)}function S(e){return e=(e||"").toLowerCase(),E[e]||E[N[e]]}var C=[],x=Object.keys,E={},N={},T=/^(no-?highlight|plain|text)$/i,w=/\blang(?:uage)?-([\w-]+)\b/i,A=/((^(<[^>]+>|\t|)+|(?:\n)))/gm,M="
",D={classPrefix:"hljs-",tabReplace:null,useBR:!1,languages:void 0};return e.highlight=p,e.highlightAuto=m,e.fixMarkup=u,e.highlightBlock=g,e.configure=f,e.initHighlighting=_,e.initHighlightingOnLoad=h,e.registerLanguage=v,e.listLanguages=y,e.getLanguage=S,e.inherit=o,e.IR="[a-zA-Z]\\w*",e.UIR="[a-zA-Z_]\\w*",e.NR="\\b\\d+(\\.\\d+)?",e.CNR="(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)",e.BNR="\\b(0b[01]+)",e.RSR="!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~",e.BE={b:"\\\\[\\s\\S]",r:0},e.ASM={cN:"string",b:"'",e:"'",i:"\\n",c:[e.BE]},e.QSM={cN:"string",b:'"',e:'"',i:"\\n",c:[e.BE]},e.PWM={b:/\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\b/},e.C=function(t,r,a){var i=e.inherit({cN:"comment",b:t,e:r,c:[]},a||{});return i.c.push(e.PWM),i.c.push({cN:"doctag",b:"(?:TODO|FIXME|NOTE|BUG|XXX):",r:0}),i},e.CLCM=e.C("//","$"),e.CBCM=e.C("/\\*","\\*/"),e.HCM=e.C("#","$"),e.NM={cN:"number",b:e.NR,r:0},e.CNM={cN:"number",b:e.CNR,r:0},e.BNM={cN:"number",b:e.BNR,r:0},e.CSSNM={cN:"number",b:e.NR+"(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?",r:0},e.RM={cN:"regexp",b:/\//,e:/\/[gimuy]*/,i:/\n/,c:[e.BE,{b:/\[/,e:/\]/,r:0,c:[e.BE]}]},e.TM={cN:"title",b:e.IR,r:0},e.UTM={cN:"title",b:e.UIR,r:0},e.METHOD_GUARD={b:"\\.\\s*"+e.UIR,r:0},e.registerLanguage("1c",function(e){var t="[A-Za-zА-Яа-яёЁ_][A-Za-zА-Яа-яёЁ_0-9]+",r="далее ",a="возврат вызватьисключение выполнить для если и из или иначе иначеесли исключение каждого конецесли конецпопытки конеццикла не новый перейти перем по пока попытка прервать продолжить тогда цикл экспорт ",i=r+a,n="загрузитьизфайла ",o="вебклиент вместо внешнеесоединение клиент конецобласти мобильноеприложениеклиент мобильноеприложениесервер наклиенте наклиентенасервере наклиентенасерверебезконтекста насервере насерверебезконтекста область перед после сервер толстыйклиентобычноеприложение толстыйклиентуправляемоеприложение тонкийклиент ",s=n+o,l="разделительстраниц разделительстрок символтабуляции ",c="ansitooem oemtoansi ввестивидсубконто ввестиперечисление ввестипериод ввестиплансчетов выбранныйплансчетов датагод датамесяц датачисло заголовоксистемы значениевстроку значениеизстроки каталогиб каталогпользователя кодсимв конгода конецпериодаби конецрассчитанногопериодаби конецстандартногоинтервала конквартала конмесяца коннедели лог лог10 максимальноеколичествосубконто названиеинтерфейса названиенабораправ назначитьвид назначитьсчет найтиссылки началопериодаби началостандартногоинтервала начгода начквартала начмесяца начнедели номерднягода номерднянедели номернеделигода обработкаожидания основнойжурналрасчетов основнойплансчетов основнойязык очиститьокносообщений периодстр получитьвремята получитьдатута получитьдокументта получитьзначенияотбора получитьпозициюта получитьпустоезначение получитьта префиксавтонумерации пропись пустоезначение разм разобратьпозициюдокумента рассчитатьрегистрына рассчитатьрегистрыпо симв создатьобъект статусвозврата стрколичествострок сформироватьпозициюдокумента счетпокоду текущеевремя типзначения типзначениястр установитьтана установитьтапо фиксшаблон шаблон ",d="acos asin atan base64значение base64строка cos exp log log10 pow sin sqrt tan xmlзначение xmlстрока xmlтип xmlтипзнч активноеокно безопасныйрежим безопасныйрежимразделенияданных булево ввестидату ввестизначение ввестистроку ввестичисло возможностьчтенияxml вопрос восстановитьзначение врег выгрузитьжурналрегистрации выполнитьобработкуоповещения выполнитьпроверкуправдоступа вычислить год данныеформывзначение дата день деньгода деньнедели добавитьмесяц заблокироватьданныедляредактирования заблокироватьработупользователя завершитьработусистемы загрузитьвнешнююкомпоненту закрытьсправку записатьjson записатьxml записатьдатуjson записьжурналарегистрации заполнитьзначениясвойств запроситьразрешениепользователя запуститьприложение запуститьсистему зафиксироватьтранзакцию значениевданныеформы значениевстрокувнутр значениевфайл значениезаполнено значениеизстрокивнутр значениеизфайла изxmlтипа импортмоделиxdto имякомпьютера имяпользователя инициализироватьпредопределенныеданные информацияобошибке каталогбиблиотекимобильногоустройства каталогвременныхфайлов каталогдокументов каталогпрограммы кодироватьстроку кодлокализацииинформационнойбазы кодсимвола командасистемы конецгода конецдня конецквартала конецмесяца конецминуты конецнедели конецчаса конфигурациябазыданныхизмененадинамически конфигурацияизменена копироватьданныеформы копироватьфайл краткоепредставлениеошибки лев макс местноевремя месяц мин минута монопольныйрежим найти найтинедопустимыесимволыxml найтиокнопонавигационнойссылке найтипомеченныенаудаление найтипоссылкам найтифайлы началогода началодня началоквартала началомесяца началоминуты началонедели началочаса начатьзапросразрешенияпользователя начатьзапускприложения начатькопированиефайла начатьперемещениефайла начатьподключениевнешнейкомпоненты начатьподключениерасширенияработыскриптографией начатьподключениерасширенияработысфайлами начатьпоискфайлов начатьполучениекаталогавременныхфайлов начатьполучениекаталогадокументов начатьполучениерабочегокаталогаданныхпользователя начатьполучениефайлов начатьпомещениефайла начатьпомещениефайлов начатьсозданиедвоичныхданныхизфайла начатьсозданиекаталога начатьтранзакцию начатьудалениефайлов начатьустановкувнешнейкомпоненты начатьустановкурасширенияработыскриптографией начатьустановкурасширенияработысфайлами неделягода необходимостьзавершениясоединения номерсеансаинформационнойбазы номерсоединенияинформационнойбазы нрег нстр обновитьинтерфейс обновитьнумерациюобъектов обновитьповторноиспользуемыезначения обработкапрерыванияпользователя объединитьфайлы окр описаниеошибки оповестить оповеститьобизменении отключитьобработчикзапросанастроекклиенталицензирования отключитьобработчикожидания отключитьобработчикоповещения открытьзначение открытьиндекссправки открытьсодержаниесправки открытьсправку открытьформу открытьформумодально отменитьтранзакцию очиститьжурналрегистрации очиститьнастройкипользователя очиститьсообщения параметрыдоступа перейтипонавигационнойссылке переместитьфайл подключитьвнешнююкомпоненту подключитьобработчикзапросанастроекклиенталицензирования подключитьобработчикожидания подключитьобработчикоповещения подключитьрасширениеработыскриптографией подключитьрасширениеработысфайлами подробноепредставлениеошибки показатьвводдаты показатьвводзначения показатьвводстроки показатьвводчисла показатьвопрос показатьзначение показатьинформациюобошибке показатьнакарте показатьоповещениепользователя показатьпредупреждение полноеимяпользователя получитьcomобъект получитьxmlтип получитьадреспоместоположению получитьблокировкусеансов получитьвремязавершенияспящегосеанса получитьвремязасыпанияпассивногосеанса получитьвремяожиданияблокировкиданных получитьданныевыбора получитьдополнительныйпараметрклиенталицензирования получитьдопустимыекодылокализации получитьдопустимыечасовыепояса получитьзаголовокклиентскогоприложения получитьзаголовоксистемы получитьзначенияотборажурналарегистрации получитьидентификаторконфигурации получитьизвременногохранилища получитьимявременногофайла получитьимяклиенталицензирования получитьинформациюэкрановклиента получитьиспользованиежурналарегистрации получитьиспользованиесобытияжурналарегистрации получитькраткийзаголовокприложения получитьмакетоформления получитьмаскувсефайлы получитьмаскувсефайлыклиента получитьмаскувсефайлысервера получитьместоположениепоадресу получитьминимальнуюдлинупаролейпользователей получитьнавигационнуюссылку получитьнавигационнуюссылкуинформационнойбазы получитьобновлениеконфигурациибазыданных получитьобновлениепредопределенныхданныхинформационнойбазы получитьобщиймакет получитьобщуюформу получитьокна получитьоперативнуюотметкувремени получитьотключениебезопасногорежима получитьпараметрыфункциональныхопцийинтерфейса получитьполноеимяпредопределенногозначения получитьпредставлениянавигационныхссылок получитьпроверкусложностипаролейпользователей получитьразделительпути получитьразделительпутиклиента получитьразделительпутисервера получитьсеансыинформационнойбазы получитьскоростьклиентскогосоединения получитьсоединенияинформационнойбазы получитьсообщенияпользователю получитьсоответствиеобъектаиформы получитьсоставстандартногоинтерфейсаodata получитьструктурухранениябазыданных получитьтекущийсеансинформационнойбазы получитьфайл получитьфайлы получитьформу получитьфункциональнуюопцию получитьфункциональнуюопциюинтерфейса получитьчасовойпоясинформационнойбазы пользователиос поместитьвовременноехранилище поместитьфайл поместитьфайлы прав праводоступа предопределенноезначение представлениекодалокализации представлениепериода представлениеправа представлениеприложения представлениесобытияжурналарегистрации представлениечасовогопояса предупреждение прекратитьработусистемы привилегированныйрежим продолжитьвызов прочитатьjson прочитатьxml прочитатьдатуjson пустаястрока рабочийкаталогданныхпользователя разблокироватьданныедляредактирования разделитьфайл разорватьсоединениесвнешнимисточникомданных раскодироватьстроку рольдоступна секунда сигнал символ скопироватьжурналрегистрации смещениелетнеговремени смещениестандартноговремени соединитьбуферыдвоичныхданных создатькаталог создатьфабрикуxdto сокрл сокрлп сокрп сообщить состояние сохранитьзначение сохранитьнастройкипользователя сред стрдлина стрзаканчиваетсяна стрзаменить стрнайти стрначинаетсяс строка строкасоединенияинформационнойбазы стрполучитьстроку стрразделить стрсоединить стрсравнить стрчисловхождений стрчислострок стршаблон текущаядата текущаядатасеанса текущаяуниверсальнаядата текущаяуниверсальнаядатавмиллисекундах текущийвариантинтерфейсаклиентскогоприложения текущийвариантосновногошрифтаклиентскогоприложения текущийкодлокализации текущийрежимзапуска текущийязык текущийязыксистемы тип типзнч транзакцияактивна трег удалитьданныеинформационнойбазы удалитьизвременногохранилища удалитьобъекты удалитьфайлы универсальноевремя установитьбезопасныйрежим установитьбезопасныйрежимразделенияданных установитьблокировкусеансов установитьвнешнююкомпоненту установитьвремязавершенияспящегосеанса установитьвремязасыпанияпассивногосеанса установитьвремяожиданияблокировкиданных установитьзаголовокклиентскогоприложения установитьзаголовоксистемы установитьиспользованиежурналарегистрации установитьиспользованиесобытияжурналарегистрации установитькраткийзаголовокприложения установитьминимальнуюдлинупаролейпользователей установитьмонопольныйрежим установитьнастройкиклиенталицензирования установитьобновлениепредопределенныхданныхинформационнойбазы установитьотключениебезопасногорежима установитьпараметрыфункциональныхопцийинтерфейса установитьпривилегированныйрежим установитьпроверкусложностипаролейпользователей установитьрасширениеработыскриптографией установитьрасширениеработысфайлами установитьсоединениесвнешнимисточникомданных установитьсоответствиеобъектаиформы установитьсоставстандартногоинтерфейсаodata установитьчасовойпоясинформационнойбазы установитьчасовойпояссеанса формат цел час часовойпояс часовойпояссеанса число числопрописью этоадресвременногохранилища ",p="wsссылки библиотекакартинок библиотекамакетовоформлениякомпоновкиданных библиотекастилей бизнеспроцессы внешниеисточникиданных внешниеобработки внешниеотчеты встроенныепокупки главныйинтерфейс главныйстиль документы доставляемыеуведомления журналыдокументов задачи информацияобинтернетсоединении использованиерабочейдаты историяработыпользователя константы критерииотбора метаданные обработки отображениерекламы отправкадоставляемыхуведомлений отчеты панельзадачос параметрзапуска параметрысеанса перечисления планывидоврасчета планывидовхарактеристик планыобмена планысчетов полнотекстовыйпоиск пользователиинформационнойбазы последовательности проверкавстроенныхпокупок рабочаядата расширенияконфигурации регистрыбухгалтерии регистрынакопления регистрырасчета регистрысведений регламентныезадания сериализаторxdto справочники средствагеопозиционирования средствакриптографии средствамультимедиа средстваотображениярекламы средствапочты средствателефонии фабрикаxdto файловыепотоки фоновыезадания хранилищанастроек хранилищевариантовотчетов хранилищенастроекданныхформ хранилищеобщихнастроек хранилищепользовательскихнастроекдинамическихсписков хранилищепользовательскихнастроекотчетов хранилищесистемныхнастроек ",m=l+c+d+p,u="webцвета windowsцвета windowsшрифты библиотекакартинок рамкистиля символы цветастиля шрифтыстиля ",b="автоматическоесохранениеданныхформывнастройках автонумерациявформе автораздвижениесерий анимациядиаграммы вариантвыравниванияэлементовизаголовков вариантуправлениявысотойтаблицы вертикальнаяпрокруткаформы вертикальноеположение вертикальноеположениеэлемента видгруппыформы виддекорацииформы виддополненияэлементаформы видизмененияданных видкнопкиформы видпереключателя видподписейкдиаграмме видполяформы видфлажка влияниеразмеранапузырекдиаграммы горизонтальноеположение горизонтальноеположениеэлемента группировкаколонок группировкаподчиненныхэлементовформы группыиэлементы действиеперетаскивания дополнительныйрежимотображения допустимыедействияперетаскивания интервалмеждуэлементамиформы использованиевывода использованиеполосыпрокрутки используемоезначениеточкибиржевойдиаграммы историявыборапривводе источникзначенийоситочекдиаграммы источникзначенияразмерапузырькадиаграммы категориягруппыкоманд максимумсерий начальноеотображениедерева начальноеотображениесписка обновлениетекстаредактирования ориентациядендрограммы ориентациядиаграммы ориентацияметокдиаграммы ориентацияметоксводнойдиаграммы ориентацияэлементаформы отображениевдиаграмме отображениевлегендедиаграммы отображениегруппыкнопок отображениезаголовкашкалыдиаграммы отображениезначенийсводнойдиаграммы отображениезначенияизмерительнойдиаграммы отображениеинтерваладиаграммыганта отображениекнопки отображениекнопкивыбора отображениеобсужденийформы отображениеобычнойгруппы отображениеотрицательныхзначенийпузырьковойдиаграммы отображениепанелипоиска отображениеподсказки отображениепредупрежденияприредактировании отображениеразметкиполосырегулирования отображениестраницформы отображениетаблицы отображениетекстазначениядиаграммыганта отображениеуправленияобычнойгруппы отображениефигурыкнопки палитрацветовдиаграммы поведениеобычнойгруппы поддержкамасштабадендрограммы поддержкамасштабадиаграммыганта поддержкамасштабасводнойдиаграммы поисквтаблицепривводе положениезаголовкаэлементаформы положениекартинкикнопкиформы положениекартинкиэлементаграфическойсхемы положениекоманднойпанелиформы положениекоманднойпанелиэлементаформы положениеопорнойточкиотрисовки положениеподписейкдиаграмме положениеподписейшкалызначенийизмерительнойдиаграммы положениесостоянияпросмотра положениестрокипоиска положениетекстасоединительнойлинии положениеуправленияпоиском положениешкалывремени порядокотображенияточекгоризонтальнойгистограммы порядоксерийвлегендедиаграммы размеркартинки расположениезаголовкашкалыдиаграммы растягиваниеповертикалидиаграммыганта режимавтоотображениясостояния режимвводастроктаблицы режимвыборанезаполненного режимвыделениядаты режимвыделениястрокитаблицы режимвыделениятаблицы режимизмененияразмера режимизменениясвязанногозначения режимиспользованиядиалогапечати режимиспользованияпараметракоманды режиммасштабированияпросмотра режимосновногоокнаклиентскогоприложения режимоткрытияокнаформы режимотображениявыделения режимотображениягеографическойсхемы режимотображениязначенийсерии режимотрисовкисеткиграфическойсхемы режимполупрозрачностидиаграммы режимпробеловдиаграммы режимразмещениянастранице режимредактированияколонки режимсглаживаниядиаграммы режимсглаживанияиндикатора режимсписказадач сквозноевыравнивание сохранениеданныхформывнастройках способзаполнениятекстазаголовкашкалыдиаграммы способопределенияограничивающегозначениядиаграммы стандартнаягруппакоманд стандартноеоформление статусоповещенияпользователя стильстрелки типаппроксимациилиниитрендадиаграммы типдиаграммы типединицышкалывремени типимпортасерийслоягеографическойсхемы типлиниигеографическойсхемы типлиниидиаграммы типмаркерагеографическойсхемы типмаркерадиаграммы типобластиоформления типорганизацииисточникаданныхгеографическойсхемы типотображениясериислоягеографическойсхемы типотображенияточечногообъектагеографическойсхемы типотображенияшкалыэлементалегендыгеографическойсхемы типпоискаобъектовгеографическойсхемы типпроекциигеографическойсхемы типразмещенияизмерений типразмещенияреквизитовизмерений типрамкиэлементауправления типсводнойдиаграммы типсвязидиаграммыганта типсоединениязначенийпосериямдиаграммы типсоединенияточекдиаграммы типсоединительнойлинии типстороныэлементаграфическойсхемы типформыотчета типшкалырадарнойдиаграммы факторлиниитрендадиаграммы фигуракнопки фигурыграфическойсхемы фиксациявтаблице форматдняшкалывремени форматкартинки ширинаподчиненныхэлементовформы ",g="виддвижениябухгалтерии виддвижениянакопления видпериодарегистрарасчета видсчета видточкимаршрутабизнеспроцесса использованиеагрегатарегистранакопления использованиегруппиэлементов использованиережимапроведения использованиесреза периодичностьагрегатарегистранакопления режимавтовремя режимзаписидокумента режимпроведениядокумента ",f="авторегистрацияизменений допустимыйномерсообщения отправкаэлементаданных получениеэлементаданных ",_="использованиерасшифровкитабличногодокумента ориентациястраницы положениеитоговколоноксводнойтаблицы положениеитоговстроксводнойтаблицы положениетекстаотносительнокартинки расположениезаголовкагруппировкитабличногодокумента способчтениязначенийтабличногодокумента типдвустороннейпечати типзаполненияобластитабличногодокумента типкурсоровтабличногодокумента типлиниирисункатабличногодокумента типлинииячейкитабличногодокумента типнаправленияпереходатабличногодокумента типотображениявыделениятабличногодокумента типотображениялинийсводнойтаблицы типразмещениятекстатабличногодокумента типрисункатабличногодокумента типсмещениятабличногодокумента типузоратабличногодокумента типфайлатабличногодокумента точностьпечати чередованиерасположениястраниц ",h="отображениевремениэлементовпланировщика ",v="типфайлаформатированногодокумента ",y="обходрезультатазапроса типзаписизапроса ",S="видзаполнениярасшифровкипостроителяотчета типдобавленияпредставлений типизмеренияпостроителяотчета типразмещенияитогов ",C="доступкфайлу режимдиалогавыборафайла режимоткрытияфайла ",x="типизмеренияпостроителязапроса ",E="видданныханализа методкластеризации типединицыинтервалавременианализаданных типзаполнениятаблицырезультатаанализаданных типиспользованиячисловыхзначенийанализаданных типисточникаданныхпоискаассоциаций типколонкианализаданныхдереворешений типколонкианализаданныхкластеризация типколонкианализаданныхобщаястатистика типколонкианализаданныхпоискассоциаций типколонкианализаданныхпоискпоследовательностей типколонкимоделипрогноза типмерырасстоянияанализаданных типотсеченияправилассоциации типполяанализаданных типстандартизациианализаданных типупорядочиванияправилассоциациианализаданных типупорядочиванияшаблоновпоследовательностейанализаданных типупрощениядереварешений ",N="wsнаправлениепараметра вариантxpathxs вариантзаписидатыjson вариантпростоготипаxs видгруппымоделиxs видфасетаxdto действиепостроителяdom завершенностьпростоготипаxs завершенностьсоставноготипаxs завершенностьсхемыxs запрещенныеподстановкиxs исключениягруппподстановкиxs категорияиспользованияатрибутаxs категорияограниченияидентичностиxs категорияограниченияпространствименxs методнаследованияxs модельсодержимогоxs назначениетипаxml недопустимыеподстановкиxs обработкапробельныхсимволовxs обработкасодержимогоxs ограничениезначенияxs параметрыотбораузловdom переносстрокjson позициявдокументеdom пробельныесимволыxml типатрибутаxml типзначенияjson типканоническогоxml типкомпонентыxs типпроверкиxml типрезультатаdomxpath типузлаdom типузлаxml формаxml формапредставленияxs форматдатыjson экранированиесимволовjson ",T="видсравнениякомпоновкиданных действиеобработкирасшифровкикомпоновкиданных направлениесортировкикомпоновкиданных расположениевложенныхэлементоврезультатакомпоновкиданных расположениеитоговкомпоновкиданных расположениегруппировкикомпоновкиданных расположениеполейгруппировкикомпоновкиданных расположениеполякомпоновкиданных расположениереквизитовкомпоновкиданных расположениересурсовкомпоновкиданных типбухгалтерскогоостаткакомпоновкиданных типвыводатекстакомпоновкиданных типгруппировкикомпоновкиданных типгруппыэлементовотборакомпоновкиданных типдополненияпериодакомпоновкиданных типзаголовкаполейкомпоновкиданных типмакетагруппировкикомпоновкиданных типмакетаобластикомпоновкиданных типостаткакомпоновкиданных типпериодакомпоновкиданных типразмещениятекстакомпоновкиданных типсвязинаборовданныхкомпоновкиданных типэлементарезультатакомпоновкиданных расположениелегендыдиаграммыкомпоновкиданных типпримененияотборакомпоновкиданных режимотображенияэлементанастройкикомпоновкиданных режимотображениянастроеккомпоновкиданных состояниеэлементанастройкикомпоновкиданных способвосстановлениянастроеккомпоновкиданных режимкомпоновкирезультата использованиепараметракомпоновкиданных автопозицияресурсовкомпоновкиданных вариантиспользованиягруппировкикомпоновкиданных расположениересурсоввдиаграммекомпоновкиданных фиксациякомпоновкиданных использованиеусловногооформлениякомпоновкиданных ",w="важностьинтернетпочтовогосообщения обработкатекстаинтернетпочтовогосообщения способкодированияинтернетпочтовоговложения способкодированиянеasciiсимволовинтернетпочтовогосообщения типтекстапочтовогосообщения протоколинтернетпочты статусразборапочтовогосообщения ",A="режимтранзакциизаписижурналарегистрации статустранзакциизаписижурналарегистрации уровеньжурналарегистрации ",M="расположениехранилищасертификатовкриптографии режимвключениясертификатовкриптографии режимпроверкисертификатакриптографии типхранилищасертификатовкриптографии ",D="кодировкаименфайловвzipфайле методсжатияzip методшифрованияzip режимвосстановленияпутейфайловzip режимобработкиподкаталоговzip режимсохраненияпутейzip уровеньсжатияzip ",I="звуковоеоповещение направлениепереходакстроке позициявпотоке порядокбайтов режимблокировкиданных режимуправленияблокировкойданных сервисвстроенныхпокупок состояниефоновогозадания типподписчикадоставляемыхуведомлений уровеньиспользованиязащищенногосоединенияftp ",k="направлениепорядкасхемызапроса типдополненияпериодамисхемызапроса типконтрольнойточкисхемызапроса типобъединениясхемызапроса типпараметрадоступнойтаблицысхемызапроса типсоединениясхемызапроса ",R="httpметод автоиспользованиеобщегореквизита автопрефиксномеразадачи вариантвстроенногоязыка видиерархии видрегистранакопления видтаблицывнешнегоисточникаданных записьдвиженийприпроведении заполнениепоследовательностей индексирование использованиебазыпланавидоврасчета использованиебыстроговыбора использованиеобщегореквизита использованиеподчинения использованиеполнотекстовогопоиска использованиеразделяемыхданныхобщегореквизита использованиереквизита назначениеиспользованияприложения назначениерасширенияконфигурации направлениепередачи обновлениепредопределенныхданных оперативноепроведение основноепредставлениевидарасчета основноепредставлениевидахарактеристики основноепредставлениезадачи основноепредставлениепланаобмена основноепредставлениесправочника основноепредставлениесчета перемещениеграницыприпроведении периодичностьномерабизнеспроцесса периодичностьномерадокумента периодичностьрегистрарасчета периодичностьрегистрасведений повторноеиспользованиевозвращаемыхзначений полнотекстовыйпоискпривводепостроке принадлежностьобъекта проведение разделениеаутентификацииобщегореквизита разделениеданныхобщегореквизита разделениерасширенийконфигурацииобщегореквизита режимавтонумерацииобъектов режимзаписирегистра режимиспользованиямодальности режимиспользованиясинхронныхвызововрасширенийплатформыивнешнихкомпонент режимповторногоиспользованиясеансов режимполученияданныхвыборапривводепостроке режимсовместимости режимсовместимостиинтерфейса режимуправленияблокировкойданныхпоумолчанию сериикодовпланавидовхарактеристик сериикодовпланасчетов сериикодовсправочника созданиепривводе способвыбора способпоискастрокипривводепостроке способредактирования типданныхтаблицывнешнегоисточникаданных типкодапланавидоврасчета типкодасправочника типмакета типномерабизнеспроцесса типномерадокумента типномеразадачи типформы удалениедвижений ",L="важностьпроблемыприменениярасширенияконфигурации вариантинтерфейсаклиентскогоприложения вариантмасштабаформклиентскогоприложения вариантосновногошрифтаклиентскогоприложения вариантстандартногопериода вариантстандартнойдатыначала видграницы видкартинки видотображенияполнотекстовогопоиска видрамки видсравнения видцвета видчисловогозначения видшрифта допустимаядлина допустимыйзнак использованиеbyteordermark использованиеметаданныхполнотекстовогопоиска источникрасширенийконфигурации клавиша кодвозвратадиалога кодировкаxbase кодировкатекста направлениепоиска направлениесортировки обновлениепредопределенныхданных обновлениеприизмененииданных отображениепанелиразделов проверказаполнения режимдиалогавопрос режимзапускаклиентскогоприложения режимокругления режимоткрытияформприложения режимполнотекстовогопоиска скоростьклиентскогосоединения состояниевнешнегоисточникаданных состояниеобновленияконфигурациибазыданных способвыборасертификатаwindows способкодированиястроки статуссообщения типвнешнейкомпоненты типплатформы типповеденияклавишиenter типэлементаинформацииовыполненииобновленияконфигурациибазыданных уровеньизоляциитранзакций хешфункция частидаты",P=u+b+g+f+_+h+v+y+S+C+x+E+N+T+w+A+M+D+I+k+R+L,O="comобъект ftpсоединение httpзапрос httpсервисответ httpсоединение wsопределения wsпрокси xbase анализданных аннотацияxs блокировкаданных буфердвоичныхданных включениеxs выражениекомпоновкиданных генераторслучайныхчисел географическаясхема географическиекоординаты графическаясхема группамоделиxs данныерасшифровкикомпоновкиданных двоичныеданные дендрограмма диаграмма диаграммаганта диалогвыборафайла диалогвыборацвета диалогвыборашрифта диалограсписаниярегламентногозадания диалогредактированиястандартногопериода диапазон документdom документhtml документацияxs доставляемоеуведомление записьdom записьfastinfoset записьhtml записьjson записьxml записьzipфайла записьданных записьтекста записьузловdom запрос защищенноесоединениеopenssl значенияполейрасшифровкикомпоновкиданных извлечениетекста импортxs интернетпочта интернетпочтовоесообщение интернетпочтовыйпрофиль интернетпрокси интернетсоединение информациядляприложенияxs использованиеатрибутаxs использованиесобытияжурналарегистрации источникдоступныхнастроеккомпоновкиданных итераторузловdom картинка квалификаторыдаты квалификаторыдвоичныхданных квалификаторыстроки квалификаторычисла компоновщикмакетакомпоновкиданных компоновщикнастроеккомпоновкиданных конструктормакетаоформлениякомпоновкиданных конструкторнастроеккомпоновкиданных конструкторформатнойстроки линия макеткомпоновкиданных макетобластикомпоновкиданных макетоформлениякомпоновкиданных маскаxs менеджеркриптографии наборсхемxml настройкикомпоновкиданных настройкисериализацииjson обработкакартинок обработкарасшифровкикомпоновкиданных обходдереваdom объявлениеатрибутаxs объявлениенотацииxs объявлениеэлементаxs описаниеиспользованиясобытиядоступжурналарегистрации описаниеиспользованиясобытияотказвдоступежурналарегистрации описаниеобработкирасшифровкикомпоновкиданных описаниепередаваемогофайла описаниетипов определениегруппыатрибутовxs определениегруппымоделиxs определениеограниченияидентичностиxs определениепростоготипаxs определениесоставноготипаxs определениетипадокументаdom определенияxpathxs отборкомпоновкиданных пакетотображаемыхдокументов параметрвыбора параметркомпоновкиданных параметрызаписиjson параметрызаписиxml параметрычтенияxml переопределениеxs планировщик полеанализаданных полекомпоновкиданных построительdom построительзапроса построительотчета построительотчетаанализаданных построительсхемxml поток потоквпамяти почта почтовоесообщение преобразованиеxsl преобразованиекканоническомуxml процессорвыводарезультатакомпоновкиданныхвколлекциюзначений процессорвыводарезультатакомпоновкиданныхвтабличныйдокумент процессоркомпоновкиданных разыменовательпространствименdom рамка расписаниерегламентногозадания расширенноеимяxml результатчтенияданных своднаядиаграмма связьпараметравыбора связьпотипу связьпотипукомпоновкиданных сериализаторxdto сертификатклиентаwindows сертификатклиентафайл сертификаткриптографии сертификатыудостоверяющихцентровwindows сертификатыудостоверяющихцентровфайл сжатиеданных системнаяинформация сообщениепользователю сочетаниеклавиш сравнениезначений стандартнаядатаначала стандартныйпериод схемаxml схемакомпоновкиданных табличныйдокумент текстовыйдокумент тестируемоеприложение типданныхxml уникальныйидентификатор фабрикаxdto файл файловыйпоток фасетдлиныxs фасетколичестваразрядовдробнойчастиxs фасетмаксимальноговключающегозначенияxs фасетмаксимальногоисключающегозначенияxs фасетмаксимальнойдлиныxs фасетминимальноговключающегозначенияxs фасетминимальногоисключающегозначенияxs фасетминимальнойдлиныxs фасетобразцаxs фасетобщегоколичестваразрядовxs фасетперечисленияxs фасетпробельныхсимволовxs фильтрузловdom форматированнаястрока форматированныйдокумент фрагментxs хешированиеданных хранилищезначения цвет чтениеfastinfoset чтениеhtml чтениеjson чтениеxml чтениеzipфайла чтениеданных чтениетекста чтениеузловdom шрифт элементрезультатакомпоновкиданных ",F="comsafearray деревозначений массив соответствие списокзначений структура таблицазначений фиксированнаяструктура фиксированноесоответствие фиксированныймассив ",B=O+F,G="null истина ложь неопределено",q=e.inherit(e.NM),U={ -cN:"string",b:'"|\\|',e:'"|$',c:[{b:'""'}]},z={b:"'",e:"'",eB:!0,eE:!0,c:[{cN:"number",b:"\\d{4}([\\.\\\\/:-]?\\d{2}){0,5}"}]},$=e.inherit(e.CLCM),V={cN:"meta",l:t,b:"#|&",e:"$",k:{"meta-keyword":i+s},c:[$]},W={cN:"symbol",b:"~",e:";|:",eE:!0},H={cN:"function",l:t,v:[{b:"процедура|функция",e:"\\)",k:"процедура функция"},{b:"конецпроцедуры|конецфункции",k:"конецпроцедуры конецфункции"}],c:[{b:"\\(",e:"\\)",endsParent:!0,c:[{cN:"params",l:t,b:t,e:",",eE:!0,eW:!0,k:{keyword:"знач",literal:G},c:[q,U,z]},$]},e.inherit(e.TM,{b:t})]};return{cI:!0,l:t,k:{keyword:i,built_in:m,"class":P,type:B,literal:G},c:[V,H,$,W,q,U,z]}}),e.registerLanguage("abnf",function(e){var t={ruleDeclaration:"^[a-zA-Z][a-zA-Z0-9-]*",unexpectedChars:"[!@#$^&',?+~`|:]"},r=["ALPHA","BIT","CHAR","CR","CRLF","CTL","DIGIT","DQUOTE","HEXDIG","HTAB","LF","LWSP","OCTET","SP","VCHAR","WSP"],a=e.C(";","$"),i={cN:"symbol",b:/%b[0-1]+(-[0-1]+|(\.[0-1]+)+){0,1}/},n={cN:"symbol",b:/%d[0-9]+(-[0-9]+|(\.[0-9]+)+){0,1}/},o={cN:"symbol",b:/%x[0-9A-F]+(-[0-9A-F]+|(\.[0-9A-F]+)+){0,1}/},s={cN:"symbol",b:/%[si]/},l={b:t.ruleDeclaration+"\\s*=",rB:!0,e:/=/,r:0,c:[{cN:"attribute",b:t.ruleDeclaration}]};return{i:t.unexpectedChars,k:r.join(" "),c:[l,a,i,n,o,s,e.QSM,e.NM]}}),e.registerLanguage("accesslog",function(e){return{c:[{cN:"number",b:"\\b\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}(:\\d{1,5})?\\b"},{cN:"number",b:"\\b\\d+\\b",r:0},{cN:"string",b:'"(GET|POST|HEAD|PUT|DELETE|CONNECT|OPTIONS|PATCH|TRACE)',e:'"',k:"GET POST HEAD PUT DELETE CONNECT OPTIONS PATCH TRACE",i:"\\n",r:10},{cN:"string",b:/\[/,e:/\]/,i:"\\n"},{cN:"string",b:'"',e:'"',i:"\\n"}]}}),e.registerLanguage("actionscript",function(e){var t="[a-zA-Z_$][a-zA-Z0-9_$]*",r="([*]|[a-zA-Z_$][a-zA-Z0-9_$]*)",a={cN:"rest_arg",b:"[.]{3}",e:t,r:10};return{aliases:["as"],k:{keyword:"as break case catch class const continue default delete do dynamic each else extends final finally for function get if implements import in include instanceof interface internal is namespace native new override package private protected public return set static super switch this throw try typeof use var void while with",literal:"true false null undefined"},c:[e.ASM,e.QSM,e.CLCM,e.CBCM,e.CNM,{cN:"class",bK:"package",e:"{",c:[e.TM]},{cN:"class",bK:"class interface",e:"{",eE:!0,c:[{bK:"extends implements"},e.TM]},{cN:"meta",bK:"import include",e:";",k:{"meta-keyword":"import include"}},{cN:"function",bK:"function",e:"[{;]",eE:!0,i:"\\S",c:[e.TM,{cN:"params",b:"\\(",e:"\\)",c:[e.ASM,e.QSM,e.CLCM,e.CBCM,a]},{b:":\\s*"+r}]},e.METHOD_GUARD],i:/#/}}),e.registerLanguage("ada",function(e){var t="\\d(_|\\d)*",r="[eE][-+]?"+t,a=t+"(\\."+t+")?("+r+")?",i="\\w+",n=t+"#"+i+"(\\."+i+")?#("+r+")?",o="\\b("+n+"|"+a+")",s="[A-Za-z](_?[A-Za-z0-9.])*",l="[]{}%#'\"",c=e.C("--","$"),d={b:"\\s+:\\s+",e:"\\s*(:=|;|\\)|=>|$)",i:l,c:[{bK:"loop for declare others",endsParent:!0},{cN:"keyword",bK:"not null constant access function procedure in out aliased exception"},{cN:"type",b:s,endsParent:!0,r:0}]};return{cI:!0,k:{keyword:"abort else new return abs elsif not reverse abstract end accept entry select access exception of separate aliased exit or some all others subtype and for out synchronized array function overriding at tagged generic package task begin goto pragma terminate body private then if procedure type case in protected constant interface is raise use declare range delay limited record when delta loop rem while digits renames with do mod requeue xor",literal:"True False"},c:[c,{cN:"string",b:/"/,e:/"/,c:[{b:/""/,r:0}]},{cN:"string",b:/'.'/},{cN:"number",b:o,r:0},{cN:"symbol",b:"'"+s},{cN:"title",b:"(\\bwith\\s+)?(\\bprivate\\s+)?\\bpackage\\s+(\\bbody\\s+)?",e:"(is|$)",k:"package body",eB:!0,eE:!0,i:l},{b:"(\\b(with|overriding)\\s+)?\\b(function|procedure)\\s+",e:"(\\bis|\\bwith|\\brenames|\\)\\s*;)",k:"overriding function procedure with is renames return",rB:!0,c:[c,{cN:"title",b:"(\\bwith\\s+)?\\b(function|procedure)\\s+",e:"(\\(|\\s+|$)",eB:!0,eE:!0,i:l},d,{cN:"type",b:"\\breturn\\s+",e:"(\\s+|;|$)",k:"return",eB:!0,eE:!0,endsParent:!0,i:l}]},{cN:"type",b:"\\b(sub)?type\\s+",e:"\\s+",k:"type",eB:!0,i:l},d]}}),e.registerLanguage("apache",function(e){var t={cN:"number",b:"[\\$%]\\d+"};return{aliases:["apacheconf"],cI:!0,c:[e.HCM,{cN:"section",b:""},{cN:"attribute",b:/\w+/,r:0,k:{nomarkup:"order deny allow setenv rewriterule rewriteengine rewritecond documentroot sethandler errordocument loadmodule options header listen serverroot servername"},starts:{e:/$/,r:0,k:{literal:"on off all"},c:[{cN:"meta",b:"\\s\\[",e:"\\]$"},{cN:"variable",b:"[\\$%]\\{",e:"\\}",c:["self",t]},t,e.QSM]}}],i:/\S/}}),e.registerLanguage("applescript",function(e){var t=e.inherit(e.QSM,{i:""}),r={cN:"params",b:"\\(",e:"\\)",c:["self",e.CNM,t]},a=e.C("--","$"),i=e.C("\\(\\*","\\*\\)",{c:["self",a]}),n=[a,i,e.HCM];return{aliases:["osascript"],k:{keyword:"about above after against and around as at back before beginning behind below beneath beside between but by considering contain contains continue copy div does eighth else end equal equals error every exit fifth first for fourth from front get given global if ignoring in into is it its last local me middle mod my ninth not of on onto or over prop property put ref reference repeat returning script second set seventh since sixth some tell tenth that the|0 then third through thru timeout times to transaction try until where while whose with without",literal:"AppleScript false linefeed return pi quote result space tab true",built_in:"alias application boolean class constant date file integer list number real record string text activate beep count delay launch log offset read round run say summarize write character characters contents day frontmost id item length month name paragraph paragraphs rest reverse running time version weekday word words year"},c:[t,e.CNM,{cN:"built_in",b:"\\b(clipboard info|the clipboard|info for|list (disks|folder)|mount volume|path to|(close|open for) access|(get|set) eof|current date|do shell script|get volume settings|random number|set volume|system attribute|system info|time to GMT|(load|run|store) script|scripting components|ASCII (character|number)|localized string|choose (application|color|file|file name|folder|from list|remote application|URL)|display (alert|dialog))\\b|^\\s*return\\b"},{cN:"literal",b:"\\b(text item delimiters|current application|missing value)\\b"},{cN:"keyword",b:"\\b(apart from|aside from|instead of|out of|greater than|isn't|(doesn't|does not) (equal|come before|come after|contain)|(greater|less) than( or equal)?|(starts?|ends|begins?) with|contained by|comes (before|after)|a (ref|reference)|POSIX file|POSIX path|(date|time) string|quoted form)\\b"},{bK:"on",i:"[${=;\\n]",c:[e.UTM,r]}].concat(n),i:"//|->|=>|\\[\\["}}),e.registerLanguage("cpp",function(e){var t={cN:"keyword",b:"\\b[a-z\\d_]*_t\\b"},r={cN:"string",v:[{b:'(u8?|U)?L?"',e:'"',i:"\\n",c:[e.BE]},{b:'(u8?|U)?R"',e:'"',c:[e.BE]},{b:"'\\\\?.",e:"'",i:"."}]},a={cN:"number",v:[{b:"\\b(0b[01']+)"},{b:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)(u|U|l|L|ul|UL|f|F|b|B)"},{b:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"}],r:0},i={cN:"meta",b:/#\s*[a-z]+\b/,e:/$/,k:{"meta-keyword":"if else elif endif define undef warning error line pragma ifdef ifndef include"},c:[{b:/\\\n/,r:0},e.inherit(r,{cN:"meta-string"}),{cN:"meta-string",b:/<[^\n>]*>/,e:/$/,i:"\\n"},e.CLCM,e.CBCM]},n=e.IR+"\\s*\\(",o={keyword:"int float while private char catch import module export virtual operator sizeof dynamic_cast|10 typedef const_cast|10 const for static_cast|10 union namespace unsigned long volatile static protected bool template mutable if public friend do goto auto void enum else break extern using asm case typeid short reinterpret_cast|10 default double register explicit signed typename try this switch continue inline delete alignof constexpr decltype noexcept static_assert thread_local restrict _Bool complex _Complex _Imaginary atomic_bool atomic_char atomic_schar atomic_uchar atomic_short atomic_ushort atomic_int atomic_uint atomic_long atomic_ulong atomic_llong atomic_ullong new throw return and or not",built_in:"std string cin cout cerr clog stdin stdout stderr stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap array shared_ptr abort abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper labs ldexp log10 log malloc realloc memchr memcmp memcpy memset modf pow printf putchar puts scanf sinh sin snprintf sprintf sqrt sscanf strcat strchr strcmp strcpy strcspn strlen strncat strncmp strncpy strpbrk strrchr strspn strstr tanh tan vfprintf vprintf vsprintf endl initializer_list unique_ptr",literal:"true false nullptr NULL"},s=[t,e.CLCM,e.CBCM,a,r];return{aliases:["c","cc","h","c++","h++","hpp"],k:o,i:"",k:o,c:["self",t]},{b:e.IR+"::",k:o},{v:[{b:/=/,e:/;/},{b:/\(/,e:/\)/},{bK:"new throw return else",e:/;/}],k:o,c:s.concat([{b:/\(/,e:/\)/,k:o,c:s.concat(["self"]),r:0}]),r:0},{cN:"function",b:"("+e.IR+"[\\*&\\s]+)+"+n,rB:!0,e:/[{;=]/,eE:!0,k:o,i:/[^\w\s\*&]/,c:[{b:n,rB:!0,c:[e.TM],r:0},{cN:"params",b:/\(/,e:/\)/,k:o,r:0,c:[e.CLCM,e.CBCM,r,a,t]},e.CLCM,e.CBCM,i]},{cN:"class",bK:"class struct",e:/[{;:]/,c:[{b://,c:["self"]},e.TM]}]),exports:{preprocessor:i,strings:r,k:o}}}),e.registerLanguage("arduino",function(e){var t=e.getLanguage("cpp").exports;return{k:{keyword:"boolean byte word string String array "+t.k.keyword,built_in:"setup loop while catch for if do goto try switch case else default break continue return KeyboardController MouseController SoftwareSerial EthernetServer EthernetClient LiquidCrystal RobotControl GSMVoiceCall EthernetUDP EsploraTFT HttpClient RobotMotor WiFiClient GSMScanner FileSystem Scheduler GSMServer YunClient YunServer IPAddress GSMClient GSMModem Keyboard Ethernet Console GSMBand Esplora Stepper Process WiFiUDP GSM_SMS Mailbox USBHost Firmata PImage Client Server GSMPIN FileIO Bridge Serial EEPROM Stream Mouse Audio Servo File Task GPRS WiFi Wire TFT GSM SPI SD runShellCommandAsynchronously analogWriteResolution retrieveCallingNumber printFirmwareVersion analogReadResolution sendDigitalPortPair noListenOnLocalhost readJoystickButton setFirmwareVersion readJoystickSwitch scrollDisplayRight getVoiceCallStatus scrollDisplayLeft writeMicroseconds delayMicroseconds beginTransmission getSignalStrength runAsynchronously getAsynchronously listenOnLocalhost getCurrentCarrier readAccelerometer messageAvailable sendDigitalPorts lineFollowConfig countryNameWrite runShellCommand readStringUntil rewindDirectory readTemperature setClockDivider readLightSensor endTransmission analogReference detachInterrupt countryNameRead attachInterrupt encryptionType readBytesUntil robotNameWrite readMicrophone robotNameRead cityNameWrite userNameWrite readJoystickY readJoystickX mouseReleased openNextFile scanNetworks noInterrupts digitalWrite beginSpeaker mousePressed isActionDone mouseDragged displayLogos noAutoscroll addParameter remoteNumber getModifiers keyboardRead userNameRead waitContinue processInput parseCommand printVersion readNetworks writeMessage blinkVersion cityNameRead readMessage setDataMode parsePacket isListening setBitOrder beginPacket isDirectory motorsWrite drawCompass digitalRead clearScreen serialEvent rightToLeft setTextSize leftToRight requestFrom keyReleased compassRead analogWrite interrupts WiFiServer disconnect playMelody parseFloat autoscroll getPINUsed setPINUsed setTimeout sendAnalog readSlider analogRead beginWrite createChar motorsStop keyPressed tempoWrite readButton subnetMask debugPrint macAddress writeGreen randomSeed attachGPRS readString sendString remotePort releaseAll mouseMoved background getXChange getYChange answerCall getResult voiceCall endPacket constrain getSocket writeJSON getButton available connected findUntil readBytes exitValue readGreen writeBlue startLoop IPAddress isPressed sendSysex pauseMode gatewayIP setCursor getOemKey tuneWrite noDisplay loadImage switchPIN onRequest onReceive changePIN playFile noBuffer parseInt overflow checkPIN knobRead beginTFT bitClear updateIR bitWrite position writeRGB highByte writeRed setSpeed readBlue noStroke remoteIP transfer shutdown hangCall beginSMS endWrite attached maintain noCursor checkReg checkPUK shiftOut isValid shiftIn pulseIn connect println localIP pinMode getIMEI display noBlink process getBand running beginSD drawBMP lowByte setBand release bitRead prepare pointTo readRed setMode noFill remove listen stroke detach attach noTone exists buffer height bitSet circle config cursor random IRread setDNS endSMS getKey micros millis begin print write ready flush width isPIN blink clear press mkdir rmdir close point yield image BSSID click delay read text move peek beep rect line open seek fill size turn stop home find step tone sqrt RSSI SSID end bit tan cos sin pow map abs max min get run put",literal:"DIGITAL_MESSAGE FIRMATA_STRING ANALOG_MESSAGE REPORT_DIGITAL REPORT_ANALOG INPUT_PULLUP SET_PIN_MODE INTERNAL2V56 SYSTEM_RESET LED_BUILTIN INTERNAL1V1 SYSEX_START INTERNAL EXTERNAL DEFAULT OUTPUT INPUT HIGH LOW"},c:[t.preprocessor,e.CLCM,e.CBCM,e.ASM,e.QSM,e.CNM]}}),e.registerLanguage("armasm",function(e){return{cI:!0,aliases:["arm"],l:"\\.?"+e.IR,k:{meta:".2byte .4byte .align .ascii .asciz .balign .byte .code .data .else .end .endif .endm .endr .equ .err .exitm .extern .global .hword .if .ifdef .ifndef .include .irp .long .macro .rept .req .section .set .skip .space .text .word .arm .thumb .code16 .code32 .force_thumb .thumb_func .ltorg ALIAS ALIGN ARM AREA ASSERT ATTR CN CODE CODE16 CODE32 COMMON CP DATA DCB DCD DCDU DCDO DCFD DCFDU DCI DCQ DCQU DCW DCWU DN ELIF ELSE END ENDFUNC ENDIF ENDP ENTRY EQU EXPORT EXPORTAS EXTERN FIELD FILL FUNCTION GBLA GBLL GBLS GET GLOBAL IF IMPORT INCBIN INCLUDE INFO KEEP LCLA LCLL LCLS LTORG MACRO MAP MEND MEXIT NOFP OPT PRESERVE8 PROC QN READONLY RELOC REQUIRE REQUIRE8 RLIST FN ROUT SETA SETL SETS SN SPACE SUBT THUMB THUMBX TTL WHILE WEND ",built_in:"r0 r1 r2 r3 r4 r5 r6 r7 r8 r9 r10 r11 r12 r13 r14 r15 pc lr sp ip sl sb fp a1 a2 a3 a4 v1 v2 v3 v4 v5 v6 v7 v8 f0 f1 f2 f3 f4 f5 f6 f7 p0 p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 c0 c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 q0 q1 q2 q3 q4 q5 q6 q7 q8 q9 q10 q11 q12 q13 q14 q15 cpsr_c cpsr_x cpsr_s cpsr_f cpsr_cx cpsr_cxs cpsr_xs cpsr_xsf cpsr_sf cpsr_cxsf spsr_c spsr_x spsr_s spsr_f spsr_cx spsr_cxs spsr_xs spsr_xsf spsr_sf spsr_cxsf s0 s1 s2 s3 s4 s5 s6 s7 s8 s9 s10 s11 s12 s13 s14 s15 s16 s17 s18 s19 s20 s21 s22 s23 s24 s25 s26 s27 s28 s29 s30 s31 d0 d1 d2 d3 d4 d5 d6 d7 d8 d9 d10 d11 d12 d13 d14 d15 d16 d17 d18 d19 d20 d21 d22 d23 d24 d25 d26 d27 d28 d29 d30 d31 {PC} {VAR} {TRUE} {FALSE} {OPT} {CONFIG} {ENDIAN} {CODESIZE} {CPU} {FPU} {ARCHITECTURE} {PCSTOREOFFSET} {ARMASM_VERSION} {INTER} {ROPI} {RWPI} {SWST} {NOSWST} . @"},c:[{cN:"keyword",b:"\\b(adc|(qd?|sh?|u[qh]?)?add(8|16)?|usada?8|(q|sh?|u[qh]?)?(as|sa)x|and|adrl?|sbc|rs[bc]|asr|b[lx]?|blx|bxj|cbn?z|tb[bh]|bic|bfc|bfi|[su]bfx|bkpt|cdp2?|clz|clrex|cmp|cmn|cpsi[ed]|cps|setend|dbg|dmb|dsb|eor|isb|it[te]{0,3}|lsl|lsr|ror|rrx|ldm(([id][ab])|f[ds])?|ldr((s|ex)?[bhd])?|movt?|mvn|mra|mar|mul|[us]mull|smul[bwt][bt]|smu[as]d|smmul|smmla|mla|umlaal|smlal?([wbt][bt]|d)|mls|smlsl?[ds]|smc|svc|sev|mia([bt]{2}|ph)?|mrr?c2?|mcrr2?|mrs|msr|orr|orn|pkh(tb|bt)|rbit|rev(16|sh)?|sel|[su]sat(16)?|nop|pop|push|rfe([id][ab])?|stm([id][ab])?|str(ex)?[bhd]?|(qd?)?sub|(sh?|q|u[qh]?)?sub(8|16)|[su]xt(a?h|a?b(16)?)|srs([id][ab])?|swpb?|swi|smi|tst|teq|wfe|wfi|yield)(eq|ne|cs|cc|mi|pl|vs|vc|hi|ls|ge|lt|gt|le|al|hs|lo)?[sptrx]?",e:"\\s"},e.C("[;@]","$",{r:0}),e.CBCM,e.QSM,{cN:"string",b:"'",e:"[^\\\\]'",r:0},{cN:"title",b:"\\|",e:"\\|",i:"\\n",r:0},{cN:"number",v:[{b:"[#$=]?0x[0-9a-f]+"},{b:"[#$=]?0b[01]+"},{b:"[#$=]\\d+"},{b:"\\b\\d+"}],r:0},{cN:"symbol",v:[{b:"^[a-z_\\.\\$][a-z0-9_\\.\\$]+"},{b:"^\\s*[a-z_\\.\\$][a-z0-9_\\.\\$]+:"},{b:"[=#]\\w+"}],r:0}]}}),e.registerLanguage("xml",function(e){var t="[A-Za-z0-9\\._:-]+",r={eW:!0,i:/`]+/}]}]}]};return{aliases:["html","xhtml","rss","atom","xjb","xsd","xsl","plist"],cI:!0,c:[{cN:"meta",b:"",r:10,c:[{b:"\\[",e:"\\]"}]},e.C("",{r:10}),{b:"<\\!\\[CDATA\\[",e:"\\]\\]>",r:10},{b:/<\?(php)?/,e:/\?>/,sL:"php",c:[{b:"/\\*",e:"\\*/",skip:!0}]},{cN:"tag",b:"|$)",e:">",k:{name:"style"},c:[r],starts:{e:"",rE:!0,sL:["css","xml"]}},{cN:"tag",b:"|$)",e:">",k:{name:"script"},c:[r],starts:{e:"",rE:!0,sL:["actionscript","javascript","handlebars","xml"]}},{cN:"meta",v:[{b:/<\?xml/,e:/\?>/,r:10},{b:/<\?\w+/,e:/\?>/}]},{cN:"tag",b:"",c:[{cN:"name",b:/[^\/><\s]+/,r:0},r]}]}}),e.registerLanguage("asciidoc",function(e){return{aliases:["adoc"],c:[e.C("^/{4,}\\n","\\n/{4,}$",{r:10}),e.C("^//","$",{r:0}),{cN:"title",b:"^\\.\\w.*$"},{b:"^[=\\*]{4,}\\n",e:"\\n^[=\\*]{4,}$",r:10},{cN:"section",r:10,v:[{b:"^(={1,5}) .+?( \\1)?$"},{b:"^[^\\[\\]\\n]+?\\n[=\\-~\\^\\+]{2,}$"}]},{cN:"meta",b:"^:.+?:",e:"\\s",eE:!0,r:10},{cN:"meta",b:"^\\[.+?\\]$",r:0},{cN:"quote",b:"^_{4,}\\n",e:"\\n_{4,}$",r:10},{cN:"code",b:"^[\\-\\.]{4,}\\n",e:"\\n[\\-\\.]{4,}$",r:10},{b:"^\\+{4,}\\n",e:"\\n\\+{4,}$",c:[{b:"<",e:">",sL:"xml",r:0}],r:10},{cN:"bullet",b:"^(\\*+|\\-+|\\.+|[^\\n]+?::)\\s+"},{cN:"symbol",b:"^(NOTE|TIP|IMPORTANT|WARNING|CAUTION):\\s+",r:10},{cN:"strong",b:"\\B\\*(?![\\*\\s])",e:"(\\n{2}|\\*)",c:[{b:"\\\\*\\w",r:0}]},{cN:"emphasis",b:"\\B'(?!['\\s])",e:"(\\n{2}|')",c:[{b:"\\\\'\\w",r:0}],r:0},{cN:"emphasis",b:"_(?![_\\s])",e:"(\\n{2}|_)",r:0},{cN:"string",v:[{b:"``.+?''"},{b:"`.+?'"}]},{cN:"code",b:"(`.+?`|\\+.+?\\+)",r:0},{cN:"code",b:"^[ \\t]",e:"$",r:0},{b:"^'{3,}[ \\t]*$",r:10},{b:"(link:)?(http|https|ftp|file|irc|image:?):\\S+\\[.*?\\]",rB:!0,c:[{b:"(link|image:?):",r:0},{cN:"link",b:"\\w",e:"[^\\[]+",r:0},{cN:"string",b:"\\[",e:"\\]",eB:!0,eE:!0,r:0}],r:10}]}}),e.registerLanguage("aspectj",function(e){var t="false synchronized int abstract float private char boolean static null if const for true while long throw strictfp finally protected import native final return void enum else extends implements break transient new catch instanceof byte super volatile case assert short package default double public try this switch continue throws privileged aspectOf adviceexecution proceed cflowbelow cflow initialization preinitialization staticinitialization withincode target within execution getWithinTypeName handler thisJoinPoint thisJoinPointStaticPart thisEnclosingJoinPointStaticPart declare parents warning error soft precedence thisAspectInstance",r="get set args call";return{k:t,i:/<\/|#/,c:[e.C("/\\*\\*","\\*/",{r:0,c:[{b:/\w+@/,r:0},{cN:"doctag",b:"@[A-Za-z]+"}]}),e.CLCM,e.CBCM,e.ASM,e.QSM,{cN:"class",bK:"aspect",e:/[{;=]/,eE:!0,i:/[:;"\[\]]/,c:[{bK:"extends implements pertypewithin perthis pertarget percflowbelow percflow issingleton"},e.UTM,{b:/\([^\)]*/,e:/[)]+/,k:t+" "+r,eE:!1}]},{cN:"class",bK:"class interface",e:/[{;=]/,eE:!0,r:0,k:"class interface",i:/[:"\[\]]/,c:[{bK:"extends implements"},e.UTM]},{bK:"pointcut after before around throwing returning",e:/[)]/,eE:!1,i:/["\[\]]/,c:[{b:e.UIR+"\\s*\\(",rB:!0,c:[e.UTM]}]},{b:/[:]/,rB:!0,e:/[{;]/,r:0,eE:!1,k:t,i:/["\[\]]/,c:[{b:e.UIR+"\\s*\\(",k:t+" "+r,r:0},e.QSM]},{bK:"new throw",r:0},{cN:"function",b:/\w+ +\w+(\.)?\w+\s*\([^\)]*\)\s*((throws)[\w\s,]+)?[\{;]/,rB:!0,e:/[{;=]/,k:t,eE:!0,c:[{b:e.UIR+"\\s*\\(",rB:!0,r:0,c:[e.UTM]},{cN:"params",b:/\(/,e:/\)/,r:0,k:t,c:[e.ASM,e.QSM,e.CNM,e.CBCM]},e.CLCM,e.CBCM]},e.CNM,{cN:"meta",b:"@[A-Za-z]+"}]}}),e.registerLanguage("autohotkey",function(e){var t={b:"`[\\s\\S]"};return{cI:!0,aliases:["ahk"],k:{keyword:"Break Continue Critical Exit ExitApp Gosub Goto New OnExit Pause return SetBatchLines SetTimer Suspend Thread Throw Until ahk_id ahk_class ahk_pid ahk_exe ahk_group",literal:"A|0 true false NOT AND OR",built_in:"ComSpec Clipboard ClipboardAll ErrorLevel"},c:[{cN:"built_in",b:"A_[a-zA-Z0-9]+"},t,e.inherit(e.QSM,{c:[t]}),e.C(";","$",{r:0}),e.CBCM,{cN:"number",b:e.NR,r:0},{cN:"subst",b:"%(?=[a-zA-Z0-9#_$@])",e:"%",i:"[^a-zA-Z0-9#_$@]"},{cN:"built_in",b:"^\\s*\\w+\\s*,"},{cN:"meta",b:"^\\s*#w+",e:"$",r:0},{cN:"symbol",c:[t],v:[{b:'^[^\\n";]+::(?!=)'},{b:'^[^\\n";]+:(?!=)',r:0}]},{b:",\\s*,"}]}}),e.registerLanguage("autoit",function(e){var t="ByRef Case Const ContinueCase ContinueLoop Default Dim Do Else ElseIf EndFunc EndIf EndSelect EndSwitch EndWith Enum Exit ExitLoop For Func Global If In Local Next ReDim Return Select Static Step Switch Then To Until Volatile WEnd While With",r="True False And Null Not Or",a="Abs ACos AdlibRegister AdlibUnRegister Asc AscW ASin Assign ATan AutoItSetOption AutoItWinGetTitle AutoItWinSetTitle Beep Binary BinaryLen BinaryMid BinaryToString BitAND BitNOT BitOR BitRotate BitShift BitXOR BlockInput Break Call CDTray Ceiling Chr ChrW ClipGet ClipPut ConsoleRead ConsoleWrite ConsoleWriteError ControlClick ControlCommand ControlDisable ControlEnable ControlFocus ControlGetFocus ControlGetHandle ControlGetPos ControlGetText ControlHide ControlListView ControlMove ControlSend ControlSetText ControlShow ControlTreeView Cos Dec DirCopy DirCreate DirGetSize DirMove DirRemove DllCall DllCallAddress DllCallbackFree DllCallbackGetPtr DllCallbackRegister DllClose DllOpen DllStructCreate DllStructGetData DllStructGetPtr DllStructGetSize DllStructSetData DriveGetDrive DriveGetFileSystem DriveGetLabel DriveGetSerial DriveGetType DriveMapAdd DriveMapDel DriveMapGet DriveSetLabel DriveSpaceFree DriveSpaceTotal DriveStatus EnvGet EnvSet EnvUpdate Eval Execute Exp FileChangeDir FileClose FileCopy FileCreateNTFSLink FileCreateShortcut FileDelete FileExists FileFindFirstFile FileFindNextFile FileFlush FileGetAttrib FileGetEncoding FileGetLongName FileGetPos FileGetShortcut FileGetShortName FileGetSize FileGetTime FileGetVersion FileInstall FileMove FileOpen FileOpenDialog FileRead FileReadLine FileReadToArray FileRecycle FileRecycleEmpty FileSaveDialog FileSelectFolder FileSetAttrib FileSetEnd FileSetPos FileSetTime FileWrite FileWriteLine Floor FtpSetProxy FuncName GUICreate GUICtrlCreateAvi GUICtrlCreateButton GUICtrlCreateCheckbox GUICtrlCreateCombo GUICtrlCreateContextMenu GUICtrlCreateDate GUICtrlCreateDummy GUICtrlCreateEdit GUICtrlCreateGraphic GUICtrlCreateGroup GUICtrlCreateIcon GUICtrlCreateInput GUICtrlCreateLabel GUICtrlCreateList GUICtrlCreateListView GUICtrlCreateListViewItem GUICtrlCreateMenu GUICtrlCreateMenuItem GUICtrlCreateMonthCal GUICtrlCreateObj GUICtrlCreatePic GUICtrlCreateProgress GUICtrlCreateRadio GUICtrlCreateSlider GUICtrlCreateTab GUICtrlCreateTabItem GUICtrlCreateTreeView GUICtrlCreateTreeViewItem GUICtrlCreateUpdown GUICtrlDelete GUICtrlGetHandle GUICtrlGetState GUICtrlRead GUICtrlRecvMsg GUICtrlRegisterListViewSort GUICtrlSendMsg GUICtrlSendToDummy GUICtrlSetBkColor GUICtrlSetColor GUICtrlSetCursor GUICtrlSetData GUICtrlSetDefBkColor GUICtrlSetDefColor GUICtrlSetFont GUICtrlSetGraphic GUICtrlSetImage GUICtrlSetLimit GUICtrlSetOnEvent GUICtrlSetPos GUICtrlSetResizing GUICtrlSetState GUICtrlSetStyle GUICtrlSetTip GUIDelete GUIGetCursorInfo GUIGetMsg GUIGetStyle GUIRegisterMsg GUISetAccelerators GUISetBkColor GUISetCoord GUISetCursor GUISetFont GUISetHelp GUISetIcon GUISetOnEvent GUISetState GUISetStyle GUIStartGroup GUISwitch Hex HotKeySet HttpSetProxy HttpSetUserAgent HWnd InetClose InetGet InetGetInfo InetGetSize InetRead IniDelete IniRead IniReadSection IniReadSectionNames IniRenameSection IniWrite IniWriteSection InputBox Int IsAdmin IsArray IsBinary IsBool IsDeclared IsDllStruct IsFloat IsFunc IsHWnd IsInt IsKeyword IsNumber IsObj IsPtr IsString Log MemGetStats Mod MouseClick MouseClickDrag MouseDown MouseGetCursor MouseGetPos MouseMove MouseUp MouseWheel MsgBox Number ObjCreate ObjCreateInterface ObjEvent ObjGet ObjName OnAutoItExitRegister OnAutoItExitUnRegister Ping PixelChecksum PixelGetColor PixelSearch ProcessClose ProcessExists ProcessGetStats ProcessList ProcessSetPriority ProcessWait ProcessWaitClose ProgressOff ProgressOn ProgressSet Ptr Random RegDelete RegEnumKey RegEnumVal RegRead RegWrite Round Run RunAs RunAsWait RunWait Send SendKeepActive SetError SetExtended ShellExecute ShellExecuteWait Shutdown Sin Sleep SoundPlay SoundSetWaveVolume SplashImageOn SplashOff SplashTextOn Sqrt SRandom StatusbarGetText StderrRead StdinWrite StdioClose StdoutRead String StringAddCR StringCompare StringFormat StringFromASCIIArray StringInStr StringIsAlNum StringIsAlpha StringIsASCII StringIsDigit StringIsFloat StringIsInt StringIsLower StringIsSpace StringIsUpper StringIsXDigit StringLeft StringLen StringLower StringMid StringRegExp StringRegExpReplace StringReplace StringReverse StringRight StringSplit StringStripCR StringStripWS StringToASCIIArray StringToBinary StringTrimLeft StringTrimRight StringUpper Tan TCPAccept TCPCloseSocket TCPConnect TCPListen TCPNameToIP TCPRecv TCPSend TCPShutdown, UDPShutdown TCPStartup, UDPStartup TimerDiff TimerInit ToolTip TrayCreateItem TrayCreateMenu TrayGetMsg TrayItemDelete TrayItemGetHandle TrayItemGetState TrayItemGetText TrayItemSetOnEvent TrayItemSetState TrayItemSetText TraySetClick TraySetIcon TraySetOnEvent TraySetPauseIcon TraySetState TraySetToolTip TrayTip UBound UDPBind UDPCloseSocket UDPOpen UDPRecv UDPSend VarGetType WinActivate WinActive WinClose WinExists WinFlash WinGetCaretPos WinGetClassList WinGetClientSize WinGetHandle WinGetPos WinGetProcess WinGetState WinGetText WinGetTitle WinKill WinList WinMenuSelectItem WinMinimizeAll WinMinimizeAllUndo WinMove WinSetOnTop WinSetState WinSetTitle WinSetTrans WinWait",i={v:[e.C(";","$",{r:0}),e.C("#cs","#ce"),e.C("#comments-start","#comments-end")]},n={b:"\\$[A-z0-9_]+"},o={cN:"string",v:[{b:/"/,e:/"/,c:[{b:/""/,r:0}]},{b:/'/,e:/'/,c:[{b:/''/,r:0}]}]},s={v:[e.BNM,e.CNM]},l={cN:"meta",b:"#",e:"$",k:{"meta-keyword":"comments include include-once NoTrayIcon OnAutoItStartRegister pragma compile RequireAdmin"},c:[{b:/\\\n/,r:0},{bK:"include",k:{"meta-keyword":"include"},e:"$",c:[o,{cN:"meta-string",v:[{b:"<",e:">"},{b:/"/,e:/"/,c:[{b:/""/,r:0}]},{b:/'/,e:/'/,c:[{b:/''/,r:0}]}]}]},o,i]},c={cN:"symbol",b:"@[A-z0-9_]+"},d={cN:"function",bK:"Func",e:"$",i:"\\$|\\[|%",c:[e.UTM,{cN:"params",b:"\\(",e:"\\)",c:[n,o,s]}]};return{cI:!0,i:/\/\*/,k:{keyword:t,built_in:a,literal:r},c:[i,n,o,s,l,c,d]}}),e.registerLanguage("avrasm",function(e){return{cI:!0,l:"\\.?"+e.IR,k:{keyword:"adc add adiw and andi asr bclr bld brbc brbs brcc brcs break breq brge brhc brhs brid brie brlo brlt brmi brne brpl brsh brtc brts brvc brvs bset bst call cbi cbr clc clh cli cln clr cls clt clv clz com cp cpc cpi cpse dec eicall eijmp elpm eor fmul fmuls fmulsu icall ijmp in inc jmp ld ldd ldi lds lpm lsl lsr mov movw mul muls mulsu neg nop or ori out pop push rcall ret reti rjmp rol ror sbc sbr sbrc sbrs sec seh sbi sbci sbic sbis sbiw sei sen ser ses set sev sez sleep spm st std sts sub subi swap tst wdr",built_in:"r0 r1 r2 r3 r4 r5 r6 r7 r8 r9 r10 r11 r12 r13 r14 r15 r16 r17 r18 r19 r20 r21 r22 r23 r24 r25 r26 r27 r28 r29 r30 r31 x|0 xh xl y|0 yh yl z|0 zh zl ucsr1c udr1 ucsr1a ucsr1b ubrr1l ubrr1h ucsr0c ubrr0h tccr3c tccr3a tccr3b tcnt3h tcnt3l ocr3ah ocr3al ocr3bh ocr3bl ocr3ch ocr3cl icr3h icr3l etimsk etifr tccr1c ocr1ch ocr1cl twcr twdr twar twsr twbr osccal xmcra xmcrb eicra spmcsr spmcr portg ddrg ping portf ddrf sreg sph spl xdiv rampz eicrb eimsk gimsk gicr eifr gifr timsk tifr mcucr mcucsr tccr0 tcnt0 ocr0 assr tccr1a tccr1b tcnt1h tcnt1l ocr1ah ocr1al ocr1bh ocr1bl icr1h icr1l tccr2 tcnt2 ocr2 ocdr wdtcr sfior eearh eearl eedr eecr porta ddra pina portb ddrb pinb portc ddrc pinc portd ddrd pind spdr spsr spcr udr0 ucsr0a ucsr0b ubrr0l acsr admux adcsr adch adcl porte ddre pine pinf",meta:".byte .cseg .db .def .device .dseg .dw .endmacro .equ .eseg .exit .include .list .listmac .macro .nolist .org .set"},c:[e.CBCM,e.C(";","$",{r:0}),e.CNM,e.BNM,{cN:"number",b:"\\b(\\$[a-zA-Z0-9]+|0o[0-7]+)"},e.QSM,{cN:"string",b:"'",e:"[^\\\\]'",i:"[^\\\\][^']"},{cN:"symbol",b:"^[A-Za-z0-9_.$]+:"},{cN:"meta",b:"#",e:"$"},{cN:"subst",b:"@[0-9]+"}]}}),e.registerLanguage("awk",function(e){var t={cN:"variable",v:[{b:/\$[\w\d#@][\w\d_]*/},{b:/\$\{(.*?)}/}]},r="BEGIN END if else while do for in break continue delete next nextfile function func exit|10",a={cN:"string",c:[e.BE],v:[{b:/(u|b)?r?'''/,e:/'''/,r:10},{b:/(u|b)?r?"""/,e:/"""/,r:10},{b:/(u|r|ur)'/,e:/'/,r:10},{b:/(u|r|ur)"/,e:/"/,r:10},{b:/(b|br)'/,e:/'/},{b:/(b|br)"/,e:/"/},e.ASM,e.QSM]};return{k:{keyword:r},c:[t,a,e.RM,e.HCM,e.NM]}}),e.registerLanguage("axapta",function(e){return{k:"false int abstract private char boolean static null if for true while long throw finally protected final return void enum else break new catch byte super case short default double public try this switch continue reverse firstfast firstonly forupdate nofetch sum avg minof maxof count order group by asc desc index hint like dispaly edit client server ttsbegin ttscommit str real date container anytype common div mod",c:[e.CLCM,e.CBCM,e.ASM,e.QSM,e.CNM,{cN:"meta",b:"#",e:"$"},{cN:"class",bK:"class interface",e:"{",eE:!0,i:":",c:[{bK:"extends implements"},e.UTM]}]}}),e.registerLanguage("bash",function(e){var t={cN:"variable",v:[{b:/\$[\w\d#@][\w\d_]*/},{b:/\$\{(.*?)}/}]},r={cN:"string",b:/"/,e:/"/,c:[e.BE,t,{cN:"variable",b:/\$\(/,e:/\)/,c:[e.BE]}]},a={cN:"string",b:/'/,e:/'/};return{aliases:["sh","zsh"],l:/\b-?[a-z\._]+\b/,k:{keyword:"if then else elif fi for while in do done case esac function",literal:"true false",built_in:"break cd continue eval exec exit export getopts hash pwd readonly return shift test times trap umask unset alias bind builtin caller command declare echo enable help let local logout mapfile printf read readarray source type typeset ulimit unalias set shopt autoload bg bindkey bye cap chdir clone comparguments compcall compctl compdescribe compfiles compgroups compquote comptags comptry compvalues dirs disable disown echotc echoti emulate fc fg float functions getcap getln history integer jobs kill limit log noglob popd print pushd pushln rehash sched setcap setopt stat suspend ttyctl unfunction unhash unlimit unsetopt vared wait whence where which zcompile zformat zftp zle zmodload zparseopts zprof zpty zregexparse zsocket zstyle ztcp",_:"-ne -eq -lt -gt -f -d -e -s -l -a"},c:[{cN:"meta",b:/^#![^\n]+sh\s*$/,r:10},{cN:"function",b:/\w[\w\d_]*\s*\(\s*\)\s*\{/,rB:!0,c:[e.inherit(e.TM,{b:/\w[\w\d_]*/})],r:0},e.HCM,r,a,t]}}),e.registerLanguage("basic",function(e){return{cI:!0,i:"^.",l:"[a-zA-Z][a-zA-Z0-9_$%!#]*",k:{keyword:"ABS ASC AND ATN AUTO|0 BEEP BLOAD|10 BSAVE|10 CALL CALLS CDBL CHAIN CHDIR CHR$|10 CINT CIRCLE CLEAR CLOSE CLS COLOR COM COMMON CONT COS CSNG CSRLIN CVD CVI CVS DATA DATE$ DEFDBL DEFINT DEFSNG DEFSTR DEF|0 SEG USR DELETE DIM DRAW EDIT END ENVIRON ENVIRON$ EOF EQV ERASE ERDEV ERDEV$ ERL ERR ERROR EXP FIELD FILES FIX FOR|0 FRE GET GOSUB|10 GOTO HEX$ IF|0 THEN ELSE|0 INKEY$ INP INPUT INPUT# INPUT$ INSTR IMP INT IOCTL IOCTL$ KEY ON OFF LIST KILL LEFT$ LEN LET LINE LLIST LOAD LOC LOCATE LOF LOG LPRINT USING LSET MERGE MID$ MKDIR MKD$ MKI$ MKS$ MOD NAME NEW NEXT NOISE NOT OCT$ ON OR PEN PLAY STRIG OPEN OPTION BASE OUT PAINT PALETTE PCOPY PEEK PMAP POINT POKE POS PRINT PRINT] PSET PRESET PUT RANDOMIZE READ REM RENUM RESET|0 RESTORE RESUME RETURN|0 RIGHT$ RMDIR RND RSET RUN SAVE SCREEN SGN SHELL SIN SOUND SPACE$ SPC SQR STEP STICK STOP STR$ STRING$ SWAP SYSTEM TAB TAN TIME$ TIMER TROFF TRON TO USR VAL VARPTR VARPTR$ VIEW WAIT WHILE WEND WIDTH WINDOW WRITE XOR" -},c:[e.QSM,e.C("REM","$",{r:10}),e.C("'","$",{r:0}),{cN:"symbol",b:"^[0-9]+ ",r:10},{cN:"number",b:"\\b([0-9]+[0-9edED.]*[#!]?)",r:0},{cN:"number",b:"(&[hH][0-9a-fA-F]{1,4})"},{cN:"number",b:"(&[oO][0-7]{1,6})"}]}}),e.registerLanguage("bnf",function(e){return{c:[{cN:"attribute",b://},{b:/::=/,starts:{e:/$/,c:[{b://},e.CLCM,e.CBCM,e.ASM,e.QSM]}}]}}),e.registerLanguage("brainfuck",function(e){var t={cN:"literal",b:"[\\+\\-]",r:0};return{aliases:["bf"],c:[e.C("[^\\[\\]\\.,\\+\\-<> \r\n]","[\\[\\]\\.,\\+\\-<> \r\n]",{rE:!0,r:0}),{cN:"title",b:"[\\[\\]]",r:0},{cN:"string",b:"[\\.,]",r:0},{b:/\+\+|\-\-/,rB:!0,c:[t]},t]}}),e.registerLanguage("cal",function(e){var t="div mod in and or not xor asserterror begin case do downto else end exit for if of repeat then to until while with var",r="false true",a=[e.CLCM,e.C(/\{/,/\}/,{r:0}),e.C(/\(\*/,/\*\)/,{r:10})],i={cN:"string",b:/'/,e:/'/,c:[{b:/''/}]},n={cN:"string",b:/(#\d+)+/},o={cN:"number",b:"\\b\\d+(\\.\\d+)?(DT|D|T)",r:0},s={cN:"string",b:'"',e:'"'},l={cN:"function",bK:"procedure",e:/[:;]/,k:"procedure|10",c:[e.TM,{cN:"params",b:/\(/,e:/\)/,k:t,c:[i,n]}].concat(a)},c={cN:"class",b:"OBJECT (Table|Form|Report|Dataport|Codeunit|XMLport|MenuSuite|Page|Query) (\\d+) ([^\\r\\n]+)",rB:!0,c:[e.TM,l]};return{cI:!0,k:{keyword:t,literal:r},i:/\/\*/,c:[i,n,o,s,e.NM,c,l]}}),e.registerLanguage("capnproto",function(e){return{aliases:["capnp"],k:{keyword:"struct enum interface union group import using const annotation extends in of on as with from fixed",built_in:"Void Bool Int8 Int16 Int32 Int64 UInt8 UInt16 UInt32 UInt64 Float32 Float64 Text Data AnyPointer AnyStruct Capability List",literal:"true false"},c:[e.QSM,e.NM,e.HCM,{cN:"meta",b:/@0x[\w\d]{16};/,i:/\n/},{cN:"symbol",b:/@\d+\b/},{cN:"class",bK:"struct enum",e:/\{/,i:/\n/,c:[e.inherit(e.TM,{starts:{eW:!0,eE:!0}})]},{cN:"class",bK:"interface",e:/\{/,i:/\n/,c:[e.inherit(e.TM,{starts:{eW:!0,eE:!0}})]}]}}),e.registerLanguage("ceylon",function(e){var t="assembly module package import alias class interface object given value assign void function new of extends satisfies abstracts in out return break continue throw assert dynamic if else switch case for while try catch finally then let this outer super is exists nonempty",r="shared abstract formal default actual variable late native deprecatedfinal sealed annotation suppressWarnings small",a="doc by license see throws tagged",i={cN:"subst",eB:!0,eE:!0,b:/``/,e:/``/,k:t,r:10},n=[{cN:"string",b:'"""',e:'"""',r:10},{cN:"string",b:'"',e:'"',c:[i]},{cN:"string",b:"'",e:"'"},{cN:"number",b:"#[0-9a-fA-F_]+|\\$[01_]+|[0-9_]+(?:\\.[0-9_](?:[eE][+-]?\\d+)?)?[kMGTPmunpf]?",r:0}];return i.c=n,{k:{keyword:t+" "+r,meta:a},i:"\\$[^01]|#[^0-9a-fA-F]",c:[e.CLCM,e.C("/\\*","\\*/",{c:["self"]}),{cN:"meta",b:'@[a-z]\\w*(?:\\:"[^"]*")?'}].concat(n)}}),e.registerLanguage("clean",function(e){return{aliases:["clean","icl","dcl"],k:{keyword:"if let in with where case of class instance otherwise implementation definition system module from import qualified as special code inline foreign export ccall stdcall generic derive infix infixl infixr",literal:"True False"},c:[e.CLCM,e.CBCM,e.ASM,e.QSM,e.CNM,{b:"->|<-[|:]?|::|#!?|>>=|\\{\\||\\|\\}|:==|=:|\\.\\.|<>|`"}]}}),e.registerLanguage("clojure",function(e){var t={"builtin-name":"def defonce cond apply if-not if-let if not not= = < > <= >= == + / * - rem quot neg? pos? delay? symbol? keyword? true? false? integer? empty? coll? list? set? ifn? fn? associative? sequential? sorted? counted? reversible? number? decimal? class? distinct? isa? float? rational? reduced? ratio? odd? even? char? seq? vector? string? map? nil? contains? zero? instance? not-every? not-any? libspec? -> ->> .. . inc compare do dotimes mapcat take remove take-while drop letfn drop-last take-last drop-while while intern condp case reduced cycle split-at split-with repeat replicate iterate range merge zipmap declare line-seq sort comparator sort-by dorun doall nthnext nthrest partition eval doseq await await-for let agent atom send send-off release-pending-sends add-watch mapv filterv remove-watch agent-error restart-agent set-error-handler error-handler set-error-mode! error-mode shutdown-agents quote var fn loop recur throw try monitor-enter monitor-exit defmacro defn defn- macroexpand macroexpand-1 for dosync and or when when-not when-let comp juxt partial sequence memoize constantly complement identity assert peek pop doto proxy defstruct first rest cons defprotocol cast coll deftype defrecord last butlast sigs reify second ffirst fnext nfirst nnext defmulti defmethod meta with-meta ns in-ns create-ns import refer keys select-keys vals key val rseq name namespace promise into transient persistent! conj! assoc! dissoc! pop! disj! use class type num float double short byte boolean bigint biginteger bigdec print-method print-dup throw-if printf format load compile get-in update-in pr pr-on newline flush read slurp read-line subvec with-open memfn time re-find re-groups rand-int rand mod locking assert-valid-fdecl alias resolve ref deref refset swap! reset! set-validator! compare-and-set! alter-meta! reset-meta! commute get-validator alter ref-set ref-history-count ref-min-history ref-max-history ensure sync io! new next conj set! to-array future future-call into-array aset gen-class reduce map filter find empty hash-map hash-set sorted-map sorted-map-by sorted-set sorted-set-by vec vector seq flatten reverse assoc dissoc list disj get union difference intersection extend extend-type extend-protocol int nth delay count concat chunk chunk-buffer chunk-append chunk-first chunk-rest max min dec unchecked-inc-int unchecked-inc unchecked-dec-inc unchecked-dec unchecked-negate unchecked-add-int unchecked-add unchecked-subtract-int unchecked-subtract chunk-next chunk-cons chunked-seq? prn vary-meta lazy-seq spread list* str find-keyword keyword symbol gensym force rationalize"},r="a-zA-Z_\\-!.?+*=<>&#'",a="["+r+"]["+r+"0-9/;:]*",i="[-+]?\\d+(\\.\\d+)?",n={b:a,r:0},o={cN:"number",b:i,r:0},s=e.inherit(e.QSM,{i:null}),l=e.C(";","$",{r:0}),c={cN:"literal",b:/\b(true|false|nil)\b/},d={b:"[\\[\\{]",e:"[\\]\\}]"},p={cN:"comment",b:"\\^"+a},m=e.C("\\^\\{","\\}"),u={cN:"symbol",b:"[:]{1,2}"+a},b={b:"\\(",e:"\\)"},g={eW:!0,r:0},f={k:t,l:a,cN:"name",b:a,starts:g},_=[b,s,p,m,l,u,d,o,c,n];return b.c=[e.C("comment",""),f,g],g.c=_,d.c=_,m.c=[d],{aliases:["clj"],i:/\S/,c:[b,s,p,m,l,u,d,o,c]}}),e.registerLanguage("clojure-repl",function(e){return{c:[{cN:"meta",b:/^([\w.-]+|\s*#_)=>/,starts:{e:/$/,sL:"clojure"}}]}}),e.registerLanguage("cmake",function(e){return{aliases:["cmake.in"],cI:!0,k:{keyword:"add_custom_command add_custom_target add_definitions add_dependencies add_executable add_library add_subdirectory add_test aux_source_directory break build_command cmake_minimum_required cmake_policy configure_file create_test_sourcelist define_property else elseif enable_language enable_testing endforeach endfunction endif endmacro endwhile execute_process export find_file find_library find_package find_path find_program fltk_wrap_ui foreach function get_cmake_property get_directory_property get_filename_component get_property get_source_file_property get_target_property get_test_property if include include_directories include_external_msproject include_regular_expression install link_directories load_cache load_command macro mark_as_advanced message option output_required_files project qt_wrap_cpp qt_wrap_ui remove_definitions return separate_arguments set set_directory_properties set_property set_source_files_properties set_target_properties set_tests_properties site_name source_group string target_link_libraries try_compile try_run unset variable_watch while build_name exec_program export_library_dependencies install_files install_programs install_targets link_libraries make_directory remove subdir_depends subdirs use_mangled_mesa utility_source variable_requires write_file qt5_use_modules qt5_use_package qt5_wrap_cpp on off true false and or equal less greater strless strgreater strequal matches"},c:[{cN:"variable",b:"\\${",e:"}"},e.HCM,e.QSM,e.NM]}}),e.registerLanguage("coffeescript",function(e){var t={keyword:"in if for while finally new do return else break catch instanceof throw try this switch continue typeof delete debugger super yield import export from as default await then unless until loop of by when and or is isnt not",literal:"true false null undefined yes no on off",built_in:"npm require console print module global window document"},r="[A-Za-z$_][0-9A-Za-z$_]*",a={cN:"subst",b:/#\{/,e:/}/,k:t},i=[e.BNM,e.inherit(e.CNM,{starts:{e:"(\\s*/)?",r:0}}),{cN:"string",v:[{b:/'''/,e:/'''/,c:[e.BE]},{b:/'/,e:/'/,c:[e.BE]},{b:/"""/,e:/"""/,c:[e.BE,a]},{b:/"/,e:/"/,c:[e.BE,a]}]},{cN:"regexp",v:[{b:"///",e:"///",c:[a,e.HCM]},{b:"//[gim]*",r:0},{b:/\/(?![ *])(\\\/|.)*?\/[gim]*(?=\W|$)/}]},{b:"@"+r},{sL:"javascript",eB:!0,eE:!0,v:[{b:"```",e:"```"},{b:"`",e:"`"}]}];a.c=i;var n=e.inherit(e.TM,{b:r}),o="(\\(.*\\))?\\s*\\B[-=]>",s={cN:"params",b:"\\([^\\(]",rB:!0,c:[{b:/\(/,e:/\)/,k:t,c:["self"].concat(i)}]};return{aliases:["coffee","cson","iced"],k:t,i:/\/\*/,c:i.concat([e.C("###","###"),e.HCM,{cN:"function",b:"^\\s*"+r+"\\s*=\\s*"+o,e:"[-=]>",rB:!0,c:[n,s]},{b:/[:\(,=]\s*/,r:0,c:[{cN:"function",b:o,e:"[-=]>",rB:!0,c:[s]}]},{cN:"class",bK:"class",e:"$",i:/[:="\[\]]/,c:[{bK:"extends",eW:!0,i:/[:="\[\]]/,c:[n]},n]},{b:r+":",e:":",rB:!0,rE:!0,r:0}])}}),e.registerLanguage("coq",function(e){return{k:{keyword:"_ as at cofix else end exists exists2 fix for forall fun if IF in let match mod Prop return Set then Type using where with Abort About Add Admit Admitted All Arguments Assumptions Axiom Back BackTo Backtrack Bind Blacklist Canonical Cd Check Class Classes Close Coercion Coercions CoFixpoint CoInductive Collection Combined Compute Conjecture Conjectures Constant constr Constraint Constructors Context Corollary CreateHintDb Cut Declare Defined Definition Delimit Dependencies DependentDerive Drop eauto End Equality Eval Example Existential Existentials Existing Export exporting Extern Extract Extraction Fact Field Fields File Fixpoint Focus for From Function Functional Generalizable Global Goal Grab Grammar Graph Guarded Heap Hint HintDb Hints Hypotheses Hypothesis ident Identity If Immediate Implicit Import Include Inductive Infix Info Initial Inline Inspect Instance Instances Intro Intros Inversion Inversion_clear Language Left Lemma Let Libraries Library Load LoadPath Local Locate Ltac ML Mode Module Modules Monomorphic Morphism Next NoInline Notation Obligation Obligations Opaque Open Optimize Options Parameter Parameters Parametric Path Paths pattern Polymorphic Preterm Print Printing Program Projections Proof Proposition Pwd Qed Quit Rec Record Recursive Redirect Relation Remark Remove Require Reserved Reset Resolve Restart Rewrite Right Ring Rings Save Scheme Scope Scopes Script Search SearchAbout SearchHead SearchPattern SearchRewrite Section Separate Set Setoid Show Solve Sorted Step Strategies Strategy Structure SubClass Table Tables Tactic Term Test Theorem Time Timeout Transparent Type Typeclasses Types Undelimit Undo Unfocus Unfocused Unfold Universe Universes Unset Unshelve using Variable Variables Variant Verbose Visibility where with",built_in:"abstract absurd admit after apply as assert assumption at auto autorewrite autounfold before bottom btauto by case case_eq cbn cbv change classical_left classical_right clear clearbody cofix compare compute congruence constr_eq constructor contradict contradiction cut cutrewrite cycle decide decompose dependent destruct destruction dintuition discriminate discrR do double dtauto eapply eassumption eauto ecase econstructor edestruct ediscriminate eelim eexact eexists einduction einjection eleft elim elimtype enough equality erewrite eright esimplify_eq esplit evar exact exactly_once exfalso exists f_equal fail field field_simplify field_simplify_eq first firstorder fix fold fourier functional generalize generalizing gfail give_up has_evar hnf idtac in induction injection instantiate intro intro_pattern intros intuition inversion inversion_clear is_evar is_var lapply lazy left lia lra move native_compute nia nsatz omega once pattern pose progress proof psatz quote record red refine reflexivity remember rename repeat replace revert revgoals rewrite rewrite_strat right ring ring_simplify rtauto set setoid_reflexivity setoid_replace setoid_rewrite setoid_symmetry setoid_transitivity shelve shelve_unifiable simpl simple simplify_eq solve specialize split split_Rabs split_Rmult stepl stepr subst sum swap symmetry tactic tauto time timeout top transitivity trivial try tryif unfold unify until using vm_compute with"},c:[e.QSM,e.C("\\(\\*","\\*\\)"),e.CNM,{cN:"type",eB:!0,b:"\\|\\s*",e:"\\w+"},{b:/[-=]>/}]}}),e.registerLanguage("cos",function(e){var t={cN:"string",v:[{b:'"',e:'"',c:[{b:'""',r:0}]}]},r={cN:"number",b:"\\b(\\d+(\\.\\d*)?|\\.\\d+)",r:0},a="property parameter class classmethod clientmethod extends as break catch close continue do d|0 else elseif for goto halt hang h|0 if job j|0 kill k|0 lock l|0 merge new open quit q|0 read r|0 return set s|0 tcommit throw trollback try tstart use view while write w|0 xecute x|0 zkill znspace zn ztrap zwrite zw zzdump zzwrite print zbreak zinsert zload zprint zremove zsave zzprint mv mvcall mvcrt mvdim mvprint zquit zsync ascii";return{cI:!0,aliases:["cos","cls"],k:a,c:[r,t,e.CLCM,e.CBCM,{cN:"comment",b:/;/,e:"$",r:0},{cN:"built_in",b:/(?:\$\$?|\.\.)\^?[a-zA-Z]+/},{cN:"built_in",b:/\$\$\$[a-zA-Z]+/},{cN:"built_in",b:/%[a-z]+(?:\.[a-z]+)*/},{cN:"symbol",b:/\^%?[a-zA-Z][\w]*/},{cN:"keyword",b:/##class|##super|#define|#dim/},{b:/&sql\(/,e:/\)/,eB:!0,eE:!0,sL:"sql"},{b:/&(js|jscript|javascript)/,eB:!0,eE:!0,sL:"javascript"},{b:/&html<\s*\s*>/,sL:"xml"}]}}),e.registerLanguage("crmsh",function(e){var t="primitive rsc_template",r="group clone ms master location colocation order fencing_topology rsc_ticket acl_target acl_group user role tag xml",a="property rsc_defaults op_defaults",i="params meta operations op rule attributes utilization",n="read write deny defined not_defined in_range date spec in ref reference attribute type xpath version and or lt gt tag lte gte eq ne \\",o="number string",s="Master Started Slave Stopped start promote demote stop monitor true false";return{aliases:["crm","pcmk"],cI:!0,k:{keyword:i+" "+n+" "+o,literal:s},c:[e.HCM,{bK:"node",starts:{e:"\\s*([\\w_-]+:)?",starts:{cN:"title",e:"\\s*[\\$\\w_][\\w_-]*"}}},{bK:t,starts:{cN:"title",e:"\\s*[\\$\\w_][\\w_-]*",starts:{e:"\\s*@?[\\w_][\\w_\\.:-]*"}}},{b:"\\b("+r.split(" ").join("|")+")\\s+",k:r,starts:{cN:"title",e:"[\\$\\w_][\\w_-]*"}},{bK:a,starts:{cN:"title",e:"\\s*([\\w_-]+:)?"}},e.QSM,{cN:"meta",b:"(ocf|systemd|service|lsb):[\\w_:-]+",r:0},{cN:"number",b:"\\b\\d+(\\.\\d+)?(ms|s|h|m)?",r:0},{cN:"literal",b:"[-]?(infinity|inf)",r:0},{cN:"attr",b:/([A-Za-z\$_\#][\w_-]+)=/,r:0},{cN:"tag",b:"",r:0}]}}),e.registerLanguage("crystal",function(e){function t(e,t){var r=[{b:e,e:t}];return r[0].c=r,r}var r="(_[uif](8|16|32|64))?",a="[a-zA-Z_]\\w*[!?=]?",i="!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~",n="[a-zA-Z_]\\w*[!?=]?|[-+~]\\@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\][=?]?",o={keyword:"abstract alias as as? asm begin break case class def do else elsif end ensure enum extend for fun if include instance_sizeof is_a? lib macro module next nil? of out pointerof private protected rescue responds_to? return require select self sizeof struct super then type typeof union uninitialized unless until when while with yield __DIR__ __END_LINE__ __FILE__ __LINE__",literal:"false nil true"},s={cN:"subst",b:"#{",e:"}",k:o},l={cN:"template-variable",v:[{b:"\\{\\{",e:"\\}\\}"},{b:"\\{%",e:"%\\}"}],k:o},c={cN:"string",c:[e.BE,s],v:[{b:/'/,e:/'/},{b:/"/,e:/"/},{b:/`/,e:/`/},{b:"%w?\\(",e:"\\)",c:t("\\(","\\)")},{b:"%w?\\[",e:"\\]",c:t("\\[","\\]")},{b:"%w?{",e:"}",c:t("{","}")},{b:"%w?<",e:">",c:t("<",">")},{b:"%w?/",e:"/"},{b:"%w?%",e:"%"},{b:"%w?-",e:"-"},{b:"%w?\\|",e:"\\|"},{b:/<<-\w+$/,e:/^\s*\w+$/}],r:0},d={cN:"string",v:[{b:"%q\\(",e:"\\)",c:t("\\(","\\)")},{b:"%q\\[",e:"\\]",c:t("\\[","\\]")},{b:"%q{",e:"}",c:t("{","}")},{b:"%q<",e:">",c:t("<",">")},{b:"%q/",e:"/"},{b:"%q%",e:"%"},{b:"%q-",e:"-"},{b:"%q\\|",e:"\\|"},{b:/<<-'\w+'$/,e:/^\s*\w+$/}],r:0},p={b:"("+i+")\\s*",c:[{cN:"regexp",c:[e.BE,s],v:[{b:"//[a-z]*",r:0},{b:"/",e:"/[a-z]*"},{b:"%r\\(",e:"\\)",c:t("\\(","\\)")},{b:"%r\\[",e:"\\]",c:t("\\[","\\]")},{b:"%r{",e:"}",c:t("{","}")},{b:"%r<",e:">",c:t("<",">")},{b:"%r/",e:"/"},{b:"%r%",e:"%"},{b:"%r-",e:"-"},{b:"%r\\|",e:"\\|"}]}],r:0},m={cN:"regexp",c:[e.BE,s],v:[{b:"%r\\(",e:"\\)",c:t("\\(","\\)")},{b:"%r\\[",e:"\\]",c:t("\\[","\\]")},{b:"%r{",e:"}",c:t("{","}")},{b:"%r<",e:">",c:t("<",">")},{b:"%r/",e:"/"},{b:"%r%",e:"%"},{b:"%r-",e:"-"},{b:"%r\\|",e:"\\|"}],r:0},u={cN:"meta",b:"@\\[",e:"\\]",c:[e.inherit(e.QSM,{cN:"meta-string"})]},b=[l,c,d,p,m,u,e.HCM,{cN:"class",bK:"class module struct",e:"$|;",i:/=/,c:[e.HCM,e.inherit(e.TM,{b:"[A-Za-z_]\\w*(::\\w+)*(\\?|\\!)?"}),{b:"<"}]},{cN:"class",bK:"lib enum union",e:"$|;",i:/=/,c:[e.HCM,e.inherit(e.TM,{b:"[A-Za-z_]\\w*(::\\w+)*(\\?|\\!)?"})],r:10},{cN:"function",bK:"def",e:/\B\b/,c:[e.inherit(e.TM,{b:n,endsParent:!0})]},{cN:"function",bK:"fun macro",e:/\B\b/,c:[e.inherit(e.TM,{b:n,endsParent:!0})],r:5},{cN:"symbol",b:e.UIR+"(\\!|\\?)?:",r:0},{cN:"symbol",b:":",c:[c,{b:n}],r:0},{cN:"number",v:[{b:"\\b0b([01_]*[01])"+r},{b:"\\b0o([0-7_]*[0-7])"+r},{b:"\\b0x([A-Fa-f0-9_]*[A-Fa-f0-9])"+r},{b:"\\b(([0-9][0-9_]*[0-9]|[0-9])(\\.[0-9_]*[0-9])?([eE][+-]?[0-9_]*[0-9])?)"+r}],r:0}];return s.c=b,l.c=b.slice(1),{aliases:["cr"],l:a,k:o,c:b}}),e.registerLanguage("cs",function(e){var t={keyword:"abstract as base bool break byte case catch char checked const continue decimal default delegate do double enum event explicit extern finally fixed float for foreach goto if implicit in int interface internal is lock long nameof object operator out override params private protected public readonly ref sbyte sealed short sizeof stackalloc static string struct switch this try typeof uint ulong unchecked unsafe ushort using virtual void volatile while add alias ascending async await by descending dynamic equals from get global group into join let on orderby partial remove select set value var where yield",literal:"null false true"},r={cN:"string",b:'@"',e:'"',c:[{b:'""'}]},a=e.inherit(r,{i:/\n/}),i={cN:"subst",b:"{",e:"}",k:t},n=e.inherit(i,{i:/\n/}),o={cN:"string",b:/\$"/,e:'"',i:/\n/,c:[{b:"{{"},{b:"}}"},e.BE,n]},s={cN:"string",b:/\$@"/,e:'"',c:[{b:"{{"},{b:"}}"},{b:'""'},i]},l=e.inherit(s,{i:/\n/,c:[{b:"{{"},{b:"}}"},{b:'""'},n]});i.c=[s,o,r,e.ASM,e.QSM,e.CNM,e.CBCM],n.c=[l,o,a,e.ASM,e.QSM,e.CNM,e.inherit(e.CBCM,{i:/\n/})];var c={v:[s,o,r,e.ASM,e.QSM]},d=e.IR+"(<"+e.IR+"(\\s*,\\s*"+e.IR+")*>)?(\\[\\])?";return{aliases:["csharp"],k:t,i:/::/,c:[e.C("///","$",{rB:!0,c:[{cN:"doctag",v:[{b:"///",r:0},{b:""},{b:""}]}]}),e.CLCM,e.CBCM,{cN:"meta",b:"#",e:"$",k:{"meta-keyword":"if else elif endif define undef warning error line region endregion pragma checksum"}},c,e.CNM,{bK:"class interface",e:/[{;=]/,i:/[^\s:]/,c:[e.TM,e.CLCM,e.CBCM]},{bK:"namespace",e:/[{;=]/,i:/[^\s:]/,c:[e.inherit(e.TM,{b:"[a-zA-Z](\\.?\\w)*"}),e.CLCM,e.CBCM]},{cN:"meta",b:"^\\s*\\[",eB:!0,e:"\\]",eE:!0,c:[{cN:"meta-string",b:/"/,e:/"/}]},{bK:"new return throw await else",r:0},{cN:"function",b:"("+d+"\\s+)+"+e.IR+"\\s*\\(",rB:!0,e:/[{;=]/,eE:!0,k:t,c:[{b:e.IR+"\\s*\\(",rB:!0,c:[e.TM],r:0},{cN:"params",b:/\(/,e:/\)/,eB:!0,eE:!0,k:t,r:0,c:[c,e.CNM,e.CBCM]},e.CLCM,e.CBCM]}]}}),e.registerLanguage("csp",function(e){return{cI:!1,l:"[a-zA-Z][a-zA-Z0-9_-]*",k:{keyword:"base-uri child-src connect-src default-src font-src form-action frame-ancestors frame-src img-src media-src object-src plugin-types report-uri sandbox script-src style-src"},c:[{cN:"string",b:"'",e:"'"},{cN:"attribute",b:"^Content",e:":",eE:!0}]}}),e.registerLanguage("css",function(e){var t="[a-zA-Z-][a-zA-Z0-9_-]*",r={b:/[A-Z\_\.\-]+\s*:/,rB:!0,e:";",eW:!0,c:[{cN:"attribute",b:/\S/,e:":",eE:!0,starts:{eW:!0,eE:!0,c:[{b:/[\w-]+\(/,rB:!0,c:[{cN:"built_in",b:/[\w-]+/},{b:/\(/,e:/\)/,c:[e.ASM,e.QSM]}]},e.CSSNM,e.QSM,e.ASM,e.CBCM,{cN:"number",b:"#[0-9A-Fa-f]+"},{cN:"meta",b:"!important"}]}}]};return{cI:!0,i:/[=\/|'\$]/,c:[e.CBCM,{cN:"selector-id",b:/#[A-Za-z0-9_-]+/},{cN:"selector-class",b:/\.[A-Za-z0-9_-]+/},{cN:"selector-attr",b:/\[/,e:/\]/,i:"$"},{cN:"selector-pseudo",b:/:(:)?[a-zA-Z0-9\_\-\+\(\)"'.]+/},{b:"@(font-face|page)",l:"[a-z-]+",k:"font-face page"},{b:"@",e:"[{;]",i:/:/,c:[{cN:"keyword",b:/\w+/},{b:/\s/,eW:!0,eE:!0,r:0,c:[e.ASM,e.QSM,e.CSSNM]}]},{cN:"selector-tag",b:t,r:0},{b:"{",e:"}",i:/\S/,c:[e.CBCM,r]}]}}),e.registerLanguage("d",function(e){var t={keyword:"abstract alias align asm assert auto body break byte case cast catch class const continue debug default delete deprecated do else enum export extern final finally for foreach foreach_reverse|10 goto if immutable import in inout int interface invariant is lazy macro mixin module new nothrow out override package pragma private protected public pure ref return scope shared static struct super switch synchronized template this throw try typedef typeid typeof union unittest version void volatile while with __FILE__ __LINE__ __gshared|10 __thread __traits __DATE__ __EOF__ __TIME__ __TIMESTAMP__ __VENDOR__ __VERSION__",built_in:"bool cdouble cent cfloat char creal dchar delegate double dstring float function idouble ifloat ireal long real short string ubyte ucent uint ulong ushort wchar wstring",literal:"false null true"},r="(0|[1-9][\\d_]*)",a="(0|[1-9][\\d_]*|\\d[\\d_]*|[\\d_]+?\\d)",i="0[bB][01_]+",n="([\\da-fA-F][\\da-fA-F_]*|_[\\da-fA-F][\\da-fA-F_]*)",o="0[xX]"+n,s="([eE][+-]?"+a+")",l="("+a+"(\\.\\d*|"+s+")|\\d+\\."+a+a+"|\\."+r+s+"?)",c="(0[xX]("+n+"\\."+n+"|\\.?"+n+")[pP][+-]?"+a+")",d="("+r+"|"+i+"|"+o+")",p="("+c+"|"+l+")",m="\\\\(['\"\\?\\\\abfnrtv]|u[\\dA-Fa-f]{4}|[0-7]{1,3}|x[\\dA-Fa-f]{2}|U[\\dA-Fa-f]{8})|&[a-zA-Z\\d]{2,};",u={cN:"number",b:"\\b"+d+"(L|u|U|Lu|LU|uL|UL)?",r:0},b={cN:"number",b:"\\b("+p+"([fF]|L|i|[fF]i|Li)?|"+d+"(i|[fF]i|Li))",r:0},g={cN:"string",b:"'("+m+"|.)",e:"'",i:"."},f={b:m,r:0},_={cN:"string",b:'"',c:[f],e:'"[cwd]?'},h={cN:"string",b:'[rq]"',e:'"[cwd]?',r:5},v={cN:"string",b:"`",e:"`[cwd]?"},y={cN:"string",b:'x"[\\da-fA-F\\s\\n\\r]*"[cwd]?',r:10},S={cN:"string",b:'q"\\{',e:'\\}"'},C={cN:"meta",b:"^#!",e:"$",r:5},x={cN:"meta",b:"#(line)",e:"$",r:5},E={cN:"keyword",b:"@[a-zA-Z_][a-zA-Z_\\d]*"},N=e.C("\\/\\+","\\+\\/",{c:["self"],r:10});return{l:e.UIR,k:t,c:[e.CLCM,e.CBCM,N,y,_,h,v,S,b,u,g,C,x,E]}}),e.registerLanguage("markdown",function(e){return{aliases:["md","mkdown","mkd"],c:[{cN:"section",v:[{b:"^#{1,6}",e:"$"},{b:"^.+?\\n[=-]{2,}$"}]},{b:"<",e:">",sL:"xml",r:0},{cN:"bullet",b:"^([*+-]|(\\d+\\.))\\s+"},{cN:"strong",b:"[*_]{2}.+?[*_]{2}"},{cN:"emphasis",v:[{b:"\\*.+?\\*"},{b:"_.+?_",r:0}]},{cN:"quote",b:"^>\\s+",e:"$"},{cN:"code",v:[{b:"^```w*s*$",e:"^```s*$"},{b:"`.+?`"},{b:"^( {4}| )",e:"$",r:0}]},{b:"^[-\\*]{3,}",e:"$"},{b:"\\[.+?\\][\\(\\[].*?[\\)\\]]",rB:!0,c:[{cN:"string",b:"\\[",e:"\\]",eB:!0,rE:!0,r:0},{cN:"link",b:"\\]\\(",e:"\\)",eB:!0,eE:!0},{cN:"symbol",b:"\\]\\[",e:"\\]",eB:!0,eE:!0}],r:10},{b:/^\[[^\n]+\]:/,rB:!0,c:[{cN:"symbol",b:/\[/,e:/\]/,eB:!0,eE:!0},{cN:"link",b:/:\s*/,e:/$/,eB:!0}]}]}}),e.registerLanguage("dart",function(e){var t={cN:"subst",b:"\\$\\{",e:"}",k:"true false null this is new super"},r={cN:"string",v:[{b:"r'''",e:"'''"},{b:'r"""',e:'"""'},{b:"r'",e:"'",i:"\\n"},{b:'r"',e:'"',i:"\\n"},{b:"'''",e:"'''",c:[e.BE,t]},{b:'"""',e:'"""',c:[e.BE,t]},{b:"'",e:"'",i:"\\n",c:[e.BE,t]},{b:'"',e:'"',i:"\\n",c:[e.BE,t]}]};t.c=[e.CNM,r];var a={keyword:"assert async await break case catch class const continue default do else enum extends false final finally for if in is new null rethrow return super switch sync this throw true try var void while with yield abstract as dynamic export external factory get implements import library operator part set static typedef",built_in:"print Comparable DateTime Duration Function Iterable Iterator List Map Match Null Object Pattern RegExp Set Stopwatch String StringBuffer StringSink Symbol Type Uri bool double int num document window querySelector querySelectorAll Element ElementList"};return{k:a,c:[r,e.C("/\\*\\*","\\*/",{sL:"markdown"}),e.C("///","$",{sL:"markdown"}),e.CLCM,e.CBCM,{cN:"class",bK:"class interface",e:"{",eE:!0,c:[{bK:"extends implements"},e.UTM]},e.CNM,{cN:"meta",b:"@[A-Za-z]+"},{b:"=>"}]}}),e.registerLanguage("delphi",function(e){var t="exports register file shl array record property for mod while set ally label uses raise not stored class safecall var interface or private static exit index inherited to else stdcall override shr asm far resourcestring finalization packed virtual out and protected library do xorwrite goto near function end div overload object unit begin string on inline repeat until destructor write message program with read initialization except default nil if case cdecl in downto threadvar of try pascal const external constructor type public then implementation finally published procedure absolute reintroduce operator as is abstract alias assembler bitpacked break continue cppdecl cvar enumerator experimental platform deprecated unimplemented dynamic export far16 forward generic helper implements interrupt iochecks local name nodefault noreturn nostackframe oldfpccall otherwise saveregisters softfloat specialize strict unaligned varargs ",r=[e.CLCM,e.C(/\{/,/\}/,{r:0}),e.C(/\(\*/,/\*\)/,{r:10})],a={cN:"meta",v:[{b:/\{\$/,e:/\}/},{b:/\(\*\$/,e:/\*\)/}]},i={cN:"string",b:/'/,e:/'/,c:[{b:/''/}]},n={cN:"string",b:/(#\d+)+/},o={b:e.IR+"\\s*=\\s*class\\s*\\(",rB:!0,c:[e.TM]},s={cN:"function",bK:"function constructor destructor procedure",e:/[:;]/,k:"function constructor|10 destructor|10 procedure|10",c:[e.TM,{cN:"params",b:/\(/,e:/\)/,k:t,c:[i,n,a].concat(r)},a].concat(r)};return{aliases:["dpr","dfm","pas","pascal","freepascal","lazarus","lpr","lfm"],cI:!0,k:t,i:/"|\$[G-Zg-z]|\/\*|<\/|\|/,c:[i,n,e.NM,o,s,a].concat(r)}}),e.registerLanguage("diff",function(e){return{aliases:["patch"],c:[{cN:"meta",r:10,v:[{b:/^@@ +\-\d+,\d+ +\+\d+,\d+ +@@$/},{b:/^\*\*\* +\d+,\d+ +\*\*\*\*$/},{b:/^\-\-\- +\d+,\d+ +\-\-\-\-$/}]},{cN:"comment",v:[{b:/Index: /,e:/$/},{b:/={3,}/,e:/$/},{b:/^\-{3}/,e:/$/},{b:/^\*{3} /,e:/$/},{b:/^\+{3}/,e:/$/},{b:/\*{5}/,e:/\*{5}$/}]},{cN:"addition",b:"^\\+",e:"$"},{cN:"deletion",b:"^\\-",e:"$"},{cN:"addition",b:"^\\!",e:"$"}]}}),e.registerLanguage("django",function(e){var t={b:/\|[A-Za-z]+:?/,k:{name:"truncatewords removetags linebreaksbr yesno get_digit timesince random striptags filesizeformat escape linebreaks length_is ljust rjust cut urlize fix_ampersands title floatformat capfirst pprint divisibleby add make_list unordered_list urlencode timeuntil urlizetrunc wordcount stringformat linenumbers slice date dictsort dictsortreversed default_if_none pluralize lower join center default truncatewords_html upper length phone2numeric wordwrap time addslashes slugify first escapejs force_escape iriencode last safe safeseq truncatechars localize unlocalize localtime utc timezone"},c:[e.QSM,e.ASM]};return{aliases:["jinja"],cI:!0,sL:"xml",c:[e.C(/\{%\s*comment\s*%}/,/\{%\s*endcomment\s*%}/),e.C(/\{#/,/#}/),{cN:"template-tag",b:/\{%/,e:/%}/,c:[{cN:"name",b:/\w+/,k:{name:"comment endcomment load templatetag ifchanged endifchanged if endif firstof for endfor ifnotequal endifnotequal widthratio extends include spaceless endspaceless regroup ifequal endifequal ssi now with cycle url filter endfilter debug block endblock else autoescape endautoescape csrf_token empty elif endwith static trans blocktrans endblocktrans get_static_prefix get_media_prefix plural get_current_language language get_available_languages get_current_language_bidi get_language_info get_language_info_list localize endlocalize localtime endlocaltime timezone endtimezone get_current_timezone verbatim"},starts:{eW:!0,k:"in by as",c:[t],r:0}}]},{cN:"template-variable",b:/\{\{/,e:/}}/,c:[t]}]}}),e.registerLanguage("dns",function(e){return{aliases:["bind","zone"],k:{keyword:"IN A AAAA AFSDB APL CAA CDNSKEY CDS CERT CNAME DHCID DLV DNAME DNSKEY DS HIP IPSECKEY KEY KX LOC MX NAPTR NS NSEC NSEC3 NSEC3PARAM PTR RRSIG RP SIG SOA SRV SSHFP TA TKEY TLSA TSIG TXT"},c:[e.C(";","$",{r:0}),{cN:"meta",b:/^\$(TTL|GENERATE|INCLUDE|ORIGIN)\b/},{cN:"number",b:"((([0-9A-Fa-f]{1,4}:){7}([0-9A-Fa-f]{1,4}|:))|(([0-9A-Fa-f]{1,4}:){6}(:[0-9A-Fa-f]{1,4}|((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){5}(((:[0-9A-Fa-f]{1,4}){1,2})|:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){4}(((:[0-9A-Fa-f]{1,4}){1,3})|((:[0-9A-Fa-f]{1,4})?:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){3}(((:[0-9A-Fa-f]{1,4}){1,4})|((:[0-9A-Fa-f]{1,4}){0,2}:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){2}(((:[0-9A-Fa-f]{1,4}){1,5})|((:[0-9A-Fa-f]{1,4}){0,3}:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){1}(((:[0-9A-Fa-f]{1,4}){1,6})|((:[0-9A-Fa-f]{1,4}){0,4}:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3}))|:))|(:(((:[0-9A-Fa-f]{1,4}){1,7})|((:[0-9A-Fa-f]{1,4}){0,5}:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3}))|:)))\\b"},{cN:"number",b:"((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]).){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\b"},e.inherit(e.NM,{b:/\b\d+[dhwm]?/})]}}),e.registerLanguage("dockerfile",function(e){return{aliases:["docker"],cI:!0,k:"from maintainer expose env arg user onbuild stopsignal",c:[e.HCM,e.ASM,e.QSM,e.NM,{bK:"run cmd entrypoint volume add copy workdir label healthcheck shell",starts:{e:/[^\\]\n/,sL:"bash"}}],i:"", -i:"\\n"}]},t,e.CLCM,e.CBCM]},i={cN:"variable",b:"\\&[a-z\\d_]*\\b"},n={cN:"meta-keyword",b:"/[a-z][a-z\\d-]*/"},o={cN:"symbol",b:"^\\s*[a-zA-Z_][a-zA-Z\\d_]*:"},s={cN:"params",b:"<",e:">",c:[r,i]},l={cN:"class",b:/[a-zA-Z_][a-zA-Z\d_@]*\s{/,e:/[{;=]/,rB:!0,eE:!0},c={cN:"class",b:"/\\s*{",e:"};",r:10,c:[i,n,o,l,s,e.CLCM,e.CBCM,r,t]};return{k:"",c:[c,i,n,o,l,s,e.CLCM,e.CBCM,r,t,a,{b:e.IR+"::",k:""}]}}),e.registerLanguage("dust",function(e){var t="if eq ne lt lte gt gte select default math sep";return{aliases:["dst"],cI:!0,sL:"xml",c:[{cN:"template-tag",b:/\{[#\/]/,e:/\}/,i:/;/,c:[{cN:"name",b:/[a-zA-Z\.-]+/,starts:{eW:!0,r:0,c:[e.QSM]}}]},{cN:"template-variable",b:/\{/,e:/\}/,i:/;/,k:t}]}}),e.registerLanguage("ebnf",function(e){var t=e.C(/\(\*/,/\*\)/),r={cN:"attribute",b:/^[ ]*[a-zA-Z][a-zA-Z-]*([\s-]+[a-zA-Z][a-zA-Z]*)*/},a={cN:"meta",b:/\?.*\?/},i={b:/=/,e:/;/,c:[t,a,e.ASM,e.QSM]};return{i:/\S/,c:[t,r,i]}}),e.registerLanguage("elixir",function(e){var t="[a-zA-Z_][a-zA-Z0-9_]*(\\!|\\?)?",r="[a-zA-Z_]\\w*[!?=]?|[-+~]\\@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?",a="and false then defined module in return redo retry end for true self when next until do begin unless nil break not case cond alias while ensure or include use alias fn quote",i={cN:"subst",b:"#\\{",e:"}",l:t,k:a},n={cN:"string",c:[e.BE,i],v:[{b:/'/,e:/'/},{b:/"/,e:/"/}]},o={cN:"function",bK:"def defp defmacro",e:/\B\b/,c:[e.inherit(e.TM,{b:t,endsParent:!0})]},s=e.inherit(o,{cN:"class",bK:"defimpl defmodule defprotocol defrecord",e:/\bdo\b|$|;/}),l=[n,e.HCM,s,o,{cN:"symbol",b:":(?!\\s)",c:[n,{b:r}],r:0},{cN:"symbol",b:t+":",r:0},{cN:"number",b:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",r:0},{cN:"variable",b:"(\\$\\W)|((\\$|\\@\\@?)(\\w+))"},{b:"->"},{b:"("+e.RSR+")\\s*",c:[e.HCM,{cN:"regexp",i:"\\n",c:[e.BE,i],v:[{b:"/",e:"/[a-z]*"},{b:"%r\\[",e:"\\][a-z]*"}]}],r:0}];return i.c=l,{l:t,k:a,c:l}}),e.registerLanguage("elm",function(e){var t={v:[e.C("--","$"),e.C("{-","-}",{c:["self"]})]},r={cN:"type",b:"\\b[A-Z][\\w']*",r:0},a={b:"\\(",e:"\\)",i:'"',c:[{cN:"type",b:"\\b[A-Z][\\w]*(\\((\\.\\.|,|\\w+)\\))?"},t]},i={b:"{",e:"}",c:a.c};return{k:"let in if then else case of where module import exposing type alias as infix infixl infixr port effect command subscription",c:[{bK:"port effect module",e:"exposing",k:"port effect module where command subscription exposing",c:[a,t],i:"\\W\\.|;"},{b:"import",e:"$",k:"import as exposing",c:[a,t],i:"\\W\\.|;"},{b:"type",e:"$",k:"type alias",c:[r,a,i,t]},{bK:"infix infixl infixr",e:"$",c:[e.CNM,t]},{b:"port",e:"$",k:"port",c:[t]},e.QSM,e.CNM,r,e.inherit(e.TM,{b:"^[_a-z][\\w']*"}),t,{b:"->|<-"}],i:/;/}}),e.registerLanguage("ruby",function(e){var t="[a-zA-Z_]\\w*[!?=]?|[-+~]\\@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?",r={keyword:"and then defined module in return redo if BEGIN retry end for self when next until do begin unless END rescue else break undef not super class case require yield alias while ensure elsif or include attr_reader attr_writer attr_accessor",literal:"true false nil"},a={cN:"doctag",b:"@[A-Za-z]+"},i={b:"#<",e:">"},n=[e.C("#","$",{c:[a]}),e.C("^\\=begin","^\\=end",{c:[a],r:10}),e.C("^__END__","\\n$")],o={cN:"subst",b:"#\\{",e:"}",k:r},s={cN:"string",c:[e.BE,o],v:[{b:/'/,e:/'/},{b:/"/,e:/"/},{b:/`/,e:/`/},{b:"%[qQwWx]?\\(",e:"\\)"},{b:"%[qQwWx]?\\[",e:"\\]"},{b:"%[qQwWx]?{",e:"}"},{b:"%[qQwWx]?<",e:">"},{b:"%[qQwWx]?/",e:"/"},{b:"%[qQwWx]?%",e:"%"},{b:"%[qQwWx]?-",e:"-"},{b:"%[qQwWx]?\\|",e:"\\|"},{b:/\B\?(\\\d{1,3}|\\x[A-Fa-f0-9]{1,2}|\\u[A-Fa-f0-9]{4}|\\?\S)\b/},{b:/<<(-?)\w+$/,e:/^\s*\w+$/}]},l={cN:"params",b:"\\(",e:"\\)",endsParent:!0,k:r},c=[s,i,{cN:"class",bK:"class module",e:"$|;",i:/=/,c:[e.inherit(e.TM,{b:"[A-Za-z_]\\w*(::\\w+)*(\\?|\\!)?"}),{b:"<\\s*",c:[{b:"("+e.IR+"::)?"+e.IR}]}].concat(n)},{cN:"function",bK:"def",e:"$|;",c:[e.inherit(e.TM,{b:t}),l].concat(n)},{b:e.IR+"::"},{cN:"symbol",b:e.UIR+"(\\!|\\?)?:",r:0},{cN:"symbol",b:":(?!\\s)",c:[s,{b:t}],r:0},{cN:"number",b:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",r:0},{b:"(\\$\\W)|((\\$|\\@\\@?)(\\w+))"},{cN:"params",b:/\|/,e:/\|/,k:r},{b:"("+e.RSR+"|unless)\\s*",k:"unless",c:[i,{cN:"regexp",c:[e.BE,o],i:/\n/,v:[{b:"/",e:"/[a-z]*"},{b:"%r{",e:"}[a-z]*"},{b:"%r\\(",e:"\\)[a-z]*"},{b:"%r!",e:"![a-z]*"},{b:"%r\\[",e:"\\][a-z]*"}]}].concat(n),r:0}].concat(n);o.c=c,l.c=c;var d="[>?]>",p="[\\w#]+\\(\\w+\\):\\d+:\\d+>",m="(\\w+-)?\\d+\\.\\d+\\.\\d(p\\d+)?[^>]+>",u=[{b:/^\s*=>/,starts:{e:"$",c:c}},{cN:"meta",b:"^("+d+"|"+p+"|"+m+")",starts:{e:"$",c:c}}];return{aliases:["rb","gemspec","podspec","thor","irb"],k:r,i:/\/\*/,c:n.concat(u).concat(c)}}),e.registerLanguage("erb",function(e){return{sL:"xml",c:[e.C("<%#","%>"),{b:"<%[%=-]?",e:"[%-]?%>",sL:"ruby",eB:!0,eE:!0}]}}),e.registerLanguage("erlang-repl",function(e){return{k:{built_in:"spawn spawn_link self",keyword:"after and andalso|10 band begin bnot bor bsl bsr bxor case catch cond div end fun if let not of or orelse|10 query receive rem try when xor"},c:[{cN:"meta",b:"^[0-9]+> ",r:10},e.C("%","$"),{cN:"number",b:"\\b(\\d+#[a-fA-F0-9]+|\\d+(\\.\\d+)?([eE][-+]?\\d+)?)",r:0},e.ASM,e.QSM,{b:"\\?(::)?([A-Z]\\w*(::)?)+"},{b:"->"},{b:"ok"},{b:"!"},{b:"(\\b[a-z'][a-zA-Z0-9_']*:[a-z'][a-zA-Z0-9_']*)|(\\b[a-z'][a-zA-Z0-9_']*)",r:0},{b:"[A-Z][a-zA-Z0-9_']*",r:0}]}}),e.registerLanguage("erlang",function(e){var t="[a-z'][a-zA-Z0-9_']*",r="("+t+":"+t+"|"+t+")",a={keyword:"after and andalso|10 band begin bnot bor bsl bzr bxor case catch cond div end fun if let not of orelse|10 query receive rem try when xor",literal:"false true"},i=e.C("%","$"),n={cN:"number",b:"\\b(\\d+#[a-fA-F0-9]+|\\d+(\\.\\d+)?([eE][-+]?\\d+)?)",r:0},o={b:"fun\\s+"+t+"/\\d+"},s={b:r+"\\(",e:"\\)",rB:!0,r:0,c:[{b:r,r:0},{b:"\\(",e:"\\)",eW:!0,rE:!0,r:0}]},l={b:"{",e:"}",r:0},c={b:"\\b_([A-Z][A-Za-z0-9_]*)?",r:0},d={b:"[A-Z][a-zA-Z0-9_]*",r:0},p={b:"#"+e.UIR,r:0,rB:!0,c:[{b:"#"+e.UIR,r:0},{b:"{",e:"}",r:0}]},m={bK:"fun receive if try case",e:"end",k:a};m.c=[i,o,e.inherit(e.ASM,{cN:""}),m,s,e.QSM,n,l,c,d,p];var u=[i,o,m,s,e.QSM,n,l,c,d,p];s.c[1].c=u,l.c=u,p.c[1].c=u;var b={cN:"params",b:"\\(",e:"\\)",c:u};return{aliases:["erl"],k:a,i:"(",rB:!0,i:"\\(|#|//|/\\*|\\\\|:|;",c:[b,e.inherit(e.TM,{b:t})],starts:{e:";|\\.",k:a,c:u}},i,{b:"^-",e:"\\.",r:0,eE:!0,rB:!0,l:"-"+e.IR,k:"-module -record -undef -export -ifdef -ifndef -author -copyright -doc -vsn -import -include -include_lib -compile -define -else -endif -file -behaviour -behavior -spec",c:[b]},n,e.QSM,p,c,d,l,{b:/\.$/}]}}),e.registerLanguage("excel",function(e){return{aliases:["xlsx","xls"],cI:!0,l:/[a-zA-Z][\w\.]*/,k:{built_in:"ABS ACCRINT ACCRINTM ACOS ACOSH ACOT ACOTH AGGREGATE ADDRESS AMORDEGRC AMORLINC AND ARABIC AREAS ASC ASIN ASINH ATAN ATAN2 ATANH AVEDEV AVERAGE AVERAGEA AVERAGEIF AVERAGEIFS BAHTTEXT BASE BESSELI BESSELJ BESSELK BESSELY BETADIST BETA.DIST BETAINV BETA.INV BIN2DEC BIN2HEX BIN2OCT BINOMDIST BINOM.DIST BINOM.DIST.RANGE BINOM.INV BITAND BITLSHIFT BITOR BITRSHIFT BITXOR CALL CEILING CEILING.MATH CEILING.PRECISE CELL CHAR CHIDIST CHIINV CHITEST CHISQ.DIST CHISQ.DIST.RT CHISQ.INV CHISQ.INV.RT CHISQ.TEST CHOOSE CLEAN CODE COLUMN COLUMNS COMBIN COMBINA COMPLEX CONCAT CONCATENATE CONFIDENCE CONFIDENCE.NORM CONFIDENCE.T CONVERT CORREL COS COSH COT COTH COUNT COUNTA COUNTBLANK COUNTIF COUNTIFS COUPDAYBS COUPDAYS COUPDAYSNC COUPNCD COUPNUM COUPPCD COVAR COVARIANCE.P COVARIANCE.S CRITBINOM CSC CSCH CUBEKPIMEMBER CUBEMEMBER CUBEMEMBERPROPERTY CUBERANKEDMEMBER CUBESET CUBESETCOUNT CUBEVALUE CUMIPMT CUMPRINC DATE DATEDIF DATEVALUE DAVERAGE DAY DAYS DAYS360 DB DBCS DCOUNT DCOUNTA DDB DEC2BIN DEC2HEX DEC2OCT DECIMAL DEGREES DELTA DEVSQ DGET DISC DMAX DMIN DOLLAR DOLLARDE DOLLARFR DPRODUCT DSTDEV DSTDEVP DSUM DURATION DVAR DVARP EDATE EFFECT ENCODEURL EOMONTH ERF ERF.PRECISE ERFC ERFC.PRECISE ERROR.TYPE EUROCONVERT EVEN EXACT EXP EXPON.DIST EXPONDIST FACT FACTDOUBLE FALSE|0 F.DIST FDIST F.DIST.RT FILTERXML FIND FINDB F.INV F.INV.RT FINV FISHER FISHERINV FIXED FLOOR FLOOR.MATH FLOOR.PRECISE FORECAST FORECAST.ETS FORECAST.ETS.CONFINT FORECAST.ETS.SEASONALITY FORECAST.ETS.STAT FORECAST.LINEAR FORMULATEXT FREQUENCY F.TEST FTEST FV FVSCHEDULE GAMMA GAMMA.DIST GAMMADIST GAMMA.INV GAMMAINV GAMMALN GAMMALN.PRECISE GAUSS GCD GEOMEAN GESTEP GETPIVOTDATA GROWTH HARMEAN HEX2BIN HEX2DEC HEX2OCT HLOOKUP HOUR HYPERLINK HYPGEOM.DIST HYPGEOMDIST IF|0 IFERROR IFNA IFS IMABS IMAGINARY IMARGUMENT IMCONJUGATE IMCOS IMCOSH IMCOT IMCSC IMCSCH IMDIV IMEXP IMLN IMLOG10 IMLOG2 IMPOWER IMPRODUCT IMREAL IMSEC IMSECH IMSIN IMSINH IMSQRT IMSUB IMSUM IMTAN INDEX INDIRECT INFO INT INTERCEPT INTRATE IPMT IRR ISBLANK ISERR ISERROR ISEVEN ISFORMULA ISLOGICAL ISNA ISNONTEXT ISNUMBER ISODD ISREF ISTEXT ISO.CEILING ISOWEEKNUM ISPMT JIS KURT LARGE LCM LEFT LEFTB LEN LENB LINEST LN LOG LOG10 LOGEST LOGINV LOGNORM.DIST LOGNORMDIST LOGNORM.INV LOOKUP LOWER MATCH MAX MAXA MAXIFS MDETERM MDURATION MEDIAN MID MIDBs MIN MINIFS MINA MINUTE MINVERSE MIRR MMULT MOD MODE MODE.MULT MODE.SNGL MONTH MROUND MULTINOMIAL MUNIT N NA NEGBINOM.DIST NEGBINOMDIST NETWORKDAYS NETWORKDAYS.INTL NOMINAL NORM.DIST NORMDIST NORMINV NORM.INV NORM.S.DIST NORMSDIST NORM.S.INV NORMSINV NOT NOW NPER NPV NUMBERVALUE OCT2BIN OCT2DEC OCT2HEX ODD ODDFPRICE ODDFYIELD ODDLPRICE ODDLYIELD OFFSET OR PDURATION PEARSON PERCENTILE.EXC PERCENTILE.INC PERCENTILE PERCENTRANK.EXC PERCENTRANK.INC PERCENTRANK PERMUT PERMUTATIONA PHI PHONETIC PI PMT POISSON.DIST POISSON POWER PPMT PRICE PRICEDISC PRICEMAT PROB PRODUCT PROPER PV QUARTILE QUARTILE.EXC QUARTILE.INC QUOTIENT RADIANS RAND RANDBETWEEN RANK.AVG RANK.EQ RANK RATE RECEIVED REGISTER.ID REPLACE REPLACEB REPT RIGHT RIGHTB ROMAN ROUND ROUNDDOWN ROUNDUP ROW ROWS RRI RSQ RTD SEARCH SEARCHB SEC SECH SECOND SERIESSUM SHEET SHEETS SIGN SIN SINH SKEW SKEW.P SLN SLOPE SMALL SQL.REQUEST SQRT SQRTPI STANDARDIZE STDEV STDEV.P STDEV.S STDEVA STDEVP STDEVPA STEYX SUBSTITUTE SUBTOTAL SUM SUMIF SUMIFS SUMPRODUCT SUMSQ SUMX2MY2 SUMX2PY2 SUMXMY2 SWITCH SYD T TAN TANH TBILLEQ TBILLPRICE TBILLYIELD T.DIST T.DIST.2T T.DIST.RT TDIST TEXT TEXTJOIN TIME TIMEVALUE T.INV T.INV.2T TINV TODAY TRANSPOSE TREND TRIM TRIMMEAN TRUE|0 TRUNC T.TEST TTEST TYPE UNICHAR UNICODE UPPER VALUE VAR VAR.P VAR.S VARA VARP VARPA VDB VLOOKUP WEBSERVICE WEEKDAY WEEKNUM WEIBULL WEIBULL.DIST WORKDAY WORKDAY.INTL XIRR XNPV XOR YEAR YEARFRAC YIELD YIELDDISC YIELDMAT Z.TEST ZTEST"},c:[{b:/^=/,e:/[^=]/,rE:!0,i:/=/,r:10},{cN:"symbol",b:/\b[A-Z]{1,2}\d+\b/,e:/[^\d]/,eE:!0,r:0},{cN:"symbol",b:/[A-Z]{0,2}\d*:[A-Z]{0,2}\d*/,r:0},e.BE,e.QSM,{cN:"number",b:e.NR+"(%)?",r:0},e.C(/\bN\(/,/\)/,{eB:!0,eE:!0,i:/\n/})]}}),e.registerLanguage("fix",function(e){return{c:[{b:/[^\u2401\u0001]+/,e:/[\u2401\u0001]/,eE:!0,rB:!0,rE:!1,c:[{b:/([^\u2401\u0001=]+)/,e:/=([^\u2401\u0001=]+)/,rE:!0,rB:!1,cN:"attr"},{b:/=/,e:/([\u2401\u0001])/,eE:!0,eB:!0,cN:"string"}]}],cI:!0}}),e.registerLanguage("flix",function(e){var t={cN:"string",b:/'(.|\\[xXuU][a-zA-Z0-9]+)'/},r={cN:"string",v:[{b:'"',e:'"'}]},a={cN:"title",b:/[^0-9\n\t "'(),.`{}\[\]:;][^\n\t "'(),.`{}\[\]:;]+|[^0-9\n\t "'(),.`{}\[\]:;=]/},i={cN:"function",bK:"def",e:/[:={\[(\n;]/,eE:!0,c:[a]};return{k:{literal:"true false",keyword:"case class def else enum if impl import in lat rel index let match namespace switch type yield with"},c:[e.CLCM,e.CBCM,t,r,i,e.CNM]}}),e.registerLanguage("fortran",function(e){var t={cN:"params",b:"\\(",e:"\\)"},r={literal:".False. .True.",keyword:"kind do while private call intrinsic where elsewhere type endtype endmodule endselect endinterface end enddo endif if forall endforall only contains default return stop then public subroutine|10 function program .and. .or. .not. .le. .eq. .ge. .gt. .lt. goto save else use module select case access blank direct exist file fmt form formatted iostat name named nextrec number opened rec recl sequential status unformatted unit continue format pause cycle exit c_null_char c_alert c_backspace c_form_feed flush wait decimal round iomsg synchronous nopass non_overridable pass protected volatile abstract extends import non_intrinsic value deferred generic final enumerator class associate bind enum c_int c_short c_long c_long_long c_signed_char c_size_t c_int8_t c_int16_t c_int32_t c_int64_t c_int_least8_t c_int_least16_t c_int_least32_t c_int_least64_t c_int_fast8_t c_int_fast16_t c_int_fast32_t c_int_fast64_t c_intmax_t C_intptr_t c_float c_double c_long_double c_float_complex c_double_complex c_long_double_complex c_bool c_char c_null_ptr c_null_funptr c_new_line c_carriage_return c_horizontal_tab c_vertical_tab iso_c_binding c_loc c_funloc c_associated c_f_pointer c_ptr c_funptr iso_fortran_env character_storage_size error_unit file_storage_size input_unit iostat_end iostat_eor numeric_storage_size output_unit c_f_procpointer ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode newunit contiguous recursive pad position action delim readwrite eor advance nml interface procedure namelist include sequence elemental pure integer real character complex logical dimension allocatable|10 parameter external implicit|10 none double precision assign intent optional pointer target in out common equivalence data",built_in:"alog alog10 amax0 amax1 amin0 amin1 amod cabs ccos cexp clog csin csqrt dabs dacos dasin datan datan2 dcos dcosh ddim dexp dint dlog dlog10 dmax1 dmin1 dmod dnint dsign dsin dsinh dsqrt dtan dtanh float iabs idim idint idnint ifix isign max0 max1 min0 min1 sngl algama cdabs cdcos cdexp cdlog cdsin cdsqrt cqabs cqcos cqexp cqlog cqsin cqsqrt dcmplx dconjg derf derfc dfloat dgamma dimag dlgama iqint qabs qacos qasin qatan qatan2 qcmplx qconjg qcos qcosh qdim qerf qerfc qexp qgamma qimag qlgama qlog qlog10 qmax1 qmin1 qmod qnint qsign qsin qsinh qsqrt qtan qtanh abs acos aimag aint anint asin atan atan2 char cmplx conjg cos cosh exp ichar index int log log10 max min nint sign sin sinh sqrt tan tanh print write dim lge lgt lle llt mod nullify allocate deallocate adjustl adjustr all allocated any associated bit_size btest ceiling count cshift date_and_time digits dot_product eoshift epsilon exponent floor fraction huge iand ibclr ibits ibset ieor ior ishft ishftc lbound len_trim matmul maxexponent maxloc maxval merge minexponent minloc minval modulo mvbits nearest pack present product radix random_number random_seed range repeat reshape rrspacing scale scan selected_int_kind selected_real_kind set_exponent shape size spacing spread sum system_clock tiny transpose trim ubound unpack verify achar iachar transfer dble entry dprod cpu_time command_argument_count get_command get_command_argument get_environment_variable is_iostat_end ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode is_iostat_eor move_alloc new_line selected_char_kind same_type_as extends_type_ofacosh asinh atanh bessel_j0 bessel_j1 bessel_jn bessel_y0 bessel_y1 bessel_yn erf erfc erfc_scaled gamma log_gamma hypot norm2 atomic_define atomic_ref execute_command_line leadz trailz storage_size merge_bits bge bgt ble blt dshiftl dshiftr findloc iall iany iparity image_index lcobound ucobound maskl maskr num_images parity popcnt poppar shifta shiftl shiftr this_image"};return{cI:!0,aliases:["f90","f95"],k:r,i:/\/\*/,c:[e.inherit(e.ASM,{cN:"string",r:0}),e.inherit(e.QSM,{cN:"string",r:0}),{cN:"function",bK:"subroutine function program",i:"[${=\\n]",c:[e.UTM,t]},e.C("!","$",{r:0}),{cN:"number",b:"(?=\\b|\\+|\\-|\\.)(?=\\.\\d|\\d)(?:\\d+)?(?:\\.?\\d*)(?:[de][+-]?\\d+)?\\b\\.?",r:0}]}}),e.registerLanguage("fsharp",function(e){var t={b:"<",e:">",c:[e.inherit(e.TM,{b:/'[a-zA-Z0-9_]+/})]};return{aliases:["fs"],k:"abstract and as assert base begin class default delegate do done downcast downto elif else end exception extern false finally for fun function global if in inherit inline interface internal lazy let match member module mutable namespace new null of open or override private public rec return sig static struct then to true try type upcast use val void when while with yield",i:/\/\*/,c:[{cN:"keyword",b:/\b(yield|return|let|do)!/},{cN:"string",b:'@"',e:'"',c:[{b:'""'}]},{cN:"string",b:'"""',e:'"""'},e.C("\\(\\*","\\*\\)"),{cN:"class",bK:"type",e:"\\(|=|$",eE:!0,c:[e.UTM,t]},{cN:"meta",b:"\\[<",e:">\\]",r:10},{cN:"symbol",b:"\\B('[A-Za-z])\\b",c:[e.BE]},e.CLCM,e.inherit(e.QSM,{i:null}),e.CNM]}}),e.registerLanguage("gams",function(e){var t={keyword:"abort acronym acronyms alias all and assign binary card diag display else eq file files for free ge gt if integer le loop lt maximizing minimizing model models ne negative no not option options or ord positive prod put putpage puttl repeat sameas semicont semiint smax smin solve sos1 sos2 sum system table then until using while xor yes",literal:"eps inf na","built-in":"abs arccos arcsin arctan arctan2 Beta betaReg binomial ceil centropy cos cosh cvPower div div0 eDist entropy errorf execSeed exp fact floor frac gamma gammaReg log logBeta logGamma log10 log2 mapVal max min mod ncpCM ncpF ncpVUpow ncpVUsin normal pi poly power randBinomial randLinear randTriangle round rPower sigmoid sign signPower sin sinh slexp sllog10 slrec sqexp sqlog10 sqr sqrec sqrt tan tanh trunc uniform uniformInt vcPower bool_and bool_eqv bool_imp bool_not bool_or bool_xor ifThen rel_eq rel_ge rel_gt rel_le rel_lt rel_ne gday gdow ghour gleap gmillisec gminute gmonth gsecond gyear jdate jnow jstart jtime errorLevel execError gamsRelease gamsVersion handleCollect handleDelete handleStatus handleSubmit heapFree heapLimit heapSize jobHandle jobKill jobStatus jobTerminate licenseLevel licenseStatus maxExecError sleep timeClose timeComp timeElapsed timeExec timeStart"},r={cN:"params",b:/\(/,e:/\)/,eB:!0,eE:!0},a={cN:"symbol",v:[{b:/\=[lgenxc]=/},{b:/\$/}]},i={cN:"comment",v:[{b:"'",e:"'"},{b:'"',e:'"'}],i:"\\n",c:[e.BE]},n={b:"/",e:"/",k:t,c:[i,e.CLCM,e.CBCM,e.QSM,e.ASM,e.CNM]},o={b:/[a-z][a-z0-9_]*(\([a-z0-9_, ]*\))?[ \t]+/,eB:!0,e:"$",eW:!0,c:[i,n,{cN:"comment",b:/([ ]*[a-z0-9&#*=?@>\\<:\-,()$\[\]_.{}!+%^]+)+/,r:0}]};return{aliases:["gms"],cI:!0,k:t,c:[e.C(/^\$ontext/,/^\$offtext/),{cN:"meta",b:"^\\$[a-z0-9]+",e:"$",rB:!0,c:[{cN:"meta-keyword",b:"^\\$[a-z0-9]+"}]},e.C("^\\*","$"),e.CLCM,e.CBCM,e.QSM,e.ASM,{bK:"set sets parameter parameters variable variables scalar scalars equation equations",e:";",c:[e.C("^\\*","$"),e.CLCM,e.CBCM,e.QSM,e.ASM,n,o]},{bK:"table",e:";",rB:!0,c:[{bK:"table",e:"$",c:[o]},e.C("^\\*","$"),e.CLCM,e.CBCM,e.QSM,e.ASM,e.CNM]},{cN:"function",b:/^[a-z][a-z0-9_,\-+' ()$]+\.{2}/,rB:!0,c:[{cN:"title",b:/^[a-z0-9_]+/},r,a]},e.CNM,a]}}),e.registerLanguage("gauss",function(e){var t={keyword:"and bool break call callexe checkinterrupt clear clearg closeall cls comlog compile continue create debug declare delete disable dlibrary dllcall do dos ed edit else elseif enable end endfor endif endp endo errorlog errorlogat expr external fn for format goto gosub graph if keyword let lib library line load loadarray loadexe loadf loadk loadm loadp loads loadx local locate loopnextindex lprint lpwidth lshow matrix msym ndpclex new not open or output outwidth plot plotsym pop prcsn print printdos proc push retp return rndcon rndmod rndmult rndseed run save saveall screen scroll setarray show sparse stop string struct system trace trap threadfor threadendfor threadbegin threadjoin threadstat threadend until use while winprint",built_in:"abs acf aconcat aeye amax amean AmericanBinomCall AmericanBinomCall_Greeks AmericanBinomCall_ImpVol AmericanBinomPut AmericanBinomPut_Greeks AmericanBinomPut_ImpVol AmericanBSCall AmericanBSCall_Greeks AmericanBSCall_ImpVol AmericanBSPut AmericanBSPut_Greeks AmericanBSPut_ImpVol amin amult annotationGetDefaults annotationSetBkd annotationSetFont annotationSetLineColor annotationSetLineStyle annotationSetLineThickness annualTradingDays arccos arcsin areshape arrayalloc arrayindex arrayinit arraytomat asciiload asclabel astd astds asum atan atan2 atranspose axmargin balance band bandchol bandcholsol bandltsol bandrv bandsolpd bar base10 begwind besselj bessely beta box boxcox cdfBeta cdfBetaInv cdfBinomial cdfBinomialInv cdfBvn cdfBvn2 cdfBvn2e cdfCauchy cdfCauchyInv cdfChic cdfChii cdfChinc cdfChincInv cdfExp cdfExpInv cdfFc cdfFnc cdfFncInv cdfGam cdfGenPareto cdfHyperGeo cdfLaplace cdfLaplaceInv cdfLogistic cdfLogisticInv cdfmControlCreate cdfMvn cdfMvn2e cdfMvnce cdfMvne cdfMvt2e cdfMvtce cdfMvte cdfN cdfN2 cdfNc cdfNegBinomial cdfNegBinomialInv cdfNi cdfPoisson cdfPoissonInv cdfRayleigh cdfRayleighInv cdfTc cdfTci cdfTnc cdfTvn cdfWeibull cdfWeibullInv cdir ceil ChangeDir chdir chiBarSquare chol choldn cholsol cholup chrs close code cols colsf combinate combinated complex con cond conj cons ConScore contour conv convertsatostr convertstrtosa corrm corrms corrvc corrx corrxs cos cosh counts countwts crossprd crout croutp csrcol csrlin csvReadM csvReadSA cumprodc cumsumc curve cvtos datacreate datacreatecomplex datalist dataload dataloop dataopen datasave date datestr datestring datestrymd dayinyr dayofweek dbAddDatabase dbClose dbCommit dbCreateQuery dbExecQuery dbGetConnectOptions dbGetDatabaseName dbGetDriverName dbGetDrivers dbGetHostName dbGetLastErrorNum dbGetLastErrorText dbGetNumericalPrecPolicy dbGetPassword dbGetPort dbGetTableHeaders dbGetTables dbGetUserName dbHasFeature dbIsDriverAvailable dbIsOpen dbIsOpenError dbOpen dbQueryBindValue dbQueryClear dbQueryCols dbQueryExecPrepared dbQueryFetchAllM dbQueryFetchAllSA dbQueryFetchOneM dbQueryFetchOneSA dbQueryFinish dbQueryGetBoundValue dbQueryGetBoundValues dbQueryGetField dbQueryGetLastErrorNum dbQueryGetLastErrorText dbQueryGetLastInsertID dbQueryGetLastQuery dbQueryGetPosition dbQueryIsActive dbQueryIsForwardOnly dbQueryIsNull dbQueryIsSelect dbQueryIsValid dbQueryPrepare dbQueryRows dbQuerySeek dbQuerySeekFirst dbQuerySeekLast dbQuerySeekNext dbQuerySeekPrevious dbQuerySetForwardOnly dbRemoveDatabase dbRollback dbSetConnectOptions dbSetDatabaseName dbSetHostName dbSetNumericalPrecPolicy dbSetPort dbSetUserName dbTransaction DeleteFile delif delrows denseToSp denseToSpRE denToZero design det detl dfft dffti diag diagrv digamma doswin DOSWinCloseall DOSWinOpen dotfeq dotfeqmt dotfge dotfgemt dotfgt dotfgtmt dotfle dotflemt dotflt dotfltmt dotfne dotfnemt draw drop dsCreate dstat dstatmt dstatmtControlCreate dtdate dtday dttime dttodtv dttostr dttoutc dtvnormal dtvtodt dtvtoutc dummy dummybr dummydn eig eigh eighv eigv elapsedTradingDays endwind envget eof eqSolve eqSolvemt eqSolvemtControlCreate eqSolvemtOutCreate eqSolveset erf erfc erfccplx erfcplx error etdays ethsec etstr EuropeanBinomCall EuropeanBinomCall_Greeks EuropeanBinomCall_ImpVol EuropeanBinomPut EuropeanBinomPut_Greeks EuropeanBinomPut_ImpVol EuropeanBSCall EuropeanBSCall_Greeks EuropeanBSCall_ImpVol EuropeanBSPut EuropeanBSPut_Greeks EuropeanBSPut_ImpVol exctsmpl exec execbg exp extern eye fcheckerr fclearerr feq feqmt fflush fft ffti fftm fftmi fftn fge fgemt fgets fgetsa fgetsat fgetst fgt fgtmt fileinfo filesa fle flemt floor flt fltmt fmod fne fnemt fonts fopen formatcv formatnv fputs fputst fseek fstrerror ftell ftocv ftos ftostrC gamma gammacplx gammaii gausset gdaAppend gdaCreate gdaDStat gdaDStatMat gdaGetIndex gdaGetName gdaGetNames gdaGetOrders gdaGetType gdaGetTypes gdaGetVarInfo gdaIsCplx gdaLoad gdaPack gdaRead gdaReadByIndex gdaReadSome gdaReadSparse gdaReadStruct gdaReportVarInfo gdaSave gdaUpdate gdaUpdateAndPack gdaVars gdaWrite gdaWrite32 gdaWriteSome getarray getdims getf getGAUSShome getmatrix getmatrix4D getname getnamef getNextTradingDay getNextWeekDay getnr getorders getpath getPreviousTradingDay getPreviousWeekDay getRow getscalar3D getscalar4D getTrRow getwind glm gradcplx gradMT gradMTm gradMTT gradMTTm gradp graphprt graphset hasimag header headermt hess hessMT hessMTg hessMTgw hessMTm hessMTmw hessMTT hessMTTg hessMTTgw hessMTTm hessMTw hessp hist histf histp hsec imag indcv indexcat indices indices2 indicesf indicesfn indnv indsav integrate1d integrateControlCreate intgrat2 intgrat3 inthp1 inthp2 inthp3 inthp4 inthpControlCreate intquad1 intquad2 intquad3 intrleav intrleavsa intrsect intsimp inv invpd invswp iscplx iscplxf isden isinfnanmiss ismiss key keyav keyw lag lag1 lagn lapEighb lapEighi lapEighvb lapEighvi lapgEig lapgEigh lapgEighv lapgEigv lapgSchur lapgSvdcst lapgSvds lapgSvdst lapSvdcusv lapSvds lapSvdusv ldlp ldlsol linSolve listwise ln lncdfbvn lncdfbvn2 lncdfmvn lncdfn lncdfn2 lncdfnc lnfact lngammacplx lnpdfmvn lnpdfmvt lnpdfn lnpdft loadd loadstruct loadwind loess loessmt loessmtControlCreate log loglog logx logy lower lowmat lowmat1 ltrisol lu lusol machEpsilon make makevars makewind margin matalloc matinit mattoarray maxbytes maxc maxindc maxv maxvec mbesselei mbesselei0 mbesselei1 mbesseli mbesseli0 mbesseli1 meanc median mergeby mergevar minc minindc minv miss missex missrv moment momentd movingave movingaveExpwgt movingaveWgt nextindex nextn nextnevn nextwind ntos null null1 numCombinations ols olsmt olsmtControlCreate olsqr olsqr2 olsqrmt ones optn optnevn orth outtyp pacf packedToSp packr parse pause pdfCauchy pdfChi pdfExp pdfGenPareto pdfHyperGeo pdfLaplace pdfLogistic pdfn pdfPoisson pdfRayleigh pdfWeibull pi pinv pinvmt plotAddArrow plotAddBar plotAddBox plotAddHist plotAddHistF plotAddHistP plotAddPolar plotAddScatter plotAddShape plotAddTextbox plotAddTS plotAddXY plotArea plotBar plotBox plotClearLayout plotContour plotCustomLayout plotGetDefaults plotHist plotHistF plotHistP plotLayout plotLogLog plotLogX plotLogY plotOpenWindow plotPolar plotSave plotScatter plotSetAxesPen plotSetBar plotSetBarFill plotSetBarStacked plotSetBkdColor plotSetFill plotSetGrid plotSetLegend plotSetLineColor plotSetLineStyle plotSetLineSymbol plotSetLineThickness plotSetNewWindow plotSetTitle plotSetWhichYAxis plotSetXAxisShow plotSetXLabel plotSetXRange plotSetXTicInterval plotSetXTicLabel plotSetYAxisShow plotSetYLabel plotSetYRange plotSetZAxisShow plotSetZLabel plotSurface plotTS plotXY polar polychar polyeval polygamma polyint polymake polymat polymroot polymult polyroot pqgwin previousindex princomp printfm printfmt prodc psi putarray putf putvals pvCreate pvGetIndex pvGetParNames pvGetParVector pvLength pvList pvPack pvPacki pvPackm pvPackmi pvPacks pvPacksi pvPacksm pvPacksmi pvPutParVector pvTest pvUnpack QNewton QNewtonmt QNewtonmtControlCreate QNewtonmtOutCreate QNewtonSet QProg QProgmt QProgmtInCreate qqr qqre qqrep qr qre qrep qrsol qrtsol qtyr qtyre qtyrep quantile quantiled qyr qyre qyrep qz rank rankindx readr real reclassify reclassifyCuts recode recserar recsercp recserrc rerun rescale reshape rets rev rfft rffti rfftip rfftn rfftnp rfftp rndBernoulli rndBeta rndBinomial rndCauchy rndChiSquare rndCon rndCreateState rndExp rndGamma rndGeo rndGumbel rndHyperGeo rndi rndKMbeta rndKMgam rndKMi rndKMn rndKMnb rndKMp rndKMu rndKMvm rndLaplace rndLCbeta rndLCgam rndLCi rndLCn rndLCnb rndLCp rndLCu rndLCvm rndLogNorm rndMTu rndMVn rndMVt rndn rndnb rndNegBinomial rndp rndPoisson rndRayleigh rndStateSkip rndu rndvm rndWeibull rndWishart rotater round rows rowsf rref sampleData satostrC saved saveStruct savewind scale scale3d scalerr scalinfnanmiss scalmiss schtoc schur searchsourcepath seekr select selif seqa seqm setdif setdifsa setvars setvwrmode setwind shell shiftr sin singleindex sinh sleep solpd sortc sortcc sortd sorthc sorthcc sortind sortindc sortmc sortr sortrc spBiconjGradSol spChol spConjGradSol spCreate spDenseSubmat spDiagRvMat spEigv spEye spLDL spline spLU spNumNZE spOnes spreadSheetReadM spreadSheetReadSA spreadSheetWrite spScale spSubmat spToDense spTrTDense spTScalar spZeros sqpSolve sqpSolveMT sqpSolveMTControlCreate sqpSolveMTlagrangeCreate sqpSolveMToutCreate sqpSolveSet sqrt statements stdc stdsc stocv stof strcombine strindx strlen strput strrindx strsect strsplit strsplitPad strtodt strtof strtofcplx strtriml strtrimr strtrunc strtruncl strtruncpad strtruncr submat subscat substute subvec sumc sumr surface svd svd1 svd2 svdcusv svds svdusv sysstate tab tan tanh tempname threadBegin threadEnd threadEndFor threadFor threadJoin threadStat time timedt timestr timeutc title tkf2eps tkf2ps tocart todaydt toeplitz token topolar trapchk trigamma trimr trunc type typecv typef union unionsa uniqindx uniqindxsa unique uniquesa upmat upmat1 upper utctodt utctodtv utrisol vals varCovMS varCovXS varget vargetl varmall varmares varput varputl vartypef vcm vcms vcx vcxs vec vech vecr vector vget view viewxyz vlist vnamecv volume vput vread vtypecv wait waitc walkindex where window writer xlabel xlsGetSheetCount xlsGetSheetSize xlsGetSheetTypes xlsMakeRange xlsReadM xlsReadSA xlsWrite xlsWriteM xlsWriteSA xpnd xtics xy xyz ylabel ytics zeros zeta zlabel ztics cdfEmpirical dot h5create h5open h5read h5readAttribute h5write h5writeAttribute ldl plotAddErrorBar plotAddSurface plotCDFEmpirical plotSetColormap plotSetContourLabels plotSetLegendFont plotSetTextInterpreter plotSetXTicCount plotSetYTicCount plotSetZLevels powerm strjoin strtrim sylvester",literal:"DB_AFTER_LAST_ROW DB_ALL_TABLES DB_BATCH_OPERATIONS DB_BEFORE_FIRST_ROW DB_BLOB DB_EVENT_NOTIFICATIONS DB_FINISH_QUERY DB_HIGH_PRECISION DB_LAST_INSERT_ID DB_LOW_PRECISION_DOUBLE DB_LOW_PRECISION_INT32 DB_LOW_PRECISION_INT64 DB_LOW_PRECISION_NUMBERS DB_MULTIPLE_RESULT_SETS DB_NAMED_PLACEHOLDERS DB_POSITIONAL_PLACEHOLDERS DB_PREPARED_QUERIES DB_QUERY_SIZE DB_SIMPLE_LOCKING DB_SYSTEM_TABLES DB_TABLES DB_TRANSACTIONS DB_UNICODE DB_VIEWS"},r={cN:"meta",b:"#",e:"$",k:{"meta-keyword":"define definecs|10 undef ifdef ifndef iflight ifdllcall ifmac ifos2win ifunix else endif lineson linesoff srcfile srcline"},c:[{b:/\\\n/,r:0},{bK:"include",e:"$",k:{"meta-keyword":"include"},c:[{cN:"meta-string",b:'"',e:'"',i:"\\n"}]},e.CLCM,e.CBCM]},a=e.UIR+"\\s*\\(?",i=[{cN:"params",b:/\(/,e:/\)/,k:t,r:0,c:[e.CNM,e.CLCM,e.CBCM]}];return{aliases:["gss"],cI:!0,k:t,i:"(\\{[%#]|[%#]\\})",c:[e.CNM,e.CLCM,e.CBCM,e.C("@","@"),r,{cN:"string",b:'"',e:'"',c:[e.BE]},{cN:"function",bK:"proc keyword",e:";",eE:!0,k:t,c:[{b:a,rB:!0,c:[e.UTM],r:0},e.CNM,e.CLCM,e.CBCM,r].concat(i)},{cN:"function",bK:"fn",e:";",eE:!0,k:t,c:[{b:a+e.IR+"\\)?\\s*\\=\\s*",rB:!0,c:[e.UTM],r:0},e.CNM,e.CLCM,e.CBCM].concat(i)},{cN:"function",b:"\\bexternal (proc|keyword|fn)\\s+",e:";",eE:!0,k:t,c:[{b:a,rB:!0,c:[e.UTM],r:0},e.CLCM,e.CBCM]},{cN:"function",b:"\\bexternal (matrix|string|array|sparse matrix|struct "+e.IR+")\\s+",e:";",eE:!0,k:t,c:[e.CLCM,e.CBCM]}]}}),e.registerLanguage("gcode",function(e){var t="[A-Z_][A-Z0-9_.]*",r="\\%",a="IF DO WHILE ENDWHILE CALL ENDIF SUB ENDSUB GOTO REPEAT ENDREPEAT EQ LT GT NE GE LE OR XOR",i={cN:"meta",b:"([O])([0-9]+)"},n=[e.CLCM,e.CBCM,e.C(/\(/,/\)/),e.inherit(e.CNM,{b:"([-+]?([0-9]*\\.?[0-9]+\\.?))|"+e.CNR}),e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null}),{cN:"name",b:"([G])([0-9]+\\.?[0-9]?)"},{cN:"name",b:"([M])([0-9]+\\.?[0-9]?)"},{cN:"attr",b:"(VC|VS|#)",e:"(\\d+)"},{cN:"attr",b:"(VZOFX|VZOFY|VZOFZ)"},{cN:"built_in",b:"(ATAN|ABS|ACOS|ASIN|SIN|COS|EXP|FIX|FUP|ROUND|LN|TAN)(\\[)",e:"([-+]?([0-9]*\\.?[0-9]+\\.?))(\\])"},{cN:"symbol",v:[{b:"N",e:"\\d+",i:"\\W"}]}];return{aliases:["nc"],cI:!0,l:t,k:a,c:[{cN:"meta",b:r},i].concat(n)}}),e.registerLanguage("gherkin",function(e){return{aliases:["feature"],k:"Feature Background Ability Business Need Scenario Scenarios Scenario Outline Scenario Template Examples Given And Then But When",c:[{cN:"symbol",b:"\\*",r:0},{cN:"meta",b:"@[^@\\s]+"},{b:"\\|",e:"\\|\\w*$",c:[{cN:"string",b:"[^|]+"}]},{cN:"variable",b:"<",e:">"},e.HCM,{cN:"string",b:'"""',e:'"""'},e.QSM]}}),e.registerLanguage("glsl",function(e){return{k:{keyword:"break continue discard do else for if return while switch case default attribute binding buffer ccw centroid centroid varying coherent column_major const cw depth_any depth_greater depth_less depth_unchanged early_fragment_tests equal_spacing flat fractional_even_spacing fractional_odd_spacing highp in index inout invariant invocations isolines layout line_strip lines lines_adjacency local_size_x local_size_y local_size_z location lowp max_vertices mediump noperspective offset origin_upper_left out packed patch pixel_center_integer point_mode points precise precision quads r11f_g11f_b10f r16 r16_snorm r16f r16i r16ui r32f r32i r32ui r8 r8_snorm r8i r8ui readonly restrict rg16 rg16_snorm rg16f rg16i rg16ui rg32f rg32i rg32ui rg8 rg8_snorm rg8i rg8ui rgb10_a2 rgb10_a2ui rgba16 rgba16_snorm rgba16f rgba16i rgba16ui rgba32f rgba32i rgba32ui rgba8 rgba8_snorm rgba8i rgba8ui row_major sample shared smooth std140 std430 stream triangle_strip triangles triangles_adjacency uniform varying vertices volatile writeonly", -type:"atomic_uint bool bvec2 bvec3 bvec4 dmat2 dmat2x2 dmat2x3 dmat2x4 dmat3 dmat3x2 dmat3x3 dmat3x4 dmat4 dmat4x2 dmat4x3 dmat4x4 double dvec2 dvec3 dvec4 float iimage1D iimage1DArray iimage2D iimage2DArray iimage2DMS iimage2DMSArray iimage2DRect iimage3D iimageBufferiimageCube iimageCubeArray image1D image1DArray image2D image2DArray image2DMS image2DMSArray image2DRect image3D imageBuffer imageCube imageCubeArray int isampler1D isampler1DArray isampler2D isampler2DArray isampler2DMS isampler2DMSArray isampler2DRect isampler3D isamplerBuffer isamplerCube isamplerCubeArray ivec2 ivec3 ivec4 mat2 mat2x2 mat2x3 mat2x4 mat3 mat3x2 mat3x3 mat3x4 mat4 mat4x2 mat4x3 mat4x4 sampler1D sampler1DArray sampler1DArrayShadow sampler1DShadow sampler2D sampler2DArray sampler2DArrayShadow sampler2DMS sampler2DMSArray sampler2DRect sampler2DRectShadow sampler2DShadow sampler3D samplerBuffer samplerCube samplerCubeArray samplerCubeArrayShadow samplerCubeShadow image1D uimage1DArray uimage2D uimage2DArray uimage2DMS uimage2DMSArray uimage2DRect uimage3D uimageBuffer uimageCube uimageCubeArray uint usampler1D usampler1DArray usampler2D usampler2DArray usampler2DMS usampler2DMSArray usampler2DRect usampler3D samplerBuffer usamplerCube usamplerCubeArray uvec2 uvec3 uvec4 vec2 vec3 vec4 void",built_in:"gl_MaxAtomicCounterBindings gl_MaxAtomicCounterBufferSize gl_MaxClipDistances gl_MaxClipPlanes gl_MaxCombinedAtomicCounterBuffers gl_MaxCombinedAtomicCounters gl_MaxCombinedImageUniforms gl_MaxCombinedImageUnitsAndFragmentOutputs gl_MaxCombinedTextureImageUnits gl_MaxComputeAtomicCounterBuffers gl_MaxComputeAtomicCounters gl_MaxComputeImageUniforms gl_MaxComputeTextureImageUnits gl_MaxComputeUniformComponents gl_MaxComputeWorkGroupCount gl_MaxComputeWorkGroupSize gl_MaxDrawBuffers gl_MaxFragmentAtomicCounterBuffers gl_MaxFragmentAtomicCounters gl_MaxFragmentImageUniforms gl_MaxFragmentInputComponents gl_MaxFragmentInputVectors gl_MaxFragmentUniformComponents gl_MaxFragmentUniformVectors gl_MaxGeometryAtomicCounterBuffers gl_MaxGeometryAtomicCounters gl_MaxGeometryImageUniforms gl_MaxGeometryInputComponents gl_MaxGeometryOutputComponents gl_MaxGeometryOutputVertices gl_MaxGeometryTextureImageUnits gl_MaxGeometryTotalOutputComponents gl_MaxGeometryUniformComponents gl_MaxGeometryVaryingComponents gl_MaxImageSamples gl_MaxImageUnits gl_MaxLights gl_MaxPatchVertices gl_MaxProgramTexelOffset gl_MaxTessControlAtomicCounterBuffers gl_MaxTessControlAtomicCounters gl_MaxTessControlImageUniforms gl_MaxTessControlInputComponents gl_MaxTessControlOutputComponents gl_MaxTessControlTextureImageUnits gl_MaxTessControlTotalOutputComponents gl_MaxTessControlUniformComponents gl_MaxTessEvaluationAtomicCounterBuffers gl_MaxTessEvaluationAtomicCounters gl_MaxTessEvaluationImageUniforms gl_MaxTessEvaluationInputComponents gl_MaxTessEvaluationOutputComponents gl_MaxTessEvaluationTextureImageUnits gl_MaxTessEvaluationUniformComponents gl_MaxTessGenLevel gl_MaxTessPatchComponents gl_MaxTextureCoords gl_MaxTextureImageUnits gl_MaxTextureUnits gl_MaxVaryingComponents gl_MaxVaryingFloats gl_MaxVaryingVectors gl_MaxVertexAtomicCounterBuffers gl_MaxVertexAtomicCounters gl_MaxVertexAttribs gl_MaxVertexImageUniforms gl_MaxVertexOutputComponents gl_MaxVertexOutputVectors gl_MaxVertexTextureImageUnits gl_MaxVertexUniformComponents gl_MaxVertexUniformVectors gl_MaxViewports gl_MinProgramTexelOffset gl_BackColor gl_BackLightModelProduct gl_BackLightProduct gl_BackMaterial gl_BackSecondaryColor gl_ClipDistance gl_ClipPlane gl_ClipVertex gl_Color gl_DepthRange gl_EyePlaneQ gl_EyePlaneR gl_EyePlaneS gl_EyePlaneT gl_Fog gl_FogCoord gl_FogFragCoord gl_FragColor gl_FragCoord gl_FragData gl_FragDepth gl_FrontColor gl_FrontFacing gl_FrontLightModelProduct gl_FrontLightProduct gl_FrontMaterial gl_FrontSecondaryColor gl_GlobalInvocationID gl_InstanceID gl_InvocationID gl_Layer gl_LightModel gl_LightSource gl_LocalInvocationID gl_LocalInvocationIndex gl_ModelViewMatrix gl_ModelViewMatrixInverse gl_ModelViewMatrixInverseTranspose gl_ModelViewMatrixTranspose gl_ModelViewProjectionMatrix gl_ModelViewProjectionMatrixInverse gl_ModelViewProjectionMatrixInverseTranspose gl_ModelViewProjectionMatrixTranspose gl_MultiTexCoord0 gl_MultiTexCoord1 gl_MultiTexCoord2 gl_MultiTexCoord3 gl_MultiTexCoord4 gl_MultiTexCoord5 gl_MultiTexCoord6 gl_MultiTexCoord7 gl_Normal gl_NormalMatrix gl_NormalScale gl_NumSamples gl_NumWorkGroups gl_ObjectPlaneQ gl_ObjectPlaneR gl_ObjectPlaneS gl_ObjectPlaneT gl_PatchVerticesIn gl_Point gl_PointCoord gl_PointSize gl_Position gl_PrimitiveID gl_PrimitiveIDIn gl_ProjectionMatrix gl_ProjectionMatrixInverse gl_ProjectionMatrixInverseTranspose gl_ProjectionMatrixTranspose gl_SampleID gl_SampleMask gl_SampleMaskIn gl_SamplePosition gl_SecondaryColor gl_TessCoord gl_TessLevelInner gl_TessLevelOuter gl_TexCoord gl_TextureEnvColor gl_TextureMatrix gl_TextureMatrixInverse gl_TextureMatrixInverseTranspose gl_TextureMatrixTranspose gl_Vertex gl_VertexID gl_ViewportIndex gl_WorkGroupID gl_WorkGroupSize gl_in gl_out EmitStreamVertex EmitVertex EndPrimitive EndStreamPrimitive abs acos acosh all any asin asinh atan atanh atomicAdd atomicAnd atomicCompSwap atomicCounter atomicCounterDecrement atomicCounterIncrement atomicExchange atomicMax atomicMin atomicOr atomicXor barrier bitCount bitfieldExtract bitfieldInsert bitfieldReverse ceil clamp cos cosh cross dFdx dFdy degrees determinant distance dot equal exp exp2 faceforward findLSB findMSB floatBitsToInt floatBitsToUint floor fma fract frexp ftransform fwidth greaterThan greaterThanEqual groupMemoryBarrier imageAtomicAdd imageAtomicAnd imageAtomicCompSwap imageAtomicExchange imageAtomicMax imageAtomicMin imageAtomicOr imageAtomicXor imageLoad imageSize imageStore imulExtended intBitsToFloat interpolateAtCentroid interpolateAtOffset interpolateAtSample inverse inversesqrt isinf isnan ldexp length lessThan lessThanEqual log log2 matrixCompMult max memoryBarrier memoryBarrierAtomicCounter memoryBarrierBuffer memoryBarrierImage memoryBarrierShared min mix mod modf noise1 noise2 noise3 noise4 normalize not notEqual outerProduct packDouble2x32 packHalf2x16 packSnorm2x16 packSnorm4x8 packUnorm2x16 packUnorm4x8 pow radians reflect refract round roundEven shadow1D shadow1DLod shadow1DProj shadow1DProjLod shadow2D shadow2DLod shadow2DProj shadow2DProjLod sign sin sinh smoothstep sqrt step tan tanh texelFetch texelFetchOffset texture texture1D texture1DLod texture1DProj texture1DProjLod texture2D texture2DLod texture2DProj texture2DProjLod texture3D texture3DLod texture3DProj texture3DProjLod textureCube textureCubeLod textureGather textureGatherOffset textureGatherOffsets textureGrad textureGradOffset textureLod textureLodOffset textureOffset textureProj textureProjGrad textureProjGradOffset textureProjLod textureProjLodOffset textureProjOffset textureQueryLevels textureQueryLod textureSize transpose trunc uaddCarry uintBitsToFloat umulExtended unpackDouble2x32 unpackHalf2x16 unpackSnorm2x16 unpackSnorm4x8 unpackUnorm2x16 unpackUnorm4x8 usubBorrow",literal:"true false"},i:'"',c:[e.CLCM,e.CBCM,e.CNM,{cN:"meta",b:"#",e:"$"}]}}),e.registerLanguage("go",function(e){var t={keyword:"break default func interface select case map struct chan else goto package switch const fallthrough if range type continue for import return var go defer bool byte complex64 complex128 float32 float64 int8 int16 int32 int64 string uint8 uint16 uint32 uint64 int uint uintptr rune",literal:"true false iota nil",built_in:"append cap close complex copy imag len make new panic print println real recover delete"};return{aliases:["golang"],k:t,i:"",e:",\\s+",rB:!0,eW:!0,c:[{cN:"attr",b:":\\w+"},e.ASM,e.QSM,{b:"\\w+",r:0}]}]},{b:"\\(\\s*",e:"\\s*\\)",eE:!0,c:[{b:"\\w+\\s*=",e:"\\s+",rB:!0,eW:!0,c:[{cN:"attr",b:"\\w+",r:0},e.ASM,e.QSM,{b:"\\w+",r:0}]}]}]},{b:"^\\s*[=~]\\s*"},{b:"#{",starts:{e:"}",sL:"ruby"}}]}}),e.registerLanguage("handlebars",function(e){var t={"builtin-name":"each in with if else unless bindattr action collection debugger log outlet template unbound view yield"};return{aliases:["hbs","html.hbs","html.handlebars"],cI:!0,sL:"xml",c:[e.C("{{!(--)?","(--)?}}"),{cN:"template-tag",b:/\{\{[#\/]/,e:/\}\}/,c:[{cN:"name",b:/[a-zA-Z\.-]+/,k:t,starts:{eW:!0,r:0,c:[e.QSM]}}]},{cN:"template-variable",b:/\{\{/,e:/\}\}/,k:t}]}}),e.registerLanguage("haskell",function(e){var t={v:[e.C("--","$"),e.C("{-","-}",{c:["self"]})]},r={cN:"meta",b:"{-#",e:"#-}"},a={cN:"meta",b:"^#",e:"$"},i={cN:"type",b:"\\b[A-Z][\\w']*",r:0},n={b:"\\(",e:"\\)",i:'"',c:[r,a,{cN:"type",b:"\\b[A-Z][\\w]*(\\((\\.\\.|,|\\w+)\\))?"},e.inherit(e.TM,{b:"[_a-z][\\w']*"}),t]},o={b:"{",e:"}",c:n.c};return{aliases:["hs"],k:"let in if then else case of where do module import hiding qualified type data newtype deriving class instance as default infix infixl infixr foreign export ccall stdcall cplusplus jvm dotnet safe unsafe family forall mdo proc rec",c:[{bK:"module",e:"where",k:"module where",c:[n,t],i:"\\W\\.|;"},{b:"\\bimport\\b",e:"$",k:"import qualified as hiding",c:[n,t],i:"\\W\\.|;"},{cN:"class",b:"^(\\s*)?(class|instance)\\b",e:"where",k:"class family instance where",c:[i,n,t]},{cN:"class",b:"\\b(data|(new)?type)\\b",e:"$",k:"data family type newtype deriving",c:[r,i,n,o,t]},{bK:"default",e:"$",c:[i,n,t]},{bK:"infix infixl infixr",e:"$",c:[e.CNM,t]},{b:"\\bforeign\\b",e:"$",k:"foreign import export ccall stdcall cplusplus jvm dotnet safe unsafe",c:[i,e.QSM,t]},{cN:"meta",b:"#!\\/usr\\/bin\\/env runhaskell",e:"$"},r,a,e.QSM,e.CNM,i,e.inherit(e.TM,{b:"^[_a-z][\\w']*"}),t,{b:"->|<-"}]}}),e.registerLanguage("haxe",function(e){var t="Int Float String Bool Dynamic Void Array ";return{aliases:["hx"],k:{keyword:"break case cast catch continue default do dynamic else enum extern for function here if import in inline never new override package private get set public return static super switch this throw trace try typedef untyped using var while "+t,built_in:"trace this",literal:"true false null _"},c:[{cN:"string",b:"'",e:"'",c:[e.BE,{cN:"subst",b:"\\$\\{",e:"\\}"},{cN:"subst",b:"\\$",e:"\\W}"}]},e.QSM,e.CLCM,e.CBCM,e.CNM,{cN:"meta",b:"@:",e:"$"},{cN:"meta",b:"#",e:"$",k:{"meta-keyword":"if else elseif end error"}},{cN:"type",b:":[ ]*",e:"[^A-Za-z0-9_ \\->]",eB:!0,eE:!0,r:0},{cN:"type",b:":[ ]*",e:"\\W",eB:!0,eE:!0},{cN:"type",b:"new *",e:"\\W",eB:!0,eE:!0},{cN:"class",bK:"enum",e:"\\{",c:[e.TM]},{cN:"class",bK:"abstract",e:"[\\{$]",c:[{cN:"type",b:"\\(",e:"\\)",eB:!0,eE:!0},{cN:"type",b:"from +",e:"\\W",eB:!0,eE:!0},{cN:"type",b:"to +",e:"\\W",eB:!0,eE:!0},e.TM],k:{keyword:"abstract from to"}},{cN:"class",b:"\\b(class|interface) +",e:"[\\{$]",eE:!0,k:"class interface",c:[{cN:"keyword",b:"\\b(extends|implements) +",k:"extends implements",c:[{cN:"type",b:e.IR,r:0}]},e.TM]},{cN:"function",bK:"function",e:"\\(",eE:!0,i:"\\S",c:[e.TM]}],i:/<\//}}),e.registerLanguage("hsp",function(e){return{cI:!0,l:/[\w\._]+/,k:"goto gosub return break repeat loop continue wait await dim sdim foreach dimtype dup dupptr end stop newmod delmod mref run exgoto on mcall assert logmes newlab resume yield onexit onerror onkey onclick oncmd exist delete mkdir chdir dirlist bload bsave bcopy memfile if else poke wpoke lpoke getstr chdpm memexpand memcpy memset notesel noteadd notedel noteload notesave randomize noteunsel noteget split strrep setease button chgdisp exec dialog mmload mmplay mmstop mci pset pget syscolor mes print title pos circle cls font sysfont objsize picload color palcolor palette redraw width gsel gcopy gzoom gmode bmpsave hsvcolor getkey listbox chkbox combox input mesbox buffer screen bgscr mouse objsel groll line clrobj boxf objprm objmode stick grect grotate gsquare gradf objimage objskip objenable celload celdiv celput newcom querycom delcom cnvstow comres axobj winobj sendmsg comevent comevarg sarrayconv callfunc cnvwtos comevdisp libptr system hspstat hspver stat cnt err strsize looplev sublev iparam wparam lparam refstr refdval int rnd strlen length length2 length3 length4 vartype gettime peek wpeek lpeek varptr varuse noteinfo instr abs limit getease str strmid strf getpath strtrim sin cos tan atan sqrt double absf expf logf limitf powf geteasef mousex mousey mousew hwnd hinstance hdc ginfo objinfo dirinfo sysinfo thismod __hspver__ __hsp30__ __date__ __time__ __line__ __file__ _debug __hspdef__ and or xor not screen_normal screen_palette screen_hide screen_fixedsize screen_tool screen_frame gmode_gdi gmode_mem gmode_rgb0 gmode_alpha gmode_rgb0alpha gmode_add gmode_sub gmode_pixela ginfo_mx ginfo_my ginfo_act ginfo_sel ginfo_wx1 ginfo_wy1 ginfo_wx2 ginfo_wy2 ginfo_vx ginfo_vy ginfo_sizex ginfo_sizey ginfo_winx ginfo_winy ginfo_mesx ginfo_mesy ginfo_r ginfo_g ginfo_b ginfo_paluse ginfo_dispx ginfo_dispy ginfo_cx ginfo_cy ginfo_intid ginfo_newid ginfo_sx ginfo_sy objinfo_mode objinfo_bmscr objinfo_hwnd notemax notesize dir_cur dir_exe dir_win dir_sys dir_cmdline dir_desktop dir_mydoc dir_tv font_normal font_bold font_italic font_underline font_strikeout font_antialias objmode_normal objmode_guifont objmode_usefont gsquare_grad msgothic msmincho do until while wend for next _break _continue switch case default swbreak swend ddim ldim alloc m_pi rad2deg deg2rad ease_linear ease_quad_in ease_quad_out ease_quad_inout ease_cubic_in ease_cubic_out ease_cubic_inout ease_quartic_in ease_quartic_out ease_quartic_inout ease_bounce_in ease_bounce_out ease_bounce_inout ease_shake_in ease_shake_out ease_shake_inout ease_loop",c:[e.CLCM,e.CBCM,e.QSM,e.ASM,{cN:"string",b:'{"',e:'"}',c:[e.BE]},e.C(";","$",{r:0}),{cN:"meta",b:"#",e:"$",k:{"meta-keyword":"addion cfunc cmd cmpopt comfunc const defcfunc deffunc define else endif enum epack func global if ifdef ifndef include modcfunc modfunc modinit modterm module pack packopt regcmd runtime undef usecom uselib"},c:[e.inherit(e.QSM,{cN:"meta-string"}),e.NM,e.CNM,e.CLCM,e.CBCM]},{cN:"symbol",b:"^\\*(\\w+|@)"},e.NM,e.CNM]}}),e.registerLanguage("htmlbars",function(e){var t="action collection component concat debugger each each-in else get hash if input link-to loc log mut outlet partial query-params render textarea unbound unless with yield view",r={i:/\}\}/,b:/[a-zA-Z0-9_]+=/,rB:!0,r:0,c:[{cN:"attr",b:/[a-zA-Z0-9_]+/}]},a=({i:/\}\}/,b:/\)/,e:/\)/,c:[{b:/[a-zA-Z\.\-]+/,k:{built_in:t},starts:{eW:!0,r:0,c:[e.QSM]}}]},{eW:!0,r:0,k:{keyword:"as",built_in:t},c:[e.QSM,r,e.NM]});return{cI:!0,sL:"xml",c:[e.C("{{!(--)?","(--)?}}"),{cN:"template-tag",b:/\{\{[#\/]/,e:/\}\}/,c:[{cN:"name",b:/[a-zA-Z\.\-]+/,k:{"builtin-name":t},starts:a}]},{cN:"template-variable",b:/\{\{[a-zA-Z][a-zA-Z\-]+/,e:/\}\}/,k:{keyword:"as",built_in:t},c:[e.QSM]}]}}),e.registerLanguage("http",function(e){var t="HTTP/[0-9\\.]+";return{aliases:["https"],i:"\\S",c:[{b:"^"+t,e:"$",c:[{cN:"number",b:"\\b\\d{3}\\b"}]},{b:"^[A-Z]+ (.*?) "+t+"$",rB:!0,e:"$",c:[{cN:"string",b:" ",e:" ",eB:!0,eE:!0},{b:t},{cN:"keyword",b:"[A-Z]+"}]},{cN:"attribute",b:"^\\w",e:": ",eE:!0,i:"\\n|\\s|=",starts:{e:"$",r:0}},{b:"\\n\\n",starts:{sL:[],eW:!0}}]}}),e.registerLanguage("hy",function(e){var t={"builtin-name":"!= % %= & &= * ** **= *= *map + += , --build-class-- --import-- -= . / // //= /= < << <<= <= = > >= >> >>= @ @= ^ ^= abs accumulate all and any ap-compose ap-dotimes ap-each ap-each-while ap-filter ap-first ap-if ap-last ap-map ap-map-when ap-pipe ap-reduce ap-reject apply as-> ascii assert assoc bin break butlast callable calling-module-name car case cdr chain chr coll? combinations compile compress cond cons cons? continue count curry cut cycle dec def default-method defclass defmacro defmacro-alias defmacro/g! defmain defmethod defmulti defn defn-alias defnc defnr defreader defseq del delattr delete-route dict-comp dir disassemble dispatch-reader-macro distinct divmod do doto drop drop-last drop-while empty? end-sequence eval eval-and-compile eval-when-compile even? every? except exec filter first flatten float? fn fnc fnr for for* format fraction genexpr gensym get getattr global globals group-by hasattr hash hex id identity if if* if-not if-python2 import in inc input instance? integer integer-char? integer? interleave interpose is is-coll is-cons is-empty is-even is-every is-float is-instance is-integer is-integer-char is-iterable is-iterator is-keyword is-neg is-none is-not is-numeric is-odd is-pos is-string is-symbol is-zero isinstance islice issubclass iter iterable? iterate iterator? keyword keyword? lambda last len let lif lif-not list* list-comp locals loop macro-error macroexpand macroexpand-1 macroexpand-all map max merge-with method-decorator min multi-decorator multicombinations name neg? next none? nonlocal not not-in not? nth numeric? oct odd? open or ord partition permutations pos? post-route postwalk pow prewalk print product profile/calls profile/cpu put-route quasiquote quote raise range read read-str recursive-replace reduce remove repeat repeatedly repr require rest round route route-with-methods rwm second seq set-comp setattr setv some sorted string string? sum switch symbol? take take-nth take-while tee try unless unquote unquote-splicing vars walk when while with with* with-decorator with-gensyms xi xor yield yield-from zero? zip zip-longest | |= ~"},r="a-zA-Z_\\-!.?+*=<>&#'",a="["+r+"]["+r+"0-9/;:]*",i="[-+]?\\d+(\\.\\d+)?",n={cN:"meta",b:"^#!",e:"$"},o={b:a,r:0},s={cN:"number",b:i,r:0},l=e.inherit(e.QSM,{i:null}),c=e.C(";","$",{r:0}),d={cN:"literal",b:/\b([Tt]rue|[Ff]alse|nil|None)\b/},p={b:"[\\[\\{]",e:"[\\]\\}]"},m={cN:"comment",b:"\\^"+a},u=e.C("\\^\\{","\\}"),b={cN:"symbol",b:"[:]{1,2}"+a},g={b:"\\(",e:"\\)"},f={eW:!0,r:0},_={k:t,l:a,cN:"name",b:a,starts:f},h=[g,l,m,u,c,b,p,s,d,o];return g.c=[e.C("comment",""),_,f],f.c=h,p.c=h,{aliases:["hylang"],i:/\S/,c:[n,g,l,m,u,c,b,p,s,d]}}),e.registerLanguage("inform7",function(e){var t="\\[",r="\\]";return{aliases:["i7"],cI:!0,k:{keyword:"thing room person man woman animal container supporter backdrop door scenery open closed locked inside gender is are say understand kind of rule"},c:[{cN:"string",b:'"',e:'"',r:0,c:[{cN:"subst",b:t,e:r}]},{cN:"section",b:/^(Volume|Book|Part|Chapter|Section|Table)\b/,e:"$"},{b:/^(Check|Carry out|Report|Instead of|To|Rule|When|Before|After)\b/,e:":",c:[{b:"\\(This",e:"\\)"}]},{cN:"comment",b:t,e:r,c:["self"]}]}}),e.registerLanguage("ini",function(e){var t={cN:"string",c:[e.BE],v:[{b:"'''",e:"'''",r:10},{b:'"""',e:'"""',r:10},{b:'"',e:'"'},{b:"'",e:"'"}]};return{aliases:["toml"],cI:!0,i:/\S/,c:[e.C(";","$"),e.HCM,{cN:"section",b:/^\s*\[+/,e:/\]+/},{b:/^[a-z0-9\[\]_-]+\s*=\s*/,e:"$",rB:!0,c:[{cN:"attr",b:/[a-z0-9\[\]_-]+/},{b:/=/,eW:!0,r:0,c:[{cN:"literal",b:/\bon|off|true|false|yes|no\b/},{cN:"variable",v:[{b:/\$[\w\d"][\w\d_]*/},{b:/\$\{(.*?)}/}]},t,{cN:"number",b:/([\+\-]+)?[\d]+_[\d_]+/},e.NM]}]}]}}),e.registerLanguage("irpf90",function(e){var t={cN:"params",b:"\\(",e:"\\)"},r={literal:".False. .True.",keyword:"kind do while private call intrinsic where elsewhere type endtype endmodule endselect endinterface end enddo endif if forall endforall only contains default return stop then public subroutine|10 function program .and. .or. .not. .le. .eq. .ge. .gt. .lt. goto save else use module select case access blank direct exist file fmt form formatted iostat name named nextrec number opened rec recl sequential status unformatted unit continue format pause cycle exit c_null_char c_alert c_backspace c_form_feed flush wait decimal round iomsg synchronous nopass non_overridable pass protected volatile abstract extends import non_intrinsic value deferred generic final enumerator class associate bind enum c_int c_short c_long c_long_long c_signed_char c_size_t c_int8_t c_int16_t c_int32_t c_int64_t c_int_least8_t c_int_least16_t c_int_least32_t c_int_least64_t c_int_fast8_t c_int_fast16_t c_int_fast32_t c_int_fast64_t c_intmax_t C_intptr_t c_float c_double c_long_double c_float_complex c_double_complex c_long_double_complex c_bool c_char c_null_ptr c_null_funptr c_new_line c_carriage_return c_horizontal_tab c_vertical_tab iso_c_binding c_loc c_funloc c_associated c_f_pointer c_ptr c_funptr iso_fortran_env character_storage_size error_unit file_storage_size input_unit iostat_end iostat_eor numeric_storage_size output_unit c_f_procpointer ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode newunit contiguous recursive pad position action delim readwrite eor advance nml interface procedure namelist include sequence elemental pure integer real character complex logical dimension allocatable|10 parameter external implicit|10 none double precision assign intent optional pointer target in out common equivalence data begin_provider &begin_provider end_provider begin_shell end_shell begin_template end_template subst assert touch soft_touch provide no_dep free irp_if irp_else irp_endif irp_write irp_read",built_in:"alog alog10 amax0 amax1 amin0 amin1 amod cabs ccos cexp clog csin csqrt dabs dacos dasin datan datan2 dcos dcosh ddim dexp dint dlog dlog10 dmax1 dmin1 dmod dnint dsign dsin dsinh dsqrt dtan dtanh float iabs idim idint idnint ifix isign max0 max1 min0 min1 sngl algama cdabs cdcos cdexp cdlog cdsin cdsqrt cqabs cqcos cqexp cqlog cqsin cqsqrt dcmplx dconjg derf derfc dfloat dgamma dimag dlgama iqint qabs qacos qasin qatan qatan2 qcmplx qconjg qcos qcosh qdim qerf qerfc qexp qgamma qimag qlgama qlog qlog10 qmax1 qmin1 qmod qnint qsign qsin qsinh qsqrt qtan qtanh abs acos aimag aint anint asin atan atan2 char cmplx conjg cos cosh exp ichar index int log log10 max min nint sign sin sinh sqrt tan tanh print write dim lge lgt lle llt mod nullify allocate deallocate adjustl adjustr all allocated any associated bit_size btest ceiling count cshift date_and_time digits dot_product eoshift epsilon exponent floor fraction huge iand ibclr ibits ibset ieor ior ishft ishftc lbound len_trim matmul maxexponent maxloc maxval merge minexponent minloc minval modulo mvbits nearest pack present product radix random_number random_seed range repeat reshape rrspacing scale scan selected_int_kind selected_real_kind set_exponent shape size spacing spread sum system_clock tiny transpose trim ubound unpack verify achar iachar transfer dble entry dprod cpu_time command_argument_count get_command get_command_argument get_environment_variable is_iostat_end ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode is_iostat_eor move_alloc new_line selected_char_kind same_type_as extends_type_ofacosh asinh atanh bessel_j0 bessel_j1 bessel_jn bessel_y0 bessel_y1 bessel_yn erf erfc erfc_scaled gamma log_gamma hypot norm2 atomic_define atomic_ref execute_command_line leadz trailz storage_size merge_bits bge bgt ble blt dshiftl dshiftr findloc iall iany iparity image_index lcobound ucobound maskl maskr num_images parity popcnt poppar shifta shiftl shiftr this_image IRP_ALIGN irp_here"};return{cI:!0,k:r,i:/\/\*/,c:[e.inherit(e.ASM,{cN:"string",r:0}),e.inherit(e.QSM,{cN:"string",r:0}),{cN:"function",bK:"subroutine function program",i:"[${=\\n]",c:[e.UTM,t]},e.C("!","$",{r:0}),e.C("begin_doc","end_doc",{r:10}),{cN:"number",b:"(?=\\b|\\+|\\-|\\.)(?=\\.\\d|\\d)(?:\\d+)?(?:\\.?\\d*)(?:[de][+-]?\\d+)?\\b\\.?",r:0}]}}),e.registerLanguage("java",function(e){var t="[À-ʸa-zA-Z_$][À-ʸa-zA-Z_$0-9]*",r=t+"(<"+t+"(\\s*,\\s*"+t+")*>)?",a="false synchronized int abstract float private char boolean static null if const for true while long strictfp finally protected import native final void enum else break transient catch instanceof byte super volatile case assert short package default double public try this switch continue throws protected public private module requires exports do",i="\\b(0[bB]([01]+[01_]+[01]+|[01]+)|0[xX]([a-fA-F0-9]+[a-fA-F0-9_]+[a-fA-F0-9]+|[a-fA-F0-9]+)|(([\\d]+[\\d_]+[\\d]+|[\\d]+)(\\.([\\d]+[\\d_]+[\\d]+|[\\d]+))?|\\.([\\d]+[\\d_]+[\\d]+|[\\d]+))([eE][-+]?\\d+)?)[lLfF]?",n={cN:"number",b:i,r:0};return{aliases:["jsp"],k:a,i:/<\/|#/,c:[e.C("/\\*\\*","\\*/",{r:0,c:[{b:/\w+@/,r:0},{cN:"doctag",b:"@[A-Za-z]+"}]}),e.CLCM,e.CBCM,e.ASM,e.QSM,{cN:"class",bK:"class interface",e:/[{;=]/,eE:!0,k:"class interface",i:/[:"\[\]]/,c:[{bK:"extends implements"},e.UTM]},{bK:"new throw return else",r:0},{cN:"function",b:"("+r+"\\s+)+"+e.UIR+"\\s*\\(",rB:!0,e:/[{;=]/,eE:!0,k:a,c:[{b:e.UIR+"\\s*\\(",rB:!0,r:0,c:[e.UTM]},{cN:"params",b:/\(/,e:/\)/,k:a,r:0,c:[e.ASM,e.QSM,e.CNM,e.CBCM]},e.CLCM,e.CBCM]},n,{cN:"meta",b:"@[A-Za-z]+"}]}}),e.registerLanguage("javascript",function(e){var t="[A-Za-z$_][0-9A-Za-z$_]*",r={keyword:"in of if for while finally var new function do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const export super debugger as async await static import from as",literal:"true false null undefined NaN Infinity",built_in:"eval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Error EvalError InternalError RangeError ReferenceError StopIteration SyntaxError TypeError URIError Number Math Date String RegExp Array Float32Array Float64Array Int16Array Int32Array Int8Array Uint16Array Uint32Array Uint8Array Uint8ClampedArray ArrayBuffer DataView JSON Intl arguments require module console window document Symbol Set Map WeakSet WeakMap Proxy Reflect Promise"},a={cN:"number",v:[{b:"\\b(0[bB][01]+)"},{b:"\\b(0[oO][0-7]+)"},{b:e.CNR}],r:0},i={cN:"subst",b:"\\$\\{",e:"\\}",k:r,c:[]},n={cN:"string",b:"`",e:"`",c:[e.BE,i]};i.c=[e.ASM,e.QSM,n,a,e.RM];var o=i.c.concat([e.CBCM,e.CLCM]);return{aliases:["js","jsx"],k:r,c:[{cN:"meta",r:10,b:/^\s*['"]use (strict|asm)['"]/},{cN:"meta",b:/^#!/,e:/$/},e.ASM,e.QSM,n,e.CLCM,e.CBCM,a,{b:/[{,]\s*/,r:0,c:[{b:t+"\\s*:",rB:!0,r:0,c:[{cN:"attr",b:t,r:0}]}]},{b:"("+e.RSR+"|\\b(case|return|throw)\\b)\\s*",k:"return throw case",c:[e.CLCM,e.CBCM,e.RM,{cN:"function",b:"(\\(.*?\\)|"+t+")\\s*=>",rB:!0,e:"\\s*=>",c:[{cN:"params",v:[{b:t},{b:/\(\s*\)/},{b:/\(/,e:/\)/,eB:!0,eE:!0,k:r,c:o}]}]},{b://,sL:"xml",c:[{b:/<\w+\s*\/>/,skip:!0},{b:/<\w+/,e:/(\/\w+|\w+\/)>/,skip:!0,c:[{b:/<\w+\s*\/>/,skip:!0},"self"]}]}],r:0},{cN:"function",bK:"function",e:/\{/,eE:!0,c:[e.inherit(e.TM,{b:t}),{cN:"params",b:/\(/,e:/\)/,eB:!0,eE:!0,c:o}],i:/\[|%/},{b:/\$[(.]/},e.METHOD_GUARD,{cN:"class",bK:"class",e:/[{;=]/,eE:!0,i:/[:"\[\]]/,c:[{bK:"extends"},e.UTM]},{bK:"constructor",e:/\{/,eE:!0}],i:/#(?!!)/}}),e.registerLanguage("jboss-cli",function(e){var t={b:/[\w-]+ *=/,rB:!0,r:0,c:[{cN:"attr",b:/[\w-]+/}]},r={cN:"params",b:/\(/,e:/\)/,c:[t],r:0},a={cN:"function",b:/:[\w\-.]+/,r:0},i={cN:"string",b:/\B(([\/.])[\w\-.\/=]+)+/},n={cN:"params",b:/--[\w\-=\/]+/};return{aliases:["wildfly-cli"],l:"[a-z-]+",k:{keyword:"alias batch cd clear command connect connection-factory connection-info data-source deploy deployment-info deployment-overlay echo echo-dmr help history if jdbc-driver-info jms-queue|20 jms-topic|20 ls patch pwd quit read-attribute read-operation reload rollout-plan run-batch set shutdown try unalias undeploy unset version xa-data-source",literal:"true false"},c:[e.HCM,e.QSM,n,a,i,r]}}),e.registerLanguage("json",function(e){var t={literal:"true false null"},r=[e.QSM,e.CNM],a={e:",",eW:!0,eE:!0,c:r,k:t},i={b:"{",e:"}",c:[{cN:"attr",b:/"/,e:/"/,c:[e.BE],i:"\\n"},e.inherit(a,{b:/:/})],i:"\\S"},n={b:"\\[",e:"\\]",c:[e.inherit(a)],i:"\\S"};return r.splice(r.length,0,i,n),{c:r,k:t,i:"\\S"}}),e.registerLanguage("julia",function(e){var t={keyword:"in isa where baremodule begin break catch ccall const continue do else elseif end export false finally for function global if import importall let local macro module quote return true try using while type immutable abstract bitstype typealias ",literal:"true false ARGS C_NULL DevNull ENDIAN_BOM ENV I Inf Inf16 Inf32 Inf64 InsertionSort JULIA_HOME LOAD_PATH MergeSort NaN NaN16 NaN32 NaN64 PROGRAM_FILE QuickSort RoundDown RoundFromZero RoundNearest RoundNearestTiesAway RoundNearestTiesUp RoundToZero RoundUp STDERR STDIN STDOUT VERSION catalan e|0 eu|0 eulergamma golden im nothing pi γ π φ ",built_in:"ANY AbstractArray AbstractChannel AbstractFloat AbstractMatrix AbstractRNG AbstractSerializer AbstractSet AbstractSparseArray AbstractSparseMatrix AbstractSparseVector AbstractString AbstractUnitRange AbstractVecOrMat AbstractVector Any ArgumentError Array AssertionError Associative Base64DecodePipe Base64EncodePipe Bidiagonal BigFloat BigInt BitArray BitMatrix BitVector Bool BoundsError BufferStream CachingPool CapturedException CartesianIndex CartesianRange Cchar Cdouble Cfloat Channel Char Cint Cintmax_t Clong Clonglong ClusterManager Cmd CodeInfo Colon Complex Complex128 Complex32 Complex64 CompositeException Condition ConjArray ConjMatrix ConjVector Cptrdiff_t Cshort Csize_t Cssize_t Cstring Cuchar Cuint Cuintmax_t Culong Culonglong Cushort Cwchar_t Cwstring DataType Date DateFormat DateTime DenseArray DenseMatrix DenseVecOrMat DenseVector Diagonal Dict DimensionMismatch Dims DirectIndexString Display DivideError DomainError EOFError EachLine Enum Enumerate ErrorException Exception ExponentialBackOff Expr Factorization FileMonitor Float16 Float32 Float64 Function Future GlobalRef GotoNode HTML Hermitian IO IOBuffer IOContext IOStream IPAddr IPv4 IPv6 IndexCartesian IndexLinear IndexStyle InexactError InitError Int Int128 Int16 Int32 Int64 Int8 IntSet Integer InterruptException InvalidStateException Irrational KeyError LabelNode LinSpace LineNumberNode LoadError LowerTriangular MIME Matrix MersenneTwister Method MethodError MethodTable Module NTuple NewvarNode NullException Nullable Number ObjectIdDict OrdinalRange OutOfMemoryError OverflowError Pair ParseError PartialQuickSort PermutedDimsArray Pipe PollingFileWatcher ProcessExitedException Ptr QuoteNode RandomDevice Range RangeIndex Rational RawFD ReadOnlyMemoryError Real ReentrantLock Ref Regex RegexMatch RemoteChannel RemoteException RevString RoundingMode RowVector SSAValue SegmentationFault SerializationState Set SharedArray SharedMatrix SharedVector Signed SimpleVector Slot SlotNumber SparseMatrixCSC SparseVector StackFrame StackOverflowError StackTrace StepRange StepRangeLen StridedArray StridedMatrix StridedVecOrMat StridedVector String SubArray SubString SymTridiagonal Symbol Symmetric SystemError TCPSocket Task Text TextDisplay Timer Tridiagonal Tuple Type TypeError TypeMapEntry TypeMapLevel TypeName TypeVar TypedSlot UDPSocket UInt UInt128 UInt16 UInt32 UInt64 UInt8 UndefRefError UndefVarError UnicodeError UniformScaling Union UnionAll UnitRange Unsigned UpperTriangular Val Vararg VecElement VecOrMat Vector VersionNumber Void WeakKeyDict WeakRef WorkerConfig WorkerPool " -},r="[A-Za-z_\\u00A1-\\uFFFF][A-Za-z_0-9\\u00A1-\\uFFFF]*",a={l:r,k:t,i:/<\//},i={cN:"number",b:/(\b0x[\d_]*(\.[\d_]*)?|0x\.\d[\d_]*)p[-+]?\d+|\b0[box][a-fA-F0-9][a-fA-F0-9_]*|(\b\d[\d_]*(\.[\d_]*)?|\.\d[\d_]*)([eEfF][-+]?\d+)?/,r:0},n={cN:"string",b:/'(.|\\[xXuU][a-zA-Z0-9]+)'/},o={cN:"subst",b:/\$\(/,e:/\)/,k:t},s={cN:"variable",b:"\\$"+r},l={cN:"string",c:[e.BE,o,s],v:[{b:/\w*"""/,e:/"""\w*/,r:10},{b:/\w*"/,e:/"\w*/}]},c={cN:"string",c:[e.BE,o,s],b:"`",e:"`"},d={cN:"meta",b:"@"+r},p={cN:"comment",v:[{b:"#=",e:"=#",r:10},{b:"#",e:"$"}]};return a.c=[i,n,l,c,d,p,e.HCM,{cN:"keyword",b:"\\b(((abstract|primitive)\\s+)type|(mutable\\s+)?struct)\\b"},{b:/<:/}],o.c=a.c,a}),e.registerLanguage("julia-repl",function(e){return{c:[{cN:"meta",b:/^julia>/,r:10,starts:{e:/^(?![ ]{6})/,sL:"julia"},aliases:["jldoctest"]}]}}),e.registerLanguage("kotlin",function(e){var t={keyword:"abstract as val var vararg get set class object open private protected public noinline crossinline dynamic final enum if else do while for when throw try catch finally import package is in fun override companion reified inline lateinit initinterface annotation data sealed internal infix operator out by constructor super trait volatile transient native default",built_in:"Byte Short Char Int Long Boolean Float Double Void Unit Nothing",literal:"true false null"},r={cN:"keyword",b:/\b(break|continue|return|this)\b/,starts:{c:[{cN:"symbol",b:/@\w+/}]}},a={cN:"symbol",b:e.UIR+"@"},i={cN:"subst",b:"\\${",e:"}",c:[e.ASM,e.CNM]},n={cN:"variable",b:"\\$"+e.UIR},o={cN:"string",v:[{b:'"""',e:'"""',c:[n,i]},{b:"'",e:"'",i:/\n/,c:[e.BE]},{b:'"',e:'"',i:/\n/,c:[e.BE,n,i]}]},s={cN:"meta",b:"@(?:file|property|field|get|set|receiver|param|setparam|delegate)\\s*:(?:\\s*"+e.UIR+")?"},l={cN:"meta",b:"@"+e.UIR,c:[{b:/\(/,e:/\)/,c:[e.inherit(o,{cN:"meta-string"})]}]};return{k:t,c:[e.C("/\\*\\*","\\*/",{r:0,c:[{cN:"doctag",b:"@[A-Za-z]+"}]}),e.CLCM,e.CBCM,r,a,s,l,{cN:"function",bK:"fun",e:"[(]|$",rB:!0,eE:!0,k:t,i:/fun\s+(<.*>)?[^\s\(]+(\s+[^\s\(]+)\s*=/,r:5,c:[{b:e.UIR+"\\s*\\(",rB:!0,r:0,c:[e.UTM]},{cN:"type",b://,k:"reified",r:0},{cN:"params",b:/\(/,e:/\)/,endsParent:!0,k:t,r:0,c:[{b:/:/,e:/[=,\/]/,eW:!0,c:[{cN:"type",b:e.UIR},e.CLCM,e.CBCM],r:0},e.CLCM,e.CBCM,s,l,o,e.CNM]},e.CBCM]},{cN:"class",bK:"class interface trait",e:/[:\{(]|$/,eE:!0,i:"extends implements",c:[{bK:"public protected internal private constructor"},e.UTM,{cN:"type",b://,eB:!0,eE:!0,r:0},{cN:"type",b:/[,:]\s*/,e:/[<\(,]|$/,eB:!0,rE:!0},s,l]},o,{cN:"meta",b:"^#!/usr/bin/env",e:"$",i:"\n"},e.CNM]}}),e.registerLanguage("lasso",function(e){var t="[a-zA-Z_][\\w.]*",r="<\\?(lasso(script)?|=)",a="\\]|\\?>",i={literal:"true false none minimal full all void and or not bw nbw ew new cn ncn lt lte gt gte eq neq rx nrx ft",built_in:"array date decimal duration integer map pair string tag xml null boolean bytes keyword list locale queue set stack staticarray local var variable global data self inherited currentcapture givenblock",keyword:"cache database_names database_schemanames database_tablenames define_tag define_type email_batch encode_set html_comment handle handle_error header if inline iterate ljax_target link link_currentaction link_currentgroup link_currentrecord link_detail link_firstgroup link_firstrecord link_lastgroup link_lastrecord link_nextgroup link_nextrecord link_prevgroup link_prevrecord log loop namespace_using output_none portal private protect records referer referrer repeating resultset rows search_args search_arguments select sort_args sort_arguments thread_atomic value_list while abort case else fail_if fail_ifnot fail if_empty if_false if_null if_true loop_abort loop_continue loop_count params params_up return return_value run_children soap_definetag soap_lastrequest soap_lastresponse tag_name ascending average by define descending do equals frozen group handle_failure import in into join let match max min on order parent protected provide public require returnhome skip split_thread sum take thread to trait type where with yield yieldhome"},n=e.C("",{r:0}),o={cN:"meta",b:"\\[noprocess\\]",starts:{e:"\\[/noprocess\\]",rE:!0,c:[n]}},s={cN:"meta",b:"\\[/noprocess|"+r},l={cN:"symbol",b:"'"+t+"'"},c=[e.CLCM,e.CBCM,e.inherit(e.CNM,{b:e.CNR+"|(-?infinity|NaN)\\b"}),e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null}),{cN:"string",b:"`",e:"`"},{v:[{b:"[#$]"+t},{b:"#",e:"\\d+",i:"\\W"}]},{cN:"type",b:"::\\s*",e:t,i:"\\W"},{cN:"params",v:[{b:"-(?!infinity)"+t,r:0},{b:"(\\.\\.\\.)"}]},{b:/(->|\.)\s*/,r:0,c:[l]},{cN:"class",bK:"define",rE:!0,e:"\\(|=>",c:[e.inherit(e.TM,{b:t+"(=(?!>))?|[-+*/%](?!>)"})]}];return{aliases:["ls","lassoscript"],cI:!0,l:t+"|&[lg]t;",k:i,c:[{cN:"meta",b:a,r:0,starts:{e:"\\[|"+r,rE:!0,r:0,c:[n]}},o,s,{cN:"meta",b:"\\[no_square_brackets",starts:{e:"\\[/no_square_brackets\\]",l:t+"|&[lg]t;",k:i,c:[{cN:"meta",b:a,r:0,starts:{e:"\\[noprocess\\]|"+r,rE:!0,c:[n]}},o,s].concat(c)}},{cN:"meta",b:"\\[",r:0},{cN:"meta",b:"^#!",e:"lasso9$",r:10}].concat(c)}}),e.registerLanguage("ldif",function(e){return{c:[{cN:"attribute",b:"^dn",e:": ",eE:!0,starts:{e:"$",r:0},r:10},{cN:"attribute",b:"^\\w",e:": ",eE:!0,starts:{e:"$",r:0}},{cN:"literal",b:"^-",e:"$"},e.HCM]}}),e.registerLanguage("leaf",function(e){return{c:[{cN:"function",b:"#+[A-Za-z_0-9]*\\(",e:" {",rB:!0,eE:!0,c:[{cN:"keyword",b:"#+"},{cN:"title",b:"[A-Za-z_][A-Za-z_0-9]*"},{cN:"params",b:"\\(",e:"\\)",endsParent:!0,c:[{cN:"string",b:'"',e:'"'},{cN:"variable",b:"[A-Za-z_][A-Za-z_0-9]*"}]}]}]}}),e.registerLanguage("less",function(e){var t="[\\w-]+",r="("+t+"|@{"+t+"})",a=[],i=[],n=function(e){return{cN:"string",b:"~?"+e+".*?"+e}},o=function(e,t,r){return{cN:e,b:t,r:r}},s={b:"\\(",e:"\\)",c:i,r:0};i.push(e.CLCM,e.CBCM,n("'"),n('"'),e.CSSNM,{b:"(url|data-uri)\\(",starts:{cN:"string",e:"[\\)\\n]",eE:!0}},o("number","#[0-9A-Fa-f]+\\b"),s,o("variable","@@?"+t,10),o("variable","@{"+t+"}"),o("built_in","~?`[^`]*?`"),{cN:"attribute",b:t+"\\s*:",e:":",rB:!0,eE:!0},{cN:"meta",b:"!important"});var l=i.concat({b:"{",e:"}",c:a}),c={bK:"when",eW:!0,c:[{bK:"and not"}].concat(i)},d={b:r+"\\s*:",rB:!0,e:"[;}]",r:0,c:[{cN:"attribute",b:r,e:":",eE:!0,starts:{eW:!0,i:"[<=$]",r:0,c:i}}]},p={cN:"keyword",b:"@(import|media|charset|font-face|(-[a-z]+-)?keyframes|supports|document|namespace|page|viewport|host)\\b",starts:{e:"[;{}]",rE:!0,c:i,r:0}},m={cN:"variable",v:[{b:"@"+t+"\\s*:",r:15},{b:"@"+t}],starts:{e:"[;}]",rE:!0,c:l}},u={v:[{b:"[\\.#:&\\[>]",e:"[;{}]"},{b:r,e:"{"}],rB:!0,rE:!0,i:"[<='$\"]",r:0,c:[e.CLCM,e.CBCM,c,o("keyword","all\\b"),o("variable","@{"+t+"}"),o("selector-tag",r+"%?",0),o("selector-id","#"+r),o("selector-class","\\."+r,0),o("selector-tag","&",0),{cN:"selector-attr",b:"\\[",e:"\\]"},{cN:"selector-pseudo",b:/:(:)?[a-zA-Z0-9\_\-\+\(\)"'.]+/},{b:"\\(",e:"\\)",c:l},{b:"!important"}]};return a.push(e.CLCM,e.CBCM,p,m,d,u),{cI:!0,i:"[=>'/<($\"]",c:a}}),e.registerLanguage("lisp",function(e){var t="[a-zA-Z_\\-\\+\\*\\/\\<\\=\\>\\&\\#][a-zA-Z0-9_\\-\\+\\*\\/\\<\\=\\>\\&\\#!]*",r="\\|[^]*?\\|",a="(\\-|\\+)?\\d+(\\.\\d+|\\/\\d+)?((d|e|f|l|s|D|E|F|L|S)(\\+|\\-)?\\d+)?",i={cN:"meta",b:"^#!",e:"$"},n={cN:"literal",b:"\\b(t{1}|nil)\\b"},o={cN:"number",v:[{b:a,r:0},{b:"#(b|B)[0-1]+(/[0-1]+)?"},{b:"#(o|O)[0-7]+(/[0-7]+)?"},{b:"#(x|X)[0-9a-fA-F]+(/[0-9a-fA-F]+)?"},{b:"#(c|C)\\("+a+" +"+a,e:"\\)"}]},s=e.inherit(e.QSM,{i:null}),l=e.C(";","$",{r:0}),c={b:"\\*",e:"\\*"},d={cN:"symbol",b:"[:&]"+t},p={b:t,r:0},m={b:r},u={b:"\\(",e:"\\)",c:["self",n,s,o,p]},b={c:[o,s,c,d,u,p],v:[{b:"['`]\\(",e:"\\)"},{b:"\\(quote ",e:"\\)",k:{name:"quote"}},{b:"'"+r}]},g={v:[{b:"'"+t},{b:"#'"+t+"(::"+t+")*"}]},f={b:"\\(\\s*",e:"\\)"},_={eW:!0,r:0};return f.c=[{cN:"name",v:[{b:t},{b:r}]},_],_.c=[b,g,f,n,o,s,l,c,d,m,p],{i:/\S/,c:[o,i,n,s,l,b,g,f,p]}}),e.registerLanguage("livecodeserver",function(e){var t={b:"\\b[gtps][A-Z]+[A-Za-z0-9_\\-]*\\b|\\$_[A-Z]+",r:0},r=[e.CBCM,e.HCM,e.C("--","$"),e.C("[^:]//","$")],a=e.inherit(e.TM,{v:[{b:"\\b_*rig[A-Z]+[A-Za-z0-9_\\-]*"},{b:"\\b_[a-z0-9\\-]+"}]}),i=e.inherit(e.TM,{b:"\\b([A-Za-z0-9_\\-]+)\\b"});return{cI:!1,k:{keyword:"$_COOKIE $_FILES $_GET $_GET_BINARY $_GET_RAW $_POST $_POST_BINARY $_POST_RAW $_SESSION $_SERVER codepoint codepoints segment segments codeunit codeunits sentence sentences trueWord trueWords paragraph after byte bytes english the until http forever descending using line real8 with seventh for stdout finally element word words fourth before black ninth sixth characters chars stderr uInt1 uInt1s uInt2 uInt2s stdin string lines relative rel any fifth items from middle mid at else of catch then third it file milliseconds seconds second secs sec int1 int1s int4 int4s internet int2 int2s normal text item last long detailed effective uInt4 uInt4s repeat end repeat URL in try into switch to words https token binfile each tenth as ticks tick system real4 by dateItems without char character ascending eighth whole dateTime numeric short first ftp integer abbreviated abbr abbrev private case while if div mod wrap and or bitAnd bitNot bitOr bitXor among not in a an within contains ends with begins the keys of keys",literal:"SIX TEN FORMFEED NINE ZERO NONE SPACE FOUR FALSE COLON CRLF PI COMMA ENDOFFILE EOF EIGHT FIVE QUOTE EMPTY ONE TRUE RETURN CR LINEFEED RIGHT BACKSLASH NULL SEVEN TAB THREE TWO six ten formfeed nine zero none space four false colon crlf pi comma endoffile eof eight five quote empty one true return cr linefeed right backslash null seven tab three two RIVERSION RISTATE FILE_READ_MODE FILE_WRITE_MODE FILE_WRITE_MODE DIR_WRITE_MODE FILE_READ_UMASK FILE_WRITE_UMASK DIR_READ_UMASK DIR_WRITE_UMASK",built_in:"put abs acos aliasReference annuity arrayDecode arrayEncode asin atan atan2 average avg avgDev base64Decode base64Encode baseConvert binaryDecode binaryEncode byteOffset byteToNum cachedURL cachedURLs charToNum cipherNames codepointOffset codepointProperty codepointToNum codeunitOffset commandNames compound compress constantNames cos date dateFormat decompress directories diskSpace DNSServers exp exp1 exp2 exp10 extents files flushEvents folders format functionNames geometricMean global globals hasMemory harmonicMean hostAddress hostAddressToName hostName hostNameToAddress isNumber ISOToMac itemOffset keys len length libURLErrorData libUrlFormData libURLftpCommand libURLLastHTTPHeaders libURLLastRHHeaders libUrlMultipartFormAddPart libUrlMultipartFormData libURLVersion lineOffset ln ln1 localNames log log2 log10 longFilePath lower macToISO matchChunk matchText matrixMultiply max md5Digest median merge millisec millisecs millisecond milliseconds min monthNames nativeCharToNum normalizeText num number numToByte numToChar numToCodepoint numToNativeChar offset open openfiles openProcesses openProcessIDs openSockets paragraphOffset paramCount param params peerAddress pendingMessages platform popStdDev populationStandardDeviation populationVariance popVariance processID random randomBytes replaceText result revCreateXMLTree revCreateXMLTreeFromFile revCurrentRecord revCurrentRecordIsFirst revCurrentRecordIsLast revDatabaseColumnCount revDatabaseColumnIsNull revDatabaseColumnLengths revDatabaseColumnNames revDatabaseColumnNamed revDatabaseColumnNumbered revDatabaseColumnTypes revDatabaseConnectResult revDatabaseCursors revDatabaseID revDatabaseTableNames revDatabaseType revDataFromQuery revdb_closeCursor revdb_columnbynumber revdb_columncount revdb_columnisnull revdb_columnlengths revdb_columnnames revdb_columntypes revdb_commit revdb_connect revdb_connections revdb_connectionerr revdb_currentrecord revdb_cursorconnection revdb_cursorerr revdb_cursors revdb_dbtype revdb_disconnect revdb_execute revdb_iseof revdb_isbof revdb_movefirst revdb_movelast revdb_movenext revdb_moveprev revdb_query revdb_querylist revdb_recordcount revdb_rollback revdb_tablenames revGetDatabaseDriverPath revNumberOfRecords revOpenDatabase revOpenDatabases revQueryDatabase revQueryDatabaseBlob revQueryResult revQueryIsAtStart revQueryIsAtEnd revUnixFromMacPath revXMLAttribute revXMLAttributes revXMLAttributeValues revXMLChildContents revXMLChildNames revXMLCreateTreeFromFileWithNamespaces revXMLCreateTreeWithNamespaces revXMLDataFromXPathQuery revXMLEvaluateXPath revXMLFirstChild revXMLMatchingNode revXMLNextSibling revXMLNodeContents revXMLNumberOfChildren revXMLParent revXMLPreviousSibling revXMLRootNode revXMLRPC_CreateRequest revXMLRPC_Documents revXMLRPC_Error revXMLRPC_GetHost revXMLRPC_GetMethod revXMLRPC_GetParam revXMLText revXMLRPC_Execute revXMLRPC_GetParamCount revXMLRPC_GetParamNode revXMLRPC_GetParamType revXMLRPC_GetPath revXMLRPC_GetPort revXMLRPC_GetProtocol revXMLRPC_GetRequest revXMLRPC_GetResponse revXMLRPC_GetSocket revXMLTree revXMLTrees revXMLValidateDTD revZipDescribeItem revZipEnumerateItems revZipOpenArchives round sampVariance sec secs seconds sentenceOffset sha1Digest shell shortFilePath sin specialFolderPath sqrt standardDeviation statRound stdDev sum sysError systemVersion tan tempName textDecode textEncode tick ticks time to tokenOffset toLower toUpper transpose truewordOffset trunc uniDecode uniEncode upper URLDecode URLEncode URLStatus uuid value variableNames variance version waitDepth weekdayNames wordOffset xsltApplyStylesheet xsltApplyStylesheetFromFile xsltLoadStylesheet xsltLoadStylesheetFromFile add breakpoint cancel clear local variable file word line folder directory URL close socket process combine constant convert create new alias folder directory decrypt delete variable word line folder directory URL dispatch divide do encrypt filter get include intersect kill libURLDownloadToFile libURLFollowHttpRedirects libURLftpUpload libURLftpUploadFile libURLresetAll libUrlSetAuthCallback libURLSetCustomHTTPHeaders libUrlSetExpect100 libURLSetFTPListCommand libURLSetFTPMode libURLSetFTPStopTime libURLSetStatusCallback load multiply socket prepare process post seek rel relative read from process rename replace require resetAll resolve revAddXMLNode revAppendXML revCloseCursor revCloseDatabase revCommitDatabase revCopyFile revCopyFolder revCopyXMLNode revDeleteFolder revDeleteXMLNode revDeleteAllXMLTrees revDeleteXMLTree revExecuteSQL revGoURL revInsertXMLNode revMoveFolder revMoveToFirstRecord revMoveToLastRecord revMoveToNextRecord revMoveToPreviousRecord revMoveToRecord revMoveXMLNode revPutIntoXMLNode revRollBackDatabase revSetDatabaseDriverPath revSetXMLAttribute revXMLRPC_AddParam revXMLRPC_DeleteAllDocuments revXMLAddDTD revXMLRPC_Free revXMLRPC_FreeAll revXMLRPC_DeleteDocument revXMLRPC_DeleteParam revXMLRPC_SetHost revXMLRPC_SetMethod revXMLRPC_SetPort revXMLRPC_SetProtocol revXMLRPC_SetSocket revZipAddItemWithData revZipAddItemWithFile revZipAddUncompressedItemWithData revZipAddUncompressedItemWithFile revZipCancel revZipCloseArchive revZipDeleteItem revZipExtractItemToFile revZipExtractItemToVariable revZipSetProgressCallback revZipRenameItem revZipReplaceItemWithData revZipReplaceItemWithFile revZipOpenArchive send set sort split start stop subtract union unload wait write"},c:[t,{cN:"keyword",b:"\\bend\\sif\\b"},{cN:"function",bK:"function",e:"$",c:[t,i,e.ASM,e.QSM,e.BNM,e.CNM,a]},{cN:"function",b:"\\bend\\s+",e:"$",k:"end",c:[i,a],r:0},{bK:"command on",e:"$",c:[t,i,e.ASM,e.QSM,e.BNM,e.CNM,a]},{cN:"meta",v:[{b:"<\\?(rev|lc|livecode)",r:10},{b:"<\\?"},{b:"\\?>"}]},e.ASM,e.QSM,e.BNM,e.CNM,a].concat(r),i:";$|^\\[|^=|&|{"}}),e.registerLanguage("livescript",function(e){var t={keyword:"in if for while finally new do return else break catch instanceof throw try this switch continue typeof delete debugger case default function var with then unless until loop of by when and or is isnt not it that otherwise from to til fallthrough super case default function var void const let enum export import native __hasProp __extends __slice __bind __indexOf",literal:"true false null undefined yes no on off it that void",built_in:"npm require console print module global window document"},r="[A-Za-z$_](?:-[0-9A-Za-z$_]|[0-9A-Za-z$_])*",a=e.inherit(e.TM,{b:r}),i={cN:"subst",b:/#\{/,e:/}/,k:t},n={cN:"subst",b:/#[A-Za-z$_]/,e:/(?:\-[0-9A-Za-z$_]|[0-9A-Za-z$_])*/,k:t},o=[e.BNM,{cN:"number",b:"(\\b0[xX][a-fA-F0-9_]+)|(\\b\\d(\\d|_\\d)*(\\.(\\d(\\d|_\\d)*)?)?(_*[eE]([-+]\\d(_\\d|\\d)*)?)?[_a-z]*)",r:0,starts:{e:"(\\s*/)?",r:0}},{cN:"string",v:[{b:/'''/,e:/'''/,c:[e.BE]},{b:/'/,e:/'/,c:[e.BE]},{b:/"""/,e:/"""/,c:[e.BE,i,n]},{b:/"/,e:/"/,c:[e.BE,i,n]},{b:/\\/,e:/(\s|$)/,eE:!0}]},{cN:"regexp",v:[{b:"//",e:"//[gim]*",c:[i,e.HCM]},{b:/\/(?![ *])(\\\/|.)*?\/[gim]*(?=\W|$)/}]},{b:"@"+r},{b:"``",e:"``",eB:!0,eE:!0,sL:"javascript"}];i.c=o;var s={cN:"params",b:"\\(",rB:!0,c:[{b:/\(/,e:/\)/,k:t,c:["self"].concat(o)}]};return{aliases:["ls"],k:t,i:/\/\*/,c:o.concat([e.C("\\/\\*","\\*\\/"),e.HCM,{cN:"function",c:[a,s],rB:!0,v:[{b:"("+r+"\\s*(?:=|:=)\\s*)?(\\(.*\\))?\\s*\\B\\->\\*?",e:"\\->\\*?"},{b:"("+r+"\\s*(?:=|:=)\\s*)?!?(\\(.*\\))?\\s*\\B[-~]{1,2}>\\*?",e:"[-~]{1,2}>\\*?"},{b:"("+r+"\\s*(?:=|:=)\\s*)?(\\(.*\\))?\\s*\\B!?[-~]{1,2}>\\*?",e:"!?[-~]{1,2}>\\*?"}]},{cN:"class",bK:"class",e:"$",i:/[:="\[\]]/,c:[{bK:"extends",eW:!0,i:/[:="\[\]]/,c:[a]},a]},{b:r+":",e:":",rB:!0,rE:!0,r:0}])}}),e.registerLanguage("llvm",function(e){var t="([-a-zA-Z$._][\\w\\-$.]*)";return{k:"begin end true false declare define global constant private linker_private internal available_externally linkonce linkonce_odr weak weak_odr appending dllimport dllexport common default hidden protected extern_weak external thread_local zeroinitializer undef null to tail target triple datalayout volatile nuw nsw nnan ninf nsz arcp fast exact inbounds align addrspace section alias module asm sideeffect gc dbg linker_private_weak attributes blockaddress initialexec localdynamic localexec prefix unnamed_addr ccc fastcc coldcc x86_stdcallcc x86_fastcallcc arm_apcscc arm_aapcscc arm_aapcs_vfpcc ptx_device ptx_kernel intel_ocl_bicc msp430_intrcc spir_func spir_kernel x86_64_sysvcc x86_64_win64cc x86_thiscallcc cc c signext zeroext inreg sret nounwind noreturn noalias nocapture byval nest readnone readonly inlinehint noinline alwaysinline optsize ssp sspreq noredzone noimplicitfloat naked builtin cold nobuiltin noduplicate nonlazybind optnone returns_twice sanitize_address sanitize_memory sanitize_thread sspstrong uwtable returned type opaque eq ne slt sgt sle sge ult ugt ule uge oeq one olt ogt ole oge ord uno ueq une x acq_rel acquire alignstack atomic catch cleanup filter inteldialect max min monotonic nand personality release seq_cst singlethread umax umin unordered xchg add fadd sub fsub mul fmul udiv sdiv fdiv urem srem frem shl lshr ashr and or xor icmp fcmp phi call trunc zext sext fptrunc fpext uitofp sitofp fptoui fptosi inttoptr ptrtoint bitcast addrspacecast select va_arg ret br switch invoke unwind unreachable indirectbr landingpad resume malloc alloca free load store getelementptr extractelement insertelement shufflevector getresult extractvalue insertvalue atomicrmw cmpxchg fence argmemonly double",c:[{cN:"keyword",b:"i\\d+"},e.C(";","\\n",{r:0}),e.QSM,{cN:"string",v:[{b:'"',e:'[^\\\\]"'}],r:0},{cN:"title",v:[{b:"@"+t},{b:"@\\d+"},{b:"!"+t},{b:"!\\d+"+t}]},{cN:"symbol",v:[{b:"%"+t},{b:"%\\d+"},{b:"#\\d+"}]},{cN:"number",v:[{b:"0[xX][a-fA-F0-9]+"},{b:"-?\\d+(?:[.]\\d+)?(?:[eE][-+]?\\d+(?:[.]\\d+)?)?"}],r:0}]}}),e.registerLanguage("lsl",function(e){var t={cN:"subst",b:/\\[tn"\\]/},r={cN:"string",b:'"',e:'"',c:[t]},a={cN:"number",b:e.CNR},i={cN:"literal",v:[{b:"\\b(?:PI|TWO_PI|PI_BY_TWO|DEG_TO_RAD|RAD_TO_DEG|SQRT2)\\b"},{b:"\\b(?:XP_ERROR_(?:EXPERIENCES_DISABLED|EXPERIENCE_(?:DISABLED|SUSPENDED)|INVALID_(?:EXPERIENCE|PARAMETERS)|KEY_NOT_FOUND|MATURITY_EXCEEDED|NONE|NOT_(?:FOUND|PERMITTED(?:_LAND)?)|NO_EXPERIENCE|QUOTA_EXCEEDED|RETRY_UPDATE|STORAGE_EXCEPTION|STORE_DISABLED|THROTTLED|UNKNOWN_ERROR)|JSON_APPEND|STATUS_(?:PHYSICS|ROTATE_[XYZ]|PHANTOM|SANDBOX|BLOCK_GRAB(?:_OBJECT)?|(?:DIE|RETURN)_AT_EDGE|CAST_SHADOWS|OK|MALFORMED_PARAMS|TYPE_MISMATCH|BOUNDS_ERROR|NOT_(?:FOUND|SUPPORTED)|INTERNAL_ERROR|WHITELIST_FAILED)|AGENT(?:_(?:BY_(?:LEGACY_|USER)NAME|FLYING|ATTACHMENTS|SCRIPTED|MOUSELOOK|SITTING|ON_OBJECT|AWAY|WALKING|IN_AIR|TYPING|CROUCHING|BUSY|ALWAYS_RUN|AUTOPILOT|LIST_(?:PARCEL(?:_OWNER)?|REGION)))?|CAMERA_(?:PITCH|DISTANCE|BEHINDNESS_(?:ANGLE|LAG)|(?:FOCUS|POSITION)(?:_(?:THRESHOLD|LOCKED|LAG))?|FOCUS_OFFSET|ACTIVE)|ANIM_ON|LOOP|REVERSE|PING_PONG|SMOOTH|ROTATE|SCALE|ALL_SIDES|LINK_(?:ROOT|SET|ALL_(?:OTHERS|CHILDREN)|THIS)|ACTIVE|PASS(?:IVE|_(?:ALWAYS|IF_NOT_HANDLED|NEVER))|SCRIPTED|CONTROL_(?:FWD|BACK|(?:ROT_)?(?:LEFT|RIGHT)|UP|DOWN|(?:ML_)?LBUTTON)|PERMISSION_(?:RETURN_OBJECTS|DEBIT|OVERRIDE_ANIMATIONS|SILENT_ESTATE_MANAGEMENT|TAKE_CONTROLS|TRIGGER_ANIMATION|ATTACH|CHANGE_LINKS|(?:CONTROL|TRACK)_CAMERA|TELEPORT)|INVENTORY_(?:TEXTURE|SOUND|OBJECT|SCRIPT|LANDMARK|CLOTHING|NOTECARD|BODYPART|ANIMATION|GESTURE|ALL|NONE)|CHANGED_(?:INVENTORY|COLOR|SHAPE|SCALE|TEXTURE|LINK|ALLOWED_DROP|OWNER|REGION(?:_START)?|TELEPORT|MEDIA)|OBJECT_(?:CLICK_ACTION|HOVER_HEIGHT|LAST_OWNER_ID|(?:PHYSICS|SERVER|STREAMING)_COST|UNKNOWN_DETAIL|CHARACTER_TIME|PHANTOM|PHYSICS|TEMP_ON_REZ|NAME|DESC|POS|PRIM_(?:COUNT|EQUIVALENCE)|RETURN_(?:PARCEL(?:_OWNER)?|REGION)|REZZER_KEY|ROO?T|VELOCITY|OMEGA|OWNER|GROUP|CREATOR|ATTACHED_POINT|RENDER_WEIGHT|(?:BODY_SHAPE|PATHFINDING)_TYPE|(?:RUNNING|TOTAL)_SCRIPT_COUNT|TOTAL_INVENTORY_COUNT|SCRIPT_(?:MEMORY|TIME))|TYPE_(?:INTEGER|FLOAT|STRING|KEY|VECTOR|ROTATION|INVALID)|(?:DEBUG|PUBLIC)_CHANNEL|ATTACH_(?:AVATAR_CENTER|CHEST|HEAD|BACK|PELVIS|MOUTH|CHIN|NECK|NOSE|BELLY|[LR](?:SHOULDER|HAND|FOOT|EAR|EYE|[UL](?:ARM|LEG)|HIP)|(?:LEFT|RIGHT)_PEC|HUD_(?:CENTER_[12]|TOP_(?:RIGHT|CENTER|LEFT)|BOTTOM(?:_(?:RIGHT|LEFT))?)|[LR]HAND_RING1|TAIL_(?:BASE|TIP)|[LR]WING|FACE_(?:JAW|[LR]EAR|[LR]EYE|TOUNGE)|GROIN|HIND_[LR]FOOT)|LAND_(?:LEVEL|RAISE|LOWER|SMOOTH|NOISE|REVERT)|DATA_(?:ONLINE|NAME|BORN|SIM_(?:POS|STATUS|RATING)|PAYINFO)|PAYMENT_INFO_(?:ON_FILE|USED)|REMOTE_DATA_(?:CHANNEL|REQUEST|REPLY)|PSYS_(?:PART_(?:BF_(?:ZERO|ONE(?:_MINUS_(?:DEST_COLOR|SOURCE_(ALPHA|COLOR)))?|DEST_COLOR|SOURCE_(ALPHA|COLOR))|BLEND_FUNC_(DEST|SOURCE)|FLAGS|(?:START|END)_(?:COLOR|ALPHA|SCALE|GLOW)|MAX_AGE|(?:RIBBON|WIND|INTERP_(?:COLOR|SCALE)|BOUNCE|FOLLOW_(?:SRC|VELOCITY)|TARGET_(?:POS|LINEAR)|EMISSIVE)_MASK)|SRC_(?:MAX_AGE|PATTERN|ANGLE_(?:BEGIN|END)|BURST_(?:RATE|PART_COUNT|RADIUS|SPEED_(?:MIN|MAX))|ACCEL|TEXTURE|TARGET_KEY|OMEGA|PATTERN_(?:DROP|EXPLODE|ANGLE(?:_CONE(?:_EMPTY)?)?)))|VEHICLE_(?:REFERENCE_FRAME|TYPE_(?:NONE|SLED|CAR|BOAT|AIRPLANE|BALLOON)|(?:LINEAR|ANGULAR)_(?:FRICTION_TIMESCALE|MOTOR_DIRECTION)|LINEAR_MOTOR_OFFSET|HOVER_(?:HEIGHT|EFFICIENCY|TIMESCALE)|BUOYANCY|(?:LINEAR|ANGULAR)_(?:DEFLECTION_(?:EFFICIENCY|TIMESCALE)|MOTOR_(?:DECAY_)?TIMESCALE)|VERTICAL_ATTRACTION_(?:EFFICIENCY|TIMESCALE)|BANKING_(?:EFFICIENCY|MIX|TIMESCALE)|FLAG_(?:NO_DEFLECTION_UP|LIMIT_(?:ROLL_ONLY|MOTOR_UP)|HOVER_(?:(?:WATER|TERRAIN|UP)_ONLY|GLOBAL_HEIGHT)|MOUSELOOK_(?:STEER|BANK)|CAMERA_DECOUPLED))|PRIM_(?:ALPHA_MODE(?:_(?:BLEND|EMISSIVE|MASK|NONE))?|NORMAL|SPECULAR|TYPE(?:_(?:BOX|CYLINDER|PRISM|SPHERE|TORUS|TUBE|RING|SCULPT))?|HOLE_(?:DEFAULT|CIRCLE|SQUARE|TRIANGLE)|MATERIAL(?:_(?:STONE|METAL|GLASS|WOOD|FLESH|PLASTIC|RUBBER))?|SHINY_(?:NONE|LOW|MEDIUM|HIGH)|BUMP_(?:NONE|BRIGHT|DARK|WOOD|BARK|BRICKS|CHECKER|CONCRETE|TILE|STONE|DISKS|GRAVEL|BLOBS|SIDING|LARGETILE|STUCCO|SUCTION|WEAVE)|TEXGEN_(?:DEFAULT|PLANAR)|SCULPT_(?:TYPE_(?:SPHERE|TORUS|PLANE|CYLINDER|MASK)|FLAG_(?:MIRROR|INVERT))|PHYSICS(?:_(?:SHAPE_(?:CONVEX|NONE|PRIM|TYPE)))?|(?:POS|ROT)_LOCAL|SLICE|TEXT|FLEXIBLE|POINT_LIGHT|TEMP_ON_REZ|PHANTOM|POSITION|SIZE|ROTATION|TEXTURE|NAME|OMEGA|DESC|LINK_TARGET|COLOR|BUMP_SHINY|FULLBRIGHT|TEXGEN|GLOW|MEDIA_(?:ALT_IMAGE_ENABLE|CONTROLS|(?:CURRENT|HOME)_URL|AUTO_(?:LOOP|PLAY|SCALE|ZOOM)|FIRST_CLICK_INTERACT|(?:WIDTH|HEIGHT)_PIXELS|WHITELIST(?:_ENABLE)?|PERMS_(?:INTERACT|CONTROL)|PARAM_MAX|CONTROLS_(?:STANDARD|MINI)|PERM_(?:NONE|OWNER|GROUP|ANYONE)|MAX_(?:URL_LENGTH|WHITELIST_(?:SIZE|COUNT)|(?:WIDTH|HEIGHT)_PIXELS)))|MASK_(?:BASE|OWNER|GROUP|EVERYONE|NEXT)|PERM_(?:TRANSFER|MODIFY|COPY|MOVE|ALL)|PARCEL_(?:MEDIA_COMMAND_(?:STOP|PAUSE|PLAY|LOOP|TEXTURE|URL|TIME|AGENT|UNLOAD|AUTO_ALIGN|TYPE|SIZE|DESC|LOOP_SET)|FLAG_(?:ALLOW_(?:FLY|(?:GROUP_)?SCRIPTS|LANDMARK|TERRAFORM|DAMAGE|CREATE_(?:GROUP_)?OBJECTS)|USE_(?:ACCESS_(?:GROUP|LIST)|BAN_LIST|LAND_PASS_LIST)|LOCAL_SOUND_ONLY|RESTRICT_PUSHOBJECT|ALLOW_(?:GROUP|ALL)_OBJECT_ENTRY)|COUNT_(?:TOTAL|OWNER|GROUP|OTHER|SELECTED|TEMP)|DETAILS_(?:NAME|DESC|OWNER|GROUP|AREA|ID|SEE_AVATARS))|LIST_STAT_(?:MAX|MIN|MEAN|MEDIAN|STD_DEV|SUM(?:_SQUARES)?|NUM_COUNT|GEOMETRIC_MEAN|RANGE)|PAY_(?:HIDE|DEFAULT)|REGION_FLAG_(?:ALLOW_DAMAGE|FIXED_SUN|BLOCK_TERRAFORM|SANDBOX|DISABLE_(?:COLLISIONS|PHYSICS)|BLOCK_FLY|ALLOW_DIRECT_TELEPORT|RESTRICT_PUSHOBJECT)|HTTP_(?:METHOD|MIMETYPE|BODY_(?:MAXLENGTH|TRUNCATED)|CUSTOM_HEADER|PRAGMA_NO_CACHE|VERBOSE_THROTTLE|VERIFY_CERT)|STRING_(?:TRIM(?:_(?:HEAD|TAIL))?)|CLICK_ACTION_(?:NONE|TOUCH|SIT|BUY|PAY|OPEN(?:_MEDIA)?|PLAY|ZOOM)|TOUCH_INVALID_FACE|PROFILE_(?:NONE|SCRIPT_MEMORY)|RC_(?:DATA_FLAGS|DETECT_PHANTOM|GET_(?:LINK_NUM|NORMAL|ROOT_KEY)|MAX_HITS|REJECT_(?:TYPES|AGENTS|(?:NON)?PHYSICAL|LAND))|RCERR_(?:CAST_TIME_EXCEEDED|SIM_PERF_LOW|UNKNOWN)|ESTATE_ACCESS_(?:ALLOWED_(?:AGENT|GROUP)_(?:ADD|REMOVE)|BANNED_AGENT_(?:ADD|REMOVE))|DENSITY|FRICTION|RESTITUTION|GRAVITY_MULTIPLIER|KFM_(?:COMMAND|CMD_(?:PLAY|STOP|PAUSE)|MODE|FORWARD|LOOP|PING_PONG|REVERSE|DATA|ROTATION|TRANSLATION)|ERR_(?:GENERIC|PARCEL_PERMISSIONS|MALFORMED_PARAMS|RUNTIME_PERMISSIONS|THROTTLED)|CHARACTER_(?:CMD_(?:(?:SMOOTH_)?STOP|JUMP)|DESIRED_(?:TURN_)?SPEED|RADIUS|STAY_WITHIN_PARCEL|LENGTH|ORIENTATION|ACCOUNT_FOR_SKIPPED_FRAMES|AVOIDANCE_MODE|TYPE(?:_(?:[ABCD]|NONE))?|MAX_(?:DECEL|TURN_RADIUS|(?:ACCEL|SPEED)))|PURSUIT_(?:OFFSET|FUZZ_FACTOR|GOAL_TOLERANCE|INTERCEPT)|REQUIRE_LINE_OF_SIGHT|FORCE_DIRECT_PATH|VERTICAL|HORIZONTAL|AVOID_(?:CHARACTERS|DYNAMIC_OBSTACLES|NONE)|PU_(?:EVADE_(?:HIDDEN|SPOTTED)|FAILURE_(?:DYNAMIC_PATHFINDING_DISABLED|INVALID_(?:GOAL|START)|NO_(?:NAVMESH|VALID_DESTINATION)|OTHER|TARGET_GONE|(?:PARCEL_)?UNREACHABLE)|(?:GOAL|SLOWDOWN_DISTANCE)_REACHED)|TRAVERSAL_TYPE(?:_(?:FAST|NONE|SLOW))?|CONTENT_TYPE_(?:ATOM|FORM|HTML|JSON|LLSD|RSS|TEXT|XHTML|XML)|GCNP_(?:RADIUS|STATIC)|(?:PATROL|WANDER)_PAUSE_AT_WAYPOINTS|OPT_(?:AVATAR|CHARACTER|EXCLUSION_VOLUME|LEGACY_LINKSET|MATERIAL_VOLUME|OTHER|STATIC_OBSTACLE|WALKABLE)|SIM_STAT_PCT_CHARS_STEPPED)\\b"},{b:"\\b(?:FALSE|TRUE)\\b"},{b:"\\b(?:ZERO_ROTATION)\\b"},{b:"\\b(?:EOF|JSON_(?:ARRAY|DELETE|FALSE|INVALID|NULL|NUMBER|OBJECT|STRING|TRUE)|NULL_KEY|TEXTURE_(?:BLANK|DEFAULT|MEDIA|PLYWOOD|TRANSPARENT)|URL_REQUEST_(?:GRANTED|DENIED))\\b"},{b:"\\b(?:ZERO_VECTOR|TOUCH_INVALID_(?:TEXCOORD|VECTOR))\\b"}]},n={cN:"built_in",b:"\\b(?:ll(?:AgentInExperience|(?:Create|DataSize|Delete|KeyCount|Keys|Read|Update)KeyValue|GetExperience(?:Details|ErrorMessage)|ReturnObjectsBy(?:ID|Owner)|Json(?:2List|[GS]etValue|ValueType)|Sin|Cos|Tan|Atan2|Sqrt|Pow|Abs|Fabs|Frand|Floor|Ceil|Round|Vec(?:Mag|Norm|Dist)|Rot(?:Between|2(?:Euler|Fwd|Left|Up))|(?:Euler|Axes)2Rot|Whisper|(?:Region|Owner)?Say|Shout|Listen(?:Control|Remove)?|Sensor(?:Repeat|Remove)?|Detected(?:Name|Key|Owner|Type|Pos|Vel|Grab|Rot|Group|LinkNumber)|Die|Ground|Wind|(?:[GS]et)(?:AnimationOverride|MemoryLimit|PrimMediaParams|ParcelMusicURL|Object(?:Desc|Name)|PhysicsMaterial|Status|Scale|Color|Alpha|Texture|Pos|Rot|Force|Torque)|ResetAnimationOverride|(?:Scale|Offset|Rotate)Texture|(?:Rot)?Target(?:Remove)?|(?:Stop)?MoveToTarget|Apply(?:Rotational)?Impulse|Set(?:KeyframedMotion|ContentType|RegionPos|(?:Angular)?Velocity|Buoyancy|HoverHeight|ForceAndTorque|TimerEvent|ScriptState|Damage|TextureAnim|Sound(?:Queueing|Radius)|Vehicle(?:Type|(?:Float|Vector|Rotation)Param)|(?:Touch|Sit)?Text|Camera(?:Eye|At)Offset|PrimitiveParams|ClickAction|Link(?:Alpha|Color|PrimitiveParams(?:Fast)?|Texture(?:Anim)?|Camera|Media)|RemoteScriptAccessPin|PayPrice|LocalRot)|ScaleByFactor|Get(?:(?:Max|Min)ScaleFactor|ClosestNavPoint|StaticPath|SimStats|Env|PrimitiveParams|Link(?:PrimitiveParams|Number(?:OfSides)?|Key|Name|Media)|HTTPHeader|FreeURLs|Object(?:Details|PermMask|PrimCount)|Parcel(?:MaxPrims|Details|Prim(?:Count|Owners))|Attached(?:List)?|(?:SPMax|Free|Used)Memory|Region(?:Name|TimeDilation|FPS|Corner|AgentCount)|Root(?:Position|Rotation)|UnixTime|(?:Parcel|Region)Flags|(?:Wall|GMT)clock|SimulatorHostname|BoundingBox|GeometricCenter|Creator|NumberOf(?:Prims|NotecardLines|Sides)|Animation(?:List)?|(?:Camera|Local)(?:Pos|Rot)|Vel|Accel|Omega|Time(?:stamp|OfDay)|(?:Object|CenterOf)?Mass|MassMKS|Energy|Owner|(?:Owner)?Key|SunDirection|Texture(?:Offset|Scale|Rot)|Inventory(?:Number|Name|Key|Type|Creator|PermMask)|Permissions(?:Key)?|StartParameter|List(?:Length|EntryType)|Date|Agent(?:Size|Info|Language|List)|LandOwnerAt|NotecardLine|Script(?:Name|State))|(?:Get|Reset|GetAndReset)Time|PlaySound(?:Slave)?|LoopSound(?:Master|Slave)?|(?:Trigger|Stop|Preload)Sound|(?:(?:Get|Delete)Sub|Insert)String|To(?:Upper|Lower)|Give(?:InventoryList|Money)|RezObject|(?:Stop)?LookAt|Sleep|CollisionFilter|(?:Take|Release)Controls|DetachFromAvatar|AttachToAvatar(?:Temp)?|InstantMessage|(?:GetNext)?Email|StopHover|MinEventDelay|RotLookAt|String(?:Length|Trim)|(?:Start|Stop)Animation|TargetOmega|Request(?:Experience)?Permissions|(?:Create|Break)Link|BreakAllLinks|(?:Give|Remove)Inventory|Water|PassTouches|Request(?:Agent|Inventory)Data|TeleportAgent(?:Home|GlobalCoords)?|ModifyLand|CollisionSound|ResetScript|MessageLinked|PushObject|PassCollisions|AxisAngle2Rot|Rot2(?:Axis|Angle)|A(?:cos|sin)|AngleBetween|AllowInventoryDrop|SubStringIndex|List2(?:CSV|Integer|Json|Float|String|Key|Vector|Rot|List(?:Strided)?)|DeleteSubList|List(?:Statistics|Sort|Randomize|(?:Insert|Find|Replace)List)|EdgeOfWorld|AdjustSoundVolume|Key2Name|TriggerSoundLimited|EjectFromLand|(?:CSV|ParseString)2List|OverMyLand|SameGroup|UnSit|Ground(?:Slope|Normal|Contour)|GroundRepel|(?:Set|Remove)VehicleFlags|(?:AvatarOn)?(?:Link)?SitTarget|Script(?:Danger|Profiler)|Dialog|VolumeDetect|ResetOtherScript|RemoteLoadScriptPin|(?:Open|Close)RemoteDataChannel|SendRemoteData|RemoteDataReply|(?:Integer|String)ToBase64|XorBase64|Log(?:10)?|Base64To(?:String|Integer)|ParseStringKeepNulls|RezAtRoot|RequestSimulatorData|ForceMouselook|(?:Load|Release|(?:E|Une)scape)URL|ParcelMedia(?:CommandList|Query)|ModPow|MapDestination|(?:RemoveFrom|AddTo|Reset)Land(?:Pass|Ban)List|(?:Set|Clear)CameraParams|HTTP(?:Request|Response)|TextBox|DetectedTouch(?:UV|Face|Pos|(?:N|Bin)ormal|ST)|(?:MD5|SHA1|DumpList2)String|Request(?:Secure)?URL|Clear(?:Prim|Link)Media|(?:Link)?ParticleSystem|(?:Get|Request)(?:Username|DisplayName)|RegionSayTo|CastRay|GenerateKey|TransferLindenDollars|ManageEstateAccess|(?:Create|Delete)Character|ExecCharacterCmd|Evade|FleeFrom|NavigateTo|PatrolPoints|Pursue|UpdateCharacter|WanderWithin))\\b"};return{i:":",c:[r,{cN:"comment",v:[e.C("//","$"),e.C("/\\*","\\*/")]},a,{cN:"section",v:[{b:"\\b(?:state|default)\\b"},{b:"\\b(?:state_(?:entry|exit)|touch(?:_(?:start|end))?|(?:land_)?collision(?:_(?:start|end))?|timer|listen|(?:no_)?sensor|control|(?:not_)?at_(?:rot_)?target|money|email|experience_permissions(?:_denied)?|run_time_permissions|changed|attach|dataserver|moving_(?:start|end)|link_message|(?:on|object)_rez|remote_data|http_re(?:sponse|quest)|path_update|transaction_result)\\b"}]},n,i,{cN:"type",b:"\\b(?:integer|float|string|key|vector|quaternion|rotation|list)\\b"}]}}),e.registerLanguage("lua",function(e){var t="\\[=*\\[",r="\\]=*\\]",a={b:t,e:r,c:["self"]},i=[e.C("--(?!"+t+")","$"),e.C("--"+t,r,{c:[a],r:10})];return{l:e.UIR,k:{literal:"true false nil",keyword:"and break do else elseif end for goto if in local not or repeat return then until while",built_in:"_G _ENV _VERSION __index __newindex __mode __call __metatable __tostring __len __gc __add __sub __mul __div __mod __pow __concat __unm __eq __lt __le assert collectgarbage dofile error getfenv getmetatable ipairs load loadfile loadstringmodule next pairs pcall print rawequal rawget rawset require select setfenvsetmetatable tonumber tostring type unpack xpcall arg selfcoroutine resume yield status wrap create running debug getupvalue debug sethook getmetatable gethook setmetatable setlocal traceback setfenv getinfo setupvalue getlocal getregistry getfenv io lines write close flush open output type read stderr stdin input stdout popen tmpfile math log max acos huge ldexp pi cos tanh pow deg tan cosh sinh random randomseed frexp ceil floor rad abs sqrt modf asin min mod fmod log10 atan2 exp sin atan os exit setlocale date getenv difftime remove time clock tmpname rename execute package preload loadlib loaded loaders cpath config path seeall string sub upper len gfind rep find match char dump gmatch reverse byte format gsub lower table setn insert getn foreachi maxn foreach concat sort remove" -},c:i.concat([{cN:"function",bK:"function",e:"\\)",c:[e.inherit(e.TM,{b:"([_a-zA-Z]\\w*\\.)*([_a-zA-Z]\\w*:)?[_a-zA-Z]\\w*"}),{cN:"params",b:"\\(",eW:!0,c:i}].concat(i)},e.CNM,e.ASM,e.QSM,{cN:"string",b:t,e:r,c:[a],r:5}])}}),e.registerLanguage("makefile",function(e){var t={cN:"variable",v:[{b:"\\$\\("+e.UIR+"\\)",c:[e.BE]},{b:/\$[@%"},{b:"<=",r:0},{b:"=>",r:0},{b:"/\\\\"},{b:"\\\\/"}]},l={cN:"built_in",v:[{b:":-\\|-->"},{b:"=",r:0}]};return{aliases:["m","moo"],k:t,c:[s,l,r,e.CBCM,a,e.NM,i,n,{b:/:-/}]}}),e.registerLanguage("mipsasm",function(e){return{cI:!0,aliases:["mips"],l:"\\.?"+e.IR,k:{meta:".2byte .4byte .align .ascii .asciz .balign .byte .code .data .else .end .endif .endm .endr .equ .err .exitm .extern .global .hword .if .ifdef .ifndef .include .irp .long .macro .rept .req .section .set .skip .space .text .word .ltorg ",built_in:"$0 $1 $2 $3 $4 $5 $6 $7 $8 $9 $10 $11 $12 $13 $14 $15 $16 $17 $18 $19 $20 $21 $22 $23 $24 $25 $26 $27 $28 $29 $30 $31 zero at v0 v1 a0 a1 a2 a3 a4 a5 a6 a7 t0 t1 t2 t3 t4 t5 t6 t7 t8 t9 s0 s1 s2 s3 s4 s5 s6 s7 s8 k0 k1 gp sp fp ra $f0 $f1 $f2 $f2 $f4 $f5 $f6 $f7 $f8 $f9 $f10 $f11 $f12 $f13 $f14 $f15 $f16 $f17 $f18 $f19 $f20 $f21 $f22 $f23 $f24 $f25 $f26 $f27 $f28 $f29 $f30 $f31 Context Random EntryLo0 EntryLo1 Context PageMask Wired EntryHi HWREna BadVAddr Count Compare SR IntCtl SRSCtl SRSMap Cause EPC PRId EBase Config Config1 Config2 Config3 LLAddr Debug DEPC DESAVE CacheErr ECC ErrorEPC TagLo DataLo TagHi DataHi WatchLo WatchHi PerfCtl PerfCnt "},c:[{cN:"keyword",b:"\\b(addi?u?|andi?|b(al)?|beql?|bgez(al)?l?|bgtzl?|blezl?|bltz(al)?l?|bnel?|cl[oz]|divu?|ext|ins|j(al)?|jalr(.hb)?|jr(.hb)?|lbu?|lhu?|ll|lui|lw[lr]?|maddu?|mfhi|mflo|movn|movz|move|msubu?|mthi|mtlo|mul|multu?|nop|nor|ori?|rotrv?|sb|sc|se[bh]|sh|sllv?|slti?u?|srav?|srlv?|subu?|sw[lr]?|xori?|wsbh|abs.[sd]|add.[sd]|alnv.ps|bc1[ft]l?|c.(s?f|un|u?eq|[ou]lt|[ou]le|ngle?|seq|l[et]|ng[et]).[sd]|(ceil|floor|round|trunc).[lw].[sd]|cfc1|cvt.d.[lsw]|cvt.l.[dsw]|cvt.ps.s|cvt.s.[dlw]|cvt.s.p[lu]|cvt.w.[dls]|div.[ds]|ldx?c1|luxc1|lwx?c1|madd.[sd]|mfc1|mov[fntz]?.[ds]|msub.[sd]|mth?c1|mul.[ds]|neg.[ds]|nmadd.[ds]|nmsub.[ds]|p[lu][lu].ps|recip.fmt|r?sqrt.[ds]|sdx?c1|sub.[ds]|suxc1|swx?c1|break|cache|d?eret|[de]i|ehb|mfc0|mtc0|pause|prefx?|rdhwr|rdpgpr|sdbbp|ssnop|synci?|syscall|teqi?|tgei?u?|tlb(p|r|w[ir])|tlti?u?|tnei?|wait|wrpgpr)",e:"\\s"},e.C("[;#]","$"),e.CBCM,e.QSM,{cN:"string",b:"'",e:"[^\\\\]'",r:0},{cN:"title",b:"\\|",e:"\\|",i:"\\n",r:0},{cN:"number",v:[{b:"0x[0-9a-f]+"},{b:"\\b-?\\d+"}],r:0},{cN:"symbol",v:[{b:"^\\s*[a-z_\\.\\$][a-z0-9_\\.\\$]+:"},{b:"^\\s*[0-9]+:"},{b:"[0-9]+[bf]"}],r:0}],i:"/"}}),e.registerLanguage("mizar",function(e){return{k:"environ vocabularies notations constructors definitions registrations theorems schemes requirements begin end definition registration cluster existence pred func defpred deffunc theorem proof let take assume then thus hence ex for st holds consider reconsider such that and in provided of as from be being by means equals implies iff redefine define now not or attr is mode suppose per cases set thesis contradiction scheme reserve struct correctness compatibility coherence symmetry assymetry reflexivity irreflexivity connectedness uniqueness commutativity idempotence involutiveness projectivity",c:[e.C("::","$")]}}),e.registerLanguage("perl",function(e){var t="getpwent getservent quotemeta msgrcv scalar kill dbmclose undef lc ma syswrite tr send umask sysopen shmwrite vec qx utime local oct semctl localtime readpipe do return format read sprintf dbmopen pop getpgrp not getpwnam rewinddir qqfileno qw endprotoent wait sethostent bless s|0 opendir continue each sleep endgrent shutdown dump chomp connect getsockname die socketpair close flock exists index shmgetsub for endpwent redo lstat msgctl setpgrp abs exit select print ref gethostbyaddr unshift fcntl syscall goto getnetbyaddr join gmtime symlink semget splice x|0 getpeername recv log setsockopt cos last reverse gethostbyname getgrnam study formline endhostent times chop length gethostent getnetent pack getprotoent getservbyname rand mkdir pos chmod y|0 substr endnetent printf next open msgsnd readdir use unlink getsockopt getpriority rindex wantarray hex system getservbyport endservent int chr untie rmdir prototype tell listen fork shmread ucfirst setprotoent else sysseek link getgrgid shmctl waitpid unpack getnetbyname reset chdir grep split require caller lcfirst until warn while values shift telldir getpwuid my getprotobynumber delete and sort uc defined srand accept package seekdir getprotobyname semop our rename seek if q|0 chroot sysread setpwent no crypt getc chown sqrt write setnetent setpriority foreach tie sin msgget map stat getlogin unless elsif truncate exec keys glob tied closedirioctl socket readlink eval xor readline binmode setservent eof ord bind alarm pipe atan2 getgrent exp time push setgrent gt lt or ne m|0 break given say state when",r={cN:"subst",b:"[$@]\\{",e:"\\}",k:t},a={b:"->{",e:"}"},i={v:[{b:/\$\d/},{b:/[\$%@](\^\w\b|#\w+(::\w+)*|{\w+}|\w+(::\w*)*)/},{b:/[\$%@][^\s\w{]/,r:0}]},n=[e.BE,r,i],o=[i,e.HCM,e.C("^\\=\\w","\\=cut",{eW:!0}),a,{cN:"string",c:n,v:[{b:"q[qwxr]?\\s*\\(",e:"\\)",r:5},{b:"q[qwxr]?\\s*\\[",e:"\\]",r:5},{b:"q[qwxr]?\\s*\\{",e:"\\}",r:5},{b:"q[qwxr]?\\s*\\|",e:"\\|",r:5},{b:"q[qwxr]?\\s*\\<",e:"\\>",r:5},{b:"qw\\s+q",e:"q",r:5},{b:"'",e:"'",c:[e.BE]},{b:'"',e:'"'},{b:"`",e:"`",c:[e.BE]},{b:"{\\w+}",c:[],r:0},{b:"-?\\w+\\s*\\=\\>",c:[],r:0}]},{cN:"number",b:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",r:0},{b:"(\\/\\/|"+e.RSR+"|\\b(split|return|print|reverse|grep)\\b)\\s*",k:"split return print reverse grep",r:0,c:[e.HCM,{cN:"regexp",b:"(s|tr|y)/(\\\\.|[^/])*/(\\\\.|[^/])*/[a-z]*",r:10},{cN:"regexp",b:"(m|qr)?/",e:"/[a-z]*",c:[e.BE],r:0}]},{cN:"function",bK:"sub",e:"(\\s*\\(.*?\\))?[;{]",eE:!0,r:5,c:[e.TM]},{b:"-\\w\\b",r:0},{b:"^__DATA__$",e:"^__END__$",sL:"mojolicious",c:[{b:"^@@.*",e:"$",cN:"comment"}]}];return r.c=o,a.c=o,{aliases:["pl","pm"],l:/[\w\.]+/,k:t,c:o}}),e.registerLanguage("mojolicious",function(e){return{sL:"xml",c:[{cN:"meta",b:"^__(END|DATA)__$"},{b:"^\\s*%{1,2}={0,2}",e:"$",sL:"perl"},{b:"<%{1,2}={0,2}",e:"={0,1}%>",sL:"perl",eB:!0,eE:!0}]}}),e.registerLanguage("monkey",function(e){var t={cN:"number",r:0,v:[{b:"[$][a-fA-F0-9]+"},e.NM]};return{cI:!0,k:{keyword:"public private property continue exit extern new try catch eachin not abstract final select case default const local global field end if then else elseif endif while wend repeat until forever for to step next return module inline throw import",built_in:"DebugLog DebugStop Error Print ACos ACosr ASin ASinr ATan ATan2 ATan2r ATanr Abs Abs Ceil Clamp Clamp Cos Cosr Exp Floor Log Max Max Min Min Pow Sgn Sgn Sin Sinr Sqrt Tan Tanr Seed PI HALFPI TWOPI",literal:"true false null and or shl shr mod"},i:/\/\*/,c:[e.C("#rem","#end"),e.C("'","$",{r:0}),{cN:"function",bK:"function method",e:"[(=:]|$",i:/\n/,c:[e.UTM]},{cN:"class",bK:"class interface",e:"$",c:[{bK:"extends implements"},e.UTM]},{cN:"built_in",b:"\\b(self|super)\\b"},{cN:"meta",b:"\\s*#",e:"$",k:{"meta-keyword":"if else elseif endif end then"}},{cN:"meta",b:"^\\s*strict\\b"},{bK:"alias",e:"=",c:[e.UTM]},e.QSM,t]}}),e.registerLanguage("moonscript",function(e){var t={keyword:"if then not for in while do return else elseif break continue switch and or unless when class extends super local import export from using",literal:"true false nil",built_in:"_G _VERSION assert collectgarbage dofile error getfenv getmetatable ipairs load loadfile loadstring module next pairs pcall print rawequal rawget rawset require select setfenv setmetatable tonumber tostring type unpack xpcall coroutine debug io math os package string table"},r="[A-Za-z$_][0-9A-Za-z$_]*",a={cN:"subst",b:/#\{/,e:/}/,k:t},i=[e.inherit(e.CNM,{starts:{e:"(\\s*/)?",r:0}}),{cN:"string",v:[{b:/'/,e:/'/,c:[e.BE]},{b:/"/,e:/"/,c:[e.BE,a]}]},{cN:"built_in",b:"@__"+e.IR},{b:"@"+e.IR},{b:e.IR+"\\\\"+e.IR}];a.c=i;var n=e.inherit(e.TM,{b:r}),o="(\\(.*\\))?\\s*\\B[-=]>",s={cN:"params",b:"\\([^\\(]",rB:!0,c:[{b:/\(/,e:/\)/,k:t,c:["self"].concat(i)}]};return{aliases:["moon"],k:t,i:/\/\*/,c:i.concat([e.C("--","$"),{cN:"function",b:"^\\s*"+r+"\\s*=\\s*"+o,e:"[-=]>",rB:!0,c:[n,s]},{b:/[\(,:=]\s*/,r:0,c:[{cN:"function",b:o,e:"[-=]>",rB:!0,c:[s]}]},{cN:"class",bK:"class",e:"$",i:/[:="\[\]]/,c:[{bK:"extends",eW:!0,i:/[:="\[\]]/,c:[n]},n]},{cN:"name",b:r+":",e:":",rB:!0,rE:!0,r:0}])}}),e.registerLanguage("n1ql",function(e){return{cI:!0,c:[{bK:"build create index delete drop explain infer|10 insert merge prepare select update upsert|10",e:/;/,eW:!0,k:{keyword:"all alter analyze and any array as asc begin between binary boolean break bucket build by call case cast cluster collate collection commit connect continue correlate cover create database dataset datastore declare decrement delete derived desc describe distinct do drop each element else end every except exclude execute exists explain fetch first flatten for force from function grant group gsi having if ignore ilike in include increment index infer inline inner insert intersect into is join key keys keyspace known last left let letting like limit lsm map mapping matched materialized merge minus namespace nest not number object offset on option or order outer over parse partition password path pool prepare primary private privilege procedure public raw realm reduce rename return returning revoke right role rollback satisfies schema select self semi set show some start statistics string system then to transaction trigger truncate under union unique unknown unnest unset update upsert use user using validate value valued values via view when where while with within work xor",literal:"true false null missing|5",built_in:"array_agg array_append array_concat array_contains array_count array_distinct array_ifnull array_length array_max array_min array_position array_prepend array_put array_range array_remove array_repeat array_replace array_reverse array_sort array_sum avg count max min sum greatest least ifmissing ifmissingornull ifnull missingif nullif ifinf ifnan ifnanorinf naninf neginfif posinfif clock_millis clock_str date_add_millis date_add_str date_diff_millis date_diff_str date_part_millis date_part_str date_trunc_millis date_trunc_str duration_to_str millis str_to_millis millis_to_str millis_to_utc millis_to_zone_name now_millis now_str str_to_duration str_to_utc str_to_zone_name decode_json encode_json encoded_size poly_length base64 base64_encode base64_decode meta uuid abs acos asin atan atan2 ceil cos degrees e exp ln log floor pi power radians random round sign sin sqrt tan trunc object_length object_names object_pairs object_inner_pairs object_values object_inner_values object_add object_put object_remove object_unwrap regexp_contains regexp_like regexp_position regexp_replace contains initcap length lower ltrim position repeat replace rtrim split substr title trim upper isarray isatom isboolean isnumber isobject isstring type toarray toatom toboolean tonumber toobject tostring"},c:[{cN:"string",b:"'",e:"'",c:[e.BE],r:0},{cN:"string",b:'"',e:'"',c:[e.BE],r:0},{cN:"symbol",b:"`",e:"`",c:[e.BE],r:2},e.CNM,e.CBCM]},e.CBCM]}}),e.registerLanguage("nginx",function(e){var t={cN:"variable",v:[{b:/\$\d+/},{b:/\$\{/,e:/}/},{b:"[\\$\\@]"+e.UIR}]},r={eW:!0,l:"[a-z/_]+",k:{literal:"on off yes no true false none blocked debug info notice warn error crit select break last permanent redirect kqueue rtsig epoll poll /dev/poll"},r:0,i:"=>",c:[e.HCM,{cN:"string",c:[e.BE,t],v:[{b:/"/,e:/"/},{b:/'/,e:/'/}]},{b:"([a-z]+):/",e:"\\s",eW:!0,eE:!0,c:[t]},{cN:"regexp",c:[e.BE,t],v:[{b:"\\s\\^",e:"\\s|{|;",rE:!0},{b:"~\\*?\\s+",e:"\\s|{|;",rE:!0},{b:"\\*(\\.[a-z\\-]+)+"},{b:"([a-z\\-]+\\.)+\\*"}]},{cN:"number",b:"\\b\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}(:\\d{1,5})?\\b"},{cN:"number",b:"\\b\\d+[kKmMgGdshdwy]*\\b",r:0},t]};return{aliases:["nginxconf"],c:[e.HCM,{b:e.UIR+"\\s+{",rB:!0,e:"{",c:[{cN:"section",b:e.UIR}],r:0},{b:e.UIR+"\\s",e:";|{",rB:!0,c:[{cN:"attribute",b:e.UIR,starts:r}],r:0}],i:"[^\\s\\}]"}}),e.registerLanguage("nimrod",function(e){return{aliases:["nim"],k:{keyword:"addr and as asm bind block break case cast const continue converter discard distinct div do elif else end enum except export finally for from generic if import in include interface is isnot iterator let macro method mixin mod nil not notin object of or out proc ptr raise ref return shl shr static template try tuple type using var when while with without xor yield",literal:"shared guarded stdin stdout stderr result true false",built_in:"int int8 int16 int32 int64 uint uint8 uint16 uint32 uint64 float float32 float64 bool char string cstring pointer expr stmt void auto any range array openarray varargs seq set clong culong cchar cschar cshort cint csize clonglong cfloat cdouble clongdouble cuchar cushort cuint culonglong cstringarray semistatic"},c:[{cN:"meta",b:/{\./,e:/\.}/,r:10},{cN:"string",b:/[a-zA-Z]\w*"/,e:/"/,c:[{b:/""/}]},{cN:"string",b:/([a-zA-Z]\w*)?"""/,e:/"""/},e.QSM,{cN:"type",b:/\b[A-Z]\w+\b/,r:0},{cN:"number",r:0,v:[{b:/\b(0[xX][0-9a-fA-F][_0-9a-fA-F]*)('?[iIuU](8|16|32|64))?/},{b:/\b(0o[0-7][_0-7]*)('?[iIuUfF](8|16|32|64))?/},{b:/\b(0(b|B)[01][_01]*)('?[iIuUfF](8|16|32|64))?/},{b:/\b(\d[_\d]*)('?[iIuUfF](8|16|32|64))?/}]},e.HCM]}}),e.registerLanguage("nix",function(e){var t={keyword:"rec with let in inherit assert if else then",literal:"true false or and null",built_in:"import abort baseNameOf dirOf isNull builtins map removeAttrs throw toString derivation"},r={cN:"subst",b:/\$\{/,e:/}/,k:t},a={b:/[a-zA-Z0-9-_]+(\s*=)/,rB:!0,r:0,c:[{cN:"attr",b:/\S+/}]},i={cN:"string",c:[r],v:[{b:"''",e:"''"},{b:'"',e:'"'}]},n=[e.NM,e.HCM,e.CBCM,i,a];return r.c=n,{aliases:["nixos"],k:t,c:n}}),e.registerLanguage("nsis",function(e){var t={cN:"variable",b:/\$(ADMINTOOLS|APPDATA|CDBURN_AREA|CMDLINE|COMMONFILES32|COMMONFILES64|COMMONFILES|COOKIES|DESKTOP|DOCUMENTS|EXEDIR|EXEFILE|EXEPATH|FAVORITES|FONTS|HISTORY|HWNDPARENT|INSTDIR|INTERNET_CACHE|LANGUAGE|LOCALAPPDATA|MUSIC|NETHOOD|OUTDIR|PICTURES|PLUGINSDIR|PRINTHOOD|PROFILE|PROGRAMFILES32|PROGRAMFILES64|PROGRAMFILES|QUICKLAUNCH|RECENT|RESOURCES_LOCALIZED|RESOURCES|SENDTO|SMPROGRAMS|SMSTARTUP|STARTMENU|SYSDIR|TEMP|TEMPLATES|VIDEOS|WINDIR)/},r={cN:"variable",b:/\$+{[\w\.:-]+}/},a={cN:"variable",b:/\$+\w+/,i:/\(\){}/},i={cN:"variable",b:/\$+\([\w\^\.:-]+\)/},n={cN:"params",b:"(ARCHIVE|FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_NORMAL|FILE_ATTRIBUTE_OFFLINE|FILE_ATTRIBUTE_READONLY|FILE_ATTRIBUTE_SYSTEM|FILE_ATTRIBUTE_TEMPORARY|HKCR|HKCU|HKDD|HKEY_CLASSES_ROOT|HKEY_CURRENT_CONFIG|HKEY_CURRENT_USER|HKEY_DYN_DATA|HKEY_LOCAL_MACHINE|HKEY_PERFORMANCE_DATA|HKEY_USERS|HKLM|HKPD|HKU|IDABORT|IDCANCEL|IDIGNORE|IDNO|IDOK|IDRETRY|IDYES|MB_ABORTRETRYIGNORE|MB_DEFBUTTON1|MB_DEFBUTTON2|MB_DEFBUTTON3|MB_DEFBUTTON4|MB_ICONEXCLAMATION|MB_ICONINFORMATION|MB_ICONQUESTION|MB_ICONSTOP|MB_OK|MB_OKCANCEL|MB_RETRYCANCEL|MB_RIGHT|MB_RTLREADING|MB_SETFOREGROUND|MB_TOPMOST|MB_USERICON|MB_YESNO|NORMAL|OFFLINE|READONLY|SHCTX|SHELL_CONTEXT|SYSTEM|TEMPORARY)"},o={cN:"keyword",b:/\!(addincludedir|addplugindir|appendfile|cd|define|delfile|echo|else|endif|error|execute|finalize|getdllversionsystem|ifdef|ifmacrodef|ifmacrondef|ifndef|if|include|insertmacro|macroend|macro|makensis|packhdr|searchparse|searchreplace|tempfile|undef|verbose|warning)/},s={cN:"subst",b:/\$(\\[nrt]|\$)/},l={cN:"class",b:/\w+\:\:\w+/},c={cN:"string",v:[{b:'"',e:'"'},{b:"'",e:"'"},{b:"`",e:"`"}],i:/\n/,c:[s,t,r,a,i]};return{cI:!1,k:{keyword:"Abort AddBrandingImage AddSize AllowRootDirInstall AllowSkipFiles AutoCloseWindow BGFont BGGradient BrandingText BringToFront Call CallInstDLL Caption ChangeUI CheckBitmap ClearErrors CompletedText ComponentText CopyFiles CRCCheck CreateDirectory CreateFont CreateShortCut Delete DeleteINISec DeleteINIStr DeleteRegKey DeleteRegValue DetailPrint DetailsButtonText DirText DirVar DirVerify EnableWindow EnumRegKey EnumRegValue Exch Exec ExecShell ExecWait ExpandEnvStrings File FileBufSize FileClose FileErrorText FileOpen FileRead FileReadByte FileReadUTF16LE FileReadWord FileSeek FileWrite FileWriteByte FileWriteUTF16LE FileWriteWord FindClose FindFirst FindNext FindWindow FlushINI FunctionEnd GetCurInstType GetCurrentAddress GetDlgItem GetDLLVersion GetDLLVersionLocal GetErrorLevel GetFileTime GetFileTimeLocal GetFullPathName GetFunctionAddress GetInstDirError GetLabelAddress GetTempFileName Goto HideWindow Icon IfAbort IfErrors IfFileExists IfRebootFlag IfSilent InitPluginsDir InstallButtonText InstallColors InstallDir InstallDirRegKey InstProgressFlags InstType InstTypeGetText InstTypeSetText IntCmp IntCmpU IntFmt IntOp IsWindow LangString LicenseBkColor LicenseData LicenseForceSelection LicenseLangString LicenseText LoadLanguageFile LockWindow LogSet LogText ManifestDPIAware ManifestSupportedOS MessageBox MiscButtonText Name Nop OutFile Page PageCallbacks PageExEnd Pop Push Quit ReadEnvStr ReadINIStr ReadRegDWORD ReadRegStr Reboot RegDLL Rename RequestExecutionLevel ReserveFile Return RMDir SearchPath SectionEnd SectionGetFlags SectionGetInstTypes SectionGetSize SectionGetText SectionGroupEnd SectionIn SectionSetFlags SectionSetInstTypes SectionSetSize SectionSetText SendMessage SetAutoClose SetBrandingImage SetCompress SetCompressor SetCompressorDictSize SetCtlColors SetCurInstType SetDatablockOptimize SetDateSave SetDetailsPrint SetDetailsView SetErrorLevel SetErrors SetFileAttributes SetFont SetOutPath SetOverwrite SetRebootFlag SetRegView SetShellVarContext SetSilent ShowInstDetails ShowUninstDetails ShowWindow SilentInstall SilentUnInstall Sleep SpaceTexts StrCmp StrCmpS StrCpy StrLen SubCaption Unicode UninstallButtonText UninstallCaption UninstallIcon UninstallSubCaption UninstallText UninstPage UnRegDLL Var VIAddVersionKey VIFileVersion VIProductVersion WindowIcon WriteINIStr WriteRegBin WriteRegDWORD WriteRegExpandStr WriteRegStr WriteUninstaller XPStyle",literal:"admin all auto both bottom bzip2 colored components current custom directory false force hide highest ifdiff ifnewer instfiles lastused leave left license listonly lzma nevershow none normal notset off on open print right show silent silentlog smooth textonly top true try un.components un.custom un.directory un.instfiles un.license uninstConfirm user Win10 Win7 Win8 WinVista zlib"},c:[e.HCM,e.CBCM,e.C(";","$",{r:0}),{cN:"function",bK:"Function PageEx Section SectionGroup",e:"$"},c,o,r,a,i,n,l,e.NM]}}),e.registerLanguage("objectivec",function(e){var t={cN:"built_in",b:"\\b(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)\\w+"},r={keyword:"int float while char export sizeof typedef const struct for union unsigned long volatile static bool mutable if do return goto void enum else break extern asm case short default double register explicit signed typename this switch continue wchar_t inline readonly assign readwrite self @synchronized id typeof nonatomic super unichar IBOutlet IBAction strong weak copy in out inout bycopy byref oneway __strong __weak __block __autoreleasing @private @protected @public @try @property @end @throw @catch @finally @autoreleasepool @synthesize @dynamic @selector @optional @required @encode @package @import @defs @compatibility_alias __bridge __bridge_transfer __bridge_retained __bridge_retain __covariant __contravariant __kindof _Nonnull _Nullable _Null_unspecified __FUNCTION__ __PRETTY_FUNCTION__ __attribute__ getter setter retain unsafe_unretained nonnull nullable null_unspecified null_resettable class instancetype NS_DESIGNATED_INITIALIZER NS_UNAVAILABLE NS_REQUIRES_SUPER NS_RETURNS_INNER_POINTER NS_INLINE NS_AVAILABLE NS_DEPRECATED NS_ENUM NS_OPTIONS NS_SWIFT_UNAVAILABLE NS_ASSUME_NONNULL_BEGIN NS_ASSUME_NONNULL_END NS_REFINED_FOR_SWIFT NS_SWIFT_NAME NS_SWIFT_NOTHROW NS_DURING NS_HANDLER NS_ENDHANDLER NS_VALUERETURN NS_VOIDRETURN",literal:"false true FALSE TRUE nil YES NO NULL",built_in:"BOOL dispatch_once_t dispatch_queue_t dispatch_sync dispatch_async dispatch_once"},a=/[a-zA-Z@][a-zA-Z0-9_]*/,i="@interface @class @protocol @implementation";return{aliases:["mm","objc","obj-c"],k:r,l:a,i:""}]}]},{cN:"class",b:"("+i.split(" ").join("|")+")\\b",e:"({|$)",eE:!0,k:i,l:a,c:[e.UTM]},{b:"\\."+e.UIR,r:0}]}}),e.registerLanguage("ocaml",function(e){return{aliases:["ml"],k:{keyword:"and as assert asr begin class constraint do done downto else end exception external for fun function functor if in include inherit! inherit initializer land lazy let lor lsl lsr lxor match method!|10 method mod module mutable new object of open! open or private rec sig struct then to try type val! val virtual when while with parser value",built_in:"array bool bytes char exn|5 float int int32 int64 list lazy_t|5 nativeint|5 string unit in_channel out_channel ref",literal:"true false"},i:/\/\/|>>/,l:"[a-z_]\\w*!?",c:[{cN:"literal",b:"\\[(\\|\\|)?\\]|\\(\\)",r:0},e.C("\\(\\*","\\*\\)",{c:["self"]}),{cN:"symbol",b:"'[A-Za-z_](?!')[\\w']*"},{cN:"type",b:"`[A-Z][\\w']*"},{cN:"type",b:"\\b[A-Z][\\w']*",r:0},{b:"[a-z_]\\w*'[\\w']*",r:0},e.inherit(e.ASM,{cN:"string",r:0}),e.inherit(e.QSM,{i:null}),{cN:"number",b:"\\b(0[xX][a-fA-F0-9_]+[Lln]?|0[oO][0-7_]+[Lln]?|0[bB][01_]+[Lln]?|[0-9][0-9_]*([Lln]|(\\.[0-9_]*)?([eE][-+]?[0-9_]+)?)?)",r:0},{b:/[-=]>/}]}}),e.registerLanguage("openscad",function(e){var t={cN:"keyword",b:"\\$(f[asn]|t|vp[rtd]|children)"},r={cN:"literal",b:"false|true|PI|undef"},a={cN:"number",b:"\\b\\d+(\\.\\d+)?(e-?\\d+)?",r:0},i=e.inherit(e.QSM,{i:null}),n={cN:"meta",k:{"meta-keyword":"include use"},b:"include|use <",e:">"},o={cN:"params",b:"\\(",e:"\\)",c:["self",a,i,t,r]},s={b:"[*!#%]",r:0},l={cN:"function",bK:"module function",e:"\\=|\\{",c:[o,e.UTM]};return{aliases:["scad"],k:{keyword:"function module include use for intersection_for if else \\%",literal:"false true PI undef",built_in:"circle square polygon text sphere cube cylinder polyhedron translate rotate scale resize mirror multmatrix color offset hull minkowski union difference intersection abs sign sin cos tan acos asin atan atan2 floor round ceil ln log pow sqrt exp rands min max concat lookup str chr search version version_num norm cross parent_module echo import import_dxf dxf_linear_extrude linear_extrude rotate_extrude surface projection render children dxf_cross dxf_dim let assign"},c:[e.CLCM,e.CBCM,a,n,i,t,s,l]}}),e.registerLanguage("oxygene",function(e){var t="abstract add and array as asc aspect assembly async begin break block by case class concat const copy constructor continue create default delegate desc distinct div do downto dynamic each else empty end ensure enum equals event except exit extension external false final finalize finalizer finally flags for forward from function future global group has if implementation implements implies in index inherited inline interface into invariants is iterator join locked locking loop matching method mod module namespace nested new nil not notify nullable of old on operator or order out override parallel params partial pinned private procedure property protected public queryable raise read readonly record reintroduce remove repeat require result reverse sealed select self sequence set shl shr skip static step soft take then to true try tuple type union unit unsafe until uses using var virtual raises volatile where while with write xor yield await mapped deprecated stdcall cdecl pascal register safecall overload library platform reference packed strict published autoreleasepool selector strong weak unretained",r=e.C("{","}",{r:0}),a=e.C("\\(\\*","\\*\\)",{r:10}),i={cN:"string",b:"'",e:"'",c:[{b:"''"}]},n={cN:"string",b:"(#\\d+)+"},o={cN:"function",bK:"function constructor destructor procedure method",e:"[:;]",k:"function constructor|10 destructor|10 procedure|10 method|10",c:[e.TM,{cN:"params",b:"\\(",e:"\\)",k:t,c:[i,n]},r,a]};return{cI:!0,l:/\.?\w+/,k:t,i:'("|\\$[G-Zg-z]|\\/\\*||->)',c:[r,a,e.CLCM,i,n,e.NM,o,{cN:"class",b:"=\\bclass\\b",e:"end;",k:t,c:[i,n,r,a,e.CLCM,o]}]}}),e.registerLanguage("parser3",function(e){var t=e.C("{","}",{c:["self"]});return{sL:"xml",r:0,c:[e.C("^#","$"),e.C("\\^rem{","}",{r:10,c:[t]}),{cN:"meta",b:"^@(?:BASE|USE|CLASS|OPTIONS)$",r:10},{cN:"title",b:"@[\\w\\-]+\\[[\\w^;\\-]*\\](?:\\[[\\w^;\\-]*\\])?(?:.*)$"},{cN:"variable",b:"\\$\\{?[\\w\\-\\.\\:]+\\}?"},{cN:"keyword",b:"\\^[\\w\\-\\.\\:]+"},{cN:"number",b:"\\^#[0-9a-fA-F]+"},e.CNM]}}),e.registerLanguage("pf",function(e){var t={cN:"variable",b:/\$[\w\d#@][\w\d_]*/},r={cN:"variable",b:/<(?!\/)/,e:/>/};return{aliases:["pf.conf"],l:/[a-z0-9_<>-]+/,k:{built_in:"block match pass load anchor|5 antispoof|10 set table",keyword:"in out log quick on rdomain inet inet6 proto from port os to routeallow-opts divert-packet divert-reply divert-to flags group icmp-typeicmp6-type label once probability recieved-on rtable prio queuetos tag tagged user keep fragment for os dropaf-to|10 binat-to|10 nat-to|10 rdr-to|10 bitmask least-stats random round-robinsource-hash static-portdup-to reply-to route-toparent bandwidth default min max qlimitblock-policy debug fingerprints hostid limit loginterface optimizationreassemble ruleset-optimization basic none profile skip state-defaultsstate-policy timeoutconst counters persistno modulate synproxy state|5 floating if-bound no-sync pflow|10 sloppysource-track global rule max-src-nodes max-src-states max-src-connmax-src-conn-rate overload flushscrub|5 max-mss min-ttl no-df|10 random-id",literal:"all any no-route self urpf-failed egress|5 unknown"},c:[e.HCM,e.NM,e.QSM,t,r]}}),e.registerLanguage("php",function(e){var t={b:"\\$+[a-zA-Z_-ÿ][a-zA-Z0-9_-ÿ]*"},r={cN:"meta",b:/<\?(php)?|\?>/},a={cN:"string",c:[e.BE,r],v:[{b:'b"',e:'"'},{b:"b'",e:"'"},e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null})]},i={v:[e.BNM,e.CNM]};return{aliases:["php3","php4","php5","php6"],cI:!0,k:"and include_once list abstract global private echo interface as static endswitch array null if endwhile or const for endforeach self var while isset public protected exit foreach throw elseif include __FILE__ empty require_once do xor return parent clone use __CLASS__ __LINE__ else break print eval new catch __METHOD__ case exception default die require __FUNCTION__ enddeclare final try switch continue endfor endif declare unset true false trait goto instanceof insteadof __DIR__ __NAMESPACE__ yield finally",c:[e.HCM,e.C("//","$",{c:[r]}),e.C("/\\*","\\*/",{c:[{cN:"doctag",b:"@[A-Za-z]+"}]}),e.C("__halt_compiler.+?;",!1,{eW:!0,k:"__halt_compiler",l:e.UIR}),{cN:"string",b:/<<<['"]?\w+['"]?$/,e:/^\w+;?$/,c:[e.BE,{cN:"subst",v:[{b:/\$\w+/},{b:/\{\$/,e:/\}/}]}]},r,{cN:"keyword",b:/\$this\b/},t,{b:/(::|->)+[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/},{cN:"function",bK:"function",e:/[;{]/,eE:!0,i:"\\$|\\[|%",c:[e.UTM,{cN:"params",b:"\\(",e:"\\)",c:["self",t,e.CBCM,a,i]}]},{cN:"class",bK:"class interface",e:"{",eE:!0,i:/[:\(\$"]/,c:[{bK:"extends implements"},e.UTM]},{bK:"namespace",e:";",i:/[\.']/,c:[e.UTM]},{bK:"use",e:";",c:[e.UTM]},{b:"=>"},a,i]}}),e.registerLanguage("pony",function(e){var t={keyword:"actor addressof and as be break class compile_error compile_intrinsicconsume continue delegate digestof do else elseif embed end errorfor fun if ifdef in interface is isnt lambda let match new not objector primitive recover repeat return struct then trait try type until use var where while with xor",meta:"iso val tag trn box ref",literal:"this false true"},r={cN:"string",b:'"""',e:'"""',r:10},a={cN:"string",b:'"',e:'"',c:[e.BE]},i={cN:"string",b:"'",e:"'",c:[e.BE],r:0},n={cN:"type",b:"\\b_?[A-Z][\\w]*",r:0},o={b:e.IR+"'",r:0},s={cN:"class",bK:"class actor",e:"$",c:[e.TM,e.CLCM]},l={cN:"function",bK:"new fun",e:"=>",c:[e.TM,{b:/\(/,e:/\)/,c:[n,o,e.CNM,e.CBCM]},{b:/:/,eW:!0,c:[n]},e.CLCM]};return{k:t,c:[s,l,n,r,a,i,o,e.CNM,e.CLCM,e.CBCM]}}),e.registerLanguage("powershell",function(e){var t={b:"`[\\s\\S]",r:0},r={cN:"variable",v:[{b:/\$[\w\d][\w\d_:]*/}]},a={cN:"literal",b:/\$(null|true|false)\b/},i={cN:"string",v:[{b:/"/,e:/"/},{b:/@"/,e:/^"@/}],c:[t,r,{cN:"variable",b:/\$[A-z]/,e:/[^A-z]/}]},n={cN:"string",v:[{b:/'/,e:/'/},{b:/@'/,e:/^'@/}]},o={cN:"doctag",v:[{b:/\.(synopsis|description|example|inputs|outputs|notes|link|component|role|functionality)/},{b:/\.(parameter|forwardhelptargetname|forwardhelpcategory|remotehelprunspace|externalhelp)\s+\S+/}]},s=e.inherit(e.C(null,null),{v:[{b:/#/,e:/$/},{b:/<#/,e:/#>/}],c:[o]});return{aliases:["ps"],l:/-?[A-z\.\-]+/,cI:!0,k:{keyword:"if else foreach return function do while until elseif begin for trap data dynamicparam end break throw param continue finally in switch exit filter try process catch",built_in:"Add-Computer Add-Content Add-History Add-JobTrigger Add-Member Add-PSSnapin Add-Type Checkpoint-Computer Clear-Content Clear-EventLog Clear-History Clear-Host Clear-Item Clear-ItemProperty Clear-Variable Compare-Object Complete-Transaction Connect-PSSession Connect-WSMan Convert-Path ConvertFrom-Csv ConvertFrom-Json ConvertFrom-SecureString ConvertFrom-StringData ConvertTo-Csv ConvertTo-Html ConvertTo-Json ConvertTo-SecureString ConvertTo-Xml Copy-Item Copy-ItemProperty Debug-Process Disable-ComputerRestore Disable-JobTrigger Disable-PSBreakpoint Disable-PSRemoting Disable-PSSessionConfiguration Disable-WSManCredSSP Disconnect-PSSession Disconnect-WSMan Disable-ScheduledJob Enable-ComputerRestore Enable-JobTrigger Enable-PSBreakpoint Enable-PSRemoting Enable-PSSessionConfiguration Enable-ScheduledJob Enable-WSManCredSSP Enter-PSSession Exit-PSSession Export-Alias Export-Clixml Export-Console Export-Counter Export-Csv Export-FormatData Export-ModuleMember Export-PSSession ForEach-Object Format-Custom Format-List Format-Table Format-Wide Get-Acl Get-Alias Get-AuthenticodeSignature Get-ChildItem Get-Command Get-ComputerRestorePoint Get-Content Get-ControlPanelItem Get-Counter Get-Credential Get-Culture Get-Date Get-Event Get-EventLog Get-EventSubscriber Get-ExecutionPolicy Get-FormatData Get-Host Get-HotFix Get-Help Get-History Get-IseSnippet Get-Item Get-ItemProperty Get-Job Get-JobTrigger Get-Location Get-Member Get-Module Get-PfxCertificate Get-Process Get-PSBreakpoint Get-PSCallStack Get-PSDrive Get-PSProvider Get-PSSession Get-PSSessionConfiguration Get-PSSnapin Get-Random Get-ScheduledJob Get-ScheduledJobOption Get-Service Get-TraceSource Get-Transaction Get-TypeData Get-UICulture Get-Unique Get-Variable Get-Verb Get-WinEvent Get-WmiObject Get-WSManCredSSP Get-WSManInstance Group-Object Import-Alias Import-Clixml Import-Counter Import-Csv Import-IseSnippet Import-LocalizedData Import-PSSession Import-Module Invoke-AsWorkflow Invoke-Command Invoke-Expression Invoke-History Invoke-Item Invoke-RestMethod Invoke-WebRequest Invoke-WmiMethod Invoke-WSManAction Join-Path Limit-EventLog Measure-Command Measure-Object Move-Item Move-ItemProperty New-Alias New-Event New-EventLog New-IseSnippet New-Item New-ItemProperty New-JobTrigger New-Object New-Module New-ModuleManifest New-PSDrive New-PSSession New-PSSessionConfigurationFile New-PSSessionOption New-PSTransportOption New-PSWorkflowExecutionOption New-PSWorkflowSession New-ScheduledJobOption New-Service New-TimeSpan New-Variable New-WebServiceProxy New-WinEvent New-WSManInstance New-WSManSessionOption Out-Default Out-File Out-GridView Out-Host Out-Null Out-Printer Out-String Pop-Location Push-Location Read-Host Receive-Job Register-EngineEvent Register-ObjectEvent Register-PSSessionConfiguration Register-ScheduledJob Register-WmiEvent Remove-Computer Remove-Event Remove-EventLog Remove-Item Remove-ItemProperty Remove-Job Remove-JobTrigger Remove-Module Remove-PSBreakpoint Remove-PSDrive Remove-PSSession Remove-PSSnapin Remove-TypeData Remove-Variable Remove-WmiObject Remove-WSManInstance Rename-Computer Rename-Item Rename-ItemProperty Reset-ComputerMachinePassword Resolve-Path Restart-Computer Restart-Service Restore-Computer Resume-Job Resume-Service Save-Help Select-Object Select-String Select-Xml Send-MailMessage Set-Acl Set-Alias Set-AuthenticodeSignature Set-Content Set-Date Set-ExecutionPolicy Set-Item Set-ItemProperty Set-JobTrigger Set-Location Set-PSBreakpoint Set-PSDebug Set-PSSessionConfiguration Set-ScheduledJob Set-ScheduledJobOption Set-Service Set-StrictMode Set-TraceSource Set-Variable Set-WmiInstance Set-WSManInstance Set-WSManQuickConfig Show-Command Show-ControlPanelItem Show-EventLog Sort-Object Split-Path Start-Job Start-Process Start-Service Start-Sleep Start-Transaction Start-Transcript Stop-Computer Stop-Job Stop-Process Stop-Service Stop-Transcript Suspend-Job Suspend-Service Tee-Object Test-ComputerSecureChannel Test-Connection Test-ModuleManifest Test-Path Test-PSSessionConfigurationFile Trace-Command Unblock-File Undo-Transaction Unregister-Event Unregister-PSSessionConfiguration Unregister-ScheduledJob Update-FormatData Update-Help Update-List Update-TypeData Use-Transaction Wait-Event Wait-Job Wait-Process Where-Object Write-Debug Write-Error Write-EventLog Write-Host Write-Output Write-Progress Write-Verbose Write-Warning Add-MDTPersistentDrive Disable-MDTMonitorService Enable-MDTMonitorService Get-MDTDeploymentShareStatistics Get-MDTMonitorData Get-MDTOperatingSystemCatalog Get-MDTPersistentDrive Import-MDTApplication Import-MDTDriver Import-MDTOperatingSystem Import-MDTPackage Import-MDTTaskSequence New-MDTDatabase Remove-MDTMonitorData Remove-MDTPersistentDrive Restore-MDTPersistentDrive Set-MDTMonitorData Test-MDTDeploymentShare Test-MDTMonitorData Update-MDTDatabaseSchema Update-MDTDeploymentShare Update-MDTLinkedDS Update-MDTMedia Update-MDTMedia Add-VamtProductKey Export-VamtData Find-VamtManagedMachine Get-VamtConfirmationId Get-VamtProduct Get-VamtProductKey Import-VamtData Initialize-VamtData Install-VamtConfirmationId Install-VamtProductActivation Install-VamtProductKey Update-VamtProduct", -nomarkup:"-ne -eq -lt -gt -ge -le -not -like -notlike -match -notmatch -contains -notcontains -in -notin -replace"},c:[t,e.NM,i,n,a,r,s]}}),e.registerLanguage("processing",function(e){return{k:{keyword:"BufferedReader PVector PFont PImage PGraphics HashMap boolean byte char color double float int long String Array FloatDict FloatList IntDict IntList JSONArray JSONObject Object StringDict StringList Table TableRow XML false synchronized int abstract float private char boolean static null if const for true while long throw strictfp finally protected import native final return void enum else break transient new catch instanceof byte super volatile case assert short package default double public try this switch continue throws protected public private",literal:"P2D P3D HALF_PI PI QUARTER_PI TAU TWO_PI",title:"setup draw",built_in:"displayHeight displayWidth mouseY mouseX mousePressed pmouseX pmouseY key keyCode pixels focused frameCount frameRate height width size createGraphics beginDraw createShape loadShape PShape arc ellipse line point quad rect triangle bezier bezierDetail bezierPoint bezierTangent curve curveDetail curvePoint curveTangent curveTightness shape shapeMode beginContour beginShape bezierVertex curveVertex endContour endShape quadraticVertex vertex ellipseMode noSmooth rectMode smooth strokeCap strokeJoin strokeWeight mouseClicked mouseDragged mouseMoved mousePressed mouseReleased mouseWheel keyPressed keyPressedkeyReleased keyTyped print println save saveFrame day hour millis minute month second year background clear colorMode fill noFill noStroke stroke alpha blue brightness color green hue lerpColor red saturation modelX modelY modelZ screenX screenY screenZ ambient emissive shininess specular add createImage beginCamera camera endCamera frustum ortho perspective printCamera printProjection cursor frameRate noCursor exit loop noLoop popStyle pushStyle redraw binary boolean byte char float hex int str unbinary unhex join match matchAll nf nfc nfp nfs split splitTokens trim append arrayCopy concat expand reverse shorten sort splice subset box sphere sphereDetail createInput createReader loadBytes loadJSONArray loadJSONObject loadStrings loadTable loadXML open parseXML saveTable selectFolder selectInput beginRaw beginRecord createOutput createWriter endRaw endRecord PrintWritersaveBytes saveJSONArray saveJSONObject saveStream saveStrings saveXML selectOutput popMatrix printMatrix pushMatrix resetMatrix rotate rotateX rotateY rotateZ scale shearX shearY translate ambientLight directionalLight lightFalloff lights lightSpecular noLights normal pointLight spotLight image imageMode loadImage noTint requestImage tint texture textureMode textureWrap blend copy filter get loadPixels set updatePixels blendMode loadShader PShaderresetShader shader createFont loadFont text textFont textAlign textLeading textMode textSize textWidth textAscent textDescent abs ceil constrain dist exp floor lerp log mag map max min norm pow round sq sqrt acos asin atan atan2 cos degrees radians sin tan noise noiseDetail noiseSeed random randomGaussian randomSeed"},c:[e.CLCM,e.CBCM,e.ASM,e.QSM,e.CNM]}}),e.registerLanguage("profile",function(e){return{c:[e.CNM,{b:"[a-zA-Z_][\\da-zA-Z_]+\\.[\\da-zA-Z_]{1,3}",e:":",eE:!0},{b:"(ncalls|tottime|cumtime)",e:"$",k:"ncalls tottime|10 cumtime|10 filename",r:10},{b:"function calls",e:"$",c:[e.CNM],r:10},e.ASM,e.QSM,{cN:"string",b:"\\(",e:"\\)$",eB:!0,eE:!0,r:0}]}}),e.registerLanguage("prolog",function(e){var t={b:/[a-z][A-Za-z0-9_]*/,r:0},r={cN:"symbol",v:[{b:/[A-Z][a-zA-Z0-9_]*/},{b:/_[A-Za-z0-9_]*/}],r:0},a={b:/\(/,e:/\)/,r:0},i={b:/\[/,e:/\]/},n={cN:"comment",b:/%/,e:/$/,c:[e.PWM]},o={cN:"string",b:/`/,e:/`/,c:[e.BE]},s={cN:"string",b:/0\'(\\\'|.)/},l={cN:"string",b:/0\'\\s/},c={b:/:-/},d=[t,r,a,c,i,n,e.CBCM,e.QSM,e.ASM,o,s,l,e.CNM];return a.c=d,i.c=d,{c:d.concat([{b:/\.$/}])}}),e.registerLanguage("protobuf",function(e){return{k:{keyword:"package import option optional required repeated group",built_in:"double float int32 int64 uint32 uint64 sint32 sint64 fixed32 fixed64 sfixed32 sfixed64 bool string bytes",literal:"true false"},c:[e.QSM,e.NM,e.CLCM,{cN:"class",bK:"message enum service",e:/\{/,i:/\n/,c:[e.inherit(e.TM,{starts:{eW:!0,eE:!0}})]},{cN:"function",bK:"rpc",e:/;/,eE:!0,k:"rpc returns"},{b:/^\s*[A-Z_]+/,e:/\s*=/,eE:!0}]}}),e.registerLanguage("puppet",function(e){var t={keyword:"and case default else elsif false if in import enherits node or true undef unless main settings $string ",literal:"alias audit before loglevel noop require subscribe tag owner ensure group mode name|0 changes context force incl lens load_path onlyif provider returns root show_diff type_check en_address ip_address realname command environment hour monute month monthday special target weekday creates cwd ogoutput refresh refreshonly tries try_sleep umask backup checksum content ctime force ignore links mtime purge recurse recurselimit replace selinux_ignore_defaults selrange selrole seltype seluser source souirce_permissions sourceselect validate_cmd validate_replacement allowdupe attribute_membership auth_membership forcelocal gid ia_load_module members system host_aliases ip allowed_trunk_vlans description device_url duplex encapsulation etherchannel native_vlan speed principals allow_root auth_class auth_type authenticate_user k_of_n mechanisms rule session_owner shared options device fstype enable hasrestart directory present absent link atboot blockdevice device dump pass remounts poller_tag use message withpath adminfile allow_virtual allowcdrom category configfiles flavor install_options instance package_settings platform responsefile status uninstall_options vendor unless_system_user unless_uid binary control flags hasstatus manifest pattern restart running start stop allowdupe auths expiry gid groups home iterations key_membership keys managehome membership password password_max_age password_min_age profile_membership profiles project purge_ssh_keys role_membership roles salt shell uid baseurl cost descr enabled enablegroups exclude failovermethod gpgcheck gpgkey http_caching include includepkgs keepalive metadata_expire metalink mirrorlist priority protect proxy proxy_password proxy_username repo_gpgcheck s3_enabled skip_if_unavailable sslcacert sslclientcert sslclientkey sslverify mounted",built_in:"architecture augeasversion blockdevices boardmanufacturer boardproductname boardserialnumber cfkey dhcp_servers domain ec2_ ec2_userdata facterversion filesystems ldom fqdn gid hardwareisa hardwaremodel hostname id|0 interfaces ipaddress ipaddress_ ipaddress6 ipaddress6_ iphostnumber is_virtual kernel kernelmajversion kernelrelease kernelversion kernelrelease kernelversion lsbdistcodename lsbdistdescription lsbdistid lsbdistrelease lsbmajdistrelease lsbminordistrelease lsbrelease macaddress macaddress_ macosx_buildversion macosx_productname macosx_productversion macosx_productverson_major macosx_productversion_minor manufacturer memoryfree memorysize netmask metmask_ network_ operatingsystem operatingsystemmajrelease operatingsystemrelease osfamily partitions path physicalprocessorcount processor processorcount productname ps puppetversion rubysitedir rubyversion selinux selinux_config_mode selinux_config_policy selinux_current_mode selinux_current_mode selinux_enforced selinux_policyversion serialnumber sp_ sshdsakey sshecdsakey sshrsakey swapencrypted swapfree swapsize timezone type uniqueid uptime uptime_days uptime_hours uptime_seconds uuid virtual vlans xendomains zfs_version zonenae zones zpool_version"},r=e.C("#","$"),a="([A-Za-z_]|::)(\\w|::)*",i=e.inherit(e.TM,{b:a}),n={cN:"variable",b:"\\$"+a},o={cN:"string",c:[e.BE,n],v:[{b:/'/,e:/'/},{b:/"/,e:/"/}]};return{aliases:["pp"],c:[r,n,o,{bK:"class",e:"\\{|;",i:/=/,c:[i,r]},{bK:"define",e:/\{/,c:[{cN:"section",b:e.IR,endsParent:!0}]},{b:e.IR+"\\s+\\{",rB:!0,e:/\S/,c:[{cN:"keyword",b:e.IR},{b:/\{/,e:/\}/,k:t,r:0,c:[o,r,{b:"[a-zA-Z_]+\\s*=>",rB:!0,e:"=>",c:[{cN:"attr",b:e.IR}]},{cN:"number",b:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",r:0},n]}],r:0}]}}),e.registerLanguage("purebasic",function(e){var t={cN:"string",b:'(~)?"',e:'"',i:"\\n"},r={cN:"symbol",b:"#[a-zA-Z_]\\w*\\$?"};return{aliases:["pb","pbi"],k:"And As Break CallDebugger Case CompilerCase CompilerDefault CompilerElse CompilerEndIf CompilerEndSelect CompilerError CompilerIf CompilerSelect Continue Data DataSection EndDataSection Debug DebugLevel Default Define Dim DisableASM DisableDebugger DisableExplicit Else ElseIf EnableASM EnableDebugger EnableExplicit End EndEnumeration EndIf EndImport EndInterface EndMacro EndProcedure EndSelect EndStructure EndStructureUnion EndWith Enumeration Extends FakeReturn For Next ForEach ForEver Global Gosub Goto If Import ImportC IncludeBinary IncludeFile IncludePath Interface Macro NewList Not Or ProcedureReturn Protected Prototype PrototypeC Read ReDim Repeat Until Restore Return Select Shared Static Step Structure StructureUnion Swap To Wend While With XIncludeFile XOr Procedure ProcedureC ProcedureCDLL ProcedureDLL Declare DeclareC DeclareCDLL DeclareDLL",c:[e.C(";","$",{r:0}),{cN:"function",b:"\\b(Procedure|Declare)(C|CDLL|DLL)?\\b",e:"\\(",eE:!0,rB:!0,c:[{cN:"keyword",b:"(Procedure|Declare)(C|CDLL|DLL)?",eE:!0},{cN:"type",b:"\\.\\w*"},e.UTM]},t,r]}}),e.registerLanguage("python",function(e){var t={keyword:"and elif is global as in if from raise for except finally print import pass return exec else break not with class assert yield try while continue del or def lambda async await nonlocal|10 None True False",built_in:"Ellipsis NotImplemented"},r={cN:"meta",b:/^(>>>|\.\.\.) /},a={cN:"subst",b:/\{/,e:/\}/,k:t,i:/#/},i={cN:"string",c:[e.BE],v:[{b:/(u|b)?r?'''/,e:/'''/,c:[r],r:10},{b:/(u|b)?r?"""/,e:/"""/,c:[r],r:10},{b:/(fr|rf|f)'''/,e:/'''/,c:[r,a]},{b:/(fr|rf|f)"""/,e:/"""/,c:[r,a]},{b:/(u|r|ur)'/,e:/'/,r:10},{b:/(u|r|ur)"/,e:/"/,r:10},{b:/(b|br)'/,e:/'/},{b:/(b|br)"/,e:/"/},{b:/(fr|rf|f)'/,e:/'/,c:[a]},{b:/(fr|rf|f)"/,e:/"/,c:[a]},e.ASM,e.QSM]},n={cN:"number",r:0,v:[{b:e.BNR+"[lLjJ]?"},{b:"\\b(0o[0-7]+)[lLjJ]?"},{b:e.CNR+"[lLjJ]?"}]},o={cN:"params",b:/\(/,e:/\)/,c:["self",r,n,i]};return a.c=[i,n,r],{aliases:["py","gyp"],k:t,i:/(<\/|->|\?)|=>/,c:[r,n,i,e.HCM,{v:[{cN:"function",bK:"def"},{cN:"class",bK:"class"}],e:/:/,i:/[${=;\n,]/,c:[e.UTM,o,{b:/->/,eW:!0,k:"None"}]},{cN:"meta",b:/^[\t ]*@/,e:/$/},{b:/\b(print|exec)\(/}]}}),e.registerLanguage("q",function(e){var t={keyword:"do while select delete by update from",literal:"0b 1b",built_in:"neg not null string reciprocal floor ceiling signum mod xbar xlog and or each scan over prior mmu lsq inv md5 ltime gtime count first var dev med cov cor all any rand sums prds mins maxs fills deltas ratios avgs differ prev next rank reverse iasc idesc asc desc msum mcount mavg mdev xrank mmin mmax xprev rotate distinct group where flip type key til get value attr cut set upsert raze union inter except cross sv vs sublist enlist read0 read1 hopen hclose hdel hsym hcount peach system ltrim rtrim trim lower upper ssr view tables views cols xcols keys xkey xcol xasc xdesc fkeys meta lj aj aj0 ij pj asof uj ww wj wj1 fby xgroup ungroup ej save load rsave rload show csv parse eval min max avg wavg wsum sin cos tan sum",type:"`float `double int `timestamp `timespan `datetime `time `boolean `symbol `char `byte `short `long `real `month `date `minute `second `guid"};return{aliases:["k","kdb"],k:t,l:/(`?)[A-Za-z0-9_]+\b/,c:[e.CLCM,e.QSM,e.CNM]}}),e.registerLanguage("qml",function(e){var t={keyword:"in of on if for while finally var new function do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const export super debugger as async await import",literal:"true false null undefined NaN Infinity",built_in:"eval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Error EvalError InternalError RangeError ReferenceError StopIteration SyntaxError TypeError URIError Number Math Date String RegExp Array Float32Array Float64Array Int16Array Int32Array Int8Array Uint16Array Uint32Array Uint8Array Uint8ClampedArray ArrayBuffer DataView JSON Intl arguments require module console window document Symbol Set Map WeakSet WeakMap Proxy Reflect Behavior bool color coordinate date double enumeration font geocircle georectangle geoshape int list matrix4x4 parent point quaternion real rect size string url variant vector2d vector3d vector4dPromise"},r="[a-zA-Z_][a-zA-Z0-9\\._]*",a={cN:"keyword",b:"\\bproperty\\b",starts:{cN:"string",e:"(:|=|;|,|//|/\\*|$)",rE:!0}},i={cN:"keyword",b:"\\bsignal\\b",starts:{cN:"string",e:"(\\(|:|=|;|,|//|/\\*|$)",rE:!0}},n={cN:"attribute",b:"\\bid\\s*:",starts:{cN:"string",e:r,rE:!1}},o={b:r+"\\s*:",rB:!0,c:[{cN:"attribute",b:r,e:"\\s*:",eE:!0,r:0}],r:0},s={b:r+"\\s*{",e:"{",rB:!0,r:0,c:[e.inherit(e.TM,{b:r})]};return{aliases:["qt"],cI:!1,k:t,c:[{cN:"meta",b:/^\s*['"]use (strict|asm)['"]/},e.ASM,e.QSM,{cN:"string",b:"`",e:"`",c:[e.BE,{cN:"subst",b:"\\$\\{",e:"\\}"}]},e.CLCM,e.CBCM,{cN:"number",v:[{b:"\\b(0[bB][01]+)"},{b:"\\b(0[oO][0-7]+)"},{b:e.CNR}],r:0},{b:"("+e.RSR+"|\\b(case|return|throw)\\b)\\s*",k:"return throw case",c:[e.CLCM,e.CBCM,e.RM,{b:/\s*[);\]]/,r:0,sL:"xml"}],r:0},i,a,{cN:"function",bK:"function",e:/\{/,eE:!0,c:[e.inherit(e.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/}),{cN:"params",b:/\(/,e:/\)/,eB:!0,eE:!0,c:[e.CLCM,e.CBCM]}],i:/\[|%/},{b:"\\."+e.IR,r:0},n,o,s],i:/#/}}),e.registerLanguage("r",function(e){var t="([a-zA-Z]|\\.[a-zA-Z.])[a-zA-Z0-9._]*";return{c:[e.HCM,{b:t,l:t,k:{keyword:"function if in break next repeat else for return switch while try tryCatch stop warning require library attach detach source setMethod setGeneric setGroupGeneric setClass ...",literal:"NULL NA TRUE FALSE T F Inf NaN NA_integer_|10 NA_real_|10 NA_character_|10 NA_complex_|10"},r:0},{cN:"number",b:"0[xX][0-9a-fA-F]+[Li]?\\b",r:0},{cN:"number",b:"\\d+(?:[eE][+\\-]?\\d*)?L\\b",r:0},{cN:"number",b:"\\d+\\.(?!\\d)(?:i\\b)?",r:0},{cN:"number",b:"\\d+(?:\\.\\d*)?(?:[eE][+\\-]?\\d*)?i?\\b",r:0},{cN:"number",b:"\\.\\d+(?:[eE][+\\-]?\\d*)?i?\\b",r:0},{b:"`",e:"`",r:0},{cN:"string",c:[e.BE],v:[{b:'"',e:'"'},{b:"'",e:"'"}]}]}}),e.registerLanguage("rib",function(e){return{k:"ArchiveRecord AreaLightSource Atmosphere Attribute AttributeBegin AttributeEnd Basis Begin Blobby Bound Clipping ClippingPlane Color ColorSamples ConcatTransform Cone CoordinateSystem CoordSysTransform CropWindow Curves Cylinder DepthOfField Detail DetailRange Disk Displacement Display End ErrorHandler Exposure Exterior Format FrameAspectRatio FrameBegin FrameEnd GeneralPolygon GeometricApproximation Geometry Hider Hyperboloid Identity Illuminate Imager Interior LightSource MakeCubeFaceEnvironment MakeLatLongEnvironment MakeShadow MakeTexture Matte MotionBegin MotionEnd NuPatch ObjectBegin ObjectEnd ObjectInstance Opacity Option Orientation Paraboloid Patch PatchMesh Perspective PixelFilter PixelSamples PixelVariance Points PointsGeneralPolygons PointsPolygons Polygon Procedural Projection Quantize ReadArchive RelativeDetail ReverseOrientation Rotate Scale ScreenWindow ShadingInterpolation ShadingRate Shutter Sides Skew SolidBegin SolidEnd Sphere SubdivisionMesh Surface TextureCoordinates Torus Transform TransformBegin TransformEnd TransformPoints Translate TrimCurve WorldBegin WorldEnd",i:"\]$/},{b:/<\//,e:/>/},{b:/^facet /,e:/\}/},{b:"^1\\.\\.(\\d+)$",e:/$/}],i:/./},e.C("^#","$"),s,l,o,{b:/[\w-]+\=([^\s\{\}\[\]\(\)]+)/,r:0,rB:!0,c:[{cN:"attribute",b:/[^=]+/},{b:/=/,eW:!0,r:0,c:[s,l,o,{cN:"literal",b:"\\b("+i.split(" ").join("|")+")\\b"},{b:/("[^"]*"|[^\s\{\}\[\]]+)/}]}]},{cN:"number",b:/\*[0-9a-fA-F]+/},{b:"\\b("+a.split(" ").join("|")+")([\\s[(]|])",rB:!0,c:[{cN:"builtin-name",b:/\w+/}]},{cN:"built_in",v:[{b:"(\\.\\./|/|\\s)(("+n.split(" ").join("|")+");?\\s)+",r:10},{b:/\.\./}]}]}}),e.registerLanguage("rsl",function(e){return{k:{keyword:"float color point normal vector matrix while for if do return else break extern continue",built_in:"abs acos ambient area asin atan atmosphere attribute calculatenormal ceil cellnoise clamp comp concat cos degrees depth Deriv diffuse distance Du Dv environment exp faceforward filterstep floor format fresnel incident length lightsource log match max min mod noise normalize ntransform opposite option phong pnoise pow printf ptlined radians random reflect refract renderinfo round setcomp setxcomp setycomp setzcomp shadow sign sin smoothstep specular specularbrdf spline sqrt step tan texture textureinfo trace transform vtransform xcomp ycomp zcomp"},i:""}]}}),e.registerLanguage("scala",function(e){var t={cN:"meta",b:"@[A-Za-z]+"},r={cN:"subst",v:[{b:"\\$[A-Za-z0-9_]+"},{b:"\\${",e:"}"}]},a={cN:"string",v:[{b:'"',e:'"',i:"\\n",c:[e.BE]},{b:'"""',e:'"""',r:10},{b:'[a-z]+"',e:'"',i:"\\n",c:[e.BE,r]},{cN:"string",b:'[a-z]+"""',e:'"""',c:[r],r:10}]},i={cN:"symbol",b:"'\\w[\\w\\d_]*(?!')"},n={cN:"type",b:"\\b[A-Z][A-Za-z0-9_]*",r:0},o={cN:"title",b:/[^0-9\n\t "'(),.`{}\[\]:;][^\n\t "'(),.`{}\[\]:;]+|[^0-9\n\t "'(),.`{}\[\]:;=]/,r:0},s={cN:"class",bK:"class object trait type",e:/[:={\[\n;]/,eE:!0,c:[{bK:"extends with",r:10},{b:/\[/,e:/\]/,eB:!0,eE:!0,r:0,c:[n]},{cN:"params",b:/\(/,e:/\)/,eB:!0,eE:!0,r:0,c:[n]},o]},l={cN:"function",bK:"def",e:/[:={\[(\n;]/,eE:!0,c:[o]};return{k:{literal:"true false null",keyword:"type yield lazy override def with val var sealed abstract private trait object if forSome for while throw finally protected extends import final return else break new catch super class case package default try this match continue throws implicit"},c:[e.CLCM,e.CBCM,a,i,n,l,s,e.CNM,t]}}),e.registerLanguage("scheme",function(e){var t="[^\\(\\)\\[\\]\\{\\}\",'`;#|\\\\\\s]+",r="(\\-|\\+)?\\d+([./]\\d+)?",a=r+"[+\\-]"+r+"i",i={"builtin-name":"case-lambda call/cc class define-class exit-handler field import inherit init-field interface let*-values let-values let/ec mixin opt-lambda override protect provide public rename require require-for-syntax syntax syntax-case syntax-error unit/sig unless when with-syntax and begin call-with-current-continuation call-with-input-file call-with-output-file case cond define define-syntax delay do dynamic-wind else for-each if lambda let let* let-syntax letrec letrec-syntax map or syntax-rules ' * + , ,@ - ... / ; < <= = => > >= ` abs acos angle append apply asin assoc assq assv atan boolean? caar cadr call-with-input-file call-with-output-file call-with-values car cdddar cddddr cdr ceiling char->integer char-alphabetic? char-ci<=? char-ci=? char-ci>? char-downcase char-lower-case? char-numeric? char-ready? char-upcase char-upper-case? char-whitespace? char<=? char=? char>? char? close-input-port close-output-port complex? cons cos current-input-port current-output-port denominator display eof-object? eq? equal? eqv? eval even? exact->inexact exact? exp expt floor force gcd imag-part inexact->exact inexact? input-port? integer->char integer? interaction-environment lcm length list list->string list->vector list-ref list-tail list? load log magnitude make-polar make-rectangular make-string make-vector max member memq memv min modulo negative? newline not null-environment null? number->string number? numerator odd? open-input-file open-output-file output-port? pair? peek-char port? positive? procedure? quasiquote quote quotient rational? rationalize read read-char real-part real? remainder reverse round scheme-report-environment set! set-car! set-cdr! sin sqrt string string->list string->number string->symbol string-append string-ci<=? string-ci=? string-ci>? string-copy string-fill! string-length string-ref string-set! string<=? string=? string>? string? substring symbol->string symbol? tan transcript-off transcript-on truncate values vector vector->list vector-fill! vector-length vector-ref vector-set! with-input-from-file with-output-to-file write write-char zero?"},n={cN:"meta",b:"^#!",e:"$"},o={cN:"literal",b:"(#t|#f|#\\\\"+t+"|#\\\\.)"},s={cN:"number",v:[{b:r,r:0},{b:a,r:0},{b:"#b[0-1]+(/[0-1]+)?"},{b:"#o[0-7]+(/[0-7]+)?"},{b:"#x[0-9a-f]+(/[0-9a-f]+)?"}]},l=e.QSM,c=[e.C(";","$",{r:0}),e.C("#\\|","\\|#")],d={b:t,r:0},p={cN:"symbol",b:"'"+t},m={eW:!0,r:0},u={v:[{b:/'/},{b:"`"}],c:[{b:"\\(",e:"\\)",c:["self",o,l,s,d,p]}]},b={cN:"name",b:t,l:t,k:i},g={b:/lambda/,eW:!0,rB:!0,c:[b,{b:/\(/,e:/\)/,endsParent:!0,c:[d]}]},f={v:[{b:"\\(",e:"\\)"},{b:"\\[",e:"\\]"}],c:[g,b,m]};return m.c=[o,s,l,d,p,u,f].concat(c),{i:/\S/,c:[n,s,l,p,u,f].concat(c)}}),e.registerLanguage("scilab",function(e){var t=[e.CNM,{cN:"string",b:"'|\"",e:"'|\"",c:[e.BE,{b:"''"}]}];return{aliases:["sci"],l:/%?\w+/,k:{keyword:"abort break case clear catch continue do elseif else endfunction end for function global if pause return resume select try then while",literal:"%f %F %t %T %pi %eps %inf %nan %e %i %z %s",built_in:"abs and acos asin atan ceil cd chdir clearglobal cosh cos cumprod deff disp error exec execstr exists exp eye gettext floor fprintf fread fsolve imag isdef isempty isinfisnan isvector lasterror length load linspace list listfiles log10 log2 log max min msprintf mclose mopen ones or pathconvert poly printf prod pwd rand real round sinh sin size gsort sprintf sqrt strcat strcmps tring sum system tanh tan type typename warning zeros matrix"},i:'("|#|/\\*|\\s+/\\w+)',c:[{cN:"function",bK:"function",e:"$",c:[e.UTM,{cN:"params",b:"\\(",e:"\\)"}]},{b:"[a-zA-Z_][a-zA-Z_0-9]*('+[\\.']*|[\\.']+)",e:"",r:0},{b:"\\[",e:"\\]'*[\\.']*",r:0,c:t},e.C("//","$")].concat(t)}}),e.registerLanguage("scss",function(e){var t="[a-zA-Z-][a-zA-Z0-9_-]*",r={cN:"variable",b:"(\\$"+t+")\\b"},a={cN:"number",b:"#[0-9A-Fa-f]+"};({cN:"attribute",b:"[A-Z\\_\\.\\-]+",e:":",eE:!0,i:"[^\\s]",starts:{eW:!0,eE:!0,c:[a,e.CSSNM,e.QSM,e.ASM,e.CBCM,{cN:"meta",b:"!important"}]}});return{cI:!0,i:"[=/|']",c:[e.CLCM,e.CBCM,{cN:"selector-id",b:"\\#[A-Za-z0-9_-]+",r:0},{cN:"selector-class",b:"\\.[A-Za-z0-9_-]+",r:0},{cN:"selector-attr",b:"\\[",e:"\\]",i:"$"},{cN:"selector-tag",b:"\\b(a|abbr|acronym|address|area|article|aside|audio|b|base|big|blockquote|body|br|button|canvas|caption|cite|code|col|colgroup|command|datalist|dd|del|details|dfn|div|dl|dt|em|embed|fieldset|figcaption|figure|footer|form|frame|frameset|(h[1-6])|head|header|hgroup|hr|html|i|iframe|img|input|ins|kbd|keygen|label|legend|li|link|map|mark|meta|meter|nav|noframes|noscript|object|ol|optgroup|option|output|p|param|pre|progress|q|rp|rt|ruby|samp|script|section|select|small|span|strike|strong|style|sub|sup|table|tbody|td|textarea|tfoot|th|thead|time|title|tr|tt|ul|var|video)\\b",r:0},{b:":(visited|valid|root|right|required|read-write|read-only|out-range|optional|only-of-type|only-child|nth-of-type|nth-last-of-type|nth-last-child|nth-child|not|link|left|last-of-type|last-child|lang|invalid|indeterminate|in-range|hover|focus|first-of-type|first-line|first-letter|first-child|first|enabled|empty|disabled|default|checked|before|after|active)"},{b:"::(after|before|choices|first-letter|first-line|repeat-index|repeat-item|selection|value)"},r,{cN:"attribute",b:"\\b(z-index|word-wrap|word-spacing|word-break|width|widows|white-space|visibility|vertical-align|unicode-bidi|transition-timing-function|transition-property|transition-duration|transition-delay|transition|transform-style|transform-origin|transform|top|text-underline-position|text-transform|text-shadow|text-rendering|text-overflow|text-indent|text-decoration-style|text-decoration-line|text-decoration-color|text-decoration|text-align-last|text-align|tab-size|table-layout|right|resize|quotes|position|pointer-events|perspective-origin|perspective|page-break-inside|page-break-before|page-break-after|padding-top|padding-right|padding-left|padding-bottom|padding|overflow-y|overflow-x|overflow-wrap|overflow|outline-width|outline-style|outline-offset|outline-color|outline|orphans|order|opacity|object-position|object-fit|normal|none|nav-up|nav-right|nav-left|nav-index|nav-down|min-width|min-height|max-width|max-height|mask|marks|margin-top|margin-right|margin-left|margin-bottom|margin|list-style-type|list-style-position|list-style-image|list-style|line-height|letter-spacing|left|justify-content|initial|inherit|ime-mode|image-orientation|image-resolution|image-rendering|icon|hyphens|height|font-weight|font-variant-ligatures|font-variant|font-style|font-stretch|font-size-adjust|font-size|font-language-override|font-kerning|font-feature-settings|font-family|font|float|flex-wrap|flex-shrink|flex-grow|flex-flow|flex-direction|flex-basis|flex|filter|empty-cells|display|direction|cursor|counter-reset|counter-increment|content|column-width|column-span|column-rule-width|column-rule-style|column-rule-color|column-rule|column-gap|column-fill|column-count|columns|color|clip-path|clip|clear|caption-side|break-inside|break-before|break-after|box-sizing|box-shadow|box-decoration-break|bottom|border-width|border-top-width|border-top-style|border-top-right-radius|border-top-left-radius|border-top-color|border-top|border-style|border-spacing|border-right-width|border-right-style|border-right-color|border-right|border-radius|border-left-width|border-left-style|border-left-color|border-left|border-image-width|border-image-source|border-image-slice|border-image-repeat|border-image-outset|border-image|border-color|border-collapse|border-bottom-width|border-bottom-style|border-bottom-right-radius|border-bottom-left-radius|border-bottom-color|border-bottom|border|background-size|background-repeat|background-position|background-origin|background-image|background-color|background-clip|background-attachment|background-blend-mode|background|backface-visibility|auto|animation-timing-function|animation-play-state|animation-name|animation-iteration-count|animation-fill-mode|animation-duration|animation-direction|animation-delay|animation|align-self|align-items|align-content)\\b", -i:"[^\\s]"},{b:"\\b(whitespace|wait|w-resize|visible|vertical-text|vertical-ideographic|uppercase|upper-roman|upper-alpha|underline|transparent|top|thin|thick|text|text-top|text-bottom|tb-rl|table-header-group|table-footer-group|sw-resize|super|strict|static|square|solid|small-caps|separate|se-resize|scroll|s-resize|rtl|row-resize|ridge|right|repeat|repeat-y|repeat-x|relative|progress|pointer|overline|outside|outset|oblique|nowrap|not-allowed|normal|none|nw-resize|no-repeat|no-drop|newspaper|ne-resize|n-resize|move|middle|medium|ltr|lr-tb|lowercase|lower-roman|lower-alpha|loose|list-item|line|line-through|line-edge|lighter|left|keep-all|justify|italic|inter-word|inter-ideograph|inside|inset|inline|inline-block|inherit|inactive|ideograph-space|ideograph-parenthesis|ideograph-numeric|ideograph-alpha|horizontal|hidden|help|hand|groove|fixed|ellipsis|e-resize|double|dotted|distribute|distribute-space|distribute-letter|distribute-all-lines|disc|disabled|default|decimal|dashed|crosshair|collapse|col-resize|circle|char|center|capitalize|break-word|break-all|bottom|both|bolder|bold|block|bidi-override|below|baseline|auto|always|all-scroll|absolute|table|table-cell)\\b"},{b:":",e:";",c:[r,a,e.CSSNM,e.QSM,e.ASM,{cN:"meta",b:"!important"}]},{b:"@",e:"[{;]",k:"mixin include extend for if else each while charset import debug media page content font-face namespace warn",c:[r,e.QSM,e.ASM,a,e.CSSNM,{b:"\\s[A-Za-z0-9_.-]+",r:0}]}]}}),e.registerLanguage("shell",function(e){return{aliases:["console"],c:[{cN:"meta",b:"^\\s{0,3}[\\w\\d\\[\\]()@-]*[>%$#]",starts:{e:"$",sL:"bash"}}]}}),e.registerLanguage("smali",function(e){var t=["add","and","cmp","cmpg","cmpl","const","div","double","float","goto","if","int","long","move","mul","neg","new","nop","not","or","rem","return","shl","shr","sput","sub","throw","ushr","xor"],r=["aget","aput","array","check","execute","fill","filled","goto/16","goto/32","iget","instance","invoke","iput","monitor","packed","sget","sparse"],a=["transient","constructor","abstract","final","synthetic","public","private","protected","static","bridge","system"];return{aliases:["smali"],c:[{cN:"string",b:'"',e:'"',r:0},e.C("#","$",{r:0}),{cN:"keyword",v:[{b:"\\s*\\.end\\s[a-zA-Z0-9]*"},{b:"^[ ]*\\.[a-zA-Z]*",r:0},{b:"\\s:[a-zA-Z_0-9]*",r:0},{b:"\\s("+a.join("|")+")"}]},{cN:"built_in",v:[{b:"\\s("+t.join("|")+")\\s"},{b:"\\s("+t.join("|")+")((\\-|/)[a-zA-Z0-9]+)+\\s",r:10},{b:"\\s("+r.join("|")+")((\\-|/)[a-zA-Z0-9]+)*\\s",r:10}]},{cN:"class",b:"L[^(;:\n]*;",r:0},{b:"[vp][0-9]+"}]}}),e.registerLanguage("smalltalk",function(e){var t="[a-z][a-zA-Z0-9_]*",r={cN:"string",b:"\\$.{1}"},a={cN:"symbol",b:"#"+e.UIR};return{aliases:["st"],k:"self super nil true false thisContext",c:[e.C('"','"'),e.ASM,{cN:"type",b:"\\b[A-Z][A-Za-z0-9_]*",r:0},{b:t+":",r:0},e.CNM,a,r,{b:"\\|[ ]*"+t+"([ ]+"+t+")*[ ]*\\|",rB:!0,e:/\|/,i:/\S/,c:[{b:"(\\|[ ]*)?"+t}]},{b:"\\#\\(",e:"\\)",c:[e.ASM,r,e.CNM,a]}]}}),e.registerLanguage("sml",function(e){return{aliases:["ml"],k:{keyword:"abstype and andalso as case datatype do else end eqtype exception fn fun functor handle if in include infix infixr let local nonfix of op open orelse raise rec sharing sig signature struct structure then type val with withtype where while",built_in:"array bool char exn int list option order real ref string substring vector unit word",literal:"true false NONE SOME LESS EQUAL GREATER nil"},i:/\/\/|>>/,l:"[a-z_]\\w*!?",c:[{cN:"literal",b:/\[(\|\|)?\]|\(\)/,r:0},e.C("\\(\\*","\\*\\)",{c:["self"]}),{cN:"symbol",b:"'[A-Za-z_](?!')[\\w']*"},{cN:"type",b:"`[A-Z][\\w']*"},{cN:"type",b:"\\b[A-Z][\\w']*",r:0},{b:"[a-z_]\\w*'[\\w']*"},e.inherit(e.ASM,{cN:"string",r:0}),e.inherit(e.QSM,{i:null}),{cN:"number",b:"\\b(0[xX][a-fA-F0-9_]+[Lln]?|0[oO][0-7_]+[Lln]?|0[bB][01_]+[Lln]?|[0-9][0-9_]*([Lln]|(\\.[0-9_]*)?([eE][-+]?[0-9_]+)?)?)",r:0},{b:/[-=]>/}]}}),e.registerLanguage("sqf",function(e){var t=e.getLanguage("cpp").exports,r={cN:"variable",b:/\b_+[a-zA-Z_]\w*/},a={cN:"title",b:/[a-zA-Z][a-zA-Z0-9]+_fnc_\w*/},i={cN:"string",v:[{b:'"',e:'"',c:[{b:'""',r:0}]},{b:"'",e:"'",c:[{b:"''",r:0}]}]};return{aliases:["sqf"],cI:!0,k:{keyword:"case catch default do else exit exitWith for forEach from if switch then throw to try waitUntil while with",built_in:"abs accTime acos action actionIDs actionKeys actionKeysImages actionKeysNames actionKeysNamesArray actionName actionParams activateAddons activatedAddons activateKey add3DENConnection add3DENEventHandler add3DENLayer addAction addBackpack addBackpackCargo addBackpackCargoGlobal addBackpackGlobal addCamShake addCuratorAddons addCuratorCameraArea addCuratorEditableObjects addCuratorEditingArea addCuratorPoints addEditorObject addEventHandler addGoggles addGroupIcon addHandgunItem addHeadgear addItem addItemCargo addItemCargoGlobal addItemPool addItemToBackpack addItemToUniform addItemToVest addLiveStats addMagazine addMagazineAmmoCargo addMagazineCargo addMagazineCargoGlobal addMagazineGlobal addMagazinePool addMagazines addMagazineTurret addMenu addMenuItem addMissionEventHandler addMPEventHandler addMusicEventHandler addOwnedMine addPlayerScores addPrimaryWeaponItem addPublicVariableEventHandler addRating addResources addScore addScoreSide addSecondaryWeaponItem addSwitchableUnit addTeamMember addToRemainsCollector addUniform addVehicle addVest addWaypoint addWeapon addWeaponCargo addWeaponCargoGlobal addWeaponGlobal addWeaponItem addWeaponPool addWeaponTurret agent agents AGLToASL aimedAtTarget aimPos airDensityRTD airportSide AISFinishHeal alive all3DENEntities allControls allCurators allCutLayers allDead allDeadMen allDisplays allGroups allMapMarkers allMines allMissionObjects allow3DMode allowCrewInImmobile allowCuratorLogicIgnoreAreas allowDamage allowDammage allowFileOperations allowFleeing allowGetIn allowSprint allPlayers allSites allTurrets allUnits allUnitsUAV allVariables ammo and animate animateDoor animateSource animationNames animationPhase animationSourcePhase animationState append apply armoryPoints arrayIntersect asin ASLToAGL ASLToATL assert assignAsCargo assignAsCargoIndex assignAsCommander assignAsDriver assignAsGunner assignAsTurret assignCurator assignedCargo assignedCommander assignedDriver assignedGunner assignedItems assignedTarget assignedTeam assignedVehicle assignedVehicleRole assignItem assignTeam assignToAirport atan atan2 atg ATLToASL attachedObject attachedObjects attachedTo attachObject attachTo attackEnabled backpack backpackCargo backpackContainer backpackItems backpackMagazines backpackSpaceFor behaviour benchmark binocular blufor boundingBox boundingBoxReal boundingCenter breakOut breakTo briefingName buildingExit buildingPos buttonAction buttonSetAction cadetMode call callExtension camCommand camCommit camCommitPrepared camCommitted camConstuctionSetParams camCreate camDestroy cameraEffect cameraEffectEnableHUD cameraInterest cameraOn cameraView campaignConfigFile camPreload camPreloaded camPrepareBank camPrepareDir camPrepareDive camPrepareFocus camPrepareFov camPrepareFovRange camPreparePos camPrepareRelPos camPrepareTarget camSetBank camSetDir camSetDive camSetFocus camSetFov camSetFovRange camSetPos camSetRelPos camSetTarget camTarget camUseNVG canAdd canAddItemToBackpack canAddItemToUniform canAddItemToVest cancelSimpleTaskDestination canFire canMove canSlingLoad canStand canSuspend canUnloadInCombat canVehicleCargo captive captiveNum cbChecked cbSetChecked ceil channelEnabled cheatsEnabled checkAIFeature checkVisibility civilian className clearAllItemsFromBackpack clearBackpackCargo clearBackpackCargoGlobal clearGroupIcons clearItemCargo clearItemCargoGlobal clearItemPool clearMagazineCargo clearMagazineCargoGlobal clearMagazinePool clearOverlay clearRadio clearWeaponCargo clearWeaponCargoGlobal clearWeaponPool clientOwner closeDialog closeDisplay closeOverlay collapseObjectTree collect3DENHistory combatMode commandArtilleryFire commandChat commander commandFire commandFollow commandFSM commandGetOut commandingMenu commandMove commandRadio commandStop commandSuppressiveFire commandTarget commandWatch comment commitOverlay compile compileFinal completedFSM composeText configClasses configFile configHierarchy configName configNull configProperties configSourceAddonList configSourceMod configSourceModList connectTerminalToUAV controlNull controlsGroupCtrl copyFromClipboard copyToClipboard copyWaypoints cos count countEnemy countFriendly countSide countType countUnknown create3DENComposition create3DENEntity createAgent createCenter createDialog createDiaryLink createDiaryRecord createDiarySubject createDisplay createGearDialog createGroup createGuardedPoint createLocation createMarker createMarkerLocal createMenu createMine createMissionDisplay createMPCampaignDisplay createSimpleObject createSimpleTask createSite createSoundSource createTask createTeam createTrigger createUnit createVehicle createVehicleCrew createVehicleLocal crew ctrlActivate ctrlAddEventHandler ctrlAngle ctrlAutoScrollDelay ctrlAutoScrollRewind ctrlAutoScrollSpeed ctrlChecked ctrlClassName ctrlCommit ctrlCommitted ctrlCreate ctrlDelete ctrlEnable ctrlEnabled ctrlFade ctrlHTMLLoaded ctrlIDC ctrlIDD ctrlMapAnimAdd ctrlMapAnimClear ctrlMapAnimCommit ctrlMapAnimDone ctrlMapCursor ctrlMapMouseOver ctrlMapScale ctrlMapScreenToWorld ctrlMapWorldToScreen ctrlModel ctrlModelDirAndUp ctrlModelScale ctrlParent ctrlParentControlsGroup ctrlPosition ctrlRemoveAllEventHandlers ctrlRemoveEventHandler ctrlScale ctrlSetActiveColor ctrlSetAngle ctrlSetAutoScrollDelay ctrlSetAutoScrollRewind ctrlSetAutoScrollSpeed ctrlSetBackgroundColor ctrlSetChecked ctrlSetEventHandler ctrlSetFade ctrlSetFocus ctrlSetFont ctrlSetFontH1 ctrlSetFontH1B ctrlSetFontH2 ctrlSetFontH2B ctrlSetFontH3 ctrlSetFontH3B ctrlSetFontH4 ctrlSetFontH4B ctrlSetFontH5 ctrlSetFontH5B ctrlSetFontH6 ctrlSetFontH6B ctrlSetFontHeight ctrlSetFontHeightH1 ctrlSetFontHeightH2 ctrlSetFontHeightH3 ctrlSetFontHeightH4 ctrlSetFontHeightH5 ctrlSetFontHeightH6 ctrlSetFontHeightSecondary ctrlSetFontP ctrlSetFontPB ctrlSetFontSecondary ctrlSetForegroundColor ctrlSetModel ctrlSetModelDirAndUp ctrlSetModelScale ctrlSetPosition ctrlSetScale ctrlSetStructuredText ctrlSetText ctrlSetTextColor ctrlSetTooltip ctrlSetTooltipColorBox ctrlSetTooltipColorShade ctrlSetTooltipColorText ctrlShow ctrlShown ctrlText ctrlTextHeight ctrlType ctrlVisible curatorAddons curatorCamera curatorCameraArea curatorCameraAreaCeiling curatorCoef curatorEditableObjects curatorEditingArea curatorEditingAreaType curatorMouseOver curatorPoints curatorRegisteredObjects curatorSelected curatorWaypointCost current3DENOperation currentChannel currentCommand currentMagazine currentMagazineDetail currentMagazineDetailTurret currentMagazineTurret currentMuzzle currentNamespace currentTask currentTasks currentThrowable currentVisionMode currentWaypoint currentWeapon currentWeaponMode currentWeaponTurret currentZeroing cursorObject cursorTarget customChat customRadio cutFadeOut cutObj cutRsc cutText damage date dateToNumber daytime deActivateKey debriefingText debugFSM debugLog deg delete3DENEntities deleteAt deleteCenter deleteCollection deleteEditorObject deleteGroup deleteIdentity deleteLocation deleteMarker deleteMarkerLocal deleteRange deleteResources deleteSite deleteStatus deleteTeam deleteVehicle deleteVehicleCrew deleteWaypoint detach detectedMines diag_activeMissionFSMs diag_activeScripts diag_activeSQFScripts diag_activeSQSScripts diag_captureFrame diag_captureSlowFrame diag_codePerformance diag_drawMode diag_enable diag_enabled diag_fps diag_fpsMin diag_frameNo diag_list diag_log diag_logSlowFrame diag_mergeConfigFile diag_recordTurretLimits diag_tickTime diag_toggle dialog diarySubjectExists didJIP didJIPOwner difficulty difficultyEnabled difficultyEnabledRTD difficultyOption direction directSay disableAI disableCollisionWith disableConversation disableDebriefingStats disableNVGEquipment disableRemoteSensors disableSerialization disableTIEquipment disableUAVConnectability disableUserInput displayAddEventHandler displayCtrl displayNull displayParent displayRemoveAllEventHandlers displayRemoveEventHandler displaySetEventHandler dissolveTeam distance distance2D distanceSqr distributionRegion do3DENAction doArtilleryFire doFire doFollow doFSM doGetOut doMove doorPhase doStop doSuppressiveFire doTarget doWatch drawArrow drawEllipse drawIcon drawIcon3D drawLine drawLine3D drawLink drawLocation drawPolygon drawRectangle driver drop east echo edit3DENMissionAttributes editObject editorSetEventHandler effectiveCommander emptyPositions enableAI enableAIFeature enableAimPrecision enableAttack enableAudioFeature enableCamShake enableCaustics enableChannel enableCollisionWith enableCopilot enableDebriefingStats enableDiagLegend enableEndDialog enableEngineArtillery enableEnvironment enableFatigue enableGunLights enableIRLasers enableMimics enablePersonTurret enableRadio enableReload enableRopeAttach enableSatNormalOnDetail enableSaving enableSentences enableSimulation enableSimulationGlobal enableStamina enableTeamSwitch enableUAVConnectability enableUAVWaypoints enableVehicleCargo endLoadingScreen endMission engineOn enginesIsOnRTD enginesRpmRTD enginesTorqueRTD entities estimatedEndServerTime estimatedTimeLeft evalObjectArgument everyBackpack everyContainer exec execEditorScript execFSM execVM exp expectedDestination exportJIPMessages eyeDirection eyePos face faction fadeMusic fadeRadio fadeSound fadeSpeech failMission fillWeaponsFromPool find findCover findDisplay findEditorObject findEmptyPosition findEmptyPositionReady findNearestEnemy finishMissionInit finite fire fireAtTarget firstBackpack flag flagOwner flagSide flagTexture fleeing floor flyInHeight flyInHeightASL fog fogForecast fogParams forceAddUniform forcedMap forceEnd forceMap forceRespawn forceSpeed forceWalk forceWeaponFire forceWeatherChange forEachMember forEachMemberAgent forEachMemberTeam format formation formationDirection formationLeader formationMembers formationPosition formationTask formatText formLeader freeLook fromEditor fuel fullCrew gearIDCAmmoCount gearSlotAmmoCount gearSlotData get3DENActionState get3DENAttribute get3DENCamera get3DENConnections get3DENEntity get3DENEntityID get3DENGrid get3DENIconsVisible get3DENLayerEntities get3DENLinesVisible get3DENMissionAttribute get3DENMouseOver get3DENSelected getAimingCoef getAllHitPointsDamage getAllOwnedMines getAmmoCargo getAnimAimPrecision getAnimSpeedCoef getArray getArtilleryAmmo getArtilleryComputerSettings getArtilleryETA getAssignedCuratorLogic getAssignedCuratorUnit getBackpackCargo getBleedingRemaining getBurningValue getCameraViewDirection getCargoIndex getCenterOfMass getClientState getClientStateNumber getConnectedUAV getCustomAimingCoef getDammage getDescription getDir getDirVisual getDLCs getEditorCamera getEditorMode getEditorObjectScope getElevationOffset getFatigue getFriend getFSMVariable getFuelCargo getGroupIcon getGroupIconParams getGroupIcons getHideFrom getHit getHitIndex getHitPointDamage getItemCargo getMagazineCargo getMarkerColor getMarkerPos getMarkerSize getMarkerType getMass getMissionConfig getMissionConfigValue getMissionDLCs getMissionLayerEntities getModelInfo getMousePosition getNumber getObjectArgument getObjectChildren getObjectDLC getObjectMaterials getObjectProxy getObjectTextures getObjectType getObjectViewDistance getOxygenRemaining getPersonUsedDLCs getPilotCameraDirection getPilotCameraPosition getPilotCameraRotation getPilotCameraTarget getPlayerChannel getPlayerScores getPlayerUID getPos getPosASL getPosASLVisual getPosASLW getPosATL getPosATLVisual getPosVisual getPosWorld getRelDir getRelPos getRemoteSensorsDisabled getRepairCargo getResolution getShadowDistance getShotParents getSlingLoad getSpeed getStamina getStatValue getSuppression getTerrainHeightASL getText getUnitLoadout getUnitTrait getVariable getVehicleCargo getWeaponCargo getWeaponSway getWPPos glanceAt globalChat globalRadio goggles goto group groupChat groupFromNetId groupIconSelectable groupIconsVisible groupId groupOwner groupRadio groupSelectedUnits groupSelectUnit grpNull gunner gusts halt handgunItems handgunMagazine handgunWeapon handsHit hasInterface hasPilotCamera hasWeapon hcAllGroups hcGroupParams hcLeader hcRemoveAllGroups hcRemoveGroup hcSelected hcSelectGroup hcSetGroup hcShowBar hcShownBar headgear hideBody hideObject hideObjectGlobal hideSelection hint hintC hintCadet hintSilent hmd hostMission htmlLoad HUDMovementLevels humidity image importAllGroups importance in inArea inAreaArray incapacitatedState independent inflame inflamed inGameUISetEventHandler inheritsFrom initAmbientLife inPolygon inputAction inRangeOfArtillery insertEditorObject intersect is3DEN is3DENMultiplayer isAbleToBreathe isAgent isArray isAutoHoverOn isAutonomous isAutotest isBleeding isBurning isClass isCollisionLightOn isCopilotEnabled isDedicated isDLCAvailable isEngineOn isEqualTo isEqualType isEqualTypeAll isEqualTypeAny isEqualTypeArray isEqualTypeParams isFilePatchingEnabled isFlashlightOn isFlatEmpty isForcedWalk isFormationLeader isHidden isInRemainsCollector isInstructorFigureEnabled isIRLaserOn isKeyActive isKindOf isLightOn isLocalized isManualFire isMarkedForCollection isMultiplayer isMultiplayerSolo isNil isNull isNumber isObjectHidden isObjectRTD isOnRoad isPipEnabled isPlayer isRealTime isRemoteExecuted isRemoteExecutedJIP isServer isShowing3DIcons isSprintAllowed isStaminaEnabled isSteamMission isStreamFriendlyUIEnabled isText isTouchingGround isTurnedOut isTutHintsEnabled isUAVConnectable isUAVConnected isUniformAllowed isVehicleCargo isWalking isWeaponDeployed isWeaponRested itemCargo items itemsWithMagazines join joinAs joinAsSilent joinSilent joinString kbAddDatabase kbAddDatabaseTargets kbAddTopic kbHasTopic kbReact kbRemoveTopic kbTell kbWasSaid keyImage keyName knowsAbout land landAt landResult language laserTarget lbAdd lbClear lbColor lbCurSel lbData lbDelete lbIsSelected lbPicture lbSelection lbSetColor lbSetCurSel lbSetData lbSetPicture lbSetPictureColor lbSetPictureColorDisabled lbSetPictureColorSelected lbSetSelectColor lbSetSelectColorRight lbSetSelected lbSetTooltip lbSetValue lbSize lbSort lbSortByValue lbText lbValue leader leaderboardDeInit leaderboardGetRows leaderboardInit leaveVehicle libraryCredits libraryDisclaimers lifeState lightAttachObject lightDetachObject lightIsOn lightnings limitSpeed linearConversion lineBreak lineIntersects lineIntersectsObjs lineIntersectsSurfaces lineIntersectsWith linkItem list listObjects ln lnbAddArray lnbAddColumn lnbAddRow lnbClear lnbColor lnbCurSelRow lnbData lnbDeleteColumn lnbDeleteRow lnbGetColumnsPosition lnbPicture lnbSetColor lnbSetColumnsPos lnbSetCurSelRow lnbSetData lnbSetPicture lnbSetText lnbSetValue lnbSize lnbText lnbValue load loadAbs loadBackpack loadFile loadGame loadIdentity loadMagazine loadOverlay loadStatus loadUniform loadVest local localize locationNull locationPosition lock lockCameraTo lockCargo lockDriver locked lockedCargo lockedDriver lockedTurret lockIdentity lockTurret lockWP log logEntities logNetwork logNetworkTerminate lookAt lookAtPos magazineCargo magazines magazinesAllTurrets magazinesAmmo magazinesAmmoCargo magazinesAmmoFull magazinesDetail magazinesDetailBackpack magazinesDetailUniform magazinesDetailVest magazinesTurret magazineTurretAmmo mapAnimAdd mapAnimClear mapAnimCommit mapAnimDone mapCenterOnCamera mapGridPosition markAsFinishedOnSteam markerAlpha markerBrush markerColor markerDir markerPos markerShape markerSize markerText markerType max members menuAction menuAdd menuChecked menuClear menuCollapse menuData menuDelete menuEnable menuEnabled menuExpand menuHover menuPicture menuSetAction menuSetCheck menuSetData menuSetPicture menuSetValue menuShortcut menuShortcutText menuSize menuSort menuText menuURL menuValue min mineActive mineDetectedBy missionConfigFile missionDifficulty missionName missionNamespace missionStart missionVersion mod modelToWorld modelToWorldVisual modParams moonIntensity moonPhase morale move move3DENCamera moveInAny moveInCargo moveInCommander moveInDriver moveInGunner moveInTurret moveObjectToEnd moveOut moveTime moveTo moveToCompleted moveToFailed musicVolume name nameSound nearEntities nearestBuilding nearestLocation nearestLocations nearestLocationWithDubbing nearestObject nearestObjects nearestTerrainObjects nearObjects nearObjectsReady nearRoads nearSupplies nearTargets needReload netId netObjNull newOverlay nextMenuItemIndex nextWeatherChange nMenuItems not numberToDate objectCurators objectFromNetId objectParent objNull objStatus onBriefingGroup onBriefingNotes onBriefingPlan onBriefingTeamSwitch onCommandModeChanged onDoubleClick onEachFrame onGroupIconClick onGroupIconOverEnter onGroupIconOverLeave onHCGroupSelectionChanged onMapSingleClick onPlayerConnected onPlayerDisconnected onPreloadFinished onPreloadStarted onShowNewObject onTeamSwitch openCuratorInterface openDLCPage openMap openYoutubeVideo opfor or orderGetIn overcast overcastForecast owner param params parseNumber parseText parsingNamespace particlesQuality pi pickWeaponPool pitch pixelGrid pixelGridBase pixelGridNoUIScale pixelH pixelW playableSlotsNumber playableUnits playAction playActionNow player playerRespawnTime playerSide playersNumber playGesture playMission playMove playMoveNow playMusic playScriptedMission playSound playSound3D position positionCameraToWorld posScreenToWorld posWorldToScreen ppEffectAdjust ppEffectCommit ppEffectCommitted ppEffectCreate ppEffectDestroy ppEffectEnable ppEffectEnabled ppEffectForceInNVG precision preloadCamera preloadObject preloadSound preloadTitleObj preloadTitleRsc preprocessFile preprocessFileLineNumbers primaryWeapon primaryWeaponItems primaryWeaponMagazine priority private processDiaryLink productVersion profileName profileNamespace profileNameSteam progressLoadingScreen progressPosition progressSetPosition publicVariable publicVariableClient publicVariableServer pushBack pushBackUnique putWeaponPool queryItemsPool queryMagazinePool queryWeaponPool rad radioChannelAdd radioChannelCreate radioChannelRemove radioChannelSetCallSign radioChannelSetLabel radioVolume rain rainbow random rank rankId rating rectangular registeredTasks registerTask reload reloadEnabled remoteControl remoteExec remoteExecCall remove3DENConnection remove3DENEventHandler remove3DENLayer removeAction removeAll3DENEventHandlers removeAllActions removeAllAssignedItems removeAllContainers removeAllCuratorAddons removeAllCuratorCameraAreas removeAllCuratorEditingAreas removeAllEventHandlers removeAllHandgunItems removeAllItems removeAllItemsWithMagazines removeAllMissionEventHandlers removeAllMPEventHandlers removeAllMusicEventHandlers removeAllOwnedMines removeAllPrimaryWeaponItems removeAllWeapons removeBackpack removeBackpackGlobal removeCuratorAddons removeCuratorCameraArea removeCuratorEditableObjects removeCuratorEditingArea removeDrawIcon removeDrawLinks removeEventHandler removeFromRemainsCollector removeGoggles removeGroupIcon removeHandgunItem removeHeadgear removeItem removeItemFromBackpack removeItemFromUniform removeItemFromVest removeItems removeMagazine removeMagazineGlobal removeMagazines removeMagazinesTurret removeMagazineTurret removeMenuItem removeMissionEventHandler removeMPEventHandler removeMusicEventHandler removeOwnedMine removePrimaryWeaponItem removeSecondaryWeaponItem removeSimpleTask removeSwitchableUnit removeTeamMember removeUniform removeVest removeWeapon removeWeaponGlobal removeWeaponTurret requiredVersion resetCamShake resetSubgroupDirection resistance resize resources respawnVehicle restartEditorCamera reveal revealMine reverse reversedMouseY roadAt roadsConnectedTo roleDescription ropeAttachedObjects ropeAttachedTo ropeAttachEnabled ropeAttachTo ropeCreate ropeCut ropeDestroy ropeDetach ropeEndPosition ropeLength ropes ropeUnwind ropeUnwound rotorsForcesRTD rotorsRpmRTD round runInitScript safeZoneH safeZoneW safeZoneWAbs safeZoneX safeZoneXAbs safeZoneY save3DENInventory saveGame saveIdentity saveJoysticks saveOverlay saveProfileNamespace saveStatus saveVar savingEnabled say say2D say3D scopeName score scoreSide screenshot screenToWorld scriptDone scriptName scriptNull scudState secondaryWeapon secondaryWeaponItems secondaryWeaponMagazine select selectBestPlaces selectDiarySubject selectedEditorObjects selectEditorObject selectionNames selectionPosition selectLeader selectMax selectMin selectNoPlayer selectPlayer selectRandom selectWeapon selectWeaponTurret sendAUMessage sendSimpleCommand sendTask sendTaskResult sendUDPMessage serverCommand serverCommandAvailable serverCommandExecutable serverName serverTime set set3DENAttribute set3DENAttributes set3DENGrid set3DENIconsVisible set3DENLayer set3DENLinesVisible set3DENMissionAttributes set3DENModelsVisible set3DENObjectType set3DENSelected setAccTime setAirportSide setAmmo setAmmoCargo setAnimSpeedCoef setAperture setApertureNew setArmoryPoints setAttributes setAutonomous setBehaviour setBleedingRemaining setCameraInterest setCamShakeDefParams setCamShakeParams setCamUseTi setCaptive setCenterOfMass setCollisionLight setCombatMode setCompassOscillation setCuratorCameraAreaCeiling setCuratorCoef setCuratorEditingAreaType setCuratorWaypointCost setCurrentChannel setCurrentTask setCurrentWaypoint setCustomAimCoef setDamage setDammage setDate setDebriefingText setDefaultCamera setDestination setDetailMapBlendPars setDir setDirection setDrawIcon setDropInterval setEditorMode setEditorObjectScope setEffectCondition setFace setFaceAnimation setFatigue setFlagOwner setFlagSide setFlagTexture setFog setFormation setFormationTask setFormDir setFriend setFromEditor setFSMVariable setFuel setFuelCargo setGroupIcon setGroupIconParams setGroupIconsSelectable setGroupIconsVisible setGroupId setGroupIdGlobal setGroupOwner setGusts setHideBehind setHit setHitIndex setHitPointDamage setHorizonParallaxCoef setHUDMovementLevels setIdentity setImportance setLeader setLightAmbient setLightAttenuation setLightBrightness setLightColor setLightDayLight setLightFlareMaxDistance setLightFlareSize setLightIntensity setLightnings setLightUseFlare setLocalWindParams setMagazineTurretAmmo setMarkerAlpha setMarkerAlphaLocal setMarkerBrush setMarkerBrushLocal setMarkerColor setMarkerColorLocal setMarkerDir setMarkerDirLocal setMarkerPos setMarkerPosLocal setMarkerShape setMarkerShapeLocal setMarkerSize setMarkerSizeLocal setMarkerText setMarkerTextLocal setMarkerType setMarkerTypeLocal setMass setMimic setMousePosition setMusicEffect setMusicEventHandler setName setNameSound setObjectArguments setObjectMaterial setObjectMaterialGlobal setObjectProxy setObjectTexture setObjectTextureGlobal setObjectViewDistance setOvercast setOwner setOxygenRemaining setParticleCircle setParticleClass setParticleFire setParticleParams setParticleRandom setPilotCameraDirection setPilotCameraRotation setPilotCameraTarget setPilotLight setPiPEffect setPitch setPlayable setPlayerRespawnTime setPos setPosASL setPosASL2 setPosASLW setPosATL setPosition setPosWorld setRadioMsg setRain setRainbow setRandomLip setRank setRectangular setRepairCargo setShadowDistance setShotParents setSide setSimpleTaskAlwaysVisible setSimpleTaskCustomData setSimpleTaskDescription setSimpleTaskDestination setSimpleTaskTarget setSimpleTaskType setSimulWeatherLayers setSize setSkill setSlingLoad setSoundEffect setSpeaker setSpeech setSpeedMode setStamina setStaminaScheme setStatValue setSuppression setSystemOfUnits setTargetAge setTaskResult setTaskState setTerrainGrid setText setTimeMultiplier setTitleEffect setTriggerActivation setTriggerArea setTriggerStatements setTriggerText setTriggerTimeout setTriggerType setType setUnconscious setUnitAbility setUnitLoadout setUnitPos setUnitPosWeak setUnitRank setUnitRecoilCoefficient setUnitTrait setUnloadInCombat setUserActionText setVariable setVectorDir setVectorDirAndUp setVectorUp setVehicleAmmo setVehicleAmmoDef setVehicleArmor setVehicleCargo setVehicleId setVehicleLock setVehiclePosition setVehicleTiPars setVehicleVarName setVelocity setVelocityTransformation setViewDistance setVisibleIfTreeCollapsed setWaves setWaypointBehaviour setWaypointCombatMode setWaypointCompletionRadius setWaypointDescription setWaypointForceBehaviour setWaypointFormation setWaypointHousePosition setWaypointLoiterRadius setWaypointLoiterType setWaypointName setWaypointPosition setWaypointScript setWaypointSpeed setWaypointStatements setWaypointTimeout setWaypointType setWaypointVisible setWeaponReloadingTime setWind setWindDir setWindForce setWindStr setWPPos show3DIcons showChat showCinemaBorder showCommandingMenu showCompass showCuratorCompass showGPS showHUD showLegend showMap shownArtilleryComputer shownChat shownCompass shownCuratorCompass showNewEditorObject shownGPS shownHUD shownMap shownPad shownRadio shownScoretable shownUAVFeed shownWarrant shownWatch showPad showRadio showScoretable showSubtitles showUAVFeed showWarrant showWatch showWaypoint showWaypoints side sideAmbientLife sideChat sideEmpty sideEnemy sideFriendly sideLogic sideRadio sideUnknown simpleTasks simulationEnabled simulCloudDensity simulCloudOcclusion simulInClouds simulWeatherSync sin size sizeOf skill skillFinal skipTime sleep sliderPosition sliderRange sliderSetPosition sliderSetRange sliderSetSpeed sliderSpeed slingLoadAssistantShown soldierMagazines someAmmo sort soundVolume spawn speaker speed speedMode splitString sqrt squadParams stance startLoadingScreen step stop stopEngineRTD stopped str sunOrMoon supportInfo suppressFor surfaceIsWater surfaceNormal surfaceType swimInDepth switchableUnits switchAction switchCamera switchGesture switchLight switchMove synchronizedObjects synchronizedTriggers synchronizedWaypoints synchronizeObjectsAdd synchronizeObjectsRemove synchronizeTrigger synchronizeWaypoint systemChat systemOfUnits tan targetKnowledge targetsAggregate targetsQuery taskAlwaysVisible taskChildren taskCompleted taskCustomData taskDescription taskDestination taskHint taskMarkerOffset taskNull taskParent taskResult taskState taskType teamMember teamMemberNull teamName teams teamSwitch teamSwitchEnabled teamType terminate terrainIntersect terrainIntersectASL text textLog textLogFormat tg time timeMultiplier titleCut titleFadeOut titleObj titleRsc titleText toArray toFixed toLower toString toUpper triggerActivated triggerActivation triggerArea triggerAttachedVehicle triggerAttachObject triggerAttachVehicle triggerStatements triggerText triggerTimeout triggerTimeoutCurrent triggerType turretLocal turretOwner turretUnit tvAdd tvClear tvCollapse tvCount tvCurSel tvData tvDelete tvExpand tvPicture tvSetCurSel tvSetData tvSetPicture tvSetPictureColor tvSetPictureColorDisabled tvSetPictureColorSelected tvSetPictureRight tvSetPictureRightColor tvSetPictureRightColorDisabled tvSetPictureRightColorSelected tvSetText tvSetTooltip tvSetValue tvSort tvSortByValue tvText tvTooltip tvValue type typeName typeOf UAVControl uiNamespace uiSleep unassignCurator unassignItem unassignTeam unassignVehicle underwater uniform uniformContainer uniformItems uniformMagazines unitAddons unitAimPosition unitAimPositionVisual unitBackpack unitIsUAV unitPos unitReady unitRecoilCoefficient units unitsBelowHeight unlinkItem unlockAchievement unregisterTask updateDrawIcon updateMenuItem updateObjectTree useAISteeringComponent useAudioTimeForMoves vectorAdd vectorCos vectorCrossProduct vectorDiff vectorDir vectorDirVisual vectorDistance vectorDistanceSqr vectorDotProduct vectorFromTo vectorMagnitude vectorMagnitudeSqr vectorMultiply vectorNormalized vectorUp vectorUpVisual vehicle vehicleCargoEnabled vehicleChat vehicleRadio vehicles vehicleVarName velocity velocityModelSpace verifySignature vest vestContainer vestItems vestMagazines viewDistance visibleCompass visibleGPS visibleMap visiblePosition visiblePositionASL visibleScoretable visibleWatch waves waypointAttachedObject waypointAttachedVehicle waypointAttachObject waypointAttachVehicle waypointBehaviour waypointCombatMode waypointCompletionRadius waypointDescription waypointForceBehaviour waypointFormation waypointHousePosition waypointLoiterRadius waypointLoiterType waypointName waypointPosition waypoints waypointScript waypointsEnabledUAV waypointShow waypointSpeed waypointStatements waypointTimeout waypointTimeoutCurrent waypointType waypointVisible weaponAccessories weaponAccessoriesCargo weaponCargo weaponDirection weaponInertia weaponLowered weapons weaponsItems weaponsItemsCargo weaponState weaponsTurret weightRTD west WFSideText wind", -literal:"true false nil"},c:[e.CLCM,e.CBCM,e.NM,r,a,i,t.preprocessor],i:/#/}}),e.registerLanguage("sql",function(e){var t=e.C("--","$");return{cI:!0,i:/[<>{}*#]/,c:[{bK:"begin end start commit rollback savepoint lock alter create drop rename call delete do handler insert load replace select truncate update set show pragma grant merge describe use explain help declare prepare execute deallocate release unlock purge reset change stop analyze cache flush optimize repair kill install uninstall checksum restore check backup revoke comment",e:/;/,eW:!0,l:/[\w\.]+/,k:{keyword:"abort abs absolute acc acce accep accept access accessed accessible account acos action activate add addtime admin administer advanced advise aes_decrypt aes_encrypt after agent aggregate ali alia alias allocate allow alter always analyze ancillary and any anydata anydataset anyschema anytype apply archive archived archivelog are as asc ascii asin assembly assertion associate asynchronous at atan atn2 attr attri attrib attribu attribut attribute attributes audit authenticated authentication authid authors auto autoallocate autodblink autoextend automatic availability avg backup badfile basicfile before begin beginning benchmark between bfile bfile_base big bigfile bin binary_double binary_float binlog bit_and bit_count bit_length bit_or bit_xor bitmap blob_base block blocksize body both bound buffer_cache buffer_pool build bulk by byte byteordermark bytes cache caching call calling cancel capacity cascade cascaded case cast catalog category ceil ceiling chain change changed char_base char_length character_length characters characterset charindex charset charsetform charsetid check checksum checksum_agg child choose chr chunk class cleanup clear client clob clob_base clone close cluster_id cluster_probability cluster_set clustering coalesce coercibility col collate collation collect colu colum column column_value columns columns_updated comment commit compact compatibility compiled complete composite_limit compound compress compute concat concat_ws concurrent confirm conn connec connect connect_by_iscycle connect_by_isleaf connect_by_root connect_time connection consider consistent constant constraint constraints constructor container content contents context contributors controlfile conv convert convert_tz corr corr_k corr_s corresponding corruption cos cost count count_big counted covar_pop covar_samp cpu_per_call cpu_per_session crc32 create creation critical cross cube cume_dist curdate current current_date current_time current_timestamp current_user cursor curtime customdatum cycle data database databases datafile datafiles datalength date_add date_cache date_format date_sub dateadd datediff datefromparts datename datepart datetime2fromparts day day_to_second dayname dayofmonth dayofweek dayofyear days db_role_change dbtimezone ddl deallocate declare decode decompose decrement decrypt deduplicate def defa defau defaul default defaults deferred defi defin define degrees delayed delegate delete delete_all delimited demand dense_rank depth dequeue des_decrypt des_encrypt des_key_file desc descr descri describ describe descriptor deterministic diagnostics difference dimension direct_load directory disable disable_all disallow disassociate discardfile disconnect diskgroup distinct distinctrow distribute distributed div do document domain dotnet double downgrade drop dumpfile duplicate duration each edition editionable editions element ellipsis else elsif elt empty enable enable_all enclosed encode encoding encrypt end end-exec endian enforced engine engines enqueue enterprise entityescaping eomonth error errors escaped evalname evaluate event eventdata events except exception exceptions exchange exclude excluding execu execut execute exempt exists exit exp expire explain export export_set extended extent external external_1 external_2 externally extract failed failed_login_attempts failover failure far fast feature_set feature_value fetch field fields file file_name_convert filesystem_like_logging final finish first first_value fixed flash_cache flashback floor flush following follows for forall force form forma format found found_rows freelist freelists freepools fresh from from_base64 from_days ftp full function general generated get get_format get_lock getdate getutcdate global global_name globally go goto grant grants greatest group group_concat group_id grouping grouping_id groups gtid_subtract guarantee guard handler hash hashkeys having hea head headi headin heading heap help hex hierarchy high high_priority hosts hour http id ident_current ident_incr ident_seed identified identity idle_time if ifnull ignore iif ilike ilm immediate import in include including increment index indexes indexing indextype indicator indices inet6_aton inet6_ntoa inet_aton inet_ntoa infile initial initialized initially initrans inmemory inner innodb input insert install instance instantiable instr interface interleaved intersect into invalidate invisible is is_free_lock is_ipv4 is_ipv4_compat is_not is_not_null is_used_lock isdate isnull isolation iterate java join json json_exists keep keep_duplicates key keys kill language large last last_day last_insert_id last_value lax lcase lead leading least leaves left len lenght length less level levels library like like2 like4 likec limit lines link list listagg little ln load load_file lob lobs local localtime localtimestamp locate locator lock locked log log10 log2 logfile logfiles logging logical logical_reads_per_call logoff logon logs long loop low low_priority lower lpad lrtrim ltrim main make_set makedate maketime managed management manual map mapping mask master master_pos_wait match matched materialized max maxextents maximize maxinstances maxlen maxlogfiles maxloghistory maxlogmembers maxsize maxtrans md5 measures median medium member memcompress memory merge microsecond mid migration min minextents minimum mining minus minute minvalue missing mod mode model modification modify module monitoring month months mount move movement multiset mutex name name_const names nan national native natural nav nchar nclob nested never new newline next nextval no no_write_to_binlog noarchivelog noaudit nobadfile nocheck nocompress nocopy nocycle nodelay nodiscardfile noentityescaping noguarantee nokeep nologfile nomapping nomaxvalue nominimize nominvalue nomonitoring none noneditionable nonschema noorder nopr nopro noprom nopromp noprompt norely noresetlogs noreverse normal norowdependencies noschemacheck noswitch not nothing notice notrim novalidate now nowait nth_value nullif nulls num numb numbe nvarchar nvarchar2 object ocicoll ocidate ocidatetime ociduration ociinterval ociloblocator ocinumber ociref ocirefcursor ocirowid ocistring ocitype oct octet_length of off offline offset oid oidindex old on online only opaque open operations operator optimal optimize option optionally or oracle oracle_date oradata ord ordaudio orddicom orddoc order ordimage ordinality ordvideo organization orlany orlvary out outer outfile outline output over overflow overriding package pad parallel parallel_enable parameters parent parse partial partition partitions pascal passing password password_grace_time password_lock_time password_reuse_max password_reuse_time password_verify_function patch path patindex pctincrease pctthreshold pctused pctversion percent percent_rank percentile_cont percentile_disc performance period period_add period_diff permanent physical pi pipe pipelined pivot pluggable plugin policy position post_transaction pow power pragma prebuilt precedes preceding precision prediction prediction_cost prediction_details prediction_probability prediction_set prepare present preserve prior priority private private_sga privileges procedural procedure procedure_analyze processlist profiles project prompt protection public publishingservername purge quarter query quick quiesce quota quotename radians raise rand range rank raw read reads readsize rebuild record records recover recovery recursive recycle redo reduced ref reference referenced references referencing refresh regexp_like register regr_avgx regr_avgy regr_count regr_intercept regr_r2 regr_slope regr_sxx regr_sxy reject rekey relational relative relaylog release release_lock relies_on relocate rely rem remainder rename repair repeat replace replicate replication required reset resetlogs resize resource respect restore restricted result result_cache resumable resume retention return returning returns reuse reverse revoke right rlike role roles rollback rolling rollup round row row_count rowdependencies rowid rownum rows rtrim rules safe salt sample save savepoint sb1 sb2 sb4 scan schema schemacheck scn scope scroll sdo_georaster sdo_topo_geometry search sec_to_time second section securefile security seed segment select self sequence sequential serializable server servererror session session_user sessions_per_user set sets settings sha sha1 sha2 share shared shared_pool short show shrink shutdown si_averagecolor si_colorhistogram si_featurelist si_positionalcolor si_stillimage si_texture siblings sid sign sin size size_t sizes skip slave sleep smalldatetimefromparts smallfile snapshot some soname sort soundex source space sparse spfile split sql sql_big_result sql_buffer_result sql_cache sql_calc_found_rows sql_small_result sql_variant_property sqlcode sqldata sqlerror sqlname sqlstate sqrt square standalone standby start starting startup statement static statistics stats_binomial_test stats_crosstab stats_ks_test stats_mode stats_mw_test stats_one_way_anova stats_t_test_ stats_t_test_indep stats_t_test_one stats_t_test_paired stats_wsr_test status std stddev stddev_pop stddev_samp stdev stop storage store stored str str_to_date straight_join strcmp strict string struct stuff style subdate subpartition subpartitions substitutable substr substring subtime subtring_index subtype success sum suspend switch switchoffset switchover sync synchronous synonym sys sys_xmlagg sysasm sysaux sysdate sysdatetimeoffset sysdba sysoper system system_user sysutcdatetime table tables tablespace tan tdo template temporary terminated tertiary_weights test than then thread through tier ties time time_format time_zone timediff timefromparts timeout timestamp timestampadd timestampdiff timezone_abbr timezone_minute timezone_region to to_base64 to_date to_days to_seconds todatetimeoffset trace tracking transaction transactional translate translation treat trigger trigger_nestlevel triggers trim truncate try_cast try_convert try_parse type ub1 ub2 ub4 ucase unarchived unbounded uncompress under undo unhex unicode uniform uninstall union unique unix_timestamp unknown unlimited unlock unpivot unrecoverable unsafe unsigned until untrusted unusable unused update updated upgrade upped upper upsert url urowid usable usage use use_stored_outlines user user_data user_resources users using utc_date utc_timestamp uuid uuid_short validate validate_password_strength validation valist value values var var_samp varcharc vari varia variab variabl variable variables variance varp varraw varrawc varray verify version versions view virtual visible void wait wallet warning warnings week weekday weekofyear wellformed when whene whenev wheneve whenever where while whitespace with within without work wrapped xdb xml xmlagg xmlattributes xmlcast xmlcolattval xmlelement xmlexists xmlforest xmlindex xmlnamespaces xmlpi xmlquery xmlroot xmlschema xmlserialize xmltable xmltype xor year year_to_month years yearweek",literal:"true false null",built_in:"array bigint binary bit blob boolean char character date dec decimal float int int8 integer interval number numeric real record serial serial8 smallint text varchar varying void"},c:[{cN:"string",b:"'",e:"'",c:[e.BE,{b:"''"}]},{cN:"string",b:'"',e:'"',c:[e.BE,{b:'""'}]},{cN:"string",b:"`",e:"`",c:[e.BE]},e.CNM,e.CBCM,t]},e.CBCM,t]}}),e.registerLanguage("stan",function(e){return{c:[e.HCM,e.CLCM,e.CBCM,{b:e.UIR,l:e.UIR,k:{name:"for in while repeat until if then else",symbol:"bernoulli bernoulli_logit binomial binomial_logit beta_binomial hypergeometric categorical categorical_logit ordered_logistic neg_binomial neg_binomial_2 neg_binomial_2_log poisson poisson_log multinomial normal exp_mod_normal skew_normal student_t cauchy double_exponential logistic gumbel lognormal chi_square inv_chi_square scaled_inv_chi_square exponential inv_gamma weibull frechet rayleigh wiener pareto pareto_type_2 von_mises uniform multi_normal multi_normal_prec multi_normal_cholesky multi_gp multi_gp_cholesky multi_student_t gaussian_dlm_obs dirichlet lkj_corr lkj_corr_cholesky wishart inv_wishart","selector-tag":"int real vector simplex unit_vector ordered positive_ordered row_vector matrix cholesky_factor_corr cholesky_factor_cov corr_matrix cov_matrix",title:"functions model data parameters quantities transformed generated",literal:"true false"},r:0},{cN:"number",b:"0[xX][0-9a-fA-F]+[Li]?\\b",r:0},{cN:"number",b:"0[xX][0-9a-fA-F]+[Li]?\\b",r:0},{cN:"number",b:"\\d+(?:[eE][+\\-]?\\d*)?L\\b",r:0},{cN:"number",b:"\\d+\\.(?!\\d)(?:i\\b)?",r:0},{cN:"number",b:"\\d+(?:\\.\\d*)?(?:[eE][+\\-]?\\d*)?i?\\b",r:0},{cN:"number",b:"\\.\\d+(?:[eE][+\\-]?\\d*)?i?\\b",r:0}]}}),e.registerLanguage("stata",function(e){return{aliases:["do","ado"],cI:!0,k:"if else in foreach for forv forva forval forvalu forvalue forvalues by bys bysort xi quietly qui capture about ac ac_7 acprplot acprplot_7 adjust ado adopath adoupdate alpha ameans an ano anov anova anova_estat anova_terms anovadef aorder ap app appe appen append arch arch_dr arch_estat arch_p archlm areg areg_p args arima arima_dr arima_estat arima_p as asmprobit asmprobit_estat asmprobit_lf asmprobit_mfx__dlg asmprobit_p ass asse asser assert avplot avplot_7 avplots avplots_7 bcskew0 bgodfrey binreg bip0_lf biplot bipp_lf bipr_lf bipr_p biprobit bitest bitesti bitowt blogit bmemsize boot bootsamp bootstrap bootstrap_8 boxco_l boxco_p boxcox boxcox_6 boxcox_p bprobit br break brier bro brow brows browse brr brrstat bs bs_7 bsampl_w bsample bsample_7 bsqreg bstat bstat_7 bstat_8 bstrap bstrap_7 ca ca_estat ca_p cabiplot camat canon canon_8 canon_8_p canon_estat canon_p cap caprojection capt captu captur capture cat cc cchart cchart_7 cci cd censobs_table centile cf char chdir checkdlgfiles checkestimationsample checkhlpfiles checksum chelp ci cii cl class classutil clear cli clis clist clo clog clog_lf clog_p clogi clogi_sw clogit clogit_lf clogit_p clogitp clogl_sw cloglog clonevar clslistarray cluster cluster_measures cluster_stop cluster_tree cluster_tree_8 clustermat cmdlog cnr cnre cnreg cnreg_p cnreg_sw cnsreg codebook collaps4 collapse colormult_nb colormult_nw compare compress conf confi confir confirm conren cons const constr constra constrai constrain constraint continue contract copy copyright copysource cor corc corr corr2data corr_anti corr_kmo corr_smc corre correl correla correlat correlate corrgram cou coun count cox cox_p cox_sw coxbase coxhaz coxvar cprplot cprplot_7 crc cret cretu cretur creturn cross cs cscript cscript_log csi ct ct_is ctset ctst_5 ctst_st cttost cumsp cumsp_7 cumul cusum cusum_7 cutil d|0 datasig datasign datasigna datasignat datasignatu datasignatur datasignature datetof db dbeta de dec deco decod decode deff des desc descr descri describ describe destring dfbeta dfgls dfuller di di_g dir dirstats dis discard disp disp_res disp_s displ displa display distinct do doe doed doedi doedit dotplot dotplot_7 dprobit drawnorm drop ds ds_util dstdize duplicates durbina dwstat dydx e|0 ed edi edit egen eivreg emdef en enc enco encod encode eq erase ereg ereg_lf ereg_p ereg_sw ereghet ereghet_glf ereghet_glf_sh ereghet_gp ereghet_ilf ereghet_ilf_sh ereghet_ip eret eretu eretur ereturn err erro error est est_cfexist est_cfname est_clickable est_expand est_hold est_table est_unhold est_unholdok estat estat_default estat_summ estat_vce_only esti estimates etodow etof etomdy ex exi exit expand expandcl fac fact facto factor factor_estat factor_p factor_pca_rotated factor_rotate factormat fcast fcast_compute fcast_graph fdades fdadesc fdadescr fdadescri fdadescrib fdadescribe fdasav fdasave fdause fh_st file open file read file close file filefilter fillin find_hlp_file findfile findit findit_7 fit fl fli flis flist for5_0 form forma format fpredict frac_154 frac_adj frac_chk frac_cox frac_ddp frac_dis frac_dv frac_in frac_mun frac_pp frac_pq frac_pv frac_wgt frac_xo fracgen fracplot fracplot_7 fracpoly fracpred fron_ex fron_hn fron_p fron_tn fron_tn2 frontier ftodate ftoe ftomdy ftowdate g|0 gamhet_glf gamhet_gp gamhet_ilf gamhet_ip gamma gamma_d2 gamma_p gamma_sw gammahet gdi_hexagon gdi_spokes ge gen gene gener genera generat generate genrank genstd genvmean gettoken gl gladder gladder_7 glim_l01 glim_l02 glim_l03 glim_l04 glim_l05 glim_l06 glim_l07 glim_l08 glim_l09 glim_l10 glim_l11 glim_l12 glim_lf glim_mu glim_nw1 glim_nw2 glim_nw3 glim_p glim_v1 glim_v2 glim_v3 glim_v4 glim_v5 glim_v6 glim_v7 glm glm_6 glm_p glm_sw glmpred glo glob globa global glogit glogit_8 glogit_p gmeans gnbre_lf gnbreg gnbreg_5 gnbreg_p gomp_lf gompe_sw gomper_p gompertz gompertzhet gomphet_glf gomphet_glf_sh gomphet_gp gomphet_ilf gomphet_ilf_sh gomphet_ip gphdot gphpen gphprint gprefs gprobi_p gprobit gprobit_8 gr gr7 gr_copy gr_current gr_db gr_describe gr_dir gr_draw gr_draw_replay gr_drop gr_edit gr_editviewopts gr_example gr_example2 gr_export gr_print gr_qscheme gr_query gr_read gr_rename gr_replay gr_save gr_set gr_setscheme gr_table gr_undo gr_use graph graph7 grebar greigen greigen_7 greigen_8 grmeanby grmeanby_7 gs_fileinfo gs_filetype gs_graphinfo gs_stat gsort gwood h|0 hadimvo hareg hausman haver he heck_d2 heckma_p heckman heckp_lf heckpr_p heckprob hel help hereg hetpr_lf hetpr_p hetprob hettest hexdump hilite hist hist_7 histogram hlogit hlu hmeans hotel hotelling hprobit hreg hsearch icd9 icd9_ff icd9p iis impute imtest inbase include inf infi infil infile infix inp inpu input ins insheet insp inspe inspec inspect integ inten intreg intreg_7 intreg_p intrg2_ll intrg_ll intrg_ll2 ipolate iqreg ir irf irf_create irfm iri is_svy is_svysum isid istdize ivprob_1_lf ivprob_lf ivprobit ivprobit_p ivreg ivreg_footnote ivtob_1_lf ivtob_lf ivtobit ivtobit_p jackknife jacknife jknife jknife_6 jknife_8 jkstat joinby kalarma1 kap kap_3 kapmeier kappa kapwgt kdensity kdensity_7 keep ksm ksmirnov ktau kwallis l|0 la lab labe label labelbook ladder levels levelsof leverage lfit lfit_p li lincom line linktest lis list lloghet_glf lloghet_glf_sh lloghet_gp lloghet_ilf lloghet_ilf_sh lloghet_ip llogi_sw llogis_p llogist llogistic llogistichet lnorm_lf lnorm_sw lnorma_p lnormal lnormalhet lnormhet_glf lnormhet_glf_sh lnormhet_gp lnormhet_ilf lnormhet_ilf_sh lnormhet_ip lnskew0 loadingplot loc loca local log logi logis_lf logistic logistic_p logit logit_estat logit_p loglogs logrank loneway lookfor lookup lowess lowess_7 lpredict lrecomp lroc lroc_7 lrtest ls lsens lsens_7 lsens_x lstat ltable ltable_7 ltriang lv lvr2plot lvr2plot_7 m|0 ma mac macr macro makecns man manova manova_estat manova_p manovatest mantel mark markin markout marksample mat mat_capp mat_order mat_put_rr mat_rapp mata mata_clear mata_describe mata_drop mata_matdescribe mata_matsave mata_matuse mata_memory mata_mlib mata_mosave mata_rename mata_which matalabel matcproc matlist matname matr matri matrix matrix_input__dlg matstrik mcc mcci md0_ md1_ md1debug_ md2_ md2debug_ mds mds_estat mds_p mdsconfig mdslong mdsmat mdsshepard mdytoe mdytof me_derd mean means median memory memsize meqparse mer merg merge mfp mfx mhelp mhodds minbound mixed_ll mixed_ll_reparm mkassert mkdir mkmat mkspline ml ml_5 ml_adjs ml_bhhhs ml_c_d ml_check ml_clear ml_cnt ml_debug ml_defd ml_e0 ml_e0_bfgs ml_e0_cycle ml_e0_dfp ml_e0i ml_e1 ml_e1_bfgs ml_e1_bhhh ml_e1_cycle ml_e1_dfp ml_e2 ml_e2_cycle ml_ebfg0 ml_ebfr0 ml_ebfr1 ml_ebh0q ml_ebhh0 ml_ebhr0 ml_ebr0i ml_ecr0i ml_edfp0 ml_edfr0 ml_edfr1 ml_edr0i ml_eds ml_eer0i ml_egr0i ml_elf ml_elf_bfgs ml_elf_bhhh ml_elf_cycle ml_elf_dfp ml_elfi ml_elfs ml_enr0i ml_enrr0 ml_erdu0 ml_erdu0_bfgs ml_erdu0_bhhh ml_erdu0_bhhhq ml_erdu0_cycle ml_erdu0_dfp ml_erdu0_nrbfgs ml_exde ml_footnote ml_geqnr ml_grad0 ml_graph ml_hbhhh ml_hd0 ml_hold ml_init ml_inv ml_log ml_max ml_mlout ml_mlout_8 ml_model ml_nb0 ml_opt ml_p ml_plot ml_query ml_rdgrd ml_repor ml_s_e ml_score ml_searc ml_technique ml_unhold mleval mlf_ mlmatbysum mlmatsum mlog mlogi mlogit mlogit_footnote mlogit_p mlopts mlsum mlvecsum mnl0_ mor more mov move mprobit mprobit_lf mprobit_p mrdu0_ mrdu1_ mvdecode mvencode mvreg mvreg_estat n|0 nbreg nbreg_al nbreg_lf nbreg_p nbreg_sw nestreg net newey newey_7 newey_p news nl nl_7 nl_9 nl_9_p nl_p nl_p_7 nlcom nlcom_p nlexp2 nlexp2_7 nlexp2a nlexp2a_7 nlexp3 nlexp3_7 nlgom3 nlgom3_7 nlgom4 nlgom4_7 nlinit nllog3 nllog3_7 nllog4 nllog4_7 nlog_rd nlogit nlogit_p nlogitgen nlogittree nlpred no nobreak noi nois noisi noisil noisily note notes notes_dlg nptrend numlabel numlist odbc old_ver olo olog ologi ologi_sw ologit ologit_p ologitp on one onew onewa oneway op_colnm op_comp op_diff op_inv op_str opr opro oprob oprob_sw oprobi oprobi_p oprobit oprobitp opts_exclusive order orthog orthpoly ou out outf outfi outfil outfile outs outsh outshe outshee outsheet ovtest pac pac_7 palette parse parse_dissim pause pca pca_8 pca_display pca_estat pca_p pca_rotate pcamat pchart pchart_7 pchi pchi_7 pcorr pctile pentium pergram pergram_7 permute permute_8 personal peto_st pkcollapse pkcross pkequiv pkexamine pkexamine_7 pkshape pksumm pksumm_7 pl plo plot plugin pnorm pnorm_7 poisgof poiss_lf poiss_sw poisso_p poisson poisson_estat post postclose postfile postutil pperron pr prais prais_e prais_e2 prais_p predict predictnl preserve print pro prob probi probit probit_estat probit_p proc_time procoverlay procrustes procrustes_estat procrustes_p profiler prog progr progra program prop proportion prtest prtesti pwcorr pwd q\\s qby qbys qchi qchi_7 qladder qladder_7 qnorm qnorm_7 qqplot qqplot_7 qreg qreg_c qreg_p qreg_sw qu quadchk quantile quantile_7 que quer query range ranksum ratio rchart rchart_7 rcof recast reclink recode reg reg3 reg3_p regdw regr regre regre_p2 regres regres_p regress regress_estat regriv_p remap ren rena renam rename renpfix repeat replace report reshape restore ret retu retur return rm rmdir robvar roccomp roccomp_7 roccomp_8 rocf_lf rocfit rocfit_8 rocgold rocplot rocplot_7 roctab roctab_7 rolling rologit rologit_p rot rota rotat rotate rotatemat rreg rreg_p ru run runtest rvfplot rvfplot_7 rvpplot rvpplot_7 sa safesum sample sampsi sav save savedresults saveold sc sca scal scala scalar scatter scm_mine sco scob_lf scob_p scobi_sw scobit scor score scoreplot scoreplot_help scree screeplot screeplot_help sdtest sdtesti se search separate seperate serrbar serrbar_7 serset set set_defaults sfrancia sh she shel shell shewhart shewhart_7 signestimationsample signrank signtest simul simul_7 simulate simulate_8 sktest sleep slogit slogit_d2 slogit_p smooth snapspan so sor sort spearman spikeplot spikeplot_7 spikeplt spline_x split sqreg sqreg_p sret sretu sretur sreturn ssc st st_ct st_hc st_hcd st_hcd_sh st_is st_issys st_note st_promo st_set st_show st_smpl st_subid stack statsby statsby_8 stbase stci stci_7 stcox stcox_estat stcox_fr stcox_fr_ll stcox_p stcox_sw stcoxkm stcoxkm_7 stcstat stcurv stcurve stcurve_7 stdes stem stepwise stereg stfill stgen stir stjoin stmc stmh stphplot stphplot_7 stphtest stphtest_7 stptime strate strate_7 streg streg_sw streset sts sts_7 stset stsplit stsum sttocc sttoct stvary stweib su suest suest_8 sum summ summa summar summari summariz summarize sunflower sureg survcurv survsum svar svar_p svmat svy svy_disp svy_dreg svy_est svy_est_7 svy_estat svy_get svy_gnbreg_p svy_head svy_header svy_heckman_p svy_heckprob_p svy_intreg_p svy_ivreg_p svy_logistic_p svy_logit_p svy_mlogit_p svy_nbreg_p svy_ologit_p svy_oprobit_p svy_poisson_p svy_probit_p svy_regress_p svy_sub svy_sub_7 svy_x svy_x_7 svy_x_p svydes svydes_8 svygen svygnbreg svyheckman svyheckprob svyintreg svyintreg_7 svyintrg svyivreg svylc svylog_p svylogit svymarkout svymarkout_8 svymean svymlog svymlogit svynbreg svyolog svyologit svyoprob svyoprobit svyopts svypois svypois_7 svypoisson svyprobit svyprobt svyprop svyprop_7 svyratio svyreg svyreg_p svyregress svyset svyset_7 svyset_8 svytab svytab_7 svytest svytotal sw sw_8 swcnreg swcox swereg swilk swlogis swlogit swologit swoprbt swpois swprobit swqreg swtobit swweib symmetry symmi symplot symplot_7 syntax sysdescribe sysdir sysuse szroeter ta tab tab1 tab2 tab_or tabd tabdi tabdis tabdisp tabi table tabodds tabodds_7 tabstat tabu tabul tabula tabulat tabulate te tempfile tempname tempvar tes test testnl testparm teststd tetrachoric time_it timer tis tob tobi tobit tobit_p tobit_sw token tokeni tokeniz tokenize tostring total translate translator transmap treat_ll treatr_p treatreg trim trnb_cons trnb_mean trpoiss_d2 trunc_ll truncr_p truncreg tsappend tset tsfill tsline tsline_ex tsreport tsrevar tsrline tsset tssmooth tsunab ttest ttesti tut_chk tut_wait tutorial tw tware_st two twoway twoway__fpfit_serset twoway__function_gen twoway__histogram_gen twoway__ipoint_serset twoway__ipoints_serset twoway__kdensity_gen twoway__lfit_serset twoway__normgen_gen twoway__pci_serset twoway__qfit_serset twoway__scatteri_serset twoway__sunflower_gen twoway_ksm_serset ty typ type typeof u|0 unab unabbrev unabcmd update us use uselabel var var_mkcompanion var_p varbasic varfcast vargranger varirf varirf_add varirf_cgraph varirf_create varirf_ctable varirf_describe varirf_dir varirf_drop varirf_erase varirf_graph varirf_ograph varirf_rename varirf_set varirf_table varlist varlmar varnorm varsoc varstable varstable_w varstable_w2 varwle vce vec vec_fevd vec_mkphi vec_p vec_p_w vecirf_create veclmar veclmar_w vecnorm vecnorm_w vecrank vecstable verinst vers versi versio version view viewsource vif vwls wdatetof webdescribe webseek webuse weib1_lf weib2_lf weib_lf weib_lf0 weibhet_glf weibhet_glf_sh weibhet_glfa weibhet_glfa_sh weibhet_gp weibhet_ilf weibhet_ilf_sh weibhet_ilfa weibhet_ilfa_sh weibhet_ip weibu_sw weibul_p weibull weibull_c weibull_s weibullhet wh whelp whi which whil while wilc_st wilcoxon win wind windo window winexec wntestb wntestb_7 wntestq xchart xchart_7 xcorr xcorr_7 xi xi_6 xmlsav xmlsave xmluse xpose xsh xshe xshel xshell xt_iis xt_tis xtab_p xtabond xtbin_p xtclog xtcloglog xtcloglog_8 xtcloglog_d2 xtcloglog_pa_p xtcloglog_re_p xtcnt_p xtcorr xtdata xtdes xtfront_p xtfrontier xtgee xtgee_elink xtgee_estat xtgee_makeivar xtgee_p xtgee_plink xtgls xtgls_p xthaus xthausman xtht_p xthtaylor xtile xtint_p xtintreg xtintreg_8 xtintreg_d2 xtintreg_p xtivp_1 xtivp_2 xtivreg xtline xtline_ex xtlogit xtlogit_8 xtlogit_d2 xtlogit_fe_p xtlogit_pa_p xtlogit_re_p xtmixed xtmixed_estat xtmixed_p xtnb_fe xtnb_lf xtnbreg xtnbreg_pa_p xtnbreg_refe_p xtpcse xtpcse_p xtpois xtpoisson xtpoisson_d2 xtpoisson_pa_p xtpoisson_refe_p xtpred xtprobit xtprobit_8 xtprobit_d2 xtprobit_re_p xtps_fe xtps_lf xtps_ren xtps_ren_8 xtrar_p xtrc xtrc_p xtrchh xtrefe_p xtreg xtreg_be xtreg_fe xtreg_ml xtreg_pa_p xtreg_re xtregar xtrere_p xtset xtsf_ll xtsf_llti xtsum xttab xttest0 xttobit xttobit_8 xttobit_p xttrans yx yxview__barlike_draw yxview_area_draw yxview_bar_draw yxview_dot_draw yxview_dropline_draw yxview_function_draw yxview_iarrow_draw yxview_ilabels_draw yxview_normal_draw yxview_pcarrow_draw yxview_pcbarrow_draw yxview_pccapsym_draw yxview_pcscatter_draw yxview_pcspike_draw yxview_rarea_draw yxview_rbar_draw yxview_rbarm_draw yxview_rcap_draw yxview_rcapsym_draw yxview_rconnected_draw yxview_rline_draw yxview_rscatter_draw yxview_rspike_draw yxview_spike_draw yxview_sunflower_draw zap_s zinb zinb_llf zinb_plf zip zip_llf zip_p zip_plf zt_ct_5 zt_hc_5 zt_hcd_5 zt_is_5 zt_iss_5 zt_sho_5 zt_smp_5 ztbase_5 ztcox_5 ztdes_5 ztereg_5 ztfill_5 ztgen_5 ztir_5 ztjoin_5 ztnb ztnb_p ztp ztp_p zts_5 ztset_5 ztspli_5 ztsum_5 zttoct_5 ztvary_5 ztweib_5",c:[{cN:"symbol",b:/`[a-zA-Z0-9_]+'/},{cN:"variable",b:/\$\{?[a-zA-Z0-9_]+\}?/},{cN:"string",v:[{b:'`"[^\r\n]*?"\''},{b:'"[^\r\n"]*"'}]},{cN:"built_in",v:[{b:"\\b(abs|acos|asin|atan|atan2|atanh|ceil|cloglog|comb|cos|digamma|exp|floor|invcloglog|invlogit|ln|lnfact|lnfactorial|lngamma|log|log10|max|min|mod|reldif|round|sign|sin|sqrt|sum|tan|tanh|trigamma|trunc|betaden|Binomial|binorm|binormal|chi2|chi2tail|dgammapda|dgammapdada|dgammapdadx|dgammapdx|dgammapdxdx|F|Fden|Ftail|gammaden|gammap|ibeta|invbinomial|invchi2|invchi2tail|invF|invFtail|invgammap|invibeta|invnchi2|invnFtail|invnibeta|invnorm|invnormal|invttail|nbetaden|nchi2|nFden|nFtail|nibeta|norm|normal|normalden|normd|npnchi2|tden|ttail|uniform|abbrev|char|index|indexnot|length|lower|ltrim|match|plural|proper|real|regexm|regexr|regexs|reverse|rtrim|string|strlen|strlower|strltrim|strmatch|strofreal|strpos|strproper|strreverse|strrtrim|strtrim|strupper|subinstr|subinword|substr|trim|upper|word|wordcount|_caller|autocode|byteorder|chop|clip|cond|e|epsdouble|epsfloat|group|inlist|inrange|irecode|matrix|maxbyte|maxdouble|maxfloat|maxint|maxlong|mi|minbyte|mindouble|minfloat|minint|minlong|missing|r|recode|replay|return|s|scalar|d|date|day|dow|doy|halfyear|mdy|month|quarter|week|year|d|daily|dofd|dofh|dofm|dofq|dofw|dofy|h|halfyearly|hofd|m|mofd|monthly|q|qofd|quarterly|tin|twithin|w|weekly|wofd|y|yearly|yh|ym|yofd|yq|yw|cholesky|colnumb|colsof|corr|det|diag|diag0cnt|el|get|hadamard|I|inv|invsym|issym|issymmetric|J|matmissing|matuniform|mreldif|nullmat|rownumb|rowsof|sweep|syminv|trace|vec|vecdiag)(?=\\(|$)"}]},e.C("^[ ]*\\*.*$",!1),e.CLCM,e.CBCM]}}),e.registerLanguage("step21",function(e){var t="[A-Z_][A-Z0-9_.]*",r={keyword:"HEADER ENDSEC DATA"},a={cN:"meta",b:"ISO-10303-21;",r:10},i={cN:"meta",b:"END-ISO-10303-21;",r:10};return{aliases:["p21","step","stp"],cI:!0,l:t,k:r,c:[a,i,e.CLCM,e.CBCM,e.C("/\\*\\*!","\\*/"),e.CNM,e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null}),{cN:"string",b:"'",e:"'"},{cN:"symbol",v:[{b:"#",e:"\\d+",i:"\\W"}]}]}}),e.registerLanguage("stylus",function(e){var t={cN:"variable",b:"\\$"+e.IR},r={cN:"number",b:"#([a-fA-F0-9]{6}|[a-fA-F0-9]{3})"},a=["charset","css","debug","extend","font-face","for","import","include","media","mixin","page","warn","while"],i=["after","before","first-letter","first-line","active","first-child","focus","hover","lang","link","visited"],n=["a","abbr","address","article","aside","audio","b","blockquote","body","button","canvas","caption","cite","code","dd","del","details","dfn","div","dl","dt","em","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hgroup","html","i","iframe","img","input","ins","kbd","label","legend","li","mark","menu","nav","object","ol","p","q","quote","samp","section","span","strong","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","tr","ul","var","video"],o="[\\.\\s\\n\\[\\:,]",s=["align-content","align-items","align-self","animation","animation-delay","animation-direction","animation-duration","animation-fill-mode","animation-iteration-count","animation-name","animation-play-state","animation-timing-function","auto","backface-visibility","background","background-attachment","background-clip","background-color","background-image","background-origin","background-position","background-repeat","background-size","border","border-bottom","border-bottom-color","border-bottom-left-radius","border-bottom-right-radius","border-bottom-style","border-bottom-width","border-collapse","border-color","border-image","border-image-outset","border-image-repeat","border-image-slice","border-image-source","border-image-width","border-left","border-left-color","border-left-style","border-left-width","border-radius","border-right","border-right-color","border-right-style","border-right-width","border-spacing","border-style","border-top","border-top-color","border-top-left-radius","border-top-right-radius","border-top-style","border-top-width","border-width","bottom","box-decoration-break","box-shadow","box-sizing","break-after","break-before","break-inside","caption-side","clear","clip","clip-path","color","column-count","column-fill","column-gap","column-rule","column-rule-color","column-rule-style","column-rule-width","column-span","column-width","columns","content","counter-increment","counter-reset","cursor","direction","display","empty-cells","filter","flex","flex-basis","flex-direction","flex-flow","flex-grow","flex-shrink","flex-wrap","float","font","font-family","font-feature-settings","font-kerning","font-language-override","font-size","font-size-adjust","font-stretch","font-style","font-variant","font-variant-ligatures","font-weight","height","hyphens","icon","image-orientation","image-rendering","image-resolution","ime-mode","inherit","initial","justify-content","left","letter-spacing","line-height","list-style","list-style-image","list-style-position","list-style-type","margin","margin-bottom","margin-left","margin-right","margin-top","marks","mask","max-height","max-width","min-height","min-width","nav-down","nav-index","nav-left","nav-right","nav-up","none","normal","object-fit","object-position","opacity","order","orphans","outline","outline-color","outline-offset","outline-style","outline-width","overflow","overflow-wrap","overflow-x","overflow-y","padding","padding-bottom","padding-left","padding-right","padding-top","page-break-after","page-break-before","page-break-inside","perspective","perspective-origin","pointer-events","position","quotes","resize","right","tab-size","table-layout","text-align","text-align-last","text-decoration","text-decoration-color","text-decoration-line","text-decoration-style","text-indent","text-overflow","text-rendering","text-shadow","text-transform","text-underline-position","top","transform","transform-origin","transform-style","transition","transition-delay","transition-duration","transition-property","transition-timing-function","unicode-bidi","vertical-align","visibility","white-space","widows","width","word-break","word-spacing","word-wrap","z-index"],l=["\\?","(\\bReturn\\b)","(\\bEnd\\b)","(\\bend\\b)","(\\bdef\\b)",";","#\\s","\\*\\s","===\\s","\\|","%"]; -return{aliases:["styl"],cI:!1,k:"if else for in",i:"("+l.join("|")+")",c:[e.QSM,e.ASM,e.CLCM,e.CBCM,r,{b:"\\.[a-zA-Z][a-zA-Z0-9_-]*"+o,rB:!0,c:[{cN:"selector-class",b:"\\.[a-zA-Z][a-zA-Z0-9_-]*"}]},{b:"\\#[a-zA-Z][a-zA-Z0-9_-]*"+o,rB:!0,c:[{cN:"selector-id",b:"\\#[a-zA-Z][a-zA-Z0-9_-]*"}]},{b:"\\b("+n.join("|")+")"+o,rB:!0,c:[{cN:"selector-tag",b:"\\b[a-zA-Z][a-zA-Z0-9_-]*"}]},{b:"&?:?:\\b("+i.join("|")+")"+o},{b:"@("+a.join("|")+")\\b"},t,e.CSSNM,e.NM,{cN:"function",b:"^[a-zA-Z][a-zA-Z0-9_-]*\\(.*\\)",i:"[\\n]",rB:!0,c:[{cN:"title",b:"\\b[a-zA-Z][a-zA-Z0-9_-]*"},{cN:"params",b:/\(/,e:/\)/,c:[r,t,e.ASM,e.CSSNM,e.NM,e.QSM]}]},{cN:"attribute",b:"\\b("+s.reverse().join("|")+")\\b",starts:{e:/;|$/,c:[r,t,e.ASM,e.QSM,e.CSSNM,e.NM,e.CBCM],i:/\./,r:0}}]}}),e.registerLanguage("subunit",function(e){var t={cN:"string",b:"\\[\n(multipart)?",e:"\\]\n"},r={cN:"string",b:"\\d{4}-\\d{2}-\\d{2}(\\s+)\\d{2}:\\d{2}:\\d{2}.\\d+Z"},a={cN:"string",b:"(\\+|-)\\d+"},i={cN:"keyword",r:10,v:[{b:"^(test|testing|success|successful|failure|error|skip|xfail|uxsuccess)(:?)\\s+(test)?"},{b:"^progress(:?)(\\s+)?(pop|push)?"},{b:"^tags:"},{b:"^time:"}]};return{cI:!0,c:[t,r,a,i]}}),e.registerLanguage("swift",function(e){var t={keyword:"__COLUMN__ __FILE__ __FUNCTION__ __LINE__ as as! as? associativity break case catch class continue convenience default defer deinit didSet do dynamic dynamicType else enum extension fallthrough false fileprivate final for func get guard if import in indirect infix init inout internal is lazy left let mutating nil none nonmutating open operator optional override postfix precedence prefix private protocol Protocol public repeat required rethrows return right self Self set static struct subscript super switch throw throws true try try! try? Type typealias unowned var weak where while willSet",literal:"true false nil",built_in:"abs advance alignof alignofValue anyGenerator assert assertionFailure bridgeFromObjectiveC bridgeFromObjectiveCUnconditional bridgeToObjectiveC bridgeToObjectiveCUnconditional c contains count countElements countLeadingZeros debugPrint debugPrintln distance dropFirst dropLast dump encodeBitsAsWords enumerate equal fatalError filter find getBridgedObjectiveCType getVaList indices insertionSort isBridgedToObjectiveC isBridgedVerbatimToObjectiveC isUniquelyReferenced isUniquelyReferencedNonObjC join lazy lexicographicalCompare map max maxElement min minElement numericCast overlaps partition posix precondition preconditionFailure print println quickSort readLine reduce reflect reinterpretCast reverse roundUpToAlignment sizeof sizeofValue sort split startsWith stride strideof strideofValue swap toString transcode underestimateCount unsafeAddressOf unsafeBitCast unsafeDowncast unsafeUnwrap unsafeReflect withExtendedLifetime withObjectAtPlusZero withUnsafePointer withUnsafePointerToObject withUnsafeMutablePointer withUnsafeMutablePointers withUnsafePointer withUnsafePointers withVaList zip"},r={cN:"type",b:"\\b[A-Z][\\wÀ-ʸ']*",r:0},a=e.C("/\\*","\\*/",{c:["self"]}),i={cN:"subst",b:/\\\(/,e:"\\)",k:t,c:[]},n={cN:"number",b:"\\b([\\d_]+(\\.[\\deE_]+)?|0x[a-fA-F0-9_]+(\\.[a-fA-F0-9p_]+)?|0b[01_]+|0o[0-7_]+)\\b",r:0},o=e.inherit(e.QSM,{c:[i,e.BE]});return i.c=[n],{k:t,c:[o,e.CLCM,a,r,n,{cN:"function",bK:"func",e:"{",eE:!0,c:[e.inherit(e.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/}),{b://},{cN:"params",b:/\(/,e:/\)/,endsParent:!0,k:t,c:["self",n,o,e.CBCM,{b:":"}],i:/["']/}],i:/\[|%/},{cN:"class",bK:"struct protocol class extension enum",k:t,e:"\\{",eE:!0,c:[e.inherit(e.TM,{b:/[A-Za-z$_][\u00C0-\u02B80-9A-Za-z$_]*/})]},{cN:"meta",b:"(@warn_unused_result|@exported|@lazy|@noescape|@NSCopying|@NSManaged|@objc|@convention|@required|@noreturn|@IBAction|@IBDesignable|@IBInspectable|@IBOutlet|@infix|@prefix|@postfix|@autoclosure|@testable|@available|@nonobjc|@NSApplicationMain|@UIApplicationMain)"},{bK:"import",e:/$/,c:[e.CLCM,a]}]}}),e.registerLanguage("taggerscript",function(e){var t={cN:"comment",b:/\$noop\(/,e:/\)/,c:[{b:/\(/,e:/\)/,c:["self",{b:/\\./}]}],r:10},r={cN:"keyword",b:/\$(?!noop)[a-zA-Z][_a-zA-Z0-9]*/,e:/\(/,eE:!0},a={cN:"variable",b:/%[_a-zA-Z0-9:]*/,e:"%"},i={cN:"symbol",b:/\\./};return{c:[t,r,a,i]}}),e.registerLanguage("yaml",function(e){var t="true false yes no null",r="^[ \\-]*",a="[a-zA-Z_][\\w\\-]*",i={cN:"attr",v:[{b:r+a+":"},{b:r+'"'+a+'":'},{b:r+"'"+a+"':"}]},n={cN:"template-variable",v:[{b:"{{",e:"}}"},{b:"%{",e:"}"}]},o={cN:"string",r:0,v:[{b:/'/,e:/'/},{b:/"/,e:/"/},{b:/\S+/}],c:[e.BE,n]};return{cI:!0,aliases:["yml","YAML","yaml"],c:[i,{cN:"meta",b:"^---s*$",r:10},{cN:"string",b:"[\\|>] *$",rE:!0,c:o.c,e:i.v[0].b},{b:"<%[%=-]?",e:"[%-]?%>",sL:"ruby",eB:!0,eE:!0,r:0},{cN:"type",b:"!!"+e.UIR},{cN:"meta",b:"&"+e.UIR+"$"},{cN:"meta",b:"\\*"+e.UIR+"$"},{cN:"bullet",b:"^ *-",r:0},e.HCM,{bK:t,k:{literal:t}},e.CNM,o]}}),e.registerLanguage("tap",function(e){return{cI:!0,c:[e.HCM,{cN:"meta",v:[{b:"^TAP version (\\d+)$"},{b:"^1\\.\\.(\\d+)$"}]},{b:"(s+)?---$",e:"\\.\\.\\.$",sL:"yaml",r:0},{cN:"number",b:" (\\d+) "},{cN:"symbol",v:[{b:"^ok"},{b:"^not ok"}]}]}}),e.registerLanguage("tcl",function(e){return{aliases:["tk"],k:"after append apply array auto_execok auto_import auto_load auto_mkindex auto_mkindex_old auto_qualify auto_reset bgerror binary break catch cd chan clock close concat continue dde dict encoding eof error eval exec exit expr fblocked fconfigure fcopy file fileevent filename flush for foreach format gets glob global history http if incr info interp join lappend|10 lassign|10 lindex|10 linsert|10 list llength|10 load lrange|10 lrepeat|10 lreplace|10 lreverse|10 lsearch|10 lset|10 lsort|10 mathfunc mathop memory msgcat namespace open package parray pid pkg::create pkg_mkIndex platform platform::shell proc puts pwd read refchan regexp registry regsub|10 rename return safe scan seek set socket source split string subst switch tcl_endOfWord tcl_findLibrary tcl_startOfNextWord tcl_startOfPreviousWord tcl_wordBreakAfter tcl_wordBreakBefore tcltest tclvars tell time tm trace unknown unload unset update uplevel upvar variable vwait while",c:[e.C(";[ \\t]*#","$"),e.C("^[ \\t]*#","$"),{bK:"proc",e:"[\\{]",eE:!0,c:[{cN:"title",b:"[ \\t\\n\\r]+(::)?[a-zA-Z_]((::)?[a-zA-Z0-9_])*",e:"[ \\t\\n\\r]",eW:!0,eE:!0}]},{eE:!0,v:[{b:"\\$(\\{)?(::)?[a-zA-Z_]((::)?[a-zA-Z0-9_])*\\(([a-zA-Z0-9_])*\\)",e:"[^a-zA-Z0-9_\\}\\$]"},{b:"\\$(\\{)?(::)?[a-zA-Z_]((::)?[a-zA-Z0-9_])*",e:"(\\))?[^a-zA-Z0-9_\\}\\$]"}]},{cN:"string",c:[e.BE],v:[e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null})]},{cN:"number",v:[e.BNM,e.CNM]}]}}),e.registerLanguage("tex",function(e){var t={cN:"tag",b:/\\/,r:0,c:[{cN:"name",v:[{b:/[a-zA-Zа-яА-я]+[*]?/},{b:/[^a-zA-Zа-яА-я0-9]/}],starts:{eW:!0,r:0,c:[{cN:"string",v:[{b:/\[/,e:/\]/},{b:/\{/,e:/\}/}]},{b:/\s*=\s*/,eW:!0,r:0,c:[{cN:"number",b:/-?\d*\.?\d+(pt|pc|mm|cm|in|dd|cc|ex|em)?/}]}]}}]};return{c:[t,{cN:"formula",c:[t],r:0,v:[{b:/\$\$/,e:/\$\$/},{b:/\$/,e:/\$/}]},e.C("%","$",{r:0})]}}),e.registerLanguage("thrift",function(e){var t="bool byte i16 i32 i64 double string binary";return{k:{keyword:"namespace const typedef struct enum service exception void oneway set list map required optional",built_in:t,literal:"true false"},c:[e.QSM,e.NM,e.CLCM,e.CBCM,{cN:"class",bK:"struct enum service exception",e:/\{/,i:/\n/,c:[e.inherit(e.TM,{starts:{eW:!0,eE:!0}})]},{b:"\\b(set|list|map)\\s*<",e:">",k:t,c:["self"]}]}}),e.registerLanguage("tp",function(e){var t={cN:"number",b:"[1-9][0-9]*",r:0},r={cN:"symbol",b:":[^\\]]+"},a={cN:"built_in",b:"(AR|P|PAYLOAD|PR|R|SR|RSR|LBL|VR|UALM|MESSAGE|UTOOL|UFRAME|TIMER| TIMER_OVERFLOW|JOINT_MAX_SPEED|RESUME_PROG|DIAG_REC)\\[",e:"\\]",c:["self",t,r]},i={cN:"built_in",b:"(AI|AO|DI|DO|F|RI|RO|UI|UO|GI|GO|SI|SO)\\[",e:"\\]",c:["self",t,e.QSM,r]};return{k:{keyword:"ABORT ACC ADJUST AND AP_LD BREAK CALL CNT COL CONDITION CONFIG DA DB DIV DETECT ELSE END ENDFOR ERR_NUM ERROR_PROG FINE FOR GP GUARD INC IF JMP LINEAR_MAX_SPEED LOCK MOD MONITOR OFFSET Offset OR OVERRIDE PAUSE PREG PTH RT_LD RUN SELECT SKIP Skip TA TB TO TOOL_OFFSET Tool_Offset UF UT UFRAME_NUM UTOOL_NUM UNLOCK WAIT X Y Z W P R STRLEN SUBSTR FINDSTR VOFFSET PROG ATTR MN POS",literal:"ON OFF max_speed LPOS JPOS ENABLE DISABLE START STOP RESET"},c:[a,i,{cN:"keyword",b:"/(PROG|ATTR|MN|POS|END)\\b"},{cN:"keyword",b:"(CALL|RUN|POINT_LOGIC|LBL)\\b"},{cN:"keyword",b:"\\b(ACC|CNT|Skip|Offset|PSPD|RT_LD|AP_LD|Tool_Offset)"},{cN:"number",b:"\\d+(sec|msec|mm/sec|cm/min|inch/min|deg/sec|mm|in|cm)?\\b",r:0},e.C("//","[;$]"),e.C("!","[;$]"),e.C("--eg:","$"),e.QSM,{cN:"string",b:"'",e:"'"},e.CNM,{cN:"variable",b:"\\$[A-Za-z0-9_]+"}]}}),e.registerLanguage("twig",function(e){var t={cN:"params",b:"\\(",e:"\\)"},r="attribute block constant cycle date dump include max min parent random range source template_from_string",a={bK:r,k:{name:r},r:0,c:[t]},i={b:/\|[A-Za-z_]+:?/,k:"abs batch capitalize convert_encoding date date_modify default escape first format join json_encode keys last length lower merge nl2br number_format raw replace reverse round slice sort split striptags title trim upper url_encode",c:[a]},n="autoescape block do embed extends filter flush for if import include macro sandbox set spaceless use verbatim";return n=n+" "+n.split(" ").map(function(e){return"end"+e}).join(" "),{aliases:["craftcms"],cI:!0,sL:"xml",c:[e.C(/\{#/,/#}/),{cN:"template-tag",b:/\{%/,e:/%}/,c:[{cN:"name",b:/\w+/,k:n,starts:{eW:!0,c:[i,a],r:0}}]},{cN:"template-variable",b:/\{\{/,e:/}}/,c:["self",i,a]}]}}),e.registerLanguage("typescript",function(e){var t={keyword:"in if for while finally var new function do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const class public private protected get set super static implements enum export import declare type namespace abstract as from extends async await",literal:"true false null undefined NaN Infinity",built_in:"eval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Error EvalError InternalError RangeError ReferenceError StopIteration SyntaxError TypeError URIError Number Math Date String RegExp Array Float32Array Float64Array Int16Array Int32Array Int8Array Uint16Array Uint32Array Uint8Array Uint8ClampedArray ArrayBuffer DataView JSON Intl arguments require module console window document any number boolean string void Promise"};return{aliases:["ts"],k:t,c:[{cN:"meta",b:/^\s*['"]use strict['"]/},e.ASM,e.QSM,{cN:"string",b:"`",e:"`",c:[e.BE,{cN:"subst",b:"\\$\\{",e:"\\}"}]},e.CLCM,e.CBCM,{cN:"number",v:[{b:"\\b(0[bB][01]+)"},{b:"\\b(0[oO][0-7]+)"},{b:e.CNR}],r:0},{b:"("+e.RSR+"|\\b(case|return|throw)\\b)\\s*",k:"return throw case",c:[e.CLCM,e.CBCM,e.RM,{cN:"function",b:"(\\(.*?\\)|"+e.IR+")\\s*=>",rB:!0,e:"\\s*=>",c:[{cN:"params",v:[{b:e.IR},{b:/\(\s*\)/},{b:/\(/,e:/\)/,eB:!0,eE:!0,k:t,c:["self",e.CLCM,e.CBCM]}]}]}],r:0},{cN:"function",b:"function",e:/[\{;]/,eE:!0,k:t,c:["self",e.inherit(e.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/}),{cN:"params",b:/\(/,e:/\)/,eB:!0,eE:!0,k:t,c:[e.CLCM,e.CBCM],i:/["'\(]/}],i:/%/,r:0},{bK:"constructor",e:/\{/,eE:!0,c:["self",{cN:"params",b:/\(/,e:/\)/,eB:!0,eE:!0,k:t,c:[e.CLCM,e.CBCM],i:/["'\(]/}]},{b:/module\./,k:{built_in:"module"},r:0},{bK:"module",e:/\{/,eE:!0},{bK:"interface",e:/\{/,eE:!0,k:"interface extends"},{b:/\$[(.]/},{b:"\\."+e.IR,r:0},{cN:"meta",b:"@[A-Za-z]+"}]}}),e.registerLanguage("vala",function(e){return{k:{keyword:"char uchar unichar int uint long ulong short ushort int8 int16 int32 int64 uint8 uint16 uint32 uint64 float double bool struct enum string void weak unowned owned async signal static abstract interface override virtual delegate if while do for foreach else switch case break default return try catch public private protected internal using new this get set const stdout stdin stderr var",built_in:"DBus GLib CCode Gee Object Gtk Posix",literal:"false true null"},c:[{cN:"class",bK:"class interface namespace",e:"{",eE:!0,i:"[^,:\\n\\s\\.]",c:[e.UTM]},e.CLCM,e.CBCM,{cN:"string",b:'"""',e:'"""',r:5},e.ASM,e.QSM,e.CNM,{cN:"meta",b:"^#",e:"$",r:2}]}}),e.registerLanguage("vbnet",function(e){return{aliases:["vb"],cI:!0,k:{keyword:"addhandler addressof alias and andalso aggregate ansi as assembly auto binary by byref byval call case catch class compare const continue custom declare default delegate dim distinct do each equals else elseif end enum erase error event exit explicit finally for friend from function get global goto group handles if implements imports in inherits interface into is isfalse isnot istrue join key let lib like loop me mid mod module mustinherit mustoverride mybase myclass namespace narrowing new next not notinheritable notoverridable of off on operator option optional or order orelse overloads overridable overrides paramarray partial preserve private property protected public raiseevent readonly redim rem removehandler resume return select set shadows shared skip static step stop structure strict sub synclock take text then throw to try unicode until using when where while widening with withevents writeonly xor",built_in:"boolean byte cbool cbyte cchar cdate cdec cdbl char cint clng cobj csbyte cshort csng cstr ctype date decimal directcast double gettype getxmlnamespace iif integer long object sbyte short single string trycast typeof uinteger ulong ushort",literal:"true false nothing"},i:"//|{|}|endif|gosub|variant|wend",c:[e.inherit(e.QSM,{c:[{b:'""'}]}),e.C("'","$",{rB:!0,c:[{cN:"doctag",b:"'''|",c:[e.PWM]},{cN:"doctag",b:"",c:[e.PWM]}]}),e.CNM,{cN:"meta",b:"#",e:"$",k:{"meta-keyword":"if else elseif end region externalsource"}}]}}),e.registerLanguage("vbscript",function(e){return{aliases:["vbs"],cI:!0,k:{keyword:"call class const dim do loop erase execute executeglobal exit for each next function if then else on error option explicit new private property let get public randomize redim rem select case set stop sub while wend with end to elseif is or xor and not class_initialize class_terminate default preserve in me byval byref step resume goto",built_in:"lcase month vartype instrrev ubound setlocale getobject rgb getref string weekdayname rnd dateadd monthname now day minute isarray cbool round formatcurrency conversions csng timevalue second year space abs clng timeserial fixs len asc isempty maths dateserial atn timer isobject filter weekday datevalue ccur isdate instr datediff formatdatetime replace isnull right sgn array snumeric log cdbl hex chr lbound msgbox ucase getlocale cos cdate cbyte rtrim join hour oct typename trim strcomp int createobject loadpicture tan formatnumber mid scriptenginebuildversion scriptengine split scriptengineminorversion cint sin datepart ltrim sqr scriptenginemajorversion time derived eval date formatpercent exp inputbox left ascw chrw regexp server response request cstr err",literal:"true false null nothing empty"},i:"//",c:[e.inherit(e.QSM,{c:[{b:'""'}]}),e.C(/'/,/$/,{r:0}),e.CNM]}}),e.registerLanguage("vbscript-html",function(e){return{sL:"xml",c:[{b:"<%",e:"%>",sL:"vbscript"}]}}),e.registerLanguage("verilog",function(e){var t={keyword:"accept_on alias always always_comb always_ff always_latch and assert assign assume automatic before begin bind bins binsof bit break buf|0 bufif0 bufif1 byte case casex casez cell chandle checker class clocking cmos config const constraint context continue cover covergroup coverpoint cross deassign default defparam design disable dist do edge else end endcase endchecker endclass endclocking endconfig endfunction endgenerate endgroup endinterface endmodule endpackage endprimitive endprogram endproperty endspecify endsequence endtable endtask enum event eventually expect export extends extern final first_match for force foreach forever fork forkjoin function generate|5 genvar global highz0 highz1 if iff ifnone ignore_bins illegal_bins implements implies import incdir include initial inout input inside instance int integer interconnect interface intersect join join_any join_none large let liblist library local localparam logic longint macromodule matches medium modport module nand negedge nettype new nexttime nmos nor noshowcancelled not notif0 notif1 or output package packed parameter pmos posedge primitive priority program property protected pull0 pull1 pulldown pullup pulsestyle_ondetect pulsestyle_onevent pure rand randc randcase randsequence rcmos real realtime ref reg reject_on release repeat restrict return rnmos rpmos rtran rtranif0 rtranif1 s_always s_eventually s_nexttime s_until s_until_with scalared sequence shortint shortreal showcancelled signed small soft solve specify specparam static string strong strong0 strong1 struct super supply0 supply1 sync_accept_on sync_reject_on table tagged task this throughout time timeprecision timeunit tran tranif0 tranif1 tri tri0 tri1 triand trior trireg type typedef union unique unique0 unsigned until until_with untyped use uwire var vectored virtual void wait wait_order wand weak weak0 weak1 while wildcard wire with within wor xnor xor",literal:"null",built_in:"$finish $stop $exit $fatal $error $warning $info $realtime $time $printtimescale $bitstoreal $bitstoshortreal $itor $signed $cast $bits $stime $timeformat $realtobits $shortrealtobits $rtoi $unsigned $asserton $assertkill $assertpasson $assertfailon $assertnonvacuouson $assertoff $assertcontrol $assertpassoff $assertfailoff $assertvacuousoff $isunbounded $sampled $fell $changed $past_gclk $fell_gclk $changed_gclk $rising_gclk $steady_gclk $coverage_control $coverage_get $coverage_save $set_coverage_db_name $rose $stable $past $rose_gclk $stable_gclk $future_gclk $falling_gclk $changing_gclk $display $coverage_get_max $coverage_merge $get_coverage $load_coverage_db $typename $unpacked_dimensions $left $low $increment $clog2 $ln $log10 $exp $sqrt $pow $floor $ceil $sin $cos $tan $countbits $onehot $isunknown $fatal $warning $dimensions $right $high $size $asin $acos $atan $atan2 $hypot $sinh $cosh $tanh $asinh $acosh $atanh $countones $onehot0 $error $info $random $dist_chi_square $dist_erlang $dist_exponential $dist_normal $dist_poisson $dist_t $dist_uniform $q_initialize $q_remove $q_exam $async$and$array $async$nand$array $async$or$array $async$nor$array $sync$and$array $sync$nand$array $sync$or$array $sync$nor$array $q_add $q_full $psprintf $async$and$plane $async$nand$plane $async$or$plane $async$nor$plane $sync$and$plane $sync$nand$plane $sync$or$plane $sync$nor$plane $system $display $displayb $displayh $displayo $strobe $strobeb $strobeh $strobeo $write $readmemb $readmemh $writememh $value$plusargs $dumpvars $dumpon $dumplimit $dumpports $dumpportson $dumpportslimit $writeb $writeh $writeo $monitor $monitorb $monitorh $monitoro $writememb $dumpfile $dumpoff $dumpall $dumpflush $dumpportsoff $dumpportsall $dumpportsflush $fclose $fdisplay $fdisplayb $fdisplayh $fdisplayo $fstrobe $fstrobeb $fstrobeh $fstrobeo $swrite $swriteb $swriteh $swriteo $fscanf $fread $fseek $fflush $feof $fopen $fwrite $fwriteb $fwriteh $fwriteo $fmonitor $fmonitorb $fmonitorh $fmonitoro $sformat $sformatf $fgetc $ungetc $fgets $sscanf $rewind $ftell $ferror"};return{aliases:["v","sv","svh"],cI:!1,k:t,l:/[\w\$]+/,c:[e.CBCM,e.CLCM,e.QSM,{cN:"number",c:[e.BE],v:[{b:"\\b((\\d+'(b|h|o|d|B|H|O|D))[0-9xzXZa-fA-F_]+)"},{b:"\\B(('(b|h|o|d|B|H|O|D))[0-9xzXZa-fA-F_]+)"},{b:"\\b([0-9_])+",r:0}]},{cN:"variable",v:[{b:"#\\((?!parameter).+\\)"},{b:"\\.\\w+",r:0}]},{cN:"meta",b:"`",e:"$",k:{"meta-keyword":"define __FILE__ __LINE__ begin_keywords celldefine default_nettype define else elsif end_keywords endcelldefine endif ifdef ifndef include line nounconnected_drive pragma resetall timescale unconnected_drive undef undefineall"},r:0}]}}),e.registerLanguage("vhdl",function(e){var t="\\d(_|\\d)*",r="[eE][-+]?"+t,a=t+"(\\."+t+")?("+r+")?",i="\\w+",n=t+"#"+i+"(\\."+i+")?#("+r+")?",o="\\b("+n+"|"+a+")";return{cI:!0,k:{keyword:"abs access after alias all and architecture array assert assume assume_guarantee attribute begin block body buffer bus case component configuration constant context cover disconnect downto default else elsif end entity exit fairness file for force function generate generic group guarded if impure in inertial inout is label library linkage literal loop map mod nand new next nor not null of on open or others out package port postponed procedure process property protected pure range record register reject release rem report restrict restrict_guarantee return rol ror select sequence severity shared signal sla sll sra srl strong subtype then to transport type unaffected units until use variable vmode vprop vunit wait when while with xnor xor",built_in:"boolean bit character integer time delay_length natural positive string bit_vector file_open_kind file_open_status std_logic std_logic_vector unsigned signed boolean_vector integer_vector std_ulogic std_ulogic_vector unresolved_unsigned u_unsigned unresolved_signed u_signedreal_vector time_vector",literal:"false true note warning error failure line text side width"},i:"{",c:[e.CBCM,e.C("--","$"),e.QSM,{cN:"number",b:o,r:0},{cN:"string",b:"'(U|X|0|1|Z|W|L|H|-)'",c:[e.BE]},{cN:"symbol",b:"'[A-Za-z](_?[A-Za-z0-9])*",c:[e.BE]}]}}),e.registerLanguage("vim",function(e){return{l:/[!#@\w]+/,k:{keyword:"N|0 P|0 X|0 a|0 ab abc abo al am an|0 ar arga argd arge argdo argg argl argu as au aug aun b|0 bN ba bad bd be bel bf bl bm bn bo bp br brea breaka breakd breakl bro bufdo buffers bun bw c|0 cN cNf ca cabc caddb cad caddf cal cat cb cc ccl cd ce cex cf cfir cgetb cgete cg changes chd che checkt cl cla clo cm cmapc cme cn cnew cnf cno cnorea cnoreme co col colo com comc comp con conf cope cp cpf cq cr cs cst cu cuna cunme cw delm deb debugg delc delf dif diffg diffo diffp diffpu diffs diffthis dig di dl dell dj dli do doautoa dp dr ds dsp e|0 ea ec echoe echoh echom echon el elsei em en endfo endf endt endw ene ex exe exi exu f|0 files filet fin fina fini fir fix fo foldc foldd folddoc foldo for fu go gr grepa gu gv ha helpf helpg helpt hi hid his ia iabc if ij il im imapc ime ino inorea inoreme int is isp iu iuna iunme j|0 ju k|0 keepa kee keepj lN lNf l|0 lad laddb laddf la lan lat lb lc lch lcl lcs le lefta let lex lf lfir lgetb lgete lg lgr lgrepa lh ll lla lli lmak lm lmapc lne lnew lnf ln loadk lo loc lockv lol lope lp lpf lr ls lt lu lua luad luaf lv lvimgrepa lw m|0 ma mak map mapc marks mat me menut mes mk mks mksp mkv mkvie mod mz mzf nbc nb nbs new nm nmapc nme nn nnoreme noa no noh norea noreme norm nu nun nunme ol o|0 om omapc ome on ono onoreme opt ou ounme ow p|0 profd prof pro promptr pc ped pe perld po popu pp pre prev ps pt ptN ptf ptj ptl ptn ptp ptr pts pu pw py3 python3 py3d py3f py pyd pyf quita qa rec red redi redr redraws reg res ret retu rew ri rightb rub rubyd rubyf rund ru rv sN san sa sal sav sb sbN sba sbf sbl sbm sbn sbp sbr scrip scripte scs se setf setg setl sf sfir sh sim sig sil sl sla sm smap smapc sme sn sni sno snor snoreme sor so spelld spe spelli spellr spellu spellw sp spr sre st sta startg startr star stopi stj sts sun sunm sunme sus sv sw sy synti sync tN tabN tabc tabdo tabe tabf tabfir tabl tabm tabnew tabn tabo tabp tabr tabs tab ta tags tc tcld tclf te tf th tj tl tm tn to tp tr try ts tu u|0 undoj undol una unh unl unlo unm unme uns up ve verb vert vim vimgrepa vi viu vie vm vmapc vme vne vn vnoreme vs vu vunme windo w|0 wN wa wh wi winc winp wn wp wq wqa ws wu wv x|0 xa xmapc xm xme xn xnoreme xu xunme y|0 z|0 ~ Next Print append abbreviate abclear aboveleft all amenu anoremenu args argadd argdelete argedit argglobal arglocal argument ascii autocmd augroup aunmenu buffer bNext ball badd bdelete behave belowright bfirst blast bmodified bnext botright bprevious brewind break breakadd breakdel breaklist browse bunload bwipeout change cNext cNfile cabbrev cabclear caddbuffer caddexpr caddfile call catch cbuffer cclose center cexpr cfile cfirst cgetbuffer cgetexpr cgetfile chdir checkpath checktime clist clast close cmap cmapclear cmenu cnext cnewer cnfile cnoremap cnoreabbrev cnoremenu copy colder colorscheme command comclear compiler continue confirm copen cprevious cpfile cquit crewind cscope cstag cunmap cunabbrev cunmenu cwindow delete delmarks debug debuggreedy delcommand delfunction diffupdate diffget diffoff diffpatch diffput diffsplit digraphs display deletel djump dlist doautocmd doautoall deletep drop dsearch dsplit edit earlier echo echoerr echohl echomsg else elseif emenu endif endfor endfunction endtry endwhile enew execute exit exusage file filetype find finally finish first fixdel fold foldclose folddoopen folddoclosed foldopen function global goto grep grepadd gui gvim hardcopy help helpfind helpgrep helptags highlight hide history insert iabbrev iabclear ijump ilist imap imapclear imenu inoremap inoreabbrev inoremenu intro isearch isplit iunmap iunabbrev iunmenu join jumps keepalt keepmarks keepjumps lNext lNfile list laddexpr laddbuffer laddfile last language later lbuffer lcd lchdir lclose lcscope left leftabove lexpr lfile lfirst lgetbuffer lgetexpr lgetfile lgrep lgrepadd lhelpgrep llast llist lmake lmap lmapclear lnext lnewer lnfile lnoremap loadkeymap loadview lockmarks lockvar lolder lopen lprevious lpfile lrewind ltag lunmap luado luafile lvimgrep lvimgrepadd lwindow move mark make mapclear match menu menutranslate messages mkexrc mksession mkspell mkvimrc mkview mode mzscheme mzfile nbclose nbkey nbsart next nmap nmapclear nmenu nnoremap nnoremenu noautocmd noremap nohlsearch noreabbrev noremenu normal number nunmap nunmenu oldfiles open omap omapclear omenu only onoremap onoremenu options ounmap ounmenu ownsyntax print profdel profile promptfind promptrepl pclose pedit perl perldo pop popup ppop preserve previous psearch ptag ptNext ptfirst ptjump ptlast ptnext ptprevious ptrewind ptselect put pwd py3do py3file python pydo pyfile quit quitall qall read recover redo redir redraw redrawstatus registers resize retab return rewind right rightbelow ruby rubydo rubyfile rundo runtime rviminfo substitute sNext sandbox sargument sall saveas sbuffer sbNext sball sbfirst sblast sbmodified sbnext sbprevious sbrewind scriptnames scriptencoding scscope set setfiletype setglobal setlocal sfind sfirst shell simalt sign silent sleep slast smagic smapclear smenu snext sniff snomagic snoremap snoremenu sort source spelldump spellgood spellinfo spellrepall spellundo spellwrong split sprevious srewind stop stag startgreplace startreplace startinsert stopinsert stjump stselect sunhide sunmap sunmenu suspend sview swapname syntax syntime syncbind tNext tabNext tabclose tabedit tabfind tabfirst tablast tabmove tabnext tabonly tabprevious tabrewind tag tcl tcldo tclfile tearoff tfirst throw tjump tlast tmenu tnext topleft tprevious trewind tselect tunmenu undo undojoin undolist unabbreviate unhide unlet unlockvar unmap unmenu unsilent update vglobal version verbose vertical vimgrep vimgrepadd visual viusage view vmap vmapclear vmenu vnew vnoremap vnoremenu vsplit vunmap vunmenu write wNext wall while winsize wincmd winpos wnext wprevious wqall wsverb wundo wviminfo xit xall xmapclear xmap xmenu xnoremap xnoremenu xunmap xunmenu yank",built_in:"synIDtrans atan2 range matcharg did_filetype asin feedkeys xor argv complete_check add getwinposx getqflist getwinposy screencol clearmatches empty extend getcmdpos mzeval garbagecollect setreg ceil sqrt diff_hlID inputsecret get getfperm getpid filewritable shiftwidth max sinh isdirectory synID system inputrestore winline atan visualmode inputlist tabpagewinnr round getregtype mapcheck hasmapto histdel argidx findfile sha256 exists toupper getcmdline taglist string getmatches bufnr strftime winwidth bufexists strtrans tabpagebuflist setcmdpos remote_read printf setloclist getpos getline bufwinnr float2nr len getcmdtype diff_filler luaeval resolve libcallnr foldclosedend reverse filter has_key bufname str2float strlen setline getcharmod setbufvar index searchpos shellescape undofile foldclosed setqflist buflisted strchars str2nr virtcol floor remove undotree remote_expr winheight gettabwinvar reltime cursor tabpagenr finddir localtime acos getloclist search tanh matchend rename gettabvar strdisplaywidth type abs py3eval setwinvar tolower wildmenumode log10 spellsuggest bufloaded synconcealed nextnonblank server2client complete settabwinvar executable input wincol setmatches getftype hlID inputsave searchpair or screenrow line settabvar histadd deepcopy strpart remote_peek and eval getftime submatch screenchar winsaveview matchadd mkdir screenattr getfontname libcall reltimestr getfsize winnr invert pow getbufline byte2line soundfold repeat fnameescape tagfiles sin strwidth spellbadword trunc maparg log lispindent hostname setpos globpath remote_foreground getchar synIDattr fnamemodify cscope_connection stridx winbufnr indent min complete_add nr2char searchpairpos inputdialog values matchlist items hlexists strridx browsedir expand fmod pathshorten line2byte argc count getwinvar glob foldtextresult getreg foreground cosh matchdelete has char2nr simplify histget searchdecl iconv winrestcmd pumvisible writefile foldlevel haslocaldir keys cos matchstr foldtext histnr tan tempname getcwd byteidx getbufvar islocked escape eventhandler remote_send serverlist winrestview synstack pyeval prevnonblank readfile cindent filereadable changenr exp"},i:/;/,c:[e.NM,e.ASM,{cN:"string",b:/"(\\"|\n\\|[^"\n])*"/},e.C('"',"$"),{cN:"variable",b:/[bwtglsav]:[\w\d_]*/},{cN:"function",bK:"function function!",e:"$",r:0,c:[e.TM,{cN:"params",b:"\\(",e:"\\)"}]},{cN:"symbol",b:/<[\w-]+>/}]}}),e.registerLanguage("x86asm",function(e){return{cI:!0,l:"[.%]?"+e.IR,k:{keyword:"lock rep repe repz repne repnz xaquire xrelease bnd nobnd aaa aad aam aas adc add and arpl bb0_reset bb1_reset bound bsf bsr bswap bt btc btr bts call cbw cdq cdqe clc cld cli clts cmc cmp cmpsb cmpsd cmpsq cmpsw cmpxchg cmpxchg486 cmpxchg8b cmpxchg16b cpuid cpu_read cpu_write cqo cwd cwde daa das dec div dmint emms enter equ f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp femms feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisttp fisub fisubr fld fld1 fldcw fldenv fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnstcw fnstenv fnstsw fpatan fprem fprem1 fptan frndint frstor fsave fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomi fucomip fucomp fucompp fxam fxch fxtract fyl2x fyl2xp1 hlt ibts icebp idiv imul in inc incbin insb insd insw int int01 int1 int03 int3 into invd invpcid invlpg invlpga iret iretd iretq iretw jcxz jecxz jrcxz jmp jmpe lahf lar lds lea leave les lfence lfs lgdt lgs lidt lldt lmsw loadall loadall286 lodsb lodsd lodsq lodsw loop loope loopne loopnz loopz lsl lss ltr mfence monitor mov movd movq movsb movsd movsq movsw movsx movsxd movzx mul mwait neg nop not or out outsb outsd outsw packssdw packsswb packuswb paddb paddd paddsb paddsiw paddsw paddusb paddusw paddw pand pandn pause paveb pavgusb pcmpeqb pcmpeqd pcmpeqw pcmpgtb pcmpgtd pcmpgtw pdistib pf2id pfacc pfadd pfcmpeq pfcmpge pfcmpgt pfmax pfmin pfmul pfrcp pfrcpit1 pfrcpit2 pfrsqit1 pfrsqrt pfsub pfsubr pi2fd pmachriw pmaddwd pmagw pmulhriw pmulhrwa pmulhrwc pmulhw pmullw pmvgezb pmvlzb pmvnzb pmvzb pop popa popad popaw popf popfd popfq popfw por prefetch prefetchw pslld psllq psllw psrad psraw psrld psrlq psrlw psubb psubd psubsb psubsiw psubsw psubusb psubusw psubw punpckhbw punpckhdq punpckhwd punpcklbw punpckldq punpcklwd push pusha pushad pushaw pushf pushfd pushfq pushfw pxor rcl rcr rdshr rdmsr rdpmc rdtsc rdtscp ret retf retn rol ror rdm rsdc rsldt rsm rsts sahf sal salc sar sbb scasb scasd scasq scasw sfence sgdt shl shld shr shrd sidt sldt skinit smi smint smintold smsw stc std sti stosb stosd stosq stosw str sub svdc svldt svts swapgs syscall sysenter sysexit sysret test ud0 ud1 ud2b ud2 ud2a umov verr verw fwait wbinvd wrshr wrmsr xadd xbts xchg xlatb xlat xor cmove cmovz cmovne cmovnz cmova cmovnbe cmovae cmovnb cmovb cmovnae cmovbe cmovna cmovg cmovnle cmovge cmovnl cmovl cmovnge cmovle cmovng cmovc cmovnc cmovo cmovno cmovs cmovns cmovp cmovpe cmovnp cmovpo je jz jne jnz ja jnbe jae jnb jb jnae jbe jna jg jnle jge jnl jl jnge jle jng jc jnc jo jno js jns jpo jnp jpe jp sete setz setne setnz seta setnbe setae setnb setnc setb setnae setcset setbe setna setg setnle setge setnl setl setnge setle setng sets setns seto setno setpe setp setpo setnp addps addss andnps andps cmpeqps cmpeqss cmpleps cmpless cmpltps cmpltss cmpneqps cmpneqss cmpnleps cmpnless cmpnltps cmpnltss cmpordps cmpordss cmpunordps cmpunordss cmpps cmpss comiss cvtpi2ps cvtps2pi cvtsi2ss cvtss2si cvttps2pi cvttss2si divps divss ldmxcsr maxps maxss minps minss movaps movhps movlhps movlps movhlps movmskps movntps movss movups mulps mulss orps rcpps rcpss rsqrtps rsqrtss shufps sqrtps sqrtss stmxcsr subps subss ucomiss unpckhps unpcklps xorps fxrstor fxrstor64 fxsave fxsave64 xgetbv xsetbv xsave xsave64 xsaveopt xsaveopt64 xrstor xrstor64 prefetchnta prefetcht0 prefetcht1 prefetcht2 maskmovq movntq pavgb pavgw pextrw pinsrw pmaxsw pmaxub pminsw pminub pmovmskb pmulhuw psadbw pshufw pf2iw pfnacc pfpnacc pi2fw pswapd maskmovdqu clflush movntdq movnti movntpd movdqa movdqu movdq2q movq2dq paddq pmuludq pshufd pshufhw pshuflw pslldq psrldq psubq punpckhqdq punpcklqdq addpd addsd andnpd andpd cmpeqpd cmpeqsd cmplepd cmplesd cmpltpd cmpltsd cmpneqpd cmpneqsd cmpnlepd cmpnlesd cmpnltpd cmpnltsd cmpordpd cmpordsd cmpunordpd cmpunordsd cmppd comisd cvtdq2pd cvtdq2ps cvtpd2dq cvtpd2pi cvtpd2ps cvtpi2pd cvtps2dq cvtps2pd cvtsd2si cvtsd2ss cvtsi2sd cvtss2sd cvttpd2pi cvttpd2dq cvttps2dq cvttsd2si divpd divsd maxpd maxsd minpd minsd movapd movhpd movlpd movmskpd movupd mulpd mulsd orpd shufpd sqrtpd sqrtsd subpd subsd ucomisd unpckhpd unpcklpd xorpd addsubpd addsubps haddpd haddps hsubpd hsubps lddqu movddup movshdup movsldup clgi stgi vmcall vmclear vmfunc vmlaunch vmload vmmcall vmptrld vmptrst vmread vmresume vmrun vmsave vmwrite vmxoff vmxon invept invvpid pabsb pabsw pabsd palignr phaddw phaddd phaddsw phsubw phsubd phsubsw pmaddubsw pmulhrsw pshufb psignb psignw psignd extrq insertq movntsd movntss lzcnt blendpd blendps blendvpd blendvps dppd dpps extractps insertps movntdqa mpsadbw packusdw pblendvb pblendw pcmpeqq pextrb pextrd pextrq phminposuw pinsrb pinsrd pinsrq pmaxsb pmaxsd pmaxud pmaxuw pminsb pminsd pminud pminuw pmovsxbw pmovsxbd pmovsxbq pmovsxwd pmovsxwq pmovsxdq pmovzxbw pmovzxbd pmovzxbq pmovzxwd pmovzxwq pmovzxdq pmuldq pmulld ptest roundpd roundps roundsd roundss crc32 pcmpestri pcmpestrm pcmpistri pcmpistrm pcmpgtq popcnt getsec pfrcpv pfrsqrtv movbe aesenc aesenclast aesdec aesdeclast aesimc aeskeygenassist vaesenc vaesenclast vaesdec vaesdeclast vaesimc vaeskeygenassist vaddpd vaddps vaddsd vaddss vaddsubpd vaddsubps vandpd vandps vandnpd vandnps vblendpd vblendps vblendvpd vblendvps vbroadcastss vbroadcastsd vbroadcastf128 vcmpeq_ospd vcmpeqpd vcmplt_ospd vcmpltpd vcmple_ospd vcmplepd vcmpunord_qpd vcmpunordpd vcmpneq_uqpd vcmpneqpd vcmpnlt_uspd vcmpnltpd vcmpnle_uspd vcmpnlepd vcmpord_qpd vcmpordpd vcmpeq_uqpd vcmpnge_uspd vcmpngepd vcmpngt_uspd vcmpngtpd vcmpfalse_oqpd vcmpfalsepd vcmpneq_oqpd vcmpge_ospd vcmpgepd vcmpgt_ospd vcmpgtpd vcmptrue_uqpd vcmptruepd vcmplt_oqpd vcmple_oqpd vcmpunord_spd vcmpneq_uspd vcmpnlt_uqpd vcmpnle_uqpd vcmpord_spd vcmpeq_uspd vcmpnge_uqpd vcmpngt_uqpd vcmpfalse_ospd vcmpneq_ospd vcmpge_oqpd vcmpgt_oqpd vcmptrue_uspd vcmppd vcmpeq_osps vcmpeqps vcmplt_osps vcmpltps vcmple_osps vcmpleps vcmpunord_qps vcmpunordps vcmpneq_uqps vcmpneqps vcmpnlt_usps vcmpnltps vcmpnle_usps vcmpnleps vcmpord_qps vcmpordps vcmpeq_uqps vcmpnge_usps vcmpngeps vcmpngt_usps vcmpngtps vcmpfalse_oqps vcmpfalseps vcmpneq_oqps vcmpge_osps vcmpgeps vcmpgt_osps vcmpgtps vcmptrue_uqps vcmptrueps vcmplt_oqps vcmple_oqps vcmpunord_sps vcmpneq_usps vcmpnlt_uqps vcmpnle_uqps vcmpord_sps vcmpeq_usps vcmpnge_uqps vcmpngt_uqps vcmpfalse_osps vcmpneq_osps vcmpge_oqps vcmpgt_oqps vcmptrue_usps vcmpps vcmpeq_ossd vcmpeqsd vcmplt_ossd vcmpltsd vcmple_ossd vcmplesd vcmpunord_qsd vcmpunordsd vcmpneq_uqsd vcmpneqsd vcmpnlt_ussd vcmpnltsd vcmpnle_ussd vcmpnlesd vcmpord_qsd vcmpordsd vcmpeq_uqsd vcmpnge_ussd vcmpngesd vcmpngt_ussd vcmpngtsd vcmpfalse_oqsd vcmpfalsesd vcmpneq_oqsd vcmpge_ossd vcmpgesd vcmpgt_ossd vcmpgtsd vcmptrue_uqsd vcmptruesd vcmplt_oqsd vcmple_oqsd vcmpunord_ssd vcmpneq_ussd vcmpnlt_uqsd vcmpnle_uqsd vcmpord_ssd vcmpeq_ussd vcmpnge_uqsd vcmpngt_uqsd vcmpfalse_ossd vcmpneq_ossd vcmpge_oqsd vcmpgt_oqsd vcmptrue_ussd vcmpsd vcmpeq_osss vcmpeqss vcmplt_osss vcmpltss vcmple_osss vcmpless vcmpunord_qss vcmpunordss vcmpneq_uqss vcmpneqss vcmpnlt_usss vcmpnltss vcmpnle_usss vcmpnless vcmpord_qss vcmpordss vcmpeq_uqss vcmpnge_usss vcmpngess vcmpngt_usss vcmpngtss vcmpfalse_oqss vcmpfalsess vcmpneq_oqss vcmpge_osss vcmpgess vcmpgt_osss vcmpgtss vcmptrue_uqss vcmptruess vcmplt_oqss vcmple_oqss vcmpunord_sss vcmpneq_usss vcmpnlt_uqss vcmpnle_uqss vcmpord_sss vcmpeq_usss vcmpnge_uqss vcmpngt_uqss vcmpfalse_osss vcmpneq_osss vcmpge_oqss vcmpgt_oqss vcmptrue_usss vcmpss vcomisd vcomiss vcvtdq2pd vcvtdq2ps vcvtpd2dq vcvtpd2ps vcvtps2dq vcvtps2pd vcvtsd2si vcvtsd2ss vcvtsi2sd vcvtsi2ss vcvtss2sd vcvtss2si vcvttpd2dq vcvttps2dq vcvttsd2si vcvttss2si vdivpd vdivps vdivsd vdivss vdppd vdpps vextractf128 vextractps vhaddpd vhaddps vhsubpd vhsubps vinsertf128 vinsertps vlddqu vldqqu vldmxcsr vmaskmovdqu vmaskmovps vmaskmovpd vmaxpd vmaxps vmaxsd vmaxss vminpd vminps vminsd vminss vmovapd vmovaps vmovd vmovq vmovddup vmovdqa vmovqqa vmovdqu vmovqqu vmovhlps vmovhpd vmovhps vmovlhps vmovlpd vmovlps vmovmskpd vmovmskps vmovntdq vmovntqq vmovntdqa vmovntpd vmovntps vmovsd vmovshdup vmovsldup vmovss vmovupd vmovups vmpsadbw vmulpd vmulps vmulsd vmulss vorpd vorps vpabsb vpabsw vpabsd vpacksswb vpackssdw vpackuswb vpackusdw vpaddb vpaddw vpaddd vpaddq vpaddsb vpaddsw vpaddusb vpaddusw vpalignr vpand vpandn vpavgb vpavgw vpblendvb vpblendw vpcmpestri vpcmpestrm vpcmpistri vpcmpistrm vpcmpeqb vpcmpeqw vpcmpeqd vpcmpeqq vpcmpgtb vpcmpgtw vpcmpgtd vpcmpgtq vpermilpd vpermilps vperm2f128 vpextrb vpextrw vpextrd vpextrq vphaddw vphaddd vphaddsw vphminposuw vphsubw vphsubd vphsubsw vpinsrb vpinsrw vpinsrd vpinsrq vpmaddwd vpmaddubsw vpmaxsb vpmaxsw vpmaxsd vpmaxub vpmaxuw vpmaxud vpminsb vpminsw vpminsd vpminub vpminuw vpminud vpmovmskb vpmovsxbw vpmovsxbd vpmovsxbq vpmovsxwd vpmovsxwq vpmovsxdq vpmovzxbw vpmovzxbd vpmovzxbq vpmovzxwd vpmovzxwq vpmovzxdq vpmulhuw vpmulhrsw vpmulhw vpmullw vpmulld vpmuludq vpmuldq vpor vpsadbw vpshufb vpshufd vpshufhw vpshuflw vpsignb vpsignw vpsignd vpslldq vpsrldq vpsllw vpslld vpsllq vpsraw vpsrad vpsrlw vpsrld vpsrlq vptest vpsubb vpsubw vpsubd vpsubq vpsubsb vpsubsw vpsubusb vpsubusw vpunpckhbw vpunpckhwd vpunpckhdq vpunpckhqdq vpunpcklbw vpunpcklwd vpunpckldq vpunpcklqdq vpxor vrcpps vrcpss vrsqrtps vrsqrtss vroundpd vroundps vroundsd vroundss vshufpd vshufps vsqrtpd vsqrtps vsqrtsd vsqrtss vstmxcsr vsubpd vsubps vsubsd vsubss vtestps vtestpd vucomisd vucomiss vunpckhpd vunpckhps vunpcklpd vunpcklps vxorpd vxorps vzeroall vzeroupper pclmullqlqdq pclmulhqlqdq pclmullqhqdq pclmulhqhqdq pclmulqdq vpclmullqlqdq vpclmulhqlqdq vpclmullqhqdq vpclmulhqhqdq vpclmulqdq vfmadd132ps vfmadd132pd vfmadd312ps vfmadd312pd vfmadd213ps vfmadd213pd vfmadd123ps vfmadd123pd vfmadd231ps vfmadd231pd vfmadd321ps vfmadd321pd vfmaddsub132ps vfmaddsub132pd vfmaddsub312ps vfmaddsub312pd vfmaddsub213ps vfmaddsub213pd vfmaddsub123ps vfmaddsub123pd vfmaddsub231ps vfmaddsub231pd vfmaddsub321ps vfmaddsub321pd vfmsub132ps vfmsub132pd vfmsub312ps vfmsub312pd vfmsub213ps vfmsub213pd vfmsub123ps vfmsub123pd vfmsub231ps vfmsub231pd vfmsub321ps vfmsub321pd vfmsubadd132ps vfmsubadd132pd vfmsubadd312ps vfmsubadd312pd vfmsubadd213ps vfmsubadd213pd vfmsubadd123ps vfmsubadd123pd vfmsubadd231ps vfmsubadd231pd vfmsubadd321ps vfmsubadd321pd vfnmadd132ps vfnmadd132pd vfnmadd312ps vfnmadd312pd vfnmadd213ps vfnmadd213pd vfnmadd123ps vfnmadd123pd vfnmadd231ps vfnmadd231pd vfnmadd321ps vfnmadd321pd vfnmsub132ps vfnmsub132pd vfnmsub312ps vfnmsub312pd vfnmsub213ps vfnmsub213pd vfnmsub123ps vfnmsub123pd vfnmsub231ps vfnmsub231pd vfnmsub321ps vfnmsub321pd vfmadd132ss vfmadd132sd vfmadd312ss vfmadd312sd vfmadd213ss vfmadd213sd vfmadd123ss vfmadd123sd vfmadd231ss vfmadd231sd vfmadd321ss vfmadd321sd vfmsub132ss vfmsub132sd vfmsub312ss vfmsub312sd vfmsub213ss vfmsub213sd vfmsub123ss vfmsub123sd vfmsub231ss vfmsub231sd vfmsub321ss vfmsub321sd vfnmadd132ss vfnmadd132sd vfnmadd312ss vfnmadd312sd vfnmadd213ss vfnmadd213sd vfnmadd123ss vfnmadd123sd vfnmadd231ss vfnmadd231sd vfnmadd321ss vfnmadd321sd vfnmsub132ss vfnmsub132sd vfnmsub312ss vfnmsub312sd vfnmsub213ss vfnmsub213sd vfnmsub123ss vfnmsub123sd vfnmsub231ss vfnmsub231sd vfnmsub321ss vfnmsub321sd rdfsbase rdgsbase rdrand wrfsbase wrgsbase vcvtph2ps vcvtps2ph adcx adox rdseed clac stac xstore xcryptecb xcryptcbc xcryptctr xcryptcfb xcryptofb montmul xsha1 xsha256 llwpcb slwpcb lwpval lwpins vfmaddpd vfmaddps vfmaddsd vfmaddss vfmaddsubpd vfmaddsubps vfmsubaddpd vfmsubaddps vfmsubpd vfmsubps vfmsubsd vfmsubss vfnmaddpd vfnmaddps vfnmaddsd vfnmaddss vfnmsubpd vfnmsubps vfnmsubsd vfnmsubss vfrczpd vfrczps vfrczsd vfrczss vpcmov vpcomb vpcomd vpcomq vpcomub vpcomud vpcomuq vpcomuw vpcomw vphaddbd vphaddbq vphaddbw vphadddq vphaddubd vphaddubq vphaddubw vphaddudq vphadduwd vphadduwq vphaddwd vphaddwq vphsubbw vphsubdq vphsubwd vpmacsdd vpmacsdqh vpmacsdql vpmacssdd vpmacssdqh vpmacssdql vpmacsswd vpmacssww vpmacswd vpmacsww vpmadcsswd vpmadcswd vpperm vprotb vprotd vprotq vprotw vpshab vpshad vpshaq vpshaw vpshlb vpshld vpshlq vpshlw vbroadcasti128 vpblendd vpbroadcastb vpbroadcastw vpbroadcastd vpbroadcastq vpermd vpermpd vpermps vpermq vperm2i128 vextracti128 vinserti128 vpmaskmovd vpmaskmovq vpsllvd vpsllvq vpsravd vpsrlvd vpsrlvq vgatherdpd vgatherqpd vgatherdps vgatherqps vpgatherdd vpgatherqd vpgatherdq vpgatherqq xabort xbegin xend xtest andn bextr blci blcic blsi blsic blcfill blsfill blcmsk blsmsk blsr blcs bzhi mulx pdep pext rorx sarx shlx shrx tzcnt tzmsk t1mskc valignd valignq vblendmpd vblendmps vbroadcastf32x4 vbroadcastf64x4 vbroadcasti32x4 vbroadcasti64x4 vcompresspd vcompressps vcvtpd2udq vcvtps2udq vcvtsd2usi vcvtss2usi vcvttpd2udq vcvttps2udq vcvttsd2usi vcvttss2usi vcvtudq2pd vcvtudq2ps vcvtusi2sd vcvtusi2ss vexpandpd vexpandps vextractf32x4 vextractf64x4 vextracti32x4 vextracti64x4 vfixupimmpd vfixupimmps vfixupimmsd vfixupimmss vgetexppd vgetexpps vgetexpsd vgetexpss vgetmantpd vgetmantps vgetmantsd vgetmantss vinsertf32x4 vinsertf64x4 vinserti32x4 vinserti64x4 vmovdqa32 vmovdqa64 vmovdqu32 vmovdqu64 vpabsq vpandd vpandnd vpandnq vpandq vpblendmd vpblendmq vpcmpltd vpcmpled vpcmpneqd vpcmpnltd vpcmpnled vpcmpd vpcmpltq vpcmpleq vpcmpneqq vpcmpnltq vpcmpnleq vpcmpq vpcmpequd vpcmpltud vpcmpleud vpcmpnequd vpcmpnltud vpcmpnleud vpcmpud vpcmpequq vpcmpltuq vpcmpleuq vpcmpnequq vpcmpnltuq vpcmpnleuq vpcmpuq vpcompressd vpcompressq vpermi2d vpermi2pd vpermi2ps vpermi2q vpermt2d vpermt2pd vpermt2ps vpermt2q vpexpandd vpexpandq vpmaxsq vpmaxuq vpminsq vpminuq vpmovdb vpmovdw vpmovqb vpmovqd vpmovqw vpmovsdb vpmovsdw vpmovsqb vpmovsqd vpmovsqw vpmovusdb vpmovusdw vpmovusqb vpmovusqd vpmovusqw vpord vporq vprold vprolq vprolvd vprolvq vprord vprorq vprorvd vprorvq vpscatterdd vpscatterdq vpscatterqd vpscatterqq vpsraq vpsravq vpternlogd vpternlogq vptestmd vptestmq vptestnmd vptestnmq vpxord vpxorq vrcp14pd vrcp14ps vrcp14sd vrcp14ss vrndscalepd vrndscaleps vrndscalesd vrndscaless vrsqrt14pd vrsqrt14ps vrsqrt14sd vrsqrt14ss vscalefpd vscalefps vscalefsd vscalefss vscatterdpd vscatterdps vscatterqpd vscatterqps vshuff32x4 vshuff64x2 vshufi32x4 vshufi64x2 kandnw kandw kmovw knotw kortestw korw kshiftlw kshiftrw kunpckbw kxnorw kxorw vpbroadcastmb2q vpbroadcastmw2d vpconflictd vpconflictq vplzcntd vplzcntq vexp2pd vexp2ps vrcp28pd vrcp28ps vrcp28sd vrcp28ss vrsqrt28pd vrsqrt28ps vrsqrt28sd vrsqrt28ss vgatherpf0dpd vgatherpf0dps vgatherpf0qpd vgatherpf0qps vgatherpf1dpd vgatherpf1dps vgatherpf1qpd vgatherpf1qps vscatterpf0dpd vscatterpf0dps vscatterpf0qpd vscatterpf0qps vscatterpf1dpd vscatterpf1dps vscatterpf1qpd vscatterpf1qps prefetchwt1 bndmk bndcl bndcu bndcn bndmov bndldx bndstx sha1rnds4 sha1nexte sha1msg1 sha1msg2 sha256rnds2 sha256msg1 sha256msg2 hint_nop0 hint_nop1 hint_nop2 hint_nop3 hint_nop4 hint_nop5 hint_nop6 hint_nop7 hint_nop8 hint_nop9 hint_nop10 hint_nop11 hint_nop12 hint_nop13 hint_nop14 hint_nop15 hint_nop16 hint_nop17 hint_nop18 hint_nop19 hint_nop20 hint_nop21 hint_nop22 hint_nop23 hint_nop24 hint_nop25 hint_nop26 hint_nop27 hint_nop28 hint_nop29 hint_nop30 hint_nop31 hint_nop32 hint_nop33 hint_nop34 hint_nop35 hint_nop36 hint_nop37 hint_nop38 hint_nop39 hint_nop40 hint_nop41 hint_nop42 hint_nop43 hint_nop44 hint_nop45 hint_nop46 hint_nop47 hint_nop48 hint_nop49 hint_nop50 hint_nop51 hint_nop52 hint_nop53 hint_nop54 hint_nop55 hint_nop56 hint_nop57 hint_nop58 hint_nop59 hint_nop60 hint_nop61 hint_nop62 hint_nop63", -built_in:"ip eip rip al ah bl bh cl ch dl dh sil dil bpl spl r8b r9b r10b r11b r12b r13b r14b r15b ax bx cx dx si di bp sp r8w r9w r10w r11w r12w r13w r14w r15w eax ebx ecx edx esi edi ebp esp eip r8d r9d r10d r11d r12d r13d r14d r15d rax rbx rcx rdx rsi rdi rbp rsp r8 r9 r10 r11 r12 r13 r14 r15 cs ds es fs gs ss st st0 st1 st2 st3 st4 st5 st6 st7 mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7 xmm8 xmm9 xmm10 xmm11 xmm12 xmm13 xmm14 xmm15 xmm16 xmm17 xmm18 xmm19 xmm20 xmm21 xmm22 xmm23 xmm24 xmm25 xmm26 xmm27 xmm28 xmm29 xmm30 xmm31 ymm0 ymm1 ymm2 ymm3 ymm4 ymm5 ymm6 ymm7 ymm8 ymm9 ymm10 ymm11 ymm12 ymm13 ymm14 ymm15 ymm16 ymm17 ymm18 ymm19 ymm20 ymm21 ymm22 ymm23 ymm24 ymm25 ymm26 ymm27 ymm28 ymm29 ymm30 ymm31 zmm0 zmm1 zmm2 zmm3 zmm4 zmm5 zmm6 zmm7 zmm8 zmm9 zmm10 zmm11 zmm12 zmm13 zmm14 zmm15 zmm16 zmm17 zmm18 zmm19 zmm20 zmm21 zmm22 zmm23 zmm24 zmm25 zmm26 zmm27 zmm28 zmm29 zmm30 zmm31 k0 k1 k2 k3 k4 k5 k6 k7 bnd0 bnd1 bnd2 bnd3 cr0 cr1 cr2 cr3 cr4 cr8 dr0 dr1 dr2 dr3 dr8 tr3 tr4 tr5 tr6 tr7 r0 r1 r2 r3 r4 r5 r6 r7 r0b r1b r2b r3b r4b r5b r6b r7b r0w r1w r2w r3w r4w r5w r6w r7w r0d r1d r2d r3d r4d r5d r6d r7d r0h r1h r2h r3h r0l r1l r2l r3l r4l r5l r6l r7l r8l r9l r10l r11l r12l r13l r14l r15l db dw dd dq dt ddq do dy dz resb resw resd resq rest resdq reso resy resz incbin equ times byte word dword qword nosplit rel abs seg wrt strict near far a32 ptr",meta:"%define %xdefine %+ %undef %defstr %deftok %assign %strcat %strlen %substr %rotate %elif %else %endif %if %ifmacro %ifctx %ifidn %ifidni %ifid %ifnum %ifstr %iftoken %ifempty %ifenv %error %warning %fatal %rep %endrep %include %push %pop %repl %pathsearch %depend %use %arg %stacksize %local %line %comment %endcomment .nolist __FILE__ __LINE__ __SECT__ __BITS__ __OUTPUT_FORMAT__ __DATE__ __TIME__ __DATE_NUM__ __TIME_NUM__ __UTC_DATE__ __UTC_TIME__ __UTC_DATE_NUM__ __UTC_TIME_NUM__ __PASS__ struc endstruc istruc at iend align alignb sectalign daz nodaz up down zero default option assume public bits use16 use32 use64 default section segment absolute extern global common cpu float __utf16__ __utf16le__ __utf16be__ __utf32__ __utf32le__ __utf32be__ __float8__ __float16__ __float32__ __float64__ __float80m__ __float80e__ __float128l__ __float128h__ __Infinity__ __QNaN__ __SNaN__ Inf NaN QNaN SNaN float8 float16 float32 float64 float80m float80e float128l float128h __FLOAT_DAZ__ __FLOAT_ROUND__ __FLOAT__"},c:[e.C(";","$",{r:0}),{cN:"number",v:[{b:"\\b(?:([0-9][0-9_]*)?\\.[0-9_]*(?:[eE][+-]?[0-9_]+)?|(0[Xx])?[0-9][0-9_]*\\.?[0-9_]*(?:[pP](?:[+-]?[0-9_]+)?)?)\\b",r:0},{b:"\\$[0-9][0-9A-Fa-f]*",r:0},{b:"\\b(?:[0-9A-Fa-f][0-9A-Fa-f_]*[Hh]|[0-9][0-9_]*[DdTt]?|[0-7][0-7_]*[QqOo]|[0-1][0-1_]*[BbYy])\\b"},{b:"\\b(?:0[Xx][0-9A-Fa-f_]+|0[DdTt][0-9_]+|0[QqOo][0-7_]+|0[BbYy][0-1_]+)\\b"}]},e.QSM,{cN:"string",v:[{b:"'",e:"[^\\\\]'"},{b:"`",e:"[^\\\\]`"}],r:0},{cN:"symbol",v:[{b:"^\\s*[A-Za-z._?][A-Za-z0-9_$#@~.?]*(:|\\s+label)"},{b:"^\\s*%%[A-Za-z0-9_$#@~.?]*:"}],r:0},{cN:"subst",b:"%[0-9]+",r:0},{cN:"subst",b:"%!S+",r:0},{cN:"meta",b:/^\s*\.[\w_-]+/}]}}),e.registerLanguage("xl",function(e){var t="ObjectLoader Animate MovieCredits Slides Filters Shading Materials LensFlare Mapping VLCAudioVideo StereoDecoder PointCloud NetworkAccess RemoteControl RegExp ChromaKey Snowfall NodeJS Speech Charts",r={keyword:"if then else do while until for loop import with is as where when by data constant integer real text name boolean symbol infix prefix postfix block tree",literal:"true false nil",built_in:"in mod rem and or xor not abs sign floor ceil sqrt sin cos tan asin acos atan exp expm1 log log2 log10 log1p pi at text_length text_range text_find text_replace contains page slide basic_slide title_slide title subtitle fade_in fade_out fade_at clear_color color line_color line_width texture_wrap texture_transform texture scale_?x scale_?y scale_?z? translate_?x translate_?y translate_?z? rotate_?x rotate_?y rotate_?z? rectangle circle ellipse sphere path line_to move_to quad_to curve_to theme background contents locally time mouse_?x mouse_?y mouse_buttons "+t},a={cN:"string",b:'"',e:'"',i:"\\n"},i={cN:"string",b:"'",e:"'",i:"\\n"},n={cN:"string",b:"<<",e:">>"},o={cN:"number",b:"[0-9]+#[0-9A-Z_]+(\\.[0-9-A-Z_]+)?#?([Ee][+-]?[0-9]+)?"},s={bK:"import",e:"$",k:r,c:[a]},l={cN:"function",b:/[a-z][^\n]*->/,rB:!0,e:/->/,c:[e.inherit(e.TM,{starts:{eW:!0,k:r}})]};return{aliases:["tao"],l:/[a-zA-Z][a-zA-Z0-9_?]*/,k:r,c:[e.CLCM,e.CBCM,a,i,n,l,s,o,e.NM]}}),e.registerLanguage("xquery",function(e){var t="for let if while then else return where group by xquery encoding versionmodule namespace boundary-space preserve strip default collation base-uri orderingcopy-namespaces order declare import schema namespace function option in allowing emptyat tumbling window sliding window start when only end when previous next stable ascendingdescending empty greatest least some every satisfies switch case typeswitch try catch andor to union intersect instance of treat as castable cast map array delete insert intoreplace value rename copy modify update",r="false true xs:string xs:integer element item xs:date xs:datetime xs:float xs:double xs:decimal QName xs:anyURI xs:long xs:int xs:short xs:byte attribute",a={b:/\$[a-zA-Z0-9\-]+/},i={cN:"number",b:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",r:0},n={cN:"string",v:[{b:/"/,e:/"/,c:[{b:/""/,r:0}]},{b:/'/,e:/'/,c:[{b:/''/,r:0}]}]},o={cN:"meta",b:"%\\w+"},s={cN:"comment",b:"\\(:",e:":\\)",r:10,c:[{cN:"doctag",b:"@\\w+"}]},l={b:"{",e:"}"},c=[a,n,i,s,o,l];return l.c=c,{aliases:["xpath","xq"],cI:!1,l:/[a-zA-Z\$][a-zA-Z0-9_:\-]*/,i:/(proc)|(abstract)|(extends)|(until)|(#)/,k:{keyword:t,literal:r},c:c}}),e.registerLanguage("zephir",function(e){var t={cN:"string",c:[e.BE],v:[{b:'b"',e:'"'},{b:"b'",e:"'"},e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null})]},r={v:[e.BNM,e.CNM]};return{aliases:["zep"],cI:!0,k:"and include_once list abstract global private echo interface as static endswitch array null if endwhile or const for endforeach self var let while isset public protected exit foreach throw elseif include __FILE__ empty require_once do xor return parent clone use __CLASS__ __LINE__ else break print eval new catch __METHOD__ case exception default die require __FUNCTION__ enddeclare final try switch continue endfor endif declare unset true false trait goto instanceof insteadof __DIR__ __NAMESPACE__ yield finally int uint long ulong char uchar double float bool boolean stringlikely unlikely",c:[e.CLCM,e.HCM,e.C("/\\*","\\*/",{c:[{cN:"doctag",b:"@[A-Za-z]+"}]}),e.C("__halt_compiler.+?;",!1,{eW:!0,k:"__halt_compiler",l:e.UIR}),{cN:"string",b:"<<<['\"]?\\w+['\"]?$",e:"^\\w+;",c:[e.BE]},{b:/(::|->)+[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/},{cN:"function",bK:"function",e:/[;{]/,eE:!0,i:"\\$|\\[|%",c:[e.UTM,{cN:"params",b:"\\(",e:"\\)",c:["self",e.CBCM,t,r]}]},{cN:"class",bK:"class interface",e:"{",eE:!0,i:/[:\(\$"]/,c:[{bK:"extends implements"},e.UTM]},{bK:"namespace",e:";",i:/[\.']/,c:[e.UTM]},{bK:"use",e:";",c:[e.UTM]},{b:"=>"},t,r]}}),e}); -/*! @websanova/url - v2.6.3 - 2020-01-25 */ -!function(){function t(t,r){var a,o={};if("tld?"!==t){if(r=r||window.location.toString(),!t)return r;if(t=t.toString(),a=r.match(/^mailto:([^\/].+)/))o.protocol="mailto",o.email=a[1];else{if((a=r.match(/(.*?)\/#\!(.*)/))&&(r=a[1]+a[2]),(a=r.match(/(.*?)#(.*)/))&&(o.hash=a[2],r=a[1]),o.hash&&t.match(/^#/))return h(t,o.hash);if((a=r.match(/(.*?)\?(.*)/))&&(o.query=a[2],r=a[1]),o.query&&t.match(/^\?/))return h(t,o.query);if((a=r.match(/(.*?)\:?\/\/(.*)/))&&(o.protocol=a[1].toLowerCase(),r=a[2]),(a=r.match(/(.*?)(\/.*)/))&&(o.path=a[2],r=a[1]),o.path=(o.path||"").replace(/^([^\/])/,"/$1"),t.match(/^[\-0-9]+$/)&&(t=t.replace(/^([^\/])/,"/$1")),t.match(/^\//))return e(t,o.path.substring(1));if((a=(a=e("/-1",o.path.substring(1)))&&a.match(/(.*?)\.([^.]+)$/))&&(o.file=a[0],o.filename=a[1],o.fileext=a[2]),(a=r.match(/(.*)\:([0-9]+)$/))&&(o.port=a[2],r=a[1]),(a=r.match(/(.*?)@(.*)/))&&(o.auth=a[1],r=a[2]),o.auth&&(a=o.auth.match(/(.*)\:(.*)/),o.user=a?a[1]:o.auth,o.pass=a?a[2]:void 0),o.hostname=r.toLowerCase(),"."===t.charAt(0))return e(t,o.hostname);o.port=o.port||("https"===o.protocol?"443":"80"),o.protocol=o.protocol||("443"===o.port?"https":"http")}return t in o?o[t]:"{}"===t?o:void 0}}function e(t,r){var a=t.charAt(0),o=r.split(a);return a===t?o:o[(t=parseInt(t.substring(1),10))<0?o.length+t:t-1]}function h(t,r){for(var a,o=t.charAt(0),e=r.split("&"),h=[],n={},c=[],i=t.substring(1),p=0,u=e.length;p - * Released under Apache 2.0 license - * http://apache.org/licenses/LICENSE-2.0.html - */ -!function(a,b,c,d){"use strict";var e=a.fn.twbsPagination,f=function(c,d){if(this.$element=a(c),this.options=a.extend({},a.fn.twbsPagination.defaults,d),this.options.startPage<1||this.options.startPage>this.options.totalPages)throw new Error("Start page option is incorrect");if(this.options.totalPages=parseInt(this.options.totalPages),isNaN(this.options.totalPages))throw new Error("Total pages option is not correct!");if(this.options.visiblePages=parseInt(this.options.visiblePages),isNaN(this.options.visiblePages))throw new Error("Visible pages option is not correct!");if(this.options.totalPages"),this.$listContainer.addClass(this.options.paginationClass),"UL"!==g&&this.$element.append(this.$listContainer),this.render(this.getPages(this.options.startPage)),this.setupEvents(),this.options.initiateStartPageClick&&this.$element.trigger("page",this.options.startPage),this};f.prototype={constructor:f,destroy:function(){return this.$element.empty(),this.$element.removeData("twbs-pagination"),this.$element.off("page"),this},show:function(a){if(1>a||a>this.options.totalPages)throw new Error("Page is incorrect.");return this.render(this.getPages(a)),this.setupEvents(),this.$element.trigger("page",a),this},buildListItems:function(a){var b=[];if(this.options.first&&b.push(this.buildItem("first",1)),this.options.prev){var c=a.currentPage>1?a.currentPage-1:this.options.loop?this.options.totalPages:1;b.push(this.buildItem("prev",c))}for(var d=0;d"),e=a(""),f=null;switch(b){case"page":f=c,d.addClass(this.options.pageClass);break;case"first":f=this.options.first,d.addClass(this.options.firstClass);break;case"prev":f=this.options.prev,d.addClass(this.options.prevClass);break;case"next":f=this.options.next,d.addClass(this.options.nextClass);break;case"last":f=this.options.last,d.addClass(this.options.lastClass)}return d.data("page",c),d.data("page-type",b),d.append(e.attr("href",this.makeHref(c)).html(f)),d},getPages:function(a){var b=[],c=Math.floor(this.options.visiblePages/2),d=a-c+1-this.options.visiblePages%2,e=a+c;0>=d&&(d=1,e=this.options.visiblePages),e>this.options.totalPages&&(d=this.options.totalPages-this.options.visiblePages+1,e=this.options.totalPages);for(var f=d;e>=f;)b.push(f),f++;return{currentPage:a,numeric:b}},render:function(b){var c=this;this.$listContainer.children().remove(),this.$listContainer.append(this.buildListItems(b)),this.$listContainer.children().each(function(){var d=a(this),e=d.data("page-type");switch(e){case"page":d.data("page")===b.currentPage&&d.addClass(c.options.activeClass);break;case"first":d.toggleClass(c.options.disabledClass,1===b.currentPage);break;case"last":d.toggleClass(c.options.disabledClass,b.currentPage===c.options.totalPages);break;case"prev":d.toggleClass(c.options.disabledClass,!c.options.loop&&1===b.currentPage);break;case"next":d.toggleClass(c.options.disabledClass,!c.options.loop&&b.currentPage===c.options.totalPages)}})},setupEvents:function(){var b=this;this.$listContainer.find("li").each(function(){var c=a(this);return c.off(),c.hasClass(b.options.disabledClass)||c.hasClass(b.options.activeClass)?void c.on("click",!1):void c.click(function(a){!b.options.href&&a.preventDefault(),b.show(parseInt(c.data("page")))})})},makeHref:function(a){return this.options.href?this.options.href.replace(this.options.hrefVariable,a):"#"}},a.fn.twbsPagination=function(b){var c,e=Array.prototype.slice.call(arguments,1),g=a(this),h=g.data("twbs-pagination"),i="object"==typeof b&&b;return h||g.data("twbs-pagination",h=new f(this,i)),"string"==typeof b&&(c=h[b].apply(h,e)),c===d?g:c},a.fn.twbsPagination.defaults={totalPages:0,startPage:1,visiblePages:5,initiateStartPageClick:!0,href:!1,hrefVariable:"{{number}}",first:"First",prev:"Previous",next:"Next",last:"Last",loop:!1,onPageClick:null,paginationClass:"pagination",nextClass:"next",prevClass:"prev",lastClass:"last",firstClass:"first",pageClass:"page",activeClass:"active",disabledClass:"disabled"},a.fn.twbsPagination.Constructor=f,a.fn.twbsPagination.noConflict=function(){return a.fn.twbsPagination=e,this}}(window.jQuery,window,document); -/*!*************************************************** -* mark.js v8.11.1 -* https://markjs.io/ -* Copyright (c) 2014–2018, Julian Kühnel -* Released under the MIT license https://git.io/vwTVl -*****************************************************/ -!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t(require("jquery")):"function"==typeof define&&define.amd?define(["jquery"],t):e.Mark=t(e.jQuery)}(this,function(e){"use strict";e=e&&e.hasOwnProperty("default")?e.default:e;var t="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},n=function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")},r=function(){function e(e,t){for(var n=0;n1&&void 0!==arguments[1])||arguments[1],i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:[],o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:5e3;n(this,e),this.ctx=t,this.iframes=r,this.exclude=i,this.iframesTimeout=o}return r(e,[{key:"getContexts",value:function(){var e=[];return(void 0!==this.ctx&&this.ctx?NodeList.prototype.isPrototypeOf(this.ctx)?Array.prototype.slice.call(this.ctx):Array.isArray(this.ctx)?this.ctx:"string"==typeof this.ctx?Array.prototype.slice.call(document.querySelectorAll(this.ctx)):[this.ctx]:[]).forEach(function(t){var n=e.filter(function(e){return e.contains(t)}).length>0;-1!==e.indexOf(t)||n||e.push(t)}),e}},{key:"getIframeContents",value:function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:function(){},r=void 0;try{var i=e.contentWindow;if(r=i.document,!i||!r)throw new Error("iframe inaccessible")}catch(e){n()}r&&t(r)}},{key:"isIframeBlank",value:function(e){var t=e.getAttribute("src").trim();return"about:blank"===e.contentWindow.location.href&&"about:blank"!==t&&t}},{key:"observeIframeLoad",value:function(e,t,n){var r=this,i=!1,o=null,a=function a(){if(!i){i=!0,clearTimeout(o);try{r.isIframeBlank(e)||(e.removeEventListener("load",a),r.getIframeContents(e,t,n))}catch(e){n()}}};e.addEventListener("load",a),o=setTimeout(a,this.iframesTimeout)}},{key:"onIframeReady",value:function(e,t,n){try{"complete"===e.contentWindow.document.readyState?this.isIframeBlank(e)?this.observeIframeLoad(e,t,n):this.getIframeContents(e,t,n):this.observeIframeLoad(e,t,n)}catch(e){n()}}},{key:"waitForIframes",value:function(e,t){var n=this,r=0;this.forEachIframe(e,function(){return!0},function(e){r++,n.waitForIframes(e.querySelector("html"),function(){--r||t()})},function(e){e||t()})}},{key:"forEachIframe",value:function(t,n,r){var i=this,o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:function(){},a=t.querySelectorAll("iframe"),s=a.length,c=0;a=Array.prototype.slice.call(a);var u=function(){--s<=0&&o(c)};s||u(),a.forEach(function(t){e.matches(t,i.exclude)?u():i.onIframeReady(t,function(e){n(t)&&(c++,r(e)),u()},u)})}},{key:"createIterator",value:function(e,t,n){return document.createNodeIterator(e,t,n,!1)}},{key:"createInstanceOnIframe",value:function(t){return new e(t.querySelector("html"),this.iframes)}},{key:"compareNodeIframe",value:function(e,t,n){if(e.compareDocumentPosition(n)&Node.DOCUMENT_POSITION_PRECEDING){if(null===t)return!0;if(t.compareDocumentPosition(n)&Node.DOCUMENT_POSITION_FOLLOWING)return!0}return!1}},{key:"getIteratorNode",value:function(e){var t=e.previousNode();return{prevNode:t,node:null===t?e.nextNode():e.nextNode()&&e.nextNode()}}},{key:"checkIframeFilter",value:function(e,t,n,r){var i=!1,o=!1;return r.forEach(function(e,t){e.val===n&&(i=t,o=e.handled)}),this.compareNodeIframe(e,t,n)?(!1!==i||o?!1===i||o||(r[i].handled=!0):r.push({val:n,handled:!0}),!0):(!1===i&&r.push({val:n,handled:!1}),!1)}},{key:"handleOpenIframes",value:function(e,t,n,r){var i=this;e.forEach(function(e){e.handled||i.getIframeContents(e.val,function(e){i.createInstanceOnIframe(e).forEachNode(t,n,r)})})}},{key:"iterateThroughNodes",value:function(e,t,n,r,i){for(var o,a=this,s=this.createIterator(t,e,r),c=[],u=[],l=void 0,h=void 0;void 0,o=a.getIteratorNode(s),h=o.prevNode,l=o.node;)this.iframes&&this.forEachIframe(t,function(e){return a.checkIframeFilter(l,h,e,c)},function(t){a.createInstanceOnIframe(t).forEachNode(e,function(e){return u.push(e)},r)}),u.push(l);u.forEach(function(e){n(e)}),this.iframes&&this.handleOpenIframes(c,e,n,r),i()}},{key:"forEachNode",value:function(e,t,n){var r=this,i=arguments.length>3&&void 0!==arguments[3]?arguments[3]:function(){},o=this.getContexts(),a=o.length;a||i(),o.forEach(function(o){var s=function(){r.iterateThroughNodes(e,o,t,n,function(){--a<=0&&i()})};r.iframes?r.waitForIframes(o,s):s()})}}],[{key:"matches",value:function(e,t){var n="string"==typeof t?[t]:t,r=e.matches||e.matchesSelector||e.msMatchesSelector||e.mozMatchesSelector||e.oMatchesSelector||e.webkitMatchesSelector;if(r){var i=!1;return n.every(function(t){return!r.call(e,t)||(i=!0,!1)}),i}return!1}}]),e}(),a=function(){function e(t){n(this,e),this.ctx=t,this.ie=!1;var r=window.navigator.userAgent;(r.indexOf("MSIE")>-1||r.indexOf("Trident")>-1)&&(this.ie=!0)}return r(e,[{key:"log",value:function(e){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"debug",r=this.opt.log;this.opt.debug&&"object"===(void 0===r?"undefined":t(r))&&"function"==typeof r[n]&&r[n]("mark.js: "+e)}},{key:"escapeStr",value:function(e){return e.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,"\\$&")}},{key:"createRegExp",value:function(e){return"disabled"!==this.opt.wildcards&&(e=this.setupWildcardsRegExp(e)),e=this.escapeStr(e),Object.keys(this.opt.synonyms).length&&(e=this.createSynonymsRegExp(e)),(this.opt.ignoreJoiners||this.opt.ignorePunctuation.length)&&(e=this.setupIgnoreJoinersRegExp(e)),this.opt.diacritics&&(e=this.createDiacriticsRegExp(e)),e=this.createMergedBlanksRegExp(e),(this.opt.ignoreJoiners||this.opt.ignorePunctuation.length)&&(e=this.createJoinersRegExp(e)),"disabled"!==this.opt.wildcards&&(e=this.createWildcardsRegExp(e)),e=this.createAccuracyRegExp(e)}},{key:"createSynonymsRegExp",value:function(e){var t=this.opt.synonyms,n=this.opt.caseSensitive?"":"i",r=this.opt.ignoreJoiners||this.opt.ignorePunctuation.length?"\0":"";for(var i in t)if(t.hasOwnProperty(i)){var o=t[i],a="disabled"!==this.opt.wildcards?this.setupWildcardsRegExp(i):this.escapeStr(i),s="disabled"!==this.opt.wildcards?this.setupWildcardsRegExp(o):this.escapeStr(o);""!==a&&""!==s&&(e=e.replace(new RegExp("("+this.escapeStr(a)+"|"+this.escapeStr(s)+")","gm"+n),r+"("+this.processSynomyms(a)+"|"+this.processSynomyms(s)+")"+r))}return e}},{key:"processSynomyms",value:function(e){return(this.opt.ignoreJoiners||this.opt.ignorePunctuation.length)&&(e=this.setupIgnoreJoinersRegExp(e)),e}},{key:"setupWildcardsRegExp",value:function(e){return(e=e.replace(/(?:\\)*\?/g,function(e){return"\\"===e.charAt(0)?"?":""})).replace(/(?:\\)*\*/g,function(e){return"\\"===e.charAt(0)?"*":""})}},{key:"createWildcardsRegExp",value:function(e){var t="withSpaces"===this.opt.wildcards;return e.replace(/\u0001/g,t?"[\\S\\s]?":"\\S?").replace(/\u0002/g,t?"[\\S\\s]*?":"\\S*")}},{key:"setupIgnoreJoinersRegExp",value:function(e){return e.replace(/[^(|)\\]/g,function(e,t,n){var r=n.charAt(t+1);return/[(|)\\]/.test(r)||""===r?e:e+"\0"})}},{key:"createJoinersRegExp",value:function(e){var t=[],n=this.opt.ignorePunctuation;return Array.isArray(n)&&n.length&&t.push(this.escapeStr(n.join(""))),this.opt.ignoreJoiners&&t.push("\\u00ad\\u200b\\u200c\\u200d"),t.length?e.split(/\u0000+/).join("["+t.join("")+"]*"):e}},{key:"createDiacriticsRegExp",value:function(e){var t=this.opt.caseSensitive?"":"i",n=this.opt.caseSensitive?["aàáảãạăằắẳẵặâầấẩẫậäåāą","AÀÁẢÃẠĂẰẮẲẴẶÂẦẤẨẪẬÄÅĀĄ","cçćč","CÇĆČ","dđď","DĐĎ","eèéẻẽẹêềếểễệëěēę","EÈÉẺẼẸÊỀẾỂỄỆËĚĒĘ","iìíỉĩịîïī","IÌÍỈĨỊÎÏĪ","lł","LŁ","nñňń","NÑŇŃ","oòóỏõọôồốổỗộơởỡớờợöøō","OÒÓỎÕỌÔỒỐỔỖỘƠỞỠỚỜỢÖØŌ","rř","RŘ","sšśșş","SŠŚȘŞ","tťțţ","TŤȚŢ","uùúủũụưừứửữựûüůū","UÙÚỦŨỤƯỪỨỬỮỰÛÜŮŪ","yýỳỷỹỵÿ","YÝỲỶỸỴŸ","zžżź","ZŽŻŹ"]:["aàáảãạăằắẳẵặâầấẩẫậäåāąAÀÁẢÃẠĂẰẮẲẴẶÂẦẤẨẪẬÄÅĀĄ","cçćčCÇĆČ","dđďDĐĎ","eèéẻẽẹêềếểễệëěēęEÈÉẺẼẸÊỀẾỂỄỆËĚĒĘ","iìíỉĩịîïīIÌÍỈĨỊÎÏĪ","lłLŁ","nñňńNÑŇŃ","oòóỏõọôồốổỗộơởỡớờợöøōOÒÓỎÕỌÔỒỐỔỖỘƠỞỠỚỜỢÖØŌ","rřRŘ","sšśșşSŠŚȘŞ","tťțţTŤȚŢ","uùúủũụưừứửữựûüůūUÙÚỦŨỤƯỪỨỬỮỰÛÜŮŪ","yýỳỷỹỵÿYÝỲỶỸỴŸ","zžżźZŽŻŹ"],r=[];return e.split("").forEach(function(i){n.every(function(n){if(-1!==n.indexOf(i)){if(r.indexOf(n)>-1)return!1;e=e.replace(new RegExp("["+n+"]","gm"+t),"["+n+"]"),r.push(n)}return!0})}),e}},{key:"createMergedBlanksRegExp",value:function(e){return e.replace(/[\s]+/gim,"[\\s]+")}},{key:"createAccuracyRegExp",value:function(e){var t=this,n=this.opt.accuracy,r="string"==typeof n?n:n.value,i="";switch(("string"==typeof n?[]:n.limiters).forEach(function(e){i+="|"+t.escapeStr(e)}),r){case"partially":default:return"()("+e+")";case"complementary":return"()([^"+(i="\\s"+(i||this.escapeStr("!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~¡¿")))+"]*"+e+"[^"+i+"]*)";case"exactly":return"(^|\\s"+i+")("+e+")(?=$|\\s"+i+")"}}},{key:"getSeparatedKeywords",value:function(e){var t=this,n=[];return e.forEach(function(e){t.opt.separateWordSearch?e.split(" ").forEach(function(e){e.trim()&&-1===n.indexOf(e)&&n.push(e)}):e.trim()&&-1===n.indexOf(e)&&n.push(e)}),{keywords:n.sort(function(e,t){return t.length-e.length}),length:n.length}}},{key:"isNumeric",value:function(e){return Number(parseFloat(e))==e}},{key:"checkRanges",value:function(e){var t=this;if(!Array.isArray(e)||"[object Object]"!==Object.prototype.toString.call(e[0]))return this.log("markRanges() will only accept an array of objects"),this.opt.noMatch(e),[];var n=[],r=0;return e.sort(function(e,t){return e.start-t.start}).forEach(function(e){var i=t.callNoMatchOnInvalidRanges(e,r),o=i.start,a=i.end;i.valid&&(e.start=o,e.length=a-o,n.push(e),r=a)}),n}},{key:"callNoMatchOnInvalidRanges",value:function(e,t){var n=void 0,r=void 0,i=!1;return e&&void 0!==e.start?(r=(n=parseInt(e.start,10))+parseInt(e.length,10),this.isNumeric(e.start)&&this.isNumeric(e.length)&&r-t>0&&r-n>0?i=!0:(this.log("Ignoring invalid or overlapping range: "+JSON.stringify(e)),this.opt.noMatch(e))):(this.log("Ignoring invalid range: "+JSON.stringify(e)),this.opt.noMatch(e)),{start:n,end:r,valid:i}}},{key:"checkWhitespaceRanges",value:function(e,t,n){var r=void 0,i=!0,o=n.length,a=t-o,s=parseInt(e.start,10)-a;return(r=(s=s>o?o:s)+parseInt(e.length,10))>o&&(r=o,this.log("End range automatically set to the max value of "+o)),s<0||r-s<0||s>o||r>o?(i=!1,this.log("Invalid range: "+JSON.stringify(e)),this.opt.noMatch(e)):""===n.substring(s,r).replace(/\s+/g,"")&&(i=!1,this.log("Skipping whitespace only range: "+JSON.stringify(e)),this.opt.noMatch(e)),{start:s,end:r,valid:i}}},{key:"getTextNodes",value:function(e){var t=this,n="",r=[];this.iterator.forEachNode(NodeFilter.SHOW_TEXT,function(e){r.push({start:n.length,end:(n+=e.textContent).length,node:e})},function(e){return t.matchesExclude(e.parentNode)?NodeFilter.FILTER_REJECT:NodeFilter.FILTER_ACCEPT},function(){e({value:n,nodes:r})})}},{key:"matchesExclude",value:function(e){return o.matches(e,this.opt.exclude.concat(["script","style","title","head","html"]))}},{key:"wrapRangeInTextNode",value:function(e,t,n){var r=this.opt.element?this.opt.element:"mark",i=e.splitText(t),o=i.splitText(n-t),a=document.createElement(r);return a.setAttribute("data-markjs","true"),this.opt.className&&a.setAttribute("class",this.opt.className),a.textContent=i.textContent,i.parentNode.replaceChild(a,i),o}},{key:"wrapRangeInMappedTextNode",value:function(e,t,n,r,i){var o=this;e.nodes.every(function(a,s){var c=e.nodes[s+1];if(void 0===c||c.start>t){if(!r(a.node))return!1;var u=t-a.start,l=(n>a.end?a.end:n)-a.start,h=e.value.substr(0,a.start),f=e.value.substr(l+a.start);if(a.node=o.wrapRangeInTextNode(a.node,u,l),e.value=h+f,e.nodes.forEach(function(t,n){n>=s&&(e.nodes[n].start>0&&n!==s&&(e.nodes[n].start-=l),e.nodes[n].end-=l)}),n-=l,i(a.node.previousSibling,a.start),!(n>a.end))return!1;t=a.end}return!0})}},{key:"wrapMatches",value:function(e,t,n,r,i){var o=this,a=0===t?0:t+1;this.getTextNodes(function(t){t.nodes.forEach(function(t){t=t.node;for(var i=void 0;null!==(i=e.exec(t.textContent))&&""!==i[a];)if(n(i[a],t)){var s=i.index;if(0!==a)for(var c=1;c.anchorjs-link,.anchorjs-link:focus{opacity:1}",u.sheet.cssRules.length),u.sheet.insertRule("[data-anchorjs-icon]::after{content:attr(data-anchorjs-icon)}",u.sheet.cssRules.length),u.sheet.insertRule('@font-face{font-family:anchorjs-icons;src:url(data:n/a;base64,AAEAAAALAIAAAwAwT1MvMg8yG2cAAAE4AAAAYGNtYXDp3gC3AAABpAAAAExnYXNwAAAAEAAAA9wAAAAIZ2x5ZlQCcfwAAAH4AAABCGhlYWQHFvHyAAAAvAAAADZoaGVhBnACFwAAAPQAAAAkaG10eASAADEAAAGYAAAADGxvY2EACACEAAAB8AAAAAhtYXhwAAYAVwAAARgAAAAgbmFtZQGOH9cAAAMAAAAAunBvc3QAAwAAAAADvAAAACAAAQAAAAEAAHzE2p9fDzz1AAkEAAAAAADRecUWAAAAANQA6R8AAAAAAoACwAAAAAgAAgAAAAAAAAABAAADwP/AAAACgAAA/9MCrQABAAAAAAAAAAAAAAAAAAAAAwABAAAAAwBVAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAMCQAGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAg//0DwP/AAEADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAAIAAAACgAAxAAAAAwAAAAMAAAAcAAEAAwAAABwAAwABAAAAHAAEADAAAAAIAAgAAgAAACDpy//9//8AAAAg6cv//f///+EWNwADAAEAAAAAAAAAAAAAAAAACACEAAEAAAAAAAAAAAAAAAAxAAACAAQARAKAAsAAKwBUAAABIiYnJjQ3NzY2MzIWFxYUBwcGIicmNDc3NjQnJiYjIgYHBwYUFxYUBwYGIwciJicmNDc3NjIXFhQHBwYUFxYWMzI2Nzc2NCcmNDc2MhcWFAcHBgYjARQGDAUtLXoWOR8fORYtLTgKGwoKCjgaGg0gEhIgDXoaGgkJBQwHdR85Fi0tOAobCgoKOBoaDSASEiANehoaCQkKGwotLXoWOR8BMwUFLYEuehYXFxYugC44CQkKGwo4GkoaDQ0NDXoaShoKGwoFBe8XFi6ALjgJCQobCjgaShoNDQ0NehpKGgobCgoKLYEuehYXAAAADACWAAEAAAAAAAEACAAAAAEAAAAAAAIAAwAIAAEAAAAAAAMACAAAAAEAAAAAAAQACAAAAAEAAAAAAAUAAQALAAEAAAAAAAYACAAAAAMAAQQJAAEAEAAMAAMAAQQJAAIABgAcAAMAAQQJAAMAEAAMAAMAAQQJAAQAEAAMAAMAAQQJAAUAAgAiAAMAAQQJAAYAEAAMYW5jaG9yanM0MDBAAGEAbgBjAGgAbwByAGoAcwA0ADAAMABAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAH//wAP) format("truetype")}',u.sheet.cssRules.length)),u=document.querySelectorAll("[id]"),t=[].map.call(u,function(A){return A.id}),i=0;i\]./()*\\\n\t\b\v\u00A0]/g,"-").replace(/-{2,}/g,"-").substring(0,this.options.truncate).replace(/^-+|-+$/gm,"").toLowerCase()},this.hasAnchorJSLink=function(A){var e=A.firstChild&&-1<(" "+A.firstChild.className+" ").indexOf(" anchorjs-link "),A=A.lastChild&&-1<(" "+A.lastChild.className+" ").indexOf(" anchorjs-link ");return e||A||!1}}}); -// @license-end \ No newline at end of file diff --git a/docs/styles/lunr.js b/docs/styles/lunr.js deleted file mode 100644 index 35dae2fbf..000000000 --- a/docs/styles/lunr.js +++ /dev/null @@ -1,2924 +0,0 @@ -/** - * lunr - http://lunrjs.com - A bit like Solr, but much smaller and not as bright - 2.1.2 - * Copyright (C) 2017 Oliver Nightingale - * @license MIT - */ - -;(function(){ - -/** - * A convenience function for configuring and constructing - * a new lunr Index. - * - * A lunr.Builder instance is created and the pipeline setup - * with a trimmer, stop word filter and stemmer. - * - * This builder object is yielded to the configuration function - * that is passed as a parameter, allowing the list of fields - * and other builder parameters to be customised. - * - * All documents _must_ be added within the passed config function. - * - * @example - * var idx = lunr(function () { - * this.field('title') - * this.field('body') - * this.ref('id') - * - * documents.forEach(function (doc) { - * this.add(doc) - * }, this) - * }) - * - * @see {@link lunr.Builder} - * @see {@link lunr.Pipeline} - * @see {@link lunr.trimmer} - * @see {@link lunr.stopWordFilter} - * @see {@link lunr.stemmer} - * @namespace {function} lunr - */ -var lunr = function (config) { - var builder = new lunr.Builder - - builder.pipeline.add( - lunr.trimmer, - lunr.stopWordFilter, - lunr.stemmer - ) - - builder.searchPipeline.add( - lunr.stemmer - ) - - config.call(builder, builder) - return builder.build() -} - -lunr.version = "2.1.2" -/*! - * lunr.utils - * Copyright (C) 2017 Oliver Nightingale - */ - -/** - * A namespace containing utils for the rest of the lunr library - */ -lunr.utils = {} - -/** - * Print a warning message to the console. - * - * @param {String} message The message to be printed. - * @memberOf Utils - */ -lunr.utils.warn = (function (global) { - /* eslint-disable no-console */ - return function (message) { - if (global.console && console.warn) { - console.warn(message) - } - } - /* eslint-enable no-console */ -})(this) - -/** - * Convert an object to a string. - * - * In the case of `null` and `undefined` the function returns - * the empty string, in all other cases the result of calling - * `toString` on the passed object is returned. - * - * @param {Any} obj The object to convert to a string. - * @return {String} string representation of the passed object. - * @memberOf Utils - */ -lunr.utils.asString = function (obj) { - if (obj === void 0 || obj === null) { - return "" - } else { - return obj.toString() - } -} -lunr.FieldRef = function (docRef, fieldName) { - this.docRef = docRef - this.fieldName = fieldName - this._stringValue = fieldName + lunr.FieldRef.joiner + docRef -} - -lunr.FieldRef.joiner = "/" - -lunr.FieldRef.fromString = function (s) { - var n = s.indexOf(lunr.FieldRef.joiner) - - if (n === -1) { - throw "malformed field ref string" - } - - var fieldRef = s.slice(0, n), - docRef = s.slice(n + 1) - - return new lunr.FieldRef (docRef, fieldRef) -} - -lunr.FieldRef.prototype.toString = function () { - return this._stringValue -} -/** - * A function to calculate the inverse document frequency for - * a posting. This is shared between the builder and the index - * - * @private - * @param {object} posting - The posting for a given term - * @param {number} documentCount - The total number of documents. - */ -lunr.idf = function (posting, documentCount) { - var documentsWithTerm = 0 - - for (var fieldName in posting) { - if (fieldName == '_index') continue // Ignore the term index, its not a field - documentsWithTerm += Object.keys(posting[fieldName]).length - } - - var x = (documentCount - documentsWithTerm + 0.5) / (documentsWithTerm + 0.5) - - return Math.log(1 + Math.abs(x)) -} - -/** - * A token wraps a string representation of a token - * as it is passed through the text processing pipeline. - * - * @constructor - * @param {string} [str=''] - The string token being wrapped. - * @param {object} [metadata={}] - Metadata associated with this token. - */ -lunr.Token = function (str, metadata) { - this.str = str || "" - this.metadata = metadata || {} -} - -/** - * Returns the token string that is being wrapped by this object. - * - * @returns {string} - */ -lunr.Token.prototype.toString = function () { - return this.str -} - -/** - * A token update function is used when updating or optionally - * when cloning a token. - * - * @callback lunr.Token~updateFunction - * @param {string} str - The string representation of the token. - * @param {Object} metadata - All metadata associated with this token. - */ - -/** - * Applies the given function to the wrapped string token. - * - * @example - * token.update(function (str, metadata) { - * return str.toUpperCase() - * }) - * - * @param {lunr.Token~updateFunction} fn - A function to apply to the token string. - * @returns {lunr.Token} - */ -lunr.Token.prototype.update = function (fn) { - this.str = fn(this.str, this.metadata) - return this -} - -/** - * Creates a clone of this token. Optionally a function can be - * applied to the cloned token. - * - * @param {lunr.Token~updateFunction} [fn] - An optional function to apply to the cloned token. - * @returns {lunr.Token} - */ -lunr.Token.prototype.clone = function (fn) { - fn = fn || function (s) { return s } - return new lunr.Token (fn(this.str, this.metadata), this.metadata) -} -/*! - * lunr.tokenizer - * Copyright (C) 2017 Oliver Nightingale - */ - -/** - * A function for splitting a string into tokens ready to be inserted into - * the search index. Uses `lunr.tokenizer.separator` to split strings, change - * the value of this property to change how strings are split into tokens. - * - * This tokenizer will convert its parameter to a string by calling `toString` and - * then will split this string on the character in `lunr.tokenizer.separator`. - * Arrays will have their elements converted to strings and wrapped in a lunr.Token. - * - * @static - * @param {?(string|object|object[])} obj - The object to convert into tokens - * @returns {lunr.Token[]} - */ -lunr.tokenizer = function (obj) { - if (obj == null || obj == undefined) { - return [] - } - - if (Array.isArray(obj)) { - return obj.map(function (t) { - return new lunr.Token(lunr.utils.asString(t).toLowerCase()) - }) - } - - var str = obj.toString().trim().toLowerCase(), - len = str.length, - tokens = [] - - for (var sliceEnd = 0, sliceStart = 0; sliceEnd <= len; sliceEnd++) { - var char = str.charAt(sliceEnd), - sliceLength = sliceEnd - sliceStart - - if ((char.match(lunr.tokenizer.separator) || sliceEnd == len)) { - - if (sliceLength > 0) { - tokens.push( - new lunr.Token (str.slice(sliceStart, sliceEnd), { - position: [sliceStart, sliceLength], - index: tokens.length - }) - ) - } - - sliceStart = sliceEnd + 1 - } - - } - - return tokens -} - -/** - * The separator used to split a string into tokens. Override this property to change the behaviour of - * `lunr.tokenizer` behaviour when tokenizing strings. By default this splits on whitespace and hyphens. - * - * @static - * @see lunr.tokenizer - */ -lunr.tokenizer.separator = /[\s\-]+/ -/*! - * lunr.Pipeline - * Copyright (C) 2017 Oliver Nightingale - */ - -/** - * lunr.Pipelines maintain an ordered list of functions to be applied to all - * tokens in documents entering the search index and queries being ran against - * the index. - * - * An instance of lunr.Index created with the lunr shortcut will contain a - * pipeline with a stop word filter and an English language stemmer. Extra - * functions can be added before or after either of these functions or these - * default functions can be removed. - * - * When run the pipeline will call each function in turn, passing a token, the - * index of that token in the original list of all tokens and finally a list of - * all the original tokens. - * - * The output of functions in the pipeline will be passed to the next function - * in the pipeline. To exclude a token from entering the index the function - * should return undefined, the rest of the pipeline will not be called with - * this token. - * - * For serialisation of pipelines to work, all functions used in an instance of - * a pipeline should be registered with lunr.Pipeline. Registered functions can - * then be loaded. If trying to load a serialised pipeline that uses functions - * that are not registered an error will be thrown. - * - * If not planning on serialising the pipeline then registering pipeline functions - * is not necessary. - * - * @constructor - */ -lunr.Pipeline = function () { - this._stack = [] -} - -lunr.Pipeline.registeredFunctions = Object.create(null) - -/** - * A pipeline function maps lunr.Token to lunr.Token. A lunr.Token contains the token - * string as well as all known metadata. A pipeline function can mutate the token string - * or mutate (or add) metadata for a given token. - * - * A pipeline function can indicate that the passed token should be discarded by returning - * null. This token will not be passed to any downstream pipeline functions and will not be - * added to the index. - * - * Multiple tokens can be returned by returning an array of tokens. Each token will be passed - * to any downstream pipeline functions and all will returned tokens will be added to the index. - * - * Any number of pipeline functions may be chained together using a lunr.Pipeline. - * - * @interface lunr.PipelineFunction - * @param {lunr.Token} token - A token from the document being processed. - * @param {number} i - The index of this token in the complete list of tokens for this document/field. - * @param {lunr.Token[]} tokens - All tokens for this document/field. - * @returns {(?lunr.Token|lunr.Token[])} - */ - -/** - * Register a function with the pipeline. - * - * Functions that are used in the pipeline should be registered if the pipeline - * needs to be serialised, or a serialised pipeline needs to be loaded. - * - * Registering a function does not add it to a pipeline, functions must still be - * added to instances of the pipeline for them to be used when running a pipeline. - * - * @param {lunr.PipelineFunction} fn - The function to check for. - * @param {String} label - The label to register this function with - */ -lunr.Pipeline.registerFunction = function (fn, label) { - if (label in this.registeredFunctions) { - lunr.utils.warn('Overwriting existing registered function: ' + label) - } - - fn.label = label - lunr.Pipeline.registeredFunctions[fn.label] = fn -} - -/** - * Warns if the function is not registered as a Pipeline function. - * - * @param {lunr.PipelineFunction} fn - The function to check for. - * @private - */ -lunr.Pipeline.warnIfFunctionNotRegistered = function (fn) { - var isRegistered = fn.label && (fn.label in this.registeredFunctions) - - if (!isRegistered) { - lunr.utils.warn('Function is not registered with pipeline. This may cause problems when serialising the index.\n', fn) - } -} - -/** - * Loads a previously serialised pipeline. - * - * All functions to be loaded must already be registered with lunr.Pipeline. - * If any function from the serialised data has not been registered then an - * error will be thrown. - * - * @param {Object} serialised - The serialised pipeline to load. - * @returns {lunr.Pipeline} - */ -lunr.Pipeline.load = function (serialised) { - var pipeline = new lunr.Pipeline - - serialised.forEach(function (fnName) { - var fn = lunr.Pipeline.registeredFunctions[fnName] - - if (fn) { - pipeline.add(fn) - } else { - throw new Error('Cannot load unregistered function: ' + fnName) - } - }) - - return pipeline -} - -/** - * Adds new functions to the end of the pipeline. - * - * Logs a warning if the function has not been registered. - * - * @param {lunr.PipelineFunction[]} functions - Any number of functions to add to the pipeline. - */ -lunr.Pipeline.prototype.add = function () { - var fns = Array.prototype.slice.call(arguments) - - fns.forEach(function (fn) { - lunr.Pipeline.warnIfFunctionNotRegistered(fn) - this._stack.push(fn) - }, this) -} - -/** - * Adds a single function after a function that already exists in the - * pipeline. - * - * Logs a warning if the function has not been registered. - * - * @param {lunr.PipelineFunction} existingFn - A function that already exists in the pipeline. - * @param {lunr.PipelineFunction} newFn - The new function to add to the pipeline. - */ -lunr.Pipeline.prototype.after = function (existingFn, newFn) { - lunr.Pipeline.warnIfFunctionNotRegistered(newFn) - - var pos = this._stack.indexOf(existingFn) - if (pos == -1) { - throw new Error('Cannot find existingFn') - } - - pos = pos + 1 - this._stack.splice(pos, 0, newFn) -} - -/** - * Adds a single function before a function that already exists in the - * pipeline. - * - * Logs a warning if the function has not been registered. - * - * @param {lunr.PipelineFunction} existingFn - A function that already exists in the pipeline. - * @param {lunr.PipelineFunction} newFn - The new function to add to the pipeline. - */ -lunr.Pipeline.prototype.before = function (existingFn, newFn) { - lunr.Pipeline.warnIfFunctionNotRegistered(newFn) - - var pos = this._stack.indexOf(existingFn) - if (pos == -1) { - throw new Error('Cannot find existingFn') - } - - this._stack.splice(pos, 0, newFn) -} - -/** - * Removes a function from the pipeline. - * - * @param {lunr.PipelineFunction} fn The function to remove from the pipeline. - */ -lunr.Pipeline.prototype.remove = function (fn) { - var pos = this._stack.indexOf(fn) - if (pos == -1) { - return - } - - this._stack.splice(pos, 1) -} - -/** - * Runs the current list of functions that make up the pipeline against the - * passed tokens. - * - * @param {Array} tokens The tokens to run through the pipeline. - * @returns {Array} - */ -lunr.Pipeline.prototype.run = function (tokens) { - var stackLength = this._stack.length - - for (var i = 0; i < stackLength; i++) { - var fn = this._stack[i] - - tokens = tokens.reduce(function (memo, token, j) { - var result = fn(token, j, tokens) - - if (result === void 0 || result === '') return memo - - return memo.concat(result) - }, []) - } - - return tokens -} - -/** - * Convenience method for passing a string through a pipeline and getting - * strings out. This method takes care of wrapping the passed string in a - * token and mapping the resulting tokens back to strings. - * - * @param {string} str - The string to pass through the pipeline. - * @returns {string[]} - */ -lunr.Pipeline.prototype.runString = function (str) { - var token = new lunr.Token (str) - - return this.run([token]).map(function (t) { - return t.toString() - }) -} - -/** - * Resets the pipeline by removing any existing processors. - * - */ -lunr.Pipeline.prototype.reset = function () { - this._stack = [] -} - -/** - * Returns a representation of the pipeline ready for serialisation. - * - * Logs a warning if the function has not been registered. - * - * @returns {Array} - */ -lunr.Pipeline.prototype.toJSON = function () { - return this._stack.map(function (fn) { - lunr.Pipeline.warnIfFunctionNotRegistered(fn) - - return fn.label - }) -} -/*! - * lunr.Vector - * Copyright (C) 2017 Oliver Nightingale - */ - -/** - * A vector is used to construct the vector space of documents and queries. These - * vectors support operations to determine the similarity between two documents or - * a document and a query. - * - * Normally no parameters are required for initializing a vector, but in the case of - * loading a previously dumped vector the raw elements can be provided to the constructor. - * - * For performance reasons vectors are implemented with a flat array, where an elements - * index is immediately followed by its value. E.g. [index, value, index, value]. This - * allows the underlying array to be as sparse as possible and still offer decent - * performance when being used for vector calculations. - * - * @constructor - * @param {Number[]} [elements] - The flat list of element index and element value pairs. - */ -lunr.Vector = function (elements) { - this._magnitude = 0 - this.elements = elements || [] -} - - -/** - * Calculates the position within the vector to insert a given index. - * - * This is used internally by insert and upsert. If there are duplicate indexes then - * the position is returned as if the value for that index were to be updated, but it - * is the callers responsibility to check whether there is a duplicate at that index - * - * @param {Number} insertIdx - The index at which the element should be inserted. - * @returns {Number} - */ -lunr.Vector.prototype.positionForIndex = function (index) { - // For an empty vector the tuple can be inserted at the beginning - if (this.elements.length == 0) { - return 0 - } - - var start = 0, - end = this.elements.length / 2, - sliceLength = end - start, - pivotPoint = Math.floor(sliceLength / 2), - pivotIndex = this.elements[pivotPoint * 2] - - while (sliceLength > 1) { - if (pivotIndex < index) { - start = pivotPoint - } - - if (pivotIndex > index) { - end = pivotPoint - } - - if (pivotIndex == index) { - break - } - - sliceLength = end - start - pivotPoint = start + Math.floor(sliceLength / 2) - pivotIndex = this.elements[pivotPoint * 2] - } - - if (pivotIndex == index) { - return pivotPoint * 2 - } - - if (pivotIndex > index) { - return pivotPoint * 2 - } - - if (pivotIndex < index) { - return (pivotPoint + 1) * 2 - } -} - -/** - * Inserts an element at an index within the vector. - * - * Does not allow duplicates, will throw an error if there is already an entry - * for this index. - * - * @param {Number} insertIdx - The index at which the element should be inserted. - * @param {Number} val - The value to be inserted into the vector. - */ -lunr.Vector.prototype.insert = function (insertIdx, val) { - this.upsert(insertIdx, val, function () { - throw "duplicate index" - }) -} - -/** - * Inserts or updates an existing index within the vector. - * - * @param {Number} insertIdx - The index at which the element should be inserted. - * @param {Number} val - The value to be inserted into the vector. - * @param {function} fn - A function that is called for updates, the existing value and the - * requested value are passed as arguments - */ -lunr.Vector.prototype.upsert = function (insertIdx, val, fn) { - this._magnitude = 0 - var position = this.positionForIndex(insertIdx) - - if (this.elements[position] == insertIdx) { - this.elements[position + 1] = fn(this.elements[position + 1], val) - } else { - this.elements.splice(position, 0, insertIdx, val) - } -} - -/** - * Calculates the magnitude of this vector. - * - * @returns {Number} - */ -lunr.Vector.prototype.magnitude = function () { - if (this._magnitude) return this._magnitude - - var sumOfSquares = 0, - elementsLength = this.elements.length - - for (var i = 1; i < elementsLength; i += 2) { - var val = this.elements[i] - sumOfSquares += val * val - } - - return this._magnitude = Math.sqrt(sumOfSquares) -} - -/** - * Calculates the dot product of this vector and another vector. - * - * @param {lunr.Vector} otherVector - The vector to compute the dot product with. - * @returns {Number} - */ -lunr.Vector.prototype.dot = function (otherVector) { - var dotProduct = 0, - a = this.elements, b = otherVector.elements, - aLen = a.length, bLen = b.length, - aVal = 0, bVal = 0, - i = 0, j = 0 - - while (i < aLen && j < bLen) { - aVal = a[i], bVal = b[j] - if (aVal < bVal) { - i += 2 - } else if (aVal > bVal) { - j += 2 - } else if (aVal == bVal) { - dotProduct += a[i + 1] * b[j + 1] - i += 2 - j += 2 - } - } - - return dotProduct -} - -/** - * Calculates the cosine similarity between this vector and another - * vector. - * - * @param {lunr.Vector} otherVector - The other vector to calculate the - * similarity with. - * @returns {Number} - */ -lunr.Vector.prototype.similarity = function (otherVector) { - return this.dot(otherVector) / (this.magnitude() * otherVector.magnitude()) -} - -/** - * Converts the vector to an array of the elements within the vector. - * - * @returns {Number[]} - */ -lunr.Vector.prototype.toArray = function () { - var output = new Array (this.elements.length / 2) - - for (var i = 1, j = 0; i < this.elements.length; i += 2, j++) { - output[j] = this.elements[i] - } - - return output -} - -/** - * A JSON serializable representation of the vector. - * - * @returns {Number[]} - */ -lunr.Vector.prototype.toJSON = function () { - return this.elements -} -/* eslint-disable */ -/*! - * lunr.stemmer - * Copyright (C) 2017 Oliver Nightingale - * Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt - */ - -/** - * lunr.stemmer is an english language stemmer, this is a JavaScript - * implementation of the PorterStemmer taken from http://tartarus.org/~martin - * - * @static - * @implements {lunr.PipelineFunction} - * @param {lunr.Token} token - The string to stem - * @returns {lunr.Token} - * @see {@link lunr.Pipeline} - */ -lunr.stemmer = (function(){ - var step2list = { - "ational" : "ate", - "tional" : "tion", - "enci" : "ence", - "anci" : "ance", - "izer" : "ize", - "bli" : "ble", - "alli" : "al", - "entli" : "ent", - "eli" : "e", - "ousli" : "ous", - "ization" : "ize", - "ation" : "ate", - "ator" : "ate", - "alism" : "al", - "iveness" : "ive", - "fulness" : "ful", - "ousness" : "ous", - "aliti" : "al", - "iviti" : "ive", - "biliti" : "ble", - "logi" : "log" - }, - - step3list = { - "icate" : "ic", - "ative" : "", - "alize" : "al", - "iciti" : "ic", - "ical" : "ic", - "ful" : "", - "ness" : "" - }, - - c = "[^aeiou]", // consonant - v = "[aeiouy]", // vowel - C = c + "[^aeiouy]*", // consonant sequence - V = v + "[aeiou]*", // vowel sequence - - mgr0 = "^(" + C + ")?" + V + C, // [C]VC... is m>0 - meq1 = "^(" + C + ")?" + V + C + "(" + V + ")?$", // [C]VC[V] is m=1 - mgr1 = "^(" + C + ")?" + V + C + V + C, // [C]VCVC... is m>1 - s_v = "^(" + C + ")?" + v; // vowel in stem - - var re_mgr0 = new RegExp(mgr0); - var re_mgr1 = new RegExp(mgr1); - var re_meq1 = new RegExp(meq1); - var re_s_v = new RegExp(s_v); - - var re_1a = /^(.+?)(ss|i)es$/; - var re2_1a = /^(.+?)([^s])s$/; - var re_1b = /^(.+?)eed$/; - var re2_1b = /^(.+?)(ed|ing)$/; - var re_1b_2 = /.$/; - var re2_1b_2 = /(at|bl|iz)$/; - var re3_1b_2 = new RegExp("([^aeiouylsz])\\1$"); - var re4_1b_2 = new RegExp("^" + C + v + "[^aeiouwxy]$"); - - var re_1c = /^(.+?[^aeiou])y$/; - var re_2 = /^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/; - - var re_3 = /^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/; - - var re_4 = /^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/; - var re2_4 = /^(.+?)(s|t)(ion)$/; - - var re_5 = /^(.+?)e$/; - var re_5_1 = /ll$/; - var re3_5 = new RegExp("^" + C + v + "[^aeiouwxy]$"); - - var porterStemmer = function porterStemmer(w) { - var stem, - suffix, - firstch, - re, - re2, - re3, - re4; - - if (w.length < 3) { return w; } - - firstch = w.substr(0,1); - if (firstch == "y") { - w = firstch.toUpperCase() + w.substr(1); - } - - // Step 1a - re = re_1a - re2 = re2_1a; - - if (re.test(w)) { w = w.replace(re,"$1$2"); } - else if (re2.test(w)) { w = w.replace(re2,"$1$2"); } - - // Step 1b - re = re_1b; - re2 = re2_1b; - if (re.test(w)) { - var fp = re.exec(w); - re = re_mgr0; - if (re.test(fp[1])) { - re = re_1b_2; - w = w.replace(re,""); - } - } else if (re2.test(w)) { - var fp = re2.exec(w); - stem = fp[1]; - re2 = re_s_v; - if (re2.test(stem)) { - w = stem; - re2 = re2_1b_2; - re3 = re3_1b_2; - re4 = re4_1b_2; - if (re2.test(w)) { w = w + "e"; } - else if (re3.test(w)) { re = re_1b_2; w = w.replace(re,""); } - else if (re4.test(w)) { w = w + "e"; } - } - } - - // Step 1c - replace suffix y or Y by i if preceded by a non-vowel which is not the first letter of the word (so cry -> cri, by -> by, say -> say) - re = re_1c; - if (re.test(w)) { - var fp = re.exec(w); - stem = fp[1]; - w = stem + "i"; - } - - // Step 2 - re = re_2; - if (re.test(w)) { - var fp = re.exec(w); - stem = fp[1]; - suffix = fp[2]; - re = re_mgr0; - if (re.test(stem)) { - w = stem + step2list[suffix]; - } - } - - // Step 3 - re = re_3; - if (re.test(w)) { - var fp = re.exec(w); - stem = fp[1]; - suffix = fp[2]; - re = re_mgr0; - if (re.test(stem)) { - w = stem + step3list[suffix]; - } - } - - // Step 4 - re = re_4; - re2 = re2_4; - if (re.test(w)) { - var fp = re.exec(w); - stem = fp[1]; - re = re_mgr1; - if (re.test(stem)) { - w = stem; - } - } else if (re2.test(w)) { - var fp = re2.exec(w); - stem = fp[1] + fp[2]; - re2 = re_mgr1; - if (re2.test(stem)) { - w = stem; - } - } - - // Step 5 - re = re_5; - if (re.test(w)) { - var fp = re.exec(w); - stem = fp[1]; - re = re_mgr1; - re2 = re_meq1; - re3 = re3_5; - if (re.test(stem) || (re2.test(stem) && !(re3.test(stem)))) { - w = stem; - } - } - - re = re_5_1; - re2 = re_mgr1; - if (re.test(w) && re2.test(w)) { - re = re_1b_2; - w = w.replace(re,""); - } - - // and turn initial Y back to y - - if (firstch == "y") { - w = firstch.toLowerCase() + w.substr(1); - } - - return w; - }; - - return function (token) { - return token.update(porterStemmer); - } -})(); - -lunr.Pipeline.registerFunction(lunr.stemmer, 'stemmer') -/*! - * lunr.stopWordFilter - * Copyright (C) 2017 Oliver Nightingale - */ - -/** - * lunr.generateStopWordFilter builds a stopWordFilter function from the provided - * list of stop words. - * - * The built in lunr.stopWordFilter is built using this generator and can be used - * to generate custom stopWordFilters for applications or non English languages. - * - * @param {Array} token The token to pass through the filter - * @returns {lunr.PipelineFunction} - * @see lunr.Pipeline - * @see lunr.stopWordFilter - */ -lunr.generateStopWordFilter = function (stopWords) { - var words = stopWords.reduce(function (memo, stopWord) { - memo[stopWord] = stopWord - return memo - }, {}) - - return function (token) { - if (token && words[token.toString()] !== token.toString()) return token - } -} - -/** - * lunr.stopWordFilter is an English language stop word list filter, any words - * contained in the list will not be passed through the filter. - * - * This is intended to be used in the Pipeline. If the token does not pass the - * filter then undefined will be returned. - * - * @implements {lunr.PipelineFunction} - * @params {lunr.Token} token - A token to check for being a stop word. - * @returns {lunr.Token} - * @see {@link lunr.Pipeline} - */ -lunr.stopWordFilter = lunr.generateStopWordFilter([ - 'a', - 'able', - 'about', - 'across', - 'after', - 'all', - 'almost', - 'also', - 'am', - 'among', - 'an', - 'and', - 'any', - 'are', - 'as', - 'at', - 'be', - 'because', - 'been', - 'but', - 'by', - 'can', - 'cannot', - 'could', - 'dear', - 'did', - 'do', - 'does', - 'either', - 'else', - 'ever', - 'every', - 'for', - 'from', - 'get', - 'got', - 'had', - 'has', - 'have', - 'he', - 'her', - 'hers', - 'him', - 'his', - 'how', - 'however', - 'i', - 'if', - 'in', - 'into', - 'is', - 'it', - 'its', - 'just', - 'least', - 'let', - 'like', - 'likely', - 'may', - 'me', - 'might', - 'most', - 'must', - 'my', - 'neither', - 'no', - 'nor', - 'not', - 'of', - 'off', - 'often', - 'on', - 'only', - 'or', - 'other', - 'our', - 'own', - 'rather', - 'said', - 'say', - 'says', - 'she', - 'should', - 'since', - 'so', - 'some', - 'than', - 'that', - 'the', - 'their', - 'them', - 'then', - 'there', - 'these', - 'they', - 'this', - 'tis', - 'to', - 'too', - 'twas', - 'us', - 'wants', - 'was', - 'we', - 'were', - 'what', - 'when', - 'where', - 'which', - 'while', - 'who', - 'whom', - 'why', - 'will', - 'with', - 'would', - 'yet', - 'you', - 'your' -]) - -lunr.Pipeline.registerFunction(lunr.stopWordFilter, 'stopWordFilter') -/*! - * lunr.trimmer - * Copyright (C) 2017 Oliver Nightingale - */ - -/** - * lunr.trimmer is a pipeline function for trimming non word - * characters from the beginning and end of tokens before they - * enter the index. - * - * This implementation may not work correctly for non latin - * characters and should either be removed or adapted for use - * with languages with non-latin characters. - * - * @static - * @implements {lunr.PipelineFunction} - * @param {lunr.Token} token The token to pass through the filter - * @returns {lunr.Token} - * @see lunr.Pipeline - */ -lunr.trimmer = function (token) { - return token.update(function (s) { - return s.replace(/^\W+/, '').replace(/\W+$/, '') - }) -} - -lunr.Pipeline.registerFunction(lunr.trimmer, 'trimmer') -/*! - * lunr.TokenSet - * Copyright (C) 2017 Oliver Nightingale - */ - -/** - * A token set is used to store the unique list of all tokens - * within an index. Token sets are also used to represent an - * incoming query to the index, this query token set and index - * token set are then intersected to find which tokens to look - * up in the inverted index. - * - * A token set can hold multiple tokens, as in the case of the - * index token set, or it can hold a single token as in the - * case of a simple query token set. - * - * Additionally token sets are used to perform wildcard matching. - * Leading, contained and trailing wildcards are supported, and - * from this edit distance matching can also be provided. - * - * Token sets are implemented as a minimal finite state automata, - * where both common prefixes and suffixes are shared between tokens. - * This helps to reduce the space used for storing the token set. - * - * @constructor - */ -lunr.TokenSet = function () { - this.final = false - this.edges = {} - this.id = lunr.TokenSet._nextId - lunr.TokenSet._nextId += 1 -} - -/** - * Keeps track of the next, auto increment, identifier to assign - * to a new tokenSet. - * - * TokenSets require a unique identifier to be correctly minimised. - * - * @private - */ -lunr.TokenSet._nextId = 1 - -/** - * Creates a TokenSet instance from the given sorted array of words. - * - * @param {String[]} arr - A sorted array of strings to create the set from. - * @returns {lunr.TokenSet} - * @throws Will throw an error if the input array is not sorted. - */ -lunr.TokenSet.fromArray = function (arr) { - var builder = new lunr.TokenSet.Builder - - for (var i = 0, len = arr.length; i < len; i++) { - builder.insert(arr[i]) - } - - builder.finish() - return builder.root -} - -/** - * Creates a token set from a query clause. - * - * @private - * @param {Object} clause - A single clause from lunr.Query. - * @param {string} clause.term - The query clause term. - * @param {number} [clause.editDistance] - The optional edit distance for the term. - * @returns {lunr.TokenSet} - */ -lunr.TokenSet.fromClause = function (clause) { - if ('editDistance' in clause) { - return lunr.TokenSet.fromFuzzyString(clause.term, clause.editDistance) - } else { - return lunr.TokenSet.fromString(clause.term) - } -} - -/** - * Creates a token set representing a single string with a specified - * edit distance. - * - * Insertions, deletions, substitutions and transpositions are each - * treated as an edit distance of 1. - * - * Increasing the allowed edit distance will have a dramatic impact - * on the performance of both creating and intersecting these TokenSets. - * It is advised to keep the edit distance less than 3. - * - * @param {string} str - The string to create the token set from. - * @param {number} editDistance - The allowed edit distance to match. - * @returns {lunr.Vector} - */ -lunr.TokenSet.fromFuzzyString = function (str, editDistance) { - var root = new lunr.TokenSet - - var stack = [{ - node: root, - editsRemaining: editDistance, - str: str - }] - - while (stack.length) { - var frame = stack.pop() - - // no edit - if (frame.str.length > 0) { - var char = frame.str.charAt(0), - noEditNode - - if (char in frame.node.edges) { - noEditNode = frame.node.edges[char] - } else { - noEditNode = new lunr.TokenSet - frame.node.edges[char] = noEditNode - } - - if (frame.str.length == 1) { - noEditNode.final = true - } else { - stack.push({ - node: noEditNode, - editsRemaining: frame.editsRemaining, - str: frame.str.slice(1) - }) - } - } - - // deletion - // can only do a deletion if we have enough edits remaining - // and if there are characters left to delete in the string - if (frame.editsRemaining > 0 && frame.str.length > 1) { - var char = frame.str.charAt(1), - deletionNode - - if (char in frame.node.edges) { - deletionNode = frame.node.edges[char] - } else { - deletionNode = new lunr.TokenSet - frame.node.edges[char] = deletionNode - } - - if (frame.str.length <= 2) { - deletionNode.final = true - } else { - stack.push({ - node: deletionNode, - editsRemaining: frame.editsRemaining - 1, - str: frame.str.slice(2) - }) - } - } - - // deletion - // just removing the last character from the str - if (frame.editsRemaining > 0 && frame.str.length == 1) { - frame.node.final = true - } - - // substitution - // can only do a substitution if we have enough edits remaining - // and if there are characters left to substitute - if (frame.editsRemaining > 0 && frame.str.length >= 1) { - if ("*" in frame.node.edges) { - var substitutionNode = frame.node.edges["*"] - } else { - var substitutionNode = new lunr.TokenSet - frame.node.edges["*"] = substitutionNode - } - - if (frame.str.length == 1) { - substitutionNode.final = true - } else { - stack.push({ - node: substitutionNode, - editsRemaining: frame.editsRemaining - 1, - str: frame.str.slice(1) - }) - } - } - - // insertion - // can only do insertion if there are edits remaining - if (frame.editsRemaining > 0) { - if ("*" in frame.node.edges) { - var insertionNode = frame.node.edges["*"] - } else { - var insertionNode = new lunr.TokenSet - frame.node.edges["*"] = insertionNode - } - - if (frame.str.length == 0) { - insertionNode.final = true - } else { - stack.push({ - node: insertionNode, - editsRemaining: frame.editsRemaining - 1, - str: frame.str - }) - } - } - - // transposition - // can only do a transposition if there are edits remaining - // and there are enough characters to transpose - if (frame.editsRemaining > 0 && frame.str.length > 1) { - var charA = frame.str.charAt(0), - charB = frame.str.charAt(1), - transposeNode - - if (charB in frame.node.edges) { - transposeNode = frame.node.edges[charB] - } else { - transposeNode = new lunr.TokenSet - frame.node.edges[charB] = transposeNode - } - - if (frame.str.length == 1) { - transposeNode.final = true - } else { - stack.push({ - node: transposeNode, - editsRemaining: frame.editsRemaining - 1, - str: charA + frame.str.slice(2) - }) - } - } - } - - return root -} - -/** - * Creates a TokenSet from a string. - * - * The string may contain one or more wildcard characters (*) - * that will allow wildcard matching when intersecting with - * another TokenSet. - * - * @param {string} str - The string to create a TokenSet from. - * @returns {lunr.TokenSet} - */ -lunr.TokenSet.fromString = function (str) { - var node = new lunr.TokenSet, - root = node, - wildcardFound = false - - /* - * Iterates through all characters within the passed string - * appending a node for each character. - * - * As soon as a wildcard character is found then a self - * referencing edge is introduced to continually match - * any number of any characters. - */ - for (var i = 0, len = str.length; i < len; i++) { - var char = str[i], - final = (i == len - 1) - - if (char == "*") { - wildcardFound = true - node.edges[char] = node - node.final = final - - } else { - var next = new lunr.TokenSet - next.final = final - - node.edges[char] = next - node = next - - // TODO: is this needed anymore? - if (wildcardFound) { - node.edges["*"] = root - } - } - } - - return root -} - -/** - * Converts this TokenSet into an array of strings - * contained within the TokenSet. - * - * @returns {string[]} - */ -lunr.TokenSet.prototype.toArray = function () { - var words = [] - - var stack = [{ - prefix: "", - node: this - }] - - while (stack.length) { - var frame = stack.pop(), - edges = Object.keys(frame.node.edges), - len = edges.length - - if (frame.node.final) { - words.push(frame.prefix) - } - - for (var i = 0; i < len; i++) { - var edge = edges[i] - - stack.push({ - prefix: frame.prefix.concat(edge), - node: frame.node.edges[edge] - }) - } - } - - return words -} - -/** - * Generates a string representation of a TokenSet. - * - * This is intended to allow TokenSets to be used as keys - * in objects, largely to aid the construction and minimisation - * of a TokenSet. As such it is not designed to be a human - * friendly representation of the TokenSet. - * - * @returns {string} - */ -lunr.TokenSet.prototype.toString = function () { - // NOTE: Using Object.keys here as this.edges is very likely - // to enter 'hash-mode' with many keys being added - // - // avoiding a for-in loop here as it leads to the function - // being de-optimised (at least in V8). From some simple - // benchmarks the performance is comparable, but allowing - // V8 to optimize may mean easy performance wins in the future. - - if (this._str) { - return this._str - } - - var str = this.final ? '1' : '0', - labels = Object.keys(this.edges).sort(), - len = labels.length - - for (var i = 0; i < len; i++) { - var label = labels[i], - node = this.edges[label] - - str = str + label + node.id - } - - return str -} - -/** - * Returns a new TokenSet that is the intersection of - * this TokenSet and the passed TokenSet. - * - * This intersection will take into account any wildcards - * contained within the TokenSet. - * - * @param {lunr.TokenSet} b - An other TokenSet to intersect with. - * @returns {lunr.TokenSet} - */ -lunr.TokenSet.prototype.intersect = function (b) { - var output = new lunr.TokenSet, - frame = undefined - - var stack = [{ - qNode: b, - output: output, - node: this - }] - - while (stack.length) { - frame = stack.pop() - - // NOTE: As with the #toString method, we are using - // Object.keys and a for loop instead of a for-in loop - // as both of these objects enter 'hash' mode, causing - // the function to be de-optimised in V8 - var qEdges = Object.keys(frame.qNode.edges), - qLen = qEdges.length, - nEdges = Object.keys(frame.node.edges), - nLen = nEdges.length - - for (var q = 0; q < qLen; q++) { - var qEdge = qEdges[q] - - for (var n = 0; n < nLen; n++) { - var nEdge = nEdges[n] - - if (nEdge == qEdge || qEdge == '*') { - var node = frame.node.edges[nEdge], - qNode = frame.qNode.edges[qEdge], - final = node.final && qNode.final, - next = undefined - - if (nEdge in frame.output.edges) { - // an edge already exists for this character - // no need to create a new node, just set the finality - // bit unless this node is already final - next = frame.output.edges[nEdge] - next.final = next.final || final - - } else { - // no edge exists yet, must create one - // set the finality bit and insert it - // into the output - next = new lunr.TokenSet - next.final = final - frame.output.edges[nEdge] = next - } - - stack.push({ - qNode: qNode, - output: next, - node: node - }) - } - } - } - } - - return output -} -lunr.TokenSet.Builder = function () { - this.previousWord = "" - this.root = new lunr.TokenSet - this.uncheckedNodes = [] - this.minimizedNodes = {} -} - -lunr.TokenSet.Builder.prototype.insert = function (word) { - var node, - commonPrefix = 0 - - if (word < this.previousWord) { - throw new Error ("Out of order word insertion") - } - - for (var i = 0; i < word.length && i < this.previousWord.length; i++) { - if (word[i] != this.previousWord[i]) break - commonPrefix++ - } - - this.minimize(commonPrefix) - - if (this.uncheckedNodes.length == 0) { - node = this.root - } else { - node = this.uncheckedNodes[this.uncheckedNodes.length - 1].child - } - - for (var i = commonPrefix; i < word.length; i++) { - var nextNode = new lunr.TokenSet, - char = word[i] - - node.edges[char] = nextNode - - this.uncheckedNodes.push({ - parent: node, - char: char, - child: nextNode - }) - - node = nextNode - } - - node.final = true - this.previousWord = word -} - -lunr.TokenSet.Builder.prototype.finish = function () { - this.minimize(0) -} - -lunr.TokenSet.Builder.prototype.minimize = function (downTo) { - for (var i = this.uncheckedNodes.length - 1; i >= downTo; i--) { - var node = this.uncheckedNodes[i], - childKey = node.child.toString() - - if (childKey in this.minimizedNodes) { - node.parent.edges[node.char] = this.minimizedNodes[childKey] - } else { - // Cache the key for this node since - // we know it can't change anymore - node.child._str = childKey - - this.minimizedNodes[childKey] = node.child - } - - this.uncheckedNodes.pop() - } -} -/*! - * lunr.Index - * Copyright (C) 2017 Oliver Nightingale - */ - -/** - * An index contains the built index of all documents and provides a query interface - * to the index. - * - * Usually instances of lunr.Index will not be created using this constructor, instead - * lunr.Builder should be used to construct new indexes, or lunr.Index.load should be - * used to load previously built and serialized indexes. - * - * @constructor - * @param {Object} attrs - The attributes of the built search index. - * @param {Object} attrs.invertedIndex - An index of term/field to document reference. - * @param {Object} attrs.documentVectors - Document vectors keyed by document reference. - * @param {lunr.TokenSet} attrs.tokenSet - An set of all corpus tokens. - * @param {string[]} attrs.fields - The names of indexed document fields. - * @param {lunr.Pipeline} attrs.pipeline - The pipeline to use for search terms. - */ -lunr.Index = function (attrs) { - this.invertedIndex = attrs.invertedIndex - this.fieldVectors = attrs.fieldVectors - this.tokenSet = attrs.tokenSet - this.fields = attrs.fields - this.pipeline = attrs.pipeline -} - -/** - * A result contains details of a document matching a search query. - * @typedef {Object} lunr.Index~Result - * @property {string} ref - The reference of the document this result represents. - * @property {number} score - A number between 0 and 1 representing how similar this document is to the query. - * @property {lunr.MatchData} matchData - Contains metadata about this match including which term(s) caused the match. - */ - -/** - * Although lunr provides the ability to create queries using lunr.Query, it also provides a simple - * query language which itself is parsed into an instance of lunr.Query. - * - * For programmatically building queries it is advised to directly use lunr.Query, the query language - * is best used for human entered text rather than program generated text. - * - * At its simplest queries can just be a single term, e.g. `hello`, multiple terms are also supported - * and will be combined with OR, e.g `hello world` will match documents that contain either 'hello' - * or 'world', though those that contain both will rank higher in the results. - * - * Wildcards can be included in terms to match one or more unspecified characters, these wildcards can - * be inserted anywhere within the term, and more than one wildcard can exist in a single term. Adding - * wildcards will increase the number of documents that will be found but can also have a negative - * impact on query performance, especially with wildcards at the beginning of a term. - * - * Terms can be restricted to specific fields, e.g. `title:hello`, only documents with the term - * hello in the title field will match this query. Using a field not present in the index will lead - * to an error being thrown. - * - * Modifiers can also be added to terms, lunr supports edit distance and boost modifiers on terms. A term - * boost will make documents matching that term score higher, e.g. `foo^5`. Edit distance is also supported - * to provide fuzzy matching, e.g. 'hello~2' will match documents with hello with an edit distance of 2. - * Avoid large values for edit distance to improve query performance. - * - * To escape special characters the backslash character '\' can be used, this allows searches to include - * characters that would normally be considered modifiers, e.g. `foo\~2` will search for a term "foo~2" instead - * of attempting to apply a boost of 2 to the search term "foo". - * - * @typedef {string} lunr.Index~QueryString - * @example Simple single term query - * hello - * @example Multiple term query - * hello world - * @example term scoped to a field - * title:hello - * @example term with a boost of 10 - * hello^10 - * @example term with an edit distance of 2 - * hello~2 - */ - -/** - * Performs a search against the index using lunr query syntax. - * - * Results will be returned sorted by their score, the most relevant results - * will be returned first. - * - * For more programmatic querying use lunr.Index#query. - * - * @param {lunr.Index~QueryString} queryString - A string containing a lunr query. - * @throws {lunr.QueryParseError} If the passed query string cannot be parsed. - * @returns {lunr.Index~Result[]} - */ -lunr.Index.prototype.search = function (queryString) { - return this.query(function (query) { - var parser = new lunr.QueryParser(queryString, query) - parser.parse() - }) -} - -/** - * A query builder callback provides a query object to be used to express - * the query to perform on the index. - * - * @callback lunr.Index~queryBuilder - * @param {lunr.Query} query - The query object to build up. - * @this lunr.Query - */ - -/** - * Performs a query against the index using the yielded lunr.Query object. - * - * If performing programmatic queries against the index, this method is preferred - * over lunr.Index#search so as to avoid the additional query parsing overhead. - * - * A query object is yielded to the supplied function which should be used to - * express the query to be run against the index. - * - * Note that although this function takes a callback parameter it is _not_ an - * asynchronous operation, the callback is just yielded a query object to be - * customized. - * - * @param {lunr.Index~queryBuilder} fn - A function that is used to build the query. - * @returns {lunr.Index~Result[]} - */ -lunr.Index.prototype.query = function (fn) { - // for each query clause - // * process terms - // * expand terms from token set - // * find matching documents and metadata - // * get document vectors - // * score documents - - var query = new lunr.Query(this.fields), - matchingFields = Object.create(null), - queryVectors = Object.create(null) - - fn.call(query, query) - - for (var i = 0; i < query.clauses.length; i++) { - /* - * Unless the pipeline has been disabled for this term, which is - * the case for terms with wildcards, we need to pass the clause - * term through the search pipeline. A pipeline returns an array - * of processed terms. Pipeline functions may expand the passed - * term, which means we may end up performing multiple index lookups - * for a single query term. - */ - var clause = query.clauses[i], - terms = null - - if (clause.usePipeline) { - terms = this.pipeline.runString(clause.term) - } else { - terms = [clause.term] - } - - for (var m = 0; m < terms.length; m++) { - var term = terms[m] - - /* - * Each term returned from the pipeline needs to use the same query - * clause object, e.g. the same boost and or edit distance. The - * simplest way to do this is to re-use the clause object but mutate - * its term property. - */ - clause.term = term - - /* - * From the term in the clause we create a token set which will then - * be used to intersect the indexes token set to get a list of terms - * to lookup in the inverted index - */ - var termTokenSet = lunr.TokenSet.fromClause(clause), - expandedTerms = this.tokenSet.intersect(termTokenSet).toArray() - - for (var j = 0; j < expandedTerms.length; j++) { - /* - * For each term get the posting and termIndex, this is required for - * building the query vector. - */ - var expandedTerm = expandedTerms[j], - posting = this.invertedIndex[expandedTerm], - termIndex = posting._index - - for (var k = 0; k < clause.fields.length; k++) { - /* - * For each field that this query term is scoped by (by default - * all fields are in scope) we need to get all the document refs - * that have this term in that field. - * - * The posting is the entry in the invertedIndex for the matching - * term from above. - */ - var field = clause.fields[k], - fieldPosting = posting[field], - matchingDocumentRefs = Object.keys(fieldPosting) - - /* - * To support field level boosts a query vector is created per - * field. This vector is populated using the termIndex found for - * the term and a unit value with the appropriate boost applied. - * - * If the query vector for this field does not exist yet it needs - * to be created. - */ - if (!(field in queryVectors)) { - queryVectors[field] = new lunr.Vector - } - - /* - * Using upsert because there could already be an entry in the vector - * for the term we are working with. In that case we just add the scores - * together. - */ - queryVectors[field].upsert(termIndex, 1 * clause.boost, function (a, b) { return a + b }) - - for (var l = 0; l < matchingDocumentRefs.length; l++) { - /* - * All metadata for this term/field/document triple - * are then extracted and collected into an instance - * of lunr.MatchData ready to be returned in the query - * results - */ - var matchingDocumentRef = matchingDocumentRefs[l], - matchingFieldRef = new lunr.FieldRef (matchingDocumentRef, field), - documentMetadata, matchData - - documentMetadata = fieldPosting[matchingDocumentRef] - matchData = new lunr.MatchData (expandedTerm, field, documentMetadata) - - if (matchingFieldRef in matchingFields) { - matchingFields[matchingFieldRef].combine(matchData) - } else { - matchingFields[matchingFieldRef] = matchData - } - - } - } - } - } - } - - var matchingFieldRefs = Object.keys(matchingFields), - results = {} - - for (var i = 0; i < matchingFieldRefs.length; i++) { - /* - * Currently we have document fields that match the query, but we - * need to return documents. The matchData and scores are combined - * from multiple fields belonging to the same document. - * - * Scores are calculated by field, using the query vectors created - * above, and combined into a final document score using addition. - */ - var fieldRef = lunr.FieldRef.fromString(matchingFieldRefs[i]), - docRef = fieldRef.docRef, - fieldVector = this.fieldVectors[fieldRef], - score = queryVectors[fieldRef.fieldName].similarity(fieldVector) - - if (docRef in results) { - results[docRef].score += score - results[docRef].matchData.combine(matchingFields[fieldRef]) - } else { - results[docRef] = { - ref: docRef, - score: score, - matchData: matchingFields[fieldRef] - } - } - } - - /* - * The results object needs to be converted into a list - * of results, sorted by score before being returned. - */ - return Object.keys(results) - .map(function (key) { - return results[key] - }) - .sort(function (a, b) { - return b.score - a.score - }) -} - -/** - * Prepares the index for JSON serialization. - * - * The schema for this JSON blob will be described in a - * separate JSON schema file. - * - * @returns {Object} - */ -lunr.Index.prototype.toJSON = function () { - var invertedIndex = Object.keys(this.invertedIndex) - .sort() - .map(function (term) { - return [term, this.invertedIndex[term]] - }, this) - - var fieldVectors = Object.keys(this.fieldVectors) - .map(function (ref) { - return [ref, this.fieldVectors[ref].toJSON()] - }, this) - - return { - version: lunr.version, - fields: this.fields, - fieldVectors: fieldVectors, - invertedIndex: invertedIndex, - pipeline: this.pipeline.toJSON() - } -} - -/** - * Loads a previously serialized lunr.Index - * - * @param {Object} serializedIndex - A previously serialized lunr.Index - * @returns {lunr.Index} - */ -lunr.Index.load = function (serializedIndex) { - var attrs = {}, - fieldVectors = {}, - serializedVectors = serializedIndex.fieldVectors, - invertedIndex = {}, - serializedInvertedIndex = serializedIndex.invertedIndex, - tokenSetBuilder = new lunr.TokenSet.Builder, - pipeline = lunr.Pipeline.load(serializedIndex.pipeline) - - if (serializedIndex.version != lunr.version) { - lunr.utils.warn("Version mismatch when loading serialised index. Current version of lunr '" + lunr.version + "' does not match serialized index '" + serializedIndex.version + "'") - } - - for (var i = 0; i < serializedVectors.length; i++) { - var tuple = serializedVectors[i], - ref = tuple[0], - elements = tuple[1] - - fieldVectors[ref] = new lunr.Vector(elements) - } - - for (var i = 0; i < serializedInvertedIndex.length; i++) { - var tuple = serializedInvertedIndex[i], - term = tuple[0], - posting = tuple[1] - - tokenSetBuilder.insert(term) - invertedIndex[term] = posting - } - - tokenSetBuilder.finish() - - attrs.fields = serializedIndex.fields - - attrs.fieldVectors = fieldVectors - attrs.invertedIndex = invertedIndex - attrs.tokenSet = tokenSetBuilder.root - attrs.pipeline = pipeline - - return new lunr.Index(attrs) -} -/*! - * lunr.Builder - * Copyright (C) 2017 Oliver Nightingale - */ - -/** - * lunr.Builder performs indexing on a set of documents and - * returns instances of lunr.Index ready for querying. - * - * All configuration of the index is done via the builder, the - * fields to index, the document reference, the text processing - * pipeline and document scoring parameters are all set on the - * builder before indexing. - * - * @constructor - * @property {string} _ref - Internal reference to the document reference field. - * @property {string[]} _fields - Internal reference to the document fields to index. - * @property {object} invertedIndex - The inverted index maps terms to document fields. - * @property {object} documentTermFrequencies - Keeps track of document term frequencies. - * @property {object} documentLengths - Keeps track of the length of documents added to the index. - * @property {lunr.tokenizer} tokenizer - Function for splitting strings into tokens for indexing. - * @property {lunr.Pipeline} pipeline - The pipeline performs text processing on tokens before indexing. - * @property {lunr.Pipeline} searchPipeline - A pipeline for processing search terms before querying the index. - * @property {number} documentCount - Keeps track of the total number of documents indexed. - * @property {number} _b - A parameter to control field length normalization, setting this to 0 disabled normalization, 1 fully normalizes field lengths, the default value is 0.75. - * @property {number} _k1 - A parameter to control how quickly an increase in term frequency results in term frequency saturation, the default value is 1.2. - * @property {number} termIndex - A counter incremented for each unique term, used to identify a terms position in the vector space. - * @property {array} metadataWhitelist - A list of metadata keys that have been whitelisted for entry in the index. - */ -lunr.Builder = function () { - this._ref = "id" - this._fields = [] - this.invertedIndex = Object.create(null) - this.fieldTermFrequencies = {} - this.fieldLengths = {} - this.tokenizer = lunr.tokenizer - this.pipeline = new lunr.Pipeline - this.searchPipeline = new lunr.Pipeline - this.documentCount = 0 - this._b = 0.75 - this._k1 = 1.2 - this.termIndex = 0 - this.metadataWhitelist = [] -} - -/** - * Sets the document field used as the document reference. Every document must have this field. - * The type of this field in the document should be a string, if it is not a string it will be - * coerced into a string by calling toString. - * - * The default ref is 'id'. - * - * The ref should _not_ be changed during indexing, it should be set before any documents are - * added to the index. Changing it during indexing can lead to inconsistent results. - * - * @param {string} ref - The name of the reference field in the document. - */ -lunr.Builder.prototype.ref = function (ref) { - this._ref = ref -} - -/** - * Adds a field to the list of document fields that will be indexed. Every document being - * indexed should have this field. Null values for this field in indexed documents will - * not cause errors but will limit the chance of that document being retrieved by searches. - * - * All fields should be added before adding documents to the index. Adding fields after - * a document has been indexed will have no effect on already indexed documents. - * - * @param {string} field - The name of a field to index in all documents. - */ -lunr.Builder.prototype.field = function (field) { - this._fields.push(field) -} - -/** - * A parameter to tune the amount of field length normalisation that is applied when - * calculating relevance scores. A value of 0 will completely disable any normalisation - * and a value of 1 will fully normalise field lengths. The default is 0.75. Values of b - * will be clamped to the range 0 - 1. - * - * @param {number} number - The value to set for this tuning parameter. - */ -lunr.Builder.prototype.b = function (number) { - if (number < 0) { - this._b = 0 - } else if (number > 1) { - this._b = 1 - } else { - this._b = number - } -} - -/** - * A parameter that controls the speed at which a rise in term frequency results in term - * frequency saturation. The default value is 1.2. Setting this to a higher value will give - * slower saturation levels, a lower value will result in quicker saturation. - * - * @param {number} number - The value to set for this tuning parameter. - */ -lunr.Builder.prototype.k1 = function (number) { - this._k1 = number -} - -/** - * Adds a document to the index. - * - * Before adding fields to the index the index should have been fully setup, with the document - * ref and all fields to index already having been specified. - * - * The document must have a field name as specified by the ref (by default this is 'id') and - * it should have all fields defined for indexing, though null or undefined values will not - * cause errors. - * - * @param {object} doc - The document to add to the index. - */ -lunr.Builder.prototype.add = function (doc) { - var docRef = doc[this._ref] - - this.documentCount += 1 - - for (var i = 0; i < this._fields.length; i++) { - var fieldName = this._fields[i], - field = doc[fieldName], - tokens = this.tokenizer(field), - terms = this.pipeline.run(tokens), - fieldRef = new lunr.FieldRef (docRef, fieldName), - fieldTerms = Object.create(null) - - this.fieldTermFrequencies[fieldRef] = fieldTerms - this.fieldLengths[fieldRef] = 0 - - // store the length of this field for this document - this.fieldLengths[fieldRef] += terms.length - - // calculate term frequencies for this field - for (var j = 0; j < terms.length; j++) { - var term = terms[j] - - if (fieldTerms[term] == undefined) { - fieldTerms[term] = 0 - } - - fieldTerms[term] += 1 - - // add to inverted index - // create an initial posting if one doesn't exist - if (this.invertedIndex[term] == undefined) { - var posting = Object.create(null) - posting["_index"] = this.termIndex - this.termIndex += 1 - - for (var k = 0; k < this._fields.length; k++) { - posting[this._fields[k]] = Object.create(null) - } - - this.invertedIndex[term] = posting - } - - // add an entry for this term/fieldName/docRef to the invertedIndex - if (this.invertedIndex[term][fieldName][docRef] == undefined) { - this.invertedIndex[term][fieldName][docRef] = Object.create(null) - } - - // store all whitelisted metadata about this token in the - // inverted index - for (var l = 0; l < this.metadataWhitelist.length; l++) { - var metadataKey = this.metadataWhitelist[l], - metadata = term.metadata[metadataKey] - - if (this.invertedIndex[term][fieldName][docRef][metadataKey] == undefined) { - this.invertedIndex[term][fieldName][docRef][metadataKey] = [] - } - - this.invertedIndex[term][fieldName][docRef][metadataKey].push(metadata) - } - } - - } -} - -/** - * Calculates the average document length for this index - * - * @private - */ -lunr.Builder.prototype.calculateAverageFieldLengths = function () { - - var fieldRefs = Object.keys(this.fieldLengths), - numberOfFields = fieldRefs.length, - accumulator = {}, - documentsWithField = {} - - for (var i = 0; i < numberOfFields; i++) { - var fieldRef = lunr.FieldRef.fromString(fieldRefs[i]), - field = fieldRef.fieldName - - documentsWithField[field] || (documentsWithField[field] = 0) - documentsWithField[field] += 1 - - accumulator[field] || (accumulator[field] = 0) - accumulator[field] += this.fieldLengths[fieldRef] - } - - for (var i = 0; i < this._fields.length; i++) { - var field = this._fields[i] - accumulator[field] = accumulator[field] / documentsWithField[field] - } - - this.averageFieldLength = accumulator -} - -/** - * Builds a vector space model of every document using lunr.Vector - * - * @private - */ -lunr.Builder.prototype.createFieldVectors = function () { - var fieldVectors = {}, - fieldRefs = Object.keys(this.fieldTermFrequencies), - fieldRefsLength = fieldRefs.length - - for (var i = 0; i < fieldRefsLength; i++) { - var fieldRef = lunr.FieldRef.fromString(fieldRefs[i]), - field = fieldRef.fieldName, - fieldLength = this.fieldLengths[fieldRef], - fieldVector = new lunr.Vector, - termFrequencies = this.fieldTermFrequencies[fieldRef], - terms = Object.keys(termFrequencies), - termsLength = terms.length - - for (var j = 0; j < termsLength; j++) { - var term = terms[j], - tf = termFrequencies[term], - termIndex = this.invertedIndex[term]._index, - idf = lunr.idf(this.invertedIndex[term], this.documentCount), - score = idf * ((this._k1 + 1) * tf) / (this._k1 * (1 - this._b + this._b * (fieldLength / this.averageFieldLength[field])) + tf), - scoreWithPrecision = Math.round(score * 1000) / 1000 - // Converts 1.23456789 to 1.234. - // Reducing the precision so that the vectors take up less - // space when serialised. Doing it now so that they behave - // the same before and after serialisation. Also, this is - // the fastest approach to reducing a number's precision in - // JavaScript. - - fieldVector.insert(termIndex, scoreWithPrecision) - } - - fieldVectors[fieldRef] = fieldVector - } - - this.fieldVectors = fieldVectors -} - -/** - * Creates a token set of all tokens in the index using lunr.TokenSet - * - * @private - */ -lunr.Builder.prototype.createTokenSet = function () { - this.tokenSet = lunr.TokenSet.fromArray( - Object.keys(this.invertedIndex).sort() - ) -} - -/** - * Builds the index, creating an instance of lunr.Index. - * - * This completes the indexing process and should only be called - * once all documents have been added to the index. - * - * @private - * @returns {lunr.Index} - */ -lunr.Builder.prototype.build = function () { - this.calculateAverageFieldLengths() - this.createFieldVectors() - this.createTokenSet() - - return new lunr.Index({ - invertedIndex: this.invertedIndex, - fieldVectors: this.fieldVectors, - tokenSet: this.tokenSet, - fields: this._fields, - pipeline: this.searchPipeline - }) -} - -/** - * Applies a plugin to the index builder. - * - * A plugin is a function that is called with the index builder as its context. - * Plugins can be used to customise or extend the behaviour of the index - * in some way. A plugin is just a function, that encapsulated the custom - * behaviour that should be applied when building the index. - * - * The plugin function will be called with the index builder as its argument, additional - * arguments can also be passed when calling use. The function will be called - * with the index builder as its context. - * - * @param {Function} plugin The plugin to apply. - */ -lunr.Builder.prototype.use = function (fn) { - var args = Array.prototype.slice.call(arguments, 1) - args.unshift(this) - fn.apply(this, args) -} -/** - * Contains and collects metadata about a matching document. - * A single instance of lunr.MatchData is returned as part of every - * lunr.Index~Result. - * - * @constructor - * @param {string} term - The term this match data is associated with - * @param {string} field - The field in which the term was found - * @param {object} metadata - The metadata recorded about this term in this field - * @property {object} metadata - A cloned collection of metadata associated with this document. - * @see {@link lunr.Index~Result} - */ -lunr.MatchData = function (term, field, metadata) { - var clonedMetadata = Object.create(null), - metadataKeys = Object.keys(metadata) - - // Cloning the metadata to prevent the original - // being mutated during match data combination. - // Metadata is kept in an array within the inverted - // index so cloning the data can be done with - // Array#slice - for (var i = 0; i < metadataKeys.length; i++) { - var key = metadataKeys[i] - clonedMetadata[key] = metadata[key].slice() - } - - this.metadata = Object.create(null) - this.metadata[term] = Object.create(null) - this.metadata[term][field] = clonedMetadata -} - -/** - * An instance of lunr.MatchData will be created for every term that matches a - * document. However only one instance is required in a lunr.Index~Result. This - * method combines metadata from another instance of lunr.MatchData with this - * objects metadata. - * - * @param {lunr.MatchData} otherMatchData - Another instance of match data to merge with this one. - * @see {@link lunr.Index~Result} - */ -lunr.MatchData.prototype.combine = function (otherMatchData) { - var terms = Object.keys(otherMatchData.metadata) - - for (var i = 0; i < terms.length; i++) { - var term = terms[i], - fields = Object.keys(otherMatchData.metadata[term]) - - if (this.metadata[term] == undefined) { - this.metadata[term] = Object.create(null) - } - - for (var j = 0; j < fields.length; j++) { - var field = fields[j], - keys = Object.keys(otherMatchData.metadata[term][field]) - - if (this.metadata[term][field] == undefined) { - this.metadata[term][field] = Object.create(null) - } - - for (var k = 0; k < keys.length; k++) { - var key = keys[k] - - if (this.metadata[term][field][key] == undefined) { - this.metadata[term][field][key] = otherMatchData.metadata[term][field][key] - } else { - this.metadata[term][field][key] = this.metadata[term][field][key].concat(otherMatchData.metadata[term][field][key]) - } - - } - } - } -} -/** - * A lunr.Query provides a programmatic way of defining queries to be performed - * against a {@link lunr.Index}. - * - * Prefer constructing a lunr.Query using the {@link lunr.Index#query} method - * so the query object is pre-initialized with the right index fields. - * - * @constructor - * @property {lunr.Query~Clause[]} clauses - An array of query clauses. - * @property {string[]} allFields - An array of all available fields in a lunr.Index. - */ -lunr.Query = function (allFields) { - this.clauses = [] - this.allFields = allFields -} - -/** - * Constants for indicating what kind of automatic wildcard insertion will be used when constructing a query clause. - * - * This allows wildcards to be added to the beginning and end of a term without having to manually do any string - * concatenation. - * - * The wildcard constants can be bitwise combined to select both leading and trailing wildcards. - * - * @constant - * @default - * @property {number} wildcard.NONE - The term will have no wildcards inserted, this is the default behaviour - * @property {number} wildcard.LEADING - Prepend the term with a wildcard, unless a leading wildcard already exists - * @property {number} wildcard.TRAILING - Append a wildcard to the term, unless a trailing wildcard already exists - * @see lunr.Query~Clause - * @see lunr.Query#clause - * @see lunr.Query#term - * @example query term with trailing wildcard - * query.term('foo', { wildcard: lunr.Query.wildcard.TRAILING }) - * @example query term with leading and trailing wildcard - * query.term('foo', { - * wildcard: lunr.Query.wildcard.LEADING | lunr.Query.wildcard.TRAILING - * }) - */ -lunr.Query.wildcard = new String ("*") -lunr.Query.wildcard.NONE = 0 -lunr.Query.wildcard.LEADING = 1 -lunr.Query.wildcard.TRAILING = 2 - -/** - * A single clause in a {@link lunr.Query} contains a term and details on how to - * match that term against a {@link lunr.Index}. - * - * @typedef {Object} lunr.Query~Clause - * @property {string[]} fields - The fields in an index this clause should be matched against. - * @property {number} [boost=1] - Any boost that should be applied when matching this clause. - * @property {number} [editDistance] - Whether the term should have fuzzy matching applied, and how fuzzy the match should be. - * @property {boolean} [usePipeline] - Whether the term should be passed through the search pipeline. - * @property {number} [wildcard=0] - Whether the term should have wildcards appended or prepended. - */ - -/** - * Adds a {@link lunr.Query~Clause} to this query. - * - * Unless the clause contains the fields to be matched all fields will be matched. In addition - * a default boost of 1 is applied to the clause. - * - * @param {lunr.Query~Clause} clause - The clause to add to this query. - * @see lunr.Query~Clause - * @returns {lunr.Query} - */ -lunr.Query.prototype.clause = function (clause) { - if (!('fields' in clause)) { - clause.fields = this.allFields - } - - if (!('boost' in clause)) { - clause.boost = 1 - } - - if (!('usePipeline' in clause)) { - clause.usePipeline = true - } - - if (!('wildcard' in clause)) { - clause.wildcard = lunr.Query.wildcard.NONE - } - - if ((clause.wildcard & lunr.Query.wildcard.LEADING) && (clause.term.charAt(0) != lunr.Query.wildcard)) { - clause.term = "*" + clause.term - } - - if ((clause.wildcard & lunr.Query.wildcard.TRAILING) && (clause.term.slice(-1) != lunr.Query.wildcard)) { - clause.term = "" + clause.term + "*" - } - - this.clauses.push(clause) - - return this -} - -/** - * Adds a term to the current query, under the covers this will create a {@link lunr.Query~Clause} - * to the list of clauses that make up this query. - * - * @param {string} term - The term to add to the query. - * @param {Object} [options] - Any additional properties to add to the query clause. - * @returns {lunr.Query} - * @see lunr.Query#clause - * @see lunr.Query~Clause - * @example adding a single term to a query - * query.term("foo") - * @example adding a single term to a query and specifying search fields, term boost and automatic trailing wildcard - * query.term("foo", { - * fields: ["title"], - * boost: 10, - * wildcard: lunr.Query.wildcard.TRAILING - * }) - */ -lunr.Query.prototype.term = function (term, options) { - var clause = options || {} - clause.term = term - - this.clause(clause) - - return this -} -lunr.QueryParseError = function (message, start, end) { - this.name = "QueryParseError" - this.message = message - this.start = start - this.end = end -} - -lunr.QueryParseError.prototype = new Error -lunr.QueryLexer = function (str) { - this.lexemes = [] - this.str = str - this.length = str.length - this.pos = 0 - this.start = 0 - this.escapeCharPositions = [] -} - -lunr.QueryLexer.prototype.run = function () { - var state = lunr.QueryLexer.lexText - - while (state) { - state = state(this) - } -} - -lunr.QueryLexer.prototype.sliceString = function () { - var subSlices = [], - sliceStart = this.start, - sliceEnd = this.pos - - for (var i = 0; i < this.escapeCharPositions.length; i++) { - sliceEnd = this.escapeCharPositions[i] - subSlices.push(this.str.slice(sliceStart, sliceEnd)) - sliceStart = sliceEnd + 1 - } - - subSlices.push(this.str.slice(sliceStart, this.pos)) - this.escapeCharPositions.length = 0 - - return subSlices.join('') -} - -lunr.QueryLexer.prototype.emit = function (type) { - this.lexemes.push({ - type: type, - str: this.sliceString(), - start: this.start, - end: this.pos - }) - - this.start = this.pos -} - -lunr.QueryLexer.prototype.escapeCharacter = function () { - this.escapeCharPositions.push(this.pos - 1) - this.pos += 1 -} - -lunr.QueryLexer.prototype.next = function () { - if (this.pos >= this.length) { - return lunr.QueryLexer.EOS - } - - var char = this.str.charAt(this.pos) - this.pos += 1 - return char -} - -lunr.QueryLexer.prototype.width = function () { - return this.pos - this.start -} - -lunr.QueryLexer.prototype.ignore = function () { - if (this.start == this.pos) { - this.pos += 1 - } - - this.start = this.pos -} - -lunr.QueryLexer.prototype.backup = function () { - this.pos -= 1 -} - -lunr.QueryLexer.prototype.acceptDigitRun = function () { - var char, charCode - - do { - char = this.next() - charCode = char.charCodeAt(0) - } while (charCode > 47 && charCode < 58) - - if (char != lunr.QueryLexer.EOS) { - this.backup() - } -} - -lunr.QueryLexer.prototype.more = function () { - return this.pos < this.length -} - -lunr.QueryLexer.EOS = 'EOS' -lunr.QueryLexer.FIELD = 'FIELD' -lunr.QueryLexer.TERM = 'TERM' -lunr.QueryLexer.EDIT_DISTANCE = 'EDIT_DISTANCE' -lunr.QueryLexer.BOOST = 'BOOST' - -lunr.QueryLexer.lexField = function (lexer) { - lexer.backup() - lexer.emit(lunr.QueryLexer.FIELD) - lexer.ignore() - return lunr.QueryLexer.lexText -} - -lunr.QueryLexer.lexTerm = function (lexer) { - if (lexer.width() > 1) { - lexer.backup() - lexer.emit(lunr.QueryLexer.TERM) - } - - lexer.ignore() - - if (lexer.more()) { - return lunr.QueryLexer.lexText - } -} - -lunr.QueryLexer.lexEditDistance = function (lexer) { - lexer.ignore() - lexer.acceptDigitRun() - lexer.emit(lunr.QueryLexer.EDIT_DISTANCE) - return lunr.QueryLexer.lexText -} - -lunr.QueryLexer.lexBoost = function (lexer) { - lexer.ignore() - lexer.acceptDigitRun() - lexer.emit(lunr.QueryLexer.BOOST) - return lunr.QueryLexer.lexText -} - -lunr.QueryLexer.lexEOS = function (lexer) { - if (lexer.width() > 0) { - lexer.emit(lunr.QueryLexer.TERM) - } -} - -// This matches the separator used when tokenising fields -// within a document. These should match otherwise it is -// not possible to search for some tokens within a document. -// -// It is possible for the user to change the separator on the -// tokenizer so it _might_ clash with any other of the special -// characters already used within the search string, e.g. :. -// -// This means that it is possible to change the separator in -// such a way that makes some words unsearchable using a search -// string. -lunr.QueryLexer.termSeparator = lunr.tokenizer.separator - -lunr.QueryLexer.lexText = function (lexer) { - while (true) { - var char = lexer.next() - - if (char == lunr.QueryLexer.EOS) { - return lunr.QueryLexer.lexEOS - } - - // Escape character is '\' - if (char.charCodeAt(0) == 92) { - lexer.escapeCharacter() - continue - } - - if (char == ":") { - return lunr.QueryLexer.lexField - } - - if (char == "~") { - lexer.backup() - if (lexer.width() > 0) { - lexer.emit(lunr.QueryLexer.TERM) - } - return lunr.QueryLexer.lexEditDistance - } - - if (char == "^") { - lexer.backup() - if (lexer.width() > 0) { - lexer.emit(lunr.QueryLexer.TERM) - } - return lunr.QueryLexer.lexBoost - } - - if (char.match(lunr.QueryLexer.termSeparator)) { - return lunr.QueryLexer.lexTerm - } - } -} - -lunr.QueryParser = function (str, query) { - this.lexer = new lunr.QueryLexer (str) - this.query = query - this.currentClause = {} - this.lexemeIdx = 0 -} - -lunr.QueryParser.prototype.parse = function () { - this.lexer.run() - this.lexemes = this.lexer.lexemes - - var state = lunr.QueryParser.parseFieldOrTerm - - while (state) { - state = state(this) - } - - return this.query -} - -lunr.QueryParser.prototype.peekLexeme = function () { - return this.lexemes[this.lexemeIdx] -} - -lunr.QueryParser.prototype.consumeLexeme = function () { - var lexeme = this.peekLexeme() - this.lexemeIdx += 1 - return lexeme -} - -lunr.QueryParser.prototype.nextClause = function () { - var completedClause = this.currentClause - this.query.clause(completedClause) - this.currentClause = {} -} - -lunr.QueryParser.parseFieldOrTerm = function (parser) { - var lexeme = parser.peekLexeme() - - if (lexeme == undefined) { - return - } - - switch (lexeme.type) { - case lunr.QueryLexer.FIELD: - return lunr.QueryParser.parseField - case lunr.QueryLexer.TERM: - return lunr.QueryParser.parseTerm - default: - var errorMessage = "expected either a field or a term, found " + lexeme.type - - if (lexeme.str.length >= 1) { - errorMessage += " with value '" + lexeme.str + "'" - } - - throw new lunr.QueryParseError (errorMessage, lexeme.start, lexeme.end) - } -} - -lunr.QueryParser.parseField = function (parser) { - var lexeme = parser.consumeLexeme() - - if (lexeme == undefined) { - return - } - - if (parser.query.allFields.indexOf(lexeme.str) == -1) { - var possibleFields = parser.query.allFields.map(function (f) { return "'" + f + "'" }).join(', '), - errorMessage = "unrecognised field '" + lexeme.str + "', possible fields: " + possibleFields - - throw new lunr.QueryParseError (errorMessage, lexeme.start, lexeme.end) - } - - parser.currentClause.fields = [lexeme.str] - - var nextLexeme = parser.peekLexeme() - - if (nextLexeme == undefined) { - var errorMessage = "expecting term, found nothing" - throw new lunr.QueryParseError (errorMessage, lexeme.start, lexeme.end) - } - - switch (nextLexeme.type) { - case lunr.QueryLexer.TERM: - return lunr.QueryParser.parseTerm - default: - var errorMessage = "expecting term, found '" + nextLexeme.type + "'" - throw new lunr.QueryParseError (errorMessage, nextLexeme.start, nextLexeme.end) - } -} - -lunr.QueryParser.parseTerm = function (parser) { - var lexeme = parser.consumeLexeme() - - if (lexeme == undefined) { - return - } - - parser.currentClause.term = lexeme.str.toLowerCase() - - if (lexeme.str.indexOf("*") != -1) { - parser.currentClause.usePipeline = false - } - - var nextLexeme = parser.peekLexeme() - - if (nextLexeme == undefined) { - parser.nextClause() - return - } - - switch (nextLexeme.type) { - case lunr.QueryLexer.TERM: - parser.nextClause() - return lunr.QueryParser.parseTerm - case lunr.QueryLexer.FIELD: - parser.nextClause() - return lunr.QueryParser.parseField - case lunr.QueryLexer.EDIT_DISTANCE: - return lunr.QueryParser.parseEditDistance - case lunr.QueryLexer.BOOST: - return lunr.QueryParser.parseBoost - default: - var errorMessage = "Unexpected lexeme type '" + nextLexeme.type + "'" - throw new lunr.QueryParseError (errorMessage, nextLexeme.start, nextLexeme.end) - } -} - -lunr.QueryParser.parseEditDistance = function (parser) { - var lexeme = parser.consumeLexeme() - - if (lexeme == undefined) { - return - } - - var editDistance = parseInt(lexeme.str, 10) - - if (isNaN(editDistance)) { - var errorMessage = "edit distance must be numeric" - throw new lunr.QueryParseError (errorMessage, lexeme.start, lexeme.end) - } - - parser.currentClause.editDistance = editDistance - - var nextLexeme = parser.peekLexeme() - - if (nextLexeme == undefined) { - parser.nextClause() - return - } - - switch (nextLexeme.type) { - case lunr.QueryLexer.TERM: - parser.nextClause() - return lunr.QueryParser.parseTerm - case lunr.QueryLexer.FIELD: - parser.nextClause() - return lunr.QueryParser.parseField - case lunr.QueryLexer.EDIT_DISTANCE: - return lunr.QueryParser.parseEditDistance - case lunr.QueryLexer.BOOST: - return lunr.QueryParser.parseBoost - default: - var errorMessage = "Unexpected lexeme type '" + nextLexeme.type + "'" - throw new lunr.QueryParseError (errorMessage, nextLexeme.start, nextLexeme.end) - } -} - -lunr.QueryParser.parseBoost = function (parser) { - var lexeme = parser.consumeLexeme() - - if (lexeme == undefined) { - return - } - - var boost = parseInt(lexeme.str, 10) - - if (isNaN(boost)) { - var errorMessage = "boost must be numeric" - throw new lunr.QueryParseError (errorMessage, lexeme.start, lexeme.end) - } - - parser.currentClause.boost = boost - - var nextLexeme = parser.peekLexeme() - - if (nextLexeme == undefined) { - parser.nextClause() - return - } - - switch (nextLexeme.type) { - case lunr.QueryLexer.TERM: - parser.nextClause() - return lunr.QueryParser.parseTerm - case lunr.QueryLexer.FIELD: - parser.nextClause() - return lunr.QueryParser.parseField - case lunr.QueryLexer.EDIT_DISTANCE: - return lunr.QueryParser.parseEditDistance - case lunr.QueryLexer.BOOST: - return lunr.QueryParser.parseBoost - default: - var errorMessage = "Unexpected lexeme type '" + nextLexeme.type + "'" - throw new lunr.QueryParseError (errorMessage, nextLexeme.start, nextLexeme.end) - } -} - - /** - * export the module via AMD, CommonJS or as a browser global - * Export code from https://github.com/umdjs/umd/blob/master/returnExports.js - */ - ;(function (root, factory) { - if (typeof define === 'function' && define.amd) { - // AMD. Register as an anonymous module. - define(factory) - } else if (typeof exports === 'object') { - /** - * Node. Does not work with strict CommonJS, but - * only CommonJS-like enviroments that support module.exports, - * like Node. - */ - module.exports = factory() - } else { - // Browser globals (root is window) - root.lunr = factory() - } - }(this, function () { - /** - * Just return a value to define the module export. - * This example returns an object, but the module - * can return a function as the exported value. - */ - return lunr - })) -})(); diff --git a/docs/styles/lunr.min.js b/docs/styles/lunr.min.js deleted file mode 100644 index 77c29c20c..000000000 --- a/docs/styles/lunr.min.js +++ /dev/null @@ -1 +0,0 @@ -!function(){var e,t,r,i,n,s,o,a,u,l,d,h,c,f,p,y,m,g,x,v,w,k,Q,L,T,S,b,P,E=function(e){var t=new E.Builder;return t.pipeline.add(E.trimmer,E.stopWordFilter,E.stemmer),t.searchPipeline.add(E.stemmer),e.call(t,t),t.build()};E.version="2.1.2",E.utils={},E.utils.warn=(e=this,function(t){e.console&&console.warn&&console.warn(t)}),E.utils.asString=function(e){return null==e?"":e.toString()},E.FieldRef=function(e,t){this.docRef=e,this.fieldName=t,this._stringValue=t+E.FieldRef.joiner+e},E.FieldRef.joiner="/",E.FieldRef.fromString=function(e){var t=e.indexOf(E.FieldRef.joiner);if(-1===t)throw"malformed field ref string";var r=e.slice(0,t),i=e.slice(t+1);return new E.FieldRef(i,r)},E.FieldRef.prototype.toString=function(){return this._stringValue},E.idf=function(e,t){var r=0;for(var i in e)"_index"!=i&&(r+=Object.keys(e[i]).length);var n=(t-r+.5)/(r+.5);return Math.log(1+Math.abs(n))},E.Token=function(e,t){this.str=e||"",this.metadata=t||{}},E.Token.prototype.toString=function(){return this.str},E.Token.prototype.update=function(e){return this.str=e(this.str,this.metadata),this},E.Token.prototype.clone=function(e){return e=e||function(e){return e},new E.Token(e(this.str,this.metadata),this.metadata)},E.tokenizer=function(e){if(null==e||null==e)return[];if(Array.isArray(e))return e.map(function(e){return new E.Token(E.utils.asString(e).toLowerCase())});for(var t=e.toString().trim().toLowerCase(),r=t.length,i=[],n=0,s=0;n<=r;n++){var o=n-s;(t.charAt(n).match(E.tokenizer.separator)||n==r)&&(o>0&&i.push(new E.Token(t.slice(s,n),{position:[s,o],index:i.length})),s=n+1)}return i},E.tokenizer.separator=/[\s\-]+/,E.Pipeline=function(){this._stack=[]},E.Pipeline.registeredFunctions=Object.create(null),E.Pipeline.registerFunction=function(e,t){t in this.registeredFunctions&&E.utils.warn("Overwriting existing registered function: "+t),e.label=t,E.Pipeline.registeredFunctions[e.label]=e},E.Pipeline.warnIfFunctionNotRegistered=function(e){e.label&&e.label in this.registeredFunctions||E.utils.warn("Function is not registered with pipeline. This may cause problems when serialising the index.\n",e)},E.Pipeline.load=function(e){var t=new E.Pipeline;return e.forEach(function(e){var r=E.Pipeline.registeredFunctions[e];if(!r)throw new Error("Cannot load unregistered function: "+e);t.add(r)}),t},E.Pipeline.prototype.add=function(){Array.prototype.slice.call(arguments).forEach(function(e){E.Pipeline.warnIfFunctionNotRegistered(e),this._stack.push(e)},this)},E.Pipeline.prototype.after=function(e,t){E.Pipeline.warnIfFunctionNotRegistered(t);var r=this._stack.indexOf(e);if(-1==r)throw new Error("Cannot find existingFn");r+=1,this._stack.splice(r,0,t)},E.Pipeline.prototype.before=function(e,t){E.Pipeline.warnIfFunctionNotRegistered(t);var r=this._stack.indexOf(e);if(-1==r)throw new Error("Cannot find existingFn");this._stack.splice(r,0,t)},E.Pipeline.prototype.remove=function(e){var t=this._stack.indexOf(e);-1!=t&&this._stack.splice(t,1)},E.Pipeline.prototype.run=function(e){for(var t=this._stack.length,r=0;r1&&(se&&(r=n),s!=e);)i=r-t,n=t+Math.floor(i/2),s=this.elements[2*n];return s==e?2*n:s>e?2*n:sa?l+=2:o==a&&(t+=r[u+1]*i[l+1],u+=2,l+=2);return t},E.Vector.prototype.similarity=function(e){return this.dot(e)/(this.magnitude()*e.magnitude())},E.Vector.prototype.toArray=function(){for(var e=new Array(this.elements.length/2),t=1,r=0;t0)(s=a.str.charAt(0))in a.node.edges?n=a.node.edges[s]:(n=new E.TokenSet,a.node.edges[s]=n),1==a.str.length?n.final=!0:i.push({node:n,editsRemaining:a.editsRemaining,str:a.str.slice(1)});if(a.editsRemaining>0&&a.str.length>1)(s=a.str.charAt(1))in a.node.edges?o=a.node.edges[s]:(o=new E.TokenSet,a.node.edges[s]=o),a.str.length<=2?o.final=!0:i.push({node:o,editsRemaining:a.editsRemaining-1,str:a.str.slice(2)});if(a.editsRemaining>0&&1==a.str.length&&(a.node.final=!0),a.editsRemaining>0&&a.str.length>=1){if("*"in a.node.edges)var u=a.node.edges["*"];else{u=new E.TokenSet;a.node.edges["*"]=u}1==a.str.length?u.final=!0:i.push({node:u,editsRemaining:a.editsRemaining-1,str:a.str.slice(1)})}if(a.editsRemaining>0){if("*"in a.node.edges)var l=a.node.edges["*"];else{l=new E.TokenSet;a.node.edges["*"]=l}0==a.str.length?l.final=!0:i.push({node:l,editsRemaining:a.editsRemaining-1,str:a.str})}if(a.editsRemaining>0&&a.str.length>1){var d,h=a.str.charAt(0),c=a.str.charAt(1);c in a.node.edges?d=a.node.edges[c]:(d=new E.TokenSet,a.node.edges[c]=d),1==a.str.length?d.final=!0:i.push({node:d,editsRemaining:a.editsRemaining-1,str:h+a.str.slice(2)})}}return r},E.TokenSet.fromString=function(e){for(var t=new E.TokenSet,r=t,i=!1,n=0,s=e.length;n=e;t--){var r=this.uncheckedNodes[t],i=r.child.toString();i in this.minimizedNodes?r.parent.edges[r.char]=this.minimizedNodes[i]:(r.child._str=i,this.minimizedNodes[i]=r.child),this.uncheckedNodes.pop()}},E.Index=function(e){this.invertedIndex=e.invertedIndex,this.fieldVectors=e.fieldVectors,this.tokenSet=e.tokenSet,this.fields=e.fields,this.pipeline=e.pipeline},E.Index.prototype.search=function(e){return this.query(function(t){new E.QueryParser(e,t).parse()})},E.Index.prototype.query=function(e){var t=new E.Query(this.fields),r=Object.create(null),i=Object.create(null);e.call(t,t);for(var n=0;n1?1:e},E.Builder.prototype.k1=function(e){this._k1=e},E.Builder.prototype.add=function(e){var t=e[this._ref];this.documentCount+=1;for(var r=0;r=this.length)return E.QueryLexer.EOS;var e=this.str.charAt(this.pos);return this.pos+=1,e},E.QueryLexer.prototype.width=function(){return this.pos-this.start},E.QueryLexer.prototype.ignore=function(){this.start==this.pos&&(this.pos+=1),this.start=this.pos},E.QueryLexer.prototype.backup=function(){this.pos-=1},E.QueryLexer.prototype.acceptDigitRun=function(){var e,t;do{t=(e=this.next()).charCodeAt(0)}while(t>47&&t<58);e!=E.QueryLexer.EOS&&this.backup()},E.QueryLexer.prototype.more=function(){return this.pos1&&(e.backup(),e.emit(E.QueryLexer.TERM)),e.ignore(),e.more())return E.QueryLexer.lexText},E.QueryLexer.lexEditDistance=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(E.QueryLexer.EDIT_DISTANCE),E.QueryLexer.lexText},E.QueryLexer.lexBoost=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(E.QueryLexer.BOOST),E.QueryLexer.lexText},E.QueryLexer.lexEOS=function(e){e.width()>0&&e.emit(E.QueryLexer.TERM)},E.QueryLexer.termSeparator=E.tokenizer.separator,E.QueryLexer.lexText=function(e){for(;;){var t=e.next();if(t==E.QueryLexer.EOS)return E.QueryLexer.lexEOS;if(92!=t.charCodeAt(0)){if(":"==t)return E.QueryLexer.lexField;if("~"==t)return e.backup(),e.width()>0&&e.emit(E.QueryLexer.TERM),E.QueryLexer.lexEditDistance;if("^"==t)return e.backup(),e.width()>0&&e.emit(E.QueryLexer.TERM),E.QueryLexer.lexBoost;if(t.match(E.QueryLexer.termSeparator))return E.QueryLexer.lexTerm}else e.escapeCharacter()}},E.QueryParser=function(e,t){this.lexer=new E.QueryLexer(e),this.query=t,this.currentClause={},this.lexemeIdx=0},E.QueryParser.prototype.parse=function(){this.lexer.run(),this.lexemes=this.lexer.lexemes;for(var e=E.QueryParser.parseFieldOrTerm;e;)e=e(this);return this.query},E.QueryParser.prototype.peekLexeme=function(){return this.lexemes[this.lexemeIdx]},E.QueryParser.prototype.consumeLexeme=function(){var e=this.peekLexeme();return this.lexemeIdx+=1,e},E.QueryParser.prototype.nextClause=function(){var e=this.currentClause;this.query.clause(e),this.currentClause={}},E.QueryParser.parseFieldOrTerm=function(e){var t=e.peekLexeme();if(null!=t)switch(t.type){case E.QueryLexer.FIELD:return E.QueryParser.parseField;case E.QueryLexer.TERM:return E.QueryParser.parseTerm;default:var r="expected either a field or a term, found "+t.type;throw t.str.length>=1&&(r+=" with value '"+t.str+"'"),new E.QueryParseError(r,t.start,t.end)}},E.QueryParser.parseField=function(e){var t=e.consumeLexeme();if(null!=t){if(-1==e.query.allFields.indexOf(t.str)){var r=e.query.allFields.map(function(e){return"'"+e+"'"}).join(", "),i="unrecognised field '"+t.str+"', possible fields: "+r;throw new E.QueryParseError(i,t.start,t.end)}e.currentClause.fields=[t.str];var n=e.peekLexeme();if(null==n){i="expecting term, found nothing";throw new E.QueryParseError(i,t.start,t.end)}switch(n.type){case E.QueryLexer.TERM:return E.QueryParser.parseTerm;default:i="expecting term, found '"+n.type+"'";throw new E.QueryParseError(i,n.start,n.end)}}},E.QueryParser.parseTerm=function(e){var t=e.consumeLexeme();if(null!=t){e.currentClause.term=t.str.toLowerCase(),-1!=t.str.indexOf("*")&&(e.currentClause.usePipeline=!1);var r=e.peekLexeme();if(null!=r)switch(r.type){case E.QueryLexer.TERM:return e.nextClause(),E.QueryParser.parseTerm;case E.QueryLexer.FIELD:return e.nextClause(),E.QueryParser.parseField;case E.QueryLexer.EDIT_DISTANCE:return E.QueryParser.parseEditDistance;case E.QueryLexer.BOOST:return E.QueryParser.parseBoost;default:var i="Unexpected lexeme type '"+r.type+"'";throw new E.QueryParseError(i,r.start,r.end)}else e.nextClause()}},E.QueryParser.parseEditDistance=function(e){var t=e.consumeLexeme();if(null!=t){var r=parseInt(t.str,10);if(isNaN(r)){var i="edit distance must be numeric";throw new E.QueryParseError(i,t.start,t.end)}e.currentClause.editDistance=r;var n=e.peekLexeme();if(null!=n)switch(n.type){case E.QueryLexer.TERM:return e.nextClause(),E.QueryParser.parseTerm;case E.QueryLexer.FIELD:return e.nextClause(),E.QueryParser.parseField;case E.QueryLexer.EDIT_DISTANCE:return E.QueryParser.parseEditDistance;case E.QueryLexer.BOOST:return E.QueryParser.parseBoost;default:i="Unexpected lexeme type '"+n.type+"'";throw new E.QueryParseError(i,n.start,n.end)}else e.nextClause()}},E.QueryParser.parseBoost=function(e){var t=e.consumeLexeme();if(null!=t){var r=parseInt(t.str,10);if(isNaN(r)){var i="boost must be numeric";throw new E.QueryParseError(i,t.start,t.end)}e.currentClause.boost=r;var n=e.peekLexeme();if(null!=n)switch(n.type){case E.QueryLexer.TERM:return e.nextClause(),E.QueryParser.parseTerm;case E.QueryLexer.FIELD:return e.nextClause(),E.QueryParser.parseField;case E.QueryLexer.EDIT_DISTANCE:return E.QueryParser.parseEditDistance;case E.QueryLexer.BOOST:return E.QueryParser.parseBoost;default:i="Unexpected lexeme type '"+n.type+"'";throw new E.QueryParseError(i,n.start,n.end)}else e.nextClause()}},b=this,P=function(){return E},"function"==typeof define&&define.amd?define(P):"object"==typeof exports?module.exports=P():b.lunr=P()}(); \ No newline at end of file diff --git a/docs/styles/main.css b/docs/styles/main.css deleted file mode 100644 index 357e4c93c..000000000 --- a/docs/styles/main.css +++ /dev/null @@ -1,331 +0,0 @@ -body { - color: #ccd5dc; - font-family: "Roboto", sans-serif; - line-height: 1.5; - font-size: 14px; - -ms-text-size-adjust: 100%; - -webkit-text-size-adjust: 100%; - word-wrap: break-word; - background-color: #2d2d30; -} - -h1 { - font-weight: 600; - font-size: 32px; -} - -h2 { - font-weight: 600; - font-size: 24px; - line-height: 1.8; -} - -h3 { - font-weight: 600; - font-size: 20px; - line-height: 1.8; -} - -h5 { - font-size: 14px; - padding: 10px 0px; -} - -article h1, -article h2, -article h3, -article h4 { - margin-top: 35px; - margin-bottom: 15px; -} - -article h4 { - padding-bottom: 8px; - border-bottom: 2px solid #ddd; -} - -.navbar-brand>img { - color: #2d2d30; -} - -.navbar { - border: none; -} - -.subnav { - border-top: 1px solid #ddd; - background-color: #333337; -} - -.navbar-inverse { - background-color: #1e1e1e; - z-index: 100; -} - -.navbar-inverse .navbar-nav>li>a, -.navbar-inverse .navbar-text { - color: #66666d; - background-color: #1e1e1e; - border-bottom: 3px solid transparent; - padding-bottom: 12px; -} - -.navbar-inverse .navbar-nav>li>a:focus, -.navbar-inverse .navbar-nav>li>a:hover { - color: #c5c5de; - background-color: #1e1e1e; - border-bottom: 3px solid #333337; - transition: all ease 0.25s; -} - -.navbar-inverse .navbar-nav>.active>a, -.navbar-inverse .navbar-nav>.active>a:focus, -.navbar-inverse .navbar-nav>.active>a:hover { - color: #c5c5de; - background-color: #1e1e1e; - border-bottom: 3px solid #333337; - transition: all ease 0.25s; -} - -.navbar-form .form-control { - border: none; - border-radius: 0; -} - -.toc .level1>li { - font-weight: 400; -} - -.toc .nav>li>a { - color: #ccd5dc; -} - -.sidefilter { - background-color: #2d2d30; - border-left: none; - border-right: none; -} - -.sidefilter { - background-color: #2d2d30; - border-left: none; - border-right: none; -} - -.toc-filter { - padding: 10px; - margin: 0; - background-color: #2d2d30; -} - -.toc-filter>input { - border: none; - border-radius: unset; - background-color: #333337; - padding: 5px 0 5px 20px; - font-size: 90% -} - -.toc-filter>input:focus { - color: #ccd5dc; - transition: all ease 0.25s; -} - -.toc-filter>.filter-icon { - display: none; -} - -.sidetoc>.toc { - background-color: #2d2d30; - overflow-x: hidden; -} - -.sidetoc { - background-color: #2d2d30; - border: none; -} - -.alert { - background-color: inherit; - border: none; - padding: 10px 0; - border-radius: 0; -} - -.alert>p { - color: #ccd5dc; - margin-bottom: 0; - padding: 5px 10px; - border-bottom: 1px solid; - background-color: #212123; -} - -.alert>h5 { - padding: 10px 15px; - margin-top: 0; - margin-bottom: 0; - text-transform: uppercase; - font-weight: bold; - border-top: 2px solid; - background-color: #212123; - border-radius: none; -} - -.alert>ul { - margin-bottom: 0; - padding: 5px 40px; -} - -.alert-info{ - color: #1976d2; -} - -.alert-warning{ - color: #f57f17; -} - -.alert-danger{ - color: #d32f2f; -} - -pre { - padding: 9.5px; - margin: 0 0 10px; - font-size: 13px; - word-break: break-all; - word-wrap: break-word; - background-color: #1e1e1e;; - border-radius: 0; - border: none; -} - -code{ - color: #ccd5dc; - background: #1e1e1e !important; - border-radius: 2px; -} - -.hljs{ - color: #bbb; -} - -.toc .nav > li.active > .expand-stub::before, .toc .nav > li.in > .expand-stub::before, .toc .nav > li.in.active > .expand-stub::before, .toc .nav > li.filtered > .expand-stub::before { - content: "▾"; -} - -.toc .nav > li > .expand-stub::before, .toc .nav > li.active > .expand-stub::before { - content: "▸"; -} - -.affix ul ul > li > a:before { - content: "|"; -} - -.breadcrumb .label.label-primary { - background: #444; - border-radius: 0; - font-weight: normal; - font-size: 100%; -} - -#breadcrumb .breadcrumb>li a { - border-radius: 0; - font-weight: normal; - font-size: 85%; - display: inline; - padding: 0 .6em 0; - line-height: 1; - text-align: center; - white-space: nowrap; - vertical-align: baseline; - color: #999; -} -#breadcrumb .breadcrumb>li a:hover{ - color: #c5c5de; - transition: all ease 0.25s; -} - -.breadcrumb > li + li:before { - content: "⯈"; - font-size: 75%; - color: #1e1e1e; - padding: 0; -} - -.toc .level1>li { - font-weight: 600; - font-size: 130%; - padding-left: 5px; -} - -.footer { - border-top: none; - background-color: #1e1e1e; - padding: 15px 0; - font-size: 90%; -} - -.toc .nav > li > a:hover, .toc .nav > li > a:focus { - color: #fff; - transition: all ease 0.1s; -} - -.form-control { - background-color: #333337; - border: none; - border-radius: 0; - -webkit-box-shadow: none; - box-shadow: none; -} - -.form-control:focus { - border-color: #66afe9; - outline: 0; - -webkit-box-shadow: none; - box-shadow: none; -} - -input#search-query:focus { - color: #c5c5de; -} - -.table-bordered, .table-bordered>tbody>tr>td, .table-bordered>tbody>tr>th, .table-bordered>tfoot>tr>td, .table-bordered>tfoot>tr>th, .table-bordered>thead>tr>td, .table-bordered>thead>tr>th { - border: 1px solid #1E1E1E; -} - -.table-striped>tbody>tr:nth-of-type(odd) { - background-color: #212123; -} - -blockquote { - color: #ccd5dc; - padding: 10px 20px; - margin: 0 0 10px; - font-size: 110%; - font-style: italic; - border-left: 5px solid #69696e; -} - -.pagination>.disabled>a, .pagination>.disabled>a:focus, .pagination>.disabled>a:hover, .pagination>.disabled>span, .pagination>.disabled>span:focus, .pagination>.disabled>span:hover { - background-color: #333337; - border-color: #333337; -} - -.breadcrumb>li, .pagination { - display: inline; -} - -@media (min-width: 1600px){ - .container { - width: 100%; - } - .sidefilter { - width: 20%; - } - .sidetoc{ - width: 20%; - } - .article.grid-right { - margin-left: 21%; - } -} \ No newline at end of file diff --git a/docs/styles/main.js b/docs/styles/main.js deleted file mode 100644 index aeca70d85..000000000 --- a/docs/styles/main.js +++ /dev/null @@ -1 +0,0 @@ -// Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE file in the project root for full license information. diff --git a/docs/styles/search-worker.js b/docs/styles/search-worker.js deleted file mode 100644 index 60852af4c..000000000 --- a/docs/styles/search-worker.js +++ /dev/null @@ -1,80 +0,0 @@ -(function () { - importScripts('lunr.min.js'); - - var lunrIndex; - - var stopWords = null; - var searchData = {}; - - lunr.tokenizer.separator = /[\s\-\.\(\)]+/; - - var stopWordsRequest = new XMLHttpRequest(); - stopWordsRequest.open('GET', '../search-stopwords.json'); - stopWordsRequest.onload = function () { - if (this.status != 200) { - return; - } - stopWords = JSON.parse(this.responseText); - buildIndex(); - } - stopWordsRequest.send(); - - var searchDataRequest = new XMLHttpRequest(); - - searchDataRequest.open('GET', '../index.json'); - searchDataRequest.onload = function () { - if (this.status != 200) { - return; - } - searchData = JSON.parse(this.responseText); - - buildIndex(); - - postMessage({ e: 'index-ready' }); - } - searchDataRequest.send(); - - onmessage = function (oEvent) { - var q = oEvent.data.q; - var hits = lunrIndex.search(q); - var results = []; - hits.forEach(function (hit) { - var item = searchData[hit.ref]; - results.push({ 'href': item.href, 'title': item.title, 'keywords': item.keywords }); - }); - postMessage({ e: 'query-ready', q: q, d: results }); - } - - function buildIndex() { - if (stopWords !== null && !isEmpty(searchData)) { - lunrIndex = lunr(function () { - this.pipeline.remove(lunr.stopWordFilter); - this.ref('href'); - this.field('title', { boost: 50 }); - this.field('keywords', { boost: 20 }); - - for (var prop in searchData) { - if (searchData.hasOwnProperty(prop)) { - this.add(searchData[prop]); - } - } - - var docfxStopWordFilter = lunr.generateStopWordFilter(stopWords); - lunr.Pipeline.registerFunction(docfxStopWordFilter, 'docfxStopWordFilter'); - this.pipeline.add(docfxStopWordFilter); - this.searchPipeline.add(docfxStopWordFilter); - }); - } - } - - function isEmpty(obj) { - if(!obj) return true; - - for (var prop in obj) { - if (obj.hasOwnProperty(prop)) - return false; - } - - return true; - } -})(); diff --git a/docs/toc.html b/docs/toc.html deleted file mode 100644 index 4deae1901..000000000 --- a/docs/toc.html +++ /dev/null @@ -1,31 +0,0 @@ - -
-
-
-
- - - -
-
-
-
- - -
-
-
-
\ No newline at end of file diff --git a/docs/xrefmap.yml b/docs/xrefmap.yml deleted file mode 100644 index c82fec35a..000000000 --- a/docs/xrefmap.yml +++ /dev/null @@ -1,60272 +0,0 @@ -### YamlMime:XRefMap -sorted: true -references: -- uid: XRTK.Attributes - name: XRTK.Attributes - href: api/XRTK.Attributes.html - commentId: N:XRTK.Attributes - fullName: XRTK.Attributes - nameWithType: XRTK.Attributes -- uid: XRTK.Attributes.AxisConstraintAttribute - name: AxisConstraintAttribute - href: api/XRTK.Attributes.AxisConstraintAttribute.html - commentId: T:XRTK.Attributes.AxisConstraintAttribute - fullName: XRTK.Attributes.AxisConstraintAttribute - nameWithType: AxisConstraintAttribute -- uid: XRTK.Attributes.AxisConstraintAttribute.#ctor(XRTK.Definitions.Utilities.AxisType) - name: AxisConstraintAttribute(AxisType) - href: api/XRTK.Attributes.AxisConstraintAttribute.html#XRTK_Attributes_AxisConstraintAttribute__ctor_XRTK_Definitions_Utilities_AxisType_ - commentId: M:XRTK.Attributes.AxisConstraintAttribute.#ctor(XRTK.Definitions.Utilities.AxisType) - fullName: XRTK.Attributes.AxisConstraintAttribute.AxisConstraintAttribute(XRTK.Definitions.Utilities.AxisType) - nameWithType: AxisConstraintAttribute.AxisConstraintAttribute(AxisType) -- uid: XRTK.Attributes.AxisConstraintAttribute.#ctor* - name: AxisConstraintAttribute - href: api/XRTK.Attributes.AxisConstraintAttribute.html#XRTK_Attributes_AxisConstraintAttribute__ctor_ - commentId: Overload:XRTK.Attributes.AxisConstraintAttribute.#ctor - isSpec: "True" - fullName: XRTK.Attributes.AxisConstraintAttribute.AxisConstraintAttribute - nameWithType: AxisConstraintAttribute.AxisConstraintAttribute -- uid: XRTK.Attributes.AxisConstraintAttribute.AxisConstraint - name: AxisConstraint - href: api/XRTK.Attributes.AxisConstraintAttribute.html#XRTK_Attributes_AxisConstraintAttribute_AxisConstraint - commentId: P:XRTK.Attributes.AxisConstraintAttribute.AxisConstraint - fullName: XRTK.Attributes.AxisConstraintAttribute.AxisConstraint - nameWithType: AxisConstraintAttribute.AxisConstraint -- uid: XRTK.Attributes.AxisConstraintAttribute.AxisConstraint* - name: AxisConstraint - href: api/XRTK.Attributes.AxisConstraintAttribute.html#XRTK_Attributes_AxisConstraintAttribute_AxisConstraint_ - commentId: Overload:XRTK.Attributes.AxisConstraintAttribute.AxisConstraint - isSpec: "True" - fullName: XRTK.Attributes.AxisConstraintAttribute.AxisConstraint - nameWithType: AxisConstraintAttribute.AxisConstraint -- uid: XRTK.Attributes.EnumFlagsAttribute - name: EnumFlagsAttribute - href: api/XRTK.Attributes.EnumFlagsAttribute.html - commentId: T:XRTK.Attributes.EnumFlagsAttribute - fullName: XRTK.Attributes.EnumFlagsAttribute - nameWithType: EnumFlagsAttribute -- uid: XRTK.Attributes.EnumFlagsAttribute.#ctor - name: EnumFlagsAttribute() - href: api/XRTK.Attributes.EnumFlagsAttribute.html#XRTK_Attributes_EnumFlagsAttribute__ctor - commentId: M:XRTK.Attributes.EnumFlagsAttribute.#ctor - fullName: XRTK.Attributes.EnumFlagsAttribute.EnumFlagsAttribute() - nameWithType: EnumFlagsAttribute.EnumFlagsAttribute() -- uid: XRTK.Attributes.EnumFlagsAttribute.#ctor* - name: EnumFlagsAttribute - href: api/XRTK.Attributes.EnumFlagsAttribute.html#XRTK_Attributes_EnumFlagsAttribute__ctor_ - commentId: Overload:XRTK.Attributes.EnumFlagsAttribute.#ctor - isSpec: "True" - fullName: XRTK.Attributes.EnumFlagsAttribute.EnumFlagsAttribute - nameWithType: EnumFlagsAttribute.EnumFlagsAttribute -- uid: XRTK.Attributes.ExtendsAttribute - name: ExtendsAttribute - href: api/XRTK.Attributes.ExtendsAttribute.html - commentId: T:XRTK.Attributes.ExtendsAttribute - fullName: XRTK.Attributes.ExtendsAttribute - nameWithType: ExtendsAttribute -- uid: XRTK.Attributes.ExtendsAttribute.#ctor(System.Type,XRTK.Definitions.Utilities.TypeGrouping) - name: ExtendsAttribute(Type, TypeGrouping) - href: api/XRTK.Attributes.ExtendsAttribute.html#XRTK_Attributes_ExtendsAttribute__ctor_System_Type_XRTK_Definitions_Utilities_TypeGrouping_ - commentId: M:XRTK.Attributes.ExtendsAttribute.#ctor(System.Type,XRTK.Definitions.Utilities.TypeGrouping) - fullName: XRTK.Attributes.ExtendsAttribute.ExtendsAttribute(System.Type, XRTK.Definitions.Utilities.TypeGrouping) - nameWithType: ExtendsAttribute.ExtendsAttribute(Type, TypeGrouping) -- uid: XRTK.Attributes.ExtendsAttribute.#ctor* - name: ExtendsAttribute - href: api/XRTK.Attributes.ExtendsAttribute.html#XRTK_Attributes_ExtendsAttribute__ctor_ - commentId: Overload:XRTK.Attributes.ExtendsAttribute.#ctor - isSpec: "True" - fullName: XRTK.Attributes.ExtendsAttribute.ExtendsAttribute - nameWithType: ExtendsAttribute.ExtendsAttribute -- uid: XRTK.Attributes.ExtendsAttribute.BaseType - name: BaseType - href: api/XRTK.Attributes.ExtendsAttribute.html#XRTK_Attributes_ExtendsAttribute_BaseType - commentId: P:XRTK.Attributes.ExtendsAttribute.BaseType - fullName: XRTK.Attributes.ExtendsAttribute.BaseType - nameWithType: ExtendsAttribute.BaseType -- uid: XRTK.Attributes.ExtendsAttribute.BaseType* - name: BaseType - href: api/XRTK.Attributes.ExtendsAttribute.html#XRTK_Attributes_ExtendsAttribute_BaseType_ - commentId: Overload:XRTK.Attributes.ExtendsAttribute.BaseType - isSpec: "True" - fullName: XRTK.Attributes.ExtendsAttribute.BaseType - nameWithType: ExtendsAttribute.BaseType -- uid: XRTK.Attributes.ExtendsAttribute.IsConstraintSatisfied(System.Type) - name: IsConstraintSatisfied(Type) - href: api/XRTK.Attributes.ExtendsAttribute.html#XRTK_Attributes_ExtendsAttribute_IsConstraintSatisfied_System_Type_ - commentId: M:XRTK.Attributes.ExtendsAttribute.IsConstraintSatisfied(System.Type) - fullName: XRTK.Attributes.ExtendsAttribute.IsConstraintSatisfied(System.Type) - nameWithType: ExtendsAttribute.IsConstraintSatisfied(Type) -- uid: XRTK.Attributes.ExtendsAttribute.IsConstraintSatisfied* - name: IsConstraintSatisfied - href: api/XRTK.Attributes.ExtendsAttribute.html#XRTK_Attributes_ExtendsAttribute_IsConstraintSatisfied_ - commentId: Overload:XRTK.Attributes.ExtendsAttribute.IsConstraintSatisfied - isSpec: "True" - fullName: XRTK.Attributes.ExtendsAttribute.IsConstraintSatisfied - nameWithType: ExtendsAttribute.IsConstraintSatisfied -- uid: XRTK.Attributes.ImplementsAttribute - name: ImplementsAttribute - href: api/XRTK.Attributes.ImplementsAttribute.html - commentId: T:XRTK.Attributes.ImplementsAttribute - fullName: XRTK.Attributes.ImplementsAttribute - nameWithType: ImplementsAttribute -- uid: XRTK.Attributes.ImplementsAttribute.#ctor(System.Type,XRTK.Definitions.Utilities.TypeGrouping) - name: ImplementsAttribute(Type, TypeGrouping) - href: api/XRTK.Attributes.ImplementsAttribute.html#XRTK_Attributes_ImplementsAttribute__ctor_System_Type_XRTK_Definitions_Utilities_TypeGrouping_ - commentId: M:XRTK.Attributes.ImplementsAttribute.#ctor(System.Type,XRTK.Definitions.Utilities.TypeGrouping) - fullName: XRTK.Attributes.ImplementsAttribute.ImplementsAttribute(System.Type, XRTK.Definitions.Utilities.TypeGrouping) - nameWithType: ImplementsAttribute.ImplementsAttribute(Type, TypeGrouping) -- uid: XRTK.Attributes.ImplementsAttribute.#ctor* - name: ImplementsAttribute - href: api/XRTK.Attributes.ImplementsAttribute.html#XRTK_Attributes_ImplementsAttribute__ctor_ - commentId: Overload:XRTK.Attributes.ImplementsAttribute.#ctor - isSpec: "True" - fullName: XRTK.Attributes.ImplementsAttribute.ImplementsAttribute - nameWithType: ImplementsAttribute.ImplementsAttribute -- uid: XRTK.Attributes.ImplementsAttribute.InterfaceType - name: InterfaceType - href: api/XRTK.Attributes.ImplementsAttribute.html#XRTK_Attributes_ImplementsAttribute_InterfaceType - commentId: P:XRTK.Attributes.ImplementsAttribute.InterfaceType - fullName: XRTK.Attributes.ImplementsAttribute.InterfaceType - nameWithType: ImplementsAttribute.InterfaceType -- uid: XRTK.Attributes.ImplementsAttribute.InterfaceType* - name: InterfaceType - href: api/XRTK.Attributes.ImplementsAttribute.html#XRTK_Attributes_ImplementsAttribute_InterfaceType_ - commentId: Overload:XRTK.Attributes.ImplementsAttribute.InterfaceType - isSpec: "True" - fullName: XRTK.Attributes.ImplementsAttribute.InterfaceType - nameWithType: ImplementsAttribute.InterfaceType -- uid: XRTK.Attributes.ImplementsAttribute.IsConstraintSatisfied(System.Type) - name: IsConstraintSatisfied(Type) - href: api/XRTK.Attributes.ImplementsAttribute.html#XRTK_Attributes_ImplementsAttribute_IsConstraintSatisfied_System_Type_ - commentId: M:XRTK.Attributes.ImplementsAttribute.IsConstraintSatisfied(System.Type) - fullName: XRTK.Attributes.ImplementsAttribute.IsConstraintSatisfied(System.Type) - nameWithType: ImplementsAttribute.IsConstraintSatisfied(Type) -- uid: XRTK.Attributes.ImplementsAttribute.IsConstraintSatisfied* - name: IsConstraintSatisfied - href: api/XRTK.Attributes.ImplementsAttribute.html#XRTK_Attributes_ImplementsAttribute_IsConstraintSatisfied_ - commentId: Overload:XRTK.Attributes.ImplementsAttribute.IsConstraintSatisfied - isSpec: "True" - fullName: XRTK.Attributes.ImplementsAttribute.IsConstraintSatisfied - nameWithType: ImplementsAttribute.IsConstraintSatisfied -- uid: XRTK.Attributes.PhysicsLayerAttribute - name: PhysicsLayerAttribute - href: api/XRTK.Attributes.PhysicsLayerAttribute.html - commentId: T:XRTK.Attributes.PhysicsLayerAttribute - fullName: XRTK.Attributes.PhysicsLayerAttribute - nameWithType: PhysicsLayerAttribute -- uid: XRTK.Attributes.PhysicsLayerAttribute.#ctor - name: PhysicsLayerAttribute() - href: api/XRTK.Attributes.PhysicsLayerAttribute.html#XRTK_Attributes_PhysicsLayerAttribute__ctor - commentId: M:XRTK.Attributes.PhysicsLayerAttribute.#ctor - fullName: XRTK.Attributes.PhysicsLayerAttribute.PhysicsLayerAttribute() - nameWithType: PhysicsLayerAttribute.PhysicsLayerAttribute() -- uid: XRTK.Attributes.PhysicsLayerAttribute.#ctor* - name: PhysicsLayerAttribute - href: api/XRTK.Attributes.PhysicsLayerAttribute.html#XRTK_Attributes_PhysicsLayerAttribute__ctor_ - commentId: Overload:XRTK.Attributes.PhysicsLayerAttribute.#ctor - isSpec: "True" - fullName: XRTK.Attributes.PhysicsLayerAttribute.PhysicsLayerAttribute - nameWithType: PhysicsLayerAttribute.PhysicsLayerAttribute -- uid: XRTK.Attributes.PrefabAttribute - name: PrefabAttribute - href: api/XRTK.Attributes.PrefabAttribute.html - commentId: T:XRTK.Attributes.PrefabAttribute - fullName: XRTK.Attributes.PrefabAttribute - nameWithType: PrefabAttribute -- uid: XRTK.Attributes.PrefabAttribute.#ctor - name: PrefabAttribute() - href: api/XRTK.Attributes.PrefabAttribute.html#XRTK_Attributes_PrefabAttribute__ctor - commentId: M:XRTK.Attributes.PrefabAttribute.#ctor - fullName: XRTK.Attributes.PrefabAttribute.PrefabAttribute() - nameWithType: PrefabAttribute.PrefabAttribute() -- uid: XRTK.Attributes.PrefabAttribute.#ctor(System.Type) - name: PrefabAttribute(Type) - href: api/XRTK.Attributes.PrefabAttribute.html#XRTK_Attributes_PrefabAttribute__ctor_System_Type_ - commentId: M:XRTK.Attributes.PrefabAttribute.#ctor(System.Type) - fullName: XRTK.Attributes.PrefabAttribute.PrefabAttribute(System.Type) - nameWithType: PrefabAttribute.PrefabAttribute(Type) -- uid: XRTK.Attributes.PrefabAttribute.#ctor* - name: PrefabAttribute - href: api/XRTK.Attributes.PrefabAttribute.html#XRTK_Attributes_PrefabAttribute__ctor_ - commentId: Overload:XRTK.Attributes.PrefabAttribute.#ctor - isSpec: "True" - fullName: XRTK.Attributes.PrefabAttribute.PrefabAttribute - nameWithType: PrefabAttribute.PrefabAttribute -- uid: XRTK.Attributes.PrefabAttribute.Constraint - name: Constraint - href: api/XRTK.Attributes.PrefabAttribute.html#XRTK_Attributes_PrefabAttribute_Constraint - commentId: P:XRTK.Attributes.PrefabAttribute.Constraint - fullName: XRTK.Attributes.PrefabAttribute.Constraint - nameWithType: PrefabAttribute.Constraint -- uid: XRTK.Attributes.PrefabAttribute.Constraint* - name: Constraint - href: api/XRTK.Attributes.PrefabAttribute.html#XRTK_Attributes_PrefabAttribute_Constraint_ - commentId: Overload:XRTK.Attributes.PrefabAttribute.Constraint - isSpec: "True" - fullName: XRTK.Attributes.PrefabAttribute.Constraint - nameWithType: PrefabAttribute.Constraint -- uid: XRTK.Attributes.RuntimePlatformAttribute - name: RuntimePlatformAttribute - href: api/XRTK.Attributes.RuntimePlatformAttribute.html - commentId: T:XRTK.Attributes.RuntimePlatformAttribute - fullName: XRTK.Attributes.RuntimePlatformAttribute - nameWithType: RuntimePlatformAttribute -- uid: XRTK.Attributes.RuntimePlatformAttribute.#ctor(System.Type) - name: RuntimePlatformAttribute(Type) - href: api/XRTK.Attributes.RuntimePlatformAttribute.html#XRTK_Attributes_RuntimePlatformAttribute__ctor_System_Type_ - commentId: M:XRTK.Attributes.RuntimePlatformAttribute.#ctor(System.Type) - fullName: XRTK.Attributes.RuntimePlatformAttribute.RuntimePlatformAttribute(System.Type) - nameWithType: RuntimePlatformAttribute.RuntimePlatformAttribute(Type) -- uid: XRTK.Attributes.RuntimePlatformAttribute.#ctor* - name: RuntimePlatformAttribute - href: api/XRTK.Attributes.RuntimePlatformAttribute.html#XRTK_Attributes_RuntimePlatformAttribute__ctor_ - commentId: Overload:XRTK.Attributes.RuntimePlatformAttribute.#ctor - isSpec: "True" - fullName: XRTK.Attributes.RuntimePlatformAttribute.RuntimePlatformAttribute - nameWithType: RuntimePlatformAttribute.RuntimePlatformAttribute -- uid: XRTK.Attributes.RuntimePlatformAttribute.Platform - name: Platform - href: api/XRTK.Attributes.RuntimePlatformAttribute.html#XRTK_Attributes_RuntimePlatformAttribute_Platform - commentId: P:XRTK.Attributes.RuntimePlatformAttribute.Platform - fullName: XRTK.Attributes.RuntimePlatformAttribute.Platform - nameWithType: RuntimePlatformAttribute.Platform -- uid: XRTK.Attributes.RuntimePlatformAttribute.Platform* - name: Platform - href: api/XRTK.Attributes.RuntimePlatformAttribute.html#XRTK_Attributes_RuntimePlatformAttribute_Platform_ - commentId: Overload:XRTK.Attributes.RuntimePlatformAttribute.Platform - isSpec: "True" - fullName: XRTK.Attributes.RuntimePlatformAttribute.Platform - nameWithType: RuntimePlatformAttribute.Platform -- uid: XRTK.Attributes.SystemTypeAttribute - name: SystemTypeAttribute - href: api/XRTK.Attributes.SystemTypeAttribute.html - commentId: T:XRTK.Attributes.SystemTypeAttribute - fullName: XRTK.Attributes.SystemTypeAttribute - nameWithType: SystemTypeAttribute -- uid: XRTK.Attributes.SystemTypeAttribute.#ctor(System.Type,XRTK.Definitions.Utilities.TypeGrouping) - name: SystemTypeAttribute(Type, TypeGrouping) - href: api/XRTK.Attributes.SystemTypeAttribute.html#XRTK_Attributes_SystemTypeAttribute__ctor_System_Type_XRTK_Definitions_Utilities_TypeGrouping_ - commentId: M:XRTK.Attributes.SystemTypeAttribute.#ctor(System.Type,XRTK.Definitions.Utilities.TypeGrouping) - fullName: XRTK.Attributes.SystemTypeAttribute.SystemTypeAttribute(System.Type, XRTK.Definitions.Utilities.TypeGrouping) - nameWithType: SystemTypeAttribute.SystemTypeAttribute(Type, TypeGrouping) -- uid: XRTK.Attributes.SystemTypeAttribute.#ctor* - name: SystemTypeAttribute - href: api/XRTK.Attributes.SystemTypeAttribute.html#XRTK_Attributes_SystemTypeAttribute__ctor_ - commentId: Overload:XRTK.Attributes.SystemTypeAttribute.#ctor - isSpec: "True" - fullName: XRTK.Attributes.SystemTypeAttribute.SystemTypeAttribute - nameWithType: SystemTypeAttribute.SystemTypeAttribute -- uid: XRTK.Attributes.SystemTypeAttribute.AllowAbstract - name: AllowAbstract - href: api/XRTK.Attributes.SystemTypeAttribute.html#XRTK_Attributes_SystemTypeAttribute_AllowAbstract - commentId: P:XRTK.Attributes.SystemTypeAttribute.AllowAbstract - fullName: XRTK.Attributes.SystemTypeAttribute.AllowAbstract - nameWithType: SystemTypeAttribute.AllowAbstract -- uid: XRTK.Attributes.SystemTypeAttribute.AllowAbstract* - name: AllowAbstract - href: api/XRTK.Attributes.SystemTypeAttribute.html#XRTK_Attributes_SystemTypeAttribute_AllowAbstract_ - commentId: Overload:XRTK.Attributes.SystemTypeAttribute.AllowAbstract - isSpec: "True" - fullName: XRTK.Attributes.SystemTypeAttribute.AllowAbstract - nameWithType: SystemTypeAttribute.AllowAbstract -- uid: XRTK.Attributes.SystemTypeAttribute.Grouping - name: Grouping - href: api/XRTK.Attributes.SystemTypeAttribute.html#XRTK_Attributes_SystemTypeAttribute_Grouping - commentId: P:XRTK.Attributes.SystemTypeAttribute.Grouping - fullName: XRTK.Attributes.SystemTypeAttribute.Grouping - nameWithType: SystemTypeAttribute.Grouping -- uid: XRTK.Attributes.SystemTypeAttribute.Grouping* - name: Grouping - href: api/XRTK.Attributes.SystemTypeAttribute.html#XRTK_Attributes_SystemTypeAttribute_Grouping_ - commentId: Overload:XRTK.Attributes.SystemTypeAttribute.Grouping - isSpec: "True" - fullName: XRTK.Attributes.SystemTypeAttribute.Grouping - nameWithType: SystemTypeAttribute.Grouping -- uid: XRTK.Attributes.SystemTypeAttribute.IsConstraintSatisfied(System.Type) - name: IsConstraintSatisfied(Type) - href: api/XRTK.Attributes.SystemTypeAttribute.html#XRTK_Attributes_SystemTypeAttribute_IsConstraintSatisfied_System_Type_ - commentId: M:XRTK.Attributes.SystemTypeAttribute.IsConstraintSatisfied(System.Type) - fullName: XRTK.Attributes.SystemTypeAttribute.IsConstraintSatisfied(System.Type) - nameWithType: SystemTypeAttribute.IsConstraintSatisfied(Type) -- uid: XRTK.Attributes.SystemTypeAttribute.IsConstraintSatisfied* - name: IsConstraintSatisfied - href: api/XRTK.Attributes.SystemTypeAttribute.html#XRTK_Attributes_SystemTypeAttribute_IsConstraintSatisfied_ - commentId: Overload:XRTK.Attributes.SystemTypeAttribute.IsConstraintSatisfied - isSpec: "True" - fullName: XRTK.Attributes.SystemTypeAttribute.IsConstraintSatisfied - nameWithType: SystemTypeAttribute.IsConstraintSatisfied -- uid: XRTK.Attributes.Vector3RangeAttribute - name: Vector3RangeAttribute - href: api/XRTK.Attributes.Vector3RangeAttribute.html - commentId: T:XRTK.Attributes.Vector3RangeAttribute - fullName: XRTK.Attributes.Vector3RangeAttribute - nameWithType: Vector3RangeAttribute -- uid: XRTK.Attributes.Vector3RangeAttribute.#ctor(System.Single,System.Single) - name: Vector3RangeAttribute(Single, Single) - href: api/XRTK.Attributes.Vector3RangeAttribute.html#XRTK_Attributes_Vector3RangeAttribute__ctor_System_Single_System_Single_ - commentId: M:XRTK.Attributes.Vector3RangeAttribute.#ctor(System.Single,System.Single) - fullName: XRTK.Attributes.Vector3RangeAttribute.Vector3RangeAttribute(System.Single, System.Single) - nameWithType: Vector3RangeAttribute.Vector3RangeAttribute(Single, Single) -- uid: XRTK.Attributes.Vector3RangeAttribute.#ctor* - name: Vector3RangeAttribute - href: api/XRTK.Attributes.Vector3RangeAttribute.html#XRTK_Attributes_Vector3RangeAttribute__ctor_ - commentId: Overload:XRTK.Attributes.Vector3RangeAttribute.#ctor - isSpec: "True" - fullName: XRTK.Attributes.Vector3RangeAttribute.Vector3RangeAttribute - nameWithType: Vector3RangeAttribute.Vector3RangeAttribute -- uid: XRTK.Attributes.Vector3RangeAttribute.Max - name: Max - href: api/XRTK.Attributes.Vector3RangeAttribute.html#XRTK_Attributes_Vector3RangeAttribute_Max - commentId: F:XRTK.Attributes.Vector3RangeAttribute.Max - fullName: XRTK.Attributes.Vector3RangeAttribute.Max - nameWithType: Vector3RangeAttribute.Max -- uid: XRTK.Attributes.Vector3RangeAttribute.Min - name: Min - href: api/XRTK.Attributes.Vector3RangeAttribute.html#XRTK_Attributes_Vector3RangeAttribute_Min - commentId: F:XRTK.Attributes.Vector3RangeAttribute.Min - fullName: XRTK.Attributes.Vector3RangeAttribute.Min - nameWithType: Vector3RangeAttribute.Min -- uid: XRTK.Definitions - name: XRTK.Definitions - href: api/XRTK.Definitions.html - commentId: N:XRTK.Definitions - fullName: XRTK.Definitions - nameWithType: XRTK.Definitions -- uid: XRTK.Definitions.BaseMixedRealityExtensionDataProviderProfile - name: BaseMixedRealityExtensionDataProviderProfile - href: api/XRTK.Definitions.BaseMixedRealityExtensionDataProviderProfile.html - commentId: T:XRTK.Definitions.BaseMixedRealityExtensionDataProviderProfile - fullName: XRTK.Definitions.BaseMixedRealityExtensionDataProviderProfile - nameWithType: BaseMixedRealityExtensionDataProviderProfile -- uid: XRTK.Definitions.BaseMixedRealityExtensionServiceProfile - name: BaseMixedRealityExtensionServiceProfile - href: api/XRTK.Definitions.BaseMixedRealityExtensionServiceProfile.html - commentId: T:XRTK.Definitions.BaseMixedRealityExtensionServiceProfile - fullName: XRTK.Definitions.BaseMixedRealityExtensionServiceProfile - nameWithType: BaseMixedRealityExtensionServiceProfile -- uid: XRTK.Definitions.BaseMixedRealityProfile - name: BaseMixedRealityProfile - href: api/XRTK.Definitions.BaseMixedRealityProfile.html - commentId: T:XRTK.Definitions.BaseMixedRealityProfile - fullName: XRTK.Definitions.BaseMixedRealityProfile - nameWithType: BaseMixedRealityProfile -- uid: XRTK.Definitions.BaseMixedRealityProfile.ParentProfile - name: ParentProfile - href: api/XRTK.Definitions.BaseMixedRealityProfile.html#XRTK_Definitions_BaseMixedRealityProfile_ParentProfile - commentId: P:XRTK.Definitions.BaseMixedRealityProfile.ParentProfile - fullName: XRTK.Definitions.BaseMixedRealityProfile.ParentProfile - nameWithType: BaseMixedRealityProfile.ParentProfile -- uid: XRTK.Definitions.BaseMixedRealityProfile.ParentProfile* - name: ParentProfile - href: api/XRTK.Definitions.BaseMixedRealityProfile.html#XRTK_Definitions_BaseMixedRealityProfile_ParentProfile_ - commentId: Overload:XRTK.Definitions.BaseMixedRealityProfile.ParentProfile - isSpec: "True" - fullName: XRTK.Definitions.BaseMixedRealityProfile.ParentProfile - nameWithType: BaseMixedRealityProfile.ParentProfile -- uid: XRTK.Definitions.BaseMixedRealityServiceProfile`1 - name: BaseMixedRealityServiceProfile - href: api/XRTK.Definitions.BaseMixedRealityServiceProfile-1.html - commentId: T:XRTK.Definitions.BaseMixedRealityServiceProfile`1 - name.vb: BaseMixedRealityServiceProfile(Of TService) - fullName: XRTK.Definitions.BaseMixedRealityServiceProfile - fullName.vb: XRTK.Definitions.BaseMixedRealityServiceProfile(Of TService) - nameWithType: BaseMixedRealityServiceProfile - nameWithType.vb: BaseMixedRealityServiceProfile(Of TService) -- uid: XRTK.Definitions.BaseMixedRealityServiceProfile`1.RegisteredServiceConfigurations - name: RegisteredServiceConfigurations - href: api/XRTK.Definitions.BaseMixedRealityServiceProfile-1.html#XRTK_Definitions_BaseMixedRealityServiceProfile_1_RegisteredServiceConfigurations - commentId: P:XRTK.Definitions.BaseMixedRealityServiceProfile`1.RegisteredServiceConfigurations - fullName: XRTK.Definitions.BaseMixedRealityServiceProfile.RegisteredServiceConfigurations - fullName.vb: XRTK.Definitions.BaseMixedRealityServiceProfile(Of TService).RegisteredServiceConfigurations - nameWithType: BaseMixedRealityServiceProfile.RegisteredServiceConfigurations - nameWithType.vb: BaseMixedRealityServiceProfile(Of TService).RegisteredServiceConfigurations -- uid: XRTK.Definitions.BaseMixedRealityServiceProfile`1.RegisteredServiceConfigurations* - name: RegisteredServiceConfigurations - href: api/XRTK.Definitions.BaseMixedRealityServiceProfile-1.html#XRTK_Definitions_BaseMixedRealityServiceProfile_1_RegisteredServiceConfigurations_ - commentId: Overload:XRTK.Definitions.BaseMixedRealityServiceProfile`1.RegisteredServiceConfigurations - isSpec: "True" - fullName: XRTK.Definitions.BaseMixedRealityServiceProfile.RegisteredServiceConfigurations - fullName.vb: XRTK.Definitions.BaseMixedRealityServiceProfile(Of TService).RegisteredServiceConfigurations - nameWithType: BaseMixedRealityServiceProfile.RegisteredServiceConfigurations - nameWithType.vb: BaseMixedRealityServiceProfile(Of TService).RegisteredServiceConfigurations -- uid: XRTK.Definitions.BoundarySystem - name: XRTK.Definitions.BoundarySystem - href: api/XRTK.Definitions.BoundarySystem.html - commentId: N:XRTK.Definitions.BoundarySystem - fullName: XRTK.Definitions.BoundarySystem - nameWithType: XRTK.Definitions.BoundarySystem -- uid: XRTK.Definitions.BoundarySystem.BoundaryVisibility - name: BoundaryVisibility - href: api/XRTK.Definitions.BoundarySystem.BoundaryVisibility.html - commentId: T:XRTK.Definitions.BoundarySystem.BoundaryVisibility - fullName: XRTK.Definitions.BoundarySystem.BoundaryVisibility - nameWithType: BoundaryVisibility -- uid: XRTK.Definitions.BoundarySystem.BoundaryVisibility.Hidden - name: Hidden - href: api/XRTK.Definitions.BoundarySystem.BoundaryVisibility.html#XRTK_Definitions_BoundarySystem_BoundaryVisibility_Hidden - commentId: F:XRTK.Definitions.BoundarySystem.BoundaryVisibility.Hidden - fullName: XRTK.Definitions.BoundarySystem.BoundaryVisibility.Hidden - nameWithType: BoundaryVisibility.Hidden -- uid: XRTK.Definitions.BoundarySystem.BoundaryVisibility.Unknown - name: Unknown - href: api/XRTK.Definitions.BoundarySystem.BoundaryVisibility.html#XRTK_Definitions_BoundarySystem_BoundaryVisibility_Unknown - commentId: F:XRTK.Definitions.BoundarySystem.BoundaryVisibility.Unknown - fullName: XRTK.Definitions.BoundarySystem.BoundaryVisibility.Unknown - nameWithType: BoundaryVisibility.Unknown -- uid: XRTK.Definitions.BoundarySystem.BoundaryVisibility.Visible - name: Visible - href: api/XRTK.Definitions.BoundarySystem.BoundaryVisibility.html#XRTK_Definitions_BoundarySystem_BoundaryVisibility_Visible - commentId: F:XRTK.Definitions.BoundarySystem.BoundaryVisibility.Visible - fullName: XRTK.Definitions.BoundarySystem.BoundaryVisibility.Visible - nameWithType: BoundaryVisibility.Visible -- uid: XRTK.Definitions.BoundarySystem.Edge - name: Edge - href: api/XRTK.Definitions.BoundarySystem.Edge.html - commentId: T:XRTK.Definitions.BoundarySystem.Edge - fullName: XRTK.Definitions.BoundarySystem.Edge - nameWithType: Edge -- uid: XRTK.Definitions.BoundarySystem.Edge.#ctor(UnityEngine.Vector2,UnityEngine.Vector2) - name: Edge(Vector2, Vector2) - href: api/XRTK.Definitions.BoundarySystem.Edge.html#XRTK_Definitions_BoundarySystem_Edge__ctor_UnityEngine_Vector2_UnityEngine_Vector2_ - commentId: M:XRTK.Definitions.BoundarySystem.Edge.#ctor(UnityEngine.Vector2,UnityEngine.Vector2) - fullName: XRTK.Definitions.BoundarySystem.Edge.Edge(UnityEngine.Vector2, UnityEngine.Vector2) - nameWithType: Edge.Edge(Vector2, Vector2) -- uid: XRTK.Definitions.BoundarySystem.Edge.#ctor(UnityEngine.Vector3,UnityEngine.Vector3) - name: Edge(Vector3, Vector3) - href: api/XRTK.Definitions.BoundarySystem.Edge.html#XRTK_Definitions_BoundarySystem_Edge__ctor_UnityEngine_Vector3_UnityEngine_Vector3_ - commentId: M:XRTK.Definitions.BoundarySystem.Edge.#ctor(UnityEngine.Vector3,UnityEngine.Vector3) - fullName: XRTK.Definitions.BoundarySystem.Edge.Edge(UnityEngine.Vector3, UnityEngine.Vector3) - nameWithType: Edge.Edge(Vector3, Vector3) -- uid: XRTK.Definitions.BoundarySystem.Edge.#ctor* - name: Edge - href: api/XRTK.Definitions.BoundarySystem.Edge.html#XRTK_Definitions_BoundarySystem_Edge__ctor_ - commentId: Overload:XRTK.Definitions.BoundarySystem.Edge.#ctor - isSpec: "True" - fullName: XRTK.Definitions.BoundarySystem.Edge.Edge - nameWithType: Edge.Edge -- uid: XRTK.Definitions.BoundarySystem.Edge.PointA - name: PointA - href: api/XRTK.Definitions.BoundarySystem.Edge.html#XRTK_Definitions_BoundarySystem_Edge_PointA - commentId: F:XRTK.Definitions.BoundarySystem.Edge.PointA - fullName: XRTK.Definitions.BoundarySystem.Edge.PointA - nameWithType: Edge.PointA -- uid: XRTK.Definitions.BoundarySystem.Edge.PointB - name: PointB - href: api/XRTK.Definitions.BoundarySystem.Edge.html#XRTK_Definitions_BoundarySystem_Edge_PointB - commentId: F:XRTK.Definitions.BoundarySystem.Edge.PointB - fullName: XRTK.Definitions.BoundarySystem.Edge.PointB - nameWithType: Edge.PointB -- uid: XRTK.Definitions.BoundarySystem.InscribedRectangle - name: InscribedRectangle - href: api/XRTK.Definitions.BoundarySystem.InscribedRectangle.html - commentId: T:XRTK.Definitions.BoundarySystem.InscribedRectangle - fullName: XRTK.Definitions.BoundarySystem.InscribedRectangle - nameWithType: InscribedRectangle -- uid: XRTK.Definitions.BoundarySystem.InscribedRectangle.#ctor(XRTK.Definitions.BoundarySystem.Edge[],System.Int32) - name: InscribedRectangle(Edge[], Int32) - href: api/XRTK.Definitions.BoundarySystem.InscribedRectangle.html#XRTK_Definitions_BoundarySystem_InscribedRectangle__ctor_XRTK_Definitions_BoundarySystem_Edge___System_Int32_ - commentId: M:XRTK.Definitions.BoundarySystem.InscribedRectangle.#ctor(XRTK.Definitions.BoundarySystem.Edge[],System.Int32) - name.vb: InscribedRectangle(Edge(), Int32) - fullName: XRTK.Definitions.BoundarySystem.InscribedRectangle.InscribedRectangle(XRTK.Definitions.BoundarySystem.Edge[], System.Int32) - fullName.vb: XRTK.Definitions.BoundarySystem.InscribedRectangle.InscribedRectangle(XRTK.Definitions.BoundarySystem.Edge(), System.Int32) - nameWithType: InscribedRectangle.InscribedRectangle(Edge[], Int32) - nameWithType.vb: InscribedRectangle.InscribedRectangle(Edge(), Int32) -- uid: XRTK.Definitions.BoundarySystem.InscribedRectangle.#ctor* - name: InscribedRectangle - href: api/XRTK.Definitions.BoundarySystem.InscribedRectangle.html#XRTK_Definitions_BoundarySystem_InscribedRectangle__ctor_ - commentId: Overload:XRTK.Definitions.BoundarySystem.InscribedRectangle.#ctor - isSpec: "True" - fullName: XRTK.Definitions.BoundarySystem.InscribedRectangle.InscribedRectangle - nameWithType: InscribedRectangle.InscribedRectangle -- uid: XRTK.Definitions.BoundarySystem.InscribedRectangle.Angle - name: Angle - href: api/XRTK.Definitions.BoundarySystem.InscribedRectangle.html#XRTK_Definitions_BoundarySystem_InscribedRectangle_Angle - commentId: P:XRTK.Definitions.BoundarySystem.InscribedRectangle.Angle - fullName: XRTK.Definitions.BoundarySystem.InscribedRectangle.Angle - nameWithType: InscribedRectangle.Angle -- uid: XRTK.Definitions.BoundarySystem.InscribedRectangle.Angle* - name: Angle - href: api/XRTK.Definitions.BoundarySystem.InscribedRectangle.html#XRTK_Definitions_BoundarySystem_InscribedRectangle_Angle_ - commentId: Overload:XRTK.Definitions.BoundarySystem.InscribedRectangle.Angle - isSpec: "True" - fullName: XRTK.Definitions.BoundarySystem.InscribedRectangle.Angle - nameWithType: InscribedRectangle.Angle -- uid: XRTK.Definitions.BoundarySystem.InscribedRectangle.Center - name: Center - href: api/XRTK.Definitions.BoundarySystem.InscribedRectangle.html#XRTK_Definitions_BoundarySystem_InscribedRectangle_Center - commentId: P:XRTK.Definitions.BoundarySystem.InscribedRectangle.Center - fullName: XRTK.Definitions.BoundarySystem.InscribedRectangle.Center - nameWithType: InscribedRectangle.Center -- uid: XRTK.Definitions.BoundarySystem.InscribedRectangle.Center* - name: Center - href: api/XRTK.Definitions.BoundarySystem.InscribedRectangle.html#XRTK_Definitions_BoundarySystem_InscribedRectangle_Center_ - commentId: Overload:XRTK.Definitions.BoundarySystem.InscribedRectangle.Center - isSpec: "True" - fullName: XRTK.Definitions.BoundarySystem.InscribedRectangle.Center - nameWithType: InscribedRectangle.Center -- uid: XRTK.Definitions.BoundarySystem.InscribedRectangle.Edges - name: Edges - href: api/XRTK.Definitions.BoundarySystem.InscribedRectangle.html#XRTK_Definitions_BoundarySystem_InscribedRectangle_Edges - commentId: P:XRTK.Definitions.BoundarySystem.InscribedRectangle.Edges - fullName: XRTK.Definitions.BoundarySystem.InscribedRectangle.Edges - nameWithType: InscribedRectangle.Edges -- uid: XRTK.Definitions.BoundarySystem.InscribedRectangle.Edges* - name: Edges - href: api/XRTK.Definitions.BoundarySystem.InscribedRectangle.html#XRTK_Definitions_BoundarySystem_InscribedRectangle_Edges_ - commentId: Overload:XRTK.Definitions.BoundarySystem.InscribedRectangle.Edges - isSpec: "True" - fullName: XRTK.Definitions.BoundarySystem.InscribedRectangle.Edges - nameWithType: InscribedRectangle.Edges -- uid: XRTK.Definitions.BoundarySystem.InscribedRectangle.Height - name: Height - href: api/XRTK.Definitions.BoundarySystem.InscribedRectangle.html#XRTK_Definitions_BoundarySystem_InscribedRectangle_Height - commentId: P:XRTK.Definitions.BoundarySystem.InscribedRectangle.Height - fullName: XRTK.Definitions.BoundarySystem.InscribedRectangle.Height - nameWithType: InscribedRectangle.Height -- uid: XRTK.Definitions.BoundarySystem.InscribedRectangle.Height* - name: Height - href: api/XRTK.Definitions.BoundarySystem.InscribedRectangle.html#XRTK_Definitions_BoundarySystem_InscribedRectangle_Height_ - commentId: Overload:XRTK.Definitions.BoundarySystem.InscribedRectangle.Height - isSpec: "True" - fullName: XRTK.Definitions.BoundarySystem.InscribedRectangle.Height - nameWithType: InscribedRectangle.Height -- uid: XRTK.Definitions.BoundarySystem.InscribedRectangle.IsInsideBoundary(UnityEngine.Vector2) - name: IsInsideBoundary(Vector2) - href: api/XRTK.Definitions.BoundarySystem.InscribedRectangle.html#XRTK_Definitions_BoundarySystem_InscribedRectangle_IsInsideBoundary_UnityEngine_Vector2_ - commentId: M:XRTK.Definitions.BoundarySystem.InscribedRectangle.IsInsideBoundary(UnityEngine.Vector2) - fullName: XRTK.Definitions.BoundarySystem.InscribedRectangle.IsInsideBoundary(UnityEngine.Vector2) - nameWithType: InscribedRectangle.IsInsideBoundary(Vector2) -- uid: XRTK.Definitions.BoundarySystem.InscribedRectangle.IsInsideBoundary* - name: IsInsideBoundary - href: api/XRTK.Definitions.BoundarySystem.InscribedRectangle.html#XRTK_Definitions_BoundarySystem_InscribedRectangle_IsInsideBoundary_ - commentId: Overload:XRTK.Definitions.BoundarySystem.InscribedRectangle.IsInsideBoundary - isSpec: "True" - fullName: XRTK.Definitions.BoundarySystem.InscribedRectangle.IsInsideBoundary - nameWithType: InscribedRectangle.IsInsideBoundary -- uid: XRTK.Definitions.BoundarySystem.InscribedRectangle.IsValid - name: IsValid - href: api/XRTK.Definitions.BoundarySystem.InscribedRectangle.html#XRTK_Definitions_BoundarySystem_InscribedRectangle_IsValid - commentId: P:XRTK.Definitions.BoundarySystem.InscribedRectangle.IsValid - fullName: XRTK.Definitions.BoundarySystem.InscribedRectangle.IsValid - nameWithType: InscribedRectangle.IsValid -- uid: XRTK.Definitions.BoundarySystem.InscribedRectangle.IsValid* - name: IsValid - href: api/XRTK.Definitions.BoundarySystem.InscribedRectangle.html#XRTK_Definitions_BoundarySystem_InscribedRectangle_IsValid_ - commentId: Overload:XRTK.Definitions.BoundarySystem.InscribedRectangle.IsValid - isSpec: "True" - fullName: XRTK.Definitions.BoundarySystem.InscribedRectangle.IsValid - nameWithType: InscribedRectangle.IsValid -- uid: XRTK.Definitions.BoundarySystem.InscribedRectangle.Width - name: Width - href: api/XRTK.Definitions.BoundarySystem.InscribedRectangle.html#XRTK_Definitions_BoundarySystem_InscribedRectangle_Width - commentId: P:XRTK.Definitions.BoundarySystem.InscribedRectangle.Width - fullName: XRTK.Definitions.BoundarySystem.InscribedRectangle.Width - nameWithType: InscribedRectangle.Width -- uid: XRTK.Definitions.BoundarySystem.InscribedRectangle.Width* - name: Width - href: api/XRTK.Definitions.BoundarySystem.InscribedRectangle.html#XRTK_Definitions_BoundarySystem_InscribedRectangle_Width_ - commentId: Overload:XRTK.Definitions.BoundarySystem.InscribedRectangle.Width - isSpec: "True" - fullName: XRTK.Definitions.BoundarySystem.InscribedRectangle.Width - nameWithType: InscribedRectangle.Width -- uid: XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile - name: MixedRealityBoundaryProfile - href: api/XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.html - commentId: T:XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile - fullName: XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile - nameWithType: MixedRealityBoundaryProfile -- uid: XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.BoundaryHeight - name: BoundaryHeight - href: api/XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.html#XRTK_Definitions_BoundarySystem_MixedRealityBoundaryProfile_BoundaryHeight - commentId: P:XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.BoundaryHeight - fullName: XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.BoundaryHeight - nameWithType: MixedRealityBoundaryProfile.BoundaryHeight -- uid: XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.BoundaryHeight* - name: BoundaryHeight - href: api/XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.html#XRTK_Definitions_BoundarySystem_MixedRealityBoundaryProfile_BoundaryHeight_ - commentId: Overload:XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.BoundaryHeight - isSpec: "True" - fullName: XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.BoundaryHeight - nameWithType: MixedRealityBoundaryProfile.BoundaryHeight -- uid: XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.BoundaryMaterial - name: BoundaryMaterial - href: api/XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.html#XRTK_Definitions_BoundarySystem_MixedRealityBoundaryProfile_BoundaryMaterial - commentId: P:XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.BoundaryMaterial - fullName: XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.BoundaryMaterial - nameWithType: MixedRealityBoundaryProfile.BoundaryMaterial -- uid: XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.BoundaryMaterial* - name: BoundaryMaterial - href: api/XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.html#XRTK_Definitions_BoundarySystem_MixedRealityBoundaryProfile_BoundaryMaterial_ - commentId: Overload:XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.BoundaryMaterial - isSpec: "True" - fullName: XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.BoundaryMaterial - nameWithType: MixedRealityBoundaryProfile.BoundaryMaterial -- uid: XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.CeilingMaterial - name: CeilingMaterial - href: api/XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.html#XRTK_Definitions_BoundarySystem_MixedRealityBoundaryProfile_CeilingMaterial - commentId: P:XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.CeilingMaterial - fullName: XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.CeilingMaterial - nameWithType: MixedRealityBoundaryProfile.CeilingMaterial -- uid: XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.CeilingMaterial* - name: CeilingMaterial - href: api/XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.html#XRTK_Definitions_BoundarySystem_MixedRealityBoundaryProfile_CeilingMaterial_ - commentId: Overload:XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.CeilingMaterial - isSpec: "True" - fullName: XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.CeilingMaterial - nameWithType: MixedRealityBoundaryProfile.CeilingMaterial -- uid: XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.FloorMaterial - name: FloorMaterial - href: api/XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.html#XRTK_Definitions_BoundarySystem_MixedRealityBoundaryProfile_FloorMaterial - commentId: P:XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.FloorMaterial - fullName: XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.FloorMaterial - nameWithType: MixedRealityBoundaryProfile.FloorMaterial -- uid: XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.FloorMaterial* - name: FloorMaterial - href: api/XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.html#XRTK_Definitions_BoundarySystem_MixedRealityBoundaryProfile_FloorMaterial_ - commentId: Overload:XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.FloorMaterial - isSpec: "True" - fullName: XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.FloorMaterial - nameWithType: MixedRealityBoundaryProfile.FloorMaterial -- uid: XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.PhysicsLayer - name: PhysicsLayer - href: api/XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.html#XRTK_Definitions_BoundarySystem_MixedRealityBoundaryProfile_PhysicsLayer - commentId: P:XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.PhysicsLayer - fullName: XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.PhysicsLayer - nameWithType: MixedRealityBoundaryProfile.PhysicsLayer -- uid: XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.PhysicsLayer* - name: PhysicsLayer - href: api/XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.html#XRTK_Definitions_BoundarySystem_MixedRealityBoundaryProfile_PhysicsLayer_ - commentId: Overload:XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.PhysicsLayer - isSpec: "True" - fullName: XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.PhysicsLayer - nameWithType: MixedRealityBoundaryProfile.PhysicsLayer -- uid: XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.ShowBoundary - name: ShowBoundary - href: api/XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.html#XRTK_Definitions_BoundarySystem_MixedRealityBoundaryProfile_ShowBoundary - commentId: P:XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.ShowBoundary - fullName: XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.ShowBoundary - nameWithType: MixedRealityBoundaryProfile.ShowBoundary -- uid: XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.ShowBoundary* - name: ShowBoundary - href: api/XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.html#XRTK_Definitions_BoundarySystem_MixedRealityBoundaryProfile_ShowBoundary_ - commentId: Overload:XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.ShowBoundary - isSpec: "True" - fullName: XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.ShowBoundary - nameWithType: MixedRealityBoundaryProfile.ShowBoundary -- uid: XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.ShowCeiling - name: ShowCeiling - href: api/XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.html#XRTK_Definitions_BoundarySystem_MixedRealityBoundaryProfile_ShowCeiling - commentId: P:XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.ShowCeiling - fullName: XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.ShowCeiling - nameWithType: MixedRealityBoundaryProfile.ShowCeiling -- uid: XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.ShowCeiling* - name: ShowCeiling - href: api/XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.html#XRTK_Definitions_BoundarySystem_MixedRealityBoundaryProfile_ShowCeiling_ - commentId: Overload:XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.ShowCeiling - isSpec: "True" - fullName: XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.ShowCeiling - nameWithType: MixedRealityBoundaryProfile.ShowCeiling -- uid: XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.ShowFloor - name: ShowFloor - href: api/XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.html#XRTK_Definitions_BoundarySystem_MixedRealityBoundaryProfile_ShowFloor - commentId: P:XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.ShowFloor - fullName: XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.ShowFloor - nameWithType: MixedRealityBoundaryProfile.ShowFloor -- uid: XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.ShowFloor* - name: ShowFloor - href: api/XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.html#XRTK_Definitions_BoundarySystem_MixedRealityBoundaryProfile_ShowFloor_ - commentId: Overload:XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.ShowFloor - isSpec: "True" - fullName: XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.ShowFloor - nameWithType: MixedRealityBoundaryProfile.ShowFloor -- uid: XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.ShowWalls - name: ShowWalls - href: api/XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.html#XRTK_Definitions_BoundarySystem_MixedRealityBoundaryProfile_ShowWalls - commentId: P:XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.ShowWalls - fullName: XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.ShowWalls - nameWithType: MixedRealityBoundaryProfile.ShowWalls -- uid: XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.ShowWalls* - name: ShowWalls - href: api/XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.html#XRTK_Definitions_BoundarySystem_MixedRealityBoundaryProfile_ShowWalls_ - commentId: Overload:XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.ShowWalls - isSpec: "True" - fullName: XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.ShowWalls - nameWithType: MixedRealityBoundaryProfile.ShowWalls -- uid: XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.WallMaterial - name: WallMaterial - href: api/XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.html#XRTK_Definitions_BoundarySystem_MixedRealityBoundaryProfile_WallMaterial - commentId: P:XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.WallMaterial - fullName: XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.WallMaterial - nameWithType: MixedRealityBoundaryProfile.WallMaterial -- uid: XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.WallMaterial* - name: WallMaterial - href: api/XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.html#XRTK_Definitions_BoundarySystem_MixedRealityBoundaryProfile_WallMaterial_ - commentId: Overload:XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.WallMaterial - isSpec: "True" - fullName: XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile.WallMaterial - nameWithType: MixedRealityBoundaryProfile.WallMaterial -- uid: XRTK.Definitions.BoundarySystem.ProximityAlert - name: ProximityAlert - href: api/XRTK.Definitions.BoundarySystem.ProximityAlert.html - commentId: T:XRTK.Definitions.BoundarySystem.ProximityAlert - fullName: XRTK.Definitions.BoundarySystem.ProximityAlert - nameWithType: ProximityAlert -- uid: XRTK.Definitions.BoundarySystem.ProximityAlert.Clear - name: Clear - href: api/XRTK.Definitions.BoundarySystem.ProximityAlert.html#XRTK_Definitions_BoundarySystem_ProximityAlert_Clear - commentId: F:XRTK.Definitions.BoundarySystem.ProximityAlert.Clear - fullName: XRTK.Definitions.BoundarySystem.ProximityAlert.Clear - nameWithType: ProximityAlert.Clear -- uid: XRTK.Definitions.BoundarySystem.ProximityAlert.Enter - name: Enter - href: api/XRTK.Definitions.BoundarySystem.ProximityAlert.html#XRTK_Definitions_BoundarySystem_ProximityAlert_Enter - commentId: F:XRTK.Definitions.BoundarySystem.ProximityAlert.Enter - fullName: XRTK.Definitions.BoundarySystem.ProximityAlert.Enter - nameWithType: ProximityAlert.Enter -- uid: XRTK.Definitions.BoundarySystem.ProximityAlert.Exit - name: Exit - href: api/XRTK.Definitions.BoundarySystem.ProximityAlert.html#XRTK_Definitions_BoundarySystem_ProximityAlert_Exit - commentId: F:XRTK.Definitions.BoundarySystem.ProximityAlert.Exit - fullName: XRTK.Definitions.BoundarySystem.ProximityAlert.Exit - nameWithType: ProximityAlert.Exit -- uid: XRTK.Definitions.BoundarySystem.ProximityAlert.Touch - name: Touch - href: api/XRTK.Definitions.BoundarySystem.ProximityAlert.html#XRTK_Definitions_BoundarySystem_ProximityAlert_Touch - commentId: F:XRTK.Definitions.BoundarySystem.ProximityAlert.Touch - fullName: XRTK.Definitions.BoundarySystem.ProximityAlert.Touch - nameWithType: ProximityAlert.Touch -- uid: XRTK.Definitions.CameraSystem - name: XRTK.Definitions.CameraSystem - href: api/XRTK.Definitions.CameraSystem.html - commentId: N:XRTK.Definitions.CameraSystem - fullName: XRTK.Definitions.CameraSystem - nameWithType: XRTK.Definitions.CameraSystem -- uid: XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile - name: BaseMixedRealityCameraDataProviderProfile - href: api/XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.html - commentId: T:XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile - fullName: XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile - nameWithType: BaseMixedRealityCameraDataProviderProfile -- uid: XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.BackgroundColorOpaqueDisplay - name: BackgroundColorOpaqueDisplay - href: api/XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.html#XRTK_Definitions_CameraSystem_BaseMixedRealityCameraDataProviderProfile_BackgroundColorOpaqueDisplay - commentId: P:XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.BackgroundColorOpaqueDisplay - fullName: XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.BackgroundColorOpaqueDisplay - nameWithType: BaseMixedRealityCameraDataProviderProfile.BackgroundColorOpaqueDisplay -- uid: XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.BackgroundColorOpaqueDisplay* - name: BackgroundColorOpaqueDisplay - href: api/XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.html#XRTK_Definitions_CameraSystem_BaseMixedRealityCameraDataProviderProfile_BackgroundColorOpaqueDisplay_ - commentId: Overload:XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.BackgroundColorOpaqueDisplay - isSpec: "True" - fullName: XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.BackgroundColorOpaqueDisplay - nameWithType: BaseMixedRealityCameraDataProviderProfile.BackgroundColorOpaqueDisplay -- uid: XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.BackgroundColorTransparentDisplay - name: BackgroundColorTransparentDisplay - href: api/XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.html#XRTK_Definitions_CameraSystem_BaseMixedRealityCameraDataProviderProfile_BackgroundColorTransparentDisplay - commentId: P:XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.BackgroundColorTransparentDisplay - fullName: XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.BackgroundColorTransparentDisplay - nameWithType: BaseMixedRealityCameraDataProviderProfile.BackgroundColorTransparentDisplay -- uid: XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.BackgroundColorTransparentDisplay* - name: BackgroundColorTransparentDisplay - href: api/XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.html#XRTK_Definitions_CameraSystem_BaseMixedRealityCameraDataProviderProfile_BackgroundColorTransparentDisplay_ - commentId: Overload:XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.BackgroundColorTransparentDisplay - isSpec: "True" - fullName: XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.BackgroundColorTransparentDisplay - nameWithType: BaseMixedRealityCameraDataProviderProfile.BackgroundColorTransparentDisplay -- uid: XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.BodyAdjustmentAngle - name: BodyAdjustmentAngle - href: api/XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.html#XRTK_Definitions_CameraSystem_BaseMixedRealityCameraDataProviderProfile_BodyAdjustmentAngle - commentId: P:XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.BodyAdjustmentAngle - fullName: XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.BodyAdjustmentAngle - nameWithType: BaseMixedRealityCameraDataProviderProfile.BodyAdjustmentAngle -- uid: XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.BodyAdjustmentAngle* - name: BodyAdjustmentAngle - href: api/XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.html#XRTK_Definitions_CameraSystem_BaseMixedRealityCameraDataProviderProfile_BodyAdjustmentAngle_ - commentId: Overload:XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.BodyAdjustmentAngle - isSpec: "True" - fullName: XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.BodyAdjustmentAngle - nameWithType: BaseMixedRealityCameraDataProviderProfile.BodyAdjustmentAngle -- uid: XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.BodyAdjustmentSpeed - name: BodyAdjustmentSpeed - href: api/XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.html#XRTK_Definitions_CameraSystem_BaseMixedRealityCameraDataProviderProfile_BodyAdjustmentSpeed - commentId: P:XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.BodyAdjustmentSpeed - fullName: XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.BodyAdjustmentSpeed - nameWithType: BaseMixedRealityCameraDataProviderProfile.BodyAdjustmentSpeed -- uid: XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.BodyAdjustmentSpeed* - name: BodyAdjustmentSpeed - href: api/XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.html#XRTK_Definitions_CameraSystem_BaseMixedRealityCameraDataProviderProfile_BodyAdjustmentSpeed_ - commentId: Overload:XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.BodyAdjustmentSpeed - isSpec: "True" - fullName: XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.BodyAdjustmentSpeed - nameWithType: BaseMixedRealityCameraDataProviderProfile.BodyAdjustmentSpeed -- uid: XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.CameraClearFlagsOpaqueDisplay - name: CameraClearFlagsOpaqueDisplay - href: api/XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.html#XRTK_Definitions_CameraSystem_BaseMixedRealityCameraDataProviderProfile_CameraClearFlagsOpaqueDisplay - commentId: P:XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.CameraClearFlagsOpaqueDisplay - fullName: XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.CameraClearFlagsOpaqueDisplay - nameWithType: BaseMixedRealityCameraDataProviderProfile.CameraClearFlagsOpaqueDisplay -- uid: XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.CameraClearFlagsOpaqueDisplay* - name: CameraClearFlagsOpaqueDisplay - href: api/XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.html#XRTK_Definitions_CameraSystem_BaseMixedRealityCameraDataProviderProfile_CameraClearFlagsOpaqueDisplay_ - commentId: Overload:XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.CameraClearFlagsOpaqueDisplay - isSpec: "True" - fullName: XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.CameraClearFlagsOpaqueDisplay - nameWithType: BaseMixedRealityCameraDataProviderProfile.CameraClearFlagsOpaqueDisplay -- uid: XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.CameraClearFlagsTransparentDisplay - name: CameraClearFlagsTransparentDisplay - href: api/XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.html#XRTK_Definitions_CameraSystem_BaseMixedRealityCameraDataProviderProfile_CameraClearFlagsTransparentDisplay - commentId: P:XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.CameraClearFlagsTransparentDisplay - fullName: XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.CameraClearFlagsTransparentDisplay - nameWithType: BaseMixedRealityCameraDataProviderProfile.CameraClearFlagsTransparentDisplay -- uid: XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.CameraClearFlagsTransparentDisplay* - name: CameraClearFlagsTransparentDisplay - href: api/XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.html#XRTK_Definitions_CameraSystem_BaseMixedRealityCameraDataProviderProfile_CameraClearFlagsTransparentDisplay_ - commentId: Overload:XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.CameraClearFlagsTransparentDisplay - isSpec: "True" - fullName: XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.CameraClearFlagsTransparentDisplay - nameWithType: BaseMixedRealityCameraDataProviderProfile.CameraClearFlagsTransparentDisplay -- uid: XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.CameraRigType - name: CameraRigType - href: api/XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.html#XRTK_Definitions_CameraSystem_BaseMixedRealityCameraDataProviderProfile_CameraRigType - commentId: P:XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.CameraRigType - fullName: XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.CameraRigType - nameWithType: BaseMixedRealityCameraDataProviderProfile.CameraRigType -- uid: XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.CameraRigType* - name: CameraRigType - href: api/XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.html#XRTK_Definitions_CameraSystem_BaseMixedRealityCameraDataProviderProfile_CameraRigType_ - commentId: Overload:XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.CameraRigType - isSpec: "True" - fullName: XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.CameraRigType - nameWithType: BaseMixedRealityCameraDataProviderProfile.CameraRigType -- uid: XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.DefaultHeadHeight - name: DefaultHeadHeight - href: api/XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.html#XRTK_Definitions_CameraSystem_BaseMixedRealityCameraDataProviderProfile_DefaultHeadHeight - commentId: P:XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.DefaultHeadHeight - fullName: XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.DefaultHeadHeight - nameWithType: BaseMixedRealityCameraDataProviderProfile.DefaultHeadHeight -- uid: XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.DefaultHeadHeight* - name: DefaultHeadHeight - href: api/XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.html#XRTK_Definitions_CameraSystem_BaseMixedRealityCameraDataProviderProfile_DefaultHeadHeight_ - commentId: Overload:XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.DefaultHeadHeight - isSpec: "True" - fullName: XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.DefaultHeadHeight - nameWithType: BaseMixedRealityCameraDataProviderProfile.DefaultHeadHeight -- uid: XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.IsCameraPersistent - name: IsCameraPersistent - href: api/XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.html#XRTK_Definitions_CameraSystem_BaseMixedRealityCameraDataProviderProfile_IsCameraPersistent - commentId: P:XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.IsCameraPersistent - fullName: XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.IsCameraPersistent - nameWithType: BaseMixedRealityCameraDataProviderProfile.IsCameraPersistent -- uid: XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.IsCameraPersistent* - name: IsCameraPersistent - href: api/XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.html#XRTK_Definitions_CameraSystem_BaseMixedRealityCameraDataProviderProfile_IsCameraPersistent_ - commentId: Overload:XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.IsCameraPersistent - isSpec: "True" - fullName: XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.IsCameraPersistent - nameWithType: BaseMixedRealityCameraDataProviderProfile.IsCameraPersistent -- uid: XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.NearClipPlaneOpaqueDisplay - name: NearClipPlaneOpaqueDisplay - href: api/XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.html#XRTK_Definitions_CameraSystem_BaseMixedRealityCameraDataProviderProfile_NearClipPlaneOpaqueDisplay - commentId: P:XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.NearClipPlaneOpaqueDisplay - fullName: XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.NearClipPlaneOpaqueDisplay - nameWithType: BaseMixedRealityCameraDataProviderProfile.NearClipPlaneOpaqueDisplay -- uid: XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.NearClipPlaneOpaqueDisplay* - name: NearClipPlaneOpaqueDisplay - href: api/XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.html#XRTK_Definitions_CameraSystem_BaseMixedRealityCameraDataProviderProfile_NearClipPlaneOpaqueDisplay_ - commentId: Overload:XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.NearClipPlaneOpaqueDisplay - isSpec: "True" - fullName: XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.NearClipPlaneOpaqueDisplay - nameWithType: BaseMixedRealityCameraDataProviderProfile.NearClipPlaneOpaqueDisplay -- uid: XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.NearClipPlaneTransparentDisplay - name: NearClipPlaneTransparentDisplay - href: api/XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.html#XRTK_Definitions_CameraSystem_BaseMixedRealityCameraDataProviderProfile_NearClipPlaneTransparentDisplay - commentId: P:XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.NearClipPlaneTransparentDisplay - fullName: XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.NearClipPlaneTransparentDisplay - nameWithType: BaseMixedRealityCameraDataProviderProfile.NearClipPlaneTransparentDisplay -- uid: XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.NearClipPlaneTransparentDisplay* - name: NearClipPlaneTransparentDisplay - href: api/XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.html#XRTK_Definitions_CameraSystem_BaseMixedRealityCameraDataProviderProfile_NearClipPlaneTransparentDisplay_ - commentId: Overload:XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.NearClipPlaneTransparentDisplay - isSpec: "True" - fullName: XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.NearClipPlaneTransparentDisplay - nameWithType: BaseMixedRealityCameraDataProviderProfile.NearClipPlaneTransparentDisplay -- uid: XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.OpaqueQualityLevel - name: OpaqueQualityLevel - href: api/XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.html#XRTK_Definitions_CameraSystem_BaseMixedRealityCameraDataProviderProfile_OpaqueQualityLevel - commentId: P:XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.OpaqueQualityLevel - fullName: XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.OpaqueQualityLevel - nameWithType: BaseMixedRealityCameraDataProviderProfile.OpaqueQualityLevel -- uid: XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.OpaqueQualityLevel* - name: OpaqueQualityLevel - href: api/XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.html#XRTK_Definitions_CameraSystem_BaseMixedRealityCameraDataProviderProfile_OpaqueQualityLevel_ - commentId: Overload:XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.OpaqueQualityLevel - isSpec: "True" - fullName: XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.OpaqueQualityLevel - nameWithType: BaseMixedRealityCameraDataProviderProfile.OpaqueQualityLevel -- uid: XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.TransparentQualityLevel - name: TransparentQualityLevel - href: api/XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.html#XRTK_Definitions_CameraSystem_BaseMixedRealityCameraDataProviderProfile_TransparentQualityLevel - commentId: P:XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.TransparentQualityLevel - fullName: XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.TransparentQualityLevel - nameWithType: BaseMixedRealityCameraDataProviderProfile.TransparentQualityLevel -- uid: XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.TransparentQualityLevel* - name: TransparentQualityLevel - href: api/XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.html#XRTK_Definitions_CameraSystem_BaseMixedRealityCameraDataProviderProfile_TransparentQualityLevel_ - commentId: Overload:XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.TransparentQualityLevel - isSpec: "True" - fullName: XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile.TransparentQualityLevel - nameWithType: BaseMixedRealityCameraDataProviderProfile.TransparentQualityLevel -- uid: XRTK.Definitions.CameraSystem.MixedRealityCameraSystemProfile - name: MixedRealityCameraSystemProfile - href: api/XRTK.Definitions.CameraSystem.MixedRealityCameraSystemProfile.html - commentId: T:XRTK.Definitions.CameraSystem.MixedRealityCameraSystemProfile - fullName: XRTK.Definitions.CameraSystem.MixedRealityCameraSystemProfile - nameWithType: MixedRealityCameraSystemProfile -- uid: XRTK.Definitions.CameraSystem.MixedRealityCameraSystemProfile.GlobalCameraProfile - name: GlobalCameraProfile - href: api/XRTK.Definitions.CameraSystem.MixedRealityCameraSystemProfile.html#XRTK_Definitions_CameraSystem_MixedRealityCameraSystemProfile_GlobalCameraProfile - commentId: P:XRTK.Definitions.CameraSystem.MixedRealityCameraSystemProfile.GlobalCameraProfile - fullName: XRTK.Definitions.CameraSystem.MixedRealityCameraSystemProfile.GlobalCameraProfile - nameWithType: MixedRealityCameraSystemProfile.GlobalCameraProfile -- uid: XRTK.Definitions.CameraSystem.MixedRealityCameraSystemProfile.GlobalCameraProfile* - name: GlobalCameraProfile - href: api/XRTK.Definitions.CameraSystem.MixedRealityCameraSystemProfile.html#XRTK_Definitions_CameraSystem_MixedRealityCameraSystemProfile_GlobalCameraProfile_ - commentId: Overload:XRTK.Definitions.CameraSystem.MixedRealityCameraSystemProfile.GlobalCameraProfile - isSpec: "True" - fullName: XRTK.Definitions.CameraSystem.MixedRealityCameraSystemProfile.GlobalCameraProfile - nameWithType: MixedRealityCameraSystemProfile.GlobalCameraProfile -- uid: XRTK.Definitions.Controllers - name: XRTK.Definitions.Controllers - href: api/XRTK.Definitions.Controllers.html - commentId: N:XRTK.Definitions.Controllers - fullName: XRTK.Definitions.Controllers - nameWithType: XRTK.Definitions.Controllers -- uid: XRTK.Definitions.Controllers.BaseMixedRealityControllerDataProviderProfile - name: BaseMixedRealityControllerDataProviderProfile - href: api/XRTK.Definitions.Controllers.BaseMixedRealityControllerDataProviderProfile.html - commentId: T:XRTK.Definitions.Controllers.BaseMixedRealityControllerDataProviderProfile - fullName: XRTK.Definitions.Controllers.BaseMixedRealityControllerDataProviderProfile - nameWithType: BaseMixedRealityControllerDataProviderProfile -- uid: XRTK.Definitions.Controllers.BaseMixedRealityControllerDataProviderProfile.ControllerMappingProfiles - name: ControllerMappingProfiles - href: api/XRTK.Definitions.Controllers.BaseMixedRealityControllerDataProviderProfile.html#XRTK_Definitions_Controllers_BaseMixedRealityControllerDataProviderProfile_ControllerMappingProfiles - commentId: P:XRTK.Definitions.Controllers.BaseMixedRealityControllerDataProviderProfile.ControllerMappingProfiles - fullName: XRTK.Definitions.Controllers.BaseMixedRealityControllerDataProviderProfile.ControllerMappingProfiles - nameWithType: BaseMixedRealityControllerDataProviderProfile.ControllerMappingProfiles -- uid: XRTK.Definitions.Controllers.BaseMixedRealityControllerDataProviderProfile.ControllerMappingProfiles* - name: ControllerMappingProfiles - href: api/XRTK.Definitions.Controllers.BaseMixedRealityControllerDataProviderProfile.html#XRTK_Definitions_Controllers_BaseMixedRealityControllerDataProviderProfile_ControllerMappingProfiles_ - commentId: Overload:XRTK.Definitions.Controllers.BaseMixedRealityControllerDataProviderProfile.ControllerMappingProfiles - isSpec: "True" - fullName: XRTK.Definitions.Controllers.BaseMixedRealityControllerDataProviderProfile.ControllerMappingProfiles - nameWithType: BaseMixedRealityControllerDataProviderProfile.ControllerMappingProfiles -- uid: XRTK.Definitions.Controllers.BaseMixedRealityControllerDataProviderProfile.GetDefaultControllerOptions - name: GetDefaultControllerOptions() - href: api/XRTK.Definitions.Controllers.BaseMixedRealityControllerDataProviderProfile.html#XRTK_Definitions_Controllers_BaseMixedRealityControllerDataProviderProfile_GetDefaultControllerOptions - commentId: M:XRTK.Definitions.Controllers.BaseMixedRealityControllerDataProviderProfile.GetDefaultControllerOptions - fullName: XRTK.Definitions.Controllers.BaseMixedRealityControllerDataProviderProfile.GetDefaultControllerOptions() - nameWithType: BaseMixedRealityControllerDataProviderProfile.GetDefaultControllerOptions() -- uid: XRTK.Definitions.Controllers.BaseMixedRealityControllerDataProviderProfile.GetDefaultControllerOptions* - name: GetDefaultControllerOptions - href: api/XRTK.Definitions.Controllers.BaseMixedRealityControllerDataProviderProfile.html#XRTK_Definitions_Controllers_BaseMixedRealityControllerDataProviderProfile_GetDefaultControllerOptions_ - commentId: Overload:XRTK.Definitions.Controllers.BaseMixedRealityControllerDataProviderProfile.GetDefaultControllerOptions - isSpec: "True" - fullName: XRTK.Definitions.Controllers.BaseMixedRealityControllerDataProviderProfile.GetDefaultControllerOptions - nameWithType: BaseMixedRealityControllerDataProviderProfile.GetDefaultControllerOptions -- uid: XRTK.Definitions.Controllers.BaseMixedRealityControllerDataProviderProfile.HasSetupDefaults - name: HasSetupDefaults - href: api/XRTK.Definitions.Controllers.BaseMixedRealityControllerDataProviderProfile.html#XRTK_Definitions_Controllers_BaseMixedRealityControllerDataProviderProfile_HasSetupDefaults - commentId: P:XRTK.Definitions.Controllers.BaseMixedRealityControllerDataProviderProfile.HasSetupDefaults - fullName: XRTK.Definitions.Controllers.BaseMixedRealityControllerDataProviderProfile.HasSetupDefaults - nameWithType: BaseMixedRealityControllerDataProviderProfile.HasSetupDefaults -- uid: XRTK.Definitions.Controllers.BaseMixedRealityControllerDataProviderProfile.HasSetupDefaults* - name: HasSetupDefaults - href: api/XRTK.Definitions.Controllers.BaseMixedRealityControllerDataProviderProfile.html#XRTK_Definitions_Controllers_BaseMixedRealityControllerDataProviderProfile_HasSetupDefaults_ - commentId: Overload:XRTK.Definitions.Controllers.BaseMixedRealityControllerDataProviderProfile.HasSetupDefaults - isSpec: "True" - fullName: XRTK.Definitions.Controllers.BaseMixedRealityControllerDataProviderProfile.HasSetupDefaults - nameWithType: BaseMixedRealityControllerDataProviderProfile.HasSetupDefaults -- uid: XRTK.Definitions.Controllers.ControllerDefinition - name: ControllerDefinition - href: api/XRTK.Definitions.Controllers.ControllerDefinition.html - commentId: T:XRTK.Definitions.Controllers.ControllerDefinition - fullName: XRTK.Definitions.Controllers.ControllerDefinition - nameWithType: ControllerDefinition -- uid: XRTK.Definitions.Controllers.ControllerDefinition.#ctor(System.String,XRTK.Definitions.Utilities.SystemType,XRTK.Definitions.Utilities.Handedness,System.Boolean) - name: ControllerDefinition(String, SystemType, Handedness, Boolean) - href: api/XRTK.Definitions.Controllers.ControllerDefinition.html#XRTK_Definitions_Controllers_ControllerDefinition__ctor_System_String_XRTK_Definitions_Utilities_SystemType_XRTK_Definitions_Utilities_Handedness_System_Boolean_ - commentId: M:XRTK.Definitions.Controllers.ControllerDefinition.#ctor(System.String,XRTK.Definitions.Utilities.SystemType,XRTK.Definitions.Utilities.Handedness,System.Boolean) - fullName: XRTK.Definitions.Controllers.ControllerDefinition.ControllerDefinition(System.String, XRTK.Definitions.Utilities.SystemType, XRTK.Definitions.Utilities.Handedness, System.Boolean) - nameWithType: ControllerDefinition.ControllerDefinition(String, SystemType, Handedness, Boolean) -- uid: XRTK.Definitions.Controllers.ControllerDefinition.#ctor(XRTK.Definitions.Utilities.SystemType,XRTK.Definitions.Utilities.Handedness,System.Boolean) - name: ControllerDefinition(SystemType, Handedness, Boolean) - href: api/XRTK.Definitions.Controllers.ControllerDefinition.html#XRTK_Definitions_Controllers_ControllerDefinition__ctor_XRTK_Definitions_Utilities_SystemType_XRTK_Definitions_Utilities_Handedness_System_Boolean_ - commentId: M:XRTK.Definitions.Controllers.ControllerDefinition.#ctor(XRTK.Definitions.Utilities.SystemType,XRTK.Definitions.Utilities.Handedness,System.Boolean) - fullName: XRTK.Definitions.Controllers.ControllerDefinition.ControllerDefinition(XRTK.Definitions.Utilities.SystemType, XRTK.Definitions.Utilities.Handedness, System.Boolean) - nameWithType: ControllerDefinition.ControllerDefinition(SystemType, Handedness, Boolean) -- uid: XRTK.Definitions.Controllers.ControllerDefinition.#ctor* - name: ControllerDefinition - href: api/XRTK.Definitions.Controllers.ControllerDefinition.html#XRTK_Definitions_Controllers_ControllerDefinition__ctor_ - commentId: Overload:XRTK.Definitions.Controllers.ControllerDefinition.#ctor - isSpec: "True" - fullName: XRTK.Definitions.Controllers.ControllerDefinition.ControllerDefinition - nameWithType: ControllerDefinition.ControllerDefinition -- uid: XRTK.Definitions.Controllers.ControllerDefinition.ControllerType - name: ControllerType - href: api/XRTK.Definitions.Controllers.ControllerDefinition.html#XRTK_Definitions_Controllers_ControllerDefinition_ControllerType - commentId: F:XRTK.Definitions.Controllers.ControllerDefinition.ControllerType - fullName: XRTK.Definitions.Controllers.ControllerDefinition.ControllerType - nameWithType: ControllerDefinition.ControllerType -- uid: XRTK.Definitions.Controllers.ControllerDefinition.Description - name: Description - href: api/XRTK.Definitions.Controllers.ControllerDefinition.html#XRTK_Definitions_Controllers_ControllerDefinition_Description - commentId: F:XRTK.Definitions.Controllers.ControllerDefinition.Description - fullName: XRTK.Definitions.Controllers.ControllerDefinition.Description - nameWithType: ControllerDefinition.Description -- uid: XRTK.Definitions.Controllers.ControllerDefinition.Handedness - name: Handedness - href: api/XRTK.Definitions.Controllers.ControllerDefinition.html#XRTK_Definitions_Controllers_ControllerDefinition_Handedness - commentId: F:XRTK.Definitions.Controllers.ControllerDefinition.Handedness - fullName: XRTK.Definitions.Controllers.ControllerDefinition.Handedness - nameWithType: ControllerDefinition.Handedness -- uid: XRTK.Definitions.Controllers.ControllerDefinition.UseCustomInteractions - name: UseCustomInteractions - href: api/XRTK.Definitions.Controllers.ControllerDefinition.html#XRTK_Definitions_Controllers_ControllerDefinition_UseCustomInteractions - commentId: F:XRTK.Definitions.Controllers.ControllerDefinition.UseCustomInteractions - fullName: XRTK.Definitions.Controllers.ControllerDefinition.UseCustomInteractions - nameWithType: ControllerDefinition.UseCustomInteractions -- uid: XRTK.Definitions.Controllers.Hands - name: XRTK.Definitions.Controllers.Hands - href: api/XRTK.Definitions.Controllers.Hands.html - commentId: N:XRTK.Definitions.Controllers.Hands - fullName: XRTK.Definitions.Controllers.Hands - nameWithType: XRTK.Definitions.Controllers.Hands -- uid: XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile - name: BaseHandControllerDataProviderProfile - href: api/XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.html - commentId: T:XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile - fullName: XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile - nameWithType: BaseHandControllerDataProviderProfile -- uid: XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.BoundsMode - name: BoundsMode - href: api/XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.html#XRTK_Definitions_Controllers_Hands_BaseHandControllerDataProviderProfile_BoundsMode - commentId: P:XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.BoundsMode - fullName: XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.BoundsMode - nameWithType: BaseHandControllerDataProviderProfile.BoundsMode -- uid: XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.BoundsMode* - name: BoundsMode - href: api/XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.html#XRTK_Definitions_Controllers_Hands_BaseHandControllerDataProviderProfile_BoundsMode_ - commentId: Overload:XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.BoundsMode - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.BoundsMode - nameWithType: BaseHandControllerDataProviderProfile.BoundsMode -- uid: XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.GetDefaultControllerOptions - name: GetDefaultControllerOptions() - href: api/XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.html#XRTK_Definitions_Controllers_Hands_BaseHandControllerDataProviderProfile_GetDefaultControllerOptions - commentId: M:XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.GetDefaultControllerOptions - fullName: XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.GetDefaultControllerOptions() - nameWithType: BaseHandControllerDataProviderProfile.GetDefaultControllerOptions() -- uid: XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.GetDefaultControllerOptions* - name: GetDefaultControllerOptions - href: api/XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.html#XRTK_Definitions_Controllers_Hands_BaseHandControllerDataProviderProfile_GetDefaultControllerOptions_ - commentId: Overload:XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.GetDefaultControllerOptions - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.GetDefaultControllerOptions - nameWithType: BaseHandControllerDataProviderProfile.GetDefaultControllerOptions -- uid: XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.GripThreshold - name: GripThreshold - href: api/XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.html#XRTK_Definitions_Controllers_Hands_BaseHandControllerDataProviderProfile_GripThreshold - commentId: P:XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.GripThreshold - fullName: XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.GripThreshold - nameWithType: BaseHandControllerDataProviderProfile.GripThreshold -- uid: XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.GripThreshold* - name: GripThreshold - href: api/XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.html#XRTK_Definitions_Controllers_Hands_BaseHandControllerDataProviderProfile_GripThreshold_ - commentId: Overload:XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.GripThreshold - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.GripThreshold - nameWithType: BaseHandControllerDataProviderProfile.GripThreshold -- uid: XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.HandPhysicsEnabled - name: HandPhysicsEnabled - href: api/XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.html#XRTK_Definitions_Controllers_Hands_BaseHandControllerDataProviderProfile_HandPhysicsEnabled - commentId: P:XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.HandPhysicsEnabled - fullName: XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.HandPhysicsEnabled - nameWithType: BaseHandControllerDataProviderProfile.HandPhysicsEnabled -- uid: XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.HandPhysicsEnabled* - name: HandPhysicsEnabled - href: api/XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.html#XRTK_Definitions_Controllers_Hands_BaseHandControllerDataProviderProfile_HandPhysicsEnabled_ - commentId: Overload:XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.HandPhysicsEnabled - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.HandPhysicsEnabled - nameWithType: BaseHandControllerDataProviderProfile.HandPhysicsEnabled -- uid: XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.RenderingMode - name: RenderingMode - href: api/XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.html#XRTK_Definitions_Controllers_Hands_BaseHandControllerDataProviderProfile_RenderingMode - commentId: P:XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.RenderingMode - fullName: XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.RenderingMode - nameWithType: BaseHandControllerDataProviderProfile.RenderingMode -- uid: XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.RenderingMode* - name: RenderingMode - href: api/XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.html#XRTK_Definitions_Controllers_Hands_BaseHandControllerDataProviderProfile_RenderingMode_ - commentId: Overload:XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.RenderingMode - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.RenderingMode - nameWithType: BaseHandControllerDataProviderProfile.RenderingMode -- uid: XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.TrackedPoses - name: TrackedPoses - href: api/XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.html#XRTK_Definitions_Controllers_Hands_BaseHandControllerDataProviderProfile_TrackedPoses - commentId: P:XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.TrackedPoses - fullName: XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.TrackedPoses - nameWithType: BaseHandControllerDataProviderProfile.TrackedPoses -- uid: XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.TrackedPoses* - name: TrackedPoses - href: api/XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.html#XRTK_Definitions_Controllers_Hands_BaseHandControllerDataProviderProfile_TrackedPoses_ - commentId: Overload:XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.TrackedPoses - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.TrackedPoses - nameWithType: BaseHandControllerDataProviderProfile.TrackedPoses -- uid: XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.UseTriggers - name: UseTriggers - href: api/XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.html#XRTK_Definitions_Controllers_Hands_BaseHandControllerDataProviderProfile_UseTriggers - commentId: P:XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.UseTriggers - fullName: XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.UseTriggers - nameWithType: BaseHandControllerDataProviderProfile.UseTriggers -- uid: XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.UseTriggers* - name: UseTriggers - href: api/XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.html#XRTK_Definitions_Controllers_Hands_BaseHandControllerDataProviderProfile_UseTriggers_ - commentId: Overload:XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.UseTriggers - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile.UseTriggers - nameWithType: BaseHandControllerDataProviderProfile.UseTriggers -- uid: XRTK.Definitions.Controllers.Hands.HandBoundsLOD - name: HandBoundsLOD - href: api/XRTK.Definitions.Controllers.Hands.HandBoundsLOD.html - commentId: T:XRTK.Definitions.Controllers.Hands.HandBoundsLOD - fullName: XRTK.Definitions.Controllers.Hands.HandBoundsLOD - nameWithType: HandBoundsLOD -- uid: XRTK.Definitions.Controllers.Hands.HandBoundsLOD.High - name: High - href: api/XRTK.Definitions.Controllers.Hands.HandBoundsLOD.html#XRTK_Definitions_Controllers_Hands_HandBoundsLOD_High - commentId: F:XRTK.Definitions.Controllers.Hands.HandBoundsLOD.High - fullName: XRTK.Definitions.Controllers.Hands.HandBoundsLOD.High - nameWithType: HandBoundsLOD.High -- uid: XRTK.Definitions.Controllers.Hands.HandBoundsLOD.Low - name: Low - href: api/XRTK.Definitions.Controllers.Hands.HandBoundsLOD.html#XRTK_Definitions_Controllers_Hands_HandBoundsLOD_Low - commentId: F:XRTK.Definitions.Controllers.Hands.HandBoundsLOD.Low - fullName: XRTK.Definitions.Controllers.Hands.HandBoundsLOD.Low - nameWithType: HandBoundsLOD.Low -- uid: XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile - name: HandControllerPoseProfile - href: api/XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.html - commentId: T:XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile - fullName: XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile - nameWithType: HandControllerPoseProfile -- uid: XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.Data - name: Data - href: api/XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.html#XRTK_Definitions_Controllers_Hands_HandControllerPoseProfile_Data - commentId: P:XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.Data - fullName: XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.Data - nameWithType: HandControllerPoseProfile.Data -- uid: XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.Data* - name: Data - href: api/XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.html#XRTK_Definitions_Controllers_Hands_HandControllerPoseProfile_Data_ - commentId: Overload:XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.Data - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.Data - nameWithType: HandControllerPoseProfile.Data -- uid: XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.Description - name: Description - href: api/XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.html#XRTK_Definitions_Controllers_Hands_HandControllerPoseProfile_Description - commentId: P:XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.Description - fullName: XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.Description - nameWithType: HandControllerPoseProfile.Description -- uid: XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.Description* - name: Description - href: api/XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.html#XRTK_Definitions_Controllers_Hands_HandControllerPoseProfile_Description_ - commentId: Overload:XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.Description - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.Description - nameWithType: HandControllerPoseProfile.Description -- uid: XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.DidBake - name: DidBake - href: api/XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.html#XRTK_Definitions_Controllers_Hands_HandControllerPoseProfile_DidBake - commentId: P:XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.DidBake - fullName: XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.DidBake - nameWithType: HandControllerPoseProfile.DidBake -- uid: XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.DidBake* - name: DidBake - href: api/XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.html#XRTK_Definitions_Controllers_Hands_HandControllerPoseProfile_DidBake_ - commentId: Overload:XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.DidBake - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.DidBake - nameWithType: HandControllerPoseProfile.DidBake -- uid: XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.FingerCurlStrengths - name: FingerCurlStrengths - href: api/XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.html#XRTK_Definitions_Controllers_Hands_HandControllerPoseProfile_FingerCurlStrengths - commentId: P:XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.FingerCurlStrengths - fullName: XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.FingerCurlStrengths - nameWithType: HandControllerPoseProfile.FingerCurlStrengths -- uid: XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.FingerCurlStrengths* - name: FingerCurlStrengths - href: api/XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.html#XRTK_Definitions_Controllers_Hands_HandControllerPoseProfile_FingerCurlStrengths_ - commentId: Overload:XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.FingerCurlStrengths - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.FingerCurlStrengths - nameWithType: HandControllerPoseProfile.FingerCurlStrengths -- uid: XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.GripStrength - name: GripStrength - href: api/XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.html#XRTK_Definitions_Controllers_Hands_HandControllerPoseProfile_GripStrength - commentId: P:XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.GripStrength - fullName: XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.GripStrength - nameWithType: HandControllerPoseProfile.GripStrength -- uid: XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.GripStrength* - name: GripStrength - href: api/XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.html#XRTK_Definitions_Controllers_Hands_HandControllerPoseProfile_GripStrength_ - commentId: Overload:XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.GripStrength - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.GripStrength - nameWithType: HandControllerPoseProfile.GripStrength -- uid: XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.Id - name: Id - href: api/XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.html#XRTK_Definitions_Controllers_Hands_HandControllerPoseProfile_Id - commentId: P:XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.Id - fullName: XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.Id - nameWithType: HandControllerPoseProfile.Id -- uid: XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.Id* - name: Id - href: api/XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.html#XRTK_Definitions_Controllers_Hands_HandControllerPoseProfile_Id_ - commentId: Overload:XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.Id - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.Id - nameWithType: HandControllerPoseProfile.Id -- uid: XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.IsDefault - name: IsDefault - href: api/XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.html#XRTK_Definitions_Controllers_Hands_HandControllerPoseProfile_IsDefault - commentId: P:XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.IsDefault - fullName: XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.IsDefault - nameWithType: HandControllerPoseProfile.IsDefault -- uid: XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.IsDefault* - name: IsDefault - href: api/XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.html#XRTK_Definitions_Controllers_Hands_HandControllerPoseProfile_IsDefault_ - commentId: Overload:XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.IsDefault - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.IsDefault - nameWithType: HandControllerPoseProfile.IsDefault -- uid: XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.IsGripping - name: IsGripping - href: api/XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.html#XRTK_Definitions_Controllers_Hands_HandControllerPoseProfile_IsGripping - commentId: P:XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.IsGripping - fullName: XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.IsGripping - nameWithType: HandControllerPoseProfile.IsGripping -- uid: XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.IsGripping* - name: IsGripping - href: api/XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.html#XRTK_Definitions_Controllers_Hands_HandControllerPoseProfile_IsGripping_ - commentId: Overload:XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.IsGripping - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.IsGripping - nameWithType: HandControllerPoseProfile.IsGripping -- uid: XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.KeyCode - name: KeyCode - href: api/XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.html#XRTK_Definitions_Controllers_Hands_HandControllerPoseProfile_KeyCode - commentId: P:XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.KeyCode - fullName: XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.KeyCode - nameWithType: HandControllerPoseProfile.KeyCode -- uid: XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.KeyCode* - name: KeyCode - href: api/XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.html#XRTK_Definitions_Controllers_Hands_HandControllerPoseProfile_KeyCode_ - commentId: Overload:XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.KeyCode - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile.KeyCode - nameWithType: HandControllerPoseProfile.KeyCode -- uid: XRTK.Definitions.Controllers.Hands.HandData - name: HandData - href: api/XRTK.Definitions.Controllers.Hands.HandData.html - commentId: T:XRTK.Definitions.Controllers.Hands.HandData - fullName: XRTK.Definitions.Controllers.Hands.HandData - nameWithType: HandData -- uid: XRTK.Definitions.Controllers.Hands.HandData.#ctor(XRTK.Definitions.Utilities.MixedRealityPose,XRTK.Definitions.Utilities.MixedRealityPose[]) - name: HandData(MixedRealityPose, MixedRealityPose[]) - href: api/XRTK.Definitions.Controllers.Hands.HandData.html#XRTK_Definitions_Controllers_Hands_HandData__ctor_XRTK_Definitions_Utilities_MixedRealityPose_XRTK_Definitions_Utilities_MixedRealityPose___ - commentId: M:XRTK.Definitions.Controllers.Hands.HandData.#ctor(XRTK.Definitions.Utilities.MixedRealityPose,XRTK.Definitions.Utilities.MixedRealityPose[]) - name.vb: HandData(MixedRealityPose, MixedRealityPose()) - fullName: XRTK.Definitions.Controllers.Hands.HandData.HandData(XRTK.Definitions.Utilities.MixedRealityPose, XRTK.Definitions.Utilities.MixedRealityPose[]) - fullName.vb: XRTK.Definitions.Controllers.Hands.HandData.HandData(XRTK.Definitions.Utilities.MixedRealityPose, XRTK.Definitions.Utilities.MixedRealityPose()) - nameWithType: HandData.HandData(MixedRealityPose, MixedRealityPose[]) - nameWithType.vb: HandData.HandData(MixedRealityPose, MixedRealityPose()) -- uid: XRTK.Definitions.Controllers.Hands.HandData.#ctor* - name: HandData - href: api/XRTK.Definitions.Controllers.Hands.HandData.html#XRTK_Definitions_Controllers_Hands_HandData__ctor_ - commentId: Overload:XRTK.Definitions.Controllers.Hands.HandData.#ctor - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Hands.HandData.HandData - nameWithType: HandData.HandData -- uid: XRTK.Definitions.Controllers.Hands.HandData.FingerCurlStrengths - name: FingerCurlStrengths - href: api/XRTK.Definitions.Controllers.Hands.HandData.html#XRTK_Definitions_Controllers_Hands_HandData_FingerCurlStrengths - commentId: P:XRTK.Definitions.Controllers.Hands.HandData.FingerCurlStrengths - fullName: XRTK.Definitions.Controllers.Hands.HandData.FingerCurlStrengths - nameWithType: HandData.FingerCurlStrengths -- uid: XRTK.Definitions.Controllers.Hands.HandData.FingerCurlStrengths* - name: FingerCurlStrengths - href: api/XRTK.Definitions.Controllers.Hands.HandData.html#XRTK_Definitions_Controllers_Hands_HandData_FingerCurlStrengths_ - commentId: Overload:XRTK.Definitions.Controllers.Hands.HandData.FingerCurlStrengths - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Hands.HandData.FingerCurlStrengths - nameWithType: HandData.FingerCurlStrengths -- uid: XRTK.Definitions.Controllers.Hands.HandData.GripStrength - name: GripStrength - href: api/XRTK.Definitions.Controllers.Hands.HandData.html#XRTK_Definitions_Controllers_Hands_HandData_GripStrength - commentId: P:XRTK.Definitions.Controllers.Hands.HandData.GripStrength - fullName: XRTK.Definitions.Controllers.Hands.HandData.GripStrength - nameWithType: HandData.GripStrength -- uid: XRTK.Definitions.Controllers.Hands.HandData.GripStrength* - name: GripStrength - href: api/XRTK.Definitions.Controllers.Hands.HandData.html#XRTK_Definitions_Controllers_Hands_HandData_GripStrength_ - commentId: Overload:XRTK.Definitions.Controllers.Hands.HandData.GripStrength - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Hands.HandData.GripStrength - nameWithType: HandData.GripStrength -- uid: XRTK.Definitions.Controllers.Hands.HandData.IsGripping - name: IsGripping - href: api/XRTK.Definitions.Controllers.Hands.HandData.html#XRTK_Definitions_Controllers_Hands_HandData_IsGripping - commentId: P:XRTK.Definitions.Controllers.Hands.HandData.IsGripping - fullName: XRTK.Definitions.Controllers.Hands.HandData.IsGripping - nameWithType: HandData.IsGripping -- uid: XRTK.Definitions.Controllers.Hands.HandData.IsGripping* - name: IsGripping - href: api/XRTK.Definitions.Controllers.Hands.HandData.html#XRTK_Definitions_Controllers_Hands_HandData_IsGripping_ - commentId: Overload:XRTK.Definitions.Controllers.Hands.HandData.IsGripping - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Hands.HandData.IsGripping - nameWithType: HandData.IsGripping -- uid: XRTK.Definitions.Controllers.Hands.HandData.IsPinching - name: IsPinching - href: api/XRTK.Definitions.Controllers.Hands.HandData.html#XRTK_Definitions_Controllers_Hands_HandData_IsPinching - commentId: P:XRTK.Definitions.Controllers.Hands.HandData.IsPinching - fullName: XRTK.Definitions.Controllers.Hands.HandData.IsPinching - nameWithType: HandData.IsPinching -- uid: XRTK.Definitions.Controllers.Hands.HandData.IsPinching* - name: IsPinching - href: api/XRTK.Definitions.Controllers.Hands.HandData.html#XRTK_Definitions_Controllers_Hands_HandData_IsPinching_ - commentId: Overload:XRTK.Definitions.Controllers.Hands.HandData.IsPinching - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Hands.HandData.IsPinching - nameWithType: HandData.IsPinching -- uid: XRTK.Definitions.Controllers.Hands.HandData.IsPointing - name: IsPointing - href: api/XRTK.Definitions.Controllers.Hands.HandData.html#XRTK_Definitions_Controllers_Hands_HandData_IsPointing - commentId: P:XRTK.Definitions.Controllers.Hands.HandData.IsPointing - fullName: XRTK.Definitions.Controllers.Hands.HandData.IsPointing - nameWithType: HandData.IsPointing -- uid: XRTK.Definitions.Controllers.Hands.HandData.IsPointing* - name: IsPointing - href: api/XRTK.Definitions.Controllers.Hands.HandData.html#XRTK_Definitions_Controllers_Hands_HandData_IsPointing_ - commentId: Overload:XRTK.Definitions.Controllers.Hands.HandData.IsPointing - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Hands.HandData.IsPointing - nameWithType: HandData.IsPointing -- uid: XRTK.Definitions.Controllers.Hands.HandData.JointCount - name: JointCount - href: api/XRTK.Definitions.Controllers.Hands.HandData.html#XRTK_Definitions_Controllers_Hands_HandData_JointCount - commentId: F:XRTK.Definitions.Controllers.Hands.HandData.JointCount - fullName: XRTK.Definitions.Controllers.Hands.HandData.JointCount - nameWithType: HandData.JointCount -- uid: XRTK.Definitions.Controllers.Hands.HandData.Joints - name: Joints - href: api/XRTK.Definitions.Controllers.Hands.HandData.html#XRTK_Definitions_Controllers_Hands_HandData_Joints - commentId: P:XRTK.Definitions.Controllers.Hands.HandData.Joints - fullName: XRTK.Definitions.Controllers.Hands.HandData.Joints - nameWithType: HandData.Joints -- uid: XRTK.Definitions.Controllers.Hands.HandData.Joints* - name: Joints - href: api/XRTK.Definitions.Controllers.Hands.HandData.html#XRTK_Definitions_Controllers_Hands_HandData_Joints_ - commentId: Overload:XRTK.Definitions.Controllers.Hands.HandData.Joints - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Hands.HandData.Joints - nameWithType: HandData.Joints -- uid: XRTK.Definitions.Controllers.Hands.HandData.Mesh - name: Mesh - href: api/XRTK.Definitions.Controllers.Hands.HandData.html#XRTK_Definitions_Controllers_Hands_HandData_Mesh - commentId: P:XRTK.Definitions.Controllers.Hands.HandData.Mesh - fullName: XRTK.Definitions.Controllers.Hands.HandData.Mesh - nameWithType: HandData.Mesh -- uid: XRTK.Definitions.Controllers.Hands.HandData.Mesh* - name: Mesh - href: api/XRTK.Definitions.Controllers.Hands.HandData.html#XRTK_Definitions_Controllers_Hands_HandData_Mesh_ - commentId: Overload:XRTK.Definitions.Controllers.Hands.HandData.Mesh - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Hands.HandData.Mesh - nameWithType: HandData.Mesh -- uid: XRTK.Definitions.Controllers.Hands.HandData.PinchStrength - name: PinchStrength - href: api/XRTK.Definitions.Controllers.Hands.HandData.html#XRTK_Definitions_Controllers_Hands_HandData_PinchStrength - commentId: P:XRTK.Definitions.Controllers.Hands.HandData.PinchStrength - fullName: XRTK.Definitions.Controllers.Hands.HandData.PinchStrength - nameWithType: HandData.PinchStrength -- uid: XRTK.Definitions.Controllers.Hands.HandData.PinchStrength* - name: PinchStrength - href: api/XRTK.Definitions.Controllers.Hands.HandData.html#XRTK_Definitions_Controllers_Hands_HandData_PinchStrength_ - commentId: Overload:XRTK.Definitions.Controllers.Hands.HandData.PinchStrength - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Hands.HandData.PinchStrength - nameWithType: HandData.PinchStrength -- uid: XRTK.Definitions.Controllers.Hands.HandData.PointerPose - name: PointerPose - href: api/XRTK.Definitions.Controllers.Hands.HandData.html#XRTK_Definitions_Controllers_Hands_HandData_PointerPose - commentId: P:XRTK.Definitions.Controllers.Hands.HandData.PointerPose - fullName: XRTK.Definitions.Controllers.Hands.HandData.PointerPose - nameWithType: HandData.PointerPose -- uid: XRTK.Definitions.Controllers.Hands.HandData.PointerPose* - name: PointerPose - href: api/XRTK.Definitions.Controllers.Hands.HandData.html#XRTK_Definitions_Controllers_Hands_HandData_PointerPose_ - commentId: Overload:XRTK.Definitions.Controllers.Hands.HandData.PointerPose - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Hands.HandData.PointerPose - nameWithType: HandData.PointerPose -- uid: XRTK.Definitions.Controllers.Hands.HandData.RootPose - name: RootPose - href: api/XRTK.Definitions.Controllers.Hands.HandData.html#XRTK_Definitions_Controllers_Hands_HandData_RootPose - commentId: P:XRTK.Definitions.Controllers.Hands.HandData.RootPose - fullName: XRTK.Definitions.Controllers.Hands.HandData.RootPose - nameWithType: HandData.RootPose -- uid: XRTK.Definitions.Controllers.Hands.HandData.RootPose* - name: RootPose - href: api/XRTK.Definitions.Controllers.Hands.HandData.html#XRTK_Definitions_Controllers_Hands_HandData_RootPose_ - commentId: Overload:XRTK.Definitions.Controllers.Hands.HandData.RootPose - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Hands.HandData.RootPose - nameWithType: HandData.RootPose -- uid: XRTK.Definitions.Controllers.Hands.HandData.TrackedPoseId - name: TrackedPoseId - href: api/XRTK.Definitions.Controllers.Hands.HandData.html#XRTK_Definitions_Controllers_Hands_HandData_TrackedPoseId - commentId: P:XRTK.Definitions.Controllers.Hands.HandData.TrackedPoseId - fullName: XRTK.Definitions.Controllers.Hands.HandData.TrackedPoseId - nameWithType: HandData.TrackedPoseId -- uid: XRTK.Definitions.Controllers.Hands.HandData.TrackedPoseId* - name: TrackedPoseId - href: api/XRTK.Definitions.Controllers.Hands.HandData.html#XRTK_Definitions_Controllers_Hands_HandData_TrackedPoseId_ - commentId: Overload:XRTK.Definitions.Controllers.Hands.HandData.TrackedPoseId - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Hands.HandData.TrackedPoseId - nameWithType: HandData.TrackedPoseId -- uid: XRTK.Definitions.Controllers.Hands.HandData.TrackingState - name: TrackingState - href: api/XRTK.Definitions.Controllers.Hands.HandData.html#XRTK_Definitions_Controllers_Hands_HandData_TrackingState - commentId: P:XRTK.Definitions.Controllers.Hands.HandData.TrackingState - fullName: XRTK.Definitions.Controllers.Hands.HandData.TrackingState - nameWithType: HandData.TrackingState -- uid: XRTK.Definitions.Controllers.Hands.HandData.TrackingState* - name: TrackingState - href: api/XRTK.Definitions.Controllers.Hands.HandData.html#XRTK_Definitions_Controllers_Hands_HandData_TrackingState_ - commentId: Overload:XRTK.Definitions.Controllers.Hands.HandData.TrackingState - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Hands.HandData.TrackingState - nameWithType: HandData.TrackingState -- uid: XRTK.Definitions.Controllers.Hands.HandData.UpdatedAt - name: UpdatedAt - href: api/XRTK.Definitions.Controllers.Hands.HandData.html#XRTK_Definitions_Controllers_Hands_HandData_UpdatedAt - commentId: P:XRTK.Definitions.Controllers.Hands.HandData.UpdatedAt - fullName: XRTK.Definitions.Controllers.Hands.HandData.UpdatedAt - nameWithType: HandData.UpdatedAt -- uid: XRTK.Definitions.Controllers.Hands.HandData.UpdatedAt* - name: UpdatedAt - href: api/XRTK.Definitions.Controllers.Hands.HandData.html#XRTK_Definitions_Controllers_Hands_HandData_UpdatedAt_ - commentId: Overload:XRTK.Definitions.Controllers.Hands.HandData.UpdatedAt - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Hands.HandData.UpdatedAt - nameWithType: HandData.UpdatedAt -- uid: XRTK.Definitions.Controllers.Hands.HandFinger - name: HandFinger - href: api/XRTK.Definitions.Controllers.Hands.HandFinger.html - commentId: T:XRTK.Definitions.Controllers.Hands.HandFinger - fullName: XRTK.Definitions.Controllers.Hands.HandFinger - nameWithType: HandFinger -- uid: XRTK.Definitions.Controllers.Hands.HandFinger.Index - name: Index - href: api/XRTK.Definitions.Controllers.Hands.HandFinger.html#XRTK_Definitions_Controllers_Hands_HandFinger_Index - commentId: F:XRTK.Definitions.Controllers.Hands.HandFinger.Index - fullName: XRTK.Definitions.Controllers.Hands.HandFinger.Index - nameWithType: HandFinger.Index -- uid: XRTK.Definitions.Controllers.Hands.HandFinger.Little - name: Little - href: api/XRTK.Definitions.Controllers.Hands.HandFinger.html#XRTK_Definitions_Controllers_Hands_HandFinger_Little - commentId: F:XRTK.Definitions.Controllers.Hands.HandFinger.Little - fullName: XRTK.Definitions.Controllers.Hands.HandFinger.Little - nameWithType: HandFinger.Little -- uid: XRTK.Definitions.Controllers.Hands.HandFinger.Middle - name: Middle - href: api/XRTK.Definitions.Controllers.Hands.HandFinger.html#XRTK_Definitions_Controllers_Hands_HandFinger_Middle - commentId: F:XRTK.Definitions.Controllers.Hands.HandFinger.Middle - fullName: XRTK.Definitions.Controllers.Hands.HandFinger.Middle - nameWithType: HandFinger.Middle -- uid: XRTK.Definitions.Controllers.Hands.HandFinger.Ring - name: Ring - href: api/XRTK.Definitions.Controllers.Hands.HandFinger.html#XRTK_Definitions_Controllers_Hands_HandFinger_Ring - commentId: F:XRTK.Definitions.Controllers.Hands.HandFinger.Ring - fullName: XRTK.Definitions.Controllers.Hands.HandFinger.Ring - nameWithType: HandFinger.Ring -- uid: XRTK.Definitions.Controllers.Hands.HandFinger.Thumb - name: Thumb - href: api/XRTK.Definitions.Controllers.Hands.HandFinger.html#XRTK_Definitions_Controllers_Hands_HandFinger_Thumb - commentId: F:XRTK.Definitions.Controllers.Hands.HandFinger.Thumb - fullName: XRTK.Definitions.Controllers.Hands.HandFinger.Thumb - nameWithType: HandFinger.Thumb -- uid: XRTK.Definitions.Controllers.Hands.HandMeshData - name: HandMeshData - href: api/XRTK.Definitions.Controllers.Hands.HandMeshData.html - commentId: T:XRTK.Definitions.Controllers.Hands.HandMeshData - fullName: XRTK.Definitions.Controllers.Hands.HandMeshData - nameWithType: HandMeshData -- uid: XRTK.Definitions.Controllers.Hands.HandMeshData.#ctor(UnityEngine.Vector3[],System.Int32[],UnityEngine.Vector3[],UnityEngine.Vector2[]) - name: HandMeshData(Vector3[], Int32[], Vector3[], Vector2[]) - href: api/XRTK.Definitions.Controllers.Hands.HandMeshData.html#XRTK_Definitions_Controllers_Hands_HandMeshData__ctor_UnityEngine_Vector3___System_Int32___UnityEngine_Vector3___UnityEngine_Vector2___ - commentId: M:XRTK.Definitions.Controllers.Hands.HandMeshData.#ctor(UnityEngine.Vector3[],System.Int32[],UnityEngine.Vector3[],UnityEngine.Vector2[]) - name.vb: HandMeshData(Vector3(), Int32(), Vector3(), Vector2()) - fullName: XRTK.Definitions.Controllers.Hands.HandMeshData.HandMeshData(UnityEngine.Vector3[], System.Int32[], UnityEngine.Vector3[], UnityEngine.Vector2[]) - fullName.vb: XRTK.Definitions.Controllers.Hands.HandMeshData.HandMeshData(UnityEngine.Vector3(), System.Int32(), UnityEngine.Vector3(), UnityEngine.Vector2()) - nameWithType: HandMeshData.HandMeshData(Vector3[], Int32[], Vector3[], Vector2[]) - nameWithType.vb: HandMeshData.HandMeshData(Vector3(), Int32(), Vector3(), Vector2()) -- uid: XRTK.Definitions.Controllers.Hands.HandMeshData.#ctor* - name: HandMeshData - href: api/XRTK.Definitions.Controllers.Hands.HandMeshData.html#XRTK_Definitions_Controllers_Hands_HandMeshData__ctor_ - commentId: Overload:XRTK.Definitions.Controllers.Hands.HandMeshData.#ctor - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Hands.HandMeshData.HandMeshData - nameWithType: HandMeshData.HandMeshData -- uid: XRTK.Definitions.Controllers.Hands.HandMeshData.Empty - name: Empty - href: api/XRTK.Definitions.Controllers.Hands.HandMeshData.html#XRTK_Definitions_Controllers_Hands_HandMeshData_Empty - commentId: P:XRTK.Definitions.Controllers.Hands.HandMeshData.Empty - fullName: XRTK.Definitions.Controllers.Hands.HandMeshData.Empty - nameWithType: HandMeshData.Empty -- uid: XRTK.Definitions.Controllers.Hands.HandMeshData.Empty* - name: Empty - href: api/XRTK.Definitions.Controllers.Hands.HandMeshData.html#XRTK_Definitions_Controllers_Hands_HandMeshData_Empty_ - commentId: Overload:XRTK.Definitions.Controllers.Hands.HandMeshData.Empty - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Hands.HandMeshData.Empty - nameWithType: HandMeshData.Empty -- uid: XRTK.Definitions.Controllers.Hands.HandMeshData.IsEmpty - name: IsEmpty - href: api/XRTK.Definitions.Controllers.Hands.HandMeshData.html#XRTK_Definitions_Controllers_Hands_HandMeshData_IsEmpty - commentId: P:XRTK.Definitions.Controllers.Hands.HandMeshData.IsEmpty - fullName: XRTK.Definitions.Controllers.Hands.HandMeshData.IsEmpty - nameWithType: HandMeshData.IsEmpty -- uid: XRTK.Definitions.Controllers.Hands.HandMeshData.IsEmpty* - name: IsEmpty - href: api/XRTK.Definitions.Controllers.Hands.HandMeshData.html#XRTK_Definitions_Controllers_Hands_HandMeshData_IsEmpty_ - commentId: Overload:XRTK.Definitions.Controllers.Hands.HandMeshData.IsEmpty - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Hands.HandMeshData.IsEmpty - nameWithType: HandMeshData.IsEmpty -- uid: XRTK.Definitions.Controllers.Hands.HandMeshData.Normals - name: Normals - href: api/XRTK.Definitions.Controllers.Hands.HandMeshData.html#XRTK_Definitions_Controllers_Hands_HandMeshData_Normals - commentId: P:XRTK.Definitions.Controllers.Hands.HandMeshData.Normals - fullName: XRTK.Definitions.Controllers.Hands.HandMeshData.Normals - nameWithType: HandMeshData.Normals -- uid: XRTK.Definitions.Controllers.Hands.HandMeshData.Normals* - name: Normals - href: api/XRTK.Definitions.Controllers.Hands.HandMeshData.html#XRTK_Definitions_Controllers_Hands_HandMeshData_Normals_ - commentId: Overload:XRTK.Definitions.Controllers.Hands.HandMeshData.Normals - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Hands.HandMeshData.Normals - nameWithType: HandMeshData.Normals -- uid: XRTK.Definitions.Controllers.Hands.HandMeshData.Triangles - name: Triangles - href: api/XRTK.Definitions.Controllers.Hands.HandMeshData.html#XRTK_Definitions_Controllers_Hands_HandMeshData_Triangles - commentId: P:XRTK.Definitions.Controllers.Hands.HandMeshData.Triangles - fullName: XRTK.Definitions.Controllers.Hands.HandMeshData.Triangles - nameWithType: HandMeshData.Triangles -- uid: XRTK.Definitions.Controllers.Hands.HandMeshData.Triangles* - name: Triangles - href: api/XRTK.Definitions.Controllers.Hands.HandMeshData.html#XRTK_Definitions_Controllers_Hands_HandMeshData_Triangles_ - commentId: Overload:XRTK.Definitions.Controllers.Hands.HandMeshData.Triangles - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Hands.HandMeshData.Triangles - nameWithType: HandMeshData.Triangles -- uid: XRTK.Definitions.Controllers.Hands.HandMeshData.Uvs - name: Uvs - href: api/XRTK.Definitions.Controllers.Hands.HandMeshData.html#XRTK_Definitions_Controllers_Hands_HandMeshData_Uvs - commentId: P:XRTK.Definitions.Controllers.Hands.HandMeshData.Uvs - fullName: XRTK.Definitions.Controllers.Hands.HandMeshData.Uvs - nameWithType: HandMeshData.Uvs -- uid: XRTK.Definitions.Controllers.Hands.HandMeshData.Uvs* - name: Uvs - href: api/XRTK.Definitions.Controllers.Hands.HandMeshData.html#XRTK_Definitions_Controllers_Hands_HandMeshData_Uvs_ - commentId: Overload:XRTK.Definitions.Controllers.Hands.HandMeshData.Uvs - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Hands.HandMeshData.Uvs - nameWithType: HandMeshData.Uvs -- uid: XRTK.Definitions.Controllers.Hands.HandMeshData.Vertices - name: Vertices - href: api/XRTK.Definitions.Controllers.Hands.HandMeshData.html#XRTK_Definitions_Controllers_Hands_HandMeshData_Vertices - commentId: P:XRTK.Definitions.Controllers.Hands.HandMeshData.Vertices - fullName: XRTK.Definitions.Controllers.Hands.HandMeshData.Vertices - nameWithType: HandMeshData.Vertices -- uid: XRTK.Definitions.Controllers.Hands.HandMeshData.Vertices* - name: Vertices - href: api/XRTK.Definitions.Controllers.Hands.HandMeshData.html#XRTK_Definitions_Controllers_Hands_HandMeshData_Vertices_ - commentId: Overload:XRTK.Definitions.Controllers.Hands.HandMeshData.Vertices - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Hands.HandMeshData.Vertices - nameWithType: HandMeshData.Vertices -- uid: XRTK.Definitions.Controllers.Hands.HandRenderingMode - name: HandRenderingMode - href: api/XRTK.Definitions.Controllers.Hands.HandRenderingMode.html - commentId: T:XRTK.Definitions.Controllers.Hands.HandRenderingMode - fullName: XRTK.Definitions.Controllers.Hands.HandRenderingMode - nameWithType: HandRenderingMode -- uid: XRTK.Definitions.Controllers.Hands.HandRenderingMode.Joints - name: Joints - href: api/XRTK.Definitions.Controllers.Hands.HandRenderingMode.html#XRTK_Definitions_Controllers_Hands_HandRenderingMode_Joints - commentId: F:XRTK.Definitions.Controllers.Hands.HandRenderingMode.Joints - fullName: XRTK.Definitions.Controllers.Hands.HandRenderingMode.Joints - nameWithType: HandRenderingMode.Joints -- uid: XRTK.Definitions.Controllers.Hands.HandRenderingMode.Mesh - name: Mesh - href: api/XRTK.Definitions.Controllers.Hands.HandRenderingMode.html#XRTK_Definitions_Controllers_Hands_HandRenderingMode_Mesh - commentId: F:XRTK.Definitions.Controllers.Hands.HandRenderingMode.Mesh - fullName: XRTK.Definitions.Controllers.Hands.HandRenderingMode.Mesh - nameWithType: HandRenderingMode.Mesh -- uid: XRTK.Definitions.Controllers.Hands.HandRenderingMode.None - name: None - href: api/XRTK.Definitions.Controllers.Hands.HandRenderingMode.html#XRTK_Definitions_Controllers_Hands_HandRenderingMode_None - commentId: F:XRTK.Definitions.Controllers.Hands.HandRenderingMode.None - fullName: XRTK.Definitions.Controllers.Hands.HandRenderingMode.None - nameWithType: HandRenderingMode.None -- uid: XRTK.Definitions.Controllers.Hands.RecordedHandJoint - name: RecordedHandJoint - href: api/XRTK.Definitions.Controllers.Hands.RecordedHandJoint.html - commentId: T:XRTK.Definitions.Controllers.Hands.RecordedHandJoint - fullName: XRTK.Definitions.Controllers.Hands.RecordedHandJoint - nameWithType: RecordedHandJoint -- uid: XRTK.Definitions.Controllers.Hands.RecordedHandJoint.#ctor(XRTK.Definitions.Controllers.Hands.TrackedHandJoint,XRTK.Definitions.Utilities.MixedRealityPose) - name: RecordedHandJoint(TrackedHandJoint, MixedRealityPose) - href: api/XRTK.Definitions.Controllers.Hands.RecordedHandJoint.html#XRTK_Definitions_Controllers_Hands_RecordedHandJoint__ctor_XRTK_Definitions_Controllers_Hands_TrackedHandJoint_XRTK_Definitions_Utilities_MixedRealityPose_ - commentId: M:XRTK.Definitions.Controllers.Hands.RecordedHandJoint.#ctor(XRTK.Definitions.Controllers.Hands.TrackedHandJoint,XRTK.Definitions.Utilities.MixedRealityPose) - fullName: XRTK.Definitions.Controllers.Hands.RecordedHandJoint.RecordedHandJoint(XRTK.Definitions.Controllers.Hands.TrackedHandJoint, XRTK.Definitions.Utilities.MixedRealityPose) - nameWithType: RecordedHandJoint.RecordedHandJoint(TrackedHandJoint, MixedRealityPose) -- uid: XRTK.Definitions.Controllers.Hands.RecordedHandJoint.#ctor* - name: RecordedHandJoint - href: api/XRTK.Definitions.Controllers.Hands.RecordedHandJoint.html#XRTK_Definitions_Controllers_Hands_RecordedHandJoint__ctor_ - commentId: Overload:XRTK.Definitions.Controllers.Hands.RecordedHandJoint.#ctor - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Hands.RecordedHandJoint.RecordedHandJoint - nameWithType: RecordedHandJoint.RecordedHandJoint -- uid: XRTK.Definitions.Controllers.Hands.RecordedHandJoint.Joint - name: Joint - href: api/XRTK.Definitions.Controllers.Hands.RecordedHandJoint.html#XRTK_Definitions_Controllers_Hands_RecordedHandJoint_Joint - commentId: P:XRTK.Definitions.Controllers.Hands.RecordedHandJoint.Joint - fullName: XRTK.Definitions.Controllers.Hands.RecordedHandJoint.Joint - nameWithType: RecordedHandJoint.Joint -- uid: XRTK.Definitions.Controllers.Hands.RecordedHandJoint.Joint* - name: Joint - href: api/XRTK.Definitions.Controllers.Hands.RecordedHandJoint.html#XRTK_Definitions_Controllers_Hands_RecordedHandJoint_Joint_ - commentId: Overload:XRTK.Definitions.Controllers.Hands.RecordedHandJoint.Joint - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Hands.RecordedHandJoint.Joint - nameWithType: RecordedHandJoint.Joint -- uid: XRTK.Definitions.Controllers.Hands.RecordedHandJoint.Pose - name: Pose - href: api/XRTK.Definitions.Controllers.Hands.RecordedHandJoint.html#XRTK_Definitions_Controllers_Hands_RecordedHandJoint_Pose - commentId: P:XRTK.Definitions.Controllers.Hands.RecordedHandJoint.Pose - fullName: XRTK.Definitions.Controllers.Hands.RecordedHandJoint.Pose - nameWithType: RecordedHandJoint.Pose -- uid: XRTK.Definitions.Controllers.Hands.RecordedHandJoint.Pose* - name: Pose - href: api/XRTK.Definitions.Controllers.Hands.RecordedHandJoint.html#XRTK_Definitions_Controllers_Hands_RecordedHandJoint_Pose_ - commentId: Overload:XRTK.Definitions.Controllers.Hands.RecordedHandJoint.Pose - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Hands.RecordedHandJoint.Pose - nameWithType: RecordedHandJoint.Pose -- uid: XRTK.Definitions.Controllers.Hands.RecordedHandJoints - name: RecordedHandJoints - href: api/XRTK.Definitions.Controllers.Hands.RecordedHandJoints.html - commentId: T:XRTK.Definitions.Controllers.Hands.RecordedHandJoints - fullName: XRTK.Definitions.Controllers.Hands.RecordedHandJoints - nameWithType: RecordedHandJoints -- uid: XRTK.Definitions.Controllers.Hands.RecordedHandJoints.Joints - name: Joints - href: api/XRTK.Definitions.Controllers.Hands.RecordedHandJoints.html#XRTK_Definitions_Controllers_Hands_RecordedHandJoints_Joints - commentId: P:XRTK.Definitions.Controllers.Hands.RecordedHandJoints.Joints - fullName: XRTK.Definitions.Controllers.Hands.RecordedHandJoints.Joints - nameWithType: RecordedHandJoints.Joints -- uid: XRTK.Definitions.Controllers.Hands.RecordedHandJoints.Joints* - name: Joints - href: api/XRTK.Definitions.Controllers.Hands.RecordedHandJoints.html#XRTK_Definitions_Controllers_Hands_RecordedHandJoints_Joints_ - commentId: Overload:XRTK.Definitions.Controllers.Hands.RecordedHandJoints.Joints - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Hands.RecordedHandJoints.Joints - nameWithType: RecordedHandJoints.Joints -- uid: XRTK.Definitions.Controllers.Hands.TrackedHandBounds - name: TrackedHandBounds - href: api/XRTK.Definitions.Controllers.Hands.TrackedHandBounds.html - commentId: T:XRTK.Definitions.Controllers.Hands.TrackedHandBounds - fullName: XRTK.Definitions.Controllers.Hands.TrackedHandBounds - nameWithType: TrackedHandBounds -- uid: XRTK.Definitions.Controllers.Hands.TrackedHandBounds.Hand - name: Hand - href: api/XRTK.Definitions.Controllers.Hands.TrackedHandBounds.html#XRTK_Definitions_Controllers_Hands_TrackedHandBounds_Hand - commentId: F:XRTK.Definitions.Controllers.Hands.TrackedHandBounds.Hand - fullName: XRTK.Definitions.Controllers.Hands.TrackedHandBounds.Hand - nameWithType: TrackedHandBounds.Hand -- uid: XRTK.Definitions.Controllers.Hands.TrackedHandBounds.IndexFinger - name: IndexFinger - href: api/XRTK.Definitions.Controllers.Hands.TrackedHandBounds.html#XRTK_Definitions_Controllers_Hands_TrackedHandBounds_IndexFinger - commentId: F:XRTK.Definitions.Controllers.Hands.TrackedHandBounds.IndexFinger - fullName: XRTK.Definitions.Controllers.Hands.TrackedHandBounds.IndexFinger - nameWithType: TrackedHandBounds.IndexFinger -- uid: XRTK.Definitions.Controllers.Hands.TrackedHandBounds.MiddleFinger - name: MiddleFinger - href: api/XRTK.Definitions.Controllers.Hands.TrackedHandBounds.html#XRTK_Definitions_Controllers_Hands_TrackedHandBounds_MiddleFinger - commentId: F:XRTK.Definitions.Controllers.Hands.TrackedHandBounds.MiddleFinger - fullName: XRTK.Definitions.Controllers.Hands.TrackedHandBounds.MiddleFinger - nameWithType: TrackedHandBounds.MiddleFinger -- uid: XRTK.Definitions.Controllers.Hands.TrackedHandBounds.None - name: None - href: api/XRTK.Definitions.Controllers.Hands.TrackedHandBounds.html#XRTK_Definitions_Controllers_Hands_TrackedHandBounds_None - commentId: F:XRTK.Definitions.Controllers.Hands.TrackedHandBounds.None - fullName: XRTK.Definitions.Controllers.Hands.TrackedHandBounds.None - nameWithType: TrackedHandBounds.None -- uid: XRTK.Definitions.Controllers.Hands.TrackedHandBounds.Palm - name: Palm - href: api/XRTK.Definitions.Controllers.Hands.TrackedHandBounds.html#XRTK_Definitions_Controllers_Hands_TrackedHandBounds_Palm - commentId: F:XRTK.Definitions.Controllers.Hands.TrackedHandBounds.Palm - fullName: XRTK.Definitions.Controllers.Hands.TrackedHandBounds.Palm - nameWithType: TrackedHandBounds.Palm -- uid: XRTK.Definitions.Controllers.Hands.TrackedHandBounds.Pinky - name: Pinky - href: api/XRTK.Definitions.Controllers.Hands.TrackedHandBounds.html#XRTK_Definitions_Controllers_Hands_TrackedHandBounds_Pinky - commentId: F:XRTK.Definitions.Controllers.Hands.TrackedHandBounds.Pinky - fullName: XRTK.Definitions.Controllers.Hands.TrackedHandBounds.Pinky - nameWithType: TrackedHandBounds.Pinky -- uid: XRTK.Definitions.Controllers.Hands.TrackedHandBounds.RingFinger - name: RingFinger - href: api/XRTK.Definitions.Controllers.Hands.TrackedHandBounds.html#XRTK_Definitions_Controllers_Hands_TrackedHandBounds_RingFinger - commentId: F:XRTK.Definitions.Controllers.Hands.TrackedHandBounds.RingFinger - fullName: XRTK.Definitions.Controllers.Hands.TrackedHandBounds.RingFinger - nameWithType: TrackedHandBounds.RingFinger -- uid: XRTK.Definitions.Controllers.Hands.TrackedHandBounds.Thumb - name: Thumb - href: api/XRTK.Definitions.Controllers.Hands.TrackedHandBounds.html#XRTK_Definitions_Controllers_Hands_TrackedHandBounds_Thumb - commentId: F:XRTK.Definitions.Controllers.Hands.TrackedHandBounds.Thumb - fullName: XRTK.Definitions.Controllers.Hands.TrackedHandBounds.Thumb - nameWithType: TrackedHandBounds.Thumb -- uid: XRTK.Definitions.Controllers.Hands.TrackedHandJoint - name: TrackedHandJoint - href: api/XRTK.Definitions.Controllers.Hands.TrackedHandJoint.html - commentId: T:XRTK.Definitions.Controllers.Hands.TrackedHandJoint - fullName: XRTK.Definitions.Controllers.Hands.TrackedHandJoint - nameWithType: TrackedHandJoint -- uid: XRTK.Definitions.Controllers.Hands.TrackedHandJoint.IndexDistal - name: IndexDistal - href: api/XRTK.Definitions.Controllers.Hands.TrackedHandJoint.html#XRTK_Definitions_Controllers_Hands_TrackedHandJoint_IndexDistal - commentId: F:XRTK.Definitions.Controllers.Hands.TrackedHandJoint.IndexDistal - fullName: XRTK.Definitions.Controllers.Hands.TrackedHandJoint.IndexDistal - nameWithType: TrackedHandJoint.IndexDistal -- uid: XRTK.Definitions.Controllers.Hands.TrackedHandJoint.IndexIntermediate - name: IndexIntermediate - href: api/XRTK.Definitions.Controllers.Hands.TrackedHandJoint.html#XRTK_Definitions_Controllers_Hands_TrackedHandJoint_IndexIntermediate - commentId: F:XRTK.Definitions.Controllers.Hands.TrackedHandJoint.IndexIntermediate - fullName: XRTK.Definitions.Controllers.Hands.TrackedHandJoint.IndexIntermediate - nameWithType: TrackedHandJoint.IndexIntermediate -- uid: XRTK.Definitions.Controllers.Hands.TrackedHandJoint.IndexMetacarpal - name: IndexMetacarpal - href: api/XRTK.Definitions.Controllers.Hands.TrackedHandJoint.html#XRTK_Definitions_Controllers_Hands_TrackedHandJoint_IndexMetacarpal - commentId: F:XRTK.Definitions.Controllers.Hands.TrackedHandJoint.IndexMetacarpal - fullName: XRTK.Definitions.Controllers.Hands.TrackedHandJoint.IndexMetacarpal - nameWithType: TrackedHandJoint.IndexMetacarpal -- uid: XRTK.Definitions.Controllers.Hands.TrackedHandJoint.IndexProximal - name: IndexProximal - href: api/XRTK.Definitions.Controllers.Hands.TrackedHandJoint.html#XRTK_Definitions_Controllers_Hands_TrackedHandJoint_IndexProximal - commentId: F:XRTK.Definitions.Controllers.Hands.TrackedHandJoint.IndexProximal - fullName: XRTK.Definitions.Controllers.Hands.TrackedHandJoint.IndexProximal - nameWithType: TrackedHandJoint.IndexProximal -- uid: XRTK.Definitions.Controllers.Hands.TrackedHandJoint.IndexTip - name: IndexTip - href: api/XRTK.Definitions.Controllers.Hands.TrackedHandJoint.html#XRTK_Definitions_Controllers_Hands_TrackedHandJoint_IndexTip - commentId: F:XRTK.Definitions.Controllers.Hands.TrackedHandJoint.IndexTip - fullName: XRTK.Definitions.Controllers.Hands.TrackedHandJoint.IndexTip - nameWithType: TrackedHandJoint.IndexTip -- uid: XRTK.Definitions.Controllers.Hands.TrackedHandJoint.LittleDistal - name: LittleDistal - href: api/XRTK.Definitions.Controllers.Hands.TrackedHandJoint.html#XRTK_Definitions_Controllers_Hands_TrackedHandJoint_LittleDistal - commentId: F:XRTK.Definitions.Controllers.Hands.TrackedHandJoint.LittleDistal - fullName: XRTK.Definitions.Controllers.Hands.TrackedHandJoint.LittleDistal - nameWithType: TrackedHandJoint.LittleDistal -- uid: XRTK.Definitions.Controllers.Hands.TrackedHandJoint.LittleIntermediate - name: LittleIntermediate - href: api/XRTK.Definitions.Controllers.Hands.TrackedHandJoint.html#XRTK_Definitions_Controllers_Hands_TrackedHandJoint_LittleIntermediate - commentId: F:XRTK.Definitions.Controllers.Hands.TrackedHandJoint.LittleIntermediate - fullName: XRTK.Definitions.Controllers.Hands.TrackedHandJoint.LittleIntermediate - nameWithType: TrackedHandJoint.LittleIntermediate -- uid: XRTK.Definitions.Controllers.Hands.TrackedHandJoint.LittleMetacarpal - name: LittleMetacarpal - href: api/XRTK.Definitions.Controllers.Hands.TrackedHandJoint.html#XRTK_Definitions_Controllers_Hands_TrackedHandJoint_LittleMetacarpal - commentId: F:XRTK.Definitions.Controllers.Hands.TrackedHandJoint.LittleMetacarpal - fullName: XRTK.Definitions.Controllers.Hands.TrackedHandJoint.LittleMetacarpal - nameWithType: TrackedHandJoint.LittleMetacarpal -- uid: XRTK.Definitions.Controllers.Hands.TrackedHandJoint.LittleProximal - name: LittleProximal - href: api/XRTK.Definitions.Controllers.Hands.TrackedHandJoint.html#XRTK_Definitions_Controllers_Hands_TrackedHandJoint_LittleProximal - commentId: F:XRTK.Definitions.Controllers.Hands.TrackedHandJoint.LittleProximal - fullName: XRTK.Definitions.Controllers.Hands.TrackedHandJoint.LittleProximal - nameWithType: TrackedHandJoint.LittleProximal -- uid: XRTK.Definitions.Controllers.Hands.TrackedHandJoint.LittleTip - name: LittleTip - href: api/XRTK.Definitions.Controllers.Hands.TrackedHandJoint.html#XRTK_Definitions_Controllers_Hands_TrackedHandJoint_LittleTip - commentId: F:XRTK.Definitions.Controllers.Hands.TrackedHandJoint.LittleTip - fullName: XRTK.Definitions.Controllers.Hands.TrackedHandJoint.LittleTip - nameWithType: TrackedHandJoint.LittleTip -- uid: XRTK.Definitions.Controllers.Hands.TrackedHandJoint.MiddleDistal - name: MiddleDistal - href: api/XRTK.Definitions.Controllers.Hands.TrackedHandJoint.html#XRTK_Definitions_Controllers_Hands_TrackedHandJoint_MiddleDistal - commentId: F:XRTK.Definitions.Controllers.Hands.TrackedHandJoint.MiddleDistal - fullName: XRTK.Definitions.Controllers.Hands.TrackedHandJoint.MiddleDistal - nameWithType: TrackedHandJoint.MiddleDistal -- uid: XRTK.Definitions.Controllers.Hands.TrackedHandJoint.MiddleIntermediate - name: MiddleIntermediate - href: api/XRTK.Definitions.Controllers.Hands.TrackedHandJoint.html#XRTK_Definitions_Controllers_Hands_TrackedHandJoint_MiddleIntermediate - commentId: F:XRTK.Definitions.Controllers.Hands.TrackedHandJoint.MiddleIntermediate - fullName: XRTK.Definitions.Controllers.Hands.TrackedHandJoint.MiddleIntermediate - nameWithType: TrackedHandJoint.MiddleIntermediate -- uid: XRTK.Definitions.Controllers.Hands.TrackedHandJoint.MiddleMetacarpal - name: MiddleMetacarpal - href: api/XRTK.Definitions.Controllers.Hands.TrackedHandJoint.html#XRTK_Definitions_Controllers_Hands_TrackedHandJoint_MiddleMetacarpal - commentId: F:XRTK.Definitions.Controllers.Hands.TrackedHandJoint.MiddleMetacarpal - fullName: XRTK.Definitions.Controllers.Hands.TrackedHandJoint.MiddleMetacarpal - nameWithType: TrackedHandJoint.MiddleMetacarpal -- uid: XRTK.Definitions.Controllers.Hands.TrackedHandJoint.MiddleProximal - name: MiddleProximal - href: api/XRTK.Definitions.Controllers.Hands.TrackedHandJoint.html#XRTK_Definitions_Controllers_Hands_TrackedHandJoint_MiddleProximal - commentId: F:XRTK.Definitions.Controllers.Hands.TrackedHandJoint.MiddleProximal - fullName: XRTK.Definitions.Controllers.Hands.TrackedHandJoint.MiddleProximal - nameWithType: TrackedHandJoint.MiddleProximal -- uid: XRTK.Definitions.Controllers.Hands.TrackedHandJoint.MiddleTip - name: MiddleTip - href: api/XRTK.Definitions.Controllers.Hands.TrackedHandJoint.html#XRTK_Definitions_Controllers_Hands_TrackedHandJoint_MiddleTip - commentId: F:XRTK.Definitions.Controllers.Hands.TrackedHandJoint.MiddleTip - fullName: XRTK.Definitions.Controllers.Hands.TrackedHandJoint.MiddleTip - nameWithType: TrackedHandJoint.MiddleTip -- uid: XRTK.Definitions.Controllers.Hands.TrackedHandJoint.Palm - name: Palm - href: api/XRTK.Definitions.Controllers.Hands.TrackedHandJoint.html#XRTK_Definitions_Controllers_Hands_TrackedHandJoint_Palm - commentId: F:XRTK.Definitions.Controllers.Hands.TrackedHandJoint.Palm - fullName: XRTK.Definitions.Controllers.Hands.TrackedHandJoint.Palm - nameWithType: TrackedHandJoint.Palm -- uid: XRTK.Definitions.Controllers.Hands.TrackedHandJoint.RingDistal - name: RingDistal - href: api/XRTK.Definitions.Controllers.Hands.TrackedHandJoint.html#XRTK_Definitions_Controllers_Hands_TrackedHandJoint_RingDistal - commentId: F:XRTK.Definitions.Controllers.Hands.TrackedHandJoint.RingDistal - fullName: XRTK.Definitions.Controllers.Hands.TrackedHandJoint.RingDistal - nameWithType: TrackedHandJoint.RingDistal -- uid: XRTK.Definitions.Controllers.Hands.TrackedHandJoint.RingIntermediate - name: RingIntermediate - href: api/XRTK.Definitions.Controllers.Hands.TrackedHandJoint.html#XRTK_Definitions_Controllers_Hands_TrackedHandJoint_RingIntermediate - commentId: F:XRTK.Definitions.Controllers.Hands.TrackedHandJoint.RingIntermediate - fullName: XRTK.Definitions.Controllers.Hands.TrackedHandJoint.RingIntermediate - nameWithType: TrackedHandJoint.RingIntermediate -- uid: XRTK.Definitions.Controllers.Hands.TrackedHandJoint.RingMetacarpal - name: RingMetacarpal - href: api/XRTK.Definitions.Controllers.Hands.TrackedHandJoint.html#XRTK_Definitions_Controllers_Hands_TrackedHandJoint_RingMetacarpal - commentId: F:XRTK.Definitions.Controllers.Hands.TrackedHandJoint.RingMetacarpal - fullName: XRTK.Definitions.Controllers.Hands.TrackedHandJoint.RingMetacarpal - nameWithType: TrackedHandJoint.RingMetacarpal -- uid: XRTK.Definitions.Controllers.Hands.TrackedHandJoint.RingProximal - name: RingProximal - href: api/XRTK.Definitions.Controllers.Hands.TrackedHandJoint.html#XRTK_Definitions_Controllers_Hands_TrackedHandJoint_RingProximal - commentId: F:XRTK.Definitions.Controllers.Hands.TrackedHandJoint.RingProximal - fullName: XRTK.Definitions.Controllers.Hands.TrackedHandJoint.RingProximal - nameWithType: TrackedHandJoint.RingProximal -- uid: XRTK.Definitions.Controllers.Hands.TrackedHandJoint.RingTip - name: RingTip - href: api/XRTK.Definitions.Controllers.Hands.TrackedHandJoint.html#XRTK_Definitions_Controllers_Hands_TrackedHandJoint_RingTip - commentId: F:XRTK.Definitions.Controllers.Hands.TrackedHandJoint.RingTip - fullName: XRTK.Definitions.Controllers.Hands.TrackedHandJoint.RingTip - nameWithType: TrackedHandJoint.RingTip -- uid: XRTK.Definitions.Controllers.Hands.TrackedHandJoint.ThumbDistal - name: ThumbDistal - href: api/XRTK.Definitions.Controllers.Hands.TrackedHandJoint.html#XRTK_Definitions_Controllers_Hands_TrackedHandJoint_ThumbDistal - commentId: F:XRTK.Definitions.Controllers.Hands.TrackedHandJoint.ThumbDistal - fullName: XRTK.Definitions.Controllers.Hands.TrackedHandJoint.ThumbDistal - nameWithType: TrackedHandJoint.ThumbDistal -- uid: XRTK.Definitions.Controllers.Hands.TrackedHandJoint.ThumbMetacarpal - name: ThumbMetacarpal - href: api/XRTK.Definitions.Controllers.Hands.TrackedHandJoint.html#XRTK_Definitions_Controllers_Hands_TrackedHandJoint_ThumbMetacarpal - commentId: F:XRTK.Definitions.Controllers.Hands.TrackedHandJoint.ThumbMetacarpal - fullName: XRTK.Definitions.Controllers.Hands.TrackedHandJoint.ThumbMetacarpal - nameWithType: TrackedHandJoint.ThumbMetacarpal -- uid: XRTK.Definitions.Controllers.Hands.TrackedHandJoint.ThumbProximal - name: ThumbProximal - href: api/XRTK.Definitions.Controllers.Hands.TrackedHandJoint.html#XRTK_Definitions_Controllers_Hands_TrackedHandJoint_ThumbProximal - commentId: F:XRTK.Definitions.Controllers.Hands.TrackedHandJoint.ThumbProximal - fullName: XRTK.Definitions.Controllers.Hands.TrackedHandJoint.ThumbProximal - nameWithType: TrackedHandJoint.ThumbProximal -- uid: XRTK.Definitions.Controllers.Hands.TrackedHandJoint.ThumbTip - name: ThumbTip - href: api/XRTK.Definitions.Controllers.Hands.TrackedHandJoint.html#XRTK_Definitions_Controllers_Hands_TrackedHandJoint_ThumbTip - commentId: F:XRTK.Definitions.Controllers.Hands.TrackedHandJoint.ThumbTip - fullName: XRTK.Definitions.Controllers.Hands.TrackedHandJoint.ThumbTip - nameWithType: TrackedHandJoint.ThumbTip -- uid: XRTK.Definitions.Controllers.Hands.TrackedHandJoint.Wrist - name: Wrist - href: api/XRTK.Definitions.Controllers.Hands.TrackedHandJoint.html#XRTK_Definitions_Controllers_Hands_TrackedHandJoint_Wrist - commentId: F:XRTK.Definitions.Controllers.Hands.TrackedHandJoint.Wrist - fullName: XRTK.Definitions.Controllers.Hands.TrackedHandJoint.Wrist - nameWithType: TrackedHandJoint.Wrist -- uid: XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile - name: MixedRealityControllerMappingProfile - href: api/XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile.html - commentId: T:XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile - fullName: XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile - nameWithType: MixedRealityControllerMappingProfile -- uid: XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile.ControllerType - name: ControllerType - href: api/XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile.html#XRTK_Definitions_Controllers_MixedRealityControllerMappingProfile_ControllerType - commentId: P:XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile.ControllerType - fullName: XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile.ControllerType - nameWithType: MixedRealityControllerMappingProfile.ControllerType -- uid: XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile.ControllerType* - name: ControllerType - href: api/XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile.html#XRTK_Definitions_Controllers_MixedRealityControllerMappingProfile_ControllerType_ - commentId: Overload:XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile.ControllerType - isSpec: "True" - fullName: XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile.ControllerType - nameWithType: MixedRealityControllerMappingProfile.ControllerType -- uid: XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile.Handedness - name: Handedness - href: api/XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile.html#XRTK_Definitions_Controllers_MixedRealityControllerMappingProfile_Handedness - commentId: P:XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile.Handedness - fullName: XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile.Handedness - nameWithType: MixedRealityControllerMappingProfile.Handedness -- uid: XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile.Handedness* - name: Handedness - href: api/XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile.html#XRTK_Definitions_Controllers_MixedRealityControllerMappingProfile_Handedness_ - commentId: Overload:XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile.Handedness - isSpec: "True" - fullName: XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile.Handedness - nameWithType: MixedRealityControllerMappingProfile.Handedness -- uid: XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile.InteractionMappingProfiles - name: InteractionMappingProfiles - href: api/XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile.html#XRTK_Definitions_Controllers_MixedRealityControllerMappingProfile_InteractionMappingProfiles - commentId: P:XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile.InteractionMappingProfiles - fullName: XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile.InteractionMappingProfiles - nameWithType: MixedRealityControllerMappingProfile.InteractionMappingProfiles -- uid: XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile.InteractionMappingProfiles* - name: InteractionMappingProfiles - href: api/XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile.html#XRTK_Definitions_Controllers_MixedRealityControllerMappingProfile_InteractionMappingProfiles_ - commentId: Overload:XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile.InteractionMappingProfiles - isSpec: "True" - fullName: XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile.InteractionMappingProfiles - nameWithType: MixedRealityControllerMappingProfile.InteractionMappingProfiles -- uid: XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile.VisualizationProfile - name: VisualizationProfile - href: api/XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile.html#XRTK_Definitions_Controllers_MixedRealityControllerMappingProfile_VisualizationProfile - commentId: P:XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile.VisualizationProfile - fullName: XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile.VisualizationProfile - nameWithType: MixedRealityControllerMappingProfile.VisualizationProfile -- uid: XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile.VisualizationProfile* - name: VisualizationProfile - href: api/XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile.html#XRTK_Definitions_Controllers_MixedRealityControllerMappingProfile_VisualizationProfile_ - commentId: Overload:XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile.VisualizationProfile - isSpec: "True" - fullName: XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile.VisualizationProfile - nameWithType: MixedRealityControllerMappingProfile.VisualizationProfile -- uid: XRTK.Definitions.Controllers.MixedRealityControllerVisualizationProfile - name: MixedRealityControllerVisualizationProfile - href: api/XRTK.Definitions.Controllers.MixedRealityControllerVisualizationProfile.html - commentId: T:XRTK.Definitions.Controllers.MixedRealityControllerVisualizationProfile - fullName: XRTK.Definitions.Controllers.MixedRealityControllerVisualizationProfile - nameWithType: MixedRealityControllerVisualizationProfile -- uid: XRTK.Definitions.Controllers.MixedRealityControllerVisualizationProfile.AlternatePointerPose - name: AlternatePointerPose - href: api/XRTK.Definitions.Controllers.MixedRealityControllerVisualizationProfile.html#XRTK_Definitions_Controllers_MixedRealityControllerVisualizationProfile_AlternatePointerPose - commentId: P:XRTK.Definitions.Controllers.MixedRealityControllerVisualizationProfile.AlternatePointerPose - fullName: XRTK.Definitions.Controllers.MixedRealityControllerVisualizationProfile.AlternatePointerPose - nameWithType: MixedRealityControllerVisualizationProfile.AlternatePointerPose -- uid: XRTK.Definitions.Controllers.MixedRealityControllerVisualizationProfile.AlternatePointerPose* - name: AlternatePointerPose - href: api/XRTK.Definitions.Controllers.MixedRealityControllerVisualizationProfile.html#XRTK_Definitions_Controllers_MixedRealityControllerVisualizationProfile_AlternatePointerPose_ - commentId: Overload:XRTK.Definitions.Controllers.MixedRealityControllerVisualizationProfile.AlternatePointerPose - isSpec: "True" - fullName: XRTK.Definitions.Controllers.MixedRealityControllerVisualizationProfile.AlternatePointerPose - nameWithType: MixedRealityControllerVisualizationProfile.AlternatePointerPose -- uid: XRTK.Definitions.Controllers.MixedRealityControllerVisualizationProfile.ControllerVisualizationType - name: ControllerVisualizationType - href: api/XRTK.Definitions.Controllers.MixedRealityControllerVisualizationProfile.html#XRTK_Definitions_Controllers_MixedRealityControllerVisualizationProfile_ControllerVisualizationType - commentId: P:XRTK.Definitions.Controllers.MixedRealityControllerVisualizationProfile.ControllerVisualizationType - fullName: XRTK.Definitions.Controllers.MixedRealityControllerVisualizationProfile.ControllerVisualizationType - nameWithType: MixedRealityControllerVisualizationProfile.ControllerVisualizationType -- uid: XRTK.Definitions.Controllers.MixedRealityControllerVisualizationProfile.ControllerVisualizationType* - name: ControllerVisualizationType - href: api/XRTK.Definitions.Controllers.MixedRealityControllerVisualizationProfile.html#XRTK_Definitions_Controllers_MixedRealityControllerVisualizationProfile_ControllerVisualizationType_ - commentId: Overload:XRTK.Definitions.Controllers.MixedRealityControllerVisualizationProfile.ControllerVisualizationType - isSpec: "True" - fullName: XRTK.Definitions.Controllers.MixedRealityControllerVisualizationProfile.ControllerVisualizationType - nameWithType: MixedRealityControllerVisualizationProfile.ControllerVisualizationType -- uid: XRTK.Definitions.Controllers.MixedRealityControllerVisualizationProfile.LeftHandModel - name: LeftHandModel - href: api/XRTK.Definitions.Controllers.MixedRealityControllerVisualizationProfile.html#XRTK_Definitions_Controllers_MixedRealityControllerVisualizationProfile_LeftHandModel - commentId: P:XRTK.Definitions.Controllers.MixedRealityControllerVisualizationProfile.LeftHandModel - fullName: XRTK.Definitions.Controllers.MixedRealityControllerVisualizationProfile.LeftHandModel - nameWithType: MixedRealityControllerVisualizationProfile.LeftHandModel -- uid: XRTK.Definitions.Controllers.MixedRealityControllerVisualizationProfile.LeftHandModel* - name: LeftHandModel - href: api/XRTK.Definitions.Controllers.MixedRealityControllerVisualizationProfile.html#XRTK_Definitions_Controllers_MixedRealityControllerVisualizationProfile_LeftHandModel_ - commentId: Overload:XRTK.Definitions.Controllers.MixedRealityControllerVisualizationProfile.LeftHandModel - isSpec: "True" - fullName: XRTK.Definitions.Controllers.MixedRealityControllerVisualizationProfile.LeftHandModel - nameWithType: MixedRealityControllerVisualizationProfile.LeftHandModel -- uid: XRTK.Definitions.Controllers.MixedRealityControllerVisualizationProfile.PointerPose - name: PointerPose - href: api/XRTK.Definitions.Controllers.MixedRealityControllerVisualizationProfile.html#XRTK_Definitions_Controllers_MixedRealityControllerVisualizationProfile_PointerPose - commentId: P:XRTK.Definitions.Controllers.MixedRealityControllerVisualizationProfile.PointerPose - fullName: XRTK.Definitions.Controllers.MixedRealityControllerVisualizationProfile.PointerPose - nameWithType: MixedRealityControllerVisualizationProfile.PointerPose -- uid: XRTK.Definitions.Controllers.MixedRealityControllerVisualizationProfile.PointerPose* - name: PointerPose - href: api/XRTK.Definitions.Controllers.MixedRealityControllerVisualizationProfile.html#XRTK_Definitions_Controllers_MixedRealityControllerVisualizationProfile_PointerPose_ - commentId: Overload:XRTK.Definitions.Controllers.MixedRealityControllerVisualizationProfile.PointerPose - isSpec: "True" - fullName: XRTK.Definitions.Controllers.MixedRealityControllerVisualizationProfile.PointerPose - nameWithType: MixedRealityControllerVisualizationProfile.PointerPose -- uid: XRTK.Definitions.Controllers.MixedRealityControllerVisualizationProfile.UseDefaultModels - name: UseDefaultModels - href: api/XRTK.Definitions.Controllers.MixedRealityControllerVisualizationProfile.html#XRTK_Definitions_Controllers_MixedRealityControllerVisualizationProfile_UseDefaultModels - commentId: P:XRTK.Definitions.Controllers.MixedRealityControllerVisualizationProfile.UseDefaultModels - fullName: XRTK.Definitions.Controllers.MixedRealityControllerVisualizationProfile.UseDefaultModels - nameWithType: MixedRealityControllerVisualizationProfile.UseDefaultModels -- uid: XRTK.Definitions.Controllers.MixedRealityControllerVisualizationProfile.UseDefaultModels* - name: UseDefaultModels - href: api/XRTK.Definitions.Controllers.MixedRealityControllerVisualizationProfile.html#XRTK_Definitions_Controllers_MixedRealityControllerVisualizationProfile_UseDefaultModels_ - commentId: Overload:XRTK.Definitions.Controllers.MixedRealityControllerVisualizationProfile.UseDefaultModels - isSpec: "True" - fullName: XRTK.Definitions.Controllers.MixedRealityControllerVisualizationProfile.UseDefaultModels - nameWithType: MixedRealityControllerVisualizationProfile.UseDefaultModels -- uid: XRTK.Definitions.Controllers.MixedRealityInteractionMappingProfile - name: MixedRealityInteractionMappingProfile - href: api/XRTK.Definitions.Controllers.MixedRealityInteractionMappingProfile.html - commentId: T:XRTK.Definitions.Controllers.MixedRealityInteractionMappingProfile - fullName: XRTK.Definitions.Controllers.MixedRealityInteractionMappingProfile - nameWithType: MixedRealityInteractionMappingProfile -- uid: XRTK.Definitions.Controllers.MixedRealityInteractionMappingProfile.InteractionMapping - name: InteractionMapping - href: api/XRTK.Definitions.Controllers.MixedRealityInteractionMappingProfile.html#XRTK_Definitions_Controllers_MixedRealityInteractionMappingProfile_InteractionMapping - commentId: P:XRTK.Definitions.Controllers.MixedRealityInteractionMappingProfile.InteractionMapping - fullName: XRTK.Definitions.Controllers.MixedRealityInteractionMappingProfile.InteractionMapping - nameWithType: MixedRealityInteractionMappingProfile.InteractionMapping -- uid: XRTK.Definitions.Controllers.MixedRealityInteractionMappingProfile.InteractionMapping* - name: InteractionMapping - href: api/XRTK.Definitions.Controllers.MixedRealityInteractionMappingProfile.html#XRTK_Definitions_Controllers_MixedRealityInteractionMappingProfile_InteractionMapping_ - commentId: Overload:XRTK.Definitions.Controllers.MixedRealityInteractionMappingProfile.InteractionMapping - isSpec: "True" - fullName: XRTK.Definitions.Controllers.MixedRealityInteractionMappingProfile.InteractionMapping - nameWithType: MixedRealityInteractionMappingProfile.InteractionMapping -- uid: XRTK.Definitions.Controllers.MixedRealityInteractionMappingProfile.PointerProfiles - name: PointerProfiles - href: api/XRTK.Definitions.Controllers.MixedRealityInteractionMappingProfile.html#XRTK_Definitions_Controllers_MixedRealityInteractionMappingProfile_PointerProfiles - commentId: P:XRTK.Definitions.Controllers.MixedRealityInteractionMappingProfile.PointerProfiles - fullName: XRTK.Definitions.Controllers.MixedRealityInteractionMappingProfile.PointerProfiles - nameWithType: MixedRealityInteractionMappingProfile.PointerProfiles -- uid: XRTK.Definitions.Controllers.MixedRealityInteractionMappingProfile.PointerProfiles* - name: PointerProfiles - href: api/XRTK.Definitions.Controllers.MixedRealityInteractionMappingProfile.html#XRTK_Definitions_Controllers_MixedRealityInteractionMappingProfile_PointerProfiles_ - commentId: Overload:XRTK.Definitions.Controllers.MixedRealityInteractionMappingProfile.PointerProfiles - isSpec: "True" - fullName: XRTK.Definitions.Controllers.MixedRealityInteractionMappingProfile.PointerProfiles - nameWithType: MixedRealityInteractionMappingProfile.PointerProfiles -- uid: XRTK.Definitions.Controllers.OpenVR.Profiles - name: XRTK.Definitions.Controllers.OpenVR.Profiles - href: api/XRTK.Definitions.Controllers.OpenVR.Profiles.html - commentId: N:XRTK.Definitions.Controllers.OpenVR.Profiles - fullName: XRTK.Definitions.Controllers.OpenVR.Profiles - nameWithType: XRTK.Definitions.Controllers.OpenVR.Profiles -- uid: XRTK.Definitions.Controllers.OpenVR.Profiles.OpenVRControllerDataProviderProfile - name: OpenVRControllerDataProviderProfile - href: api/XRTK.Definitions.Controllers.OpenVR.Profiles.OpenVRControllerDataProviderProfile.html - commentId: T:XRTK.Definitions.Controllers.OpenVR.Profiles.OpenVRControllerDataProviderProfile - fullName: XRTK.Definitions.Controllers.OpenVR.Profiles.OpenVRControllerDataProviderProfile - nameWithType: OpenVRControllerDataProviderProfile -- uid: XRTK.Definitions.Controllers.OpenVR.Profiles.OpenVRControllerDataProviderProfile.GetDefaultControllerOptions - name: GetDefaultControllerOptions() - href: api/XRTK.Definitions.Controllers.OpenVR.Profiles.OpenVRControllerDataProviderProfile.html#XRTK_Definitions_Controllers_OpenVR_Profiles_OpenVRControllerDataProviderProfile_GetDefaultControllerOptions - commentId: M:XRTK.Definitions.Controllers.OpenVR.Profiles.OpenVRControllerDataProviderProfile.GetDefaultControllerOptions - fullName: XRTK.Definitions.Controllers.OpenVR.Profiles.OpenVRControllerDataProviderProfile.GetDefaultControllerOptions() - nameWithType: OpenVRControllerDataProviderProfile.GetDefaultControllerOptions() -- uid: XRTK.Definitions.Controllers.OpenVR.Profiles.OpenVRControllerDataProviderProfile.GetDefaultControllerOptions* - name: GetDefaultControllerOptions - href: api/XRTK.Definitions.Controllers.OpenVR.Profiles.OpenVRControllerDataProviderProfile.html#XRTK_Definitions_Controllers_OpenVR_Profiles_OpenVRControllerDataProviderProfile_GetDefaultControllerOptions_ - commentId: Overload:XRTK.Definitions.Controllers.OpenVR.Profiles.OpenVRControllerDataProviderProfile.GetDefaultControllerOptions - isSpec: "True" - fullName: XRTK.Definitions.Controllers.OpenVR.Profiles.OpenVRControllerDataProviderProfile.GetDefaultControllerOptions - nameWithType: OpenVRControllerDataProviderProfile.GetDefaultControllerOptions -- uid: XRTK.Definitions.Controllers.Simulation - name: XRTK.Definitions.Controllers.Simulation - href: api/XRTK.Definitions.Controllers.Simulation.html - commentId: N:XRTK.Definitions.Controllers.Simulation - fullName: XRTK.Definitions.Controllers.Simulation - nameWithType: XRTK.Definitions.Controllers.Simulation -- uid: XRTK.Definitions.Controllers.Simulation.Hands - name: XRTK.Definitions.Controllers.Simulation.Hands - href: api/XRTK.Definitions.Controllers.Simulation.Hands.html - commentId: N:XRTK.Definitions.Controllers.Simulation.Hands - fullName: XRTK.Definitions.Controllers.Simulation.Hands - nameWithType: XRTK.Definitions.Controllers.Simulation.Hands -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile - name: SimulatedHandControllerDataProviderProfile - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.html - commentId: T:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile - nameWithType: SimulatedHandControllerDataProviderProfile -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.BoundsMode - name: BoundsMode - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.html#XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerDataProviderProfile_BoundsMode - commentId: P:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.BoundsMode - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.BoundsMode - nameWithType: SimulatedHandControllerDataProviderProfile.BoundsMode -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.BoundsMode* - name: BoundsMode - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.html#XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerDataProviderProfile_BoundsMode_ - commentId: Overload:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.BoundsMode - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.BoundsMode - nameWithType: SimulatedHandControllerDataProviderProfile.BoundsMode -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.GetDefaultControllerOptions - name: GetDefaultControllerOptions() - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.html#XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerDataProviderProfile_GetDefaultControllerOptions - commentId: M:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.GetDefaultControllerOptions - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.GetDefaultControllerOptions() - nameWithType: SimulatedHandControllerDataProviderProfile.GetDefaultControllerOptions() -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.GetDefaultControllerOptions* - name: GetDefaultControllerOptions - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.html#XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerDataProviderProfile_GetDefaultControllerOptions_ - commentId: Overload:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.GetDefaultControllerOptions - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.GetDefaultControllerOptions - nameWithType: SimulatedHandControllerDataProviderProfile.GetDefaultControllerOptions -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.GripThreshold - name: GripThreshold - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.html#XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerDataProviderProfile_GripThreshold - commentId: P:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.GripThreshold - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.GripThreshold - nameWithType: SimulatedHandControllerDataProviderProfile.GripThreshold -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.GripThreshold* - name: GripThreshold - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.html#XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerDataProviderProfile_GripThreshold_ - commentId: Overload:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.GripThreshold - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.GripThreshold - nameWithType: SimulatedHandControllerDataProviderProfile.GripThreshold -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.HandPhysicsEnabled - name: HandPhysicsEnabled - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.html#XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerDataProviderProfile_HandPhysicsEnabled - commentId: P:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.HandPhysicsEnabled - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.HandPhysicsEnabled - nameWithType: SimulatedHandControllerDataProviderProfile.HandPhysicsEnabled -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.HandPhysicsEnabled* - name: HandPhysicsEnabled - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.html#XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerDataProviderProfile_HandPhysicsEnabled_ - commentId: Overload:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.HandPhysicsEnabled - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.HandPhysicsEnabled - nameWithType: SimulatedHandControllerDataProviderProfile.HandPhysicsEnabled -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.HandPoseAnimationSpeed - name: HandPoseAnimationSpeed - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.html#XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerDataProviderProfile_HandPoseAnimationSpeed - commentId: P:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.HandPoseAnimationSpeed - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.HandPoseAnimationSpeed - nameWithType: SimulatedHandControllerDataProviderProfile.HandPoseAnimationSpeed -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.HandPoseAnimationSpeed* - name: HandPoseAnimationSpeed - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.html#XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerDataProviderProfile_HandPoseAnimationSpeed_ - commentId: Overload:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.HandPoseAnimationSpeed - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.HandPoseAnimationSpeed - nameWithType: SimulatedHandControllerDataProviderProfile.HandPoseAnimationSpeed -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.RenderingMode - name: RenderingMode - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.html#XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerDataProviderProfile_RenderingMode - commentId: P:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.RenderingMode - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.RenderingMode - nameWithType: SimulatedHandControllerDataProviderProfile.RenderingMode -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.RenderingMode* - name: RenderingMode - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.html#XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerDataProviderProfile_RenderingMode_ - commentId: Overload:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.RenderingMode - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.RenderingMode - nameWithType: SimulatedHandControllerDataProviderProfile.RenderingMode -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.TrackedPoses - name: TrackedPoses - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.html#XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerDataProviderProfile_TrackedPoses - commentId: P:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.TrackedPoses - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.TrackedPoses - nameWithType: SimulatedHandControllerDataProviderProfile.TrackedPoses -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.TrackedPoses* - name: TrackedPoses - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.html#XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerDataProviderProfile_TrackedPoses_ - commentId: Overload:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.TrackedPoses - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.TrackedPoses - nameWithType: SimulatedHandControllerDataProviderProfile.TrackedPoses -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.UseTriggers - name: UseTriggers - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.html#XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerDataProviderProfile_UseTriggers - commentId: P:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.UseTriggers - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.UseTriggers - nameWithType: SimulatedHandControllerDataProviderProfile.UseTriggers -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.UseTriggers* - name: UseTriggers - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.html#XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerDataProviderProfile_UseTriggers_ - commentId: Overload:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.UseTriggers - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile.UseTriggers - nameWithType: SimulatedHandControllerDataProviderProfile.UseTriggers -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose - name: SimulatedHandControllerPose - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.html - commentId: T:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose - nameWithType: SimulatedHandControllerPose -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.#ctor(System.String) - name: SimulatedHandControllerPose(String) - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.html#XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerPose__ctor_System_String_ - commentId: M:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.#ctor(System.String) - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.SimulatedHandControllerPose(System.String) - nameWithType: SimulatedHandControllerPose.SimulatedHandControllerPose(String) -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.#ctor(XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose) - name: SimulatedHandControllerPose(SimulatedHandControllerPose) - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.html#XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerPose__ctor_XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerPose_ - commentId: M:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.#ctor(XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose) - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.SimulatedHandControllerPose(XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose) - nameWithType: SimulatedHandControllerPose.SimulatedHandControllerPose(SimulatedHandControllerPose) -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.#ctor* - name: SimulatedHandControllerPose - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.html#XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerPose__ctor_ - commentId: Overload:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.#ctor - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.SimulatedHandControllerPose - nameWithType: SimulatedHandControllerPose.SimulatedHandControllerPose -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.DefaultHandPose - name: DefaultHandPose - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.html#XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerPose_DefaultHandPose - commentId: P:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.DefaultHandPose - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.DefaultHandPose - nameWithType: SimulatedHandControllerPose.DefaultHandPose -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.DefaultHandPose* - name: DefaultHandPose - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.html#XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerPose_DefaultHandPose_ - commentId: Overload:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.DefaultHandPose - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.DefaultHandPose - nameWithType: SimulatedHandControllerPose.DefaultHandPose -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.Equals(System.Object) - name: Equals(Object) - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.html#XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerPose_Equals_System_Object_ - commentId: M:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.Equals(System.Object) - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.Equals(System.Object) - nameWithType: SimulatedHandControllerPose.Equals(Object) -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.Equals(XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose) - name: Equals(SimulatedHandControllerPose) - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.html#XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerPose_Equals_XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerPose_ - commentId: M:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.Equals(XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose) - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.Equals(XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose) - nameWithType: SimulatedHandControllerPose.Equals(SimulatedHandControllerPose) -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.Equals* - name: Equals - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.html#XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerPose_Equals_ - commentId: Overload:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.Equals - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.Equals - nameWithType: SimulatedHandControllerPose.Equals -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.FromJson(System.String) - name: FromJson(String) - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.html#XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerPose_FromJson_System_String_ - commentId: M:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.FromJson(System.String) - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.FromJson(System.String) - nameWithType: SimulatedHandControllerPose.FromJson(String) -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.FromJson* - name: FromJson - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.html#XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerPose_FromJson_ - commentId: Overload:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.FromJson - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.FromJson - nameWithType: SimulatedHandControllerPose.FromJson -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.GetHashCode - name: GetHashCode() - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.html#XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerPose_GetHashCode - commentId: M:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.GetHashCode - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.GetHashCode() - nameWithType: SimulatedHandControllerPose.GetHashCode() -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.GetHashCode* - name: GetHashCode - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.html#XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerPose_GetHashCode_ - commentId: Overload:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.GetHashCode - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.GetHashCode - nameWithType: SimulatedHandControllerPose.GetHashCode -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.GetPoseByName(System.String) - name: GetPoseByName(String) - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.html#XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerPose_GetPoseByName_System_String_ - commentId: M:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.GetPoseByName(System.String) - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.GetPoseByName(System.String) - nameWithType: SimulatedHandControllerPose.GetPoseByName(String) -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.GetPoseByName* - name: GetPoseByName - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.html#XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerPose_GetPoseByName_ - commentId: Overload:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.GetPoseByName - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.GetPoseByName - nameWithType: SimulatedHandControllerPose.GetPoseByName -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.Id - name: Id - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.html#XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerPose_Id - commentId: P:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.Id - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.Id - nameWithType: SimulatedHandControllerPose.Id -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.Id* - name: Id - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.html#XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerPose_Id_ - commentId: Overload:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.Id - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.Id - nameWithType: SimulatedHandControllerPose.Id -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.Initialize(System.Collections.Generic.IReadOnlyList{XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile}) - name: Initialize(IReadOnlyList) - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.html#XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerPose_Initialize_System_Collections_Generic_IReadOnlyList_XRTK_Definitions_Controllers_Hands_HandControllerPoseProfile__ - commentId: M:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.Initialize(System.Collections.Generic.IReadOnlyList{XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile}) - name.vb: Initialize(IReadOnlyList(Of HandControllerPoseProfile)) - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.Initialize(System.Collections.Generic.IReadOnlyList) - fullName.vb: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.Initialize(System.Collections.Generic.IReadOnlyList(Of XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile)) - nameWithType: SimulatedHandControllerPose.Initialize(IReadOnlyList) - nameWithType.vb: SimulatedHandControllerPose.Initialize(IReadOnlyList(Of HandControllerPoseProfile)) -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.Initialize* - name: Initialize - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.html#XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerPose_Initialize_ - commentId: Overload:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.Initialize - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.Initialize - nameWithType: SimulatedHandControllerPose.Initialize -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.Lerp(XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose@,XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose,XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose,System.Single) - name: Lerp(ref SimulatedHandControllerPose, SimulatedHandControllerPose, SimulatedHandControllerPose, Single) - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.html#XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerPose_Lerp_XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerPose__XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerPose_XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerPose_System_Single_ - commentId: M:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.Lerp(XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose@,XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose,XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose,System.Single) - name.vb: Lerp(ByRef SimulatedHandControllerPose, SimulatedHandControllerPose, SimulatedHandControllerPose, Single) - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.Lerp(ref XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose, XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose, XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose, System.Single) - fullName.vb: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.Lerp(ByRef XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose, XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose, XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose, System.Single) - nameWithType: SimulatedHandControllerPose.Lerp(ref SimulatedHandControllerPose, SimulatedHandControllerPose, SimulatedHandControllerPose, Single) - nameWithType.vb: SimulatedHandControllerPose.Lerp(ByRef SimulatedHandControllerPose, SimulatedHandControllerPose, SimulatedHandControllerPose, Single) -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.Lerp* - name: Lerp - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.html#XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerPose_Lerp_ - commentId: Overload:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.Lerp - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.Lerp - nameWithType: SimulatedHandControllerPose.Lerp -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.LocalJointPoses - name: LocalJointPoses - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.html#XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerPose_LocalJointPoses - commentId: P:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.LocalJointPoses - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.LocalJointPoses - nameWithType: SimulatedHandControllerPose.LocalJointPoses -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.LocalJointPoses* - name: LocalJointPoses - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.html#XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerPose_LocalJointPoses_ - commentId: Overload:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.LocalJointPoses - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.LocalJointPoses - nameWithType: SimulatedHandControllerPose.LocalJointPoses -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.op_Equality(XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose,XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose) - name: Equality(SimulatedHandControllerPose, SimulatedHandControllerPose) - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.html#XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerPose_op_Equality_XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerPose_XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerPose_ - commentId: M:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.op_Equality(XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose,XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose) - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.Equality(XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose, XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose) - nameWithType: SimulatedHandControllerPose.Equality(SimulatedHandControllerPose, SimulatedHandControllerPose) -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.op_Equality* - name: Equality - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.html#XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerPose_op_Equality_ - commentId: Overload:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.op_Equality - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.Equality - nameWithType: SimulatedHandControllerPose.Equality -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.op_Inequality(XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose,XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose) - name: Inequality(SimulatedHandControllerPose, SimulatedHandControllerPose) - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.html#XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerPose_op_Inequality_XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerPose_XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerPose_ - commentId: M:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.op_Inequality(XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose,XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose) - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.Inequality(XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose, XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose) - nameWithType: SimulatedHandControllerPose.Inequality(SimulatedHandControllerPose, SimulatedHandControllerPose) -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.op_Inequality* - name: Inequality - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.html#XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerPose_op_Inequality_ - commentId: Overload:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.op_Inequality - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.Inequality - nameWithType: SimulatedHandControllerPose.Inequality -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.SetZero - name: SetZero() - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.html#XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerPose_SetZero - commentId: M:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.SetZero - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.SetZero() - nameWithType: SimulatedHandControllerPose.SetZero() -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.SetZero* - name: SetZero - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.html#XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerPose_SetZero_ - commentId: Overload:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.SetZero - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.SetZero - nameWithType: SimulatedHandControllerPose.SetZero -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.System#Collections#IEqualityComparer#Equals(System.Object,System.Object) - name: IEqualityComparer.Equals(Object, Object) - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.html#XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerPose_System_Collections_IEqualityComparer_Equals_System_Object_System_Object_ - commentId: M:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.System#Collections#IEqualityComparer#Equals(System.Object,System.Object) - name.vb: System.Collections.IEqualityComparer.Equals(Object, Object) - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.System.Collections.IEqualityComparer.Equals(System.Object, System.Object) - nameWithType: SimulatedHandControllerPose.IEqualityComparer.Equals(Object, Object) - nameWithType.vb: SimulatedHandControllerPose.System.Collections.IEqualityComparer.Equals(Object, Object) -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.System#Collections#IEqualityComparer#Equals* - name: IEqualityComparer.Equals - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.html#XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerPose_System_Collections_IEqualityComparer_Equals_ - commentId: Overload:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.System#Collections#IEqualityComparer#Equals - isSpec: "True" - name.vb: System.Collections.IEqualityComparer.Equals - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.System.Collections.IEqualityComparer.Equals - nameWithType: SimulatedHandControllerPose.IEqualityComparer.Equals - nameWithType.vb: SimulatedHandControllerPose.System.Collections.IEqualityComparer.Equals -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.System#Collections#IEqualityComparer#GetHashCode(System.Object) - name: IEqualityComparer.GetHashCode(Object) - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.html#XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerPose_System_Collections_IEqualityComparer_GetHashCode_System_Object_ - commentId: M:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.System#Collections#IEqualityComparer#GetHashCode(System.Object) - name.vb: System.Collections.IEqualityComparer.GetHashCode(Object) - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.System.Collections.IEqualityComparer.GetHashCode(System.Object) - nameWithType: SimulatedHandControllerPose.IEqualityComparer.GetHashCode(Object) - nameWithType.vb: SimulatedHandControllerPose.System.Collections.IEqualityComparer.GetHashCode(Object) -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.System#Collections#IEqualityComparer#GetHashCode* - name: IEqualityComparer.GetHashCode - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.html#XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerPose_System_Collections_IEqualityComparer_GetHashCode_ - commentId: Overload:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.System#Collections#IEqualityComparer#GetHashCode - isSpec: "True" - name.vb: System.Collections.IEqualityComparer.GetHashCode - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.System.Collections.IEqualityComparer.GetHashCode - nameWithType: SimulatedHandControllerPose.IEqualityComparer.GetHashCode - nameWithType.vb: SimulatedHandControllerPose.System.Collections.IEqualityComparer.GetHashCode -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.ToJson - name: ToJson() - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.html#XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerPose_ToJson - commentId: M:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.ToJson - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.ToJson() - nameWithType: SimulatedHandControllerPose.ToJson() -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.ToJson* - name: ToJson - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.html#XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerPose_ToJson_ - commentId: Overload:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.ToJson - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.ToJson - nameWithType: SimulatedHandControllerPose.ToJson -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.ToString - name: ToString() - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.html#XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerPose_ToString - commentId: M:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.ToString - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.ToString() - nameWithType: SimulatedHandControllerPose.ToString() -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.ToString* - name: ToString - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.html#XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerPose_ToString_ - commentId: Overload:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.ToString - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.ToString - nameWithType: SimulatedHandControllerPose.ToString -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.TryGetPoseByName(System.String,XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose@) - name: TryGetPoseByName(String, out SimulatedHandControllerPose) - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.html#XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerPose_TryGetPoseByName_System_String_XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerPose__ - commentId: M:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.TryGetPoseByName(System.String,XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose@) - name.vb: TryGetPoseByName(String, ByRef SimulatedHandControllerPose) - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.TryGetPoseByName(System.String, out XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose) - fullName.vb: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.TryGetPoseByName(System.String, ByRef XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose) - nameWithType: SimulatedHandControllerPose.TryGetPoseByName(String, out SimulatedHandControllerPose) - nameWithType.vb: SimulatedHandControllerPose.TryGetPoseByName(String, ByRef SimulatedHandControllerPose) -- uid: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.TryGetPoseByName* - name: TryGetPoseByName - href: api/XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.html#XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerPose_TryGetPoseByName_ - commentId: Overload:XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.TryGetPoseByName - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerPose.TryGetPoseByName - nameWithType: SimulatedHandControllerPose.TryGetPoseByName -- uid: XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile - name: SimulatedControllerDataProviderProfile - href: api/XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.html - commentId: T:XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile - fullName: XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile - nameWithType: SimulatedControllerDataProviderProfile -- uid: XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.ControllerHideTimeout - name: ControllerHideTimeout - href: api/XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.html#XRTK_Definitions_Controllers_Simulation_SimulatedControllerDataProviderProfile_ControllerHideTimeout - commentId: P:XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.ControllerHideTimeout - fullName: XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.ControllerHideTimeout - nameWithType: SimulatedControllerDataProviderProfile.ControllerHideTimeout -- uid: XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.ControllerHideTimeout* - name: ControllerHideTimeout - href: api/XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.html#XRTK_Definitions_Controllers_Simulation_SimulatedControllerDataProviderProfile_ControllerHideTimeout_ - commentId: Overload:XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.ControllerHideTimeout - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.ControllerHideTimeout - nameWithType: SimulatedControllerDataProviderProfile.ControllerHideTimeout -- uid: XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.DefaultDistance - name: DefaultDistance - href: api/XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.html#XRTK_Definitions_Controllers_Simulation_SimulatedControllerDataProviderProfile_DefaultDistance - commentId: P:XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.DefaultDistance - fullName: XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.DefaultDistance - nameWithType: SimulatedControllerDataProviderProfile.DefaultDistance -- uid: XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.DefaultDistance* - name: DefaultDistance - href: api/XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.html#XRTK_Definitions_Controllers_Simulation_SimulatedControllerDataProviderProfile_DefaultDistance_ - commentId: Overload:XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.DefaultDistance - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.DefaultDistance - nameWithType: SimulatedControllerDataProviderProfile.DefaultDistance -- uid: XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.DepthMultiplier - name: DepthMultiplier - href: api/XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.html#XRTK_Definitions_Controllers_Simulation_SimulatedControllerDataProviderProfile_DepthMultiplier - commentId: P:XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.DepthMultiplier - fullName: XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.DepthMultiplier - nameWithType: SimulatedControllerDataProviderProfile.DepthMultiplier -- uid: XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.DepthMultiplier* - name: DepthMultiplier - href: api/XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.html#XRTK_Definitions_Controllers_Simulation_SimulatedControllerDataProviderProfile_DepthMultiplier_ - commentId: Overload:XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.DepthMultiplier - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.DepthMultiplier - nameWithType: SimulatedControllerDataProviderProfile.DepthMultiplier -- uid: XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.GetDefaultControllerOptions - name: GetDefaultControllerOptions() - href: api/XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.html#XRTK_Definitions_Controllers_Simulation_SimulatedControllerDataProviderProfile_GetDefaultControllerOptions - commentId: M:XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.GetDefaultControllerOptions - fullName: XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.GetDefaultControllerOptions() - nameWithType: SimulatedControllerDataProviderProfile.GetDefaultControllerOptions() -- uid: XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.GetDefaultControllerOptions* - name: GetDefaultControllerOptions - href: api/XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.html#XRTK_Definitions_Controllers_Simulation_SimulatedControllerDataProviderProfile_GetDefaultControllerOptions_ - commentId: Overload:XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.GetDefaultControllerOptions - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.GetDefaultControllerOptions - nameWithType: SimulatedControllerDataProviderProfile.GetDefaultControllerOptions -- uid: XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.JitterAmount - name: JitterAmount - href: api/XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.html#XRTK_Definitions_Controllers_Simulation_SimulatedControllerDataProviderProfile_JitterAmount - commentId: P:XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.JitterAmount - fullName: XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.JitterAmount - nameWithType: SimulatedControllerDataProviderProfile.JitterAmount -- uid: XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.JitterAmount* - name: JitterAmount - href: api/XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.html#XRTK_Definitions_Controllers_Simulation_SimulatedControllerDataProviderProfile_JitterAmount_ - commentId: Overload:XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.JitterAmount - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.JitterAmount - nameWithType: SimulatedControllerDataProviderProfile.JitterAmount -- uid: XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.LeftControllerTrackedKey - name: LeftControllerTrackedKey - href: api/XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.html#XRTK_Definitions_Controllers_Simulation_SimulatedControllerDataProviderProfile_LeftControllerTrackedKey - commentId: P:XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.LeftControllerTrackedKey - fullName: XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.LeftControllerTrackedKey - nameWithType: SimulatedControllerDataProviderProfile.LeftControllerTrackedKey -- uid: XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.LeftControllerTrackedKey* - name: LeftControllerTrackedKey - href: api/XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.html#XRTK_Definitions_Controllers_Simulation_SimulatedControllerDataProviderProfile_LeftControllerTrackedKey_ - commentId: Overload:XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.LeftControllerTrackedKey - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.LeftControllerTrackedKey - nameWithType: SimulatedControllerDataProviderProfile.LeftControllerTrackedKey -- uid: XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.RightControllerTrackedKey - name: RightControllerTrackedKey - href: api/XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.html#XRTK_Definitions_Controllers_Simulation_SimulatedControllerDataProviderProfile_RightControllerTrackedKey - commentId: P:XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.RightControllerTrackedKey - fullName: XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.RightControllerTrackedKey - nameWithType: SimulatedControllerDataProviderProfile.RightControllerTrackedKey -- uid: XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.RightControllerTrackedKey* - name: RightControllerTrackedKey - href: api/XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.html#XRTK_Definitions_Controllers_Simulation_SimulatedControllerDataProviderProfile_RightControllerTrackedKey_ - commentId: Overload:XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.RightControllerTrackedKey - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.RightControllerTrackedKey - nameWithType: SimulatedControllerDataProviderProfile.RightControllerTrackedKey -- uid: XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.RotationSpeed - name: RotationSpeed - href: api/XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.html#XRTK_Definitions_Controllers_Simulation_SimulatedControllerDataProviderProfile_RotationSpeed - commentId: P:XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.RotationSpeed - fullName: XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.RotationSpeed - nameWithType: SimulatedControllerDataProviderProfile.RotationSpeed -- uid: XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.RotationSpeed* - name: RotationSpeed - href: api/XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.html#XRTK_Definitions_Controllers_Simulation_SimulatedControllerDataProviderProfile_RotationSpeed_ - commentId: Overload:XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.RotationSpeed - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.RotationSpeed - nameWithType: SimulatedControllerDataProviderProfile.RotationSpeed -- uid: XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.SimulatedUpdateFrequency - name: SimulatedUpdateFrequency - href: api/XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.html#XRTK_Definitions_Controllers_Simulation_SimulatedControllerDataProviderProfile_SimulatedUpdateFrequency - commentId: P:XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.SimulatedUpdateFrequency - fullName: XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.SimulatedUpdateFrequency - nameWithType: SimulatedControllerDataProviderProfile.SimulatedUpdateFrequency -- uid: XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.SimulatedUpdateFrequency* - name: SimulatedUpdateFrequency - href: api/XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.html#XRTK_Definitions_Controllers_Simulation_SimulatedControllerDataProviderProfile_SimulatedUpdateFrequency_ - commentId: Overload:XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.SimulatedUpdateFrequency - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.SimulatedUpdateFrequency - nameWithType: SimulatedControllerDataProviderProfile.SimulatedUpdateFrequency -- uid: XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.ToggleLeftPersistentKey - name: ToggleLeftPersistentKey - href: api/XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.html#XRTK_Definitions_Controllers_Simulation_SimulatedControllerDataProviderProfile_ToggleLeftPersistentKey - commentId: P:XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.ToggleLeftPersistentKey - fullName: XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.ToggleLeftPersistentKey - nameWithType: SimulatedControllerDataProviderProfile.ToggleLeftPersistentKey -- uid: XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.ToggleLeftPersistentKey* - name: ToggleLeftPersistentKey - href: api/XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.html#XRTK_Definitions_Controllers_Simulation_SimulatedControllerDataProviderProfile_ToggleLeftPersistentKey_ - commentId: Overload:XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.ToggleLeftPersistentKey - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.ToggleLeftPersistentKey - nameWithType: SimulatedControllerDataProviderProfile.ToggleLeftPersistentKey -- uid: XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.ToggleRightPersistentKey - name: ToggleRightPersistentKey - href: api/XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.html#XRTK_Definitions_Controllers_Simulation_SimulatedControllerDataProviderProfile_ToggleRightPersistentKey - commentId: P:XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.ToggleRightPersistentKey - fullName: XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.ToggleRightPersistentKey - nameWithType: SimulatedControllerDataProviderProfile.ToggleRightPersistentKey -- uid: XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.ToggleRightPersistentKey* - name: ToggleRightPersistentKey - href: api/XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.html#XRTK_Definitions_Controllers_Simulation_SimulatedControllerDataProviderProfile_ToggleRightPersistentKey_ - commentId: Overload:XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.ToggleRightPersistentKey - isSpec: "True" - fullName: XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile.ToggleRightPersistentKey - nameWithType: SimulatedControllerDataProviderProfile.ToggleRightPersistentKey -- uid: XRTK.Definitions.Controllers.UnityInput.Profiles - name: XRTK.Definitions.Controllers.UnityInput.Profiles - href: api/XRTK.Definitions.Controllers.UnityInput.Profiles.html - commentId: N:XRTK.Definitions.Controllers.UnityInput.Profiles - fullName: XRTK.Definitions.Controllers.UnityInput.Profiles - nameWithType: XRTK.Definitions.Controllers.UnityInput.Profiles -- uid: XRTK.Definitions.Controllers.UnityInput.Profiles.MouseControllerDataProviderProfile - name: MouseControllerDataProviderProfile - href: api/XRTK.Definitions.Controllers.UnityInput.Profiles.MouseControllerDataProviderProfile.html - commentId: T:XRTK.Definitions.Controllers.UnityInput.Profiles.MouseControllerDataProviderProfile - fullName: XRTK.Definitions.Controllers.UnityInput.Profiles.MouseControllerDataProviderProfile - nameWithType: MouseControllerDataProviderProfile -- uid: XRTK.Definitions.Controllers.UnityInput.Profiles.MouseControllerDataProviderProfile.GetDefaultControllerOptions - name: GetDefaultControllerOptions() - href: api/XRTK.Definitions.Controllers.UnityInput.Profiles.MouseControllerDataProviderProfile.html#XRTK_Definitions_Controllers_UnityInput_Profiles_MouseControllerDataProviderProfile_GetDefaultControllerOptions - commentId: M:XRTK.Definitions.Controllers.UnityInput.Profiles.MouseControllerDataProviderProfile.GetDefaultControllerOptions - fullName: XRTK.Definitions.Controllers.UnityInput.Profiles.MouseControllerDataProviderProfile.GetDefaultControllerOptions() - nameWithType: MouseControllerDataProviderProfile.GetDefaultControllerOptions() -- uid: XRTK.Definitions.Controllers.UnityInput.Profiles.MouseControllerDataProviderProfile.GetDefaultControllerOptions* - name: GetDefaultControllerOptions - href: api/XRTK.Definitions.Controllers.UnityInput.Profiles.MouseControllerDataProviderProfile.html#XRTK_Definitions_Controllers_UnityInput_Profiles_MouseControllerDataProviderProfile_GetDefaultControllerOptions_ - commentId: Overload:XRTK.Definitions.Controllers.UnityInput.Profiles.MouseControllerDataProviderProfile.GetDefaultControllerOptions - isSpec: "True" - fullName: XRTK.Definitions.Controllers.UnityInput.Profiles.MouseControllerDataProviderProfile.GetDefaultControllerOptions - nameWithType: MouseControllerDataProviderProfile.GetDefaultControllerOptions -- uid: XRTK.Definitions.Controllers.UnityInput.Profiles.TouchScreenControllerDataProviderProfile - name: TouchScreenControllerDataProviderProfile - href: api/XRTK.Definitions.Controllers.UnityInput.Profiles.TouchScreenControllerDataProviderProfile.html - commentId: T:XRTK.Definitions.Controllers.UnityInput.Profiles.TouchScreenControllerDataProviderProfile - fullName: XRTK.Definitions.Controllers.UnityInput.Profiles.TouchScreenControllerDataProviderProfile - nameWithType: TouchScreenControllerDataProviderProfile -- uid: XRTK.Definitions.Controllers.UnityInput.Profiles.TouchScreenControllerDataProviderProfile.GetDefaultControllerOptions - name: GetDefaultControllerOptions() - href: api/XRTK.Definitions.Controllers.UnityInput.Profiles.TouchScreenControllerDataProviderProfile.html#XRTK_Definitions_Controllers_UnityInput_Profiles_TouchScreenControllerDataProviderProfile_GetDefaultControllerOptions - commentId: M:XRTK.Definitions.Controllers.UnityInput.Profiles.TouchScreenControllerDataProviderProfile.GetDefaultControllerOptions - fullName: XRTK.Definitions.Controllers.UnityInput.Profiles.TouchScreenControllerDataProviderProfile.GetDefaultControllerOptions() - nameWithType: TouchScreenControllerDataProviderProfile.GetDefaultControllerOptions() -- uid: XRTK.Definitions.Controllers.UnityInput.Profiles.TouchScreenControllerDataProviderProfile.GetDefaultControllerOptions* - name: GetDefaultControllerOptions - href: api/XRTK.Definitions.Controllers.UnityInput.Profiles.TouchScreenControllerDataProviderProfile.html#XRTK_Definitions_Controllers_UnityInput_Profiles_TouchScreenControllerDataProviderProfile_GetDefaultControllerOptions_ - commentId: Overload:XRTK.Definitions.Controllers.UnityInput.Profiles.TouchScreenControllerDataProviderProfile.GetDefaultControllerOptions - isSpec: "True" - fullName: XRTK.Definitions.Controllers.UnityInput.Profiles.TouchScreenControllerDataProviderProfile.GetDefaultControllerOptions - nameWithType: TouchScreenControllerDataProviderProfile.GetDefaultControllerOptions -- uid: XRTK.Definitions.Controllers.UnityInput.Profiles.UnityInputControllerDataProfile - name: UnityInputControllerDataProfile - href: api/XRTK.Definitions.Controllers.UnityInput.Profiles.UnityInputControllerDataProfile.html - commentId: T:XRTK.Definitions.Controllers.UnityInput.Profiles.UnityInputControllerDataProfile - fullName: XRTK.Definitions.Controllers.UnityInput.Profiles.UnityInputControllerDataProfile - nameWithType: UnityInputControllerDataProfile -- uid: XRTK.Definitions.Controllers.UnityInput.Profiles.UnityInputControllerDataProfile.GetDefaultControllerOptions - name: GetDefaultControllerOptions() - href: api/XRTK.Definitions.Controllers.UnityInput.Profiles.UnityInputControllerDataProfile.html#XRTK_Definitions_Controllers_UnityInput_Profiles_UnityInputControllerDataProfile_GetDefaultControllerOptions - commentId: M:XRTK.Definitions.Controllers.UnityInput.Profiles.UnityInputControllerDataProfile.GetDefaultControllerOptions - fullName: XRTK.Definitions.Controllers.UnityInput.Profiles.UnityInputControllerDataProfile.GetDefaultControllerOptions() - nameWithType: UnityInputControllerDataProfile.GetDefaultControllerOptions() -- uid: XRTK.Definitions.Controllers.UnityInput.Profiles.UnityInputControllerDataProfile.GetDefaultControllerOptions* - name: GetDefaultControllerOptions - href: api/XRTK.Definitions.Controllers.UnityInput.Profiles.UnityInputControllerDataProfile.html#XRTK_Definitions_Controllers_UnityInput_Profiles_UnityInputControllerDataProfile_GetDefaultControllerOptions_ - commentId: Overload:XRTK.Definitions.Controllers.UnityInput.Profiles.UnityInputControllerDataProfile.GetDefaultControllerOptions - isSpec: "True" - fullName: XRTK.Definitions.Controllers.UnityInput.Profiles.UnityInputControllerDataProfile.GetDefaultControllerOptions - nameWithType: UnityInputControllerDataProfile.GetDefaultControllerOptions -- uid: XRTK.Definitions.Devices - name: XRTK.Definitions.Devices - href: api/XRTK.Definitions.Devices.html - commentId: N:XRTK.Definitions.Devices - fullName: XRTK.Definitions.Devices - nameWithType: XRTK.Definitions.Devices -- uid: XRTK.Definitions.Devices.ControllerMappingLibrary - name: ControllerMappingLibrary - href: api/XRTK.Definitions.Devices.ControllerMappingLibrary.html - commentId: T:XRTK.Definitions.Devices.ControllerMappingLibrary - fullName: XRTK.Definitions.Devices.ControllerMappingLibrary - nameWithType: ControllerMappingLibrary -- uid: XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_1 - name: AXIS_1 - href: api/XRTK.Definitions.Devices.ControllerMappingLibrary.html#XRTK_Definitions_Devices_ControllerMappingLibrary_AXIS_1 - commentId: F:XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_1 - fullName: XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_1 - nameWithType: ControllerMappingLibrary.AXIS_1 -- uid: XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_10 - name: AXIS_10 - href: api/XRTK.Definitions.Devices.ControllerMappingLibrary.html#XRTK_Definitions_Devices_ControllerMappingLibrary_AXIS_10 - commentId: F:XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_10 - fullName: XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_10 - nameWithType: ControllerMappingLibrary.AXIS_10 -- uid: XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_11 - name: AXIS_11 - href: api/XRTK.Definitions.Devices.ControllerMappingLibrary.html#XRTK_Definitions_Devices_ControllerMappingLibrary_AXIS_11 - commentId: F:XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_11 - fullName: XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_11 - nameWithType: ControllerMappingLibrary.AXIS_11 -- uid: XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_12 - name: AXIS_12 - href: api/XRTK.Definitions.Devices.ControllerMappingLibrary.html#XRTK_Definitions_Devices_ControllerMappingLibrary_AXIS_12 - commentId: F:XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_12 - fullName: XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_12 - nameWithType: ControllerMappingLibrary.AXIS_12 -- uid: XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_13 - name: AXIS_13 - href: api/XRTK.Definitions.Devices.ControllerMappingLibrary.html#XRTK_Definitions_Devices_ControllerMappingLibrary_AXIS_13 - commentId: F:XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_13 - fullName: XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_13 - nameWithType: ControllerMappingLibrary.AXIS_13 -- uid: XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_14 - name: AXIS_14 - href: api/XRTK.Definitions.Devices.ControllerMappingLibrary.html#XRTK_Definitions_Devices_ControllerMappingLibrary_AXIS_14 - commentId: F:XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_14 - fullName: XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_14 - nameWithType: ControllerMappingLibrary.AXIS_14 -- uid: XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_15 - name: AXIS_15 - href: api/XRTK.Definitions.Devices.ControllerMappingLibrary.html#XRTK_Definitions_Devices_ControllerMappingLibrary_AXIS_15 - commentId: F:XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_15 - fullName: XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_15 - nameWithType: ControllerMappingLibrary.AXIS_15 -- uid: XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_16 - name: AXIS_16 - href: api/XRTK.Definitions.Devices.ControllerMappingLibrary.html#XRTK_Definitions_Devices_ControllerMappingLibrary_AXIS_16 - commentId: F:XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_16 - fullName: XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_16 - nameWithType: ControllerMappingLibrary.AXIS_16 -- uid: XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_17 - name: AXIS_17 - href: api/XRTK.Definitions.Devices.ControllerMappingLibrary.html#XRTK_Definitions_Devices_ControllerMappingLibrary_AXIS_17 - commentId: F:XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_17 - fullName: XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_17 - nameWithType: ControllerMappingLibrary.AXIS_17 -- uid: XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_18 - name: AXIS_18 - href: api/XRTK.Definitions.Devices.ControllerMappingLibrary.html#XRTK_Definitions_Devices_ControllerMappingLibrary_AXIS_18 - commentId: F:XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_18 - fullName: XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_18 - nameWithType: ControllerMappingLibrary.AXIS_18 -- uid: XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_19 - name: AXIS_19 - href: api/XRTK.Definitions.Devices.ControllerMappingLibrary.html#XRTK_Definitions_Devices_ControllerMappingLibrary_AXIS_19 - commentId: F:XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_19 - fullName: XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_19 - nameWithType: ControllerMappingLibrary.AXIS_19 -- uid: XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_2 - name: AXIS_2 - href: api/XRTK.Definitions.Devices.ControllerMappingLibrary.html#XRTK_Definitions_Devices_ControllerMappingLibrary_AXIS_2 - commentId: F:XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_2 - fullName: XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_2 - nameWithType: ControllerMappingLibrary.AXIS_2 -- uid: XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_20 - name: AXIS_20 - href: api/XRTK.Definitions.Devices.ControllerMappingLibrary.html#XRTK_Definitions_Devices_ControllerMappingLibrary_AXIS_20 - commentId: F:XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_20 - fullName: XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_20 - nameWithType: ControllerMappingLibrary.AXIS_20 -- uid: XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_21 - name: AXIS_21 - href: api/XRTK.Definitions.Devices.ControllerMappingLibrary.html#XRTK_Definitions_Devices_ControllerMappingLibrary_AXIS_21 - commentId: F:XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_21 - fullName: XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_21 - nameWithType: ControllerMappingLibrary.AXIS_21 -- uid: XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_22 - name: AXIS_22 - href: api/XRTK.Definitions.Devices.ControllerMappingLibrary.html#XRTK_Definitions_Devices_ControllerMappingLibrary_AXIS_22 - commentId: F:XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_22 - fullName: XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_22 - nameWithType: ControllerMappingLibrary.AXIS_22 -- uid: XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_23 - name: AXIS_23 - href: api/XRTK.Definitions.Devices.ControllerMappingLibrary.html#XRTK_Definitions_Devices_ControllerMappingLibrary_AXIS_23 - commentId: F:XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_23 - fullName: XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_23 - nameWithType: ControllerMappingLibrary.AXIS_23 -- uid: XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_24 - name: AXIS_24 - href: api/XRTK.Definitions.Devices.ControllerMappingLibrary.html#XRTK_Definitions_Devices_ControllerMappingLibrary_AXIS_24 - commentId: F:XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_24 - fullName: XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_24 - nameWithType: ControllerMappingLibrary.AXIS_24 -- uid: XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_25 - name: AXIS_25 - href: api/XRTK.Definitions.Devices.ControllerMappingLibrary.html#XRTK_Definitions_Devices_ControllerMappingLibrary_AXIS_25 - commentId: F:XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_25 - fullName: XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_25 - nameWithType: ControllerMappingLibrary.AXIS_25 -- uid: XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_26 - name: AXIS_26 - href: api/XRTK.Definitions.Devices.ControllerMappingLibrary.html#XRTK_Definitions_Devices_ControllerMappingLibrary_AXIS_26 - commentId: F:XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_26 - fullName: XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_26 - nameWithType: ControllerMappingLibrary.AXIS_26 -- uid: XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_27 - name: AXIS_27 - href: api/XRTK.Definitions.Devices.ControllerMappingLibrary.html#XRTK_Definitions_Devices_ControllerMappingLibrary_AXIS_27 - commentId: F:XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_27 - fullName: XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_27 - nameWithType: ControllerMappingLibrary.AXIS_27 -- uid: XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_3 - name: AXIS_3 - href: api/XRTK.Definitions.Devices.ControllerMappingLibrary.html#XRTK_Definitions_Devices_ControllerMappingLibrary_AXIS_3 - commentId: F:XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_3 - fullName: XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_3 - nameWithType: ControllerMappingLibrary.AXIS_3 -- uid: XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_4 - name: AXIS_4 - href: api/XRTK.Definitions.Devices.ControllerMappingLibrary.html#XRTK_Definitions_Devices_ControllerMappingLibrary_AXIS_4 - commentId: F:XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_4 - fullName: XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_4 - nameWithType: ControllerMappingLibrary.AXIS_4 -- uid: XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_5 - name: AXIS_5 - href: api/XRTK.Definitions.Devices.ControllerMappingLibrary.html#XRTK_Definitions_Devices_ControllerMappingLibrary_AXIS_5 - commentId: F:XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_5 - fullName: XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_5 - nameWithType: ControllerMappingLibrary.AXIS_5 -- uid: XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_6 - name: AXIS_6 - href: api/XRTK.Definitions.Devices.ControllerMappingLibrary.html#XRTK_Definitions_Devices_ControllerMappingLibrary_AXIS_6 - commentId: F:XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_6 - fullName: XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_6 - nameWithType: ControllerMappingLibrary.AXIS_6 -- uid: XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_7 - name: AXIS_7 - href: api/XRTK.Definitions.Devices.ControllerMappingLibrary.html#XRTK_Definitions_Devices_ControllerMappingLibrary_AXIS_7 - commentId: F:XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_7 - fullName: XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_7 - nameWithType: ControllerMappingLibrary.AXIS_7 -- uid: XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_8 - name: AXIS_8 - href: api/XRTK.Definitions.Devices.ControllerMappingLibrary.html#XRTK_Definitions_Devices_ControllerMappingLibrary_AXIS_8 - commentId: F:XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_8 - fullName: XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_8 - nameWithType: ControllerMappingLibrary.AXIS_8 -- uid: XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_9 - name: AXIS_9 - href: api/XRTK.Definitions.Devices.ControllerMappingLibrary.html#XRTK_Definitions_Devices_ControllerMappingLibrary_AXIS_9 - commentId: F:XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_9 - fullName: XRTK.Definitions.Devices.ControllerMappingLibrary.AXIS_9 - nameWithType: ControllerMappingLibrary.AXIS_9 -- uid: XRTK.Definitions.Devices.ControllerMappingLibrary.Horizontal - name: Horizontal - href: api/XRTK.Definitions.Devices.ControllerMappingLibrary.html#XRTK_Definitions_Devices_ControllerMappingLibrary_Horizontal - commentId: F:XRTK.Definitions.Devices.ControllerMappingLibrary.Horizontal - fullName: XRTK.Definitions.Devices.ControllerMappingLibrary.Horizontal - nameWithType: ControllerMappingLibrary.Horizontal -- uid: XRTK.Definitions.Devices.ControllerMappingLibrary.MouseScroll - name: MouseScroll - href: api/XRTK.Definitions.Devices.ControllerMappingLibrary.html#XRTK_Definitions_Devices_ControllerMappingLibrary_MouseScroll - commentId: F:XRTK.Definitions.Devices.ControllerMappingLibrary.MouseScroll - fullName: XRTK.Definitions.Devices.ControllerMappingLibrary.MouseScroll - nameWithType: ControllerMappingLibrary.MouseScroll -- uid: XRTK.Definitions.Devices.ControllerMappingLibrary.MouseX - name: MouseX - href: api/XRTK.Definitions.Devices.ControllerMappingLibrary.html#XRTK_Definitions_Devices_ControllerMappingLibrary_MouseX - commentId: F:XRTK.Definitions.Devices.ControllerMappingLibrary.MouseX - fullName: XRTK.Definitions.Devices.ControllerMappingLibrary.MouseX - nameWithType: ControllerMappingLibrary.MouseX -- uid: XRTK.Definitions.Devices.ControllerMappingLibrary.MouseY - name: MouseY - href: api/XRTK.Definitions.Devices.ControllerMappingLibrary.html#XRTK_Definitions_Devices_ControllerMappingLibrary_MouseY - commentId: F:XRTK.Definitions.Devices.ControllerMappingLibrary.MouseY - fullName: XRTK.Definitions.Devices.ControllerMappingLibrary.MouseY - nameWithType: ControllerMappingLibrary.MouseY -- uid: XRTK.Definitions.Devices.ControllerMappingLibrary.Vertical - name: Vertical - href: api/XRTK.Definitions.Devices.ControllerMappingLibrary.html#XRTK_Definitions_Devices_ControllerMappingLibrary_Vertical - commentId: F:XRTK.Definitions.Devices.ControllerMappingLibrary.Vertical - fullName: XRTK.Definitions.Devices.ControllerMappingLibrary.Vertical - nameWithType: ControllerMappingLibrary.Vertical -- uid: XRTK.Definitions.Devices.DeviceInputType - name: DeviceInputType - href: api/XRTK.Definitions.Devices.DeviceInputType.html - commentId: T:XRTK.Definitions.Devices.DeviceInputType - fullName: XRTK.Definitions.Devices.DeviceInputType - nameWithType: DeviceInputType -- uid: XRTK.Definitions.Devices.DeviceInputType.ButtonNearTouch - name: ButtonNearTouch - href: api/XRTK.Definitions.Devices.DeviceInputType.html#XRTK_Definitions_Devices_DeviceInputType_ButtonNearTouch - commentId: F:XRTK.Definitions.Devices.DeviceInputType.ButtonNearTouch - fullName: XRTK.Definitions.Devices.DeviceInputType.ButtonNearTouch - nameWithType: DeviceInputType.ButtonNearTouch -- uid: XRTK.Definitions.Devices.DeviceInputType.ButtonPress - name: ButtonPress - href: api/XRTK.Definitions.Devices.DeviceInputType.html#XRTK_Definitions_Devices_DeviceInputType_ButtonPress - commentId: F:XRTK.Definitions.Devices.DeviceInputType.ButtonPress - fullName: XRTK.Definitions.Devices.DeviceInputType.ButtonPress - nameWithType: DeviceInputType.ButtonPress -- uid: XRTK.Definitions.Devices.DeviceInputType.ButtonTouch - name: ButtonTouch - href: api/XRTK.Definitions.Devices.DeviceInputType.html#XRTK_Definitions_Devices_DeviceInputType_ButtonTouch - commentId: F:XRTK.Definitions.Devices.DeviceInputType.ButtonTouch - fullName: XRTK.Definitions.Devices.DeviceInputType.ButtonTouch - nameWithType: DeviceInputType.ButtonTouch -- uid: XRTK.Definitions.Devices.DeviceInputType.DirectionalPad - name: DirectionalPad - href: api/XRTK.Definitions.Devices.DeviceInputType.html#XRTK_Definitions_Devices_DeviceInputType_DirectionalPad - commentId: F:XRTK.Definitions.Devices.DeviceInputType.DirectionalPad - fullName: XRTK.Definitions.Devices.DeviceInputType.DirectionalPad - nameWithType: DeviceInputType.DirectionalPad -- uid: XRTK.Definitions.Devices.DeviceInputType.Gaze - name: Gaze - href: api/XRTK.Definitions.Devices.DeviceInputType.html#XRTK_Definitions_Devices_DeviceInputType_Gaze - commentId: F:XRTK.Definitions.Devices.DeviceInputType.Gaze - fullName: XRTK.Definitions.Devices.DeviceInputType.Gaze - nameWithType: DeviceInputType.Gaze -- uid: XRTK.Definitions.Devices.DeviceInputType.GripPosition - name: GripPosition - href: api/XRTK.Definitions.Devices.DeviceInputType.html#XRTK_Definitions_Devices_DeviceInputType_GripPosition - commentId: F:XRTK.Definitions.Devices.DeviceInputType.GripPosition - fullName: XRTK.Definitions.Devices.DeviceInputType.GripPosition - nameWithType: DeviceInputType.GripPosition -- uid: XRTK.Definitions.Devices.DeviceInputType.GripRotation - name: GripRotation - href: api/XRTK.Definitions.Devices.DeviceInputType.html#XRTK_Definitions_Devices_DeviceInputType_GripRotation - commentId: F:XRTK.Definitions.Devices.DeviceInputType.GripRotation - fullName: XRTK.Definitions.Devices.DeviceInputType.GripRotation - nameWithType: DeviceInputType.GripRotation -- uid: XRTK.Definitions.Devices.DeviceInputType.Hand - name: Hand - href: api/XRTK.Definitions.Devices.DeviceInputType.html#XRTK_Definitions_Devices_DeviceInputType_Hand - commentId: F:XRTK.Definitions.Devices.DeviceInputType.Hand - fullName: XRTK.Definitions.Devices.DeviceInputType.Hand - nameWithType: DeviceInputType.Hand -- uid: XRTK.Definitions.Devices.DeviceInputType.IndexFinger - name: IndexFinger - href: api/XRTK.Definitions.Devices.DeviceInputType.html#XRTK_Definitions_Devices_DeviceInputType_IndexFinger - commentId: F:XRTK.Definitions.Devices.DeviceInputType.IndexFinger - fullName: XRTK.Definitions.Devices.DeviceInputType.IndexFinger - nameWithType: DeviceInputType.IndexFinger -- uid: XRTK.Definitions.Devices.DeviceInputType.IndexFingerNearTouch - name: IndexFingerNearTouch - href: api/XRTK.Definitions.Devices.DeviceInputType.html#XRTK_Definitions_Devices_DeviceInputType_IndexFingerNearTouch - commentId: F:XRTK.Definitions.Devices.DeviceInputType.IndexFingerNearTouch - fullName: XRTK.Definitions.Devices.DeviceInputType.IndexFingerNearTouch - nameWithType: DeviceInputType.IndexFingerNearTouch -- uid: XRTK.Definitions.Devices.DeviceInputType.IndexFingerPress - name: IndexFingerPress - href: api/XRTK.Definitions.Devices.DeviceInputType.html#XRTK_Definitions_Devices_DeviceInputType_IndexFingerPress - commentId: F:XRTK.Definitions.Devices.DeviceInputType.IndexFingerPress - fullName: XRTK.Definitions.Devices.DeviceInputType.IndexFingerPress - nameWithType: DeviceInputType.IndexFingerPress -- uid: XRTK.Definitions.Devices.DeviceInputType.IndexFingerTouch - name: IndexFingerTouch - href: api/XRTK.Definitions.Devices.DeviceInputType.html#XRTK_Definitions_Devices_DeviceInputType_IndexFingerTouch - commentId: F:XRTK.Definitions.Devices.DeviceInputType.IndexFingerTouch - fullName: XRTK.Definitions.Devices.DeviceInputType.IndexFingerTouch - nameWithType: DeviceInputType.IndexFingerTouch -- uid: XRTK.Definitions.Devices.DeviceInputType.Menu - name: Menu - href: api/XRTK.Definitions.Devices.DeviceInputType.html#XRTK_Definitions_Devices_DeviceInputType_Menu - commentId: F:XRTK.Definitions.Devices.DeviceInputType.Menu - fullName: XRTK.Definitions.Devices.DeviceInputType.Menu - nameWithType: DeviceInputType.Menu -- uid: XRTK.Definitions.Devices.DeviceInputType.MiddleFinger - name: MiddleFinger - href: api/XRTK.Definitions.Devices.DeviceInputType.html#XRTK_Definitions_Devices_DeviceInputType_MiddleFinger - commentId: F:XRTK.Definitions.Devices.DeviceInputType.MiddleFinger - fullName: XRTK.Definitions.Devices.DeviceInputType.MiddleFinger - nameWithType: DeviceInputType.MiddleFinger -- uid: XRTK.Definitions.Devices.DeviceInputType.MiddleFingerNearTouch - name: MiddleFingerNearTouch - href: api/XRTK.Definitions.Devices.DeviceInputType.html#XRTK_Definitions_Devices_DeviceInputType_MiddleFingerNearTouch - commentId: F:XRTK.Definitions.Devices.DeviceInputType.MiddleFingerNearTouch - fullName: XRTK.Definitions.Devices.DeviceInputType.MiddleFingerNearTouch - nameWithType: DeviceInputType.MiddleFingerNearTouch -- uid: XRTK.Definitions.Devices.DeviceInputType.MiddleFingerPress - name: MiddleFingerPress - href: api/XRTK.Definitions.Devices.DeviceInputType.html#XRTK_Definitions_Devices_DeviceInputType_MiddleFingerPress - commentId: F:XRTK.Definitions.Devices.DeviceInputType.MiddleFingerPress - fullName: XRTK.Definitions.Devices.DeviceInputType.MiddleFingerPress - nameWithType: DeviceInputType.MiddleFingerPress -- uid: XRTK.Definitions.Devices.DeviceInputType.MiddleFingerTouch - name: MiddleFingerTouch - href: api/XRTK.Definitions.Devices.DeviceInputType.html#XRTK_Definitions_Devices_DeviceInputType_MiddleFingerTouch - commentId: F:XRTK.Definitions.Devices.DeviceInputType.MiddleFingerTouch - fullName: XRTK.Definitions.Devices.DeviceInputType.MiddleFingerTouch - nameWithType: DeviceInputType.MiddleFingerTouch -- uid: XRTK.Definitions.Devices.DeviceInputType.None - name: None - href: api/XRTK.Definitions.Devices.DeviceInputType.html#XRTK_Definitions_Devices_DeviceInputType_None - commentId: F:XRTK.Definitions.Devices.DeviceInputType.None - fullName: XRTK.Definitions.Devices.DeviceInputType.None - nameWithType: DeviceInputType.None -- uid: XRTK.Definitions.Devices.DeviceInputType.PinkyFinger - name: PinkyFinger - href: api/XRTK.Definitions.Devices.DeviceInputType.html#XRTK_Definitions_Devices_DeviceInputType_PinkyFinger - commentId: F:XRTK.Definitions.Devices.DeviceInputType.PinkyFinger - fullName: XRTK.Definitions.Devices.DeviceInputType.PinkyFinger - nameWithType: DeviceInputType.PinkyFinger -- uid: XRTK.Definitions.Devices.DeviceInputType.PinkyFingerNearTouch - name: PinkyFingerNearTouch - href: api/XRTK.Definitions.Devices.DeviceInputType.html#XRTK_Definitions_Devices_DeviceInputType_PinkyFingerNearTouch - commentId: F:XRTK.Definitions.Devices.DeviceInputType.PinkyFingerNearTouch - fullName: XRTK.Definitions.Devices.DeviceInputType.PinkyFingerNearTouch - nameWithType: DeviceInputType.PinkyFingerNearTouch -- uid: XRTK.Definitions.Devices.DeviceInputType.PinkyFingerPress - name: PinkyFingerPress - href: api/XRTK.Definitions.Devices.DeviceInputType.html#XRTK_Definitions_Devices_DeviceInputType_PinkyFingerPress - commentId: F:XRTK.Definitions.Devices.DeviceInputType.PinkyFingerPress - fullName: XRTK.Definitions.Devices.DeviceInputType.PinkyFingerPress - nameWithType: DeviceInputType.PinkyFingerPress -- uid: XRTK.Definitions.Devices.DeviceInputType.PinkyFingerTouch - name: PinkyFingerTouch - href: api/XRTK.Definitions.Devices.DeviceInputType.html#XRTK_Definitions_Devices_DeviceInputType_PinkyFingerTouch - commentId: F:XRTK.Definitions.Devices.DeviceInputType.PinkyFingerTouch - fullName: XRTK.Definitions.Devices.DeviceInputType.PinkyFingerTouch - nameWithType: DeviceInputType.PinkyFingerTouch -- uid: XRTK.Definitions.Devices.DeviceInputType.PointerClick - name: PointerClick - href: api/XRTK.Definitions.Devices.DeviceInputType.html#XRTK_Definitions_Devices_DeviceInputType_PointerClick - commentId: F:XRTK.Definitions.Devices.DeviceInputType.PointerClick - fullName: XRTK.Definitions.Devices.DeviceInputType.PointerClick - nameWithType: DeviceInputType.PointerClick -- uid: XRTK.Definitions.Devices.DeviceInputType.PointerPosition - name: PointerPosition - href: api/XRTK.Definitions.Devices.DeviceInputType.html#XRTK_Definitions_Devices_DeviceInputType_PointerPosition - commentId: F:XRTK.Definitions.Devices.DeviceInputType.PointerPosition - fullName: XRTK.Definitions.Devices.DeviceInputType.PointerPosition - nameWithType: DeviceInputType.PointerPosition -- uid: XRTK.Definitions.Devices.DeviceInputType.PointerRotation - name: PointerRotation - href: api/XRTK.Definitions.Devices.DeviceInputType.html#XRTK_Definitions_Devices_DeviceInputType_PointerRotation - commentId: F:XRTK.Definitions.Devices.DeviceInputType.PointerRotation - fullName: XRTK.Definitions.Devices.DeviceInputType.PointerRotation - nameWithType: DeviceInputType.PointerRotation -- uid: XRTK.Definitions.Devices.DeviceInputType.RingFinger - name: RingFinger - href: api/XRTK.Definitions.Devices.DeviceInputType.html#XRTK_Definitions_Devices_DeviceInputType_RingFinger - commentId: F:XRTK.Definitions.Devices.DeviceInputType.RingFinger - fullName: XRTK.Definitions.Devices.DeviceInputType.RingFinger - nameWithType: DeviceInputType.RingFinger -- uid: XRTK.Definitions.Devices.DeviceInputType.RingFingerNearTouch - name: RingFingerNearTouch - href: api/XRTK.Definitions.Devices.DeviceInputType.html#XRTK_Definitions_Devices_DeviceInputType_RingFingerNearTouch - commentId: F:XRTK.Definitions.Devices.DeviceInputType.RingFingerNearTouch - fullName: XRTK.Definitions.Devices.DeviceInputType.RingFingerNearTouch - nameWithType: DeviceInputType.RingFingerNearTouch -- uid: XRTK.Definitions.Devices.DeviceInputType.RingFingerPress - name: RingFingerPress - href: api/XRTK.Definitions.Devices.DeviceInputType.html#XRTK_Definitions_Devices_DeviceInputType_RingFingerPress - commentId: F:XRTK.Definitions.Devices.DeviceInputType.RingFingerPress - fullName: XRTK.Definitions.Devices.DeviceInputType.RingFingerPress - nameWithType: DeviceInputType.RingFingerPress -- uid: XRTK.Definitions.Devices.DeviceInputType.RingFingerTouch - name: RingFingerTouch - href: api/XRTK.Definitions.Devices.DeviceInputType.html#XRTK_Definitions_Devices_DeviceInputType_RingFingerTouch - commentId: F:XRTK.Definitions.Devices.DeviceInputType.RingFingerTouch - fullName: XRTK.Definitions.Devices.DeviceInputType.RingFingerTouch - nameWithType: DeviceInputType.RingFingerTouch -- uid: XRTK.Definitions.Devices.DeviceInputType.Scroll - name: Scroll - href: api/XRTK.Definitions.Devices.DeviceInputType.html#XRTK_Definitions_Devices_DeviceInputType_Scroll - commentId: F:XRTK.Definitions.Devices.DeviceInputType.Scroll - fullName: XRTK.Definitions.Devices.DeviceInputType.Scroll - nameWithType: DeviceInputType.Scroll -- uid: XRTK.Definitions.Devices.DeviceInputType.Select - name: Select - href: api/XRTK.Definitions.Devices.DeviceInputType.html#XRTK_Definitions_Devices_DeviceInputType_Select - commentId: F:XRTK.Definitions.Devices.DeviceInputType.Select - fullName: XRTK.Definitions.Devices.DeviceInputType.Select - nameWithType: DeviceInputType.Select -- uid: XRTK.Definitions.Devices.DeviceInputType.SpatialGrip - name: SpatialGrip - href: api/XRTK.Definitions.Devices.DeviceInputType.html#XRTK_Definitions_Devices_DeviceInputType_SpatialGrip - commentId: F:XRTK.Definitions.Devices.DeviceInputType.SpatialGrip - fullName: XRTK.Definitions.Devices.DeviceInputType.SpatialGrip - nameWithType: DeviceInputType.SpatialGrip -- uid: XRTK.Definitions.Devices.DeviceInputType.SpatialPointer - name: SpatialPointer - href: api/XRTK.Definitions.Devices.DeviceInputType.html#XRTK_Definitions_Devices_DeviceInputType_SpatialPointer - commentId: F:XRTK.Definitions.Devices.DeviceInputType.SpatialPointer - fullName: XRTK.Definitions.Devices.DeviceInputType.SpatialPointer - nameWithType: DeviceInputType.SpatialPointer -- uid: XRTK.Definitions.Devices.DeviceInputType.Start - name: Start - href: api/XRTK.Definitions.Devices.DeviceInputType.html#XRTK_Definitions_Devices_DeviceInputType_Start - commentId: F:XRTK.Definitions.Devices.DeviceInputType.Start - fullName: XRTK.Definitions.Devices.DeviceInputType.Start - nameWithType: DeviceInputType.Start -- uid: XRTK.Definitions.Devices.DeviceInputType.Thumb - name: Thumb - href: api/XRTK.Definitions.Devices.DeviceInputType.html#XRTK_Definitions_Devices_DeviceInputType_Thumb - commentId: F:XRTK.Definitions.Devices.DeviceInputType.Thumb - fullName: XRTK.Definitions.Devices.DeviceInputType.Thumb - nameWithType: DeviceInputType.Thumb -- uid: XRTK.Definitions.Devices.DeviceInputType.ThumbNearTouch - name: ThumbNearTouch - href: api/XRTK.Definitions.Devices.DeviceInputType.html#XRTK_Definitions_Devices_DeviceInputType_ThumbNearTouch - commentId: F:XRTK.Definitions.Devices.DeviceInputType.ThumbNearTouch - fullName: XRTK.Definitions.Devices.DeviceInputType.ThumbNearTouch - nameWithType: DeviceInputType.ThumbNearTouch -- uid: XRTK.Definitions.Devices.DeviceInputType.ThumbPress - name: ThumbPress - href: api/XRTK.Definitions.Devices.DeviceInputType.html#XRTK_Definitions_Devices_DeviceInputType_ThumbPress - commentId: F:XRTK.Definitions.Devices.DeviceInputType.ThumbPress - fullName: XRTK.Definitions.Devices.DeviceInputType.ThumbPress - nameWithType: DeviceInputType.ThumbPress -- uid: XRTK.Definitions.Devices.DeviceInputType.ThumbStick - name: ThumbStick - href: api/XRTK.Definitions.Devices.DeviceInputType.html#XRTK_Definitions_Devices_DeviceInputType_ThumbStick - commentId: F:XRTK.Definitions.Devices.DeviceInputType.ThumbStick - fullName: XRTK.Definitions.Devices.DeviceInputType.ThumbStick - nameWithType: DeviceInputType.ThumbStick -- uid: XRTK.Definitions.Devices.DeviceInputType.ThumbStickNearTouch - name: ThumbStickNearTouch - href: api/XRTK.Definitions.Devices.DeviceInputType.html#XRTK_Definitions_Devices_DeviceInputType_ThumbStickNearTouch - commentId: F:XRTK.Definitions.Devices.DeviceInputType.ThumbStickNearTouch - fullName: XRTK.Definitions.Devices.DeviceInputType.ThumbStickNearTouch - nameWithType: DeviceInputType.ThumbStickNearTouch -- uid: XRTK.Definitions.Devices.DeviceInputType.ThumbStickPress - name: ThumbStickPress - href: api/XRTK.Definitions.Devices.DeviceInputType.html#XRTK_Definitions_Devices_DeviceInputType_ThumbStickPress - commentId: F:XRTK.Definitions.Devices.DeviceInputType.ThumbStickPress - fullName: XRTK.Definitions.Devices.DeviceInputType.ThumbStickPress - nameWithType: DeviceInputType.ThumbStickPress -- uid: XRTK.Definitions.Devices.DeviceInputType.ThumbStickTouch - name: ThumbStickTouch - href: api/XRTK.Definitions.Devices.DeviceInputType.html#XRTK_Definitions_Devices_DeviceInputType_ThumbStickTouch - commentId: F:XRTK.Definitions.Devices.DeviceInputType.ThumbStickTouch - fullName: XRTK.Definitions.Devices.DeviceInputType.ThumbStickTouch - nameWithType: DeviceInputType.ThumbStickTouch -- uid: XRTK.Definitions.Devices.DeviceInputType.ThumbTouch - name: ThumbTouch - href: api/XRTK.Definitions.Devices.DeviceInputType.html#XRTK_Definitions_Devices_DeviceInputType_ThumbTouch - commentId: F:XRTK.Definitions.Devices.DeviceInputType.ThumbTouch - fullName: XRTK.Definitions.Devices.DeviceInputType.ThumbTouch - nameWithType: DeviceInputType.ThumbTouch -- uid: XRTK.Definitions.Devices.DeviceInputType.Touchpad - name: Touchpad - href: api/XRTK.Definitions.Devices.DeviceInputType.html#XRTK_Definitions_Devices_DeviceInputType_Touchpad - commentId: F:XRTK.Definitions.Devices.DeviceInputType.Touchpad - fullName: XRTK.Definitions.Devices.DeviceInputType.Touchpad - nameWithType: DeviceInputType.Touchpad -- uid: XRTK.Definitions.Devices.DeviceInputType.TouchpadNearTouch - name: TouchpadNearTouch - href: api/XRTK.Definitions.Devices.DeviceInputType.html#XRTK_Definitions_Devices_DeviceInputType_TouchpadNearTouch - commentId: F:XRTK.Definitions.Devices.DeviceInputType.TouchpadNearTouch - fullName: XRTK.Definitions.Devices.DeviceInputType.TouchpadNearTouch - nameWithType: DeviceInputType.TouchpadNearTouch -- uid: XRTK.Definitions.Devices.DeviceInputType.TouchpadPress - name: TouchpadPress - href: api/XRTK.Definitions.Devices.DeviceInputType.html#XRTK_Definitions_Devices_DeviceInputType_TouchpadPress - commentId: F:XRTK.Definitions.Devices.DeviceInputType.TouchpadPress - fullName: XRTK.Definitions.Devices.DeviceInputType.TouchpadPress - nameWithType: DeviceInputType.TouchpadPress -- uid: XRTK.Definitions.Devices.DeviceInputType.TouchpadTouch - name: TouchpadTouch - href: api/XRTK.Definitions.Devices.DeviceInputType.html#XRTK_Definitions_Devices_DeviceInputType_TouchpadTouch - commentId: F:XRTK.Definitions.Devices.DeviceInputType.TouchpadTouch - fullName: XRTK.Definitions.Devices.DeviceInputType.TouchpadTouch - nameWithType: DeviceInputType.TouchpadTouch -- uid: XRTK.Definitions.Devices.DeviceInputType.Trigger - name: Trigger - href: api/XRTK.Definitions.Devices.DeviceInputType.html#XRTK_Definitions_Devices_DeviceInputType_Trigger - commentId: F:XRTK.Definitions.Devices.DeviceInputType.Trigger - fullName: XRTK.Definitions.Devices.DeviceInputType.Trigger - nameWithType: DeviceInputType.Trigger -- uid: XRTK.Definitions.Devices.DeviceInputType.TriggerNearTouch - name: TriggerNearTouch - href: api/XRTK.Definitions.Devices.DeviceInputType.html#XRTK_Definitions_Devices_DeviceInputType_TriggerNearTouch - commentId: F:XRTK.Definitions.Devices.DeviceInputType.TriggerNearTouch - fullName: XRTK.Definitions.Devices.DeviceInputType.TriggerNearTouch - nameWithType: DeviceInputType.TriggerNearTouch -- uid: XRTK.Definitions.Devices.DeviceInputType.TriggerPress - name: TriggerPress - href: api/XRTK.Definitions.Devices.DeviceInputType.html#XRTK_Definitions_Devices_DeviceInputType_TriggerPress - commentId: F:XRTK.Definitions.Devices.DeviceInputType.TriggerPress - fullName: XRTK.Definitions.Devices.DeviceInputType.TriggerPress - nameWithType: DeviceInputType.TriggerPress -- uid: XRTK.Definitions.Devices.DeviceInputType.TriggerTouch - name: TriggerTouch - href: api/XRTK.Definitions.Devices.DeviceInputType.html#XRTK_Definitions_Devices_DeviceInputType_TriggerTouch - commentId: F:XRTK.Definitions.Devices.DeviceInputType.TriggerTouch - fullName: XRTK.Definitions.Devices.DeviceInputType.TriggerTouch - nameWithType: DeviceInputType.TriggerTouch -- uid: XRTK.Definitions.Devices.DeviceInputType.Voice - name: Voice - href: api/XRTK.Definitions.Devices.DeviceInputType.html#XRTK_Definitions_Devices_DeviceInputType_Voice - commentId: F:XRTK.Definitions.Devices.DeviceInputType.Voice - fullName: XRTK.Definitions.Devices.DeviceInputType.Voice - nameWithType: DeviceInputType.Voice -- uid: XRTK.Definitions.Devices.GestureInputType - name: GestureInputType - href: api/XRTK.Definitions.Devices.GestureInputType.html - commentId: T:XRTK.Definitions.Devices.GestureInputType - fullName: XRTK.Definitions.Devices.GestureInputType - nameWithType: GestureInputType -- uid: XRTK.Definitions.Devices.GestureInputType.DoubleTap - name: DoubleTap - href: api/XRTK.Definitions.Devices.GestureInputType.html#XRTK_Definitions_Devices_GestureInputType_DoubleTap - commentId: F:XRTK.Definitions.Devices.GestureInputType.DoubleTap - fullName: XRTK.Definitions.Devices.GestureInputType.DoubleTap - nameWithType: GestureInputType.DoubleTap -- uid: XRTK.Definitions.Devices.GestureInputType.Hold - name: Hold - href: api/XRTK.Definitions.Devices.GestureInputType.html#XRTK_Definitions_Devices_GestureInputType_Hold - commentId: F:XRTK.Definitions.Devices.GestureInputType.Hold - fullName: XRTK.Definitions.Devices.GestureInputType.Hold - nameWithType: GestureInputType.Hold -- uid: XRTK.Definitions.Devices.GestureInputType.Manipulation - name: Manipulation - href: api/XRTK.Definitions.Devices.GestureInputType.html#XRTK_Definitions_Devices_GestureInputType_Manipulation - commentId: F:XRTK.Definitions.Devices.GestureInputType.Manipulation - fullName: XRTK.Definitions.Devices.GestureInputType.Manipulation - nameWithType: GestureInputType.Manipulation -- uid: XRTK.Definitions.Devices.GestureInputType.Navigation - name: Navigation - href: api/XRTK.Definitions.Devices.GestureInputType.html#XRTK_Definitions_Devices_GestureInputType_Navigation - commentId: F:XRTK.Definitions.Devices.GestureInputType.Navigation - fullName: XRTK.Definitions.Devices.GestureInputType.Navigation - nameWithType: GestureInputType.Navigation -- uid: XRTK.Definitions.Devices.GestureInputType.None - name: None - href: api/XRTK.Definitions.Devices.GestureInputType.html#XRTK_Definitions_Devices_GestureInputType_None - commentId: F:XRTK.Definitions.Devices.GestureInputType.None - fullName: XRTK.Definitions.Devices.GestureInputType.None - nameWithType: GestureInputType.None -- uid: XRTK.Definitions.Devices.GestureInputType.Tap - name: Tap - href: api/XRTK.Definitions.Devices.GestureInputType.html#XRTK_Definitions_Devices_GestureInputType_Tap - commentId: F:XRTK.Definitions.Devices.GestureInputType.Tap - fullName: XRTK.Definitions.Devices.GestureInputType.Tap - nameWithType: GestureInputType.Tap -- uid: XRTK.Definitions.Devices.Headset - name: Headset - href: api/XRTK.Definitions.Devices.Headset.html - commentId: T:XRTK.Definitions.Devices.Headset - fullName: XRTK.Definitions.Devices.Headset - nameWithType: Headset -- uid: XRTK.Definitions.Devices.Headset.HeadsetSDKType - name: HeadsetSDKType - href: api/XRTK.Definitions.Devices.Headset.html#XRTK_Definitions_Devices_Headset_HeadsetSDKType - commentId: P:XRTK.Definitions.Devices.Headset.HeadsetSDKType - fullName: XRTK.Definitions.Devices.Headset.HeadsetSDKType - nameWithType: Headset.HeadsetSDKType -- uid: XRTK.Definitions.Devices.Headset.HeadsetSDKType* - name: HeadsetSDKType - href: api/XRTK.Definitions.Devices.Headset.html#XRTK_Definitions_Devices_Headset_HeadsetSDKType_ - commentId: Overload:XRTK.Definitions.Devices.Headset.HeadsetSDKType - isSpec: "True" - fullName: XRTK.Definitions.Devices.Headset.HeadsetSDKType - nameWithType: Headset.HeadsetSDKType -- uid: XRTK.Definitions.Devices.Headset.Id - name: Id - href: api/XRTK.Definitions.Devices.Headset.html#XRTK_Definitions_Devices_Headset_Id - commentId: P:XRTK.Definitions.Devices.Headset.Id - fullName: XRTK.Definitions.Devices.Headset.Id - nameWithType: Headset.Id -- uid: XRTK.Definitions.Devices.Headset.Id* - name: Id - href: api/XRTK.Definitions.Devices.Headset.html#XRTK_Definitions_Devices_Headset_Id_ - commentId: Overload:XRTK.Definitions.Devices.Headset.Id - isSpec: "True" - fullName: XRTK.Definitions.Devices.Headset.Id - nameWithType: Headset.Id -- uid: XRTK.Definitions.Devices.Headset.IsOpaque - name: IsOpaque - href: api/XRTK.Definitions.Devices.Headset.html#XRTK_Definitions_Devices_Headset_IsOpaque - commentId: P:XRTK.Definitions.Devices.Headset.IsOpaque - fullName: XRTK.Definitions.Devices.Headset.IsOpaque - nameWithType: Headset.IsOpaque -- uid: XRTK.Definitions.Devices.Headset.IsOpaque* - name: IsOpaque - href: api/XRTK.Definitions.Devices.Headset.html#XRTK_Definitions_Devices_Headset_IsOpaque_ - commentId: Overload:XRTK.Definitions.Devices.Headset.IsOpaque - isSpec: "True" - fullName: XRTK.Definitions.Devices.Headset.IsOpaque - nameWithType: Headset.IsOpaque -- uid: XRTK.Definitions.Devices.Headset.IsPositionAvailable - name: IsPositionAvailable - href: api/XRTK.Definitions.Devices.Headset.html#XRTK_Definitions_Devices_Headset_IsPositionAvailable - commentId: P:XRTK.Definitions.Devices.Headset.IsPositionAvailable - fullName: XRTK.Definitions.Devices.Headset.IsPositionAvailable - nameWithType: Headset.IsPositionAvailable -- uid: XRTK.Definitions.Devices.Headset.IsPositionAvailable* - name: IsPositionAvailable - href: api/XRTK.Definitions.Devices.Headset.html#XRTK_Definitions_Devices_Headset_IsPositionAvailable_ - commentId: Overload:XRTK.Definitions.Devices.Headset.IsPositionAvailable - isSpec: "True" - fullName: XRTK.Definitions.Devices.Headset.IsPositionAvailable - nameWithType: Headset.IsPositionAvailable -- uid: XRTK.Definitions.Devices.Headset.IsRotationAvailable - name: IsRotationAvailable - href: api/XRTK.Definitions.Devices.Headset.html#XRTK_Definitions_Devices_Headset_IsRotationAvailable - commentId: P:XRTK.Definitions.Devices.Headset.IsRotationAvailable - fullName: XRTK.Definitions.Devices.Headset.IsRotationAvailable - nameWithType: Headset.IsRotationAvailable -- uid: XRTK.Definitions.Devices.Headset.IsRotationAvailable* - name: IsRotationAvailable - href: api/XRTK.Definitions.Devices.Headset.html#XRTK_Definitions_Devices_Headset_IsRotationAvailable_ - commentId: Overload:XRTK.Definitions.Devices.Headset.IsRotationAvailable - isSpec: "True" - fullName: XRTK.Definitions.Devices.Headset.IsRotationAvailable - nameWithType: Headset.IsRotationAvailable -- uid: XRTK.Definitions.Devices.Headset.Position - name: Position - href: api/XRTK.Definitions.Devices.Headset.html#XRTK_Definitions_Devices_Headset_Position - commentId: P:XRTK.Definitions.Devices.Headset.Position - fullName: XRTK.Definitions.Devices.Headset.Position - nameWithType: Headset.Position -- uid: XRTK.Definitions.Devices.Headset.Position* - name: Position - href: api/XRTK.Definitions.Devices.Headset.html#XRTK_Definitions_Devices_Headset_Position_ - commentId: Overload:XRTK.Definitions.Devices.Headset.Position - isSpec: "True" - fullName: XRTK.Definitions.Devices.Headset.Position - nameWithType: Headset.Position -- uid: XRTK.Definitions.Devices.Headset.Rotation - name: Rotation - href: api/XRTK.Definitions.Devices.Headset.html#XRTK_Definitions_Devices_Headset_Rotation - commentId: P:XRTK.Definitions.Devices.Headset.Rotation - fullName: XRTK.Definitions.Devices.Headset.Rotation - nameWithType: Headset.Rotation -- uid: XRTK.Definitions.Devices.Headset.Rotation* - name: Rotation - href: api/XRTK.Definitions.Devices.Headset.html#XRTK_Definitions_Devices_Headset_Rotation_ - commentId: Overload:XRTK.Definitions.Devices.Headset.Rotation - isSpec: "True" - fullName: XRTK.Definitions.Devices.Headset.Rotation - nameWithType: Headset.Rotation -- uid: XRTK.Definitions.Devices.Headset.TrackingState - name: TrackingState - href: api/XRTK.Definitions.Devices.Headset.html#XRTK_Definitions_Devices_Headset_TrackingState - commentId: P:XRTK.Definitions.Devices.Headset.TrackingState - fullName: XRTK.Definitions.Devices.Headset.TrackingState - nameWithType: Headset.TrackingState -- uid: XRTK.Definitions.Devices.Headset.TrackingState* - name: TrackingState - href: api/XRTK.Definitions.Devices.Headset.html#XRTK_Definitions_Devices_Headset_TrackingState_ - commentId: Overload:XRTK.Definitions.Devices.Headset.TrackingState - isSpec: "True" - fullName: XRTK.Definitions.Devices.Headset.TrackingState - nameWithType: Headset.TrackingState -- uid: XRTK.Definitions.Devices.InputProcessor - name: InputProcessor - href: api/XRTK.Definitions.Devices.InputProcessor.html - commentId: T:XRTK.Definitions.Devices.InputProcessor - fullName: XRTK.Definitions.Devices.InputProcessor - nameWithType: InputProcessor -- uid: XRTK.Definitions.Devices.InputProcessor`1 - name: InputProcessor - href: api/XRTK.Definitions.Devices.InputProcessor-1.html - commentId: T:XRTK.Definitions.Devices.InputProcessor`1 - name.vb: InputProcessor(Of T) - fullName: XRTK.Definitions.Devices.InputProcessor - fullName.vb: XRTK.Definitions.Devices.InputProcessor(Of T) - nameWithType: InputProcessor - nameWithType.vb: InputProcessor(Of T) -- uid: XRTK.Definitions.Devices.InputProcessor`1.Process(`0@) - name: Process(ref T) - href: api/XRTK.Definitions.Devices.InputProcessor-1.html#XRTK_Definitions_Devices_InputProcessor_1_Process__0__ - commentId: M:XRTK.Definitions.Devices.InputProcessor`1.Process(`0@) - name.vb: Process(ByRef T) - fullName: XRTK.Definitions.Devices.InputProcessor.Process(ref T) - fullName.vb: XRTK.Definitions.Devices.InputProcessor(Of T).Process(ByRef T) - nameWithType: InputProcessor.Process(ref T) - nameWithType.vb: InputProcessor(Of T).Process(ByRef T) -- uid: XRTK.Definitions.Devices.InputProcessor`1.Process* - name: Process - href: api/XRTK.Definitions.Devices.InputProcessor-1.html#XRTK_Definitions_Devices_InputProcessor_1_Process_ - commentId: Overload:XRTK.Definitions.Devices.InputProcessor`1.Process - isSpec: "True" - fullName: XRTK.Definitions.Devices.InputProcessor.Process - fullName.vb: XRTK.Definitions.Devices.InputProcessor(Of T).Process - nameWithType: InputProcessor.Process - nameWithType.vb: InputProcessor(Of T).Process -- uid: XRTK.Definitions.Devices.InvertDualAxisProcessor - name: InvertDualAxisProcessor - href: api/XRTK.Definitions.Devices.InvertDualAxisProcessor.html - commentId: T:XRTK.Definitions.Devices.InvertDualAxisProcessor - fullName: XRTK.Definitions.Devices.InvertDualAxisProcessor - nameWithType: InvertDualAxisProcessor -- uid: XRTK.Definitions.Devices.InvertDualAxisProcessor.InvertX - name: InvertX - href: api/XRTK.Definitions.Devices.InvertDualAxisProcessor.html#XRTK_Definitions_Devices_InvertDualAxisProcessor_InvertX - commentId: P:XRTK.Definitions.Devices.InvertDualAxisProcessor.InvertX - fullName: XRTK.Definitions.Devices.InvertDualAxisProcessor.InvertX - nameWithType: InvertDualAxisProcessor.InvertX -- uid: XRTK.Definitions.Devices.InvertDualAxisProcessor.InvertX* - name: InvertX - href: api/XRTK.Definitions.Devices.InvertDualAxisProcessor.html#XRTK_Definitions_Devices_InvertDualAxisProcessor_InvertX_ - commentId: Overload:XRTK.Definitions.Devices.InvertDualAxisProcessor.InvertX - isSpec: "True" - fullName: XRTK.Definitions.Devices.InvertDualAxisProcessor.InvertX - nameWithType: InvertDualAxisProcessor.InvertX -- uid: XRTK.Definitions.Devices.InvertDualAxisProcessor.InvertY - name: InvertY - href: api/XRTK.Definitions.Devices.InvertDualAxisProcessor.html#XRTK_Definitions_Devices_InvertDualAxisProcessor_InvertY - commentId: P:XRTK.Definitions.Devices.InvertDualAxisProcessor.InvertY - fullName: XRTK.Definitions.Devices.InvertDualAxisProcessor.InvertY - nameWithType: InvertDualAxisProcessor.InvertY -- uid: XRTK.Definitions.Devices.InvertDualAxisProcessor.InvertY* - name: InvertY - href: api/XRTK.Definitions.Devices.InvertDualAxisProcessor.html#XRTK_Definitions_Devices_InvertDualAxisProcessor_InvertY_ - commentId: Overload:XRTK.Definitions.Devices.InvertDualAxisProcessor.InvertY - isSpec: "True" - fullName: XRTK.Definitions.Devices.InvertDualAxisProcessor.InvertY - nameWithType: InvertDualAxisProcessor.InvertY -- uid: XRTK.Definitions.Devices.InvertDualAxisProcessor.Process(UnityEngine.Vector2@) - name: Process(ref Vector2) - href: api/XRTK.Definitions.Devices.InvertDualAxisProcessor.html#XRTK_Definitions_Devices_InvertDualAxisProcessor_Process_UnityEngine_Vector2__ - commentId: M:XRTK.Definitions.Devices.InvertDualAxisProcessor.Process(UnityEngine.Vector2@) - name.vb: Process(ByRef Vector2) - fullName: XRTK.Definitions.Devices.InvertDualAxisProcessor.Process(ref UnityEngine.Vector2) - fullName.vb: XRTK.Definitions.Devices.InvertDualAxisProcessor.Process(ByRef UnityEngine.Vector2) - nameWithType: InvertDualAxisProcessor.Process(ref Vector2) - nameWithType.vb: InvertDualAxisProcessor.Process(ByRef Vector2) -- uid: XRTK.Definitions.Devices.InvertDualAxisProcessor.Process* - name: Process - href: api/XRTK.Definitions.Devices.InvertDualAxisProcessor.html#XRTK_Definitions_Devices_InvertDualAxisProcessor_Process_ - commentId: Overload:XRTK.Definitions.Devices.InvertDualAxisProcessor.Process - isSpec: "True" - fullName: XRTK.Definitions.Devices.InvertDualAxisProcessor.Process - nameWithType: InvertDualAxisProcessor.Process -- uid: XRTK.Definitions.Devices.InvertSingleAxisProcessor - name: InvertSingleAxisProcessor - href: api/XRTK.Definitions.Devices.InvertSingleAxisProcessor.html - commentId: T:XRTK.Definitions.Devices.InvertSingleAxisProcessor - fullName: XRTK.Definitions.Devices.InvertSingleAxisProcessor - nameWithType: InvertSingleAxisProcessor -- uid: XRTK.Definitions.Devices.InvertSingleAxisProcessor.Invert - name: Invert - href: api/XRTK.Definitions.Devices.InvertSingleAxisProcessor.html#XRTK_Definitions_Devices_InvertSingleAxisProcessor_Invert - commentId: P:XRTK.Definitions.Devices.InvertSingleAxisProcessor.Invert - fullName: XRTK.Definitions.Devices.InvertSingleAxisProcessor.Invert - nameWithType: InvertSingleAxisProcessor.Invert -- uid: XRTK.Definitions.Devices.InvertSingleAxisProcessor.Invert* - name: Invert - href: api/XRTK.Definitions.Devices.InvertSingleAxisProcessor.html#XRTK_Definitions_Devices_InvertSingleAxisProcessor_Invert_ - commentId: Overload:XRTK.Definitions.Devices.InvertSingleAxisProcessor.Invert - isSpec: "True" - fullName: XRTK.Definitions.Devices.InvertSingleAxisProcessor.Invert - nameWithType: InvertSingleAxisProcessor.Invert -- uid: XRTK.Definitions.Devices.InvertSingleAxisProcessor.Process(System.Single@) - name: Process(ref Single) - href: api/XRTK.Definitions.Devices.InvertSingleAxisProcessor.html#XRTK_Definitions_Devices_InvertSingleAxisProcessor_Process_System_Single__ - commentId: M:XRTK.Definitions.Devices.InvertSingleAxisProcessor.Process(System.Single@) - name.vb: Process(ByRef Single) - fullName: XRTK.Definitions.Devices.InvertSingleAxisProcessor.Process(ref System.Single) - fullName.vb: XRTK.Definitions.Devices.InvertSingleAxisProcessor.Process(ByRef System.Single) - nameWithType: InvertSingleAxisProcessor.Process(ref Single) - nameWithType.vb: InvertSingleAxisProcessor.Process(ByRef Single) -- uid: XRTK.Definitions.Devices.InvertSingleAxisProcessor.Process* - name: Process - href: api/XRTK.Definitions.Devices.InvertSingleAxisProcessor.html#XRTK_Definitions_Devices_InvertSingleAxisProcessor_Process_ - commentId: Overload:XRTK.Definitions.Devices.InvertSingleAxisProcessor.Process - isSpec: "True" - fullName: XRTK.Definitions.Devices.InvertSingleAxisProcessor.Process - nameWithType: InvertSingleAxisProcessor.Process -- uid: XRTK.Definitions.Devices.MixedRealityInteractionMapping - name: MixedRealityInteractionMapping - href: api/XRTK.Definitions.Devices.MixedRealityInteractionMapping.html - commentId: T:XRTK.Definitions.Devices.MixedRealityInteractionMapping - fullName: XRTK.Definitions.Devices.MixedRealityInteractionMapping - nameWithType: MixedRealityInteractionMapping -- uid: XRTK.Definitions.Devices.MixedRealityInteractionMapping.#ctor(System.String,System.Collections.Generic.List{XRTK.Definitions.Devices.InputProcessor}) - name: MixedRealityInteractionMapping(String, List) - href: api/XRTK.Definitions.Devices.MixedRealityInteractionMapping.html#XRTK_Definitions_Devices_MixedRealityInteractionMapping__ctor_System_String_System_Collections_Generic_List_XRTK_Definitions_Devices_InputProcessor__ - commentId: M:XRTK.Definitions.Devices.MixedRealityInteractionMapping.#ctor(System.String,System.Collections.Generic.List{XRTK.Definitions.Devices.InputProcessor}) - name.vb: MixedRealityInteractionMapping(String, List(Of InputProcessor)) - fullName: XRTK.Definitions.Devices.MixedRealityInteractionMapping.MixedRealityInteractionMapping(System.String, System.Collections.Generic.List) - fullName.vb: XRTK.Definitions.Devices.MixedRealityInteractionMapping.MixedRealityInteractionMapping(System.String, System.Collections.Generic.List(Of XRTK.Definitions.Devices.InputProcessor)) - nameWithType: MixedRealityInteractionMapping.MixedRealityInteractionMapping(String, List) - nameWithType.vb: MixedRealityInteractionMapping.MixedRealityInteractionMapping(String, List(Of InputProcessor)) -- uid: XRTK.Definitions.Devices.MixedRealityInteractionMapping.#ctor(System.String,XRTK.Definitions.Utilities.AxisType,System.String,XRTK.Definitions.Devices.DeviceInputType,System.Collections.Generic.List{XRTK.Definitions.Devices.InputProcessor}) - name: MixedRealityInteractionMapping(String, AxisType, String, DeviceInputType, List) - href: api/XRTK.Definitions.Devices.MixedRealityInteractionMapping.html#XRTK_Definitions_Devices_MixedRealityInteractionMapping__ctor_System_String_XRTK_Definitions_Utilities_AxisType_System_String_XRTK_Definitions_Devices_DeviceInputType_System_Collections_Generic_List_XRTK_Definitions_Devices_InputProcessor__ - commentId: M:XRTK.Definitions.Devices.MixedRealityInteractionMapping.#ctor(System.String,XRTK.Definitions.Utilities.AxisType,System.String,XRTK.Definitions.Devices.DeviceInputType,System.Collections.Generic.List{XRTK.Definitions.Devices.InputProcessor}) - name.vb: MixedRealityInteractionMapping(String, AxisType, String, DeviceInputType, List(Of InputProcessor)) - fullName: XRTK.Definitions.Devices.MixedRealityInteractionMapping.MixedRealityInteractionMapping(System.String, XRTK.Definitions.Utilities.AxisType, System.String, XRTK.Definitions.Devices.DeviceInputType, System.Collections.Generic.List) - fullName.vb: XRTK.Definitions.Devices.MixedRealityInteractionMapping.MixedRealityInteractionMapping(System.String, XRTK.Definitions.Utilities.AxisType, System.String, XRTK.Definitions.Devices.DeviceInputType, System.Collections.Generic.List(Of XRTK.Definitions.Devices.InputProcessor)) - nameWithType: MixedRealityInteractionMapping.MixedRealityInteractionMapping(String, AxisType, String, DeviceInputType, List) - nameWithType.vb: MixedRealityInteractionMapping.MixedRealityInteractionMapping(String, AxisType, String, DeviceInputType, List(Of InputProcessor)) -- uid: XRTK.Definitions.Devices.MixedRealityInteractionMapping.#ctor(System.String,XRTK.Definitions.Utilities.AxisType,XRTK.Definitions.Devices.DeviceInputType,System.Collections.Generic.List{XRTK.Definitions.Devices.InputProcessor}) - name: MixedRealityInteractionMapping(String, AxisType, DeviceInputType, List) - href: api/XRTK.Definitions.Devices.MixedRealityInteractionMapping.html#XRTK_Definitions_Devices_MixedRealityInteractionMapping__ctor_System_String_XRTK_Definitions_Utilities_AxisType_XRTK_Definitions_Devices_DeviceInputType_System_Collections_Generic_List_XRTK_Definitions_Devices_InputProcessor__ - commentId: M:XRTK.Definitions.Devices.MixedRealityInteractionMapping.#ctor(System.String,XRTK.Definitions.Utilities.AxisType,XRTK.Definitions.Devices.DeviceInputType,System.Collections.Generic.List{XRTK.Definitions.Devices.InputProcessor}) - name.vb: MixedRealityInteractionMapping(String, AxisType, DeviceInputType, List(Of InputProcessor)) - fullName: XRTK.Definitions.Devices.MixedRealityInteractionMapping.MixedRealityInteractionMapping(System.String, XRTK.Definitions.Utilities.AxisType, XRTK.Definitions.Devices.DeviceInputType, System.Collections.Generic.List) - fullName.vb: XRTK.Definitions.Devices.MixedRealityInteractionMapping.MixedRealityInteractionMapping(System.String, XRTK.Definitions.Utilities.AxisType, XRTK.Definitions.Devices.DeviceInputType, System.Collections.Generic.List(Of XRTK.Definitions.Devices.InputProcessor)) - nameWithType: MixedRealityInteractionMapping.MixedRealityInteractionMapping(String, AxisType, DeviceInputType, List) - nameWithType.vb: MixedRealityInteractionMapping.MixedRealityInteractionMapping(String, AxisType, DeviceInputType, List(Of InputProcessor)) -- uid: XRTK.Definitions.Devices.MixedRealityInteractionMapping.#ctor(System.String,XRTK.Definitions.Utilities.AxisType,XRTK.Definitions.Devices.DeviceInputType,System.String,System.String,System.Collections.Generic.List{XRTK.Definitions.Devices.InputProcessor}) - name: MixedRealityInteractionMapping(String, AxisType, DeviceInputType, String, String, List) - href: api/XRTK.Definitions.Devices.MixedRealityInteractionMapping.html#XRTK_Definitions_Devices_MixedRealityInteractionMapping__ctor_System_String_XRTK_Definitions_Utilities_AxisType_XRTK_Definitions_Devices_DeviceInputType_System_String_System_String_System_Collections_Generic_List_XRTK_Definitions_Devices_InputProcessor__ - commentId: M:XRTK.Definitions.Devices.MixedRealityInteractionMapping.#ctor(System.String,XRTK.Definitions.Utilities.AxisType,XRTK.Definitions.Devices.DeviceInputType,System.String,System.String,System.Collections.Generic.List{XRTK.Definitions.Devices.InputProcessor}) - name.vb: MixedRealityInteractionMapping(String, AxisType, DeviceInputType, String, String, List(Of InputProcessor)) - fullName: XRTK.Definitions.Devices.MixedRealityInteractionMapping.MixedRealityInteractionMapping(System.String, XRTK.Definitions.Utilities.AxisType, XRTK.Definitions.Devices.DeviceInputType, System.String, System.String, System.Collections.Generic.List) - fullName.vb: XRTK.Definitions.Devices.MixedRealityInteractionMapping.MixedRealityInteractionMapping(System.String, XRTK.Definitions.Utilities.AxisType, XRTK.Definitions.Devices.DeviceInputType, System.String, System.String, System.Collections.Generic.List(Of XRTK.Definitions.Devices.InputProcessor)) - nameWithType: MixedRealityInteractionMapping.MixedRealityInteractionMapping(String, AxisType, DeviceInputType, String, String, List) - nameWithType.vb: MixedRealityInteractionMapping.MixedRealityInteractionMapping(String, AxisType, DeviceInputType, String, String, List(Of InputProcessor)) -- uid: XRTK.Definitions.Devices.MixedRealityInteractionMapping.#ctor(System.String,XRTK.Definitions.Utilities.AxisType,XRTK.Definitions.Devices.DeviceInputType,UnityEngine.KeyCode,System.Collections.Generic.List{XRTK.Definitions.Devices.InputProcessor}) - name: MixedRealityInteractionMapping(String, AxisType, DeviceInputType, KeyCode, List) - href: api/XRTK.Definitions.Devices.MixedRealityInteractionMapping.html#XRTK_Definitions_Devices_MixedRealityInteractionMapping__ctor_System_String_XRTK_Definitions_Utilities_AxisType_XRTK_Definitions_Devices_DeviceInputType_UnityEngine_KeyCode_System_Collections_Generic_List_XRTK_Definitions_Devices_InputProcessor__ - commentId: M:XRTK.Definitions.Devices.MixedRealityInteractionMapping.#ctor(System.String,XRTK.Definitions.Utilities.AxisType,XRTK.Definitions.Devices.DeviceInputType,UnityEngine.KeyCode,System.Collections.Generic.List{XRTK.Definitions.Devices.InputProcessor}) - name.vb: MixedRealityInteractionMapping(String, AxisType, DeviceInputType, KeyCode, List(Of InputProcessor)) - fullName: XRTK.Definitions.Devices.MixedRealityInteractionMapping.MixedRealityInteractionMapping(System.String, XRTK.Definitions.Utilities.AxisType, XRTK.Definitions.Devices.DeviceInputType, UnityEngine.KeyCode, System.Collections.Generic.List) - fullName.vb: XRTK.Definitions.Devices.MixedRealityInteractionMapping.MixedRealityInteractionMapping(System.String, XRTK.Definitions.Utilities.AxisType, XRTK.Definitions.Devices.DeviceInputType, UnityEngine.KeyCode, System.Collections.Generic.List(Of XRTK.Definitions.Devices.InputProcessor)) - nameWithType: MixedRealityInteractionMapping.MixedRealityInteractionMapping(String, AxisType, DeviceInputType, KeyCode, List) - nameWithType.vb: MixedRealityInteractionMapping.MixedRealityInteractionMapping(String, AxisType, DeviceInputType, KeyCode, List(Of InputProcessor)) -- uid: XRTK.Definitions.Devices.MixedRealityInteractionMapping.#ctor(XRTK.Definitions.Devices.MixedRealityInteractionMapping) - name: MixedRealityInteractionMapping(MixedRealityInteractionMapping) - href: api/XRTK.Definitions.Devices.MixedRealityInteractionMapping.html#XRTK_Definitions_Devices_MixedRealityInteractionMapping__ctor_XRTK_Definitions_Devices_MixedRealityInteractionMapping_ - commentId: M:XRTK.Definitions.Devices.MixedRealityInteractionMapping.#ctor(XRTK.Definitions.Devices.MixedRealityInteractionMapping) - fullName: XRTK.Definitions.Devices.MixedRealityInteractionMapping.MixedRealityInteractionMapping(XRTK.Definitions.Devices.MixedRealityInteractionMapping) - nameWithType: MixedRealityInteractionMapping.MixedRealityInteractionMapping(MixedRealityInteractionMapping) -- uid: XRTK.Definitions.Devices.MixedRealityInteractionMapping.#ctor* - name: MixedRealityInteractionMapping - href: api/XRTK.Definitions.Devices.MixedRealityInteractionMapping.html#XRTK_Definitions_Devices_MixedRealityInteractionMapping__ctor_ - commentId: Overload:XRTK.Definitions.Devices.MixedRealityInteractionMapping.#ctor - isSpec: "True" - fullName: XRTK.Definitions.Devices.MixedRealityInteractionMapping.MixedRealityInteractionMapping - nameWithType: MixedRealityInteractionMapping.MixedRealityInteractionMapping -- uid: XRTK.Definitions.Devices.MixedRealityInteractionMapping.AxisCodeX - name: AxisCodeX - href: api/XRTK.Definitions.Devices.MixedRealityInteractionMapping.html#XRTK_Definitions_Devices_MixedRealityInteractionMapping_AxisCodeX - commentId: P:XRTK.Definitions.Devices.MixedRealityInteractionMapping.AxisCodeX - fullName: XRTK.Definitions.Devices.MixedRealityInteractionMapping.AxisCodeX - nameWithType: MixedRealityInteractionMapping.AxisCodeX -- uid: XRTK.Definitions.Devices.MixedRealityInteractionMapping.AxisCodeX* - name: AxisCodeX - href: api/XRTK.Definitions.Devices.MixedRealityInteractionMapping.html#XRTK_Definitions_Devices_MixedRealityInteractionMapping_AxisCodeX_ - commentId: Overload:XRTK.Definitions.Devices.MixedRealityInteractionMapping.AxisCodeX - isSpec: "True" - fullName: XRTK.Definitions.Devices.MixedRealityInteractionMapping.AxisCodeX - nameWithType: MixedRealityInteractionMapping.AxisCodeX -- uid: XRTK.Definitions.Devices.MixedRealityInteractionMapping.AxisCodeY - name: AxisCodeY - href: api/XRTK.Definitions.Devices.MixedRealityInteractionMapping.html#XRTK_Definitions_Devices_MixedRealityInteractionMapping_AxisCodeY - commentId: P:XRTK.Definitions.Devices.MixedRealityInteractionMapping.AxisCodeY - fullName: XRTK.Definitions.Devices.MixedRealityInteractionMapping.AxisCodeY - nameWithType: MixedRealityInteractionMapping.AxisCodeY -- uid: XRTK.Definitions.Devices.MixedRealityInteractionMapping.AxisCodeY* - name: AxisCodeY - href: api/XRTK.Definitions.Devices.MixedRealityInteractionMapping.html#XRTK_Definitions_Devices_MixedRealityInteractionMapping_AxisCodeY_ - commentId: Overload:XRTK.Definitions.Devices.MixedRealityInteractionMapping.AxisCodeY - isSpec: "True" - fullName: XRTK.Definitions.Devices.MixedRealityInteractionMapping.AxisCodeY - nameWithType: MixedRealityInteractionMapping.AxisCodeY -- uid: XRTK.Definitions.Devices.MixedRealityInteractionMapping.AxisType - name: AxisType - href: api/XRTK.Definitions.Devices.MixedRealityInteractionMapping.html#XRTK_Definitions_Devices_MixedRealityInteractionMapping_AxisType - commentId: P:XRTK.Definitions.Devices.MixedRealityInteractionMapping.AxisType - fullName: XRTK.Definitions.Devices.MixedRealityInteractionMapping.AxisType - nameWithType: MixedRealityInteractionMapping.AxisType -- uid: XRTK.Definitions.Devices.MixedRealityInteractionMapping.AxisType* - name: AxisType - href: api/XRTK.Definitions.Devices.MixedRealityInteractionMapping.html#XRTK_Definitions_Devices_MixedRealityInteractionMapping_AxisType_ - commentId: Overload:XRTK.Definitions.Devices.MixedRealityInteractionMapping.AxisType - isSpec: "True" - fullName: XRTK.Definitions.Devices.MixedRealityInteractionMapping.AxisType - nameWithType: MixedRealityInteractionMapping.AxisType -- uid: XRTK.Definitions.Devices.MixedRealityInteractionMapping.BoolData - name: BoolData - href: api/XRTK.Definitions.Devices.MixedRealityInteractionMapping.html#XRTK_Definitions_Devices_MixedRealityInteractionMapping_BoolData - commentId: P:XRTK.Definitions.Devices.MixedRealityInteractionMapping.BoolData - fullName: XRTK.Definitions.Devices.MixedRealityInteractionMapping.BoolData - nameWithType: MixedRealityInteractionMapping.BoolData -- uid: XRTK.Definitions.Devices.MixedRealityInteractionMapping.BoolData* - name: BoolData - href: api/XRTK.Definitions.Devices.MixedRealityInteractionMapping.html#XRTK_Definitions_Devices_MixedRealityInteractionMapping_BoolData_ - commentId: Overload:XRTK.Definitions.Devices.MixedRealityInteractionMapping.BoolData - isSpec: "True" - fullName: XRTK.Definitions.Devices.MixedRealityInteractionMapping.BoolData - nameWithType: MixedRealityInteractionMapping.BoolData -- uid: XRTK.Definitions.Devices.MixedRealityInteractionMapping.ControlActivated - name: ControlActivated - href: api/XRTK.Definitions.Devices.MixedRealityInteractionMapping.html#XRTK_Definitions_Devices_MixedRealityInteractionMapping_ControlActivated - commentId: P:XRTK.Definitions.Devices.MixedRealityInteractionMapping.ControlActivated - fullName: XRTK.Definitions.Devices.MixedRealityInteractionMapping.ControlActivated - nameWithType: MixedRealityInteractionMapping.ControlActivated -- uid: XRTK.Definitions.Devices.MixedRealityInteractionMapping.ControlActivated* - name: ControlActivated - href: api/XRTK.Definitions.Devices.MixedRealityInteractionMapping.html#XRTK_Definitions_Devices_MixedRealityInteractionMapping_ControlActivated_ - commentId: Overload:XRTK.Definitions.Devices.MixedRealityInteractionMapping.ControlActivated - isSpec: "True" - fullName: XRTK.Definitions.Devices.MixedRealityInteractionMapping.ControlActivated - nameWithType: MixedRealityInteractionMapping.ControlActivated -- uid: XRTK.Definitions.Devices.MixedRealityInteractionMapping.Description - name: Description - href: api/XRTK.Definitions.Devices.MixedRealityInteractionMapping.html#XRTK_Definitions_Devices_MixedRealityInteractionMapping_Description - commentId: P:XRTK.Definitions.Devices.MixedRealityInteractionMapping.Description - fullName: XRTK.Definitions.Devices.MixedRealityInteractionMapping.Description - nameWithType: MixedRealityInteractionMapping.Description -- uid: XRTK.Definitions.Devices.MixedRealityInteractionMapping.Description* - name: Description - href: api/XRTK.Definitions.Devices.MixedRealityInteractionMapping.html#XRTK_Definitions_Devices_MixedRealityInteractionMapping_Description_ - commentId: Overload:XRTK.Definitions.Devices.MixedRealityInteractionMapping.Description - isSpec: "True" - fullName: XRTK.Definitions.Devices.MixedRealityInteractionMapping.Description - nameWithType: MixedRealityInteractionMapping.Description -- uid: XRTK.Definitions.Devices.MixedRealityInteractionMapping.FloatData - name: FloatData - href: api/XRTK.Definitions.Devices.MixedRealityInteractionMapping.html#XRTK_Definitions_Devices_MixedRealityInteractionMapping_FloatData - commentId: P:XRTK.Definitions.Devices.MixedRealityInteractionMapping.FloatData - fullName: XRTK.Definitions.Devices.MixedRealityInteractionMapping.FloatData - nameWithType: MixedRealityInteractionMapping.FloatData -- uid: XRTK.Definitions.Devices.MixedRealityInteractionMapping.FloatData* - name: FloatData - href: api/XRTK.Definitions.Devices.MixedRealityInteractionMapping.html#XRTK_Definitions_Devices_MixedRealityInteractionMapping_FloatData_ - commentId: Overload:XRTK.Definitions.Devices.MixedRealityInteractionMapping.FloatData - isSpec: "True" - fullName: XRTK.Definitions.Devices.MixedRealityInteractionMapping.FloatData - nameWithType: MixedRealityInteractionMapping.FloatData -- uid: XRTK.Definitions.Devices.MixedRealityInteractionMapping.GetInputProcessorForType* - name: GetInputProcessorForType - href: api/XRTK.Definitions.Devices.MixedRealityInteractionMapping.html#XRTK_Definitions_Devices_MixedRealityInteractionMapping_GetInputProcessorForType_ - commentId: Overload:XRTK.Definitions.Devices.MixedRealityInteractionMapping.GetInputProcessorForType - isSpec: "True" - fullName: XRTK.Definitions.Devices.MixedRealityInteractionMapping.GetInputProcessorForType - nameWithType: MixedRealityInteractionMapping.GetInputProcessorForType -- uid: XRTK.Definitions.Devices.MixedRealityInteractionMapping.GetInputProcessorForType``1 - name: GetInputProcessorForType() - href: api/XRTK.Definitions.Devices.MixedRealityInteractionMapping.html#XRTK_Definitions_Devices_MixedRealityInteractionMapping_GetInputProcessorForType__1 - commentId: M:XRTK.Definitions.Devices.MixedRealityInteractionMapping.GetInputProcessorForType``1 - name.vb: GetInputProcessorForType(Of T)() - fullName: XRTK.Definitions.Devices.MixedRealityInteractionMapping.GetInputProcessorForType() - fullName.vb: XRTK.Definitions.Devices.MixedRealityInteractionMapping.GetInputProcessorForType(Of T)() - nameWithType: MixedRealityInteractionMapping.GetInputProcessorForType() - nameWithType.vb: MixedRealityInteractionMapping.GetInputProcessorForType(Of T)() -- uid: XRTK.Definitions.Devices.MixedRealityInteractionMapping.GetInputProcessors* - name: GetInputProcessors - href: api/XRTK.Definitions.Devices.MixedRealityInteractionMapping.html#XRTK_Definitions_Devices_MixedRealityInteractionMapping_GetInputProcessors_ - commentId: Overload:XRTK.Definitions.Devices.MixedRealityInteractionMapping.GetInputProcessors - isSpec: "True" - fullName: XRTK.Definitions.Devices.MixedRealityInteractionMapping.GetInputProcessors - nameWithType: MixedRealityInteractionMapping.GetInputProcessors -- uid: XRTK.Definitions.Devices.MixedRealityInteractionMapping.GetInputProcessors``1 - name: GetInputProcessors() - href: api/XRTK.Definitions.Devices.MixedRealityInteractionMapping.html#XRTK_Definitions_Devices_MixedRealityInteractionMapping_GetInputProcessors__1 - commentId: M:XRTK.Definitions.Devices.MixedRealityInteractionMapping.GetInputProcessors``1 - name.vb: GetInputProcessors(Of T)() - fullName: XRTK.Definitions.Devices.MixedRealityInteractionMapping.GetInputProcessors() - fullName.vb: XRTK.Definitions.Devices.MixedRealityInteractionMapping.GetInputProcessors(Of T)() - nameWithType: MixedRealityInteractionMapping.GetInputProcessors() - nameWithType.vb: MixedRealityInteractionMapping.GetInputProcessors(Of T)() -- uid: XRTK.Definitions.Devices.MixedRealityInteractionMapping.InputName - name: InputName - href: api/XRTK.Definitions.Devices.MixedRealityInteractionMapping.html#XRTK_Definitions_Devices_MixedRealityInteractionMapping_InputName - commentId: P:XRTK.Definitions.Devices.MixedRealityInteractionMapping.InputName - fullName: XRTK.Definitions.Devices.MixedRealityInteractionMapping.InputName - nameWithType: MixedRealityInteractionMapping.InputName -- uid: XRTK.Definitions.Devices.MixedRealityInteractionMapping.InputName* - name: InputName - href: api/XRTK.Definitions.Devices.MixedRealityInteractionMapping.html#XRTK_Definitions_Devices_MixedRealityInteractionMapping_InputName_ - commentId: Overload:XRTK.Definitions.Devices.MixedRealityInteractionMapping.InputName - isSpec: "True" - fullName: XRTK.Definitions.Devices.MixedRealityInteractionMapping.InputName - nameWithType: MixedRealityInteractionMapping.InputName -- uid: XRTK.Definitions.Devices.MixedRealityInteractionMapping.InputType - name: InputType - href: api/XRTK.Definitions.Devices.MixedRealityInteractionMapping.html#XRTK_Definitions_Devices_MixedRealityInteractionMapping_InputType - commentId: P:XRTK.Definitions.Devices.MixedRealityInteractionMapping.InputType - fullName: XRTK.Definitions.Devices.MixedRealityInteractionMapping.InputType - nameWithType: MixedRealityInteractionMapping.InputType -- uid: XRTK.Definitions.Devices.MixedRealityInteractionMapping.InputType* - name: InputType - href: api/XRTK.Definitions.Devices.MixedRealityInteractionMapping.html#XRTK_Definitions_Devices_MixedRealityInteractionMapping_InputType_ - commentId: Overload:XRTK.Definitions.Devices.MixedRealityInteractionMapping.InputType - isSpec: "True" - fullName: XRTK.Definitions.Devices.MixedRealityInteractionMapping.InputType - nameWithType: MixedRealityInteractionMapping.InputType -- uid: XRTK.Definitions.Devices.MixedRealityInteractionMapping.KeyCode - name: KeyCode - href: api/XRTK.Definitions.Devices.MixedRealityInteractionMapping.html#XRTK_Definitions_Devices_MixedRealityInteractionMapping_KeyCode - commentId: P:XRTK.Definitions.Devices.MixedRealityInteractionMapping.KeyCode - fullName: XRTK.Definitions.Devices.MixedRealityInteractionMapping.KeyCode - nameWithType: MixedRealityInteractionMapping.KeyCode -- uid: XRTK.Definitions.Devices.MixedRealityInteractionMapping.KeyCode* - name: KeyCode - href: api/XRTK.Definitions.Devices.MixedRealityInteractionMapping.html#XRTK_Definitions_Devices_MixedRealityInteractionMapping_KeyCode_ - commentId: Overload:XRTK.Definitions.Devices.MixedRealityInteractionMapping.KeyCode - isSpec: "True" - fullName: XRTK.Definitions.Devices.MixedRealityInteractionMapping.KeyCode - nameWithType: MixedRealityInteractionMapping.KeyCode -- uid: XRTK.Definitions.Devices.MixedRealityInteractionMapping.MixedRealityInputAction - name: MixedRealityInputAction - href: api/XRTK.Definitions.Devices.MixedRealityInteractionMapping.html#XRTK_Definitions_Devices_MixedRealityInteractionMapping_MixedRealityInputAction - commentId: P:XRTK.Definitions.Devices.MixedRealityInteractionMapping.MixedRealityInputAction - fullName: XRTK.Definitions.Devices.MixedRealityInteractionMapping.MixedRealityInputAction - nameWithType: MixedRealityInteractionMapping.MixedRealityInputAction -- uid: XRTK.Definitions.Devices.MixedRealityInteractionMapping.MixedRealityInputAction* - name: MixedRealityInputAction - href: api/XRTK.Definitions.Devices.MixedRealityInteractionMapping.html#XRTK_Definitions_Devices_MixedRealityInteractionMapping_MixedRealityInputAction_ - commentId: Overload:XRTK.Definitions.Devices.MixedRealityInteractionMapping.MixedRealityInputAction - isSpec: "True" - fullName: XRTK.Definitions.Devices.MixedRealityInteractionMapping.MixedRealityInputAction - nameWithType: MixedRealityInteractionMapping.MixedRealityInputAction -- uid: XRTK.Definitions.Devices.MixedRealityInteractionMapping.PoseData - name: PoseData - href: api/XRTK.Definitions.Devices.MixedRealityInteractionMapping.html#XRTK_Definitions_Devices_MixedRealityInteractionMapping_PoseData - commentId: P:XRTK.Definitions.Devices.MixedRealityInteractionMapping.PoseData - fullName: XRTK.Definitions.Devices.MixedRealityInteractionMapping.PoseData - nameWithType: MixedRealityInteractionMapping.PoseData -- uid: XRTK.Definitions.Devices.MixedRealityInteractionMapping.PoseData* - name: PoseData - href: api/XRTK.Definitions.Devices.MixedRealityInteractionMapping.html#XRTK_Definitions_Devices_MixedRealityInteractionMapping_PoseData_ - commentId: Overload:XRTK.Definitions.Devices.MixedRealityInteractionMapping.PoseData - isSpec: "True" - fullName: XRTK.Definitions.Devices.MixedRealityInteractionMapping.PoseData - nameWithType: MixedRealityInteractionMapping.PoseData -- uid: XRTK.Definitions.Devices.MixedRealityInteractionMapping.PositionData - name: PositionData - href: api/XRTK.Definitions.Devices.MixedRealityInteractionMapping.html#XRTK_Definitions_Devices_MixedRealityInteractionMapping_PositionData - commentId: P:XRTK.Definitions.Devices.MixedRealityInteractionMapping.PositionData - fullName: XRTK.Definitions.Devices.MixedRealityInteractionMapping.PositionData - nameWithType: MixedRealityInteractionMapping.PositionData -- uid: XRTK.Definitions.Devices.MixedRealityInteractionMapping.PositionData* - name: PositionData - href: api/XRTK.Definitions.Devices.MixedRealityInteractionMapping.html#XRTK_Definitions_Devices_MixedRealityInteractionMapping_PositionData_ - commentId: Overload:XRTK.Definitions.Devices.MixedRealityInteractionMapping.PositionData - isSpec: "True" - fullName: XRTK.Definitions.Devices.MixedRealityInteractionMapping.PositionData - nameWithType: MixedRealityInteractionMapping.PositionData -- uid: XRTK.Definitions.Devices.MixedRealityInteractionMapping.RawData - name: RawData - href: api/XRTK.Definitions.Devices.MixedRealityInteractionMapping.html#XRTK_Definitions_Devices_MixedRealityInteractionMapping_RawData - commentId: P:XRTK.Definitions.Devices.MixedRealityInteractionMapping.RawData - fullName: XRTK.Definitions.Devices.MixedRealityInteractionMapping.RawData - nameWithType: MixedRealityInteractionMapping.RawData -- uid: XRTK.Definitions.Devices.MixedRealityInteractionMapping.RawData* - name: RawData - href: api/XRTK.Definitions.Devices.MixedRealityInteractionMapping.html#XRTK_Definitions_Devices_MixedRealityInteractionMapping_RawData_ - commentId: Overload:XRTK.Definitions.Devices.MixedRealityInteractionMapping.RawData - isSpec: "True" - fullName: XRTK.Definitions.Devices.MixedRealityInteractionMapping.RawData - nameWithType: MixedRealityInteractionMapping.RawData -- uid: XRTK.Definitions.Devices.MixedRealityInteractionMapping.RotationData - name: RotationData - href: api/XRTK.Definitions.Devices.MixedRealityInteractionMapping.html#XRTK_Definitions_Devices_MixedRealityInteractionMapping_RotationData - commentId: P:XRTK.Definitions.Devices.MixedRealityInteractionMapping.RotationData - fullName: XRTK.Definitions.Devices.MixedRealityInteractionMapping.RotationData - nameWithType: MixedRealityInteractionMapping.RotationData -- uid: XRTK.Definitions.Devices.MixedRealityInteractionMapping.RotationData* - name: RotationData - href: api/XRTK.Definitions.Devices.MixedRealityInteractionMapping.html#XRTK_Definitions_Devices_MixedRealityInteractionMapping_RotationData_ - commentId: Overload:XRTK.Definitions.Devices.MixedRealityInteractionMapping.RotationData - isSpec: "True" - fullName: XRTK.Definitions.Devices.MixedRealityInteractionMapping.RotationData - nameWithType: MixedRealityInteractionMapping.RotationData -- uid: XRTK.Definitions.Devices.MixedRealityInteractionMapping.Updated - name: Updated - href: api/XRTK.Definitions.Devices.MixedRealityInteractionMapping.html#XRTK_Definitions_Devices_MixedRealityInteractionMapping_Updated - commentId: P:XRTK.Definitions.Devices.MixedRealityInteractionMapping.Updated - fullName: XRTK.Definitions.Devices.MixedRealityInteractionMapping.Updated - nameWithType: MixedRealityInteractionMapping.Updated -- uid: XRTK.Definitions.Devices.MixedRealityInteractionMapping.Updated* - name: Updated - href: api/XRTK.Definitions.Devices.MixedRealityInteractionMapping.html#XRTK_Definitions_Devices_MixedRealityInteractionMapping_Updated_ - commentId: Overload:XRTK.Definitions.Devices.MixedRealityInteractionMapping.Updated - isSpec: "True" - fullName: XRTK.Definitions.Devices.MixedRealityInteractionMapping.Updated - nameWithType: MixedRealityInteractionMapping.Updated -- uid: XRTK.Definitions.Devices.MixedRealityInteractionMapping.Vector2Data - name: Vector2Data - href: api/XRTK.Definitions.Devices.MixedRealityInteractionMapping.html#XRTK_Definitions_Devices_MixedRealityInteractionMapping_Vector2Data - commentId: P:XRTK.Definitions.Devices.MixedRealityInteractionMapping.Vector2Data - fullName: XRTK.Definitions.Devices.MixedRealityInteractionMapping.Vector2Data - nameWithType: MixedRealityInteractionMapping.Vector2Data -- uid: XRTK.Definitions.Devices.MixedRealityInteractionMapping.Vector2Data* - name: Vector2Data - href: api/XRTK.Definitions.Devices.MixedRealityInteractionMapping.html#XRTK_Definitions_Devices_MixedRealityInteractionMapping_Vector2Data_ - commentId: Overload:XRTK.Definitions.Devices.MixedRealityInteractionMapping.Vector2Data - isSpec: "True" - fullName: XRTK.Definitions.Devices.MixedRealityInteractionMapping.Vector2Data - nameWithType: MixedRealityInteractionMapping.Vector2Data -- uid: XRTK.Definitions.Devices.SDKType - name: SDKType - href: api/XRTK.Definitions.Devices.SDKType.html - commentId: T:XRTK.Definitions.Devices.SDKType - fullName: XRTK.Definitions.Devices.SDKType - nameWithType: SDKType -- uid: XRTK.Definitions.Devices.SDKType.None - name: None - href: api/XRTK.Definitions.Devices.SDKType.html#XRTK_Definitions_Devices_SDKType_None - commentId: F:XRTK.Definitions.Devices.SDKType.None - fullName: XRTK.Definitions.Devices.SDKType.None - nameWithType: SDKType.None -- uid: XRTK.Definitions.Devices.SDKType.OpenVR - name: OpenVR - href: api/XRTK.Definitions.Devices.SDKType.html#XRTK_Definitions_Devices_SDKType_OpenVR - commentId: F:XRTK.Definitions.Devices.SDKType.OpenVR - fullName: XRTK.Definitions.Devices.SDKType.OpenVR - nameWithType: SDKType.OpenVR -- uid: XRTK.Definitions.Devices.SDKType.OpenXR - name: OpenXR - href: api/XRTK.Definitions.Devices.SDKType.html#XRTK_Definitions_Devices_SDKType_OpenXR - commentId: F:XRTK.Definitions.Devices.SDKType.OpenXR - fullName: XRTK.Definitions.Devices.SDKType.OpenXR - nameWithType: SDKType.OpenXR -- uid: XRTK.Definitions.Devices.SDKType.Other - name: Other - href: api/XRTK.Definitions.Devices.SDKType.html#XRTK_Definitions_Devices_SDKType_Other - commentId: F:XRTK.Definitions.Devices.SDKType.Other - fullName: XRTK.Definitions.Devices.SDKType.Other - nameWithType: SDKType.Other -- uid: XRTK.Definitions.Devices.SDKType.WindowsMR - name: WindowsMR - href: api/XRTK.Definitions.Devices.SDKType.html#XRTK_Definitions_Devices_SDKType_WindowsMR - commentId: F:XRTK.Definitions.Devices.SDKType.WindowsMR - fullName: XRTK.Definitions.Devices.SDKType.WindowsMR - nameWithType: SDKType.WindowsMR -- uid: XRTK.Definitions.Devices.TrackingState - name: TrackingState - href: api/XRTK.Definitions.Devices.TrackingState.html - commentId: T:XRTK.Definitions.Devices.TrackingState - fullName: XRTK.Definitions.Devices.TrackingState - nameWithType: TrackingState -- uid: XRTK.Definitions.Devices.TrackingState.NotApplicable - name: NotApplicable - href: api/XRTK.Definitions.Devices.TrackingState.html#XRTK_Definitions_Devices_TrackingState_NotApplicable - commentId: F:XRTK.Definitions.Devices.TrackingState.NotApplicable - fullName: XRTK.Definitions.Devices.TrackingState.NotApplicable - nameWithType: TrackingState.NotApplicable -- uid: XRTK.Definitions.Devices.TrackingState.NotTracked - name: NotTracked - href: api/XRTK.Definitions.Devices.TrackingState.html#XRTK_Definitions_Devices_TrackingState_NotTracked - commentId: F:XRTK.Definitions.Devices.TrackingState.NotTracked - fullName: XRTK.Definitions.Devices.TrackingState.NotTracked - nameWithType: TrackingState.NotTracked -- uid: XRTK.Definitions.Devices.TrackingState.Tracked - name: Tracked - href: api/XRTK.Definitions.Devices.TrackingState.html#XRTK_Definitions_Devices_TrackingState_Tracked - commentId: F:XRTK.Definitions.Devices.TrackingState.Tracked - fullName: XRTK.Definitions.Devices.TrackingState.Tracked - nameWithType: TrackingState.Tracked -- uid: XRTK.Definitions.DiagnosticsSystem - name: XRTK.Definitions.DiagnosticsSystem - href: api/XRTK.Definitions.DiagnosticsSystem.html - commentId: N:XRTK.Definitions.DiagnosticsSystem - fullName: XRTK.Definitions.DiagnosticsSystem - nameWithType: XRTK.Definitions.DiagnosticsSystem -- uid: XRTK.Definitions.DiagnosticsSystem.MemoryLimit - name: MemoryLimit - href: api/XRTK.Definitions.DiagnosticsSystem.MemoryLimit.html - commentId: T:XRTK.Definitions.DiagnosticsSystem.MemoryLimit - fullName: XRTK.Definitions.DiagnosticsSystem.MemoryLimit - nameWithType: MemoryLimit -- uid: XRTK.Definitions.DiagnosticsSystem.MemoryLimit.#ctor(System.UInt64) - name: MemoryLimit(UInt64) - href: api/XRTK.Definitions.DiagnosticsSystem.MemoryLimit.html#XRTK_Definitions_DiagnosticsSystem_MemoryLimit__ctor_System_UInt64_ - commentId: M:XRTK.Definitions.DiagnosticsSystem.MemoryLimit.#ctor(System.UInt64) - fullName: XRTK.Definitions.DiagnosticsSystem.MemoryLimit.MemoryLimit(System.UInt64) - nameWithType: MemoryLimit.MemoryLimit(UInt64) -- uid: XRTK.Definitions.DiagnosticsSystem.MemoryLimit.#ctor* - name: MemoryLimit - href: api/XRTK.Definitions.DiagnosticsSystem.MemoryLimit.html#XRTK_Definitions_DiagnosticsSystem_MemoryLimit__ctor_ - commentId: Overload:XRTK.Definitions.DiagnosticsSystem.MemoryLimit.#ctor - isSpec: "True" - fullName: XRTK.Definitions.DiagnosticsSystem.MemoryLimit.MemoryLimit - nameWithType: MemoryLimit.MemoryLimit -- uid: XRTK.Definitions.DiagnosticsSystem.MemoryLimit.op_Implicit(XRTK.Definitions.DiagnosticsSystem.MemoryLimit)~System.UInt64 - name: Implicit(MemoryLimit to UInt64) - href: api/XRTK.Definitions.DiagnosticsSystem.MemoryLimit.html#XRTK_Definitions_DiagnosticsSystem_MemoryLimit_op_Implicit_XRTK_Definitions_DiagnosticsSystem_MemoryLimit__System_UInt64 - commentId: M:XRTK.Definitions.DiagnosticsSystem.MemoryLimit.op_Implicit(XRTK.Definitions.DiagnosticsSystem.MemoryLimit)~System.UInt64 - name.vb: Widening(MemoryLimit to UInt64) - fullName: XRTK.Definitions.DiagnosticsSystem.MemoryLimit.Implicit(XRTK.Definitions.DiagnosticsSystem.MemoryLimit to System.UInt64) - fullName.vb: XRTK.Definitions.DiagnosticsSystem.MemoryLimit.Widening(XRTK.Definitions.DiagnosticsSystem.MemoryLimit to System.UInt64) - nameWithType: MemoryLimit.Implicit(MemoryLimit to UInt64) - nameWithType.vb: MemoryLimit.Widening(MemoryLimit to UInt64) -- uid: XRTK.Definitions.DiagnosticsSystem.MemoryLimit.op_Implicit* - name: Implicit - href: api/XRTK.Definitions.DiagnosticsSystem.MemoryLimit.html#XRTK_Definitions_DiagnosticsSystem_MemoryLimit_op_Implicit_ - commentId: Overload:XRTK.Definitions.DiagnosticsSystem.MemoryLimit.op_Implicit - isSpec: "True" - name.vb: Widening - fullName: XRTK.Definitions.DiagnosticsSystem.MemoryLimit.Implicit - fullName.vb: XRTK.Definitions.DiagnosticsSystem.MemoryLimit.Widening - nameWithType: MemoryLimit.Implicit - nameWithType.vb: MemoryLimit.Widening -- uid: XRTK.Definitions.DiagnosticsSystem.MemoryLimit.Value - name: Value - href: api/XRTK.Definitions.DiagnosticsSystem.MemoryLimit.html#XRTK_Definitions_DiagnosticsSystem_MemoryLimit_Value - commentId: F:XRTK.Definitions.DiagnosticsSystem.MemoryLimit.Value - fullName: XRTK.Definitions.DiagnosticsSystem.MemoryLimit.Value - nameWithType: MemoryLimit.Value -- uid: XRTK.Definitions.DiagnosticsSystem.MemoryPeak - name: MemoryPeak - href: api/XRTK.Definitions.DiagnosticsSystem.MemoryPeak.html - commentId: T:XRTK.Definitions.DiagnosticsSystem.MemoryPeak - fullName: XRTK.Definitions.DiagnosticsSystem.MemoryPeak - nameWithType: MemoryPeak -- uid: XRTK.Definitions.DiagnosticsSystem.MemoryPeak.#ctor(System.UInt64) - name: MemoryPeak(UInt64) - href: api/XRTK.Definitions.DiagnosticsSystem.MemoryPeak.html#XRTK_Definitions_DiagnosticsSystem_MemoryPeak__ctor_System_UInt64_ - commentId: M:XRTK.Definitions.DiagnosticsSystem.MemoryPeak.#ctor(System.UInt64) - fullName: XRTK.Definitions.DiagnosticsSystem.MemoryPeak.MemoryPeak(System.UInt64) - nameWithType: MemoryPeak.MemoryPeak(UInt64) -- uid: XRTK.Definitions.DiagnosticsSystem.MemoryPeak.#ctor* - name: MemoryPeak - href: api/XRTK.Definitions.DiagnosticsSystem.MemoryPeak.html#XRTK_Definitions_DiagnosticsSystem_MemoryPeak__ctor_ - commentId: Overload:XRTK.Definitions.DiagnosticsSystem.MemoryPeak.#ctor - isSpec: "True" - fullName: XRTK.Definitions.DiagnosticsSystem.MemoryPeak.MemoryPeak - nameWithType: MemoryPeak.MemoryPeak -- uid: XRTK.Definitions.DiagnosticsSystem.MemoryPeak.op_Implicit(XRTK.Definitions.DiagnosticsSystem.MemoryPeak)~System.UInt64 - name: Implicit(MemoryPeak to UInt64) - href: api/XRTK.Definitions.DiagnosticsSystem.MemoryPeak.html#XRTK_Definitions_DiagnosticsSystem_MemoryPeak_op_Implicit_XRTK_Definitions_DiagnosticsSystem_MemoryPeak__System_UInt64 - commentId: M:XRTK.Definitions.DiagnosticsSystem.MemoryPeak.op_Implicit(XRTK.Definitions.DiagnosticsSystem.MemoryPeak)~System.UInt64 - name.vb: Widening(MemoryPeak to UInt64) - fullName: XRTK.Definitions.DiagnosticsSystem.MemoryPeak.Implicit(XRTK.Definitions.DiagnosticsSystem.MemoryPeak to System.UInt64) - fullName.vb: XRTK.Definitions.DiagnosticsSystem.MemoryPeak.Widening(XRTK.Definitions.DiagnosticsSystem.MemoryPeak to System.UInt64) - nameWithType: MemoryPeak.Implicit(MemoryPeak to UInt64) - nameWithType.vb: MemoryPeak.Widening(MemoryPeak to UInt64) -- uid: XRTK.Definitions.DiagnosticsSystem.MemoryPeak.op_Implicit* - name: Implicit - href: api/XRTK.Definitions.DiagnosticsSystem.MemoryPeak.html#XRTK_Definitions_DiagnosticsSystem_MemoryPeak_op_Implicit_ - commentId: Overload:XRTK.Definitions.DiagnosticsSystem.MemoryPeak.op_Implicit - isSpec: "True" - name.vb: Widening - fullName: XRTK.Definitions.DiagnosticsSystem.MemoryPeak.Implicit - fullName.vb: XRTK.Definitions.DiagnosticsSystem.MemoryPeak.Widening - nameWithType: MemoryPeak.Implicit - nameWithType.vb: MemoryPeak.Widening -- uid: XRTK.Definitions.DiagnosticsSystem.MemoryPeak.Value - name: Value - href: api/XRTK.Definitions.DiagnosticsSystem.MemoryPeak.html#XRTK_Definitions_DiagnosticsSystem_MemoryPeak_Value - commentId: F:XRTK.Definitions.DiagnosticsSystem.MemoryPeak.Value - fullName: XRTK.Definitions.DiagnosticsSystem.MemoryPeak.Value - nameWithType: MemoryPeak.Value -- uid: XRTK.Definitions.DiagnosticsSystem.MemoryUsage - name: MemoryUsage - href: api/XRTK.Definitions.DiagnosticsSystem.MemoryUsage.html - commentId: T:XRTK.Definitions.DiagnosticsSystem.MemoryUsage - fullName: XRTK.Definitions.DiagnosticsSystem.MemoryUsage - nameWithType: MemoryUsage -- uid: XRTK.Definitions.DiagnosticsSystem.MemoryUsage.#ctor(System.UInt64) - name: MemoryUsage(UInt64) - href: api/XRTK.Definitions.DiagnosticsSystem.MemoryUsage.html#XRTK_Definitions_DiagnosticsSystem_MemoryUsage__ctor_System_UInt64_ - commentId: M:XRTK.Definitions.DiagnosticsSystem.MemoryUsage.#ctor(System.UInt64) - fullName: XRTK.Definitions.DiagnosticsSystem.MemoryUsage.MemoryUsage(System.UInt64) - nameWithType: MemoryUsage.MemoryUsage(UInt64) -- uid: XRTK.Definitions.DiagnosticsSystem.MemoryUsage.#ctor* - name: MemoryUsage - href: api/XRTK.Definitions.DiagnosticsSystem.MemoryUsage.html#XRTK_Definitions_DiagnosticsSystem_MemoryUsage__ctor_ - commentId: Overload:XRTK.Definitions.DiagnosticsSystem.MemoryUsage.#ctor - isSpec: "True" - fullName: XRTK.Definitions.DiagnosticsSystem.MemoryUsage.MemoryUsage - nameWithType: MemoryUsage.MemoryUsage -- uid: XRTK.Definitions.DiagnosticsSystem.MemoryUsage.op_Implicit(XRTK.Definitions.DiagnosticsSystem.MemoryUsage)~System.UInt64 - name: Implicit(MemoryUsage to UInt64) - href: api/XRTK.Definitions.DiagnosticsSystem.MemoryUsage.html#XRTK_Definitions_DiagnosticsSystem_MemoryUsage_op_Implicit_XRTK_Definitions_DiagnosticsSystem_MemoryUsage__System_UInt64 - commentId: M:XRTK.Definitions.DiagnosticsSystem.MemoryUsage.op_Implicit(XRTK.Definitions.DiagnosticsSystem.MemoryUsage)~System.UInt64 - name.vb: Widening(MemoryUsage to UInt64) - fullName: XRTK.Definitions.DiagnosticsSystem.MemoryUsage.Implicit(XRTK.Definitions.DiagnosticsSystem.MemoryUsage to System.UInt64) - fullName.vb: XRTK.Definitions.DiagnosticsSystem.MemoryUsage.Widening(XRTK.Definitions.DiagnosticsSystem.MemoryUsage to System.UInt64) - nameWithType: MemoryUsage.Implicit(MemoryUsage to UInt64) - nameWithType.vb: MemoryUsage.Widening(MemoryUsage to UInt64) -- uid: XRTK.Definitions.DiagnosticsSystem.MemoryUsage.op_Implicit* - name: Implicit - href: api/XRTK.Definitions.DiagnosticsSystem.MemoryUsage.html#XRTK_Definitions_DiagnosticsSystem_MemoryUsage_op_Implicit_ - commentId: Overload:XRTK.Definitions.DiagnosticsSystem.MemoryUsage.op_Implicit - isSpec: "True" - name.vb: Widening - fullName: XRTK.Definitions.DiagnosticsSystem.MemoryUsage.Implicit - fullName.vb: XRTK.Definitions.DiagnosticsSystem.MemoryUsage.Widening - nameWithType: MemoryUsage.Implicit - nameWithType.vb: MemoryUsage.Widening -- uid: XRTK.Definitions.DiagnosticsSystem.MemoryUsage.Value - name: Value - href: api/XRTK.Definitions.DiagnosticsSystem.MemoryUsage.html#XRTK_Definitions_DiagnosticsSystem_MemoryUsage_Value - commentId: F:XRTK.Definitions.DiagnosticsSystem.MemoryUsage.Value - fullName: XRTK.Definitions.DiagnosticsSystem.MemoryUsage.Value - nameWithType: MemoryUsage.Value -- uid: XRTK.Definitions.DiagnosticsSystem.MixedRealityDiagnosticsSystemProfile - name: MixedRealityDiagnosticsSystemProfile - href: api/XRTK.Definitions.DiagnosticsSystem.MixedRealityDiagnosticsSystemProfile.html - commentId: T:XRTK.Definitions.DiagnosticsSystem.MixedRealityDiagnosticsSystemProfile - fullName: XRTK.Definitions.DiagnosticsSystem.MixedRealityDiagnosticsSystemProfile - nameWithType: MixedRealityDiagnosticsSystemProfile -- uid: XRTK.Definitions.DiagnosticsSystem.MixedRealityDiagnosticsSystemProfile.DiagnosticsWindowPrefab - name: DiagnosticsWindowPrefab - href: api/XRTK.Definitions.DiagnosticsSystem.MixedRealityDiagnosticsSystemProfile.html#XRTK_Definitions_DiagnosticsSystem_MixedRealityDiagnosticsSystemProfile_DiagnosticsWindowPrefab - commentId: P:XRTK.Definitions.DiagnosticsSystem.MixedRealityDiagnosticsSystemProfile.DiagnosticsWindowPrefab - fullName: XRTK.Definitions.DiagnosticsSystem.MixedRealityDiagnosticsSystemProfile.DiagnosticsWindowPrefab - nameWithType: MixedRealityDiagnosticsSystemProfile.DiagnosticsWindowPrefab -- uid: XRTK.Definitions.DiagnosticsSystem.MixedRealityDiagnosticsSystemProfile.DiagnosticsWindowPrefab* - name: DiagnosticsWindowPrefab - href: api/XRTK.Definitions.DiagnosticsSystem.MixedRealityDiagnosticsSystemProfile.html#XRTK_Definitions_DiagnosticsSystem_MixedRealityDiagnosticsSystemProfile_DiagnosticsWindowPrefab_ - commentId: Overload:XRTK.Definitions.DiagnosticsSystem.MixedRealityDiagnosticsSystemProfile.DiagnosticsWindowPrefab - isSpec: "True" - fullName: XRTK.Definitions.DiagnosticsSystem.MixedRealityDiagnosticsSystemProfile.DiagnosticsWindowPrefab - nameWithType: MixedRealityDiagnosticsSystemProfile.DiagnosticsWindowPrefab -- uid: XRTK.Definitions.DiagnosticsSystem.MixedRealityDiagnosticsSystemProfile.ShowDiagnosticsWindowOnStart - name: ShowDiagnosticsWindowOnStart - href: api/XRTK.Definitions.DiagnosticsSystem.MixedRealityDiagnosticsSystemProfile.html#XRTK_Definitions_DiagnosticsSystem_MixedRealityDiagnosticsSystemProfile_ShowDiagnosticsWindowOnStart - commentId: P:XRTK.Definitions.DiagnosticsSystem.MixedRealityDiagnosticsSystemProfile.ShowDiagnosticsWindowOnStart - fullName: XRTK.Definitions.DiagnosticsSystem.MixedRealityDiagnosticsSystemProfile.ShowDiagnosticsWindowOnStart - nameWithType: MixedRealityDiagnosticsSystemProfile.ShowDiagnosticsWindowOnStart -- uid: XRTK.Definitions.DiagnosticsSystem.MixedRealityDiagnosticsSystemProfile.ShowDiagnosticsWindowOnStart* - name: ShowDiagnosticsWindowOnStart - href: api/XRTK.Definitions.DiagnosticsSystem.MixedRealityDiagnosticsSystemProfile.html#XRTK_Definitions_DiagnosticsSystem_MixedRealityDiagnosticsSystemProfile_ShowDiagnosticsWindowOnStart_ - commentId: Overload:XRTK.Definitions.DiagnosticsSystem.MixedRealityDiagnosticsSystemProfile.ShowDiagnosticsWindowOnStart - isSpec: "True" - fullName: XRTK.Definitions.DiagnosticsSystem.MixedRealityDiagnosticsSystemProfile.ShowDiagnosticsWindowOnStart - nameWithType: MixedRealityDiagnosticsSystemProfile.ShowDiagnosticsWindowOnStart -- uid: XRTK.Definitions.IMixedRealityServiceProfile`1 - name: IMixedRealityServiceProfile - href: api/XRTK.Definitions.IMixedRealityServiceProfile-1.html - commentId: T:XRTK.Definitions.IMixedRealityServiceProfile`1 - name.vb: IMixedRealityServiceProfile(Of TService) - fullName: XRTK.Definitions.IMixedRealityServiceProfile - fullName.vb: XRTK.Definitions.IMixedRealityServiceProfile(Of TService) - nameWithType: IMixedRealityServiceProfile - nameWithType.vb: IMixedRealityServiceProfile(Of TService) -- uid: XRTK.Definitions.IMixedRealityServiceProfile`1.RegisteredServiceConfigurations - name: RegisteredServiceConfigurations - href: api/XRTK.Definitions.IMixedRealityServiceProfile-1.html#XRTK_Definitions_IMixedRealityServiceProfile_1_RegisteredServiceConfigurations - commentId: P:XRTK.Definitions.IMixedRealityServiceProfile`1.RegisteredServiceConfigurations - fullName: XRTK.Definitions.IMixedRealityServiceProfile.RegisteredServiceConfigurations - fullName.vb: XRTK.Definitions.IMixedRealityServiceProfile(Of TService).RegisteredServiceConfigurations - nameWithType: IMixedRealityServiceProfile.RegisteredServiceConfigurations - nameWithType.vb: IMixedRealityServiceProfile(Of TService).RegisteredServiceConfigurations -- uid: XRTK.Definitions.IMixedRealityServiceProfile`1.RegisteredServiceConfigurations* - name: RegisteredServiceConfigurations - href: api/XRTK.Definitions.IMixedRealityServiceProfile-1.html#XRTK_Definitions_IMixedRealityServiceProfile_1_RegisteredServiceConfigurations_ - commentId: Overload:XRTK.Definitions.IMixedRealityServiceProfile`1.RegisteredServiceConfigurations - isSpec: "True" - fullName: XRTK.Definitions.IMixedRealityServiceProfile.RegisteredServiceConfigurations - fullName.vb: XRTK.Definitions.IMixedRealityServiceProfile(Of TService).RegisteredServiceConfigurations - nameWithType: IMixedRealityServiceProfile.RegisteredServiceConfigurations - nameWithType.vb: IMixedRealityServiceProfile(Of TService).RegisteredServiceConfigurations -- uid: XRTK.Definitions.InputSystem - name: XRTK.Definitions.InputSystem - href: api/XRTK.Definitions.InputSystem.html - commentId: N:XRTK.Definitions.InputSystem - fullName: XRTK.Definitions.InputSystem - nameWithType: XRTK.Definitions.InputSystem -- uid: XRTK.Definitions.InputSystem.AnimatedCursorData - name: AnimatedCursorData - href: api/XRTK.Definitions.InputSystem.AnimatedCursorData.html - commentId: T:XRTK.Definitions.InputSystem.AnimatedCursorData - fullName: XRTK.Definitions.InputSystem.AnimatedCursorData - nameWithType: AnimatedCursorData -- uid: XRTK.Definitions.InputSystem.AnimatedCursorData.#ctor(System.String,XRTK.Definitions.InputSystem.CursorStateEnum,XRTK.Definitions.Utilities.AnimatorParameter) - name: AnimatedCursorData(String, CursorStateEnum, AnimatorParameter) - href: api/XRTK.Definitions.InputSystem.AnimatedCursorData.html#XRTK_Definitions_InputSystem_AnimatedCursorData__ctor_System_String_XRTK_Definitions_InputSystem_CursorStateEnum_XRTK_Definitions_Utilities_AnimatorParameter_ - commentId: M:XRTK.Definitions.InputSystem.AnimatedCursorData.#ctor(System.String,XRTK.Definitions.InputSystem.CursorStateEnum,XRTK.Definitions.Utilities.AnimatorParameter) - fullName: XRTK.Definitions.InputSystem.AnimatedCursorData.AnimatedCursorData(System.String, XRTK.Definitions.InputSystem.CursorStateEnum, XRTK.Definitions.Utilities.AnimatorParameter) - nameWithType: AnimatedCursorData.AnimatedCursorData(String, CursorStateEnum, AnimatorParameter) -- uid: XRTK.Definitions.InputSystem.AnimatedCursorData.#ctor* - name: AnimatedCursorData - href: api/XRTK.Definitions.InputSystem.AnimatedCursorData.html#XRTK_Definitions_InputSystem_AnimatedCursorData__ctor_ - commentId: Overload:XRTK.Definitions.InputSystem.AnimatedCursorData.#ctor - isSpec: "True" - fullName: XRTK.Definitions.InputSystem.AnimatedCursorData.AnimatedCursorData - nameWithType: AnimatedCursorData.AnimatedCursorData -- uid: XRTK.Definitions.InputSystem.AnimatedCursorData.CursorState - name: CursorState - href: api/XRTK.Definitions.InputSystem.AnimatedCursorData.html#XRTK_Definitions_InputSystem_AnimatedCursorData_CursorState - commentId: P:XRTK.Definitions.InputSystem.AnimatedCursorData.CursorState - fullName: XRTK.Definitions.InputSystem.AnimatedCursorData.CursorState - nameWithType: AnimatedCursorData.CursorState -- uid: XRTK.Definitions.InputSystem.AnimatedCursorData.CursorState* - name: CursorState - href: api/XRTK.Definitions.InputSystem.AnimatedCursorData.html#XRTK_Definitions_InputSystem_AnimatedCursorData_CursorState_ - commentId: Overload:XRTK.Definitions.InputSystem.AnimatedCursorData.CursorState - isSpec: "True" - fullName: XRTK.Definitions.InputSystem.AnimatedCursorData.CursorState - nameWithType: AnimatedCursorData.CursorState -- uid: XRTK.Definitions.InputSystem.AnimatedCursorData.Name - name: Name - href: api/XRTK.Definitions.InputSystem.AnimatedCursorData.html#XRTK_Definitions_InputSystem_AnimatedCursorData_Name - commentId: P:XRTK.Definitions.InputSystem.AnimatedCursorData.Name - fullName: XRTK.Definitions.InputSystem.AnimatedCursorData.Name - nameWithType: AnimatedCursorData.Name -- uid: XRTK.Definitions.InputSystem.AnimatedCursorData.Name* - name: Name - href: api/XRTK.Definitions.InputSystem.AnimatedCursorData.html#XRTK_Definitions_InputSystem_AnimatedCursorData_Name_ - commentId: Overload:XRTK.Definitions.InputSystem.AnimatedCursorData.Name - isSpec: "True" - fullName: XRTK.Definitions.InputSystem.AnimatedCursorData.Name - nameWithType: AnimatedCursorData.Name -- uid: XRTK.Definitions.InputSystem.AnimatedCursorData.Parameter - name: Parameter - href: api/XRTK.Definitions.InputSystem.AnimatedCursorData.html#XRTK_Definitions_InputSystem_AnimatedCursorData_Parameter - commentId: P:XRTK.Definitions.InputSystem.AnimatedCursorData.Parameter - fullName: XRTK.Definitions.InputSystem.AnimatedCursorData.Parameter - nameWithType: AnimatedCursorData.Parameter -- uid: XRTK.Definitions.InputSystem.AnimatedCursorData.Parameter* - name: Parameter - href: api/XRTK.Definitions.InputSystem.AnimatedCursorData.html#XRTK_Definitions_InputSystem_AnimatedCursorData_Parameter_ - commentId: Overload:XRTK.Definitions.InputSystem.AnimatedCursorData.Parameter - isSpec: "True" - fullName: XRTK.Definitions.InputSystem.AnimatedCursorData.Parameter - nameWithType: AnimatedCursorData.Parameter -- uid: XRTK.Definitions.InputSystem.CursorStateEnum - name: CursorStateEnum - href: api/XRTK.Definitions.InputSystem.CursorStateEnum.html - commentId: T:XRTK.Definitions.InputSystem.CursorStateEnum - fullName: XRTK.Definitions.InputSystem.CursorStateEnum - nameWithType: CursorStateEnum -- uid: XRTK.Definitions.InputSystem.CursorStateEnum.Contextual - name: Contextual - href: api/XRTK.Definitions.InputSystem.CursorStateEnum.html#XRTK_Definitions_InputSystem_CursorStateEnum_Contextual - commentId: F:XRTK.Definitions.InputSystem.CursorStateEnum.Contextual - fullName: XRTK.Definitions.InputSystem.CursorStateEnum.Contextual - nameWithType: CursorStateEnum.Contextual -- uid: XRTK.Definitions.InputSystem.CursorStateEnum.Interact - name: Interact - href: api/XRTK.Definitions.InputSystem.CursorStateEnum.html#XRTK_Definitions_InputSystem_CursorStateEnum_Interact - commentId: F:XRTK.Definitions.InputSystem.CursorStateEnum.Interact - fullName: XRTK.Definitions.InputSystem.CursorStateEnum.Interact - nameWithType: CursorStateEnum.Interact -- uid: XRTK.Definitions.InputSystem.CursorStateEnum.InteractHover - name: InteractHover - href: api/XRTK.Definitions.InputSystem.CursorStateEnum.html#XRTK_Definitions_InputSystem_CursorStateEnum_InteractHover - commentId: F:XRTK.Definitions.InputSystem.CursorStateEnum.InteractHover - fullName: XRTK.Definitions.InputSystem.CursorStateEnum.InteractHover - nameWithType: CursorStateEnum.InteractHover -- uid: XRTK.Definitions.InputSystem.CursorStateEnum.None - name: None - href: api/XRTK.Definitions.InputSystem.CursorStateEnum.html#XRTK_Definitions_InputSystem_CursorStateEnum_None - commentId: F:XRTK.Definitions.InputSystem.CursorStateEnum.None - fullName: XRTK.Definitions.InputSystem.CursorStateEnum.None - nameWithType: CursorStateEnum.None -- uid: XRTK.Definitions.InputSystem.CursorStateEnum.Observe - name: Observe - href: api/XRTK.Definitions.InputSystem.CursorStateEnum.html#XRTK_Definitions_InputSystem_CursorStateEnum_Observe - commentId: F:XRTK.Definitions.InputSystem.CursorStateEnum.Observe - fullName: XRTK.Definitions.InputSystem.CursorStateEnum.Observe - nameWithType: CursorStateEnum.Observe -- uid: XRTK.Definitions.InputSystem.CursorStateEnum.ObserveHover - name: ObserveHover - href: api/XRTK.Definitions.InputSystem.CursorStateEnum.html#XRTK_Definitions_InputSystem_CursorStateEnum_ObserveHover - commentId: F:XRTK.Definitions.InputSystem.CursorStateEnum.ObserveHover - fullName: XRTK.Definitions.InputSystem.CursorStateEnum.ObserveHover - nameWithType: CursorStateEnum.ObserveHover -- uid: XRTK.Definitions.InputSystem.CursorStateEnum.Release - name: Release - href: api/XRTK.Definitions.InputSystem.CursorStateEnum.html#XRTK_Definitions_InputSystem_CursorStateEnum_Release - commentId: F:XRTK.Definitions.InputSystem.CursorStateEnum.Release - fullName: XRTK.Definitions.InputSystem.CursorStateEnum.Release - nameWithType: CursorStateEnum.Release -- uid: XRTK.Definitions.InputSystem.CursorStateEnum.Select - name: Select - href: api/XRTK.Definitions.InputSystem.CursorStateEnum.html#XRTK_Definitions_InputSystem_CursorStateEnum_Select - commentId: F:XRTK.Definitions.InputSystem.CursorStateEnum.Select - fullName: XRTK.Definitions.InputSystem.CursorStateEnum.Select - nameWithType: CursorStateEnum.Select -- uid: XRTK.Definitions.InputSystem.InputActionEventPair - name: InputActionEventPair - href: api/XRTK.Definitions.InputSystem.InputActionEventPair.html - commentId: T:XRTK.Definitions.InputSystem.InputActionEventPair - fullName: XRTK.Definitions.InputSystem.InputActionEventPair - nameWithType: InputActionEventPair -- uid: XRTK.Definitions.InputSystem.InputActionEventPair.InputAction - name: InputAction - href: api/XRTK.Definitions.InputSystem.InputActionEventPair.html#XRTK_Definitions_InputSystem_InputActionEventPair_InputAction - commentId: P:XRTK.Definitions.InputSystem.InputActionEventPair.InputAction - fullName: XRTK.Definitions.InputSystem.InputActionEventPair.InputAction - nameWithType: InputActionEventPair.InputAction -- uid: XRTK.Definitions.InputSystem.InputActionEventPair.InputAction* - name: InputAction - href: api/XRTK.Definitions.InputSystem.InputActionEventPair.html#XRTK_Definitions_InputSystem_InputActionEventPair_InputAction_ - commentId: Overload:XRTK.Definitions.InputSystem.InputActionEventPair.InputAction - isSpec: "True" - fullName: XRTK.Definitions.InputSystem.InputActionEventPair.InputAction - nameWithType: InputActionEventPair.InputAction -- uid: XRTK.Definitions.InputSystem.InputActionEventPair.UnityEvent - name: UnityEvent - href: api/XRTK.Definitions.InputSystem.InputActionEventPair.html#XRTK_Definitions_InputSystem_InputActionEventPair_UnityEvent - commentId: P:XRTK.Definitions.InputSystem.InputActionEventPair.UnityEvent - fullName: XRTK.Definitions.InputSystem.InputActionEventPair.UnityEvent - nameWithType: InputActionEventPair.UnityEvent -- uid: XRTK.Definitions.InputSystem.InputActionEventPair.UnityEvent* - name: UnityEvent - href: api/XRTK.Definitions.InputSystem.InputActionEventPair.html#XRTK_Definitions_InputSystem_InputActionEventPair_UnityEvent_ - commentId: Overload:XRTK.Definitions.InputSystem.InputActionEventPair.UnityEvent - isSpec: "True" - fullName: XRTK.Definitions.InputSystem.InputActionEventPair.UnityEvent - nameWithType: InputActionEventPair.UnityEvent -- uid: XRTK.Definitions.InputSystem.KeywordAndResponse - name: KeywordAndResponse - href: api/XRTK.Definitions.InputSystem.KeywordAndResponse.html - commentId: T:XRTK.Definitions.InputSystem.KeywordAndResponse - fullName: XRTK.Definitions.InputSystem.KeywordAndResponse - nameWithType: KeywordAndResponse -- uid: XRTK.Definitions.InputSystem.KeywordAndResponse.#ctor(System.String,UnityEngine.Events.UnityEvent) - name: KeywordAndResponse(String, UnityEvent) - href: api/XRTK.Definitions.InputSystem.KeywordAndResponse.html#XRTK_Definitions_InputSystem_KeywordAndResponse__ctor_System_String_UnityEngine_Events_UnityEvent_ - commentId: M:XRTK.Definitions.InputSystem.KeywordAndResponse.#ctor(System.String,UnityEngine.Events.UnityEvent) - fullName: XRTK.Definitions.InputSystem.KeywordAndResponse.KeywordAndResponse(System.String, UnityEngine.Events.UnityEvent) - nameWithType: KeywordAndResponse.KeywordAndResponse(String, UnityEvent) -- uid: XRTK.Definitions.InputSystem.KeywordAndResponse.#ctor* - name: KeywordAndResponse - href: api/XRTK.Definitions.InputSystem.KeywordAndResponse.html#XRTK_Definitions_InputSystem_KeywordAndResponse__ctor_ - commentId: Overload:XRTK.Definitions.InputSystem.KeywordAndResponse.#ctor - isSpec: "True" - fullName: XRTK.Definitions.InputSystem.KeywordAndResponse.KeywordAndResponse - nameWithType: KeywordAndResponse.KeywordAndResponse -- uid: XRTK.Definitions.InputSystem.KeywordAndResponse.Keyword - name: Keyword - href: api/XRTK.Definitions.InputSystem.KeywordAndResponse.html#XRTK_Definitions_InputSystem_KeywordAndResponse_Keyword - commentId: P:XRTK.Definitions.InputSystem.KeywordAndResponse.Keyword - fullName: XRTK.Definitions.InputSystem.KeywordAndResponse.Keyword - nameWithType: KeywordAndResponse.Keyword -- uid: XRTK.Definitions.InputSystem.KeywordAndResponse.Keyword* - name: Keyword - href: api/XRTK.Definitions.InputSystem.KeywordAndResponse.html#XRTK_Definitions_InputSystem_KeywordAndResponse_Keyword_ - commentId: Overload:XRTK.Definitions.InputSystem.KeywordAndResponse.Keyword - isSpec: "True" - fullName: XRTK.Definitions.InputSystem.KeywordAndResponse.Keyword - nameWithType: KeywordAndResponse.Keyword -- uid: XRTK.Definitions.InputSystem.KeywordAndResponse.Response - name: Response - href: api/XRTK.Definitions.InputSystem.KeywordAndResponse.html#XRTK_Definitions_InputSystem_KeywordAndResponse_Response - commentId: P:XRTK.Definitions.InputSystem.KeywordAndResponse.Response - fullName: XRTK.Definitions.InputSystem.KeywordAndResponse.Response - nameWithType: KeywordAndResponse.Response -- uid: XRTK.Definitions.InputSystem.KeywordAndResponse.Response* - name: Response - href: api/XRTK.Definitions.InputSystem.KeywordAndResponse.html#XRTK_Definitions_InputSystem_KeywordAndResponse_Response_ - commentId: Overload:XRTK.Definitions.InputSystem.KeywordAndResponse.Response - isSpec: "True" - fullName: XRTK.Definitions.InputSystem.KeywordAndResponse.Response - nameWithType: KeywordAndResponse.Response -- uid: XRTK.Definitions.InputSystem.MixedRealityGestureMapping - name: MixedRealityGestureMapping - href: api/XRTK.Definitions.InputSystem.MixedRealityGestureMapping.html - commentId: T:XRTK.Definitions.InputSystem.MixedRealityGestureMapping - fullName: XRTK.Definitions.InputSystem.MixedRealityGestureMapping - nameWithType: MixedRealityGestureMapping -- uid: XRTK.Definitions.InputSystem.MixedRealityGestureMapping.#ctor(System.String,XRTK.Definitions.Devices.GestureInputType,XRTK.Definitions.InputSystem.MixedRealityInputAction) - name: MixedRealityGestureMapping(String, GestureInputType, MixedRealityInputAction) - href: api/XRTK.Definitions.InputSystem.MixedRealityGestureMapping.html#XRTK_Definitions_InputSystem_MixedRealityGestureMapping__ctor_System_String_XRTK_Definitions_Devices_GestureInputType_XRTK_Definitions_InputSystem_MixedRealityInputAction_ - commentId: M:XRTK.Definitions.InputSystem.MixedRealityGestureMapping.#ctor(System.String,XRTK.Definitions.Devices.GestureInputType,XRTK.Definitions.InputSystem.MixedRealityInputAction) - fullName: XRTK.Definitions.InputSystem.MixedRealityGestureMapping.MixedRealityGestureMapping(System.String, XRTK.Definitions.Devices.GestureInputType, XRTK.Definitions.InputSystem.MixedRealityInputAction) - nameWithType: MixedRealityGestureMapping.MixedRealityGestureMapping(String, GestureInputType, MixedRealityInputAction) -- uid: XRTK.Definitions.InputSystem.MixedRealityGestureMapping.#ctor* - name: MixedRealityGestureMapping - href: api/XRTK.Definitions.InputSystem.MixedRealityGestureMapping.html#XRTK_Definitions_InputSystem_MixedRealityGestureMapping__ctor_ - commentId: Overload:XRTK.Definitions.InputSystem.MixedRealityGestureMapping.#ctor - isSpec: "True" - fullName: XRTK.Definitions.InputSystem.MixedRealityGestureMapping.MixedRealityGestureMapping - nameWithType: MixedRealityGestureMapping.MixedRealityGestureMapping -- uid: XRTK.Definitions.InputSystem.MixedRealityGestureMapping.Action - name: Action - href: api/XRTK.Definitions.InputSystem.MixedRealityGestureMapping.html#XRTK_Definitions_InputSystem_MixedRealityGestureMapping_Action - commentId: P:XRTK.Definitions.InputSystem.MixedRealityGestureMapping.Action - fullName: XRTK.Definitions.InputSystem.MixedRealityGestureMapping.Action - nameWithType: MixedRealityGestureMapping.Action -- uid: XRTK.Definitions.InputSystem.MixedRealityGestureMapping.Action* - name: Action - href: api/XRTK.Definitions.InputSystem.MixedRealityGestureMapping.html#XRTK_Definitions_InputSystem_MixedRealityGestureMapping_Action_ - commentId: Overload:XRTK.Definitions.InputSystem.MixedRealityGestureMapping.Action - isSpec: "True" - fullName: XRTK.Definitions.InputSystem.MixedRealityGestureMapping.Action - nameWithType: MixedRealityGestureMapping.Action -- uid: XRTK.Definitions.InputSystem.MixedRealityGestureMapping.Description - name: Description - href: api/XRTK.Definitions.InputSystem.MixedRealityGestureMapping.html#XRTK_Definitions_InputSystem_MixedRealityGestureMapping_Description - commentId: P:XRTK.Definitions.InputSystem.MixedRealityGestureMapping.Description - fullName: XRTK.Definitions.InputSystem.MixedRealityGestureMapping.Description - nameWithType: MixedRealityGestureMapping.Description -- uid: XRTK.Definitions.InputSystem.MixedRealityGestureMapping.Description* - name: Description - href: api/XRTK.Definitions.InputSystem.MixedRealityGestureMapping.html#XRTK_Definitions_InputSystem_MixedRealityGestureMapping_Description_ - commentId: Overload:XRTK.Definitions.InputSystem.MixedRealityGestureMapping.Description - isSpec: "True" - fullName: XRTK.Definitions.InputSystem.MixedRealityGestureMapping.Description - nameWithType: MixedRealityGestureMapping.Description -- uid: XRTK.Definitions.InputSystem.MixedRealityGestureMapping.GestureType - name: GestureType - href: api/XRTK.Definitions.InputSystem.MixedRealityGestureMapping.html#XRTK_Definitions_InputSystem_MixedRealityGestureMapping_GestureType - commentId: P:XRTK.Definitions.InputSystem.MixedRealityGestureMapping.GestureType - fullName: XRTK.Definitions.InputSystem.MixedRealityGestureMapping.GestureType - nameWithType: MixedRealityGestureMapping.GestureType -- uid: XRTK.Definitions.InputSystem.MixedRealityGestureMapping.GestureType* - name: GestureType - href: api/XRTK.Definitions.InputSystem.MixedRealityGestureMapping.html#XRTK_Definitions_InputSystem_MixedRealityGestureMapping_GestureType_ - commentId: Overload:XRTK.Definitions.InputSystem.MixedRealityGestureMapping.GestureType - isSpec: "True" - fullName: XRTK.Definitions.InputSystem.MixedRealityGestureMapping.GestureType - nameWithType: MixedRealityGestureMapping.GestureType -- uid: XRTK.Definitions.InputSystem.MixedRealityGesturesProfile - name: MixedRealityGesturesProfile - href: api/XRTK.Definitions.InputSystem.MixedRealityGesturesProfile.html - commentId: T:XRTK.Definitions.InputSystem.MixedRealityGesturesProfile - fullName: XRTK.Definitions.InputSystem.MixedRealityGesturesProfile - nameWithType: MixedRealityGesturesProfile -- uid: XRTK.Definitions.InputSystem.MixedRealityGesturesProfile.Gestures - name: Gestures - href: api/XRTK.Definitions.InputSystem.MixedRealityGesturesProfile.html#XRTK_Definitions_InputSystem_MixedRealityGesturesProfile_Gestures - commentId: P:XRTK.Definitions.InputSystem.MixedRealityGesturesProfile.Gestures - fullName: XRTK.Definitions.InputSystem.MixedRealityGesturesProfile.Gestures - nameWithType: MixedRealityGesturesProfile.Gestures -- uid: XRTK.Definitions.InputSystem.MixedRealityGesturesProfile.Gestures* - name: Gestures - href: api/XRTK.Definitions.InputSystem.MixedRealityGesturesProfile.html#XRTK_Definitions_InputSystem_MixedRealityGesturesProfile_Gestures_ - commentId: Overload:XRTK.Definitions.InputSystem.MixedRealityGesturesProfile.Gestures - isSpec: "True" - fullName: XRTK.Definitions.InputSystem.MixedRealityGesturesProfile.Gestures - nameWithType: MixedRealityGesturesProfile.Gestures -- uid: XRTK.Definitions.InputSystem.MixedRealityInputAction - name: MixedRealityInputAction - href: api/XRTK.Definitions.InputSystem.MixedRealityInputAction.html - commentId: T:XRTK.Definitions.InputSystem.MixedRealityInputAction - fullName: XRTK.Definitions.InputSystem.MixedRealityInputAction - nameWithType: MixedRealityInputAction -- uid: XRTK.Definitions.InputSystem.MixedRealityInputAction.#ctor(System.Guid,System.UInt32,System.String,XRTK.Definitions.Utilities.AxisType) - name: MixedRealityInputAction(Guid, UInt32, String, AxisType) - href: api/XRTK.Definitions.InputSystem.MixedRealityInputAction.html#XRTK_Definitions_InputSystem_MixedRealityInputAction__ctor_System_Guid_System_UInt32_System_String_XRTK_Definitions_Utilities_AxisType_ - commentId: M:XRTK.Definitions.InputSystem.MixedRealityInputAction.#ctor(System.Guid,System.UInt32,System.String,XRTK.Definitions.Utilities.AxisType) - fullName: XRTK.Definitions.InputSystem.MixedRealityInputAction.MixedRealityInputAction(System.Guid, System.UInt32, System.String, XRTK.Definitions.Utilities.AxisType) - nameWithType: MixedRealityInputAction.MixedRealityInputAction(Guid, UInt32, String, AxisType) -- uid: XRTK.Definitions.InputSystem.MixedRealityInputAction.#ctor(System.UInt32,System.String,XRTK.Definitions.Utilities.AxisType) - name: MixedRealityInputAction(UInt32, String, AxisType) - href: api/XRTK.Definitions.InputSystem.MixedRealityInputAction.html#XRTK_Definitions_InputSystem_MixedRealityInputAction__ctor_System_UInt32_System_String_XRTK_Definitions_Utilities_AxisType_ - commentId: M:XRTK.Definitions.InputSystem.MixedRealityInputAction.#ctor(System.UInt32,System.String,XRTK.Definitions.Utilities.AxisType) - fullName: XRTK.Definitions.InputSystem.MixedRealityInputAction.MixedRealityInputAction(System.UInt32, System.String, XRTK.Definitions.Utilities.AxisType) - nameWithType: MixedRealityInputAction.MixedRealityInputAction(UInt32, String, AxisType) -- uid: XRTK.Definitions.InputSystem.MixedRealityInputAction.#ctor* - name: MixedRealityInputAction - href: api/XRTK.Definitions.InputSystem.MixedRealityInputAction.html#XRTK_Definitions_InputSystem_MixedRealityInputAction__ctor_ - commentId: Overload:XRTK.Definitions.InputSystem.MixedRealityInputAction.#ctor - isSpec: "True" - fullName: XRTK.Definitions.InputSystem.MixedRealityInputAction.MixedRealityInputAction - nameWithType: MixedRealityInputAction.MixedRealityInputAction -- uid: XRTK.Definitions.InputSystem.MixedRealityInputAction.AxisConstraint - name: AxisConstraint - href: api/XRTK.Definitions.InputSystem.MixedRealityInputAction.html#XRTK_Definitions_InputSystem_MixedRealityInputAction_AxisConstraint - commentId: P:XRTK.Definitions.InputSystem.MixedRealityInputAction.AxisConstraint - fullName: XRTK.Definitions.InputSystem.MixedRealityInputAction.AxisConstraint - nameWithType: MixedRealityInputAction.AxisConstraint -- uid: XRTK.Definitions.InputSystem.MixedRealityInputAction.AxisConstraint* - name: AxisConstraint - href: api/XRTK.Definitions.InputSystem.MixedRealityInputAction.html#XRTK_Definitions_InputSystem_MixedRealityInputAction_AxisConstraint_ - commentId: Overload:XRTK.Definitions.InputSystem.MixedRealityInputAction.AxisConstraint - isSpec: "True" - fullName: XRTK.Definitions.InputSystem.MixedRealityInputAction.AxisConstraint - nameWithType: MixedRealityInputAction.AxisConstraint -- uid: XRTK.Definitions.InputSystem.MixedRealityInputAction.Description - name: Description - href: api/XRTK.Definitions.InputSystem.MixedRealityInputAction.html#XRTK_Definitions_InputSystem_MixedRealityInputAction_Description - commentId: P:XRTK.Definitions.InputSystem.MixedRealityInputAction.Description - fullName: XRTK.Definitions.InputSystem.MixedRealityInputAction.Description - nameWithType: MixedRealityInputAction.Description -- uid: XRTK.Definitions.InputSystem.MixedRealityInputAction.Description* - name: Description - href: api/XRTK.Definitions.InputSystem.MixedRealityInputAction.html#XRTK_Definitions_InputSystem_MixedRealityInputAction_Description_ - commentId: Overload:XRTK.Definitions.InputSystem.MixedRealityInputAction.Description - isSpec: "True" - fullName: XRTK.Definitions.InputSystem.MixedRealityInputAction.Description - nameWithType: MixedRealityInputAction.Description -- uid: XRTK.Definitions.InputSystem.MixedRealityInputAction.Equals(System.Object) - name: Equals(Object) - href: api/XRTK.Definitions.InputSystem.MixedRealityInputAction.html#XRTK_Definitions_InputSystem_MixedRealityInputAction_Equals_System_Object_ - commentId: M:XRTK.Definitions.InputSystem.MixedRealityInputAction.Equals(System.Object) - fullName: XRTK.Definitions.InputSystem.MixedRealityInputAction.Equals(System.Object) - nameWithType: MixedRealityInputAction.Equals(Object) -- uid: XRTK.Definitions.InputSystem.MixedRealityInputAction.Equals(XRTK.Definitions.InputSystem.MixedRealityInputAction) - name: Equals(MixedRealityInputAction) - href: api/XRTK.Definitions.InputSystem.MixedRealityInputAction.html#XRTK_Definitions_InputSystem_MixedRealityInputAction_Equals_XRTK_Definitions_InputSystem_MixedRealityInputAction_ - commentId: M:XRTK.Definitions.InputSystem.MixedRealityInputAction.Equals(XRTK.Definitions.InputSystem.MixedRealityInputAction) - fullName: XRTK.Definitions.InputSystem.MixedRealityInputAction.Equals(XRTK.Definitions.InputSystem.MixedRealityInputAction) - nameWithType: MixedRealityInputAction.Equals(MixedRealityInputAction) -- uid: XRTK.Definitions.InputSystem.MixedRealityInputAction.Equals* - name: Equals - href: api/XRTK.Definitions.InputSystem.MixedRealityInputAction.html#XRTK_Definitions_InputSystem_MixedRealityInputAction_Equals_ - commentId: Overload:XRTK.Definitions.InputSystem.MixedRealityInputAction.Equals - isSpec: "True" - fullName: XRTK.Definitions.InputSystem.MixedRealityInputAction.Equals - nameWithType: MixedRealityInputAction.Equals -- uid: XRTK.Definitions.InputSystem.MixedRealityInputAction.GetHashCode - name: GetHashCode() - href: api/XRTK.Definitions.InputSystem.MixedRealityInputAction.html#XRTK_Definitions_InputSystem_MixedRealityInputAction_GetHashCode - commentId: M:XRTK.Definitions.InputSystem.MixedRealityInputAction.GetHashCode - fullName: XRTK.Definitions.InputSystem.MixedRealityInputAction.GetHashCode() - nameWithType: MixedRealityInputAction.GetHashCode() -- uid: XRTK.Definitions.InputSystem.MixedRealityInputAction.GetHashCode* - name: GetHashCode - href: api/XRTK.Definitions.InputSystem.MixedRealityInputAction.html#XRTK_Definitions_InputSystem_MixedRealityInputAction_GetHashCode_ - commentId: Overload:XRTK.Definitions.InputSystem.MixedRealityInputAction.GetHashCode - isSpec: "True" - fullName: XRTK.Definitions.InputSystem.MixedRealityInputAction.GetHashCode - nameWithType: MixedRealityInputAction.GetHashCode -- uid: XRTK.Definitions.InputSystem.MixedRealityInputAction.Id - name: Id - href: api/XRTK.Definitions.InputSystem.MixedRealityInputAction.html#XRTK_Definitions_InputSystem_MixedRealityInputAction_Id - commentId: P:XRTK.Definitions.InputSystem.MixedRealityInputAction.Id - fullName: XRTK.Definitions.InputSystem.MixedRealityInputAction.Id - nameWithType: MixedRealityInputAction.Id -- uid: XRTK.Definitions.InputSystem.MixedRealityInputAction.Id* - name: Id - href: api/XRTK.Definitions.InputSystem.MixedRealityInputAction.html#XRTK_Definitions_InputSystem_MixedRealityInputAction_Id_ - commentId: Overload:XRTK.Definitions.InputSystem.MixedRealityInputAction.Id - isSpec: "True" - fullName: XRTK.Definitions.InputSystem.MixedRealityInputAction.Id - nameWithType: MixedRealityInputAction.Id -- uid: XRTK.Definitions.InputSystem.MixedRealityInputAction.None - name: None - href: api/XRTK.Definitions.InputSystem.MixedRealityInputAction.html#XRTK_Definitions_InputSystem_MixedRealityInputAction_None - commentId: F:XRTK.Definitions.InputSystem.MixedRealityInputAction.None - fullName: XRTK.Definitions.InputSystem.MixedRealityInputAction.None - nameWithType: MixedRealityInputAction.None -- uid: XRTK.Definitions.InputSystem.MixedRealityInputAction.OnAfterDeserialize - name: OnAfterDeserialize() - href: api/XRTK.Definitions.InputSystem.MixedRealityInputAction.html#XRTK_Definitions_InputSystem_MixedRealityInputAction_OnAfterDeserialize - commentId: M:XRTK.Definitions.InputSystem.MixedRealityInputAction.OnAfterDeserialize - fullName: XRTK.Definitions.InputSystem.MixedRealityInputAction.OnAfterDeserialize() - nameWithType: MixedRealityInputAction.OnAfterDeserialize() -- uid: XRTK.Definitions.InputSystem.MixedRealityInputAction.OnAfterDeserialize* - name: OnAfterDeserialize - href: api/XRTK.Definitions.InputSystem.MixedRealityInputAction.html#XRTK_Definitions_InputSystem_MixedRealityInputAction_OnAfterDeserialize_ - commentId: Overload:XRTK.Definitions.InputSystem.MixedRealityInputAction.OnAfterDeserialize - isSpec: "True" - fullName: XRTK.Definitions.InputSystem.MixedRealityInputAction.OnAfterDeserialize - nameWithType: MixedRealityInputAction.OnAfterDeserialize -- uid: XRTK.Definitions.InputSystem.MixedRealityInputAction.OnBeforeSerialize - name: OnBeforeSerialize() - href: api/XRTK.Definitions.InputSystem.MixedRealityInputAction.html#XRTK_Definitions_InputSystem_MixedRealityInputAction_OnBeforeSerialize - commentId: M:XRTK.Definitions.InputSystem.MixedRealityInputAction.OnBeforeSerialize - fullName: XRTK.Definitions.InputSystem.MixedRealityInputAction.OnBeforeSerialize() - nameWithType: MixedRealityInputAction.OnBeforeSerialize() -- uid: XRTK.Definitions.InputSystem.MixedRealityInputAction.OnBeforeSerialize* - name: OnBeforeSerialize - href: api/XRTK.Definitions.InputSystem.MixedRealityInputAction.html#XRTK_Definitions_InputSystem_MixedRealityInputAction_OnBeforeSerialize_ - commentId: Overload:XRTK.Definitions.InputSystem.MixedRealityInputAction.OnBeforeSerialize - isSpec: "True" - fullName: XRTK.Definitions.InputSystem.MixedRealityInputAction.OnBeforeSerialize - nameWithType: MixedRealityInputAction.OnBeforeSerialize -- uid: XRTK.Definitions.InputSystem.MixedRealityInputAction.op_Equality(XRTK.Definitions.InputSystem.MixedRealityInputAction,XRTK.Definitions.InputSystem.MixedRealityInputAction) - name: Equality(MixedRealityInputAction, MixedRealityInputAction) - href: api/XRTK.Definitions.InputSystem.MixedRealityInputAction.html#XRTK_Definitions_InputSystem_MixedRealityInputAction_op_Equality_XRTK_Definitions_InputSystem_MixedRealityInputAction_XRTK_Definitions_InputSystem_MixedRealityInputAction_ - commentId: M:XRTK.Definitions.InputSystem.MixedRealityInputAction.op_Equality(XRTK.Definitions.InputSystem.MixedRealityInputAction,XRTK.Definitions.InputSystem.MixedRealityInputAction) - fullName: XRTK.Definitions.InputSystem.MixedRealityInputAction.Equality(XRTK.Definitions.InputSystem.MixedRealityInputAction, XRTK.Definitions.InputSystem.MixedRealityInputAction) - nameWithType: MixedRealityInputAction.Equality(MixedRealityInputAction, MixedRealityInputAction) -- uid: XRTK.Definitions.InputSystem.MixedRealityInputAction.op_Equality* - name: Equality - href: api/XRTK.Definitions.InputSystem.MixedRealityInputAction.html#XRTK_Definitions_InputSystem_MixedRealityInputAction_op_Equality_ - commentId: Overload:XRTK.Definitions.InputSystem.MixedRealityInputAction.op_Equality - isSpec: "True" - fullName: XRTK.Definitions.InputSystem.MixedRealityInputAction.Equality - nameWithType: MixedRealityInputAction.Equality -- uid: XRTK.Definitions.InputSystem.MixedRealityInputAction.op_Inequality(XRTK.Definitions.InputSystem.MixedRealityInputAction,XRTK.Definitions.InputSystem.MixedRealityInputAction) - name: Inequality(MixedRealityInputAction, MixedRealityInputAction) - href: api/XRTK.Definitions.InputSystem.MixedRealityInputAction.html#XRTK_Definitions_InputSystem_MixedRealityInputAction_op_Inequality_XRTK_Definitions_InputSystem_MixedRealityInputAction_XRTK_Definitions_InputSystem_MixedRealityInputAction_ - commentId: M:XRTK.Definitions.InputSystem.MixedRealityInputAction.op_Inequality(XRTK.Definitions.InputSystem.MixedRealityInputAction,XRTK.Definitions.InputSystem.MixedRealityInputAction) - fullName: XRTK.Definitions.InputSystem.MixedRealityInputAction.Inequality(XRTK.Definitions.InputSystem.MixedRealityInputAction, XRTK.Definitions.InputSystem.MixedRealityInputAction) - nameWithType: MixedRealityInputAction.Inequality(MixedRealityInputAction, MixedRealityInputAction) -- uid: XRTK.Definitions.InputSystem.MixedRealityInputAction.op_Inequality* - name: Inequality - href: api/XRTK.Definitions.InputSystem.MixedRealityInputAction.html#XRTK_Definitions_InputSystem_MixedRealityInputAction_op_Inequality_ - commentId: Overload:XRTK.Definitions.InputSystem.MixedRealityInputAction.op_Inequality - isSpec: "True" - fullName: XRTK.Definitions.InputSystem.MixedRealityInputAction.Inequality - nameWithType: MixedRealityInputAction.Inequality -- uid: XRTK.Definitions.InputSystem.MixedRealityInputAction.ProfileGuid - name: ProfileGuid - href: api/XRTK.Definitions.InputSystem.MixedRealityInputAction.html#XRTK_Definitions_InputSystem_MixedRealityInputAction_ProfileGuid - commentId: P:XRTK.Definitions.InputSystem.MixedRealityInputAction.ProfileGuid - fullName: XRTK.Definitions.InputSystem.MixedRealityInputAction.ProfileGuid - nameWithType: MixedRealityInputAction.ProfileGuid -- uid: XRTK.Definitions.InputSystem.MixedRealityInputAction.ProfileGuid* - name: ProfileGuid - href: api/XRTK.Definitions.InputSystem.MixedRealityInputAction.html#XRTK_Definitions_InputSystem_MixedRealityInputAction_ProfileGuid_ - commentId: Overload:XRTK.Definitions.InputSystem.MixedRealityInputAction.ProfileGuid - isSpec: "True" - fullName: XRTK.Definitions.InputSystem.MixedRealityInputAction.ProfileGuid - nameWithType: MixedRealityInputAction.ProfileGuid -- uid: XRTK.Definitions.InputSystem.MixedRealityInputAction.System#Collections#IEqualityComparer#Equals(System.Object,System.Object) - name: IEqualityComparer.Equals(Object, Object) - href: api/XRTK.Definitions.InputSystem.MixedRealityInputAction.html#XRTK_Definitions_InputSystem_MixedRealityInputAction_System_Collections_IEqualityComparer_Equals_System_Object_System_Object_ - commentId: M:XRTK.Definitions.InputSystem.MixedRealityInputAction.System#Collections#IEqualityComparer#Equals(System.Object,System.Object) - name.vb: System.Collections.IEqualityComparer.Equals(Object, Object) - fullName: XRTK.Definitions.InputSystem.MixedRealityInputAction.System.Collections.IEqualityComparer.Equals(System.Object, System.Object) - nameWithType: MixedRealityInputAction.IEqualityComparer.Equals(Object, Object) - nameWithType.vb: MixedRealityInputAction.System.Collections.IEqualityComparer.Equals(Object, Object) -- uid: XRTK.Definitions.InputSystem.MixedRealityInputAction.System#Collections#IEqualityComparer#Equals* - name: IEqualityComparer.Equals - href: api/XRTK.Definitions.InputSystem.MixedRealityInputAction.html#XRTK_Definitions_InputSystem_MixedRealityInputAction_System_Collections_IEqualityComparer_Equals_ - commentId: Overload:XRTK.Definitions.InputSystem.MixedRealityInputAction.System#Collections#IEqualityComparer#Equals - isSpec: "True" - name.vb: System.Collections.IEqualityComparer.Equals - fullName: XRTK.Definitions.InputSystem.MixedRealityInputAction.System.Collections.IEqualityComparer.Equals - nameWithType: MixedRealityInputAction.IEqualityComparer.Equals - nameWithType.vb: MixedRealityInputAction.System.Collections.IEqualityComparer.Equals -- uid: XRTK.Definitions.InputSystem.MixedRealityInputAction.System#Collections#IEqualityComparer#GetHashCode(System.Object) - name: IEqualityComparer.GetHashCode(Object) - href: api/XRTK.Definitions.InputSystem.MixedRealityInputAction.html#XRTK_Definitions_InputSystem_MixedRealityInputAction_System_Collections_IEqualityComparer_GetHashCode_System_Object_ - commentId: M:XRTK.Definitions.InputSystem.MixedRealityInputAction.System#Collections#IEqualityComparer#GetHashCode(System.Object) - name.vb: System.Collections.IEqualityComparer.GetHashCode(Object) - fullName: XRTK.Definitions.InputSystem.MixedRealityInputAction.System.Collections.IEqualityComparer.GetHashCode(System.Object) - nameWithType: MixedRealityInputAction.IEqualityComparer.GetHashCode(Object) - nameWithType.vb: MixedRealityInputAction.System.Collections.IEqualityComparer.GetHashCode(Object) -- uid: XRTK.Definitions.InputSystem.MixedRealityInputAction.System#Collections#IEqualityComparer#GetHashCode* - name: IEqualityComparer.GetHashCode - href: api/XRTK.Definitions.InputSystem.MixedRealityInputAction.html#XRTK_Definitions_InputSystem_MixedRealityInputAction_System_Collections_IEqualityComparer_GetHashCode_ - commentId: Overload:XRTK.Definitions.InputSystem.MixedRealityInputAction.System#Collections#IEqualityComparer#GetHashCode - isSpec: "True" - name.vb: System.Collections.IEqualityComparer.GetHashCode - fullName: XRTK.Definitions.InputSystem.MixedRealityInputAction.System.Collections.IEqualityComparer.GetHashCode - nameWithType: MixedRealityInputAction.IEqualityComparer.GetHashCode - nameWithType.vb: MixedRealityInputAction.System.Collections.IEqualityComparer.GetHashCode -- uid: XRTK.Definitions.InputSystem.MixedRealityInputActionsProfile - name: MixedRealityInputActionsProfile - href: api/XRTK.Definitions.InputSystem.MixedRealityInputActionsProfile.html - commentId: T:XRTK.Definitions.InputSystem.MixedRealityInputActionsProfile - fullName: XRTK.Definitions.InputSystem.MixedRealityInputActionsProfile - nameWithType: MixedRealityInputActionsProfile -- uid: XRTK.Definitions.InputSystem.MixedRealityInputActionsProfile.InputActions - name: InputActions - href: api/XRTK.Definitions.InputSystem.MixedRealityInputActionsProfile.html#XRTK_Definitions_InputSystem_MixedRealityInputActionsProfile_InputActions - commentId: P:XRTK.Definitions.InputSystem.MixedRealityInputActionsProfile.InputActions - fullName: XRTK.Definitions.InputSystem.MixedRealityInputActionsProfile.InputActions - nameWithType: MixedRealityInputActionsProfile.InputActions -- uid: XRTK.Definitions.InputSystem.MixedRealityInputActionsProfile.InputActions* - name: InputActions - href: api/XRTK.Definitions.InputSystem.MixedRealityInputActionsProfile.html#XRTK_Definitions_InputSystem_MixedRealityInputActionsProfile_InputActions_ - commentId: Overload:XRTK.Definitions.InputSystem.MixedRealityInputActionsProfile.InputActions - isSpec: "True" - fullName: XRTK.Definitions.InputSystem.MixedRealityInputActionsProfile.InputActions - nameWithType: MixedRealityInputActionsProfile.InputActions -- uid: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile - name: MixedRealityInputSystemProfile - href: api/XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.html - commentId: T:XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile - fullName: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile - nameWithType: MixedRealityInputSystemProfile -- uid: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.BoundsMode - name: BoundsMode - href: api/XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.html#XRTK_Definitions_InputSystem_MixedRealityInputSystemProfile_BoundsMode - commentId: P:XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.BoundsMode - fullName: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.BoundsMode - nameWithType: MixedRealityInputSystemProfile.BoundsMode -- uid: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.BoundsMode* - name: BoundsMode - href: api/XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.html#XRTK_Definitions_InputSystem_MixedRealityInputSystemProfile_BoundsMode_ - commentId: Overload:XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.BoundsMode - isSpec: "True" - fullName: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.BoundsMode - nameWithType: MixedRealityInputSystemProfile.BoundsMode -- uid: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.DebugPointingRayColors - name: DebugPointingRayColors - href: api/XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.html#XRTK_Definitions_InputSystem_MixedRealityInputSystemProfile_DebugPointingRayColors - commentId: P:XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.DebugPointingRayColors - fullName: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.DebugPointingRayColors - nameWithType: MixedRealityInputSystemProfile.DebugPointingRayColors -- uid: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.DebugPointingRayColors* - name: DebugPointingRayColors - href: api/XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.html#XRTK_Definitions_InputSystem_MixedRealityInputSystemProfile_DebugPointingRayColors_ - commentId: Overload:XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.DebugPointingRayColors - isSpec: "True" - fullName: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.DebugPointingRayColors - nameWithType: MixedRealityInputSystemProfile.DebugPointingRayColors -- uid: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.DrawDebugPointingRays - name: DrawDebugPointingRays - href: api/XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.html#XRTK_Definitions_InputSystem_MixedRealityInputSystemProfile_DrawDebugPointingRays - commentId: P:XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.DrawDebugPointingRays - fullName: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.DrawDebugPointingRays - nameWithType: MixedRealityInputSystemProfile.DrawDebugPointingRays -- uid: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.DrawDebugPointingRays* - name: DrawDebugPointingRays - href: api/XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.html#XRTK_Definitions_InputSystem_MixedRealityInputSystemProfile_DrawDebugPointingRays_ - commentId: Overload:XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.DrawDebugPointingRays - isSpec: "True" - fullName: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.DrawDebugPointingRays - nameWithType: MixedRealityInputSystemProfile.DrawDebugPointingRays -- uid: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.FocusProviderType - name: FocusProviderType - href: api/XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.html#XRTK_Definitions_InputSystem_MixedRealityInputSystemProfile_FocusProviderType - commentId: P:XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.FocusProviderType - fullName: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.FocusProviderType - nameWithType: MixedRealityInputSystemProfile.FocusProviderType -- uid: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.FocusProviderType* - name: FocusProviderType - href: api/XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.html#XRTK_Definitions_InputSystem_MixedRealityInputSystemProfile_FocusProviderType_ - commentId: Overload:XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.FocusProviderType - isSpec: "True" - fullName: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.FocusProviderType - nameWithType: MixedRealityInputSystemProfile.FocusProviderType -- uid: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.GazeCursorPrefab - name: GazeCursorPrefab - href: api/XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.html#XRTK_Definitions_InputSystem_MixedRealityInputSystemProfile_GazeCursorPrefab - commentId: P:XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.GazeCursorPrefab - fullName: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.GazeCursorPrefab - nameWithType: MixedRealityInputSystemProfile.GazeCursorPrefab -- uid: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.GazeCursorPrefab* - name: GazeCursorPrefab - href: api/XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.html#XRTK_Definitions_InputSystem_MixedRealityInputSystemProfile_GazeCursorPrefab_ - commentId: Overload:XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.GazeCursorPrefab - isSpec: "True" - fullName: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.GazeCursorPrefab - nameWithType: MixedRealityInputSystemProfile.GazeCursorPrefab -- uid: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.GazeProviderType - name: GazeProviderType - href: api/XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.html#XRTK_Definitions_InputSystem_MixedRealityInputSystemProfile_GazeProviderType - commentId: P:XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.GazeProviderType - fullName: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.GazeProviderType - nameWithType: MixedRealityInputSystemProfile.GazeProviderType -- uid: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.GazeProviderType* - name: GazeProviderType - href: api/XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.html#XRTK_Definitions_InputSystem_MixedRealityInputSystemProfile_GazeProviderType_ - commentId: Overload:XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.GazeProviderType - isSpec: "True" - fullName: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.GazeProviderType - nameWithType: MixedRealityInputSystemProfile.GazeProviderType -- uid: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.GesturesProfile - name: GesturesProfile - href: api/XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.html#XRTK_Definitions_InputSystem_MixedRealityInputSystemProfile_GesturesProfile - commentId: P:XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.GesturesProfile - fullName: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.GesturesProfile - nameWithType: MixedRealityInputSystemProfile.GesturesProfile -- uid: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.GesturesProfile* - name: GesturesProfile - href: api/XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.html#XRTK_Definitions_InputSystem_MixedRealityInputSystemProfile_GesturesProfile_ - commentId: Overload:XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.GesturesProfile - isSpec: "True" - fullName: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.GesturesProfile - nameWithType: MixedRealityInputSystemProfile.GesturesProfile -- uid: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.GripThreshold - name: GripThreshold - href: api/XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.html#XRTK_Definitions_InputSystem_MixedRealityInputSystemProfile_GripThreshold - commentId: P:XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.GripThreshold - fullName: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.GripThreshold - nameWithType: MixedRealityInputSystemProfile.GripThreshold -- uid: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.GripThreshold* - name: GripThreshold - href: api/XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.html#XRTK_Definitions_InputSystem_MixedRealityInputSystemProfile_GripThreshold_ - commentId: Overload:XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.GripThreshold - isSpec: "True" - fullName: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.GripThreshold - nameWithType: MixedRealityInputSystemProfile.GripThreshold -- uid: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.HandPhysicsEnabled - name: HandPhysicsEnabled - href: api/XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.html#XRTK_Definitions_InputSystem_MixedRealityInputSystemProfile_HandPhysicsEnabled - commentId: P:XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.HandPhysicsEnabled - fullName: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.HandPhysicsEnabled - nameWithType: MixedRealityInputSystemProfile.HandPhysicsEnabled -- uid: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.HandPhysicsEnabled* - name: HandPhysicsEnabled - href: api/XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.html#XRTK_Definitions_InputSystem_MixedRealityInputSystemProfile_HandPhysicsEnabled_ - commentId: Overload:XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.HandPhysicsEnabled - isSpec: "True" - fullName: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.HandPhysicsEnabled - nameWithType: MixedRealityInputSystemProfile.HandPhysicsEnabled -- uid: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.InputActionsProfile - name: InputActionsProfile - href: api/XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.html#XRTK_Definitions_InputSystem_MixedRealityInputSystemProfile_InputActionsProfile - commentId: P:XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.InputActionsProfile - fullName: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.InputActionsProfile - nameWithType: MixedRealityInputSystemProfile.InputActionsProfile -- uid: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.InputActionsProfile* - name: InputActionsProfile - href: api/XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.html#XRTK_Definitions_InputSystem_MixedRealityInputSystemProfile_InputActionsProfile_ - commentId: Overload:XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.InputActionsProfile - isSpec: "True" - fullName: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.InputActionsProfile - nameWithType: MixedRealityInputSystemProfile.InputActionsProfile -- uid: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.PointerRaycastLayerMasks - name: PointerRaycastLayerMasks - href: api/XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.html#XRTK_Definitions_InputSystem_MixedRealityInputSystemProfile_PointerRaycastLayerMasks - commentId: P:XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.PointerRaycastLayerMasks - fullName: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.PointerRaycastLayerMasks - nameWithType: MixedRealityInputSystemProfile.PointerRaycastLayerMasks -- uid: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.PointerRaycastLayerMasks* - name: PointerRaycastLayerMasks - href: api/XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.html#XRTK_Definitions_InputSystem_MixedRealityInputSystemProfile_PointerRaycastLayerMasks_ - commentId: Overload:XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.PointerRaycastLayerMasks - isSpec: "True" - fullName: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.PointerRaycastLayerMasks - nameWithType: MixedRealityInputSystemProfile.PointerRaycastLayerMasks -- uid: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.PointingExtent - name: PointingExtent - href: api/XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.html#XRTK_Definitions_InputSystem_MixedRealityInputSystemProfile_PointingExtent - commentId: P:XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.PointingExtent - fullName: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.PointingExtent - nameWithType: MixedRealityInputSystemProfile.PointingExtent -- uid: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.PointingExtent* - name: PointingExtent - href: api/XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.html#XRTK_Definitions_InputSystem_MixedRealityInputSystemProfile_PointingExtent_ - commentId: Overload:XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.PointingExtent - isSpec: "True" - fullName: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.PointingExtent - nameWithType: MixedRealityInputSystemProfile.PointingExtent -- uid: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.RenderingMode - name: RenderingMode - href: api/XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.html#XRTK_Definitions_InputSystem_MixedRealityInputSystemProfile_RenderingMode - commentId: P:XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.RenderingMode - fullName: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.RenderingMode - nameWithType: MixedRealityInputSystemProfile.RenderingMode -- uid: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.RenderingMode* - name: RenderingMode - href: api/XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.html#XRTK_Definitions_InputSystem_MixedRealityInputSystemProfile_RenderingMode_ - commentId: Overload:XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.RenderingMode - isSpec: "True" - fullName: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.RenderingMode - nameWithType: MixedRealityInputSystemProfile.RenderingMode -- uid: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.SpeechCommandsProfile - name: SpeechCommandsProfile - href: api/XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.html#XRTK_Definitions_InputSystem_MixedRealityInputSystemProfile_SpeechCommandsProfile - commentId: P:XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.SpeechCommandsProfile - fullName: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.SpeechCommandsProfile - nameWithType: MixedRealityInputSystemProfile.SpeechCommandsProfile -- uid: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.SpeechCommandsProfile* - name: SpeechCommandsProfile - href: api/XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.html#XRTK_Definitions_InputSystem_MixedRealityInputSystemProfile_SpeechCommandsProfile_ - commentId: Overload:XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.SpeechCommandsProfile - isSpec: "True" - fullName: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.SpeechCommandsProfile - nameWithType: MixedRealityInputSystemProfile.SpeechCommandsProfile -- uid: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.TrackedPoses - name: TrackedPoses - href: api/XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.html#XRTK_Definitions_InputSystem_MixedRealityInputSystemProfile_TrackedPoses - commentId: P:XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.TrackedPoses - fullName: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.TrackedPoses - nameWithType: MixedRealityInputSystemProfile.TrackedPoses -- uid: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.TrackedPoses* - name: TrackedPoses - href: api/XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.html#XRTK_Definitions_InputSystem_MixedRealityInputSystemProfile_TrackedPoses_ - commentId: Overload:XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.TrackedPoses - isSpec: "True" - fullName: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.TrackedPoses - nameWithType: MixedRealityInputSystemProfile.TrackedPoses -- uid: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.UseTriggers - name: UseTriggers - href: api/XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.html#XRTK_Definitions_InputSystem_MixedRealityInputSystemProfile_UseTriggers - commentId: P:XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.UseTriggers - fullName: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.UseTriggers - nameWithType: MixedRealityInputSystemProfile.UseTriggers -- uid: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.UseTriggers* - name: UseTriggers - href: api/XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.html#XRTK_Definitions_InputSystem_MixedRealityInputSystemProfile_UseTriggers_ - commentId: Overload:XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.UseTriggers - isSpec: "True" - fullName: XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile.UseTriggers - nameWithType: MixedRealityInputSystemProfile.UseTriggers -- uid: XRTK.Definitions.InputSystem.MixedRealityPointerProfile - name: MixedRealityPointerProfile - href: api/XRTK.Definitions.InputSystem.MixedRealityPointerProfile.html - commentId: T:XRTK.Definitions.InputSystem.MixedRealityPointerProfile - fullName: XRTK.Definitions.InputSystem.MixedRealityPointerProfile - nameWithType: MixedRealityPointerProfile -- uid: XRTK.Definitions.InputSystem.MixedRealityPointerProfile.DebugPointingRayColors - name: DebugPointingRayColors - href: api/XRTK.Definitions.InputSystem.MixedRealityPointerProfile.html#XRTK_Definitions_InputSystem_MixedRealityPointerProfile_DebugPointingRayColors - commentId: P:XRTK.Definitions.InputSystem.MixedRealityPointerProfile.DebugPointingRayColors - fullName: XRTK.Definitions.InputSystem.MixedRealityPointerProfile.DebugPointingRayColors - nameWithType: MixedRealityPointerProfile.DebugPointingRayColors -- uid: XRTK.Definitions.InputSystem.MixedRealityPointerProfile.DebugPointingRayColors* - name: DebugPointingRayColors - href: api/XRTK.Definitions.InputSystem.MixedRealityPointerProfile.html#XRTK_Definitions_InputSystem_MixedRealityPointerProfile_DebugPointingRayColors_ - commentId: Overload:XRTK.Definitions.InputSystem.MixedRealityPointerProfile.DebugPointingRayColors - isSpec: "True" - fullName: XRTK.Definitions.InputSystem.MixedRealityPointerProfile.DebugPointingRayColors - nameWithType: MixedRealityPointerProfile.DebugPointingRayColors -- uid: XRTK.Definitions.InputSystem.MixedRealityPointerProfile.DrawDebugPointingRays - name: DrawDebugPointingRays - href: api/XRTK.Definitions.InputSystem.MixedRealityPointerProfile.html#XRTK_Definitions_InputSystem_MixedRealityPointerProfile_DrawDebugPointingRays - commentId: P:XRTK.Definitions.InputSystem.MixedRealityPointerProfile.DrawDebugPointingRays - fullName: XRTK.Definitions.InputSystem.MixedRealityPointerProfile.DrawDebugPointingRays - nameWithType: MixedRealityPointerProfile.DrawDebugPointingRays -- uid: XRTK.Definitions.InputSystem.MixedRealityPointerProfile.DrawDebugPointingRays* - name: DrawDebugPointingRays - href: api/XRTK.Definitions.InputSystem.MixedRealityPointerProfile.html#XRTK_Definitions_InputSystem_MixedRealityPointerProfile_DrawDebugPointingRays_ - commentId: Overload:XRTK.Definitions.InputSystem.MixedRealityPointerProfile.DrawDebugPointingRays - isSpec: "True" - fullName: XRTK.Definitions.InputSystem.MixedRealityPointerProfile.DrawDebugPointingRays - nameWithType: MixedRealityPointerProfile.DrawDebugPointingRays -- uid: XRTK.Definitions.InputSystem.MixedRealityPointerProfile.PointerPrefab - name: PointerPrefab - href: api/XRTK.Definitions.InputSystem.MixedRealityPointerProfile.html#XRTK_Definitions_InputSystem_MixedRealityPointerProfile_PointerPrefab - commentId: P:XRTK.Definitions.InputSystem.MixedRealityPointerProfile.PointerPrefab - fullName: XRTK.Definitions.InputSystem.MixedRealityPointerProfile.PointerPrefab - nameWithType: MixedRealityPointerProfile.PointerPrefab -- uid: XRTK.Definitions.InputSystem.MixedRealityPointerProfile.PointerPrefab* - name: PointerPrefab - href: api/XRTK.Definitions.InputSystem.MixedRealityPointerProfile.html#XRTK_Definitions_InputSystem_MixedRealityPointerProfile_PointerPrefab_ - commentId: Overload:XRTK.Definitions.InputSystem.MixedRealityPointerProfile.PointerPrefab - isSpec: "True" - fullName: XRTK.Definitions.InputSystem.MixedRealityPointerProfile.PointerPrefab - nameWithType: MixedRealityPointerProfile.PointerPrefab -- uid: XRTK.Definitions.InputSystem.MixedRealityPointerProfile.PointingExtent - name: PointingExtent - href: api/XRTK.Definitions.InputSystem.MixedRealityPointerProfile.html#XRTK_Definitions_InputSystem_MixedRealityPointerProfile_PointingExtent - commentId: P:XRTK.Definitions.InputSystem.MixedRealityPointerProfile.PointingExtent - fullName: XRTK.Definitions.InputSystem.MixedRealityPointerProfile.PointingExtent - nameWithType: MixedRealityPointerProfile.PointingExtent -- uid: XRTK.Definitions.InputSystem.MixedRealityPointerProfile.PointingExtent* - name: PointingExtent - href: api/XRTK.Definitions.InputSystem.MixedRealityPointerProfile.html#XRTK_Definitions_InputSystem_MixedRealityPointerProfile_PointingExtent_ - commentId: Overload:XRTK.Definitions.InputSystem.MixedRealityPointerProfile.PointingExtent - isSpec: "True" - fullName: XRTK.Definitions.InputSystem.MixedRealityPointerProfile.PointingExtent - nameWithType: MixedRealityPointerProfile.PointingExtent -- uid: XRTK.Definitions.InputSystem.MixedRealityPointerProfile.PointingRaycastLayerMasks - name: PointingRaycastLayerMasks - href: api/XRTK.Definitions.InputSystem.MixedRealityPointerProfile.html#XRTK_Definitions_InputSystem_MixedRealityPointerProfile_PointingRaycastLayerMasks - commentId: P:XRTK.Definitions.InputSystem.MixedRealityPointerProfile.PointingRaycastLayerMasks - fullName: XRTK.Definitions.InputSystem.MixedRealityPointerProfile.PointingRaycastLayerMasks - nameWithType: MixedRealityPointerProfile.PointingRaycastLayerMasks -- uid: XRTK.Definitions.InputSystem.MixedRealityPointerProfile.PointingRaycastLayerMasks* - name: PointingRaycastLayerMasks - href: api/XRTK.Definitions.InputSystem.MixedRealityPointerProfile.html#XRTK_Definitions_InputSystem_MixedRealityPointerProfile_PointingRaycastLayerMasks_ - commentId: Overload:XRTK.Definitions.InputSystem.MixedRealityPointerProfile.PointingRaycastLayerMasks - isSpec: "True" - fullName: XRTK.Definitions.InputSystem.MixedRealityPointerProfile.PointingRaycastLayerMasks - nameWithType: MixedRealityPointerProfile.PointingRaycastLayerMasks -- uid: XRTK.Definitions.InputSystem.MixedRealitySpeechCommandsProfile - name: MixedRealitySpeechCommandsProfile - href: api/XRTK.Definitions.InputSystem.MixedRealitySpeechCommandsProfile.html - commentId: T:XRTK.Definitions.InputSystem.MixedRealitySpeechCommandsProfile - fullName: XRTK.Definitions.InputSystem.MixedRealitySpeechCommandsProfile - nameWithType: MixedRealitySpeechCommandsProfile -- uid: XRTK.Definitions.InputSystem.MixedRealitySpeechCommandsProfile.SpeechCommands - name: SpeechCommands - href: api/XRTK.Definitions.InputSystem.MixedRealitySpeechCommandsProfile.html#XRTK_Definitions_InputSystem_MixedRealitySpeechCommandsProfile_SpeechCommands - commentId: P:XRTK.Definitions.InputSystem.MixedRealitySpeechCommandsProfile.SpeechCommands - fullName: XRTK.Definitions.InputSystem.MixedRealitySpeechCommandsProfile.SpeechCommands - nameWithType: MixedRealitySpeechCommandsProfile.SpeechCommands -- uid: XRTK.Definitions.InputSystem.MixedRealitySpeechCommandsProfile.SpeechCommands* - name: SpeechCommands - href: api/XRTK.Definitions.InputSystem.MixedRealitySpeechCommandsProfile.html#XRTK_Definitions_InputSystem_MixedRealitySpeechCommandsProfile_SpeechCommands_ - commentId: Overload:XRTK.Definitions.InputSystem.MixedRealitySpeechCommandsProfile.SpeechCommands - isSpec: "True" - fullName: XRTK.Definitions.InputSystem.MixedRealitySpeechCommandsProfile.SpeechCommands - nameWithType: MixedRealitySpeechCommandsProfile.SpeechCommands -- uid: XRTK.Definitions.InputSystem.MixedRealitySpeechCommandsProfile.SpeechRecognitionConfidenceLevel - name: SpeechRecognitionConfidenceLevel - href: api/XRTK.Definitions.InputSystem.MixedRealitySpeechCommandsProfile.html#XRTK_Definitions_InputSystem_MixedRealitySpeechCommandsProfile_SpeechRecognitionConfidenceLevel - commentId: P:XRTK.Definitions.InputSystem.MixedRealitySpeechCommandsProfile.SpeechRecognitionConfidenceLevel - fullName: XRTK.Definitions.InputSystem.MixedRealitySpeechCommandsProfile.SpeechRecognitionConfidenceLevel - nameWithType: MixedRealitySpeechCommandsProfile.SpeechRecognitionConfidenceLevel -- uid: XRTK.Definitions.InputSystem.MixedRealitySpeechCommandsProfile.SpeechRecognitionConfidenceLevel* - name: SpeechRecognitionConfidenceLevel - href: api/XRTK.Definitions.InputSystem.MixedRealitySpeechCommandsProfile.html#XRTK_Definitions_InputSystem_MixedRealitySpeechCommandsProfile_SpeechRecognitionConfidenceLevel_ - commentId: Overload:XRTK.Definitions.InputSystem.MixedRealitySpeechCommandsProfile.SpeechRecognitionConfidenceLevel - isSpec: "True" - fullName: XRTK.Definitions.InputSystem.MixedRealitySpeechCommandsProfile.SpeechRecognitionConfidenceLevel - nameWithType: MixedRealitySpeechCommandsProfile.SpeechRecognitionConfidenceLevel -- uid: XRTK.Definitions.InputSystem.MixedRealitySpeechCommandsProfile.SpeechRecognizerStartBehavior - name: SpeechRecognizerStartBehavior - href: api/XRTK.Definitions.InputSystem.MixedRealitySpeechCommandsProfile.html#XRTK_Definitions_InputSystem_MixedRealitySpeechCommandsProfile_SpeechRecognizerStartBehavior - commentId: P:XRTK.Definitions.InputSystem.MixedRealitySpeechCommandsProfile.SpeechRecognizerStartBehavior - fullName: XRTK.Definitions.InputSystem.MixedRealitySpeechCommandsProfile.SpeechRecognizerStartBehavior - nameWithType: MixedRealitySpeechCommandsProfile.SpeechRecognizerStartBehavior -- uid: XRTK.Definitions.InputSystem.MixedRealitySpeechCommandsProfile.SpeechRecognizerStartBehavior* - name: SpeechRecognizerStartBehavior - href: api/XRTK.Definitions.InputSystem.MixedRealitySpeechCommandsProfile.html#XRTK_Definitions_InputSystem_MixedRealitySpeechCommandsProfile_SpeechRecognizerStartBehavior_ - commentId: Overload:XRTK.Definitions.InputSystem.MixedRealitySpeechCommandsProfile.SpeechRecognizerStartBehavior - isSpec: "True" - fullName: XRTK.Definitions.InputSystem.MixedRealitySpeechCommandsProfile.SpeechRecognizerStartBehavior - nameWithType: MixedRealitySpeechCommandsProfile.SpeechRecognizerStartBehavior -- uid: XRTK.Definitions.InputSystem.SpeechCommands - name: SpeechCommands - href: api/XRTK.Definitions.InputSystem.SpeechCommands.html - commentId: T:XRTK.Definitions.InputSystem.SpeechCommands - fullName: XRTK.Definitions.InputSystem.SpeechCommands - nameWithType: SpeechCommands -- uid: XRTK.Definitions.InputSystem.SpeechCommands.#ctor(System.String,UnityEngine.KeyCode,XRTK.Definitions.InputSystem.MixedRealityInputAction) - name: SpeechCommands(String, KeyCode, MixedRealityInputAction) - href: api/XRTK.Definitions.InputSystem.SpeechCommands.html#XRTK_Definitions_InputSystem_SpeechCommands__ctor_System_String_UnityEngine_KeyCode_XRTK_Definitions_InputSystem_MixedRealityInputAction_ - commentId: M:XRTK.Definitions.InputSystem.SpeechCommands.#ctor(System.String,UnityEngine.KeyCode,XRTK.Definitions.InputSystem.MixedRealityInputAction) - fullName: XRTK.Definitions.InputSystem.SpeechCommands.SpeechCommands(System.String, UnityEngine.KeyCode, XRTK.Definitions.InputSystem.MixedRealityInputAction) - nameWithType: SpeechCommands.SpeechCommands(String, KeyCode, MixedRealityInputAction) -- uid: XRTK.Definitions.InputSystem.SpeechCommands.#ctor* - name: SpeechCommands - href: api/XRTK.Definitions.InputSystem.SpeechCommands.html#XRTK_Definitions_InputSystem_SpeechCommands__ctor_ - commentId: Overload:XRTK.Definitions.InputSystem.SpeechCommands.#ctor - isSpec: "True" - fullName: XRTK.Definitions.InputSystem.SpeechCommands.SpeechCommands - nameWithType: SpeechCommands.SpeechCommands -- uid: XRTK.Definitions.InputSystem.SpeechCommands.Action - name: Action - href: api/XRTK.Definitions.InputSystem.SpeechCommands.html#XRTK_Definitions_InputSystem_SpeechCommands_Action - commentId: P:XRTK.Definitions.InputSystem.SpeechCommands.Action - fullName: XRTK.Definitions.InputSystem.SpeechCommands.Action - nameWithType: SpeechCommands.Action -- uid: XRTK.Definitions.InputSystem.SpeechCommands.Action* - name: Action - href: api/XRTK.Definitions.InputSystem.SpeechCommands.html#XRTK_Definitions_InputSystem_SpeechCommands_Action_ - commentId: Overload:XRTK.Definitions.InputSystem.SpeechCommands.Action - isSpec: "True" - fullName: XRTK.Definitions.InputSystem.SpeechCommands.Action - nameWithType: SpeechCommands.Action -- uid: XRTK.Definitions.InputSystem.SpeechCommands.KeyCode - name: KeyCode - href: api/XRTK.Definitions.InputSystem.SpeechCommands.html#XRTK_Definitions_InputSystem_SpeechCommands_KeyCode - commentId: P:XRTK.Definitions.InputSystem.SpeechCommands.KeyCode - fullName: XRTK.Definitions.InputSystem.SpeechCommands.KeyCode - nameWithType: SpeechCommands.KeyCode -- uid: XRTK.Definitions.InputSystem.SpeechCommands.KeyCode* - name: KeyCode - href: api/XRTK.Definitions.InputSystem.SpeechCommands.html#XRTK_Definitions_InputSystem_SpeechCommands_KeyCode_ - commentId: Overload:XRTK.Definitions.InputSystem.SpeechCommands.KeyCode - isSpec: "True" - fullName: XRTK.Definitions.InputSystem.SpeechCommands.KeyCode - nameWithType: SpeechCommands.KeyCode -- uid: XRTK.Definitions.InputSystem.SpeechCommands.Keyword - name: Keyword - href: api/XRTK.Definitions.InputSystem.SpeechCommands.html#XRTK_Definitions_InputSystem_SpeechCommands_Keyword - commentId: P:XRTK.Definitions.InputSystem.SpeechCommands.Keyword - fullName: XRTK.Definitions.InputSystem.SpeechCommands.Keyword - nameWithType: SpeechCommands.Keyword -- uid: XRTK.Definitions.InputSystem.SpeechCommands.Keyword* - name: Keyword - href: api/XRTK.Definitions.InputSystem.SpeechCommands.html#XRTK_Definitions_InputSystem_SpeechCommands_Keyword_ - commentId: Overload:XRTK.Definitions.InputSystem.SpeechCommands.Keyword - isSpec: "True" - fullName: XRTK.Definitions.InputSystem.SpeechCommands.Keyword - nameWithType: SpeechCommands.Keyword -- uid: XRTK.Definitions.InteractionMode - name: InteractionMode - href: api/XRTK.Definitions.InteractionMode.html - commentId: T:XRTK.Definitions.InteractionMode - fullName: XRTK.Definitions.InteractionMode - nameWithType: InteractionMode -- uid: XRTK.Definitions.InteractionMode.Both - name: Both - href: api/XRTK.Definitions.InteractionMode.html#XRTK_Definitions_InteractionMode_Both - commentId: F:XRTK.Definitions.InteractionMode.Both - fullName: XRTK.Definitions.InteractionMode.Both - nameWithType: InteractionMode.Both -- uid: XRTK.Definitions.InteractionMode.Far - name: Far - href: api/XRTK.Definitions.InteractionMode.html#XRTK_Definitions_InteractionMode_Far - commentId: F:XRTK.Definitions.InteractionMode.Far - fullName: XRTK.Definitions.InteractionMode.Far - nameWithType: InteractionMode.Far -- uid: XRTK.Definitions.InteractionMode.Near - name: Near - href: api/XRTK.Definitions.InteractionMode.html#XRTK_Definitions_InteractionMode_Near - commentId: F:XRTK.Definitions.InteractionMode.Near - fullName: XRTK.Definitions.InteractionMode.Near - nameWithType: InteractionMode.Near -- uid: XRTK.Definitions.Lines - name: XRTK.Definitions.Lines - href: api/XRTK.Definitions.Lines.html - commentId: N:XRTK.Definitions.Lines - fullName: XRTK.Definitions.Lines - nameWithType: XRTK.Definitions.Lines -- uid: XRTK.Definitions.Lines.DistortionMode - name: DistortionMode - href: api/XRTK.Definitions.Lines.DistortionMode.html - commentId: T:XRTK.Definitions.Lines.DistortionMode - fullName: XRTK.Definitions.Lines.DistortionMode - nameWithType: DistortionMode -- uid: XRTK.Definitions.Lines.DistortionMode.NormalizedLength - name: NormalizedLength - href: api/XRTK.Definitions.Lines.DistortionMode.html#XRTK_Definitions_Lines_DistortionMode_NormalizedLength - commentId: F:XRTK.Definitions.Lines.DistortionMode.NormalizedLength - fullName: XRTK.Definitions.Lines.DistortionMode.NormalizedLength - nameWithType: DistortionMode.NormalizedLength -- uid: XRTK.Definitions.Lines.DistortionMode.Uniform - name: Uniform - href: api/XRTK.Definitions.Lines.DistortionMode.html#XRTK_Definitions_Lines_DistortionMode_Uniform - commentId: F:XRTK.Definitions.Lines.DistortionMode.Uniform - fullName: XRTK.Definitions.Lines.DistortionMode.Uniform - nameWithType: DistortionMode.Uniform -- uid: XRTK.Definitions.Lines.InterpolationMode - name: InterpolationMode - href: api/XRTK.Definitions.Lines.InterpolationMode.html - commentId: T:XRTK.Definitions.Lines.InterpolationMode - fullName: XRTK.Definitions.Lines.InterpolationMode - nameWithType: InterpolationMode -- uid: XRTK.Definitions.Lines.InterpolationMode.FromCurve - name: FromCurve - href: api/XRTK.Definitions.Lines.InterpolationMode.html#XRTK_Definitions_Lines_InterpolationMode_FromCurve - commentId: F:XRTK.Definitions.Lines.InterpolationMode.FromCurve - fullName: XRTK.Definitions.Lines.InterpolationMode.FromCurve - nameWithType: InterpolationMode.FromCurve -- uid: XRTK.Definitions.Lines.InterpolationMode.FromLength - name: FromLength - href: api/XRTK.Definitions.Lines.InterpolationMode.html#XRTK_Definitions_Lines_InterpolationMode_FromLength - commentId: F:XRTK.Definitions.Lines.InterpolationMode.FromLength - fullName: XRTK.Definitions.Lines.InterpolationMode.FromLength - nameWithType: InterpolationMode.FromLength -- uid: XRTK.Definitions.Lines.InterpolationMode.FromSteps - name: FromSteps - href: api/XRTK.Definitions.Lines.InterpolationMode.html#XRTK_Definitions_Lines_InterpolationMode_FromSteps - commentId: F:XRTK.Definitions.Lines.InterpolationMode.FromSteps - fullName: XRTK.Definitions.Lines.InterpolationMode.FromSteps - nameWithType: InterpolationMode.FromSteps -- uid: XRTK.Definitions.Lines.InterpolationType - name: InterpolationType - href: api/XRTK.Definitions.Lines.InterpolationType.html - commentId: T:XRTK.Definitions.Lines.InterpolationType - fullName: XRTK.Definitions.Lines.InterpolationType - nameWithType: InterpolationType -- uid: XRTK.Definitions.Lines.InterpolationType.Bezier - name: Bezier - href: api/XRTK.Definitions.Lines.InterpolationType.html#XRTK_Definitions_Lines_InterpolationType_Bezier - commentId: F:XRTK.Definitions.Lines.InterpolationType.Bezier - fullName: XRTK.Definitions.Lines.InterpolationType.Bezier - nameWithType: InterpolationType.Bezier -- uid: XRTK.Definitions.Lines.InterpolationType.CatmullRom - name: CatmullRom - href: api/XRTK.Definitions.Lines.InterpolationType.html#XRTK_Definitions_Lines_InterpolationType_CatmullRom - commentId: F:XRTK.Definitions.Lines.InterpolationType.CatmullRom - fullName: XRTK.Definitions.Lines.InterpolationType.CatmullRom - nameWithType: InterpolationType.CatmullRom -- uid: XRTK.Definitions.Lines.InterpolationType.Hermite - name: Hermite - href: api/XRTK.Definitions.Lines.InterpolationType.html#XRTK_Definitions_Lines_InterpolationType_Hermite - commentId: F:XRTK.Definitions.Lines.InterpolationType.Hermite - fullName: XRTK.Definitions.Lines.InterpolationType.Hermite - nameWithType: InterpolationType.Hermite -- uid: XRTK.Definitions.Lines.LinePointTransformMode - name: LinePointTransformMode - href: api/XRTK.Definitions.Lines.LinePointTransformMode.html - commentId: T:XRTK.Definitions.Lines.LinePointTransformMode - fullName: XRTK.Definitions.Lines.LinePointTransformMode - nameWithType: LinePointTransformMode -- uid: XRTK.Definitions.Lines.LinePointTransformMode.UseMatrix - name: UseMatrix - href: api/XRTK.Definitions.Lines.LinePointTransformMode.html#XRTK_Definitions_Lines_LinePointTransformMode_UseMatrix - commentId: F:XRTK.Definitions.Lines.LinePointTransformMode.UseMatrix - fullName: XRTK.Definitions.Lines.LinePointTransformMode.UseMatrix - nameWithType: LinePointTransformMode.UseMatrix -- uid: XRTK.Definitions.Lines.LinePointTransformMode.UseTransform - name: UseTransform - href: api/XRTK.Definitions.Lines.LinePointTransformMode.html#XRTK_Definitions_Lines_LinePointTransformMode_UseTransform - commentId: F:XRTK.Definitions.Lines.LinePointTransformMode.UseTransform - fullName: XRTK.Definitions.Lines.LinePointTransformMode.UseTransform - nameWithType: LinePointTransformMode.UseTransform -- uid: XRTK.Definitions.Lines.LineRotationMode - name: LineRotationMode - href: api/XRTK.Definitions.Lines.LineRotationMode.html - commentId: T:XRTK.Definitions.Lines.LineRotationMode - fullName: XRTK.Definitions.Lines.LineRotationMode - nameWithType: LineRotationMode -- uid: XRTK.Definitions.Lines.LineRotationMode.None - name: None - href: api/XRTK.Definitions.Lines.LineRotationMode.html#XRTK_Definitions_Lines_LineRotationMode_None - commentId: F:XRTK.Definitions.Lines.LineRotationMode.None - fullName: XRTK.Definitions.Lines.LineRotationMode.None - nameWithType: LineRotationMode.None -- uid: XRTK.Definitions.Lines.LineRotationMode.RelativeToOrigin - name: RelativeToOrigin - href: api/XRTK.Definitions.Lines.LineRotationMode.html#XRTK_Definitions_Lines_LineRotationMode_RelativeToOrigin - commentId: F:XRTK.Definitions.Lines.LineRotationMode.RelativeToOrigin - fullName: XRTK.Definitions.Lines.LineRotationMode.RelativeToOrigin - nameWithType: LineRotationMode.RelativeToOrigin -- uid: XRTK.Definitions.Lines.LineRotationMode.Velocity - name: Velocity - href: api/XRTK.Definitions.Lines.LineRotationMode.html#XRTK_Definitions_Lines_LineRotationMode_Velocity - commentId: F:XRTK.Definitions.Lines.LineRotationMode.Velocity - fullName: XRTK.Definitions.Lines.LineRotationMode.Velocity - nameWithType: LineRotationMode.Velocity -- uid: XRTK.Definitions.Lines.PointDistributionMode - name: PointDistributionMode - href: api/XRTK.Definitions.Lines.PointDistributionMode.html - commentId: T:XRTK.Definitions.Lines.PointDistributionMode - fullName: XRTK.Definitions.Lines.PointDistributionMode - nameWithType: PointDistributionMode -- uid: XRTK.Definitions.Lines.PointDistributionMode.Auto - name: Auto - href: api/XRTK.Definitions.Lines.PointDistributionMode.html#XRTK_Definitions_Lines_PointDistributionMode_Auto - commentId: F:XRTK.Definitions.Lines.PointDistributionMode.Auto - fullName: XRTK.Definitions.Lines.PointDistributionMode.Auto - nameWithType: PointDistributionMode.Auto -- uid: XRTK.Definitions.Lines.PointDistributionMode.DistanceCurveValue - name: DistanceCurveValue - href: api/XRTK.Definitions.Lines.PointDistributionMode.html#XRTK_Definitions_Lines_PointDistributionMode_DistanceCurveValue - commentId: F:XRTK.Definitions.Lines.PointDistributionMode.DistanceCurveValue - fullName: XRTK.Definitions.Lines.PointDistributionMode.DistanceCurveValue - nameWithType: PointDistributionMode.DistanceCurveValue -- uid: XRTK.Definitions.Lines.PointDistributionMode.DistanceSingleValue - name: DistanceSingleValue - href: api/XRTK.Definitions.Lines.PointDistributionMode.html#XRTK_Definitions_Lines_PointDistributionMode_DistanceSingleValue - commentId: F:XRTK.Definitions.Lines.PointDistributionMode.DistanceSingleValue - fullName: XRTK.Definitions.Lines.PointDistributionMode.DistanceSingleValue - nameWithType: PointDistributionMode.DistanceSingleValue -- uid: XRTK.Definitions.Lines.PointDistributionMode.None - name: None - href: api/XRTK.Definitions.Lines.PointDistributionMode.html#XRTK_Definitions_Lines_PointDistributionMode_None - commentId: F:XRTK.Definitions.Lines.PointDistributionMode.None - fullName: XRTK.Definitions.Lines.PointDistributionMode.None - nameWithType: PointDistributionMode.None -- uid: XRTK.Definitions.Lines.StepMode - name: StepMode - href: api/XRTK.Definitions.Lines.StepMode.html - commentId: T:XRTK.Definitions.Lines.StepMode - fullName: XRTK.Definitions.Lines.StepMode - nameWithType: StepMode -- uid: XRTK.Definitions.Lines.StepMode.FromSource - name: FromSource - href: api/XRTK.Definitions.Lines.StepMode.html#XRTK_Definitions_Lines_StepMode_FromSource - commentId: F:XRTK.Definitions.Lines.StepMode.FromSource - fullName: XRTK.Definitions.Lines.StepMode.FromSource - nameWithType: StepMode.FromSource -- uid: XRTK.Definitions.Lines.StepMode.Interpolated - name: Interpolated - href: api/XRTK.Definitions.Lines.StepMode.html#XRTK_Definitions_Lines_StepMode_Interpolated - commentId: F:XRTK.Definitions.Lines.StepMode.Interpolated - fullName: XRTK.Definitions.Lines.StepMode.Interpolated - nameWithType: StepMode.Interpolated -- uid: XRTK.Definitions.MixedRealityPlatformServiceConfigurationProfile - name: MixedRealityPlatformServiceConfigurationProfile - href: api/XRTK.Definitions.MixedRealityPlatformServiceConfigurationProfile.html - commentId: T:XRTK.Definitions.MixedRealityPlatformServiceConfigurationProfile - fullName: XRTK.Definitions.MixedRealityPlatformServiceConfigurationProfile - nameWithType: MixedRealityPlatformServiceConfigurationProfile -- uid: XRTK.Definitions.MixedRealityPlatformServiceConfigurationProfile.Configurations - name: Configurations - href: api/XRTK.Definitions.MixedRealityPlatformServiceConfigurationProfile.html#XRTK_Definitions_MixedRealityPlatformServiceConfigurationProfile_Configurations - commentId: P:XRTK.Definitions.MixedRealityPlatformServiceConfigurationProfile.Configurations - fullName: XRTK.Definitions.MixedRealityPlatformServiceConfigurationProfile.Configurations - nameWithType: MixedRealityPlatformServiceConfigurationProfile.Configurations -- uid: XRTK.Definitions.MixedRealityPlatformServiceConfigurationProfile.Configurations* - name: Configurations - href: api/XRTK.Definitions.MixedRealityPlatformServiceConfigurationProfile.html#XRTK_Definitions_MixedRealityPlatformServiceConfigurationProfile_Configurations_ - commentId: Overload:XRTK.Definitions.MixedRealityPlatformServiceConfigurationProfile.Configurations - isSpec: "True" - fullName: XRTK.Definitions.MixedRealityPlatformServiceConfigurationProfile.Configurations - nameWithType: MixedRealityPlatformServiceConfigurationProfile.Configurations -- uid: XRTK.Definitions.MixedRealityPlatformServiceConfigurationProfile.PlatformEntries - name: PlatformEntries - href: api/XRTK.Definitions.MixedRealityPlatformServiceConfigurationProfile.html#XRTK_Definitions_MixedRealityPlatformServiceConfigurationProfile_PlatformEntries - commentId: P:XRTK.Definitions.MixedRealityPlatformServiceConfigurationProfile.PlatformEntries - fullName: XRTK.Definitions.MixedRealityPlatformServiceConfigurationProfile.PlatformEntries - nameWithType: MixedRealityPlatformServiceConfigurationProfile.PlatformEntries -- uid: XRTK.Definitions.MixedRealityPlatformServiceConfigurationProfile.PlatformEntries* - name: PlatformEntries - href: api/XRTK.Definitions.MixedRealityPlatformServiceConfigurationProfile.html#XRTK_Definitions_MixedRealityPlatformServiceConfigurationProfile_PlatformEntries_ - commentId: Overload:XRTK.Definitions.MixedRealityPlatformServiceConfigurationProfile.PlatformEntries - isSpec: "True" - fullName: XRTK.Definitions.MixedRealityPlatformServiceConfigurationProfile.PlatformEntries - nameWithType: MixedRealityPlatformServiceConfigurationProfile.PlatformEntries -- uid: XRTK.Definitions.MixedRealityRegisteredServiceProvidersProfile - name: MixedRealityRegisteredServiceProvidersProfile - href: api/XRTK.Definitions.MixedRealityRegisteredServiceProvidersProfile.html - commentId: T:XRTK.Definitions.MixedRealityRegisteredServiceProvidersProfile - fullName: XRTK.Definitions.MixedRealityRegisteredServiceProvidersProfile - nameWithType: MixedRealityRegisteredServiceProvidersProfile -- uid: XRTK.Definitions.MixedRealityServiceConfiguration - name: MixedRealityServiceConfiguration - href: api/XRTK.Definitions.MixedRealityServiceConfiguration.html - commentId: T:XRTK.Definitions.MixedRealityServiceConfiguration - fullName: XRTK.Definitions.MixedRealityServiceConfiguration - nameWithType: MixedRealityServiceConfiguration -- uid: XRTK.Definitions.MixedRealityServiceConfiguration.#ctor(XRTK.Definitions.Utilities.SystemType,System.String,System.UInt32,System.Collections.Generic.IReadOnlyList{XRTK.Interfaces.IMixedRealityPlatform},XRTK.Definitions.BaseMixedRealityProfile) - name: MixedRealityServiceConfiguration(SystemType, String, UInt32, IReadOnlyList, BaseMixedRealityProfile) - href: api/XRTK.Definitions.MixedRealityServiceConfiguration.html#XRTK_Definitions_MixedRealityServiceConfiguration__ctor_XRTK_Definitions_Utilities_SystemType_System_String_System_UInt32_System_Collections_Generic_IReadOnlyList_XRTK_Interfaces_IMixedRealityPlatform__XRTK_Definitions_BaseMixedRealityProfile_ - commentId: M:XRTK.Definitions.MixedRealityServiceConfiguration.#ctor(XRTK.Definitions.Utilities.SystemType,System.String,System.UInt32,System.Collections.Generic.IReadOnlyList{XRTK.Interfaces.IMixedRealityPlatform},XRTK.Definitions.BaseMixedRealityProfile) - name.vb: MixedRealityServiceConfiguration(SystemType, String, UInt32, IReadOnlyList(Of IMixedRealityPlatform), BaseMixedRealityProfile) - fullName: XRTK.Definitions.MixedRealityServiceConfiguration.MixedRealityServiceConfiguration(XRTK.Definitions.Utilities.SystemType, System.String, System.UInt32, System.Collections.Generic.IReadOnlyList, XRTK.Definitions.BaseMixedRealityProfile) - fullName.vb: XRTK.Definitions.MixedRealityServiceConfiguration.MixedRealityServiceConfiguration(XRTK.Definitions.Utilities.SystemType, System.String, System.UInt32, System.Collections.Generic.IReadOnlyList(Of XRTK.Interfaces.IMixedRealityPlatform), XRTK.Definitions.BaseMixedRealityProfile) - nameWithType: MixedRealityServiceConfiguration.MixedRealityServiceConfiguration(SystemType, String, UInt32, IReadOnlyList, BaseMixedRealityProfile) - nameWithType.vb: MixedRealityServiceConfiguration.MixedRealityServiceConfiguration(SystemType, String, UInt32, IReadOnlyList(Of IMixedRealityPlatform), BaseMixedRealityProfile) -- uid: XRTK.Definitions.MixedRealityServiceConfiguration.#ctor* - name: MixedRealityServiceConfiguration - href: api/XRTK.Definitions.MixedRealityServiceConfiguration.html#XRTK_Definitions_MixedRealityServiceConfiguration__ctor_ - commentId: Overload:XRTK.Definitions.MixedRealityServiceConfiguration.#ctor - isSpec: "True" - fullName: XRTK.Definitions.MixedRealityServiceConfiguration.MixedRealityServiceConfiguration - nameWithType: MixedRealityServiceConfiguration.MixedRealityServiceConfiguration -- uid: XRTK.Definitions.MixedRealityServiceConfiguration.Enabled - name: Enabled - href: api/XRTK.Definitions.MixedRealityServiceConfiguration.html#XRTK_Definitions_MixedRealityServiceConfiguration_Enabled - commentId: P:XRTK.Definitions.MixedRealityServiceConfiguration.Enabled - fullName: XRTK.Definitions.MixedRealityServiceConfiguration.Enabled - nameWithType: MixedRealityServiceConfiguration.Enabled -- uid: XRTK.Definitions.MixedRealityServiceConfiguration.Enabled* - name: Enabled - href: api/XRTK.Definitions.MixedRealityServiceConfiguration.html#XRTK_Definitions_MixedRealityServiceConfiguration_Enabled_ - commentId: Overload:XRTK.Definitions.MixedRealityServiceConfiguration.Enabled - isSpec: "True" - fullName: XRTK.Definitions.MixedRealityServiceConfiguration.Enabled - nameWithType: MixedRealityServiceConfiguration.Enabled -- uid: XRTK.Definitions.MixedRealityServiceConfiguration.InstancedType - name: InstancedType - href: api/XRTK.Definitions.MixedRealityServiceConfiguration.html#XRTK_Definitions_MixedRealityServiceConfiguration_InstancedType - commentId: P:XRTK.Definitions.MixedRealityServiceConfiguration.InstancedType - fullName: XRTK.Definitions.MixedRealityServiceConfiguration.InstancedType - nameWithType: MixedRealityServiceConfiguration.InstancedType -- uid: XRTK.Definitions.MixedRealityServiceConfiguration.InstancedType* - name: InstancedType - href: api/XRTK.Definitions.MixedRealityServiceConfiguration.html#XRTK_Definitions_MixedRealityServiceConfiguration_InstancedType_ - commentId: Overload:XRTK.Definitions.MixedRealityServiceConfiguration.InstancedType - isSpec: "True" - fullName: XRTK.Definitions.MixedRealityServiceConfiguration.InstancedType - nameWithType: MixedRealityServiceConfiguration.InstancedType -- uid: XRTK.Definitions.MixedRealityServiceConfiguration.Name - name: Name - href: api/XRTK.Definitions.MixedRealityServiceConfiguration.html#XRTK_Definitions_MixedRealityServiceConfiguration_Name - commentId: P:XRTK.Definitions.MixedRealityServiceConfiguration.Name - fullName: XRTK.Definitions.MixedRealityServiceConfiguration.Name - nameWithType: MixedRealityServiceConfiguration.Name -- uid: XRTK.Definitions.MixedRealityServiceConfiguration.Name* - name: Name - href: api/XRTK.Definitions.MixedRealityServiceConfiguration.html#XRTK_Definitions_MixedRealityServiceConfiguration_Name_ - commentId: Overload:XRTK.Definitions.MixedRealityServiceConfiguration.Name - isSpec: "True" - fullName: XRTK.Definitions.MixedRealityServiceConfiguration.Name - nameWithType: MixedRealityServiceConfiguration.Name -- uid: XRTK.Definitions.MixedRealityServiceConfiguration.Priority - name: Priority - href: api/XRTK.Definitions.MixedRealityServiceConfiguration.html#XRTK_Definitions_MixedRealityServiceConfiguration_Priority - commentId: P:XRTK.Definitions.MixedRealityServiceConfiguration.Priority - fullName: XRTK.Definitions.MixedRealityServiceConfiguration.Priority - nameWithType: MixedRealityServiceConfiguration.Priority -- uid: XRTK.Definitions.MixedRealityServiceConfiguration.Priority* - name: Priority - href: api/XRTK.Definitions.MixedRealityServiceConfiguration.html#XRTK_Definitions_MixedRealityServiceConfiguration_Priority_ - commentId: Overload:XRTK.Definitions.MixedRealityServiceConfiguration.Priority - isSpec: "True" - fullName: XRTK.Definitions.MixedRealityServiceConfiguration.Priority - nameWithType: MixedRealityServiceConfiguration.Priority -- uid: XRTK.Definitions.MixedRealityServiceConfiguration.Profile - name: Profile - href: api/XRTK.Definitions.MixedRealityServiceConfiguration.html#XRTK_Definitions_MixedRealityServiceConfiguration_Profile - commentId: P:XRTK.Definitions.MixedRealityServiceConfiguration.Profile - fullName: XRTK.Definitions.MixedRealityServiceConfiguration.Profile - nameWithType: MixedRealityServiceConfiguration.Profile -- uid: XRTK.Definitions.MixedRealityServiceConfiguration.Profile* - name: Profile - href: api/XRTK.Definitions.MixedRealityServiceConfiguration.html#XRTK_Definitions_MixedRealityServiceConfiguration_Profile_ - commentId: Overload:XRTK.Definitions.MixedRealityServiceConfiguration.Profile - isSpec: "True" - fullName: XRTK.Definitions.MixedRealityServiceConfiguration.Profile - nameWithType: MixedRealityServiceConfiguration.Profile -- uid: XRTK.Definitions.MixedRealityServiceConfiguration.RuntimePlatforms - name: RuntimePlatforms - href: api/XRTK.Definitions.MixedRealityServiceConfiguration.html#XRTK_Definitions_MixedRealityServiceConfiguration_RuntimePlatforms - commentId: P:XRTK.Definitions.MixedRealityServiceConfiguration.RuntimePlatforms - fullName: XRTK.Definitions.MixedRealityServiceConfiguration.RuntimePlatforms - nameWithType: MixedRealityServiceConfiguration.RuntimePlatforms -- uid: XRTK.Definitions.MixedRealityServiceConfiguration.RuntimePlatforms* - name: RuntimePlatforms - href: api/XRTK.Definitions.MixedRealityServiceConfiguration.html#XRTK_Definitions_MixedRealityServiceConfiguration_RuntimePlatforms_ - commentId: Overload:XRTK.Definitions.MixedRealityServiceConfiguration.RuntimePlatforms - isSpec: "True" - fullName: XRTK.Definitions.MixedRealityServiceConfiguration.RuntimePlatforms - nameWithType: MixedRealityServiceConfiguration.RuntimePlatforms -- uid: XRTK.Definitions.MixedRealityServiceConfiguration`1 - name: MixedRealityServiceConfiguration - href: api/XRTK.Definitions.MixedRealityServiceConfiguration-1.html - commentId: T:XRTK.Definitions.MixedRealityServiceConfiguration`1 - name.vb: MixedRealityServiceConfiguration(Of T) - fullName: XRTK.Definitions.MixedRealityServiceConfiguration - fullName.vb: XRTK.Definitions.MixedRealityServiceConfiguration(Of T) - nameWithType: MixedRealityServiceConfiguration - nameWithType.vb: MixedRealityServiceConfiguration(Of T) -- uid: XRTK.Definitions.MixedRealityServiceConfiguration`1.#ctor(XRTK.Definitions.Utilities.SystemType,System.String,System.UInt32,System.Collections.Generic.IReadOnlyList{XRTK.Interfaces.IMixedRealityPlatform},XRTK.Definitions.BaseMixedRealityProfile) - name: MixedRealityServiceConfiguration(SystemType, String, UInt32, IReadOnlyList, BaseMixedRealityProfile) - href: api/XRTK.Definitions.MixedRealityServiceConfiguration-1.html#XRTK_Definitions_MixedRealityServiceConfiguration_1__ctor_XRTK_Definitions_Utilities_SystemType_System_String_System_UInt32_System_Collections_Generic_IReadOnlyList_XRTK_Interfaces_IMixedRealityPlatform__XRTK_Definitions_BaseMixedRealityProfile_ - commentId: M:XRTK.Definitions.MixedRealityServiceConfiguration`1.#ctor(XRTK.Definitions.Utilities.SystemType,System.String,System.UInt32,System.Collections.Generic.IReadOnlyList{XRTK.Interfaces.IMixedRealityPlatform},XRTK.Definitions.BaseMixedRealityProfile) - name.vb: MixedRealityServiceConfiguration(SystemType, String, UInt32, IReadOnlyList(Of IMixedRealityPlatform), BaseMixedRealityProfile) - fullName: XRTK.Definitions.MixedRealityServiceConfiguration.MixedRealityServiceConfiguration(XRTK.Definitions.Utilities.SystemType, System.String, System.UInt32, System.Collections.Generic.IReadOnlyList, XRTK.Definitions.BaseMixedRealityProfile) - fullName.vb: XRTK.Definitions.MixedRealityServiceConfiguration(Of T).MixedRealityServiceConfiguration(XRTK.Definitions.Utilities.SystemType, System.String, System.UInt32, System.Collections.Generic.IReadOnlyList(Of XRTK.Interfaces.IMixedRealityPlatform), XRTK.Definitions.BaseMixedRealityProfile) - nameWithType: MixedRealityServiceConfiguration.MixedRealityServiceConfiguration(SystemType, String, UInt32, IReadOnlyList, BaseMixedRealityProfile) - nameWithType.vb: MixedRealityServiceConfiguration(Of T).MixedRealityServiceConfiguration(SystemType, String, UInt32, IReadOnlyList(Of IMixedRealityPlatform), BaseMixedRealityProfile) -- uid: XRTK.Definitions.MixedRealityServiceConfiguration`1.#ctor(XRTK.Interfaces.IMixedRealityServiceConfiguration) - name: MixedRealityServiceConfiguration(IMixedRealityServiceConfiguration) - href: api/XRTK.Definitions.MixedRealityServiceConfiguration-1.html#XRTK_Definitions_MixedRealityServiceConfiguration_1__ctor_XRTK_Interfaces_IMixedRealityServiceConfiguration_ - commentId: M:XRTK.Definitions.MixedRealityServiceConfiguration`1.#ctor(XRTK.Interfaces.IMixedRealityServiceConfiguration) - fullName: XRTK.Definitions.MixedRealityServiceConfiguration.MixedRealityServiceConfiguration(XRTK.Interfaces.IMixedRealityServiceConfiguration) - fullName.vb: XRTK.Definitions.MixedRealityServiceConfiguration(Of T).MixedRealityServiceConfiguration(XRTK.Interfaces.IMixedRealityServiceConfiguration) - nameWithType: MixedRealityServiceConfiguration.MixedRealityServiceConfiguration(IMixedRealityServiceConfiguration) - nameWithType.vb: MixedRealityServiceConfiguration(Of T).MixedRealityServiceConfiguration(IMixedRealityServiceConfiguration) -- uid: XRTK.Definitions.MixedRealityServiceConfiguration`1.#ctor* - name: MixedRealityServiceConfiguration - href: api/XRTK.Definitions.MixedRealityServiceConfiguration-1.html#XRTK_Definitions_MixedRealityServiceConfiguration_1__ctor_ - commentId: Overload:XRTK.Definitions.MixedRealityServiceConfiguration`1.#ctor - isSpec: "True" - fullName: XRTK.Definitions.MixedRealityServiceConfiguration.MixedRealityServiceConfiguration - fullName.vb: XRTK.Definitions.MixedRealityServiceConfiguration(Of T).MixedRealityServiceConfiguration - nameWithType: MixedRealityServiceConfiguration.MixedRealityServiceConfiguration - nameWithType.vb: MixedRealityServiceConfiguration(Of T).MixedRealityServiceConfiguration -- uid: XRTK.Definitions.MixedRealityServiceConfiguration`1.Enabled - name: Enabled - href: api/XRTK.Definitions.MixedRealityServiceConfiguration-1.html#XRTK_Definitions_MixedRealityServiceConfiguration_1_Enabled - commentId: P:XRTK.Definitions.MixedRealityServiceConfiguration`1.Enabled - fullName: XRTK.Definitions.MixedRealityServiceConfiguration.Enabled - fullName.vb: XRTK.Definitions.MixedRealityServiceConfiguration(Of T).Enabled - nameWithType: MixedRealityServiceConfiguration.Enabled - nameWithType.vb: MixedRealityServiceConfiguration(Of T).Enabled -- uid: XRTK.Definitions.MixedRealityServiceConfiguration`1.Enabled* - name: Enabled - href: api/XRTK.Definitions.MixedRealityServiceConfiguration-1.html#XRTK_Definitions_MixedRealityServiceConfiguration_1_Enabled_ - commentId: Overload:XRTK.Definitions.MixedRealityServiceConfiguration`1.Enabled - isSpec: "True" - fullName: XRTK.Definitions.MixedRealityServiceConfiguration.Enabled - fullName.vb: XRTK.Definitions.MixedRealityServiceConfiguration(Of T).Enabled - nameWithType: MixedRealityServiceConfiguration.Enabled - nameWithType.vb: MixedRealityServiceConfiguration(Of T).Enabled -- uid: XRTK.Definitions.MixedRealityToolkitRootProfile - name: MixedRealityToolkitRootProfile - href: api/XRTK.Definitions.MixedRealityToolkitRootProfile.html - commentId: T:XRTK.Definitions.MixedRealityToolkitRootProfile - fullName: XRTK.Definitions.MixedRealityToolkitRootProfile - nameWithType: MixedRealityToolkitRootProfile -- uid: XRTK.Definitions.MixedRealityToolkitRootProfile.RegisteredServiceProvidersProfile - name: RegisteredServiceProvidersProfile - href: api/XRTK.Definitions.MixedRealityToolkitRootProfile.html#XRTK_Definitions_MixedRealityToolkitRootProfile_RegisteredServiceProvidersProfile - commentId: P:XRTK.Definitions.MixedRealityToolkitRootProfile.RegisteredServiceProvidersProfile - fullName: XRTK.Definitions.MixedRealityToolkitRootProfile.RegisteredServiceProvidersProfile - nameWithType: MixedRealityToolkitRootProfile.RegisteredServiceProvidersProfile -- uid: XRTK.Definitions.MixedRealityToolkitRootProfile.RegisteredServiceProvidersProfile* - name: RegisteredServiceProvidersProfile - href: api/XRTK.Definitions.MixedRealityToolkitRootProfile.html#XRTK_Definitions_MixedRealityToolkitRootProfile_RegisteredServiceProvidersProfile_ - commentId: Overload:XRTK.Definitions.MixedRealityToolkitRootProfile.RegisteredServiceProvidersProfile - isSpec: "True" - fullName: XRTK.Definitions.MixedRealityToolkitRootProfile.RegisteredServiceProvidersProfile - nameWithType: MixedRealityToolkitRootProfile.RegisteredServiceProvidersProfile -- uid: XRTK.Definitions.NetworkingSystem - name: XRTK.Definitions.NetworkingSystem - href: api/XRTK.Definitions.NetworkingSystem.html - commentId: N:XRTK.Definitions.NetworkingSystem - fullName: XRTK.Definitions.NetworkingSystem - nameWithType: XRTK.Definitions.NetworkingSystem -- uid: XRTK.Definitions.NetworkingSystem.MixedRealityNetworkSystemProfile - name: MixedRealityNetworkSystemProfile - href: api/XRTK.Definitions.NetworkingSystem.MixedRealityNetworkSystemProfile.html - commentId: T:XRTK.Definitions.NetworkingSystem.MixedRealityNetworkSystemProfile - fullName: XRTK.Definitions.NetworkingSystem.MixedRealityNetworkSystemProfile - nameWithType: MixedRealityNetworkSystemProfile -- uid: XRTK.Definitions.Physics - name: XRTK.Definitions.Physics - href: api/XRTK.Definitions.Physics.html - commentId: N:XRTK.Definitions.Physics - fullName: XRTK.Definitions.Physics - nameWithType: XRTK.Definitions.Physics -- uid: XRTK.Definitions.Physics.ComparableRaycastResult - name: ComparableRaycastResult - href: api/XRTK.Definitions.Physics.ComparableRaycastResult.html - commentId: T:XRTK.Definitions.Physics.ComparableRaycastResult - fullName: XRTK.Definitions.Physics.ComparableRaycastResult - nameWithType: ComparableRaycastResult -- uid: XRTK.Definitions.Physics.ComparableRaycastResult.#ctor(RaycastResult,System.Int32) - name: ComparableRaycastResult(RaycastResult, Int32) - href: api/XRTK.Definitions.Physics.ComparableRaycastResult.html#XRTK_Definitions_Physics_ComparableRaycastResult__ctor_RaycastResult_System_Int32_ - commentId: M:XRTK.Definitions.Physics.ComparableRaycastResult.#ctor(RaycastResult,System.Int32) - fullName: XRTK.Definitions.Physics.ComparableRaycastResult.ComparableRaycastResult(RaycastResult, System.Int32) - nameWithType: ComparableRaycastResult.ComparableRaycastResult(RaycastResult, Int32) -- uid: XRTK.Definitions.Physics.ComparableRaycastResult.#ctor* - name: ComparableRaycastResult - href: api/XRTK.Definitions.Physics.ComparableRaycastResult.html#XRTK_Definitions_Physics_ComparableRaycastResult__ctor_ - commentId: Overload:XRTK.Definitions.Physics.ComparableRaycastResult.#ctor - isSpec: "True" - fullName: XRTK.Definitions.Physics.ComparableRaycastResult.ComparableRaycastResult - nameWithType: ComparableRaycastResult.ComparableRaycastResult -- uid: XRTK.Definitions.Physics.ComparableRaycastResult.LayerMaskIndex - name: LayerMaskIndex - href: api/XRTK.Definitions.Physics.ComparableRaycastResult.html#XRTK_Definitions_Physics_ComparableRaycastResult_LayerMaskIndex - commentId: F:XRTK.Definitions.Physics.ComparableRaycastResult.LayerMaskIndex - fullName: XRTK.Definitions.Physics.ComparableRaycastResult.LayerMaskIndex - nameWithType: ComparableRaycastResult.LayerMaskIndex -- uid: XRTK.Definitions.Physics.ComparableRaycastResult.RaycastResult - name: RaycastResult - href: api/XRTK.Definitions.Physics.ComparableRaycastResult.html#XRTK_Definitions_Physics_ComparableRaycastResult_RaycastResult - commentId: F:XRTK.Definitions.Physics.ComparableRaycastResult.RaycastResult - fullName: XRTK.Definitions.Physics.ComparableRaycastResult.RaycastResult - nameWithType: ComparableRaycastResult.RaycastResult -- uid: XRTK.Definitions.Physics.FocusDetails - name: FocusDetails - href: api/XRTK.Definitions.Physics.FocusDetails.html - commentId: T:XRTK.Definitions.Physics.FocusDetails - fullName: XRTK.Definitions.Physics.FocusDetails - nameWithType: FocusDetails -- uid: XRTK.Definitions.Physics.FocusDetails.EndPoint - name: EndPoint - href: api/XRTK.Definitions.Physics.FocusDetails.html#XRTK_Definitions_Physics_FocusDetails_EndPoint - commentId: P:XRTK.Definitions.Physics.FocusDetails.EndPoint - fullName: XRTK.Definitions.Physics.FocusDetails.EndPoint - nameWithType: FocusDetails.EndPoint -- uid: XRTK.Definitions.Physics.FocusDetails.EndPoint* - name: EndPoint - href: api/XRTK.Definitions.Physics.FocusDetails.html#XRTK_Definitions_Physics_FocusDetails_EndPoint_ - commentId: Overload:XRTK.Definitions.Physics.FocusDetails.EndPoint - isSpec: "True" - fullName: XRTK.Definitions.Physics.FocusDetails.EndPoint - nameWithType: FocusDetails.EndPoint -- uid: XRTK.Definitions.Physics.FocusDetails.EndPointLocalSpace - name: EndPointLocalSpace - href: api/XRTK.Definitions.Physics.FocusDetails.html#XRTK_Definitions_Physics_FocusDetails_EndPointLocalSpace - commentId: P:XRTK.Definitions.Physics.FocusDetails.EndPointLocalSpace - fullName: XRTK.Definitions.Physics.FocusDetails.EndPointLocalSpace - nameWithType: FocusDetails.EndPointLocalSpace -- uid: XRTK.Definitions.Physics.FocusDetails.EndPointLocalSpace* - name: EndPointLocalSpace - href: api/XRTK.Definitions.Physics.FocusDetails.html#XRTK_Definitions_Physics_FocusDetails_EndPointLocalSpace_ - commentId: Overload:XRTK.Definitions.Physics.FocusDetails.EndPointLocalSpace - isSpec: "True" - fullName: XRTK.Definitions.Physics.FocusDetails.EndPointLocalSpace - nameWithType: FocusDetails.EndPointLocalSpace -- uid: XRTK.Definitions.Physics.FocusDetails.HitObject - name: HitObject - href: api/XRTK.Definitions.Physics.FocusDetails.html#XRTK_Definitions_Physics_FocusDetails_HitObject - commentId: P:XRTK.Definitions.Physics.FocusDetails.HitObject - fullName: XRTK.Definitions.Physics.FocusDetails.HitObject - nameWithType: FocusDetails.HitObject -- uid: XRTK.Definitions.Physics.FocusDetails.HitObject* - name: HitObject - href: api/XRTK.Definitions.Physics.FocusDetails.html#XRTK_Definitions_Physics_FocusDetails_HitObject_ - commentId: Overload:XRTK.Definitions.Physics.FocusDetails.HitObject - isSpec: "True" - fullName: XRTK.Definitions.Physics.FocusDetails.HitObject - nameWithType: FocusDetails.HitObject -- uid: XRTK.Definitions.Physics.FocusDetails.LastGraphicsRaycastResult - name: LastGraphicsRaycastResult - href: api/XRTK.Definitions.Physics.FocusDetails.html#XRTK_Definitions_Physics_FocusDetails_LastGraphicsRaycastResult - commentId: P:XRTK.Definitions.Physics.FocusDetails.LastGraphicsRaycastResult - fullName: XRTK.Definitions.Physics.FocusDetails.LastGraphicsRaycastResult - nameWithType: FocusDetails.LastGraphicsRaycastResult -- uid: XRTK.Definitions.Physics.FocusDetails.LastGraphicsRaycastResult* - name: LastGraphicsRaycastResult - href: api/XRTK.Definitions.Physics.FocusDetails.html#XRTK_Definitions_Physics_FocusDetails_LastGraphicsRaycastResult_ - commentId: Overload:XRTK.Definitions.Physics.FocusDetails.LastGraphicsRaycastResult - isSpec: "True" - fullName: XRTK.Definitions.Physics.FocusDetails.LastGraphicsRaycastResult - nameWithType: FocusDetails.LastGraphicsRaycastResult -- uid: XRTK.Definitions.Physics.FocusDetails.LastRaycastHit - name: LastRaycastHit - href: api/XRTK.Definitions.Physics.FocusDetails.html#XRTK_Definitions_Physics_FocusDetails_LastRaycastHit - commentId: P:XRTK.Definitions.Physics.FocusDetails.LastRaycastHit - fullName: XRTK.Definitions.Physics.FocusDetails.LastRaycastHit - nameWithType: FocusDetails.LastRaycastHit -- uid: XRTK.Definitions.Physics.FocusDetails.LastRaycastHit* - name: LastRaycastHit - href: api/XRTK.Definitions.Physics.FocusDetails.html#XRTK_Definitions_Physics_FocusDetails_LastRaycastHit_ - commentId: Overload:XRTK.Definitions.Physics.FocusDetails.LastRaycastHit - isSpec: "True" - fullName: XRTK.Definitions.Physics.FocusDetails.LastRaycastHit - nameWithType: FocusDetails.LastRaycastHit -- uid: XRTK.Definitions.Physics.FocusDetails.Normal - name: Normal - href: api/XRTK.Definitions.Physics.FocusDetails.html#XRTK_Definitions_Physics_FocusDetails_Normal - commentId: P:XRTK.Definitions.Physics.FocusDetails.Normal - fullName: XRTK.Definitions.Physics.FocusDetails.Normal - nameWithType: FocusDetails.Normal -- uid: XRTK.Definitions.Physics.FocusDetails.Normal* - name: Normal - href: api/XRTK.Definitions.Physics.FocusDetails.html#XRTK_Definitions_Physics_FocusDetails_Normal_ - commentId: Overload:XRTK.Definitions.Physics.FocusDetails.Normal - isSpec: "True" - fullName: XRTK.Definitions.Physics.FocusDetails.Normal - nameWithType: FocusDetails.Normal -- uid: XRTK.Definitions.Physics.FocusDetails.NormalLocalSpace - name: NormalLocalSpace - href: api/XRTK.Definitions.Physics.FocusDetails.html#XRTK_Definitions_Physics_FocusDetails_NormalLocalSpace - commentId: P:XRTK.Definitions.Physics.FocusDetails.NormalLocalSpace - fullName: XRTK.Definitions.Physics.FocusDetails.NormalLocalSpace - nameWithType: FocusDetails.NormalLocalSpace -- uid: XRTK.Definitions.Physics.FocusDetails.NormalLocalSpace* - name: NormalLocalSpace - href: api/XRTK.Definitions.Physics.FocusDetails.html#XRTK_Definitions_Physics_FocusDetails_NormalLocalSpace_ - commentId: Overload:XRTK.Definitions.Physics.FocusDetails.NormalLocalSpace - isSpec: "True" - fullName: XRTK.Definitions.Physics.FocusDetails.NormalLocalSpace - nameWithType: FocusDetails.NormalLocalSpace -- uid: XRTK.Definitions.Physics.FocusDetails.RayDistance - name: RayDistance - href: api/XRTK.Definitions.Physics.FocusDetails.html#XRTK_Definitions_Physics_FocusDetails_RayDistance - commentId: P:XRTK.Definitions.Physics.FocusDetails.RayDistance - fullName: XRTK.Definitions.Physics.FocusDetails.RayDistance - nameWithType: FocusDetails.RayDistance -- uid: XRTK.Definitions.Physics.FocusDetails.RayDistance* - name: RayDistance - href: api/XRTK.Definitions.Physics.FocusDetails.html#XRTK_Definitions_Physics_FocusDetails_RayDistance_ - commentId: Overload:XRTK.Definitions.Physics.FocusDetails.RayDistance - isSpec: "True" - fullName: XRTK.Definitions.Physics.FocusDetails.RayDistance - nameWithType: FocusDetails.RayDistance -- uid: XRTK.Definitions.Physics.RaycastMode - name: RaycastMode - href: api/XRTK.Definitions.Physics.RaycastMode.html - commentId: T:XRTK.Definitions.Physics.RaycastMode - fullName: XRTK.Definitions.Physics.RaycastMode - nameWithType: RaycastMode -- uid: XRTK.Definitions.Physics.RaycastMode.Box - name: Box - href: api/XRTK.Definitions.Physics.RaycastMode.html#XRTK_Definitions_Physics_RaycastMode_Box - commentId: F:XRTK.Definitions.Physics.RaycastMode.Box - fullName: XRTK.Definitions.Physics.RaycastMode.Box - nameWithType: RaycastMode.Box -- uid: XRTK.Definitions.Physics.RaycastMode.Simple - name: Simple - href: api/XRTK.Definitions.Physics.RaycastMode.html#XRTK_Definitions_Physics_RaycastMode_Simple - commentId: F:XRTK.Definitions.Physics.RaycastMode.Simple - fullName: XRTK.Definitions.Physics.RaycastMode.Simple - nameWithType: RaycastMode.Simple -- uid: XRTK.Definitions.Physics.RaycastMode.Sphere - name: Sphere - href: api/XRTK.Definitions.Physics.RaycastMode.html#XRTK_Definitions_Physics_RaycastMode_Sphere - commentId: F:XRTK.Definitions.Physics.RaycastMode.Sphere - fullName: XRTK.Definitions.Physics.RaycastMode.Sphere - nameWithType: RaycastMode.Sphere -- uid: XRTK.Definitions.Physics.RayStep - name: RayStep - href: api/XRTK.Definitions.Physics.RayStep.html - commentId: T:XRTK.Definitions.Physics.RayStep - fullName: XRTK.Definitions.Physics.RayStep - nameWithType: RayStep -- uid: XRTK.Definitions.Physics.RayStep.#ctor(UnityEngine.Ray,System.Single) - name: RayStep(Ray, Single) - href: api/XRTK.Definitions.Physics.RayStep.html#XRTK_Definitions_Physics_RayStep__ctor_UnityEngine_Ray_System_Single_ - commentId: M:XRTK.Definitions.Physics.RayStep.#ctor(UnityEngine.Ray,System.Single) - fullName: XRTK.Definitions.Physics.RayStep.RayStep(UnityEngine.Ray, System.Single) - nameWithType: RayStep.RayStep(Ray, Single) -- uid: XRTK.Definitions.Physics.RayStep.#ctor(UnityEngine.Vector3,UnityEngine.Vector3) - name: RayStep(Vector3, Vector3) - href: api/XRTK.Definitions.Physics.RayStep.html#XRTK_Definitions_Physics_RayStep__ctor_UnityEngine_Vector3_UnityEngine_Vector3_ - commentId: M:XRTK.Definitions.Physics.RayStep.#ctor(UnityEngine.Vector3,UnityEngine.Vector3) - fullName: XRTK.Definitions.Physics.RayStep.RayStep(UnityEngine.Vector3, UnityEngine.Vector3) - nameWithType: RayStep.RayStep(Vector3, Vector3) -- uid: XRTK.Definitions.Physics.RayStep.#ctor* - name: RayStep - href: api/XRTK.Definitions.Physics.RayStep.html#XRTK_Definitions_Physics_RayStep__ctor_ - commentId: Overload:XRTK.Definitions.Physics.RayStep.#ctor - isSpec: "True" - fullName: XRTK.Definitions.Physics.RayStep.RayStep - nameWithType: RayStep.RayStep -- uid: XRTK.Definitions.Physics.RayStep.Contains(UnityEngine.Vector3) - name: Contains(Vector3) - href: api/XRTK.Definitions.Physics.RayStep.html#XRTK_Definitions_Physics_RayStep_Contains_UnityEngine_Vector3_ - commentId: M:XRTK.Definitions.Physics.RayStep.Contains(UnityEngine.Vector3) - fullName: XRTK.Definitions.Physics.RayStep.Contains(UnityEngine.Vector3) - nameWithType: RayStep.Contains(Vector3) -- uid: XRTK.Definitions.Physics.RayStep.Contains* - name: Contains - href: api/XRTK.Definitions.Physics.RayStep.html#XRTK_Definitions_Physics_RayStep_Contains_ - commentId: Overload:XRTK.Definitions.Physics.RayStep.Contains - isSpec: "True" - fullName: XRTK.Definitions.Physics.RayStep.Contains - nameWithType: RayStep.Contains -- uid: XRTK.Definitions.Physics.RayStep.CopyRay(UnityEngine.Ray,System.Single) - name: CopyRay(Ray, Single) - href: api/XRTK.Definitions.Physics.RayStep.html#XRTK_Definitions_Physics_RayStep_CopyRay_UnityEngine_Ray_System_Single_ - commentId: M:XRTK.Definitions.Physics.RayStep.CopyRay(UnityEngine.Ray,System.Single) - fullName: XRTK.Definitions.Physics.RayStep.CopyRay(UnityEngine.Ray, System.Single) - nameWithType: RayStep.CopyRay(Ray, Single) -- uid: XRTK.Definitions.Physics.RayStep.CopyRay* - name: CopyRay - href: api/XRTK.Definitions.Physics.RayStep.html#XRTK_Definitions_Physics_RayStep_CopyRay_ - commentId: Overload:XRTK.Definitions.Physics.RayStep.CopyRay - isSpec: "True" - fullName: XRTK.Definitions.Physics.RayStep.CopyRay - nameWithType: RayStep.CopyRay -- uid: XRTK.Definitions.Physics.RayStep.Direction - name: Direction - href: api/XRTK.Definitions.Physics.RayStep.html#XRTK_Definitions_Physics_RayStep_Direction - commentId: P:XRTK.Definitions.Physics.RayStep.Direction - fullName: XRTK.Definitions.Physics.RayStep.Direction - nameWithType: RayStep.Direction -- uid: XRTK.Definitions.Physics.RayStep.Direction* - name: Direction - href: api/XRTK.Definitions.Physics.RayStep.html#XRTK_Definitions_Physics_RayStep_Direction_ - commentId: Overload:XRTK.Definitions.Physics.RayStep.Direction - isSpec: "True" - fullName: XRTK.Definitions.Physics.RayStep.Direction - nameWithType: RayStep.Direction -- uid: XRTK.Definitions.Physics.RayStep.GetDirectionByDistance(XRTK.Definitions.Physics.RayStep[],System.Single) - name: GetDirectionByDistance(RayStep[], Single) - href: api/XRTK.Definitions.Physics.RayStep.html#XRTK_Definitions_Physics_RayStep_GetDirectionByDistance_XRTK_Definitions_Physics_RayStep___System_Single_ - commentId: M:XRTK.Definitions.Physics.RayStep.GetDirectionByDistance(XRTK.Definitions.Physics.RayStep[],System.Single) - name.vb: GetDirectionByDistance(RayStep(), Single) - fullName: XRTK.Definitions.Physics.RayStep.GetDirectionByDistance(XRTK.Definitions.Physics.RayStep[], System.Single) - fullName.vb: XRTK.Definitions.Physics.RayStep.GetDirectionByDistance(XRTK.Definitions.Physics.RayStep(), System.Single) - nameWithType: RayStep.GetDirectionByDistance(RayStep[], Single) - nameWithType.vb: RayStep.GetDirectionByDistance(RayStep(), Single) -- uid: XRTK.Definitions.Physics.RayStep.GetDirectionByDistance* - name: GetDirectionByDistance - href: api/XRTK.Definitions.Physics.RayStep.html#XRTK_Definitions_Physics_RayStep_GetDirectionByDistance_ - commentId: Overload:XRTK.Definitions.Physics.RayStep.GetDirectionByDistance - isSpec: "True" - fullName: XRTK.Definitions.Physics.RayStep.GetDirectionByDistance - nameWithType: RayStep.GetDirectionByDistance -- uid: XRTK.Definitions.Physics.RayStep.GetPoint(System.Single) - name: GetPoint(Single) - href: api/XRTK.Definitions.Physics.RayStep.html#XRTK_Definitions_Physics_RayStep_GetPoint_System_Single_ - commentId: M:XRTK.Definitions.Physics.RayStep.GetPoint(System.Single) - fullName: XRTK.Definitions.Physics.RayStep.GetPoint(System.Single) - nameWithType: RayStep.GetPoint(Single) -- uid: XRTK.Definitions.Physics.RayStep.GetPoint* - name: GetPoint - href: api/XRTK.Definitions.Physics.RayStep.html#XRTK_Definitions_Physics_RayStep_GetPoint_ - commentId: Overload:XRTK.Definitions.Physics.RayStep.GetPoint - isSpec: "True" - fullName: XRTK.Definitions.Physics.RayStep.GetPoint - nameWithType: RayStep.GetPoint -- uid: XRTK.Definitions.Physics.RayStep.GetPointByDistance(XRTK.Definitions.Physics.RayStep[],System.Single) - name: GetPointByDistance(RayStep[], Single) - href: api/XRTK.Definitions.Physics.RayStep.html#XRTK_Definitions_Physics_RayStep_GetPointByDistance_XRTK_Definitions_Physics_RayStep___System_Single_ - commentId: M:XRTK.Definitions.Physics.RayStep.GetPointByDistance(XRTK.Definitions.Physics.RayStep[],System.Single) - name.vb: GetPointByDistance(RayStep(), Single) - fullName: XRTK.Definitions.Physics.RayStep.GetPointByDistance(XRTK.Definitions.Physics.RayStep[], System.Single) - fullName.vb: XRTK.Definitions.Physics.RayStep.GetPointByDistance(XRTK.Definitions.Physics.RayStep(), System.Single) - nameWithType: RayStep.GetPointByDistance(RayStep[], Single) - nameWithType.vb: RayStep.GetPointByDistance(RayStep(), Single) -- uid: XRTK.Definitions.Physics.RayStep.GetPointByDistance* - name: GetPointByDistance - href: api/XRTK.Definitions.Physics.RayStep.html#XRTK_Definitions_Physics_RayStep_GetPointByDistance_ - commentId: Overload:XRTK.Definitions.Physics.RayStep.GetPointByDistance - isSpec: "True" - fullName: XRTK.Definitions.Physics.RayStep.GetPointByDistance - nameWithType: RayStep.GetPointByDistance -- uid: XRTK.Definitions.Physics.RayStep.GetStepByDistance(XRTK.Definitions.Physics.RayStep[],System.Single) - name: GetStepByDistance(RayStep[], Single) - href: api/XRTK.Definitions.Physics.RayStep.html#XRTK_Definitions_Physics_RayStep_GetStepByDistance_XRTK_Definitions_Physics_RayStep___System_Single_ - commentId: M:XRTK.Definitions.Physics.RayStep.GetStepByDistance(XRTK.Definitions.Physics.RayStep[],System.Single) - name.vb: GetStepByDistance(RayStep(), Single) - fullName: XRTK.Definitions.Physics.RayStep.GetStepByDistance(XRTK.Definitions.Physics.RayStep[], System.Single) - fullName.vb: XRTK.Definitions.Physics.RayStep.GetStepByDistance(XRTK.Definitions.Physics.RayStep(), System.Single) - nameWithType: RayStep.GetStepByDistance(RayStep[], Single) - nameWithType.vb: RayStep.GetStepByDistance(RayStep(), Single) -- uid: XRTK.Definitions.Physics.RayStep.GetStepByDistance* - name: GetStepByDistance - href: api/XRTK.Definitions.Physics.RayStep.html#XRTK_Definitions_Physics_RayStep_GetStepByDistance_ - commentId: Overload:XRTK.Definitions.Physics.RayStep.GetStepByDistance - isSpec: "True" - fullName: XRTK.Definitions.Physics.RayStep.GetStepByDistance - nameWithType: RayStep.GetStepByDistance -- uid: XRTK.Definitions.Physics.RayStep.Length - name: Length - href: api/XRTK.Definitions.Physics.RayStep.html#XRTK_Definitions_Physics_RayStep_Length - commentId: P:XRTK.Definitions.Physics.RayStep.Length - fullName: XRTK.Definitions.Physics.RayStep.Length - nameWithType: RayStep.Length -- uid: XRTK.Definitions.Physics.RayStep.Length* - name: Length - href: api/XRTK.Definitions.Physics.RayStep.html#XRTK_Definitions_Physics_RayStep_Length_ - commentId: Overload:XRTK.Definitions.Physics.RayStep.Length - isSpec: "True" - fullName: XRTK.Definitions.Physics.RayStep.Length - nameWithType: RayStep.Length -- uid: XRTK.Definitions.Physics.RayStep.op_Implicit(XRTK.Definitions.Physics.RayStep)~UnityEngine.Ray - name: Implicit(RayStep to Ray) - href: api/XRTK.Definitions.Physics.RayStep.html#XRTK_Definitions_Physics_RayStep_op_Implicit_XRTK_Definitions_Physics_RayStep__UnityEngine_Ray - commentId: M:XRTK.Definitions.Physics.RayStep.op_Implicit(XRTK.Definitions.Physics.RayStep)~UnityEngine.Ray - name.vb: Widening(RayStep to Ray) - fullName: XRTK.Definitions.Physics.RayStep.Implicit(XRTK.Definitions.Physics.RayStep to UnityEngine.Ray) - fullName.vb: XRTK.Definitions.Physics.RayStep.Widening(XRTK.Definitions.Physics.RayStep to UnityEngine.Ray) - nameWithType: RayStep.Implicit(RayStep to Ray) - nameWithType.vb: RayStep.Widening(RayStep to Ray) -- uid: XRTK.Definitions.Physics.RayStep.op_Implicit* - name: Implicit - href: api/XRTK.Definitions.Physics.RayStep.html#XRTK_Definitions_Physics_RayStep_op_Implicit_ - commentId: Overload:XRTK.Definitions.Physics.RayStep.op_Implicit - isSpec: "True" - name.vb: Widening - fullName: XRTK.Definitions.Physics.RayStep.Implicit - fullName.vb: XRTK.Definitions.Physics.RayStep.Widening - nameWithType: RayStep.Implicit - nameWithType.vb: RayStep.Widening -- uid: XRTK.Definitions.Physics.RayStep.Origin - name: Origin - href: api/XRTK.Definitions.Physics.RayStep.html#XRTK_Definitions_Physics_RayStep_Origin - commentId: P:XRTK.Definitions.Physics.RayStep.Origin - fullName: XRTK.Definitions.Physics.RayStep.Origin - nameWithType: RayStep.Origin -- uid: XRTK.Definitions.Physics.RayStep.Origin* - name: Origin - href: api/XRTK.Definitions.Physics.RayStep.html#XRTK_Definitions_Physics_RayStep_Origin_ - commentId: Overload:XRTK.Definitions.Physics.RayStep.Origin - isSpec: "True" - fullName: XRTK.Definitions.Physics.RayStep.Origin - nameWithType: RayStep.Origin -- uid: XRTK.Definitions.Physics.RayStep.Terminus - name: Terminus - href: api/XRTK.Definitions.Physics.RayStep.html#XRTK_Definitions_Physics_RayStep_Terminus - commentId: P:XRTK.Definitions.Physics.RayStep.Terminus - fullName: XRTK.Definitions.Physics.RayStep.Terminus - nameWithType: RayStep.Terminus -- uid: XRTK.Definitions.Physics.RayStep.Terminus* - name: Terminus - href: api/XRTK.Definitions.Physics.RayStep.html#XRTK_Definitions_Physics_RayStep_Terminus_ - commentId: Overload:XRTK.Definitions.Physics.RayStep.Terminus - isSpec: "True" - fullName: XRTK.Definitions.Physics.RayStep.Terminus - nameWithType: RayStep.Terminus -- uid: XRTK.Definitions.Physics.RayStep.UpdateRayStep(UnityEngine.Vector3@,UnityEngine.Vector3@) - name: UpdateRayStep(ref Vector3, ref Vector3) - href: api/XRTK.Definitions.Physics.RayStep.html#XRTK_Definitions_Physics_RayStep_UpdateRayStep_UnityEngine_Vector3__UnityEngine_Vector3__ - commentId: M:XRTK.Definitions.Physics.RayStep.UpdateRayStep(UnityEngine.Vector3@,UnityEngine.Vector3@) - name.vb: UpdateRayStep(ByRef Vector3, ByRef Vector3) - fullName: XRTK.Definitions.Physics.RayStep.UpdateRayStep(ref UnityEngine.Vector3, ref UnityEngine.Vector3) - fullName.vb: XRTK.Definitions.Physics.RayStep.UpdateRayStep(ByRef UnityEngine.Vector3, ByRef UnityEngine.Vector3) - nameWithType: RayStep.UpdateRayStep(ref Vector3, ref Vector3) - nameWithType.vb: RayStep.UpdateRayStep(ByRef Vector3, ByRef Vector3) -- uid: XRTK.Definitions.Physics.RayStep.UpdateRayStep* - name: UpdateRayStep - href: api/XRTK.Definitions.Physics.RayStep.html#XRTK_Definitions_Physics_RayStep_UpdateRayStep_ - commentId: Overload:XRTK.Definitions.Physics.RayStep.UpdateRayStep - isSpec: "True" - fullName: XRTK.Definitions.Physics.RayStep.UpdateRayStep - nameWithType: RayStep.UpdateRayStep -- uid: XRTK.Definitions.Platforms - name: XRTK.Definitions.Platforms - href: api/XRTK.Definitions.Platforms.html - commentId: N:XRTK.Definitions.Platforms - fullName: XRTK.Definitions.Platforms - nameWithType: XRTK.Definitions.Platforms -- uid: XRTK.Definitions.Platforms.AllPlatforms - name: AllPlatforms - href: api/XRTK.Definitions.Platforms.AllPlatforms.html - commentId: T:XRTK.Definitions.Platforms.AllPlatforms - fullName: XRTK.Definitions.Platforms.AllPlatforms - nameWithType: AllPlatforms -- uid: XRTK.Definitions.Platforms.AllPlatforms.IsAvailable - name: IsAvailable - href: api/XRTK.Definitions.Platforms.AllPlatforms.html#XRTK_Definitions_Platforms_AllPlatforms_IsAvailable - commentId: P:XRTK.Definitions.Platforms.AllPlatforms.IsAvailable - fullName: XRTK.Definitions.Platforms.AllPlatforms.IsAvailable - nameWithType: AllPlatforms.IsAvailable -- uid: XRTK.Definitions.Platforms.AllPlatforms.IsAvailable* - name: IsAvailable - href: api/XRTK.Definitions.Platforms.AllPlatforms.html#XRTK_Definitions_Platforms_AllPlatforms_IsAvailable_ - commentId: Overload:XRTK.Definitions.Platforms.AllPlatforms.IsAvailable - isSpec: "True" - fullName: XRTK.Definitions.Platforms.AllPlatforms.IsAvailable - nameWithType: AllPlatforms.IsAvailable -- uid: XRTK.Definitions.Platforms.AndroidPlatform - name: AndroidPlatform - href: api/XRTK.Definitions.Platforms.AndroidPlatform.html - commentId: T:XRTK.Definitions.Platforms.AndroidPlatform - fullName: XRTK.Definitions.Platforms.AndroidPlatform - nameWithType: AndroidPlatform -- uid: XRTK.Definitions.Platforms.AndroidPlatform.IsAvailable - name: IsAvailable - href: api/XRTK.Definitions.Platforms.AndroidPlatform.html#XRTK_Definitions_Platforms_AndroidPlatform_IsAvailable - commentId: P:XRTK.Definitions.Platforms.AndroidPlatform.IsAvailable - fullName: XRTK.Definitions.Platforms.AndroidPlatform.IsAvailable - nameWithType: AndroidPlatform.IsAvailable -- uid: XRTK.Definitions.Platforms.AndroidPlatform.IsAvailable* - name: IsAvailable - href: api/XRTK.Definitions.Platforms.AndroidPlatform.html#XRTK_Definitions_Platforms_AndroidPlatform_IsAvailable_ - commentId: Overload:XRTK.Definitions.Platforms.AndroidPlatform.IsAvailable - isSpec: "True" - fullName: XRTK.Definitions.Platforms.AndroidPlatform.IsAvailable - nameWithType: AndroidPlatform.IsAvailable -- uid: XRTK.Definitions.Platforms.BasePlatform - name: BasePlatform - href: api/XRTK.Definitions.Platforms.BasePlatform.html - commentId: T:XRTK.Definitions.Platforms.BasePlatform - fullName: XRTK.Definitions.Platforms.BasePlatform - nameWithType: BasePlatform -- uid: XRTK.Definitions.Platforms.BasePlatform.Equals(System.Object) - name: Equals(Object) - href: api/XRTK.Definitions.Platforms.BasePlatform.html#XRTK_Definitions_Platforms_BasePlatform_Equals_System_Object_ - commentId: M:XRTK.Definitions.Platforms.BasePlatform.Equals(System.Object) - fullName: XRTK.Definitions.Platforms.BasePlatform.Equals(System.Object) - nameWithType: BasePlatform.Equals(Object) -- uid: XRTK.Definitions.Platforms.BasePlatform.Equals* - name: Equals - href: api/XRTK.Definitions.Platforms.BasePlatform.html#XRTK_Definitions_Platforms_BasePlatform_Equals_ - commentId: Overload:XRTK.Definitions.Platforms.BasePlatform.Equals - isSpec: "True" - fullName: XRTK.Definitions.Platforms.BasePlatform.Equals - nameWithType: BasePlatform.Equals -- uid: XRTK.Definitions.Platforms.BasePlatform.GetHashCode - name: GetHashCode() - href: api/XRTK.Definitions.Platforms.BasePlatform.html#XRTK_Definitions_Platforms_BasePlatform_GetHashCode - commentId: M:XRTK.Definitions.Platforms.BasePlatform.GetHashCode - fullName: XRTK.Definitions.Platforms.BasePlatform.GetHashCode() - nameWithType: BasePlatform.GetHashCode() -- uid: XRTK.Definitions.Platforms.BasePlatform.GetHashCode* - name: GetHashCode - href: api/XRTK.Definitions.Platforms.BasePlatform.html#XRTK_Definitions_Platforms_BasePlatform_GetHashCode_ - commentId: Overload:XRTK.Definitions.Platforms.BasePlatform.GetHashCode - isSpec: "True" - fullName: XRTK.Definitions.Platforms.BasePlatform.GetHashCode - nameWithType: BasePlatform.GetHashCode -- uid: XRTK.Definitions.Platforms.BasePlatform.IsAvailable - name: IsAvailable - href: api/XRTK.Definitions.Platforms.BasePlatform.html#XRTK_Definitions_Platforms_BasePlatform_IsAvailable - commentId: P:XRTK.Definitions.Platforms.BasePlatform.IsAvailable - fullName: XRTK.Definitions.Platforms.BasePlatform.IsAvailable - nameWithType: BasePlatform.IsAvailable -- uid: XRTK.Definitions.Platforms.BasePlatform.IsAvailable* - name: IsAvailable - href: api/XRTK.Definitions.Platforms.BasePlatform.html#XRTK_Definitions_Platforms_BasePlatform_IsAvailable_ - commentId: Overload:XRTK.Definitions.Platforms.BasePlatform.IsAvailable - isSpec: "True" - fullName: XRTK.Definitions.Platforms.BasePlatform.IsAvailable - nameWithType: BasePlatform.IsAvailable -- uid: XRTK.Definitions.Platforms.BasePlatform.Name - name: Name - href: api/XRTK.Definitions.Platforms.BasePlatform.html#XRTK_Definitions_Platforms_BasePlatform_Name - commentId: P:XRTK.Definitions.Platforms.BasePlatform.Name - fullName: XRTK.Definitions.Platforms.BasePlatform.Name - nameWithType: BasePlatform.Name -- uid: XRTK.Definitions.Platforms.BasePlatform.Name* - name: Name - href: api/XRTK.Definitions.Platforms.BasePlatform.html#XRTK_Definitions_Platforms_BasePlatform_Name_ - commentId: Overload:XRTK.Definitions.Platforms.BasePlatform.Name - isSpec: "True" - fullName: XRTK.Definitions.Platforms.BasePlatform.Name - nameWithType: BasePlatform.Name -- uid: XRTK.Definitions.Platforms.BasePlatform.PlatformOverrides - name: PlatformOverrides - href: api/XRTK.Definitions.Platforms.BasePlatform.html#XRTK_Definitions_Platforms_BasePlatform_PlatformOverrides - commentId: P:XRTK.Definitions.Platforms.BasePlatform.PlatformOverrides - fullName: XRTK.Definitions.Platforms.BasePlatform.PlatformOverrides - nameWithType: BasePlatform.PlatformOverrides -- uid: XRTK.Definitions.Platforms.BasePlatform.PlatformOverrides* - name: PlatformOverrides - href: api/XRTK.Definitions.Platforms.BasePlatform.html#XRTK_Definitions_Platforms_BasePlatform_PlatformOverrides_ - commentId: Overload:XRTK.Definitions.Platforms.BasePlatform.PlatformOverrides - isSpec: "True" - fullName: XRTK.Definitions.Platforms.BasePlatform.PlatformOverrides - nameWithType: BasePlatform.PlatformOverrides -- uid: XRTK.Definitions.Platforms.CurrentBuildTargetPlatform - name: CurrentBuildTargetPlatform - href: api/XRTK.Definitions.Platforms.CurrentBuildTargetPlatform.html - commentId: T:XRTK.Definitions.Platforms.CurrentBuildTargetPlatform - fullName: XRTK.Definitions.Platforms.CurrentBuildTargetPlatform - nameWithType: CurrentBuildTargetPlatform -- uid: XRTK.Definitions.Platforms.CurrentBuildTargetPlatform.IsAvailable - name: IsAvailable - href: api/XRTK.Definitions.Platforms.CurrentBuildTargetPlatform.html#XRTK_Definitions_Platforms_CurrentBuildTargetPlatform_IsAvailable - commentId: P:XRTK.Definitions.Platforms.CurrentBuildTargetPlatform.IsAvailable - fullName: XRTK.Definitions.Platforms.CurrentBuildTargetPlatform.IsAvailable - nameWithType: CurrentBuildTargetPlatform.IsAvailable -- uid: XRTK.Definitions.Platforms.CurrentBuildTargetPlatform.IsAvailable* - name: IsAvailable - href: api/XRTK.Definitions.Platforms.CurrentBuildTargetPlatform.html#XRTK_Definitions_Platforms_CurrentBuildTargetPlatform_IsAvailable_ - commentId: Overload:XRTK.Definitions.Platforms.CurrentBuildTargetPlatform.IsAvailable - isSpec: "True" - fullName: XRTK.Definitions.Platforms.CurrentBuildTargetPlatform.IsAvailable - nameWithType: CurrentBuildTargetPlatform.IsAvailable -- uid: XRTK.Definitions.Platforms.EditorPlatform - name: EditorPlatform - href: api/XRTK.Definitions.Platforms.EditorPlatform.html - commentId: T:XRTK.Definitions.Platforms.EditorPlatform - fullName: XRTK.Definitions.Platforms.EditorPlatform - nameWithType: EditorPlatform -- uid: XRTK.Definitions.Platforms.EditorPlatform.IsAvailable - name: IsAvailable - href: api/XRTK.Definitions.Platforms.EditorPlatform.html#XRTK_Definitions_Platforms_EditorPlatform_IsAvailable - commentId: P:XRTK.Definitions.Platforms.EditorPlatform.IsAvailable - fullName: XRTK.Definitions.Platforms.EditorPlatform.IsAvailable - nameWithType: EditorPlatform.IsAvailable -- uid: XRTK.Definitions.Platforms.EditorPlatform.IsAvailable* - name: IsAvailable - href: api/XRTK.Definitions.Platforms.EditorPlatform.html#XRTK_Definitions_Platforms_EditorPlatform_IsAvailable_ - commentId: Overload:XRTK.Definitions.Platforms.EditorPlatform.IsAvailable - isSpec: "True" - fullName: XRTK.Definitions.Platforms.EditorPlatform.IsAvailable - nameWithType: EditorPlatform.IsAvailable -- uid: XRTK.Definitions.Platforms.IOSPlatform - name: IOSPlatform - href: api/XRTK.Definitions.Platforms.IOSPlatform.html - commentId: T:XRTK.Definitions.Platforms.IOSPlatform - fullName: XRTK.Definitions.Platforms.IOSPlatform - nameWithType: IOSPlatform -- uid: XRTK.Definitions.Platforms.IOSPlatform.IsAvailable - name: IsAvailable - href: api/XRTK.Definitions.Platforms.IOSPlatform.html#XRTK_Definitions_Platforms_IOSPlatform_IsAvailable - commentId: P:XRTK.Definitions.Platforms.IOSPlatform.IsAvailable - fullName: XRTK.Definitions.Platforms.IOSPlatform.IsAvailable - nameWithType: IOSPlatform.IsAvailable -- uid: XRTK.Definitions.Platforms.IOSPlatform.IsAvailable* - name: IsAvailable - href: api/XRTK.Definitions.Platforms.IOSPlatform.html#XRTK_Definitions_Platforms_IOSPlatform_IsAvailable_ - commentId: Overload:XRTK.Definitions.Platforms.IOSPlatform.IsAvailable - isSpec: "True" - fullName: XRTK.Definitions.Platforms.IOSPlatform.IsAvailable - nameWithType: IOSPlatform.IsAvailable -- uid: XRTK.Definitions.Platforms.LuminPlatform - name: LuminPlatform - href: api/XRTK.Definitions.Platforms.LuminPlatform.html - commentId: T:XRTK.Definitions.Platforms.LuminPlatform - fullName: XRTK.Definitions.Platforms.LuminPlatform - nameWithType: LuminPlatform -- uid: XRTK.Definitions.Platforms.LuminPlatform.IsAvailable - name: IsAvailable - href: api/XRTK.Definitions.Platforms.LuminPlatform.html#XRTK_Definitions_Platforms_LuminPlatform_IsAvailable - commentId: P:XRTK.Definitions.Platforms.LuminPlatform.IsAvailable - fullName: XRTK.Definitions.Platforms.LuminPlatform.IsAvailable - nameWithType: LuminPlatform.IsAvailable -- uid: XRTK.Definitions.Platforms.LuminPlatform.IsAvailable* - name: IsAvailable - href: api/XRTK.Definitions.Platforms.LuminPlatform.html#XRTK_Definitions_Platforms_LuminPlatform_IsAvailable_ - commentId: Overload:XRTK.Definitions.Platforms.LuminPlatform.IsAvailable - isSpec: "True" - fullName: XRTK.Definitions.Platforms.LuminPlatform.IsAvailable - nameWithType: LuminPlatform.IsAvailable -- uid: XRTK.Definitions.Platforms.OSXPlatform - name: OSXPlatform - href: api/XRTK.Definitions.Platforms.OSXPlatform.html - commentId: T:XRTK.Definitions.Platforms.OSXPlatform - fullName: XRTK.Definitions.Platforms.OSXPlatform - nameWithType: OSXPlatform -- uid: XRTK.Definitions.Platforms.OSXPlatform.IsAvailable - name: IsAvailable - href: api/XRTK.Definitions.Platforms.OSXPlatform.html#XRTK_Definitions_Platforms_OSXPlatform_IsAvailable - commentId: P:XRTK.Definitions.Platforms.OSXPlatform.IsAvailable - fullName: XRTK.Definitions.Platforms.OSXPlatform.IsAvailable - nameWithType: OSXPlatform.IsAvailable -- uid: XRTK.Definitions.Platforms.OSXPlatform.IsAvailable* - name: IsAvailable - href: api/XRTK.Definitions.Platforms.OSXPlatform.html#XRTK_Definitions_Platforms_OSXPlatform_IsAvailable_ - commentId: Overload:XRTK.Definitions.Platforms.OSXPlatform.IsAvailable - isSpec: "True" - fullName: XRTK.Definitions.Platforms.OSXPlatform.IsAvailable - nameWithType: OSXPlatform.IsAvailable -- uid: XRTK.Definitions.Platforms.UniversalWindowsPlatform - name: UniversalWindowsPlatform - href: api/XRTK.Definitions.Platforms.UniversalWindowsPlatform.html - commentId: T:XRTK.Definitions.Platforms.UniversalWindowsPlatform - fullName: XRTK.Definitions.Platforms.UniversalWindowsPlatform - nameWithType: UniversalWindowsPlatform -- uid: XRTK.Definitions.Platforms.UniversalWindowsPlatform.IsAvailable - name: IsAvailable - href: api/XRTK.Definitions.Platforms.UniversalWindowsPlatform.html#XRTK_Definitions_Platforms_UniversalWindowsPlatform_IsAvailable - commentId: P:XRTK.Definitions.Platforms.UniversalWindowsPlatform.IsAvailable - fullName: XRTK.Definitions.Platforms.UniversalWindowsPlatform.IsAvailable - nameWithType: UniversalWindowsPlatform.IsAvailable -- uid: XRTK.Definitions.Platforms.UniversalWindowsPlatform.IsAvailable* - name: IsAvailable - href: api/XRTK.Definitions.Platforms.UniversalWindowsPlatform.html#XRTK_Definitions_Platforms_UniversalWindowsPlatform_IsAvailable_ - commentId: Overload:XRTK.Definitions.Platforms.UniversalWindowsPlatform.IsAvailable - isSpec: "True" - fullName: XRTK.Definitions.Platforms.UniversalWindowsPlatform.IsAvailable - nameWithType: UniversalWindowsPlatform.IsAvailable -- uid: XRTK.Definitions.Platforms.WebGlPlatform - name: WebGlPlatform - href: api/XRTK.Definitions.Platforms.WebGlPlatform.html - commentId: T:XRTK.Definitions.Platforms.WebGlPlatform - fullName: XRTK.Definitions.Platforms.WebGlPlatform - nameWithType: WebGlPlatform -- uid: XRTK.Definitions.Platforms.WebGlPlatform.IsAvailable - name: IsAvailable - href: api/XRTK.Definitions.Platforms.WebGlPlatform.html#XRTK_Definitions_Platforms_WebGlPlatform_IsAvailable - commentId: P:XRTK.Definitions.Platforms.WebGlPlatform.IsAvailable - fullName: XRTK.Definitions.Platforms.WebGlPlatform.IsAvailable - nameWithType: WebGlPlatform.IsAvailable -- uid: XRTK.Definitions.Platforms.WebGlPlatform.IsAvailable* - name: IsAvailable - href: api/XRTK.Definitions.Platforms.WebGlPlatform.html#XRTK_Definitions_Platforms_WebGlPlatform_IsAvailable_ - commentId: Overload:XRTK.Definitions.Platforms.WebGlPlatform.IsAvailable - isSpec: "True" - fullName: XRTK.Definitions.Platforms.WebGlPlatform.IsAvailable - nameWithType: WebGlPlatform.IsAvailable -- uid: XRTK.Definitions.Platforms.WindowsStandalonePlatform - name: WindowsStandalonePlatform - href: api/XRTK.Definitions.Platforms.WindowsStandalonePlatform.html - commentId: T:XRTK.Definitions.Platforms.WindowsStandalonePlatform - fullName: XRTK.Definitions.Platforms.WindowsStandalonePlatform - nameWithType: WindowsStandalonePlatform -- uid: XRTK.Definitions.Platforms.WindowsStandalonePlatform.IsAvailable - name: IsAvailable - href: api/XRTK.Definitions.Platforms.WindowsStandalonePlatform.html#XRTK_Definitions_Platforms_WindowsStandalonePlatform_IsAvailable - commentId: P:XRTK.Definitions.Platforms.WindowsStandalonePlatform.IsAvailable - fullName: XRTK.Definitions.Platforms.WindowsStandalonePlatform.IsAvailable - nameWithType: WindowsStandalonePlatform.IsAvailable -- uid: XRTK.Definitions.Platforms.WindowsStandalonePlatform.IsAvailable* - name: IsAvailable - href: api/XRTK.Definitions.Platforms.WindowsStandalonePlatform.html#XRTK_Definitions_Platforms_WindowsStandalonePlatform_IsAvailable_ - commentId: Overload:XRTK.Definitions.Platforms.WindowsStandalonePlatform.IsAvailable - isSpec: "True" - fullName: XRTK.Definitions.Platforms.WindowsStandalonePlatform.IsAvailable - nameWithType: WindowsStandalonePlatform.IsAvailable -- uid: XRTK.Definitions.RuntimePlatformEntry - name: RuntimePlatformEntry - href: api/XRTK.Definitions.RuntimePlatformEntry.html - commentId: T:XRTK.Definitions.RuntimePlatformEntry - fullName: XRTK.Definitions.RuntimePlatformEntry - nameWithType: RuntimePlatformEntry -- uid: XRTK.Definitions.RuntimePlatformEntry.#ctor - name: RuntimePlatformEntry() - href: api/XRTK.Definitions.RuntimePlatformEntry.html#XRTK_Definitions_RuntimePlatformEntry__ctor - commentId: M:XRTK.Definitions.RuntimePlatformEntry.#ctor - fullName: XRTK.Definitions.RuntimePlatformEntry.RuntimePlatformEntry() - nameWithType: RuntimePlatformEntry.RuntimePlatformEntry() -- uid: XRTK.Definitions.RuntimePlatformEntry.#ctor(System.Collections.Generic.IReadOnlyList{XRTK.Interfaces.IMixedRealityPlatform}) - name: RuntimePlatformEntry(IReadOnlyList) - href: api/XRTK.Definitions.RuntimePlatformEntry.html#XRTK_Definitions_RuntimePlatformEntry__ctor_System_Collections_Generic_IReadOnlyList_XRTK_Interfaces_IMixedRealityPlatform__ - commentId: M:XRTK.Definitions.RuntimePlatformEntry.#ctor(System.Collections.Generic.IReadOnlyList{XRTK.Interfaces.IMixedRealityPlatform}) - name.vb: RuntimePlatformEntry(IReadOnlyList(Of IMixedRealityPlatform)) - fullName: XRTK.Definitions.RuntimePlatformEntry.RuntimePlatformEntry(System.Collections.Generic.IReadOnlyList) - fullName.vb: XRTK.Definitions.RuntimePlatformEntry.RuntimePlatformEntry(System.Collections.Generic.IReadOnlyList(Of XRTK.Interfaces.IMixedRealityPlatform)) - nameWithType: RuntimePlatformEntry.RuntimePlatformEntry(IReadOnlyList) - nameWithType.vb: RuntimePlatformEntry.RuntimePlatformEntry(IReadOnlyList(Of IMixedRealityPlatform)) -- uid: XRTK.Definitions.RuntimePlatformEntry.#ctor* - name: RuntimePlatformEntry - href: api/XRTK.Definitions.RuntimePlatformEntry.html#XRTK_Definitions_RuntimePlatformEntry__ctor_ - commentId: Overload:XRTK.Definitions.RuntimePlatformEntry.#ctor - isSpec: "True" - fullName: XRTK.Definitions.RuntimePlatformEntry.RuntimePlatformEntry - nameWithType: RuntimePlatformEntry.RuntimePlatformEntry -- uid: XRTK.Definitions.RuntimePlatformEntry.RuntimePlatforms - name: RuntimePlatforms - href: api/XRTK.Definitions.RuntimePlatformEntry.html#XRTK_Definitions_RuntimePlatformEntry_RuntimePlatforms - commentId: P:XRTK.Definitions.RuntimePlatformEntry.RuntimePlatforms - fullName: XRTK.Definitions.RuntimePlatformEntry.RuntimePlatforms - nameWithType: RuntimePlatformEntry.RuntimePlatforms -- uid: XRTK.Definitions.RuntimePlatformEntry.RuntimePlatforms* - name: RuntimePlatforms - href: api/XRTK.Definitions.RuntimePlatformEntry.html#XRTK_Definitions_RuntimePlatformEntry_RuntimePlatforms_ - commentId: Overload:XRTK.Definitions.RuntimePlatformEntry.RuntimePlatforms - isSpec: "True" - fullName: XRTK.Definitions.RuntimePlatformEntry.RuntimePlatforms - nameWithType: RuntimePlatformEntry.RuntimePlatforms -- uid: XRTK.Definitions.SpatialAwarenessSystem - name: XRTK.Definitions.SpatialAwarenessSystem - href: api/XRTK.Definitions.SpatialAwarenessSystem.html - commentId: N:XRTK.Definitions.SpatialAwarenessSystem - fullName: XRTK.Definitions.SpatialAwarenessSystem - nameWithType: XRTK.Definitions.SpatialAwarenessSystem -- uid: XRTK.Definitions.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystemProfile - name: MixedRealitySpatialAwarenessSystemProfile - href: api/XRTK.Definitions.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystemProfile.html - commentId: T:XRTK.Definitions.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystemProfile - fullName: XRTK.Definitions.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystemProfile - nameWithType: MixedRealitySpatialAwarenessSystemProfile -- uid: XRTK.Definitions.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystemProfile.GlobalMeshObserverProfile - name: GlobalMeshObserverProfile - href: api/XRTK.Definitions.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystemProfile.html#XRTK_Definitions_SpatialAwarenessSystem_MixedRealitySpatialAwarenessSystemProfile_GlobalMeshObserverProfile - commentId: P:XRTK.Definitions.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystemProfile.GlobalMeshObserverProfile - fullName: XRTK.Definitions.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystemProfile.GlobalMeshObserverProfile - nameWithType: MixedRealitySpatialAwarenessSystemProfile.GlobalMeshObserverProfile -- uid: XRTK.Definitions.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystemProfile.GlobalMeshObserverProfile* - name: GlobalMeshObserverProfile - href: api/XRTK.Definitions.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystemProfile.html#XRTK_Definitions_SpatialAwarenessSystem_MixedRealitySpatialAwarenessSystemProfile_GlobalMeshObserverProfile_ - commentId: Overload:XRTK.Definitions.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystemProfile.GlobalMeshObserverProfile - isSpec: "True" - fullName: XRTK.Definitions.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystemProfile.GlobalMeshObserverProfile - nameWithType: MixedRealitySpatialAwarenessSystemProfile.GlobalMeshObserverProfile -- uid: XRTK.Definitions.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystemProfile.GlobalSurfaceObserverProfile - name: GlobalSurfaceObserverProfile - href: api/XRTK.Definitions.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystemProfile.html#XRTK_Definitions_SpatialAwarenessSystem_MixedRealitySpatialAwarenessSystemProfile_GlobalSurfaceObserverProfile - commentId: P:XRTK.Definitions.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystemProfile.GlobalSurfaceObserverProfile - fullName: XRTK.Definitions.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystemProfile.GlobalSurfaceObserverProfile - nameWithType: MixedRealitySpatialAwarenessSystemProfile.GlobalSurfaceObserverProfile -- uid: XRTK.Definitions.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystemProfile.GlobalSurfaceObserverProfile* - name: GlobalSurfaceObserverProfile - href: api/XRTK.Definitions.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystemProfile.html#XRTK_Definitions_SpatialAwarenessSystem_MixedRealitySpatialAwarenessSystemProfile_GlobalSurfaceObserverProfile_ - commentId: Overload:XRTK.Definitions.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystemProfile.GlobalSurfaceObserverProfile - isSpec: "True" - fullName: XRTK.Definitions.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystemProfile.GlobalSurfaceObserverProfile - nameWithType: MixedRealitySpatialAwarenessSystemProfile.GlobalSurfaceObserverProfile -- uid: XRTK.Definitions.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystemProfile.MeshDisplayOption - name: MeshDisplayOption - href: api/XRTK.Definitions.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystemProfile.html#XRTK_Definitions_SpatialAwarenessSystem_MixedRealitySpatialAwarenessSystemProfile_MeshDisplayOption - commentId: P:XRTK.Definitions.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystemProfile.MeshDisplayOption - fullName: XRTK.Definitions.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystemProfile.MeshDisplayOption - nameWithType: MixedRealitySpatialAwarenessSystemProfile.MeshDisplayOption -- uid: XRTK.Definitions.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystemProfile.MeshDisplayOption* - name: MeshDisplayOption - href: api/XRTK.Definitions.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystemProfile.html#XRTK_Definitions_SpatialAwarenessSystem_MixedRealitySpatialAwarenessSystemProfile_MeshDisplayOption_ - commentId: Overload:XRTK.Definitions.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystemProfile.MeshDisplayOption - isSpec: "True" - fullName: XRTK.Definitions.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystemProfile.MeshDisplayOption - nameWithType: MixedRealitySpatialAwarenessSystemProfile.MeshDisplayOption -- uid: XRTK.Definitions.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystemProfile.SpatialAwarenessLayers - name: SpatialAwarenessLayers - href: api/XRTK.Definitions.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystemProfile.html#XRTK_Definitions_SpatialAwarenessSystem_MixedRealitySpatialAwarenessSystemProfile_SpatialAwarenessLayers - commentId: F:XRTK.Definitions.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystemProfile.SpatialAwarenessLayers - fullName: XRTK.Definitions.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystemProfile.SpatialAwarenessLayers - nameWithType: MixedRealitySpatialAwarenessSystemProfile.SpatialAwarenessLayers -- uid: XRTK.Definitions.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystemProfile.SpatialAwarenessMeshesLayerName - name: SpatialAwarenessMeshesLayerName - href: api/XRTK.Definitions.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystemProfile.html#XRTK_Definitions_SpatialAwarenessSystem_MixedRealitySpatialAwarenessSystemProfile_SpatialAwarenessMeshesLayerName - commentId: F:XRTK.Definitions.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystemProfile.SpatialAwarenessMeshesLayerName - fullName: XRTK.Definitions.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystemProfile.SpatialAwarenessMeshesLayerName - nameWithType: MixedRealitySpatialAwarenessSystemProfile.SpatialAwarenessMeshesLayerName -- uid: XRTK.Definitions.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystemProfile.SpatialAwarenessSurfacesLayerName - name: SpatialAwarenessSurfacesLayerName - href: api/XRTK.Definitions.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystemProfile.html#XRTK_Definitions_SpatialAwarenessSystem_MixedRealitySpatialAwarenessSystemProfile_SpatialAwarenessSurfacesLayerName - commentId: F:XRTK.Definitions.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystemProfile.SpatialAwarenessSurfacesLayerName - fullName: XRTK.Definitions.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystemProfile.SpatialAwarenessSurfacesLayerName - nameWithType: MixedRealitySpatialAwarenessSystemProfile.SpatialAwarenessSurfacesLayerName -- uid: XRTK.Definitions.SpatialAwarenessSystem.SpatialAwarenessMeshLevelOfDetail - name: SpatialAwarenessMeshLevelOfDetail - href: api/XRTK.Definitions.SpatialAwarenessSystem.SpatialAwarenessMeshLevelOfDetail.html - commentId: T:XRTK.Definitions.SpatialAwarenessSystem.SpatialAwarenessMeshLevelOfDetail - fullName: XRTK.Definitions.SpatialAwarenessSystem.SpatialAwarenessMeshLevelOfDetail - nameWithType: SpatialAwarenessMeshLevelOfDetail -- uid: XRTK.Definitions.SpatialAwarenessSystem.SpatialAwarenessMeshLevelOfDetail.Custom - name: Custom - href: api/XRTK.Definitions.SpatialAwarenessSystem.SpatialAwarenessMeshLevelOfDetail.html#XRTK_Definitions_SpatialAwarenessSystem_SpatialAwarenessMeshLevelOfDetail_Custom - commentId: F:XRTK.Definitions.SpatialAwarenessSystem.SpatialAwarenessMeshLevelOfDetail.Custom - fullName: XRTK.Definitions.SpatialAwarenessSystem.SpatialAwarenessMeshLevelOfDetail.Custom - nameWithType: SpatialAwarenessMeshLevelOfDetail.Custom -- uid: XRTK.Definitions.SpatialAwarenessSystem.SpatialAwarenessMeshLevelOfDetail.High - name: High - href: api/XRTK.Definitions.SpatialAwarenessSystem.SpatialAwarenessMeshLevelOfDetail.html#XRTK_Definitions_SpatialAwarenessSystem_SpatialAwarenessMeshLevelOfDetail_High - commentId: F:XRTK.Definitions.SpatialAwarenessSystem.SpatialAwarenessMeshLevelOfDetail.High - fullName: XRTK.Definitions.SpatialAwarenessSystem.SpatialAwarenessMeshLevelOfDetail.High - nameWithType: SpatialAwarenessMeshLevelOfDetail.High -- uid: XRTK.Definitions.SpatialAwarenessSystem.SpatialAwarenessMeshLevelOfDetail.Low - name: Low - href: api/XRTK.Definitions.SpatialAwarenessSystem.SpatialAwarenessMeshLevelOfDetail.html#XRTK_Definitions_SpatialAwarenessSystem_SpatialAwarenessMeshLevelOfDetail_Low - commentId: F:XRTK.Definitions.SpatialAwarenessSystem.SpatialAwarenessMeshLevelOfDetail.Low - fullName: XRTK.Definitions.SpatialAwarenessSystem.SpatialAwarenessMeshLevelOfDetail.Low - nameWithType: SpatialAwarenessMeshLevelOfDetail.Low -- uid: XRTK.Definitions.SpatialAwarenessSystem.SpatialAwarenessMeshLevelOfDetail.Medium - name: Medium - href: api/XRTK.Definitions.SpatialAwarenessSystem.SpatialAwarenessMeshLevelOfDetail.html#XRTK_Definitions_SpatialAwarenessSystem_SpatialAwarenessMeshLevelOfDetail_Medium - commentId: F:XRTK.Definitions.SpatialAwarenessSystem.SpatialAwarenessMeshLevelOfDetail.Medium - fullName: XRTK.Definitions.SpatialAwarenessSystem.SpatialAwarenessMeshLevelOfDetail.Medium - nameWithType: SpatialAwarenessMeshLevelOfDetail.Medium -- uid: XRTK.Definitions.SpatialAwarenessSystem.SpatialAwarenessSurfaceTypes - name: SpatialAwarenessSurfaceTypes - href: api/XRTK.Definitions.SpatialAwarenessSystem.SpatialAwarenessSurfaceTypes.html - commentId: T:XRTK.Definitions.SpatialAwarenessSystem.SpatialAwarenessSurfaceTypes - fullName: XRTK.Definitions.SpatialAwarenessSystem.SpatialAwarenessSurfaceTypes - nameWithType: SpatialAwarenessSurfaceTypes -- uid: XRTK.Definitions.SpatialAwarenessSystem.SpatialAwarenessSurfaceTypes.Ceiling - name: Ceiling - href: api/XRTK.Definitions.SpatialAwarenessSystem.SpatialAwarenessSurfaceTypes.html#XRTK_Definitions_SpatialAwarenessSystem_SpatialAwarenessSurfaceTypes_Ceiling - commentId: F:XRTK.Definitions.SpatialAwarenessSystem.SpatialAwarenessSurfaceTypes.Ceiling - fullName: XRTK.Definitions.SpatialAwarenessSystem.SpatialAwarenessSurfaceTypes.Ceiling - nameWithType: SpatialAwarenessSurfaceTypes.Ceiling -- uid: XRTK.Definitions.SpatialAwarenessSystem.SpatialAwarenessSurfaceTypes.Floor - name: Floor - href: api/XRTK.Definitions.SpatialAwarenessSystem.SpatialAwarenessSurfaceTypes.html#XRTK_Definitions_SpatialAwarenessSystem_SpatialAwarenessSurfaceTypes_Floor - commentId: F:XRTK.Definitions.SpatialAwarenessSystem.SpatialAwarenessSurfaceTypes.Floor - fullName: XRTK.Definitions.SpatialAwarenessSystem.SpatialAwarenessSurfaceTypes.Floor - nameWithType: SpatialAwarenessSurfaceTypes.Floor -- uid: XRTK.Definitions.SpatialAwarenessSystem.SpatialAwarenessSurfaceTypes.Platform - name: Platform - href: api/XRTK.Definitions.SpatialAwarenessSystem.SpatialAwarenessSurfaceTypes.html#XRTK_Definitions_SpatialAwarenessSystem_SpatialAwarenessSurfaceTypes_Platform - commentId: F:XRTK.Definitions.SpatialAwarenessSystem.SpatialAwarenessSurfaceTypes.Platform - fullName: XRTK.Definitions.SpatialAwarenessSystem.SpatialAwarenessSurfaceTypes.Platform - nameWithType: SpatialAwarenessSurfaceTypes.Platform -- uid: XRTK.Definitions.SpatialAwarenessSystem.SpatialAwarenessSurfaceTypes.Unknown - name: Unknown - href: api/XRTK.Definitions.SpatialAwarenessSystem.SpatialAwarenessSurfaceTypes.html#XRTK_Definitions_SpatialAwarenessSystem_SpatialAwarenessSurfaceTypes_Unknown - commentId: F:XRTK.Definitions.SpatialAwarenessSystem.SpatialAwarenessSurfaceTypes.Unknown - fullName: XRTK.Definitions.SpatialAwarenessSystem.SpatialAwarenessSurfaceTypes.Unknown - nameWithType: SpatialAwarenessSurfaceTypes.Unknown -- uid: XRTK.Definitions.SpatialAwarenessSystem.SpatialAwarenessSurfaceTypes.Wall - name: Wall - href: api/XRTK.Definitions.SpatialAwarenessSystem.SpatialAwarenessSurfaceTypes.html#XRTK_Definitions_SpatialAwarenessSystem_SpatialAwarenessSurfaceTypes_Wall - commentId: F:XRTK.Definitions.SpatialAwarenessSystem.SpatialAwarenessSurfaceTypes.Wall - fullName: XRTK.Definitions.SpatialAwarenessSystem.SpatialAwarenessSurfaceTypes.Wall - nameWithType: SpatialAwarenessSurfaceTypes.Wall -- uid: XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshDisplayOptions - name: SpatialMeshDisplayOptions - href: api/XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshDisplayOptions.html - commentId: T:XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshDisplayOptions - fullName: XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshDisplayOptions - nameWithType: SpatialMeshDisplayOptions -- uid: XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshDisplayOptions.Collision - name: Collision - href: api/XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshDisplayOptions.html#XRTK_Definitions_SpatialAwarenessSystem_SpatialMeshDisplayOptions_Collision - commentId: F:XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshDisplayOptions.Collision - fullName: XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshDisplayOptions.Collision - nameWithType: SpatialMeshDisplayOptions.Collision -- uid: XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshDisplayOptions.None - name: None - href: api/XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshDisplayOptions.html#XRTK_Definitions_SpatialAwarenessSystem_SpatialMeshDisplayOptions_None - commentId: F:XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshDisplayOptions.None - fullName: XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshDisplayOptions.None - nameWithType: SpatialMeshDisplayOptions.None -- uid: XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshDisplayOptions.Occlusion - name: Occlusion - href: api/XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshDisplayOptions.html#XRTK_Definitions_SpatialAwarenessSystem_SpatialMeshDisplayOptions_Occlusion - commentId: F:XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshDisplayOptions.Occlusion - fullName: XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshDisplayOptions.Occlusion - nameWithType: SpatialMeshDisplayOptions.Occlusion -- uid: XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshDisplayOptions.Visible - name: Visible - href: api/XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshDisplayOptions.html#XRTK_Definitions_SpatialAwarenessSystem_SpatialMeshDisplayOptions_Visible - commentId: F:XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshDisplayOptions.Visible - fullName: XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshDisplayOptions.Visible - nameWithType: SpatialMeshDisplayOptions.Visible -- uid: XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject - name: SpatialMeshObject - href: api/XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.html - commentId: T:XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject - fullName: XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject - nameWithType: SpatialMeshObject -- uid: XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.#ctor(System.Guid,UnityEngine.GameObject) - name: SpatialMeshObject(Guid, GameObject) - href: api/XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.html#XRTK_Definitions_SpatialAwarenessSystem_SpatialMeshObject__ctor_System_Guid_UnityEngine_GameObject_ - commentId: M:XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.#ctor(System.Guid,UnityEngine.GameObject) - fullName: XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.SpatialMeshObject(System.Guid, UnityEngine.GameObject) - nameWithType: SpatialMeshObject.SpatialMeshObject(Guid, GameObject) -- uid: XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.#ctor* - name: SpatialMeshObject - href: api/XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.html#XRTK_Definitions_SpatialAwarenessSystem_SpatialMeshObject__ctor_ - commentId: Overload:XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.#ctor - isSpec: "True" - fullName: XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.SpatialMeshObject - nameWithType: SpatialMeshObject.SpatialMeshObject -- uid: XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.Collider - name: Collider - href: api/XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.html#XRTK_Definitions_SpatialAwarenessSystem_SpatialMeshObject_Collider - commentId: P:XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.Collider - fullName: XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.Collider - nameWithType: SpatialMeshObject.Collider -- uid: XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.Collider* - name: Collider - href: api/XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.html#XRTK_Definitions_SpatialAwarenessSystem_SpatialMeshObject_Collider_ - commentId: Overload:XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.Collider - isSpec: "True" - fullName: XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.Collider - nameWithType: SpatialMeshObject.Collider -- uid: XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.Filter - name: Filter - href: api/XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.html#XRTK_Definitions_SpatialAwarenessSystem_SpatialMeshObject_Filter - commentId: P:XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.Filter - fullName: XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.Filter - nameWithType: SpatialMeshObject.Filter -- uid: XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.Filter* - name: Filter - href: api/XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.html#XRTK_Definitions_SpatialAwarenessSystem_SpatialMeshObject_Filter_ - commentId: Overload:XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.Filter - isSpec: "True" - fullName: XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.Filter - nameWithType: SpatialMeshObject.Filter -- uid: XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.GameObject - name: GameObject - href: api/XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.html#XRTK_Definitions_SpatialAwarenessSystem_SpatialMeshObject_GameObject - commentId: P:XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.GameObject - fullName: XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.GameObject - nameWithType: SpatialMeshObject.GameObject -- uid: XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.GameObject* - name: GameObject - href: api/XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.html#XRTK_Definitions_SpatialAwarenessSystem_SpatialMeshObject_GameObject_ - commentId: Overload:XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.GameObject - isSpec: "True" - fullName: XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.GameObject - nameWithType: SpatialMeshObject.GameObject -- uid: XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.Id - name: Id - href: api/XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.html#XRTK_Definitions_SpatialAwarenessSystem_SpatialMeshObject_Id - commentId: P:XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.Id - fullName: XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.Id - nameWithType: SpatialMeshObject.Id -- uid: XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.Id* - name: Id - href: api/XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.html#XRTK_Definitions_SpatialAwarenessSystem_SpatialMeshObject_Id_ - commentId: Overload:XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.Id - isSpec: "True" - fullName: XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.Id - nameWithType: SpatialMeshObject.Id -- uid: XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.LastUpdated - name: LastUpdated - href: api/XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.html#XRTK_Definitions_SpatialAwarenessSystem_SpatialMeshObject_LastUpdated - commentId: P:XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.LastUpdated - fullName: XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.LastUpdated - nameWithType: SpatialMeshObject.LastUpdated -- uid: XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.LastUpdated* - name: LastUpdated - href: api/XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.html#XRTK_Definitions_SpatialAwarenessSystem_SpatialMeshObject_LastUpdated_ - commentId: Overload:XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.LastUpdated - isSpec: "True" - fullName: XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.LastUpdated - nameWithType: SpatialMeshObject.LastUpdated -- uid: XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.Mesh - name: Mesh - href: api/XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.html#XRTK_Definitions_SpatialAwarenessSystem_SpatialMeshObject_Mesh - commentId: P:XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.Mesh - fullName: XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.Mesh - nameWithType: SpatialMeshObject.Mesh -- uid: XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.Mesh* - name: Mesh - href: api/XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.html#XRTK_Definitions_SpatialAwarenessSystem_SpatialMeshObject_Mesh_ - commentId: Overload:XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.Mesh - isSpec: "True" - fullName: XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.Mesh - nameWithType: SpatialMeshObject.Mesh -- uid: XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.Renderer - name: Renderer - href: api/XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.html#XRTK_Definitions_SpatialAwarenessSystem_SpatialMeshObject_Renderer - commentId: P:XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.Renderer - fullName: XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.Renderer - nameWithType: SpatialMeshObject.Renderer -- uid: XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.Renderer* - name: Renderer - href: api/XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.html#XRTK_Definitions_SpatialAwarenessSystem_SpatialMeshObject_Renderer_ - commentId: Overload:XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.Renderer - isSpec: "True" - fullName: XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject.Renderer - nameWithType: SpatialMeshObject.Renderer -- uid: XRTK.Definitions.SpatialAwarenessSystem.SpatialObserverStatus - name: SpatialObserverStatus - href: api/XRTK.Definitions.SpatialAwarenessSystem.SpatialObserverStatus.html - commentId: T:XRTK.Definitions.SpatialAwarenessSystem.SpatialObserverStatus - fullName: XRTK.Definitions.SpatialAwarenessSystem.SpatialObserverStatus - nameWithType: SpatialObserverStatus -- uid: XRTK.Definitions.SpatialAwarenessSystem.SpatialObserverStatus.Added - name: Added - href: api/XRTK.Definitions.SpatialAwarenessSystem.SpatialObserverStatus.html#XRTK_Definitions_SpatialAwarenessSystem_SpatialObserverStatus_Added - commentId: F:XRTK.Definitions.SpatialAwarenessSystem.SpatialObserverStatus.Added - fullName: XRTK.Definitions.SpatialAwarenessSystem.SpatialObserverStatus.Added - nameWithType: SpatialObserverStatus.Added -- uid: XRTK.Definitions.SpatialAwarenessSystem.SpatialObserverStatus.Removed - name: Removed - href: api/XRTK.Definitions.SpatialAwarenessSystem.SpatialObserverStatus.html#XRTK_Definitions_SpatialAwarenessSystem_SpatialObserverStatus_Removed - commentId: F:XRTK.Definitions.SpatialAwarenessSystem.SpatialObserverStatus.Removed - fullName: XRTK.Definitions.SpatialAwarenessSystem.SpatialObserverStatus.Removed - nameWithType: SpatialObserverStatus.Removed -- uid: XRTK.Definitions.SpatialAwarenessSystem.SpatialObserverStatus.Updated - name: Updated - href: api/XRTK.Definitions.SpatialAwarenessSystem.SpatialObserverStatus.html#XRTK_Definitions_SpatialAwarenessSystem_SpatialObserverStatus_Updated - commentId: F:XRTK.Definitions.SpatialAwarenessSystem.SpatialObserverStatus.Updated - fullName: XRTK.Definitions.SpatialAwarenessSystem.SpatialObserverStatus.Updated - nameWithType: SpatialObserverStatus.Updated -- uid: XRTK.Definitions.TeleportSystem - name: XRTK.Definitions.TeleportSystem - href: api/XRTK.Definitions.TeleportSystem.html - commentId: N:XRTK.Definitions.TeleportSystem - fullName: XRTK.Definitions.TeleportSystem - nameWithType: XRTK.Definitions.TeleportSystem -- uid: XRTK.Definitions.TeleportSystem.MixedRealityTeleportSystemProfile - name: MixedRealityTeleportSystemProfile - href: api/XRTK.Definitions.TeleportSystem.MixedRealityTeleportSystemProfile.html - commentId: T:XRTK.Definitions.TeleportSystem.MixedRealityTeleportSystemProfile - fullName: XRTK.Definitions.TeleportSystem.MixedRealityTeleportSystemProfile - nameWithType: MixedRealityTeleportSystemProfile -- uid: XRTK.Definitions.TeleportSystem.MixedRealityTeleportSystemProfile.TeleportAction - name: TeleportAction - href: api/XRTK.Definitions.TeleportSystem.MixedRealityTeleportSystemProfile.html#XRTK_Definitions_TeleportSystem_MixedRealityTeleportSystemProfile_TeleportAction - commentId: P:XRTK.Definitions.TeleportSystem.MixedRealityTeleportSystemProfile.TeleportAction - fullName: XRTK.Definitions.TeleportSystem.MixedRealityTeleportSystemProfile.TeleportAction - nameWithType: MixedRealityTeleportSystemProfile.TeleportAction -- uid: XRTK.Definitions.TeleportSystem.MixedRealityTeleportSystemProfile.TeleportAction* - name: TeleportAction - href: api/XRTK.Definitions.TeleportSystem.MixedRealityTeleportSystemProfile.html#XRTK_Definitions_TeleportSystem_MixedRealityTeleportSystemProfile_TeleportAction_ - commentId: Overload:XRTK.Definitions.TeleportSystem.MixedRealityTeleportSystemProfile.TeleportAction - isSpec: "True" - fullName: XRTK.Definitions.TeleportSystem.MixedRealityTeleportSystemProfile.TeleportAction - nameWithType: MixedRealityTeleportSystemProfile.TeleportAction -- uid: XRTK.Definitions.TeleportSystem.MixedRealityTeleportSystemProfile.TeleportProvider - name: TeleportProvider - href: api/XRTK.Definitions.TeleportSystem.MixedRealityTeleportSystemProfile.html#XRTK_Definitions_TeleportSystem_MixedRealityTeleportSystemProfile_TeleportProvider - commentId: P:XRTK.Definitions.TeleportSystem.MixedRealityTeleportSystemProfile.TeleportProvider - fullName: XRTK.Definitions.TeleportSystem.MixedRealityTeleportSystemProfile.TeleportProvider - nameWithType: MixedRealityTeleportSystemProfile.TeleportProvider -- uid: XRTK.Definitions.TeleportSystem.MixedRealityTeleportSystemProfile.TeleportProvider* - name: TeleportProvider - href: api/XRTK.Definitions.TeleportSystem.MixedRealityTeleportSystemProfile.html#XRTK_Definitions_TeleportSystem_MixedRealityTeleportSystemProfile_TeleportProvider_ - commentId: Overload:XRTK.Definitions.TeleportSystem.MixedRealityTeleportSystemProfile.TeleportProvider - isSpec: "True" - fullName: XRTK.Definitions.TeleportSystem.MixedRealityTeleportSystemProfile.TeleportProvider - nameWithType: MixedRealityTeleportSystemProfile.TeleportProvider -- uid: XRTK.Definitions.TeleportSystem.MixedRealityTeleportValidationDataProviderProfile - name: MixedRealityTeleportValidationDataProviderProfile - href: api/XRTK.Definitions.TeleportSystem.MixedRealityTeleportValidationDataProviderProfile.html - commentId: T:XRTK.Definitions.TeleportSystem.MixedRealityTeleportValidationDataProviderProfile - fullName: XRTK.Definitions.TeleportSystem.MixedRealityTeleportValidationDataProviderProfile - nameWithType: MixedRealityTeleportValidationDataProviderProfile -- uid: XRTK.Definitions.TeleportSystem.MixedRealityTeleportValidationDataProviderProfile.InvalidLayers - name: InvalidLayers - href: api/XRTK.Definitions.TeleportSystem.MixedRealityTeleportValidationDataProviderProfile.html#XRTK_Definitions_TeleportSystem_MixedRealityTeleportValidationDataProviderProfile_InvalidLayers - commentId: P:XRTK.Definitions.TeleportSystem.MixedRealityTeleportValidationDataProviderProfile.InvalidLayers - fullName: XRTK.Definitions.TeleportSystem.MixedRealityTeleportValidationDataProviderProfile.InvalidLayers - nameWithType: MixedRealityTeleportValidationDataProviderProfile.InvalidLayers -- uid: XRTK.Definitions.TeleportSystem.MixedRealityTeleportValidationDataProviderProfile.InvalidLayers* - name: InvalidLayers - href: api/XRTK.Definitions.TeleportSystem.MixedRealityTeleportValidationDataProviderProfile.html#XRTK_Definitions_TeleportSystem_MixedRealityTeleportValidationDataProviderProfile_InvalidLayers_ - commentId: Overload:XRTK.Definitions.TeleportSystem.MixedRealityTeleportValidationDataProviderProfile.InvalidLayers - isSpec: "True" - fullName: XRTK.Definitions.TeleportSystem.MixedRealityTeleportValidationDataProviderProfile.InvalidLayers - nameWithType: MixedRealityTeleportValidationDataProviderProfile.InvalidLayers -- uid: XRTK.Definitions.TeleportSystem.MixedRealityTeleportValidationDataProviderProfile.MaxDistance - name: MaxDistance - href: api/XRTK.Definitions.TeleportSystem.MixedRealityTeleportValidationDataProviderProfile.html#XRTK_Definitions_TeleportSystem_MixedRealityTeleportValidationDataProviderProfile_MaxDistance - commentId: P:XRTK.Definitions.TeleportSystem.MixedRealityTeleportValidationDataProviderProfile.MaxDistance - fullName: XRTK.Definitions.TeleportSystem.MixedRealityTeleportValidationDataProviderProfile.MaxDistance - nameWithType: MixedRealityTeleportValidationDataProviderProfile.MaxDistance -- uid: XRTK.Definitions.TeleportSystem.MixedRealityTeleportValidationDataProviderProfile.MaxDistance* - name: MaxDistance - href: api/XRTK.Definitions.TeleportSystem.MixedRealityTeleportValidationDataProviderProfile.html#XRTK_Definitions_TeleportSystem_MixedRealityTeleportValidationDataProviderProfile_MaxDistance_ - commentId: Overload:XRTK.Definitions.TeleportSystem.MixedRealityTeleportValidationDataProviderProfile.MaxDistance - isSpec: "True" - fullName: XRTK.Definitions.TeleportSystem.MixedRealityTeleportValidationDataProviderProfile.MaxDistance - nameWithType: MixedRealityTeleportValidationDataProviderProfile.MaxDistance -- uid: XRTK.Definitions.TeleportSystem.MixedRealityTeleportValidationDataProviderProfile.MaxHeightDistance - name: MaxHeightDistance - href: api/XRTK.Definitions.TeleportSystem.MixedRealityTeleportValidationDataProviderProfile.html#XRTK_Definitions_TeleportSystem_MixedRealityTeleportValidationDataProviderProfile_MaxHeightDistance - commentId: P:XRTK.Definitions.TeleportSystem.MixedRealityTeleportValidationDataProviderProfile.MaxHeightDistance - fullName: XRTK.Definitions.TeleportSystem.MixedRealityTeleportValidationDataProviderProfile.MaxHeightDistance - nameWithType: MixedRealityTeleportValidationDataProviderProfile.MaxHeightDistance -- uid: XRTK.Definitions.TeleportSystem.MixedRealityTeleportValidationDataProviderProfile.MaxHeightDistance* - name: MaxHeightDistance - href: api/XRTK.Definitions.TeleportSystem.MixedRealityTeleportValidationDataProviderProfile.html#XRTK_Definitions_TeleportSystem_MixedRealityTeleportValidationDataProviderProfile_MaxHeightDistance_ - commentId: Overload:XRTK.Definitions.TeleportSystem.MixedRealityTeleportValidationDataProviderProfile.MaxHeightDistance - isSpec: "True" - fullName: XRTK.Definitions.TeleportSystem.MixedRealityTeleportValidationDataProviderProfile.MaxHeightDistance - nameWithType: MixedRealityTeleportValidationDataProviderProfile.MaxHeightDistance -- uid: XRTK.Definitions.TeleportSystem.MixedRealityTeleportValidationDataProviderProfile.UpDirectionThreshold - name: UpDirectionThreshold - href: api/XRTK.Definitions.TeleportSystem.MixedRealityTeleportValidationDataProviderProfile.html#XRTK_Definitions_TeleportSystem_MixedRealityTeleportValidationDataProviderProfile_UpDirectionThreshold - commentId: P:XRTK.Definitions.TeleportSystem.MixedRealityTeleportValidationDataProviderProfile.UpDirectionThreshold - fullName: XRTK.Definitions.TeleportSystem.MixedRealityTeleportValidationDataProviderProfile.UpDirectionThreshold - nameWithType: MixedRealityTeleportValidationDataProviderProfile.UpDirectionThreshold -- uid: XRTK.Definitions.TeleportSystem.MixedRealityTeleportValidationDataProviderProfile.UpDirectionThreshold* - name: UpDirectionThreshold - href: api/XRTK.Definitions.TeleportSystem.MixedRealityTeleportValidationDataProviderProfile.html#XRTK_Definitions_TeleportSystem_MixedRealityTeleportValidationDataProviderProfile_UpDirectionThreshold_ - commentId: Overload:XRTK.Definitions.TeleportSystem.MixedRealityTeleportValidationDataProviderProfile.UpDirectionThreshold - isSpec: "True" - fullName: XRTK.Definitions.TeleportSystem.MixedRealityTeleportValidationDataProviderProfile.UpDirectionThreshold - nameWithType: MixedRealityTeleportValidationDataProviderProfile.UpDirectionThreshold -- uid: XRTK.Definitions.TeleportSystem.MixedRealityTeleportValidationDataProviderProfile.ValidLayers - name: ValidLayers - href: api/XRTK.Definitions.TeleportSystem.MixedRealityTeleportValidationDataProviderProfile.html#XRTK_Definitions_TeleportSystem_MixedRealityTeleportValidationDataProviderProfile_ValidLayers - commentId: P:XRTK.Definitions.TeleportSystem.MixedRealityTeleportValidationDataProviderProfile.ValidLayers - fullName: XRTK.Definitions.TeleportSystem.MixedRealityTeleportValidationDataProviderProfile.ValidLayers - nameWithType: MixedRealityTeleportValidationDataProviderProfile.ValidLayers -- uid: XRTK.Definitions.TeleportSystem.MixedRealityTeleportValidationDataProviderProfile.ValidLayers* - name: ValidLayers - href: api/XRTK.Definitions.TeleportSystem.MixedRealityTeleportValidationDataProviderProfile.html#XRTK_Definitions_TeleportSystem_MixedRealityTeleportValidationDataProviderProfile_ValidLayers_ - commentId: Overload:XRTK.Definitions.TeleportSystem.MixedRealityTeleportValidationDataProviderProfile.ValidLayers - isSpec: "True" - fullName: XRTK.Definitions.TeleportSystem.MixedRealityTeleportValidationDataProviderProfile.ValidLayers - nameWithType: MixedRealityTeleportValidationDataProviderProfile.ValidLayers -- uid: XRTK.Definitions.Utilities - name: XRTK.Definitions.Utilities - href: api/XRTK.Definitions.Utilities.html - commentId: N:XRTK.Definitions.Utilities - fullName: XRTK.Definitions.Utilities - nameWithType: XRTK.Definitions.Utilities -- uid: XRTK.Definitions.Utilities.AnimatorParameter - name: AnimatorParameter - href: api/XRTK.Definitions.Utilities.AnimatorParameter.html - commentId: T:XRTK.Definitions.Utilities.AnimatorParameter - fullName: XRTK.Definitions.Utilities.AnimatorParameter - nameWithType: AnimatorParameter -- uid: XRTK.Definitions.Utilities.AnimatorParameter.#ctor(System.String,UnityEngine.AnimatorControllerParameterType,System.Int32,System.Single,System.Boolean) - name: AnimatorParameter(String, AnimatorControllerParameterType, Int32, Single, Boolean) - href: api/XRTK.Definitions.Utilities.AnimatorParameter.html#XRTK_Definitions_Utilities_AnimatorParameter__ctor_System_String_UnityEngine_AnimatorControllerParameterType_System_Int32_System_Single_System_Boolean_ - commentId: M:XRTK.Definitions.Utilities.AnimatorParameter.#ctor(System.String,UnityEngine.AnimatorControllerParameterType,System.Int32,System.Single,System.Boolean) - fullName: XRTK.Definitions.Utilities.AnimatorParameter.AnimatorParameter(System.String, UnityEngine.AnimatorControllerParameterType, System.Int32, System.Single, System.Boolean) - nameWithType: AnimatorParameter.AnimatorParameter(String, AnimatorControllerParameterType, Int32, Single, Boolean) -- uid: XRTK.Definitions.Utilities.AnimatorParameter.#ctor* - name: AnimatorParameter - href: api/XRTK.Definitions.Utilities.AnimatorParameter.html#XRTK_Definitions_Utilities_AnimatorParameter__ctor_ - commentId: Overload:XRTK.Definitions.Utilities.AnimatorParameter.#ctor - isSpec: "True" - fullName: XRTK.Definitions.Utilities.AnimatorParameter.AnimatorParameter - nameWithType: AnimatorParameter.AnimatorParameter -- uid: XRTK.Definitions.Utilities.AnimatorParameter.DefaultBool - name: DefaultBool - href: api/XRTK.Definitions.Utilities.AnimatorParameter.html#XRTK_Definitions_Utilities_AnimatorParameter_DefaultBool - commentId: P:XRTK.Definitions.Utilities.AnimatorParameter.DefaultBool - fullName: XRTK.Definitions.Utilities.AnimatorParameter.DefaultBool - nameWithType: AnimatorParameter.DefaultBool -- uid: XRTK.Definitions.Utilities.AnimatorParameter.DefaultBool* - name: DefaultBool - href: api/XRTK.Definitions.Utilities.AnimatorParameter.html#XRTK_Definitions_Utilities_AnimatorParameter_DefaultBool_ - commentId: Overload:XRTK.Definitions.Utilities.AnimatorParameter.DefaultBool - isSpec: "True" - fullName: XRTK.Definitions.Utilities.AnimatorParameter.DefaultBool - nameWithType: AnimatorParameter.DefaultBool -- uid: XRTK.Definitions.Utilities.AnimatorParameter.DefaultFloat - name: DefaultFloat - href: api/XRTK.Definitions.Utilities.AnimatorParameter.html#XRTK_Definitions_Utilities_AnimatorParameter_DefaultFloat - commentId: P:XRTK.Definitions.Utilities.AnimatorParameter.DefaultFloat - fullName: XRTK.Definitions.Utilities.AnimatorParameter.DefaultFloat - nameWithType: AnimatorParameter.DefaultFloat -- uid: XRTK.Definitions.Utilities.AnimatorParameter.DefaultFloat* - name: DefaultFloat - href: api/XRTK.Definitions.Utilities.AnimatorParameter.html#XRTK_Definitions_Utilities_AnimatorParameter_DefaultFloat_ - commentId: Overload:XRTK.Definitions.Utilities.AnimatorParameter.DefaultFloat - isSpec: "True" - fullName: XRTK.Definitions.Utilities.AnimatorParameter.DefaultFloat - nameWithType: AnimatorParameter.DefaultFloat -- uid: XRTK.Definitions.Utilities.AnimatorParameter.DefaultInt - name: DefaultInt - href: api/XRTK.Definitions.Utilities.AnimatorParameter.html#XRTK_Definitions_Utilities_AnimatorParameter_DefaultInt - commentId: P:XRTK.Definitions.Utilities.AnimatorParameter.DefaultInt - fullName: XRTK.Definitions.Utilities.AnimatorParameter.DefaultInt - nameWithType: AnimatorParameter.DefaultInt -- uid: XRTK.Definitions.Utilities.AnimatorParameter.DefaultInt* - name: DefaultInt - href: api/XRTK.Definitions.Utilities.AnimatorParameter.html#XRTK_Definitions_Utilities_AnimatorParameter_DefaultInt_ - commentId: Overload:XRTK.Definitions.Utilities.AnimatorParameter.DefaultInt - isSpec: "True" - fullName: XRTK.Definitions.Utilities.AnimatorParameter.DefaultInt - nameWithType: AnimatorParameter.DefaultInt -- uid: XRTK.Definitions.Utilities.AnimatorParameter.Name - name: Name - href: api/XRTK.Definitions.Utilities.AnimatorParameter.html#XRTK_Definitions_Utilities_AnimatorParameter_Name - commentId: P:XRTK.Definitions.Utilities.AnimatorParameter.Name - fullName: XRTK.Definitions.Utilities.AnimatorParameter.Name - nameWithType: AnimatorParameter.Name -- uid: XRTK.Definitions.Utilities.AnimatorParameter.Name* - name: Name - href: api/XRTK.Definitions.Utilities.AnimatorParameter.html#XRTK_Definitions_Utilities_AnimatorParameter_Name_ - commentId: Overload:XRTK.Definitions.Utilities.AnimatorParameter.Name - isSpec: "True" - fullName: XRTK.Definitions.Utilities.AnimatorParameter.Name - nameWithType: AnimatorParameter.Name -- uid: XRTK.Definitions.Utilities.AnimatorParameter.NameHash - name: NameHash - href: api/XRTK.Definitions.Utilities.AnimatorParameter.html#XRTK_Definitions_Utilities_AnimatorParameter_NameHash - commentId: P:XRTK.Definitions.Utilities.AnimatorParameter.NameHash - fullName: XRTK.Definitions.Utilities.AnimatorParameter.NameHash - nameWithType: AnimatorParameter.NameHash -- uid: XRTK.Definitions.Utilities.AnimatorParameter.NameHash* - name: NameHash - href: api/XRTK.Definitions.Utilities.AnimatorParameter.html#XRTK_Definitions_Utilities_AnimatorParameter_NameHash_ - commentId: Overload:XRTK.Definitions.Utilities.AnimatorParameter.NameHash - isSpec: "True" - fullName: XRTK.Definitions.Utilities.AnimatorParameter.NameHash - nameWithType: AnimatorParameter.NameHash -- uid: XRTK.Definitions.Utilities.AnimatorParameter.ParameterType - name: ParameterType - href: api/XRTK.Definitions.Utilities.AnimatorParameter.html#XRTK_Definitions_Utilities_AnimatorParameter_ParameterType - commentId: P:XRTK.Definitions.Utilities.AnimatorParameter.ParameterType - fullName: XRTK.Definitions.Utilities.AnimatorParameter.ParameterType - nameWithType: AnimatorParameter.ParameterType -- uid: XRTK.Definitions.Utilities.AnimatorParameter.ParameterType* - name: ParameterType - href: api/XRTK.Definitions.Utilities.AnimatorParameter.html#XRTK_Definitions_Utilities_AnimatorParameter_ParameterType_ - commentId: Overload:XRTK.Definitions.Utilities.AnimatorParameter.ParameterType - isSpec: "True" - fullName: XRTK.Definitions.Utilities.AnimatorParameter.ParameterType - nameWithType: AnimatorParameter.ParameterType -- uid: XRTK.Definitions.Utilities.AutoStartBehavior - name: AutoStartBehavior - href: api/XRTK.Definitions.Utilities.AutoStartBehavior.html - commentId: T:XRTK.Definitions.Utilities.AutoStartBehavior - fullName: XRTK.Definitions.Utilities.AutoStartBehavior - nameWithType: AutoStartBehavior -- uid: XRTK.Definitions.Utilities.AutoStartBehavior.AutoStart - name: AutoStart - href: api/XRTK.Definitions.Utilities.AutoStartBehavior.html#XRTK_Definitions_Utilities_AutoStartBehavior_AutoStart - commentId: F:XRTK.Definitions.Utilities.AutoStartBehavior.AutoStart - fullName: XRTK.Definitions.Utilities.AutoStartBehavior.AutoStart - nameWithType: AutoStartBehavior.AutoStart -- uid: XRTK.Definitions.Utilities.AutoStartBehavior.ManualStart - name: ManualStart - href: api/XRTK.Definitions.Utilities.AutoStartBehavior.html#XRTK_Definitions_Utilities_AutoStartBehavior_ManualStart - commentId: F:XRTK.Definitions.Utilities.AutoStartBehavior.ManualStart - fullName: XRTK.Definitions.Utilities.AutoStartBehavior.ManualStart - nameWithType: AutoStartBehavior.ManualStart -- uid: XRTK.Definitions.Utilities.AxisType - name: AxisType - href: api/XRTK.Definitions.Utilities.AxisType.html - commentId: T:XRTK.Definitions.Utilities.AxisType - fullName: XRTK.Definitions.Utilities.AxisType - nameWithType: AxisType -- uid: XRTK.Definitions.Utilities.AxisType.Digital - name: Digital - href: api/XRTK.Definitions.Utilities.AxisType.html#XRTK_Definitions_Utilities_AxisType_Digital - commentId: F:XRTK.Definitions.Utilities.AxisType.Digital - fullName: XRTK.Definitions.Utilities.AxisType.Digital - nameWithType: AxisType.Digital -- uid: XRTK.Definitions.Utilities.AxisType.DualAxis - name: DualAxis - href: api/XRTK.Definitions.Utilities.AxisType.html#XRTK_Definitions_Utilities_AxisType_DualAxis - commentId: F:XRTK.Definitions.Utilities.AxisType.DualAxis - fullName: XRTK.Definitions.Utilities.AxisType.DualAxis - nameWithType: AxisType.DualAxis -- uid: XRTK.Definitions.Utilities.AxisType.None - name: None - href: api/XRTK.Definitions.Utilities.AxisType.html#XRTK_Definitions_Utilities_AxisType_None - commentId: F:XRTK.Definitions.Utilities.AxisType.None - fullName: XRTK.Definitions.Utilities.AxisType.None - nameWithType: AxisType.None -- uid: XRTK.Definitions.Utilities.AxisType.Raw - name: Raw - href: api/XRTK.Definitions.Utilities.AxisType.html#XRTK_Definitions_Utilities_AxisType_Raw - commentId: F:XRTK.Definitions.Utilities.AxisType.Raw - fullName: XRTK.Definitions.Utilities.AxisType.Raw - nameWithType: AxisType.Raw -- uid: XRTK.Definitions.Utilities.AxisType.SingleAxis - name: SingleAxis - href: api/XRTK.Definitions.Utilities.AxisType.html#XRTK_Definitions_Utilities_AxisType_SingleAxis - commentId: F:XRTK.Definitions.Utilities.AxisType.SingleAxis - fullName: XRTK.Definitions.Utilities.AxisType.SingleAxis - nameWithType: AxisType.SingleAxis -- uid: XRTK.Definitions.Utilities.AxisType.SixDof - name: SixDof - href: api/XRTK.Definitions.Utilities.AxisType.html#XRTK_Definitions_Utilities_AxisType_SixDof - commentId: F:XRTK.Definitions.Utilities.AxisType.SixDof - fullName: XRTK.Definitions.Utilities.AxisType.SixDof - nameWithType: AxisType.SixDof -- uid: XRTK.Definitions.Utilities.AxisType.ThreeDofPosition - name: ThreeDofPosition - href: api/XRTK.Definitions.Utilities.AxisType.html#XRTK_Definitions_Utilities_AxisType_ThreeDofPosition - commentId: F:XRTK.Definitions.Utilities.AxisType.ThreeDofPosition - fullName: XRTK.Definitions.Utilities.AxisType.ThreeDofPosition - nameWithType: AxisType.ThreeDofPosition -- uid: XRTK.Definitions.Utilities.AxisType.ThreeDofRotation - name: ThreeDofRotation - href: api/XRTK.Definitions.Utilities.AxisType.html#XRTK_Definitions_Utilities_AxisType_ThreeDofRotation - commentId: F:XRTK.Definitions.Utilities.AxisType.ThreeDofRotation - fullName: XRTK.Definitions.Utilities.AxisType.ThreeDofRotation - nameWithType: AxisType.ThreeDofRotation -- uid: XRTK.Definitions.Utilities.CardinalAxis - name: CardinalAxis - href: api/XRTK.Definitions.Utilities.CardinalAxis.html - commentId: T:XRTK.Definitions.Utilities.CardinalAxis - fullName: XRTK.Definitions.Utilities.CardinalAxis - nameWithType: CardinalAxis -- uid: XRTK.Definitions.Utilities.CardinalAxis.X - name: X - href: api/XRTK.Definitions.Utilities.CardinalAxis.html#XRTK_Definitions_Utilities_CardinalAxis_X - commentId: F:XRTK.Definitions.Utilities.CardinalAxis.X - fullName: XRTK.Definitions.Utilities.CardinalAxis.X - nameWithType: CardinalAxis.X -- uid: XRTK.Definitions.Utilities.CardinalAxis.Y - name: Y - href: api/XRTK.Definitions.Utilities.CardinalAxis.html#XRTK_Definitions_Utilities_CardinalAxis_Y - commentId: F:XRTK.Definitions.Utilities.CardinalAxis.Y - fullName: XRTK.Definitions.Utilities.CardinalAxis.Y - nameWithType: CardinalAxis.Y -- uid: XRTK.Definitions.Utilities.CardinalAxis.Z - name: Z - href: api/XRTK.Definitions.Utilities.CardinalAxis.html#XRTK_Definitions_Utilities_CardinalAxis_Z - commentId: F:XRTK.Definitions.Utilities.CardinalAxis.Z - fullName: XRTK.Definitions.Utilities.CardinalAxis.Z - nameWithType: CardinalAxis.Z -- uid: XRTK.Definitions.Utilities.CollationOrderType - name: CollationOrderType - href: api/XRTK.Definitions.Utilities.CollationOrderType.html - commentId: T:XRTK.Definitions.Utilities.CollationOrderType - fullName: XRTK.Definitions.Utilities.CollationOrderType - nameWithType: CollationOrderType -- uid: XRTK.Definitions.Utilities.CollationOrderType.Alphabetical - name: Alphabetical - href: api/XRTK.Definitions.Utilities.CollationOrderType.html#XRTK_Definitions_Utilities_CollationOrderType_Alphabetical - commentId: F:XRTK.Definitions.Utilities.CollationOrderType.Alphabetical - fullName: XRTK.Definitions.Utilities.CollationOrderType.Alphabetical - nameWithType: CollationOrderType.Alphabetical -- uid: XRTK.Definitions.Utilities.CollationOrderType.AlphabeticalReversed - name: AlphabeticalReversed - href: api/XRTK.Definitions.Utilities.CollationOrderType.html#XRTK_Definitions_Utilities_CollationOrderType_AlphabeticalReversed - commentId: F:XRTK.Definitions.Utilities.CollationOrderType.AlphabeticalReversed - fullName: XRTK.Definitions.Utilities.CollationOrderType.AlphabeticalReversed - nameWithType: CollationOrderType.AlphabeticalReversed -- uid: XRTK.Definitions.Utilities.CollationOrderType.ChildOrder - name: ChildOrder - href: api/XRTK.Definitions.Utilities.CollationOrderType.html#XRTK_Definitions_Utilities_CollationOrderType_ChildOrder - commentId: F:XRTK.Definitions.Utilities.CollationOrderType.ChildOrder - fullName: XRTK.Definitions.Utilities.CollationOrderType.ChildOrder - nameWithType: CollationOrderType.ChildOrder -- uid: XRTK.Definitions.Utilities.CollationOrderType.ChildOrderReversed - name: ChildOrderReversed - href: api/XRTK.Definitions.Utilities.CollationOrderType.html#XRTK_Definitions_Utilities_CollationOrderType_ChildOrderReversed - commentId: F:XRTK.Definitions.Utilities.CollationOrderType.ChildOrderReversed - fullName: XRTK.Definitions.Utilities.CollationOrderType.ChildOrderReversed - nameWithType: CollationOrderType.ChildOrderReversed -- uid: XRTK.Definitions.Utilities.CollationOrderType.None - name: None - href: api/XRTK.Definitions.Utilities.CollationOrderType.html#XRTK_Definitions_Utilities_CollationOrderType_None - commentId: F:XRTK.Definitions.Utilities.CollationOrderType.None - fullName: XRTK.Definitions.Utilities.CollationOrderType.None - nameWithType: CollationOrderType.None -- uid: XRTK.Definitions.Utilities.CreateProfileMenuItemIndices - name: CreateProfileMenuItemIndices - href: api/XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.html - commentId: T:XRTK.Definitions.Utilities.CreateProfileMenuItemIndices - fullName: XRTK.Definitions.Utilities.CreateProfileMenuItemIndices - nameWithType: CreateProfileMenuItemIndices -- uid: XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.Boundary - name: Boundary - href: api/XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.html#XRTK_Definitions_Utilities_CreateProfileMenuItemIndices_Boundary - commentId: F:XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.Boundary - fullName: XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.Boundary - nameWithType: CreateProfileMenuItemIndices.Boundary -- uid: XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.Camera - name: Camera - href: api/XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.html#XRTK_Definitions_Utilities_CreateProfileMenuItemIndices_Camera - commentId: F:XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.Camera - fullName: XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.Camera - nameWithType: CreateProfileMenuItemIndices.Camera -- uid: XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.Configuration - name: Configuration - href: api/XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.html#XRTK_Definitions_Utilities_CreateProfileMenuItemIndices_Configuration - commentId: F:XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.Configuration - fullName: XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.Configuration - nameWithType: CreateProfileMenuItemIndices.Configuration -- uid: XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.ControllerVisualization - name: ControllerVisualization - href: api/XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.html#XRTK_Definitions_Utilities_CreateProfileMenuItemIndices_ControllerVisualization - commentId: F:XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.ControllerVisualization - fullName: XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.ControllerVisualization - nameWithType: CreateProfileMenuItemIndices.ControllerVisualization -- uid: XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.Diagnostics - name: Diagnostics - href: api/XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.html#XRTK_Definitions_Utilities_CreateProfileMenuItemIndices_Diagnostics - commentId: F:XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.Diagnostics - fullName: XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.Diagnostics - nameWithType: CreateProfileMenuItemIndices.Diagnostics -- uid: XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.Gestures - name: Gestures - href: api/XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.html#XRTK_Definitions_Utilities_CreateProfileMenuItemIndices_Gestures - commentId: F:XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.Gestures - fullName: XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.Gestures - nameWithType: CreateProfileMenuItemIndices.Gestures -- uid: XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.Input - name: Input - href: api/XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.html#XRTK_Definitions_Utilities_CreateProfileMenuItemIndices_Input - commentId: F:XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.Input - fullName: XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.Input - nameWithType: CreateProfileMenuItemIndices.Input -- uid: XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.InputActions - name: InputActions - href: api/XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.html#XRTK_Definitions_Utilities_CreateProfileMenuItemIndices_InputActions - commentId: F:XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.InputActions - fullName: XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.InputActions - nameWithType: CreateProfileMenuItemIndices.InputActions -- uid: XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.InputDataProviders - name: InputDataProviders - href: api/XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.html#XRTK_Definitions_Utilities_CreateProfileMenuItemIndices_InputDataProviders - commentId: F:XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.InputDataProviders - fullName: XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.InputDataProviders - nameWithType: CreateProfileMenuItemIndices.InputDataProviders -- uid: XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.InputProcessors - name: InputProcessors - href: api/XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.html#XRTK_Definitions_Utilities_CreateProfileMenuItemIndices_InputProcessors - commentId: F:XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.InputProcessors - fullName: XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.InputProcessors - nameWithType: CreateProfileMenuItemIndices.InputProcessors -- uid: XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.Networking - name: Networking - href: api/XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.html#XRTK_Definitions_Utilities_CreateProfileMenuItemIndices_Networking - commentId: F:XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.Networking - fullName: XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.Networking - nameWithType: CreateProfileMenuItemIndices.Networking -- uid: XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.NetworkingDataProviders - name: NetworkingDataProviders - href: api/XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.html#XRTK_Definitions_Utilities_CreateProfileMenuItemIndices_NetworkingDataProviders - commentId: F:XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.NetworkingDataProviders - fullName: XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.NetworkingDataProviders - nameWithType: CreateProfileMenuItemIndices.NetworkingDataProviders -- uid: XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.Pointer - name: Pointer - href: api/XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.html#XRTK_Definitions_Utilities_CreateProfileMenuItemIndices_Pointer - commentId: F:XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.Pointer - fullName: XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.Pointer - nameWithType: CreateProfileMenuItemIndices.Pointer -- uid: XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.RegisteredServiceProviders - name: RegisteredServiceProviders - href: api/XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.html#XRTK_Definitions_Utilities_CreateProfileMenuItemIndices_RegisteredServiceProviders - commentId: F:XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.RegisteredServiceProviders - fullName: XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.RegisteredServiceProviders - nameWithType: CreateProfileMenuItemIndices.RegisteredServiceProviders -- uid: XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.Settings - name: Settings - href: api/XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.html#XRTK_Definitions_Utilities_CreateProfileMenuItemIndices_Settings - commentId: F:XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.Settings - fullName: XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.Settings - nameWithType: CreateProfileMenuItemIndices.Settings -- uid: XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.SpatialAwareness - name: SpatialAwareness - href: api/XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.html#XRTK_Definitions_Utilities_CreateProfileMenuItemIndices_SpatialAwareness - commentId: F:XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.SpatialAwareness - fullName: XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.SpatialAwareness - nameWithType: CreateProfileMenuItemIndices.SpatialAwareness -- uid: XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.SpatialAwarenessDataProviders - name: SpatialAwarenessDataProviders - href: api/XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.html#XRTK_Definitions_Utilities_CreateProfileMenuItemIndices_SpatialAwarenessDataProviders - commentId: F:XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.SpatialAwarenessDataProviders - fullName: XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.SpatialAwarenessDataProviders - nameWithType: CreateProfileMenuItemIndices.SpatialAwarenessDataProviders -- uid: XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.SpeechCommands - name: SpeechCommands - href: api/XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.html#XRTK_Definitions_Utilities_CreateProfileMenuItemIndices_SpeechCommands - commentId: F:XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.SpeechCommands - fullName: XRTK.Definitions.Utilities.CreateProfileMenuItemIndices.SpeechCommands - nameWithType: CreateProfileMenuItemIndices.SpeechCommands -- uid: XRTK.Definitions.Utilities.FlattenMode - name: FlattenMode - href: api/XRTK.Definitions.Utilities.FlattenMode.html - commentId: T:XRTK.Definitions.Utilities.FlattenMode - fullName: XRTK.Definitions.Utilities.FlattenMode - nameWithType: FlattenMode -- uid: XRTK.Definitions.Utilities.FlattenMode.DoNotFlatten - name: DoNotFlatten - href: api/XRTK.Definitions.Utilities.FlattenMode.html#XRTK_Definitions_Utilities_FlattenMode_DoNotFlatten - commentId: F:XRTK.Definitions.Utilities.FlattenMode.DoNotFlatten - fullName: XRTK.Definitions.Utilities.FlattenMode.DoNotFlatten - nameWithType: FlattenMode.DoNotFlatten -- uid: XRTK.Definitions.Utilities.FlattenMode.FlattenAuto - name: FlattenAuto - href: api/XRTK.Definitions.Utilities.FlattenMode.html#XRTK_Definitions_Utilities_FlattenMode_FlattenAuto - commentId: F:XRTK.Definitions.Utilities.FlattenMode.FlattenAuto - fullName: XRTK.Definitions.Utilities.FlattenMode.FlattenAuto - nameWithType: FlattenMode.FlattenAuto -- uid: XRTK.Definitions.Utilities.FlattenMode.FlattenX - name: FlattenX - href: api/XRTK.Definitions.Utilities.FlattenMode.html#XRTK_Definitions_Utilities_FlattenMode_FlattenX - commentId: F:XRTK.Definitions.Utilities.FlattenMode.FlattenX - fullName: XRTK.Definitions.Utilities.FlattenMode.FlattenX - nameWithType: FlattenMode.FlattenX -- uid: XRTK.Definitions.Utilities.FlattenMode.FlattenY - name: FlattenY - href: api/XRTK.Definitions.Utilities.FlattenMode.html#XRTK_Definitions_Utilities_FlattenMode_FlattenY - commentId: F:XRTK.Definitions.Utilities.FlattenMode.FlattenY - fullName: XRTK.Definitions.Utilities.FlattenMode.FlattenY - nameWithType: FlattenMode.FlattenY -- uid: XRTK.Definitions.Utilities.FlattenMode.FlattenZ - name: FlattenZ - href: api/XRTK.Definitions.Utilities.FlattenMode.html#XRTK_Definitions_Utilities_FlattenMode_FlattenZ - commentId: F:XRTK.Definitions.Utilities.FlattenMode.FlattenZ - fullName: XRTK.Definitions.Utilities.FlattenMode.FlattenZ - nameWithType: FlattenMode.FlattenZ -- uid: XRTK.Definitions.Utilities.Handedness - name: Handedness - href: api/XRTK.Definitions.Utilities.Handedness.html - commentId: T:XRTK.Definitions.Utilities.Handedness - fullName: XRTK.Definitions.Utilities.Handedness - nameWithType: Handedness -- uid: XRTK.Definitions.Utilities.Handedness.Any - name: Any - href: api/XRTK.Definitions.Utilities.Handedness.html#XRTK_Definitions_Utilities_Handedness_Any - commentId: F:XRTK.Definitions.Utilities.Handedness.Any - fullName: XRTK.Definitions.Utilities.Handedness.Any - nameWithType: Handedness.Any -- uid: XRTK.Definitions.Utilities.Handedness.Both - name: Both - href: api/XRTK.Definitions.Utilities.Handedness.html#XRTK_Definitions_Utilities_Handedness_Both - commentId: F:XRTK.Definitions.Utilities.Handedness.Both - fullName: XRTK.Definitions.Utilities.Handedness.Both - nameWithType: Handedness.Both -- uid: XRTK.Definitions.Utilities.Handedness.Left - name: Left - href: api/XRTK.Definitions.Utilities.Handedness.html#XRTK_Definitions_Utilities_Handedness_Left - commentId: F:XRTK.Definitions.Utilities.Handedness.Left - fullName: XRTK.Definitions.Utilities.Handedness.Left - nameWithType: Handedness.Left -- uid: XRTK.Definitions.Utilities.Handedness.None - name: None - href: api/XRTK.Definitions.Utilities.Handedness.html#XRTK_Definitions_Utilities_Handedness_None - commentId: F:XRTK.Definitions.Utilities.Handedness.None - fullName: XRTK.Definitions.Utilities.Handedness.None - nameWithType: Handedness.None -- uid: XRTK.Definitions.Utilities.Handedness.Other - name: Other - href: api/XRTK.Definitions.Utilities.Handedness.html#XRTK_Definitions_Utilities_Handedness_Other - commentId: F:XRTK.Definitions.Utilities.Handedness.Other - fullName: XRTK.Definitions.Utilities.Handedness.Other - nameWithType: Handedness.Other -- uid: XRTK.Definitions.Utilities.Handedness.Right - name: Right - href: api/XRTK.Definitions.Utilities.Handedness.html#XRTK_Definitions_Utilities_Handedness_Right - commentId: F:XRTK.Definitions.Utilities.Handedness.Right - fullName: XRTK.Definitions.Utilities.Handedness.Right - nameWithType: Handedness.Right -- uid: XRTK.Definitions.Utilities.MixedRealityPose - name: MixedRealityPose - href: api/XRTK.Definitions.Utilities.MixedRealityPose.html - commentId: T:XRTK.Definitions.Utilities.MixedRealityPose - fullName: XRTK.Definitions.Utilities.MixedRealityPose - nameWithType: MixedRealityPose -- uid: XRTK.Definitions.Utilities.MixedRealityPose.#ctor(UnityEngine.Quaternion) - name: MixedRealityPose(Quaternion) - href: api/XRTK.Definitions.Utilities.MixedRealityPose.html#XRTK_Definitions_Utilities_MixedRealityPose__ctor_UnityEngine_Quaternion_ - commentId: M:XRTK.Definitions.Utilities.MixedRealityPose.#ctor(UnityEngine.Quaternion) - fullName: XRTK.Definitions.Utilities.MixedRealityPose.MixedRealityPose(UnityEngine.Quaternion) - nameWithType: MixedRealityPose.MixedRealityPose(Quaternion) -- uid: XRTK.Definitions.Utilities.MixedRealityPose.#ctor(UnityEngine.Vector3) - name: MixedRealityPose(Vector3) - href: api/XRTK.Definitions.Utilities.MixedRealityPose.html#XRTK_Definitions_Utilities_MixedRealityPose__ctor_UnityEngine_Vector3_ - commentId: M:XRTK.Definitions.Utilities.MixedRealityPose.#ctor(UnityEngine.Vector3) - fullName: XRTK.Definitions.Utilities.MixedRealityPose.MixedRealityPose(UnityEngine.Vector3) - nameWithType: MixedRealityPose.MixedRealityPose(Vector3) -- uid: XRTK.Definitions.Utilities.MixedRealityPose.#ctor(UnityEngine.Vector3,UnityEngine.Quaternion) - name: MixedRealityPose(Vector3, Quaternion) - href: api/XRTK.Definitions.Utilities.MixedRealityPose.html#XRTK_Definitions_Utilities_MixedRealityPose__ctor_UnityEngine_Vector3_UnityEngine_Quaternion_ - commentId: M:XRTK.Definitions.Utilities.MixedRealityPose.#ctor(UnityEngine.Vector3,UnityEngine.Quaternion) - fullName: XRTK.Definitions.Utilities.MixedRealityPose.MixedRealityPose(UnityEngine.Vector3, UnityEngine.Quaternion) - nameWithType: MixedRealityPose.MixedRealityPose(Vector3, Quaternion) -- uid: XRTK.Definitions.Utilities.MixedRealityPose.#ctor* - name: MixedRealityPose - href: api/XRTK.Definitions.Utilities.MixedRealityPose.html#XRTK_Definitions_Utilities_MixedRealityPose__ctor_ - commentId: Overload:XRTK.Definitions.Utilities.MixedRealityPose.#ctor - isSpec: "True" - fullName: XRTK.Definitions.Utilities.MixedRealityPose.MixedRealityPose - nameWithType: MixedRealityPose.MixedRealityPose -- uid: XRTK.Definitions.Utilities.MixedRealityPose.Equals(System.Object) - name: Equals(Object) - href: api/XRTK.Definitions.Utilities.MixedRealityPose.html#XRTK_Definitions_Utilities_MixedRealityPose_Equals_System_Object_ - commentId: M:XRTK.Definitions.Utilities.MixedRealityPose.Equals(System.Object) - fullName: XRTK.Definitions.Utilities.MixedRealityPose.Equals(System.Object) - nameWithType: MixedRealityPose.Equals(Object) -- uid: XRTK.Definitions.Utilities.MixedRealityPose.Equals(XRTK.Definitions.Utilities.MixedRealityPose) - name: Equals(MixedRealityPose) - href: api/XRTK.Definitions.Utilities.MixedRealityPose.html#XRTK_Definitions_Utilities_MixedRealityPose_Equals_XRTK_Definitions_Utilities_MixedRealityPose_ - commentId: M:XRTK.Definitions.Utilities.MixedRealityPose.Equals(XRTK.Definitions.Utilities.MixedRealityPose) - fullName: XRTK.Definitions.Utilities.MixedRealityPose.Equals(XRTK.Definitions.Utilities.MixedRealityPose) - nameWithType: MixedRealityPose.Equals(MixedRealityPose) -- uid: XRTK.Definitions.Utilities.MixedRealityPose.Equals* - name: Equals - href: api/XRTK.Definitions.Utilities.MixedRealityPose.html#XRTK_Definitions_Utilities_MixedRealityPose_Equals_ - commentId: Overload:XRTK.Definitions.Utilities.MixedRealityPose.Equals - isSpec: "True" - fullName: XRTK.Definitions.Utilities.MixedRealityPose.Equals - nameWithType: MixedRealityPose.Equals -- uid: XRTK.Definitions.Utilities.MixedRealityPose.Forward - name: Forward - href: api/XRTK.Definitions.Utilities.MixedRealityPose.html#XRTK_Definitions_Utilities_MixedRealityPose_Forward - commentId: P:XRTK.Definitions.Utilities.MixedRealityPose.Forward - fullName: XRTK.Definitions.Utilities.MixedRealityPose.Forward - nameWithType: MixedRealityPose.Forward -- uid: XRTK.Definitions.Utilities.MixedRealityPose.Forward* - name: Forward - href: api/XRTK.Definitions.Utilities.MixedRealityPose.html#XRTK_Definitions_Utilities_MixedRealityPose_Forward_ - commentId: Overload:XRTK.Definitions.Utilities.MixedRealityPose.Forward - isSpec: "True" - fullName: XRTK.Definitions.Utilities.MixedRealityPose.Forward - nameWithType: MixedRealityPose.Forward -- uid: XRTK.Definitions.Utilities.MixedRealityPose.GetHashCode - name: GetHashCode() - href: api/XRTK.Definitions.Utilities.MixedRealityPose.html#XRTK_Definitions_Utilities_MixedRealityPose_GetHashCode - commentId: M:XRTK.Definitions.Utilities.MixedRealityPose.GetHashCode - fullName: XRTK.Definitions.Utilities.MixedRealityPose.GetHashCode() - nameWithType: MixedRealityPose.GetHashCode() -- uid: XRTK.Definitions.Utilities.MixedRealityPose.GetHashCode* - name: GetHashCode - href: api/XRTK.Definitions.Utilities.MixedRealityPose.html#XRTK_Definitions_Utilities_MixedRealityPose_GetHashCode_ - commentId: Overload:XRTK.Definitions.Utilities.MixedRealityPose.GetHashCode - isSpec: "True" - fullName: XRTK.Definitions.Utilities.MixedRealityPose.GetHashCode - nameWithType: MixedRealityPose.GetHashCode -- uid: XRTK.Definitions.Utilities.MixedRealityPose.op_Addition(XRTK.Definitions.Utilities.MixedRealityPose,XRTK.Definitions.Utilities.MixedRealityPose) - name: Addition(MixedRealityPose, MixedRealityPose) - href: api/XRTK.Definitions.Utilities.MixedRealityPose.html#XRTK_Definitions_Utilities_MixedRealityPose_op_Addition_XRTK_Definitions_Utilities_MixedRealityPose_XRTK_Definitions_Utilities_MixedRealityPose_ - commentId: M:XRTK.Definitions.Utilities.MixedRealityPose.op_Addition(XRTK.Definitions.Utilities.MixedRealityPose,XRTK.Definitions.Utilities.MixedRealityPose) - fullName: XRTK.Definitions.Utilities.MixedRealityPose.Addition(XRTK.Definitions.Utilities.MixedRealityPose, XRTK.Definitions.Utilities.MixedRealityPose) - nameWithType: MixedRealityPose.Addition(MixedRealityPose, MixedRealityPose) -- uid: XRTK.Definitions.Utilities.MixedRealityPose.op_Addition* - name: Addition - href: api/XRTK.Definitions.Utilities.MixedRealityPose.html#XRTK_Definitions_Utilities_MixedRealityPose_op_Addition_ - commentId: Overload:XRTK.Definitions.Utilities.MixedRealityPose.op_Addition - isSpec: "True" - fullName: XRTK.Definitions.Utilities.MixedRealityPose.Addition - nameWithType: MixedRealityPose.Addition -- uid: XRTK.Definitions.Utilities.MixedRealityPose.op_Equality(XRTK.Definitions.Utilities.MixedRealityPose,XRTK.Definitions.Utilities.MixedRealityPose) - name: Equality(MixedRealityPose, MixedRealityPose) - href: api/XRTK.Definitions.Utilities.MixedRealityPose.html#XRTK_Definitions_Utilities_MixedRealityPose_op_Equality_XRTK_Definitions_Utilities_MixedRealityPose_XRTK_Definitions_Utilities_MixedRealityPose_ - commentId: M:XRTK.Definitions.Utilities.MixedRealityPose.op_Equality(XRTK.Definitions.Utilities.MixedRealityPose,XRTK.Definitions.Utilities.MixedRealityPose) - fullName: XRTK.Definitions.Utilities.MixedRealityPose.Equality(XRTK.Definitions.Utilities.MixedRealityPose, XRTK.Definitions.Utilities.MixedRealityPose) - nameWithType: MixedRealityPose.Equality(MixedRealityPose, MixedRealityPose) -- uid: XRTK.Definitions.Utilities.MixedRealityPose.op_Equality* - name: Equality - href: api/XRTK.Definitions.Utilities.MixedRealityPose.html#XRTK_Definitions_Utilities_MixedRealityPose_op_Equality_ - commentId: Overload:XRTK.Definitions.Utilities.MixedRealityPose.op_Equality - isSpec: "True" - fullName: XRTK.Definitions.Utilities.MixedRealityPose.Equality - nameWithType: MixedRealityPose.Equality -- uid: XRTK.Definitions.Utilities.MixedRealityPose.op_Inequality(XRTK.Definitions.Utilities.MixedRealityPose,XRTK.Definitions.Utilities.MixedRealityPose) - name: Inequality(MixedRealityPose, MixedRealityPose) - href: api/XRTK.Definitions.Utilities.MixedRealityPose.html#XRTK_Definitions_Utilities_MixedRealityPose_op_Inequality_XRTK_Definitions_Utilities_MixedRealityPose_XRTK_Definitions_Utilities_MixedRealityPose_ - commentId: M:XRTK.Definitions.Utilities.MixedRealityPose.op_Inequality(XRTK.Definitions.Utilities.MixedRealityPose,XRTK.Definitions.Utilities.MixedRealityPose) - fullName: XRTK.Definitions.Utilities.MixedRealityPose.Inequality(XRTK.Definitions.Utilities.MixedRealityPose, XRTK.Definitions.Utilities.MixedRealityPose) - nameWithType: MixedRealityPose.Inequality(MixedRealityPose, MixedRealityPose) -- uid: XRTK.Definitions.Utilities.MixedRealityPose.op_Inequality* - name: Inequality - href: api/XRTK.Definitions.Utilities.MixedRealityPose.html#XRTK_Definitions_Utilities_MixedRealityPose_op_Inequality_ - commentId: Overload:XRTK.Definitions.Utilities.MixedRealityPose.op_Inequality - isSpec: "True" - fullName: XRTK.Definitions.Utilities.MixedRealityPose.Inequality - nameWithType: MixedRealityPose.Inequality -- uid: XRTK.Definitions.Utilities.MixedRealityPose.Position - name: Position - href: api/XRTK.Definitions.Utilities.MixedRealityPose.html#XRTK_Definitions_Utilities_MixedRealityPose_Position - commentId: P:XRTK.Definitions.Utilities.MixedRealityPose.Position - fullName: XRTK.Definitions.Utilities.MixedRealityPose.Position - nameWithType: MixedRealityPose.Position -- uid: XRTK.Definitions.Utilities.MixedRealityPose.Position* - name: Position - href: api/XRTK.Definitions.Utilities.MixedRealityPose.html#XRTK_Definitions_Utilities_MixedRealityPose_Position_ - commentId: Overload:XRTK.Definitions.Utilities.MixedRealityPose.Position - isSpec: "True" - fullName: XRTK.Definitions.Utilities.MixedRealityPose.Position - nameWithType: MixedRealityPose.Position -- uid: XRTK.Definitions.Utilities.MixedRealityPose.Right - name: Right - href: api/XRTK.Definitions.Utilities.MixedRealityPose.html#XRTK_Definitions_Utilities_MixedRealityPose_Right - commentId: P:XRTK.Definitions.Utilities.MixedRealityPose.Right - fullName: XRTK.Definitions.Utilities.MixedRealityPose.Right - nameWithType: MixedRealityPose.Right -- uid: XRTK.Definitions.Utilities.MixedRealityPose.Right* - name: Right - href: api/XRTK.Definitions.Utilities.MixedRealityPose.html#XRTK_Definitions_Utilities_MixedRealityPose_Right_ - commentId: Overload:XRTK.Definitions.Utilities.MixedRealityPose.Right - isSpec: "True" - fullName: XRTK.Definitions.Utilities.MixedRealityPose.Right - nameWithType: MixedRealityPose.Right -- uid: XRTK.Definitions.Utilities.MixedRealityPose.Rotation - name: Rotation - href: api/XRTK.Definitions.Utilities.MixedRealityPose.html#XRTK_Definitions_Utilities_MixedRealityPose_Rotation - commentId: P:XRTK.Definitions.Utilities.MixedRealityPose.Rotation - fullName: XRTK.Definitions.Utilities.MixedRealityPose.Rotation - nameWithType: MixedRealityPose.Rotation -- uid: XRTK.Definitions.Utilities.MixedRealityPose.Rotation* - name: Rotation - href: api/XRTK.Definitions.Utilities.MixedRealityPose.html#XRTK_Definitions_Utilities_MixedRealityPose_Rotation_ - commentId: Overload:XRTK.Definitions.Utilities.MixedRealityPose.Rotation - isSpec: "True" - fullName: XRTK.Definitions.Utilities.MixedRealityPose.Rotation - nameWithType: MixedRealityPose.Rotation -- uid: XRTK.Definitions.Utilities.MixedRealityPose.System#Collections#IEqualityComparer#Equals(System.Object,System.Object) - name: IEqualityComparer.Equals(Object, Object) - href: api/XRTK.Definitions.Utilities.MixedRealityPose.html#XRTK_Definitions_Utilities_MixedRealityPose_System_Collections_IEqualityComparer_Equals_System_Object_System_Object_ - commentId: M:XRTK.Definitions.Utilities.MixedRealityPose.System#Collections#IEqualityComparer#Equals(System.Object,System.Object) - name.vb: System.Collections.IEqualityComparer.Equals(Object, Object) - fullName: XRTK.Definitions.Utilities.MixedRealityPose.System.Collections.IEqualityComparer.Equals(System.Object, System.Object) - nameWithType: MixedRealityPose.IEqualityComparer.Equals(Object, Object) - nameWithType.vb: MixedRealityPose.System.Collections.IEqualityComparer.Equals(Object, Object) -- uid: XRTK.Definitions.Utilities.MixedRealityPose.System#Collections#IEqualityComparer#Equals* - name: IEqualityComparer.Equals - href: api/XRTK.Definitions.Utilities.MixedRealityPose.html#XRTK_Definitions_Utilities_MixedRealityPose_System_Collections_IEqualityComparer_Equals_ - commentId: Overload:XRTK.Definitions.Utilities.MixedRealityPose.System#Collections#IEqualityComparer#Equals - isSpec: "True" - name.vb: System.Collections.IEqualityComparer.Equals - fullName: XRTK.Definitions.Utilities.MixedRealityPose.System.Collections.IEqualityComparer.Equals - nameWithType: MixedRealityPose.IEqualityComparer.Equals - nameWithType.vb: MixedRealityPose.System.Collections.IEqualityComparer.Equals -- uid: XRTK.Definitions.Utilities.MixedRealityPose.System#Collections#IEqualityComparer#GetHashCode(System.Object) - name: IEqualityComparer.GetHashCode(Object) - href: api/XRTK.Definitions.Utilities.MixedRealityPose.html#XRTK_Definitions_Utilities_MixedRealityPose_System_Collections_IEqualityComparer_GetHashCode_System_Object_ - commentId: M:XRTK.Definitions.Utilities.MixedRealityPose.System#Collections#IEqualityComparer#GetHashCode(System.Object) - name.vb: System.Collections.IEqualityComparer.GetHashCode(Object) - fullName: XRTK.Definitions.Utilities.MixedRealityPose.System.Collections.IEqualityComparer.GetHashCode(System.Object) - nameWithType: MixedRealityPose.IEqualityComparer.GetHashCode(Object) - nameWithType.vb: MixedRealityPose.System.Collections.IEqualityComparer.GetHashCode(Object) -- uid: XRTK.Definitions.Utilities.MixedRealityPose.System#Collections#IEqualityComparer#GetHashCode* - name: IEqualityComparer.GetHashCode - href: api/XRTK.Definitions.Utilities.MixedRealityPose.html#XRTK_Definitions_Utilities_MixedRealityPose_System_Collections_IEqualityComparer_GetHashCode_ - commentId: Overload:XRTK.Definitions.Utilities.MixedRealityPose.System#Collections#IEqualityComparer#GetHashCode - isSpec: "True" - name.vb: System.Collections.IEqualityComparer.GetHashCode - fullName: XRTK.Definitions.Utilities.MixedRealityPose.System.Collections.IEqualityComparer.GetHashCode - nameWithType: MixedRealityPose.IEqualityComparer.GetHashCode - nameWithType.vb: MixedRealityPose.System.Collections.IEqualityComparer.GetHashCode -- uid: XRTK.Definitions.Utilities.MixedRealityPose.ToString - name: ToString() - href: api/XRTK.Definitions.Utilities.MixedRealityPose.html#XRTK_Definitions_Utilities_MixedRealityPose_ToString - commentId: M:XRTK.Definitions.Utilities.MixedRealityPose.ToString - fullName: XRTK.Definitions.Utilities.MixedRealityPose.ToString() - nameWithType: MixedRealityPose.ToString() -- uid: XRTK.Definitions.Utilities.MixedRealityPose.ToString* - name: ToString - href: api/XRTK.Definitions.Utilities.MixedRealityPose.html#XRTK_Definitions_Utilities_MixedRealityPose_ToString_ - commentId: Overload:XRTK.Definitions.Utilities.MixedRealityPose.ToString - isSpec: "True" - fullName: XRTK.Definitions.Utilities.MixedRealityPose.ToString - nameWithType: MixedRealityPose.ToString -- uid: XRTK.Definitions.Utilities.MixedRealityPose.Up - name: Up - href: api/XRTK.Definitions.Utilities.MixedRealityPose.html#XRTK_Definitions_Utilities_MixedRealityPose_Up - commentId: P:XRTK.Definitions.Utilities.MixedRealityPose.Up - fullName: XRTK.Definitions.Utilities.MixedRealityPose.Up - nameWithType: MixedRealityPose.Up -- uid: XRTK.Definitions.Utilities.MixedRealityPose.Up* - name: Up - href: api/XRTK.Definitions.Utilities.MixedRealityPose.html#XRTK_Definitions_Utilities_MixedRealityPose_Up_ - commentId: Overload:XRTK.Definitions.Utilities.MixedRealityPose.Up - isSpec: "True" - fullName: XRTK.Definitions.Utilities.MixedRealityPose.Up - nameWithType: MixedRealityPose.Up -- uid: XRTK.Definitions.Utilities.MixedRealityPose.ZeroIdentity - name: ZeroIdentity - href: api/XRTK.Definitions.Utilities.MixedRealityPose.html#XRTK_Definitions_Utilities_MixedRealityPose_ZeroIdentity - commentId: P:XRTK.Definitions.Utilities.MixedRealityPose.ZeroIdentity - fullName: XRTK.Definitions.Utilities.MixedRealityPose.ZeroIdentity - nameWithType: MixedRealityPose.ZeroIdentity -- uid: XRTK.Definitions.Utilities.MixedRealityPose.ZeroIdentity* - name: ZeroIdentity - href: api/XRTK.Definitions.Utilities.MixedRealityPose.html#XRTK_Definitions_Utilities_MixedRealityPose_ZeroIdentity_ - commentId: Overload:XRTK.Definitions.Utilities.MixedRealityPose.ZeroIdentity - isSpec: "True" - fullName: XRTK.Definitions.Utilities.MixedRealityPose.ZeroIdentity - nameWithType: MixedRealityPose.ZeroIdentity -- uid: XRTK.Definitions.Utilities.OrientationType - name: OrientationType - href: api/XRTK.Definitions.Utilities.OrientationType.html - commentId: T:XRTK.Definitions.Utilities.OrientationType - fullName: XRTK.Definitions.Utilities.OrientationType - nameWithType: OrientationType -- uid: XRTK.Definitions.Utilities.OrientationType.FaceCenterAxis - name: FaceCenterAxis - href: api/XRTK.Definitions.Utilities.OrientationType.html#XRTK_Definitions_Utilities_OrientationType_FaceCenterAxis - commentId: F:XRTK.Definitions.Utilities.OrientationType.FaceCenterAxis - fullName: XRTK.Definitions.Utilities.OrientationType.FaceCenterAxis - nameWithType: OrientationType.FaceCenterAxis -- uid: XRTK.Definitions.Utilities.OrientationType.FaceCenterAxisReversed - name: FaceCenterAxisReversed - href: api/XRTK.Definitions.Utilities.OrientationType.html#XRTK_Definitions_Utilities_OrientationType_FaceCenterAxisReversed - commentId: F:XRTK.Definitions.Utilities.OrientationType.FaceCenterAxisReversed - fullName: XRTK.Definitions.Utilities.OrientationType.FaceCenterAxisReversed - nameWithType: OrientationType.FaceCenterAxisReversed -- uid: XRTK.Definitions.Utilities.OrientationType.FaceOrigin - name: FaceOrigin - href: api/XRTK.Definitions.Utilities.OrientationType.html#XRTK_Definitions_Utilities_OrientationType_FaceOrigin - commentId: F:XRTK.Definitions.Utilities.OrientationType.FaceOrigin - fullName: XRTK.Definitions.Utilities.OrientationType.FaceOrigin - nameWithType: OrientationType.FaceOrigin -- uid: XRTK.Definitions.Utilities.OrientationType.FaceOriginReversed - name: FaceOriginReversed - href: api/XRTK.Definitions.Utilities.OrientationType.html#XRTK_Definitions_Utilities_OrientationType_FaceOriginReversed - commentId: F:XRTK.Definitions.Utilities.OrientationType.FaceOriginReversed - fullName: XRTK.Definitions.Utilities.OrientationType.FaceOriginReversed - nameWithType: OrientationType.FaceOriginReversed -- uid: XRTK.Definitions.Utilities.OrientationType.FaceParentDown - name: FaceParentDown - href: api/XRTK.Definitions.Utilities.OrientationType.html#XRTK_Definitions_Utilities_OrientationType_FaceParentDown - commentId: F:XRTK.Definitions.Utilities.OrientationType.FaceParentDown - fullName: XRTK.Definitions.Utilities.OrientationType.FaceParentDown - nameWithType: OrientationType.FaceParentDown -- uid: XRTK.Definitions.Utilities.OrientationType.FaceParentForwardReversed - name: FaceParentForwardReversed - href: api/XRTK.Definitions.Utilities.OrientationType.html#XRTK_Definitions_Utilities_OrientationType_FaceParentForwardReversed - commentId: F:XRTK.Definitions.Utilities.OrientationType.FaceParentForwardReversed - fullName: XRTK.Definitions.Utilities.OrientationType.FaceParentForwardReversed - nameWithType: OrientationType.FaceParentForwardReversed -- uid: XRTK.Definitions.Utilities.OrientationType.FaceParentFoward - name: FaceParentFoward - href: api/XRTK.Definitions.Utilities.OrientationType.html#XRTK_Definitions_Utilities_OrientationType_FaceParentFoward - commentId: F:XRTK.Definitions.Utilities.OrientationType.FaceParentFoward - fullName: XRTK.Definitions.Utilities.OrientationType.FaceParentFoward - nameWithType: OrientationType.FaceParentFoward -- uid: XRTK.Definitions.Utilities.OrientationType.FaceParentUp - name: FaceParentUp - href: api/XRTK.Definitions.Utilities.OrientationType.html#XRTK_Definitions_Utilities_OrientationType_FaceParentUp - commentId: F:XRTK.Definitions.Utilities.OrientationType.FaceParentUp - fullName: XRTK.Definitions.Utilities.OrientationType.FaceParentUp - nameWithType: OrientationType.FaceParentUp -- uid: XRTK.Definitions.Utilities.OrientationType.None - name: None - href: api/XRTK.Definitions.Utilities.OrientationType.html#XRTK_Definitions_Utilities_OrientationType_None - commentId: F:XRTK.Definitions.Utilities.OrientationType.None - fullName: XRTK.Definitions.Utilities.OrientationType.None - nameWithType: OrientationType.None -- uid: XRTK.Definitions.Utilities.PivotAxis - name: PivotAxis - href: api/XRTK.Definitions.Utilities.PivotAxis.html - commentId: T:XRTK.Definitions.Utilities.PivotAxis - fullName: XRTK.Definitions.Utilities.PivotAxis - nameWithType: PivotAxis -- uid: XRTK.Definitions.Utilities.PivotAxis.Free - name: Free - href: api/XRTK.Definitions.Utilities.PivotAxis.html#XRTK_Definitions_Utilities_PivotAxis_Free - commentId: F:XRTK.Definitions.Utilities.PivotAxis.Free - fullName: XRTK.Definitions.Utilities.PivotAxis.Free - nameWithType: PivotAxis.Free -- uid: XRTK.Definitions.Utilities.PivotAxis.X - name: X - href: api/XRTK.Definitions.Utilities.PivotAxis.html#XRTK_Definitions_Utilities_PivotAxis_X - commentId: F:XRTK.Definitions.Utilities.PivotAxis.X - fullName: XRTK.Definitions.Utilities.PivotAxis.X - nameWithType: PivotAxis.X -- uid: XRTK.Definitions.Utilities.PivotAxis.XY - name: XY - href: api/XRTK.Definitions.Utilities.PivotAxis.html#XRTK_Definitions_Utilities_PivotAxis_XY - commentId: F:XRTK.Definitions.Utilities.PivotAxis.XY - fullName: XRTK.Definitions.Utilities.PivotAxis.XY - nameWithType: PivotAxis.XY -- uid: XRTK.Definitions.Utilities.PivotAxis.XZ - name: XZ - href: api/XRTK.Definitions.Utilities.PivotAxis.html#XRTK_Definitions_Utilities_PivotAxis_XZ - commentId: F:XRTK.Definitions.Utilities.PivotAxis.XZ - fullName: XRTK.Definitions.Utilities.PivotAxis.XZ - nameWithType: PivotAxis.XZ -- uid: XRTK.Definitions.Utilities.PivotAxis.Y - name: Y - href: api/XRTK.Definitions.Utilities.PivotAxis.html#XRTK_Definitions_Utilities_PivotAxis_Y - commentId: F:XRTK.Definitions.Utilities.PivotAxis.Y - fullName: XRTK.Definitions.Utilities.PivotAxis.Y - nameWithType: PivotAxis.Y -- uid: XRTK.Definitions.Utilities.PivotAxis.YZ - name: YZ - href: api/XRTK.Definitions.Utilities.PivotAxis.html#XRTK_Definitions_Utilities_PivotAxis_YZ - commentId: F:XRTK.Definitions.Utilities.PivotAxis.YZ - fullName: XRTK.Definitions.Utilities.PivotAxis.YZ - nameWithType: PivotAxis.YZ -- uid: XRTK.Definitions.Utilities.PivotAxis.Z - name: Z - href: api/XRTK.Definitions.Utilities.PivotAxis.html#XRTK_Definitions_Utilities_PivotAxis_Z - commentId: F:XRTK.Definitions.Utilities.PivotAxis.Z - fullName: XRTK.Definitions.Utilities.PivotAxis.Z - nameWithType: PivotAxis.Z -- uid: XRTK.Definitions.Utilities.ProcessResult - name: ProcessResult - href: api/XRTK.Definitions.Utilities.ProcessResult.html - commentId: T:XRTK.Definitions.Utilities.ProcessResult - fullName: XRTK.Definitions.Utilities.ProcessResult - nameWithType: ProcessResult -- uid: XRTK.Definitions.Utilities.ProcessResult.#ctor(System.Int32,System.String[],System.String[]) - name: ProcessResult(Int32, String[], String[]) - href: api/XRTK.Definitions.Utilities.ProcessResult.html#XRTK_Definitions_Utilities_ProcessResult__ctor_System_Int32_System_String___System_String___ - commentId: M:XRTK.Definitions.Utilities.ProcessResult.#ctor(System.Int32,System.String[],System.String[]) - name.vb: ProcessResult(Int32, String(), String()) - fullName: XRTK.Definitions.Utilities.ProcessResult.ProcessResult(System.Int32, System.String[], System.String[]) - fullName.vb: XRTK.Definitions.Utilities.ProcessResult.ProcessResult(System.Int32, System.String(), System.String()) - nameWithType: ProcessResult.ProcessResult(Int32, String[], String[]) - nameWithType.vb: ProcessResult.ProcessResult(Int32, String(), String()) -- uid: XRTK.Definitions.Utilities.ProcessResult.#ctor* - name: ProcessResult - href: api/XRTK.Definitions.Utilities.ProcessResult.html#XRTK_Definitions_Utilities_ProcessResult__ctor_ - commentId: Overload:XRTK.Definitions.Utilities.ProcessResult.#ctor - isSpec: "True" - fullName: XRTK.Definitions.Utilities.ProcessResult.ProcessResult - nameWithType: ProcessResult.ProcessResult -- uid: XRTK.Definitions.Utilities.ProcessResult.Errors - name: Errors - href: api/XRTK.Definitions.Utilities.ProcessResult.html#XRTK_Definitions_Utilities_ProcessResult_Errors - commentId: P:XRTK.Definitions.Utilities.ProcessResult.Errors - fullName: XRTK.Definitions.Utilities.ProcessResult.Errors - nameWithType: ProcessResult.Errors -- uid: XRTK.Definitions.Utilities.ProcessResult.Errors* - name: Errors - href: api/XRTK.Definitions.Utilities.ProcessResult.html#XRTK_Definitions_Utilities_ProcessResult_Errors_ - commentId: Overload:XRTK.Definitions.Utilities.ProcessResult.Errors - isSpec: "True" - fullName: XRTK.Definitions.Utilities.ProcessResult.Errors - nameWithType: ProcessResult.Errors -- uid: XRTK.Definitions.Utilities.ProcessResult.ExitCode - name: ExitCode - href: api/XRTK.Definitions.Utilities.ProcessResult.html#XRTK_Definitions_Utilities_ProcessResult_ExitCode - commentId: P:XRTK.Definitions.Utilities.ProcessResult.ExitCode - fullName: XRTK.Definitions.Utilities.ProcessResult.ExitCode - nameWithType: ProcessResult.ExitCode -- uid: XRTK.Definitions.Utilities.ProcessResult.ExitCode* - name: ExitCode - href: api/XRTK.Definitions.Utilities.ProcessResult.html#XRTK_Definitions_Utilities_ProcessResult_ExitCode_ - commentId: Overload:XRTK.Definitions.Utilities.ProcessResult.ExitCode - isSpec: "True" - fullName: XRTK.Definitions.Utilities.ProcessResult.ExitCode - nameWithType: ProcessResult.ExitCode -- uid: XRTK.Definitions.Utilities.ProcessResult.Output - name: Output - href: api/XRTK.Definitions.Utilities.ProcessResult.html#XRTK_Definitions_Utilities_ProcessResult_Output - commentId: P:XRTK.Definitions.Utilities.ProcessResult.Output - fullName: XRTK.Definitions.Utilities.ProcessResult.Output - nameWithType: ProcessResult.Output -- uid: XRTK.Definitions.Utilities.ProcessResult.Output* - name: Output - href: api/XRTK.Definitions.Utilities.ProcessResult.html#XRTK_Definitions_Utilities_ProcessResult_Output_ - commentId: Overload:XRTK.Definitions.Utilities.ProcessResult.Output - isSpec: "True" - fullName: XRTK.Definitions.Utilities.ProcessResult.Output - nameWithType: ProcessResult.Output -- uid: XRTK.Definitions.Utilities.QuaternionSmoothed - name: QuaternionSmoothed - href: api/XRTK.Definitions.Utilities.QuaternionSmoothed.html - commentId: T:XRTK.Definitions.Utilities.QuaternionSmoothed - fullName: XRTK.Definitions.Utilities.QuaternionSmoothed - nameWithType: QuaternionSmoothed -- uid: XRTK.Definitions.Utilities.QuaternionSmoothed.#ctor(UnityEngine.Quaternion,System.Single) - name: QuaternionSmoothed(Quaternion, Single) - href: api/XRTK.Definitions.Utilities.QuaternionSmoothed.html#XRTK_Definitions_Utilities_QuaternionSmoothed__ctor_UnityEngine_Quaternion_System_Single_ - commentId: M:XRTK.Definitions.Utilities.QuaternionSmoothed.#ctor(UnityEngine.Quaternion,System.Single) - fullName: XRTK.Definitions.Utilities.QuaternionSmoothed.QuaternionSmoothed(UnityEngine.Quaternion, System.Single) - nameWithType: QuaternionSmoothed.QuaternionSmoothed(Quaternion, Single) -- uid: XRTK.Definitions.Utilities.QuaternionSmoothed.#ctor* - name: QuaternionSmoothed - href: api/XRTK.Definitions.Utilities.QuaternionSmoothed.html#XRTK_Definitions_Utilities_QuaternionSmoothed__ctor_ - commentId: Overload:XRTK.Definitions.Utilities.QuaternionSmoothed.#ctor - isSpec: "True" - fullName: XRTK.Definitions.Utilities.QuaternionSmoothed.QuaternionSmoothed - nameWithType: QuaternionSmoothed.QuaternionSmoothed -- uid: XRTK.Definitions.Utilities.QuaternionSmoothed.Current - name: Current - href: api/XRTK.Definitions.Utilities.QuaternionSmoothed.html#XRTK_Definitions_Utilities_QuaternionSmoothed_Current - commentId: P:XRTK.Definitions.Utilities.QuaternionSmoothed.Current - fullName: XRTK.Definitions.Utilities.QuaternionSmoothed.Current - nameWithType: QuaternionSmoothed.Current -- uid: XRTK.Definitions.Utilities.QuaternionSmoothed.Current* - name: Current - href: api/XRTK.Definitions.Utilities.QuaternionSmoothed.html#XRTK_Definitions_Utilities_QuaternionSmoothed_Current_ - commentId: Overload:XRTK.Definitions.Utilities.QuaternionSmoothed.Current - isSpec: "True" - fullName: XRTK.Definitions.Utilities.QuaternionSmoothed.Current - nameWithType: QuaternionSmoothed.Current -- uid: XRTK.Definitions.Utilities.QuaternionSmoothed.Goal - name: Goal - href: api/XRTK.Definitions.Utilities.QuaternionSmoothed.html#XRTK_Definitions_Utilities_QuaternionSmoothed_Goal - commentId: P:XRTK.Definitions.Utilities.QuaternionSmoothed.Goal - fullName: XRTK.Definitions.Utilities.QuaternionSmoothed.Goal - nameWithType: QuaternionSmoothed.Goal -- uid: XRTK.Definitions.Utilities.QuaternionSmoothed.Goal* - name: Goal - href: api/XRTK.Definitions.Utilities.QuaternionSmoothed.html#XRTK_Definitions_Utilities_QuaternionSmoothed_Goal_ - commentId: Overload:XRTK.Definitions.Utilities.QuaternionSmoothed.Goal - isSpec: "True" - fullName: XRTK.Definitions.Utilities.QuaternionSmoothed.Goal - nameWithType: QuaternionSmoothed.Goal -- uid: XRTK.Definitions.Utilities.QuaternionSmoothed.SetGoal(UnityEngine.Quaternion) - name: SetGoal(Quaternion) - href: api/XRTK.Definitions.Utilities.QuaternionSmoothed.html#XRTK_Definitions_Utilities_QuaternionSmoothed_SetGoal_UnityEngine_Quaternion_ - commentId: M:XRTK.Definitions.Utilities.QuaternionSmoothed.SetGoal(UnityEngine.Quaternion) - fullName: XRTK.Definitions.Utilities.QuaternionSmoothed.SetGoal(UnityEngine.Quaternion) - nameWithType: QuaternionSmoothed.SetGoal(Quaternion) -- uid: XRTK.Definitions.Utilities.QuaternionSmoothed.SetGoal* - name: SetGoal - href: api/XRTK.Definitions.Utilities.QuaternionSmoothed.html#XRTK_Definitions_Utilities_QuaternionSmoothed_SetGoal_ - commentId: Overload:XRTK.Definitions.Utilities.QuaternionSmoothed.SetGoal - isSpec: "True" - fullName: XRTK.Definitions.Utilities.QuaternionSmoothed.SetGoal - nameWithType: QuaternionSmoothed.SetGoal -- uid: XRTK.Definitions.Utilities.QuaternionSmoothed.SmoothTime - name: SmoothTime - href: api/XRTK.Definitions.Utilities.QuaternionSmoothed.html#XRTK_Definitions_Utilities_QuaternionSmoothed_SmoothTime - commentId: P:XRTK.Definitions.Utilities.QuaternionSmoothed.SmoothTime - fullName: XRTK.Definitions.Utilities.QuaternionSmoothed.SmoothTime - nameWithType: QuaternionSmoothed.SmoothTime -- uid: XRTK.Definitions.Utilities.QuaternionSmoothed.SmoothTime* - name: SmoothTime - href: api/XRTK.Definitions.Utilities.QuaternionSmoothed.html#XRTK_Definitions_Utilities_QuaternionSmoothed_SmoothTime_ - commentId: Overload:XRTK.Definitions.Utilities.QuaternionSmoothed.SmoothTime - isSpec: "True" - fullName: XRTK.Definitions.Utilities.QuaternionSmoothed.SmoothTime - nameWithType: QuaternionSmoothed.SmoothTime -- uid: XRTK.Definitions.Utilities.QuaternionSmoothed.Update(System.Single) - name: Update(Single) - href: api/XRTK.Definitions.Utilities.QuaternionSmoothed.html#XRTK_Definitions_Utilities_QuaternionSmoothed_Update_System_Single_ - commentId: M:XRTK.Definitions.Utilities.QuaternionSmoothed.Update(System.Single) - fullName: XRTK.Definitions.Utilities.QuaternionSmoothed.Update(System.Single) - nameWithType: QuaternionSmoothed.Update(Single) -- uid: XRTK.Definitions.Utilities.QuaternionSmoothed.Update* - name: Update - href: api/XRTK.Definitions.Utilities.QuaternionSmoothed.html#XRTK_Definitions_Utilities_QuaternionSmoothed_Update_ - commentId: Overload:XRTK.Definitions.Utilities.QuaternionSmoothed.Update - isSpec: "True" - fullName: XRTK.Definitions.Utilities.QuaternionSmoothed.Update - nameWithType: QuaternionSmoothed.Update -- uid: XRTK.Definitions.Utilities.RecognitionConfidenceLevel - name: RecognitionConfidenceLevel - href: api/XRTK.Definitions.Utilities.RecognitionConfidenceLevel.html - commentId: T:XRTK.Definitions.Utilities.RecognitionConfidenceLevel - fullName: XRTK.Definitions.Utilities.RecognitionConfidenceLevel - nameWithType: RecognitionConfidenceLevel -- uid: XRTK.Definitions.Utilities.RecognitionConfidenceLevel.High - name: High - href: api/XRTK.Definitions.Utilities.RecognitionConfidenceLevel.html#XRTK_Definitions_Utilities_RecognitionConfidenceLevel_High - commentId: F:XRTK.Definitions.Utilities.RecognitionConfidenceLevel.High - fullName: XRTK.Definitions.Utilities.RecognitionConfidenceLevel.High - nameWithType: RecognitionConfidenceLevel.High -- uid: XRTK.Definitions.Utilities.RecognitionConfidenceLevel.Low - name: Low - href: api/XRTK.Definitions.Utilities.RecognitionConfidenceLevel.html#XRTK_Definitions_Utilities_RecognitionConfidenceLevel_Low - commentId: F:XRTK.Definitions.Utilities.RecognitionConfidenceLevel.Low - fullName: XRTK.Definitions.Utilities.RecognitionConfidenceLevel.Low - nameWithType: RecognitionConfidenceLevel.Low -- uid: XRTK.Definitions.Utilities.RecognitionConfidenceLevel.Medium - name: Medium - href: api/XRTK.Definitions.Utilities.RecognitionConfidenceLevel.html#XRTK_Definitions_Utilities_RecognitionConfidenceLevel_Medium - commentId: F:XRTK.Definitions.Utilities.RecognitionConfidenceLevel.Medium - fullName: XRTK.Definitions.Utilities.RecognitionConfidenceLevel.Medium - nameWithType: RecognitionConfidenceLevel.Medium -- uid: XRTK.Definitions.Utilities.RecognitionConfidenceLevel.Unknown - name: Unknown - href: api/XRTK.Definitions.Utilities.RecognitionConfidenceLevel.html#XRTK_Definitions_Utilities_RecognitionConfidenceLevel_Unknown - commentId: F:XRTK.Definitions.Utilities.RecognitionConfidenceLevel.Unknown - fullName: XRTK.Definitions.Utilities.RecognitionConfidenceLevel.Unknown - nameWithType: RecognitionConfidenceLevel.Unknown -- uid: XRTK.Definitions.Utilities.RenderPipeline - name: RenderPipeline - href: api/XRTK.Definitions.Utilities.RenderPipeline.html - commentId: T:XRTK.Definitions.Utilities.RenderPipeline - fullName: XRTK.Definitions.Utilities.RenderPipeline - nameWithType: RenderPipeline -- uid: XRTK.Definitions.Utilities.RenderPipeline.Custom - name: Custom - href: api/XRTK.Definitions.Utilities.RenderPipeline.html#XRTK_Definitions_Utilities_RenderPipeline_Custom - commentId: F:XRTK.Definitions.Utilities.RenderPipeline.Custom - fullName: XRTK.Definitions.Utilities.RenderPipeline.Custom - nameWithType: RenderPipeline.Custom -- uid: XRTK.Definitions.Utilities.RenderPipeline.HighDefinitionRenderPipeline - name: HighDefinitionRenderPipeline - href: api/XRTK.Definitions.Utilities.RenderPipeline.html#XRTK_Definitions_Utilities_RenderPipeline_HighDefinitionRenderPipeline - commentId: F:XRTK.Definitions.Utilities.RenderPipeline.HighDefinitionRenderPipeline - fullName: XRTK.Definitions.Utilities.RenderPipeline.HighDefinitionRenderPipeline - nameWithType: RenderPipeline.HighDefinitionRenderPipeline -- uid: XRTK.Definitions.Utilities.RenderPipeline.Legacy - name: Legacy - href: api/XRTK.Definitions.Utilities.RenderPipeline.html#XRTK_Definitions_Utilities_RenderPipeline_Legacy - commentId: F:XRTK.Definitions.Utilities.RenderPipeline.Legacy - fullName: XRTK.Definitions.Utilities.RenderPipeline.Legacy - nameWithType: RenderPipeline.Legacy -- uid: XRTK.Definitions.Utilities.RenderPipeline.UniversalRenderPipeline - name: UniversalRenderPipeline - href: api/XRTK.Definitions.Utilities.RenderPipeline.html#XRTK_Definitions_Utilities_RenderPipeline_UniversalRenderPipeline - commentId: F:XRTK.Definitions.Utilities.RenderPipeline.UniversalRenderPipeline - fullName: XRTK.Definitions.Utilities.RenderPipeline.UniversalRenderPipeline - nameWithType: RenderPipeline.UniversalRenderPipeline -- uid: XRTK.Definitions.Utilities.RotationConstraintType - name: RotationConstraintType - href: api/XRTK.Definitions.Utilities.RotationConstraintType.html - commentId: T:XRTK.Definitions.Utilities.RotationConstraintType - fullName: XRTK.Definitions.Utilities.RotationConstraintType - nameWithType: RotationConstraintType -- uid: XRTK.Definitions.Utilities.RotationConstraintType.None - name: None - href: api/XRTK.Definitions.Utilities.RotationConstraintType.html#XRTK_Definitions_Utilities_RotationConstraintType_None - commentId: F:XRTK.Definitions.Utilities.RotationConstraintType.None - fullName: XRTK.Definitions.Utilities.RotationConstraintType.None - nameWithType: RotationConstraintType.None -- uid: XRTK.Definitions.Utilities.RotationConstraintType.XAxisOnly - name: XAxisOnly - href: api/XRTK.Definitions.Utilities.RotationConstraintType.html#XRTK_Definitions_Utilities_RotationConstraintType_XAxisOnly - commentId: F:XRTK.Definitions.Utilities.RotationConstraintType.XAxisOnly - fullName: XRTK.Definitions.Utilities.RotationConstraintType.XAxisOnly - nameWithType: RotationConstraintType.XAxisOnly -- uid: XRTK.Definitions.Utilities.RotationConstraintType.YAxisOnly - name: YAxisOnly - href: api/XRTK.Definitions.Utilities.RotationConstraintType.html#XRTK_Definitions_Utilities_RotationConstraintType_YAxisOnly - commentId: F:XRTK.Definitions.Utilities.RotationConstraintType.YAxisOnly - fullName: XRTK.Definitions.Utilities.RotationConstraintType.YAxisOnly - nameWithType: RotationConstraintType.YAxisOnly -- uid: XRTK.Definitions.Utilities.RotationConstraintType.ZAxisOnly - name: ZAxisOnly - href: api/XRTK.Definitions.Utilities.RotationConstraintType.html#XRTK_Definitions_Utilities_RotationConstraintType_ZAxisOnly - commentId: F:XRTK.Definitions.Utilities.RotationConstraintType.ZAxisOnly - fullName: XRTK.Definitions.Utilities.RotationConstraintType.ZAxisOnly - nameWithType: RotationConstraintType.ZAxisOnly -- uid: XRTK.Definitions.Utilities.ScaleStateType - name: ScaleStateType - href: api/XRTK.Definitions.Utilities.ScaleStateType.html - commentId: T:XRTK.Definitions.Utilities.ScaleStateType - fullName: XRTK.Definitions.Utilities.ScaleStateType - nameWithType: ScaleStateType -- uid: XRTK.Definitions.Utilities.ScaleStateType.Growing - name: Growing - href: api/XRTK.Definitions.Utilities.ScaleStateType.html#XRTK_Definitions_Utilities_ScaleStateType_Growing - commentId: F:XRTK.Definitions.Utilities.ScaleStateType.Growing - fullName: XRTK.Definitions.Utilities.ScaleStateType.Growing - nameWithType: ScaleStateType.Growing -- uid: XRTK.Definitions.Utilities.ScaleStateType.Shrinking - name: Shrinking - href: api/XRTK.Definitions.Utilities.ScaleStateType.html#XRTK_Definitions_Utilities_ScaleStateType_Shrinking - commentId: F:XRTK.Definitions.Utilities.ScaleStateType.Shrinking - fullName: XRTK.Definitions.Utilities.ScaleStateType.Shrinking - nameWithType: ScaleStateType.Shrinking -- uid: XRTK.Definitions.Utilities.ScaleStateType.Static - name: Static - href: api/XRTK.Definitions.Utilities.ScaleStateType.html#XRTK_Definitions_Utilities_ScaleStateType_Static - commentId: F:XRTK.Definitions.Utilities.ScaleStateType.Static - fullName: XRTK.Definitions.Utilities.ScaleStateType.Static - nameWithType: ScaleStateType.Static -- uid: XRTK.Definitions.Utilities.SolverOrientationType - name: SolverOrientationType - href: api/XRTK.Definitions.Utilities.SolverOrientationType.html - commentId: T:XRTK.Definitions.Utilities.SolverOrientationType - fullName: XRTK.Definitions.Utilities.SolverOrientationType - nameWithType: SolverOrientationType -- uid: XRTK.Definitions.Utilities.SolverOrientationType.CameraAligned - name: CameraAligned - href: api/XRTK.Definitions.Utilities.SolverOrientationType.html#XRTK_Definitions_Utilities_SolverOrientationType_CameraAligned - commentId: F:XRTK.Definitions.Utilities.SolverOrientationType.CameraAligned - fullName: XRTK.Definitions.Utilities.SolverOrientationType.CameraAligned - nameWithType: SolverOrientationType.CameraAligned -- uid: XRTK.Definitions.Utilities.SolverOrientationType.CameraFacing - name: CameraFacing - href: api/XRTK.Definitions.Utilities.SolverOrientationType.html#XRTK_Definitions_Utilities_SolverOrientationType_CameraFacing - commentId: F:XRTK.Definitions.Utilities.SolverOrientationType.CameraFacing - fullName: XRTK.Definitions.Utilities.SolverOrientationType.CameraFacing - nameWithType: SolverOrientationType.CameraFacing -- uid: XRTK.Definitions.Utilities.SolverOrientationType.FaceTrackedObject - name: FaceTrackedObject - href: api/XRTK.Definitions.Utilities.SolverOrientationType.html#XRTK_Definitions_Utilities_SolverOrientationType_FaceTrackedObject - commentId: F:XRTK.Definitions.Utilities.SolverOrientationType.FaceTrackedObject - fullName: XRTK.Definitions.Utilities.SolverOrientationType.FaceTrackedObject - nameWithType: SolverOrientationType.FaceTrackedObject -- uid: XRTK.Definitions.Utilities.SolverOrientationType.FollowTrackedObject - name: FollowTrackedObject - href: api/XRTK.Definitions.Utilities.SolverOrientationType.html#XRTK_Definitions_Utilities_SolverOrientationType_FollowTrackedObject - commentId: F:XRTK.Definitions.Utilities.SolverOrientationType.FollowTrackedObject - fullName: XRTK.Definitions.Utilities.SolverOrientationType.FollowTrackedObject - nameWithType: SolverOrientationType.FollowTrackedObject -- uid: XRTK.Definitions.Utilities.SolverOrientationType.Unmodified - name: Unmodified - href: api/XRTK.Definitions.Utilities.SolverOrientationType.html#XRTK_Definitions_Utilities_SolverOrientationType_Unmodified - commentId: F:XRTK.Definitions.Utilities.SolverOrientationType.Unmodified - fullName: XRTK.Definitions.Utilities.SolverOrientationType.Unmodified - nameWithType: SolverOrientationType.Unmodified -- uid: XRTK.Definitions.Utilities.SolverOrientationType.YawOnly - name: YawOnly - href: api/XRTK.Definitions.Utilities.SolverOrientationType.html#XRTK_Definitions_Utilities_SolverOrientationType_YawOnly - commentId: F:XRTK.Definitions.Utilities.SolverOrientationType.YawOnly - fullName: XRTK.Definitions.Utilities.SolverOrientationType.YawOnly - nameWithType: SolverOrientationType.YawOnly -- uid: XRTK.Definitions.Utilities.StateChangeType - name: StateChangeType - href: api/XRTK.Definitions.Utilities.StateChangeType.html - commentId: T:XRTK.Definitions.Utilities.StateChangeType - fullName: XRTK.Definitions.Utilities.StateChangeType - nameWithType: StateChangeType -- uid: XRTK.Definitions.Utilities.StateChangeType.Continuous - name: Continuous - href: api/XRTK.Definitions.Utilities.StateChangeType.html#XRTK_Definitions_Utilities_StateChangeType_Continuous - commentId: F:XRTK.Definitions.Utilities.StateChangeType.Continuous - fullName: XRTK.Definitions.Utilities.StateChangeType.Continuous - nameWithType: StateChangeType.Continuous -- uid: XRTK.Definitions.Utilities.StateChangeType.Trigger - name: Trigger - href: api/XRTK.Definitions.Utilities.StateChangeType.html#XRTK_Definitions_Utilities_StateChangeType_Trigger - commentId: F:XRTK.Definitions.Utilities.StateChangeType.Trigger - fullName: XRTK.Definitions.Utilities.StateChangeType.Trigger - nameWithType: StateChangeType.Trigger -- uid: XRTK.Definitions.Utilities.SystemType - name: SystemType - href: api/XRTK.Definitions.Utilities.SystemType.html - commentId: T:XRTK.Definitions.Utilities.SystemType - fullName: XRTK.Definitions.Utilities.SystemType - nameWithType: SystemType -- uid: XRTK.Definitions.Utilities.SystemType.#ctor(System.Guid) - name: SystemType(Guid) - href: api/XRTK.Definitions.Utilities.SystemType.html#XRTK_Definitions_Utilities_SystemType__ctor_System_Guid_ - commentId: M:XRTK.Definitions.Utilities.SystemType.#ctor(System.Guid) - fullName: XRTK.Definitions.Utilities.SystemType.SystemType(System.Guid) - nameWithType: SystemType.SystemType(Guid) -- uid: XRTK.Definitions.Utilities.SystemType.#ctor(System.String) - name: SystemType(String) - href: api/XRTK.Definitions.Utilities.SystemType.html#XRTK_Definitions_Utilities_SystemType__ctor_System_String_ - commentId: M:XRTK.Definitions.Utilities.SystemType.#ctor(System.String) - fullName: XRTK.Definitions.Utilities.SystemType.SystemType(System.String) - nameWithType: SystemType.SystemType(String) -- uid: XRTK.Definitions.Utilities.SystemType.#ctor(System.Type) - name: SystemType(Type) - href: api/XRTK.Definitions.Utilities.SystemType.html#XRTK_Definitions_Utilities_SystemType__ctor_System_Type_ - commentId: M:XRTK.Definitions.Utilities.SystemType.#ctor(System.Type) - fullName: XRTK.Definitions.Utilities.SystemType.SystemType(System.Type) - nameWithType: SystemType.SystemType(Type) -- uid: XRTK.Definitions.Utilities.SystemType.#ctor* - name: SystemType - href: api/XRTK.Definitions.Utilities.SystemType.html#XRTK_Definitions_Utilities_SystemType__ctor_ - commentId: Overload:XRTK.Definitions.Utilities.SystemType.#ctor - isSpec: "True" - fullName: XRTK.Definitions.Utilities.SystemType.SystemType - nameWithType: SystemType.SystemType -- uid: XRTK.Definitions.Utilities.SystemType.Guid - name: Guid - href: api/XRTK.Definitions.Utilities.SystemType.html#XRTK_Definitions_Utilities_SystemType_Guid - commentId: P:XRTK.Definitions.Utilities.SystemType.Guid - fullName: XRTK.Definitions.Utilities.SystemType.Guid - nameWithType: SystemType.Guid -- uid: XRTK.Definitions.Utilities.SystemType.Guid* - name: Guid - href: api/XRTK.Definitions.Utilities.SystemType.html#XRTK_Definitions_Utilities_SystemType_Guid_ - commentId: Overload:XRTK.Definitions.Utilities.SystemType.Guid - isSpec: "True" - fullName: XRTK.Definitions.Utilities.SystemType.Guid - nameWithType: SystemType.Guid -- uid: XRTK.Definitions.Utilities.SystemType.op_Implicit(System.Guid)~XRTK.Definitions.Utilities.SystemType - name: Implicit(Guid to SystemType) - href: api/XRTK.Definitions.Utilities.SystemType.html#XRTK_Definitions_Utilities_SystemType_op_Implicit_System_Guid__XRTK_Definitions_Utilities_SystemType - commentId: M:XRTK.Definitions.Utilities.SystemType.op_Implicit(System.Guid)~XRTK.Definitions.Utilities.SystemType - name.vb: Widening(Guid to SystemType) - fullName: XRTK.Definitions.Utilities.SystemType.Implicit(System.Guid to XRTK.Definitions.Utilities.SystemType) - fullName.vb: XRTK.Definitions.Utilities.SystemType.Widening(System.Guid to XRTK.Definitions.Utilities.SystemType) - nameWithType: SystemType.Implicit(Guid to SystemType) - nameWithType.vb: SystemType.Widening(Guid to SystemType) -- uid: XRTK.Definitions.Utilities.SystemType.op_Implicit(System.Type)~XRTK.Definitions.Utilities.SystemType - name: Implicit(Type to SystemType) - href: api/XRTK.Definitions.Utilities.SystemType.html#XRTK_Definitions_Utilities_SystemType_op_Implicit_System_Type__XRTK_Definitions_Utilities_SystemType - commentId: M:XRTK.Definitions.Utilities.SystemType.op_Implicit(System.Type)~XRTK.Definitions.Utilities.SystemType - name.vb: Widening(Type to SystemType) - fullName: XRTK.Definitions.Utilities.SystemType.Implicit(System.Type to XRTK.Definitions.Utilities.SystemType) - fullName.vb: XRTK.Definitions.Utilities.SystemType.Widening(System.Type to XRTK.Definitions.Utilities.SystemType) - nameWithType: SystemType.Implicit(Type to SystemType) - nameWithType.vb: SystemType.Widening(Type to SystemType) -- uid: XRTK.Definitions.Utilities.SystemType.op_Implicit(XRTK.Definitions.Utilities.SystemType)~System.Guid - name: Implicit(SystemType to Guid) - href: api/XRTK.Definitions.Utilities.SystemType.html#XRTK_Definitions_Utilities_SystemType_op_Implicit_XRTK_Definitions_Utilities_SystemType__System_Guid - commentId: M:XRTK.Definitions.Utilities.SystemType.op_Implicit(XRTK.Definitions.Utilities.SystemType)~System.Guid - name.vb: Widening(SystemType to Guid) - fullName: XRTK.Definitions.Utilities.SystemType.Implicit(XRTK.Definitions.Utilities.SystemType to System.Guid) - fullName.vb: XRTK.Definitions.Utilities.SystemType.Widening(XRTK.Definitions.Utilities.SystemType to System.Guid) - nameWithType: SystemType.Implicit(SystemType to Guid) - nameWithType.vb: SystemType.Widening(SystemType to Guid) -- uid: XRTK.Definitions.Utilities.SystemType.op_Implicit(XRTK.Definitions.Utilities.SystemType)~System.String - name: Implicit(SystemType to String) - href: api/XRTK.Definitions.Utilities.SystemType.html#XRTK_Definitions_Utilities_SystemType_op_Implicit_XRTK_Definitions_Utilities_SystemType__System_String - commentId: M:XRTK.Definitions.Utilities.SystemType.op_Implicit(XRTK.Definitions.Utilities.SystemType)~System.String - name.vb: Widening(SystemType to String) - fullName: XRTK.Definitions.Utilities.SystemType.Implicit(XRTK.Definitions.Utilities.SystemType to System.String) - fullName.vb: XRTK.Definitions.Utilities.SystemType.Widening(XRTK.Definitions.Utilities.SystemType to System.String) - nameWithType: SystemType.Implicit(SystemType to String) - nameWithType.vb: SystemType.Widening(SystemType to String) -- uid: XRTK.Definitions.Utilities.SystemType.op_Implicit(XRTK.Definitions.Utilities.SystemType)~System.Type - name: Implicit(SystemType to Type) - href: api/XRTK.Definitions.Utilities.SystemType.html#XRTK_Definitions_Utilities_SystemType_op_Implicit_XRTK_Definitions_Utilities_SystemType__System_Type - commentId: M:XRTK.Definitions.Utilities.SystemType.op_Implicit(XRTK.Definitions.Utilities.SystemType)~System.Type - name.vb: Widening(SystemType to Type) - fullName: XRTK.Definitions.Utilities.SystemType.Implicit(XRTK.Definitions.Utilities.SystemType to System.Type) - fullName.vb: XRTK.Definitions.Utilities.SystemType.Widening(XRTK.Definitions.Utilities.SystemType to System.Type) - nameWithType: SystemType.Implicit(SystemType to Type) - nameWithType.vb: SystemType.Widening(SystemType to Type) -- uid: XRTK.Definitions.Utilities.SystemType.op_Implicit* - name: Implicit - href: api/XRTK.Definitions.Utilities.SystemType.html#XRTK_Definitions_Utilities_SystemType_op_Implicit_ - commentId: Overload:XRTK.Definitions.Utilities.SystemType.op_Implicit - isSpec: "True" - name.vb: Widening - fullName: XRTK.Definitions.Utilities.SystemType.Implicit - fullName.vb: XRTK.Definitions.Utilities.SystemType.Widening - nameWithType: SystemType.Implicit - nameWithType.vb: SystemType.Widening -- uid: XRTK.Definitions.Utilities.SystemType.ToString - name: ToString() - href: api/XRTK.Definitions.Utilities.SystemType.html#XRTK_Definitions_Utilities_SystemType_ToString - commentId: M:XRTK.Definitions.Utilities.SystemType.ToString - fullName: XRTK.Definitions.Utilities.SystemType.ToString() - nameWithType: SystemType.ToString() -- uid: XRTK.Definitions.Utilities.SystemType.ToString* - name: ToString - href: api/XRTK.Definitions.Utilities.SystemType.html#XRTK_Definitions_Utilities_SystemType_ToString_ - commentId: Overload:XRTK.Definitions.Utilities.SystemType.ToString - isSpec: "True" - fullName: XRTK.Definitions.Utilities.SystemType.ToString - nameWithType: SystemType.ToString -- uid: XRTK.Definitions.Utilities.SystemType.Type - name: Type - href: api/XRTK.Definitions.Utilities.SystemType.html#XRTK_Definitions_Utilities_SystemType_Type - commentId: P:XRTK.Definitions.Utilities.SystemType.Type - fullName: XRTK.Definitions.Utilities.SystemType.Type - nameWithType: SystemType.Type -- uid: XRTK.Definitions.Utilities.SystemType.Type* - name: Type - href: api/XRTK.Definitions.Utilities.SystemType.html#XRTK_Definitions_Utilities_SystemType_Type_ - commentId: Overload:XRTK.Definitions.Utilities.SystemType.Type - isSpec: "True" - fullName: XRTK.Definitions.Utilities.SystemType.Type - nameWithType: SystemType.Type -- uid: XRTK.Definitions.Utilities.TrackedObjectType - name: TrackedObjectType - href: api/XRTK.Definitions.Utilities.TrackedObjectType.html - commentId: T:XRTK.Definitions.Utilities.TrackedObjectType - fullName: XRTK.Definitions.Utilities.TrackedObjectType - nameWithType: TrackedObjectType -- uid: XRTK.Definitions.Utilities.TrackedObjectType.Body - name: Body - href: api/XRTK.Definitions.Utilities.TrackedObjectType.html#XRTK_Definitions_Utilities_TrackedObjectType_Body - commentId: F:XRTK.Definitions.Utilities.TrackedObjectType.Body - fullName: XRTK.Definitions.Utilities.TrackedObjectType.Body - nameWithType: TrackedObjectType.Body -- uid: XRTK.Definitions.Utilities.TrackedObjectType.Head - name: Head - href: api/XRTK.Definitions.Utilities.TrackedObjectType.html#XRTK_Definitions_Utilities_TrackedObjectType_Head - commentId: F:XRTK.Definitions.Utilities.TrackedObjectType.Head - fullName: XRTK.Definitions.Utilities.TrackedObjectType.Head - nameWithType: TrackedObjectType.Head -- uid: XRTK.Definitions.Utilities.TrackedObjectType.LeftHandOrController - name: LeftHandOrController - href: api/XRTK.Definitions.Utilities.TrackedObjectType.html#XRTK_Definitions_Utilities_TrackedObjectType_LeftHandOrController - commentId: F:XRTK.Definitions.Utilities.TrackedObjectType.LeftHandOrController - fullName: XRTK.Definitions.Utilities.TrackedObjectType.LeftHandOrController - nameWithType: TrackedObjectType.LeftHandOrController -- uid: XRTK.Definitions.Utilities.TrackedObjectType.Playspace - name: Playspace - href: api/XRTK.Definitions.Utilities.TrackedObjectType.html#XRTK_Definitions_Utilities_TrackedObjectType_Playspace - commentId: F:XRTK.Definitions.Utilities.TrackedObjectType.Playspace - fullName: XRTK.Definitions.Utilities.TrackedObjectType.Playspace - nameWithType: TrackedObjectType.Playspace -- uid: XRTK.Definitions.Utilities.TrackedObjectType.RightHandOrController - name: RightHandOrController - href: api/XRTK.Definitions.Utilities.TrackedObjectType.html#XRTK_Definitions_Utilities_TrackedObjectType_RightHandOrController - commentId: F:XRTK.Definitions.Utilities.TrackedObjectType.RightHandOrController - fullName: XRTK.Definitions.Utilities.TrackedObjectType.RightHandOrController - nameWithType: TrackedObjectType.RightHandOrController -- uid: XRTK.Definitions.Utilities.TypeGrouping - name: TypeGrouping - href: api/XRTK.Definitions.Utilities.TypeGrouping.html - commentId: T:XRTK.Definitions.Utilities.TypeGrouping - fullName: XRTK.Definitions.Utilities.TypeGrouping - nameWithType: TypeGrouping -- uid: XRTK.Definitions.Utilities.TypeGrouping.ByAddComponentMenu - name: ByAddComponentMenu - href: api/XRTK.Definitions.Utilities.TypeGrouping.html#XRTK_Definitions_Utilities_TypeGrouping_ByAddComponentMenu - commentId: F:XRTK.Definitions.Utilities.TypeGrouping.ByAddComponentMenu - fullName: XRTK.Definitions.Utilities.TypeGrouping.ByAddComponentMenu - nameWithType: TypeGrouping.ByAddComponentMenu -- uid: XRTK.Definitions.Utilities.TypeGrouping.ByNamespace - name: ByNamespace - href: api/XRTK.Definitions.Utilities.TypeGrouping.html#XRTK_Definitions_Utilities_TypeGrouping_ByNamespace - commentId: F:XRTK.Definitions.Utilities.TypeGrouping.ByNamespace - fullName: XRTK.Definitions.Utilities.TypeGrouping.ByNamespace - nameWithType: TypeGrouping.ByNamespace -- uid: XRTK.Definitions.Utilities.TypeGrouping.ByNamespaceFlat - name: ByNamespaceFlat - href: api/XRTK.Definitions.Utilities.TypeGrouping.html#XRTK_Definitions_Utilities_TypeGrouping_ByNamespaceFlat - commentId: F:XRTK.Definitions.Utilities.TypeGrouping.ByNamespaceFlat - fullName: XRTK.Definitions.Utilities.TypeGrouping.ByNamespaceFlat - nameWithType: TypeGrouping.ByNamespaceFlat -- uid: XRTK.Definitions.Utilities.TypeGrouping.None - name: None - href: api/XRTK.Definitions.Utilities.TypeGrouping.html#XRTK_Definitions_Utilities_TypeGrouping_None - commentId: F:XRTK.Definitions.Utilities.TypeGrouping.None - fullName: XRTK.Definitions.Utilities.TypeGrouping.None - nameWithType: TypeGrouping.None -- uid: XRTK.Definitions.Utilities.TypeGrouping.NoneByNameNoNamespace - name: NoneByNameNoNamespace - href: api/XRTK.Definitions.Utilities.TypeGrouping.html#XRTK_Definitions_Utilities_TypeGrouping_NoneByNameNoNamespace - commentId: F:XRTK.Definitions.Utilities.TypeGrouping.NoneByNameNoNamespace - fullName: XRTK.Definitions.Utilities.TypeGrouping.NoneByNameNoNamespace - nameWithType: TypeGrouping.NoneByNameNoNamespace -- uid: XRTK.Definitions.Utilities.Vector3Smoothed - name: Vector3Smoothed - href: api/XRTK.Definitions.Utilities.Vector3Smoothed.html - commentId: T:XRTK.Definitions.Utilities.Vector3Smoothed - fullName: XRTK.Definitions.Utilities.Vector3Smoothed - nameWithType: Vector3Smoothed -- uid: XRTK.Definitions.Utilities.Vector3Smoothed.#ctor(UnityEngine.Vector3,System.Single) - name: Vector3Smoothed(Vector3, Single) - href: api/XRTK.Definitions.Utilities.Vector3Smoothed.html#XRTK_Definitions_Utilities_Vector3Smoothed__ctor_UnityEngine_Vector3_System_Single_ - commentId: M:XRTK.Definitions.Utilities.Vector3Smoothed.#ctor(UnityEngine.Vector3,System.Single) - fullName: XRTK.Definitions.Utilities.Vector3Smoothed.Vector3Smoothed(UnityEngine.Vector3, System.Single) - nameWithType: Vector3Smoothed.Vector3Smoothed(Vector3, Single) -- uid: XRTK.Definitions.Utilities.Vector3Smoothed.#ctor* - name: Vector3Smoothed - href: api/XRTK.Definitions.Utilities.Vector3Smoothed.html#XRTK_Definitions_Utilities_Vector3Smoothed__ctor_ - commentId: Overload:XRTK.Definitions.Utilities.Vector3Smoothed.#ctor - isSpec: "True" - fullName: XRTK.Definitions.Utilities.Vector3Smoothed.Vector3Smoothed - nameWithType: Vector3Smoothed.Vector3Smoothed -- uid: XRTK.Definitions.Utilities.Vector3Smoothed.Current - name: Current - href: api/XRTK.Definitions.Utilities.Vector3Smoothed.html#XRTK_Definitions_Utilities_Vector3Smoothed_Current - commentId: P:XRTK.Definitions.Utilities.Vector3Smoothed.Current - fullName: XRTK.Definitions.Utilities.Vector3Smoothed.Current - nameWithType: Vector3Smoothed.Current -- uid: XRTK.Definitions.Utilities.Vector3Smoothed.Current* - name: Current - href: api/XRTK.Definitions.Utilities.Vector3Smoothed.html#XRTK_Definitions_Utilities_Vector3Smoothed_Current_ - commentId: Overload:XRTK.Definitions.Utilities.Vector3Smoothed.Current - isSpec: "True" - fullName: XRTK.Definitions.Utilities.Vector3Smoothed.Current - nameWithType: Vector3Smoothed.Current -- uid: XRTK.Definitions.Utilities.Vector3Smoothed.Goal - name: Goal - href: api/XRTK.Definitions.Utilities.Vector3Smoothed.html#XRTK_Definitions_Utilities_Vector3Smoothed_Goal - commentId: P:XRTK.Definitions.Utilities.Vector3Smoothed.Goal - fullName: XRTK.Definitions.Utilities.Vector3Smoothed.Goal - nameWithType: Vector3Smoothed.Goal -- uid: XRTK.Definitions.Utilities.Vector3Smoothed.Goal* - name: Goal - href: api/XRTK.Definitions.Utilities.Vector3Smoothed.html#XRTK_Definitions_Utilities_Vector3Smoothed_Goal_ - commentId: Overload:XRTK.Definitions.Utilities.Vector3Smoothed.Goal - isSpec: "True" - fullName: XRTK.Definitions.Utilities.Vector3Smoothed.Goal - nameWithType: Vector3Smoothed.Goal -- uid: XRTK.Definitions.Utilities.Vector3Smoothed.SetGoal(UnityEngine.Vector3) - name: SetGoal(Vector3) - href: api/XRTK.Definitions.Utilities.Vector3Smoothed.html#XRTK_Definitions_Utilities_Vector3Smoothed_SetGoal_UnityEngine_Vector3_ - commentId: M:XRTK.Definitions.Utilities.Vector3Smoothed.SetGoal(UnityEngine.Vector3) - fullName: XRTK.Definitions.Utilities.Vector3Smoothed.SetGoal(UnityEngine.Vector3) - nameWithType: Vector3Smoothed.SetGoal(Vector3) -- uid: XRTK.Definitions.Utilities.Vector3Smoothed.SetGoal* - name: SetGoal - href: api/XRTK.Definitions.Utilities.Vector3Smoothed.html#XRTK_Definitions_Utilities_Vector3Smoothed_SetGoal_ - commentId: Overload:XRTK.Definitions.Utilities.Vector3Smoothed.SetGoal - isSpec: "True" - fullName: XRTK.Definitions.Utilities.Vector3Smoothed.SetGoal - nameWithType: Vector3Smoothed.SetGoal -- uid: XRTK.Definitions.Utilities.Vector3Smoothed.SmoothTime - name: SmoothTime - href: api/XRTK.Definitions.Utilities.Vector3Smoothed.html#XRTK_Definitions_Utilities_Vector3Smoothed_SmoothTime - commentId: P:XRTK.Definitions.Utilities.Vector3Smoothed.SmoothTime - fullName: XRTK.Definitions.Utilities.Vector3Smoothed.SmoothTime - nameWithType: Vector3Smoothed.SmoothTime -- uid: XRTK.Definitions.Utilities.Vector3Smoothed.SmoothTime* - name: SmoothTime - href: api/XRTK.Definitions.Utilities.Vector3Smoothed.html#XRTK_Definitions_Utilities_Vector3Smoothed_SmoothTime_ - commentId: Overload:XRTK.Definitions.Utilities.Vector3Smoothed.SmoothTime - isSpec: "True" - fullName: XRTK.Definitions.Utilities.Vector3Smoothed.SmoothTime - nameWithType: Vector3Smoothed.SmoothTime -- uid: XRTK.Definitions.Utilities.Vector3Smoothed.Update(System.Single) - name: Update(Single) - href: api/XRTK.Definitions.Utilities.Vector3Smoothed.html#XRTK_Definitions_Utilities_Vector3Smoothed_Update_System_Single_ - commentId: M:XRTK.Definitions.Utilities.Vector3Smoothed.Update(System.Single) - fullName: XRTK.Definitions.Utilities.Vector3Smoothed.Update(System.Single) - nameWithType: Vector3Smoothed.Update(Single) -- uid: XRTK.Definitions.Utilities.Vector3Smoothed.Update* - name: Update - href: api/XRTK.Definitions.Utilities.Vector3Smoothed.html#XRTK_Definitions_Utilities_Vector3Smoothed_Update_ - commentId: Overload:XRTK.Definitions.Utilities.Vector3Smoothed.Update - isSpec: "True" - fullName: XRTK.Definitions.Utilities.Vector3Smoothed.Update - nameWithType: Vector3Smoothed.Update -- uid: XRTK.Editor - name: XRTK.Editor - href: api/XRTK.Editor.html - commentId: N:XRTK.Editor - fullName: XRTK.Editor - nameWithType: XRTK.Editor -- uid: XRTK.Editor.BuildPipeline - name: XRTK.Editor.BuildPipeline - href: api/XRTK.Editor.BuildPipeline.html - commentId: N:XRTK.Editor.BuildPipeline - fullName: XRTK.Editor.BuildPipeline - nameWithType: XRTK.Editor.BuildPipeline -- uid: XRTK.Editor.BuildPipeline.AndroidBuildInfo - name: AndroidBuildInfo - href: api/XRTK.Editor.BuildPipeline.AndroidBuildInfo.html - commentId: T:XRTK.Editor.BuildPipeline.AndroidBuildInfo - fullName: XRTK.Editor.BuildPipeline.AndroidBuildInfo - nameWithType: AndroidBuildInfo -- uid: XRTK.Editor.BuildPipeline.AndroidBuildInfo.BuildPlatform - name: BuildPlatform - href: api/XRTK.Editor.BuildPipeline.AndroidBuildInfo.html#XRTK_Editor_BuildPipeline_AndroidBuildInfo_BuildPlatform - commentId: P:XRTK.Editor.BuildPipeline.AndroidBuildInfo.BuildPlatform - fullName: XRTK.Editor.BuildPipeline.AndroidBuildInfo.BuildPlatform - nameWithType: AndroidBuildInfo.BuildPlatform -- uid: XRTK.Editor.BuildPipeline.AndroidBuildInfo.BuildPlatform* - name: BuildPlatform - href: api/XRTK.Editor.BuildPipeline.AndroidBuildInfo.html#XRTK_Editor_BuildPipeline_AndroidBuildInfo_BuildPlatform_ - commentId: Overload:XRTK.Editor.BuildPipeline.AndroidBuildInfo.BuildPlatform - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.AndroidBuildInfo.BuildPlatform - nameWithType: AndroidBuildInfo.BuildPlatform -- uid: XRTK.Editor.BuildPipeline.AndroidBuildInfo.BuildTarget - name: BuildTarget - href: api/XRTK.Editor.BuildPipeline.AndroidBuildInfo.html#XRTK_Editor_BuildPipeline_AndroidBuildInfo_BuildTarget - commentId: P:XRTK.Editor.BuildPipeline.AndroidBuildInfo.BuildTarget - fullName: XRTK.Editor.BuildPipeline.AndroidBuildInfo.BuildTarget - nameWithType: AndroidBuildInfo.BuildTarget -- uid: XRTK.Editor.BuildPipeline.AndroidBuildInfo.BuildTarget* - name: BuildTarget - href: api/XRTK.Editor.BuildPipeline.AndroidBuildInfo.html#XRTK_Editor_BuildPipeline_AndroidBuildInfo_BuildTarget_ - commentId: Overload:XRTK.Editor.BuildPipeline.AndroidBuildInfo.BuildTarget - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.AndroidBuildInfo.BuildTarget - nameWithType: AndroidBuildInfo.BuildTarget -- uid: XRTK.Editor.BuildPipeline.AndroidBuildInfo.ExecutableFileExtension - name: ExecutableFileExtension - href: api/XRTK.Editor.BuildPipeline.AndroidBuildInfo.html#XRTK_Editor_BuildPipeline_AndroidBuildInfo_ExecutableFileExtension - commentId: P:XRTK.Editor.BuildPipeline.AndroidBuildInfo.ExecutableFileExtension - fullName: XRTK.Editor.BuildPipeline.AndroidBuildInfo.ExecutableFileExtension - nameWithType: AndroidBuildInfo.ExecutableFileExtension -- uid: XRTK.Editor.BuildPipeline.AndroidBuildInfo.ExecutableFileExtension* - name: ExecutableFileExtension - href: api/XRTK.Editor.BuildPipeline.AndroidBuildInfo.html#XRTK_Editor_BuildPipeline_AndroidBuildInfo_ExecutableFileExtension_ - commentId: Overload:XRTK.Editor.BuildPipeline.AndroidBuildInfo.ExecutableFileExtension - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.AndroidBuildInfo.ExecutableFileExtension - nameWithType: AndroidBuildInfo.ExecutableFileExtension -- uid: XRTK.Editor.BuildPipeline.AndroidBuildInfo.OnPreProcessBuild(UnityEditor.Build.Reporting.BuildReport) - name: OnPreProcessBuild(BuildReport) - href: api/XRTK.Editor.BuildPipeline.AndroidBuildInfo.html#XRTK_Editor_BuildPipeline_AndroidBuildInfo_OnPreProcessBuild_UnityEditor_Build_Reporting_BuildReport_ - commentId: M:XRTK.Editor.BuildPipeline.AndroidBuildInfo.OnPreProcessBuild(UnityEditor.Build.Reporting.BuildReport) - fullName: XRTK.Editor.BuildPipeline.AndroidBuildInfo.OnPreProcessBuild(UnityEditor.Build.Reporting.BuildReport) - nameWithType: AndroidBuildInfo.OnPreProcessBuild(BuildReport) -- uid: XRTK.Editor.BuildPipeline.AndroidBuildInfo.OnPreProcessBuild* - name: OnPreProcessBuild - href: api/XRTK.Editor.BuildPipeline.AndroidBuildInfo.html#XRTK_Editor_BuildPipeline_AndroidBuildInfo_OnPreProcessBuild_ - commentId: Overload:XRTK.Editor.BuildPipeline.AndroidBuildInfo.OnPreProcessBuild - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.AndroidBuildInfo.OnPreProcessBuild - nameWithType: AndroidBuildInfo.OnPreProcessBuild -- uid: XRTK.Editor.BuildPipeline.BuildDeployPreferences - name: BuildDeployPreferences - href: api/XRTK.Editor.BuildPipeline.BuildDeployPreferences.html - commentId: T:XRTK.Editor.BuildPipeline.BuildDeployPreferences - fullName: XRTK.Editor.BuildPipeline.BuildDeployPreferences - nameWithType: BuildDeployPreferences -- uid: XRTK.Editor.BuildPipeline.BuildDeployPreferences.AbsoluteBuildDirectory - name: AbsoluteBuildDirectory - href: api/XRTK.Editor.BuildPipeline.BuildDeployPreferences.html#XRTK_Editor_BuildPipeline_BuildDeployPreferences_AbsoluteBuildDirectory - commentId: P:XRTK.Editor.BuildPipeline.BuildDeployPreferences.AbsoluteBuildDirectory - fullName: XRTK.Editor.BuildPipeline.BuildDeployPreferences.AbsoluteBuildDirectory - nameWithType: BuildDeployPreferences.AbsoluteBuildDirectory -- uid: XRTK.Editor.BuildPipeline.BuildDeployPreferences.AbsoluteBuildDirectory* - name: AbsoluteBuildDirectory - href: api/XRTK.Editor.BuildPipeline.BuildDeployPreferences.html#XRTK_Editor_BuildPipeline_BuildDeployPreferences_AbsoluteBuildDirectory_ - commentId: Overload:XRTK.Editor.BuildPipeline.BuildDeployPreferences.AbsoluteBuildDirectory - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.BuildDeployPreferences.AbsoluteBuildDirectory - nameWithType: BuildDeployPreferences.AbsoluteBuildDirectory -- uid: XRTK.Editor.BuildPipeline.BuildDeployPreferences.ApplicationDataPath - name: ApplicationDataPath - href: api/XRTK.Editor.BuildPipeline.BuildDeployPreferences.html#XRTK_Editor_BuildPipeline_BuildDeployPreferences_ApplicationDataPath - commentId: P:XRTK.Editor.BuildPipeline.BuildDeployPreferences.ApplicationDataPath - fullName: XRTK.Editor.BuildPipeline.BuildDeployPreferences.ApplicationDataPath - nameWithType: BuildDeployPreferences.ApplicationDataPath -- uid: XRTK.Editor.BuildPipeline.BuildDeployPreferences.ApplicationDataPath* - name: ApplicationDataPath - href: api/XRTK.Editor.BuildPipeline.BuildDeployPreferences.html#XRTK_Editor_BuildPipeline_BuildDeployPreferences_ApplicationDataPath_ - commentId: Overload:XRTK.Editor.BuildPipeline.BuildDeployPreferences.ApplicationDataPath - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.BuildDeployPreferences.ApplicationDataPath - nameWithType: BuildDeployPreferences.ApplicationDataPath -- uid: XRTK.Editor.BuildPipeline.BuildDeployPreferences.BuildDirectory - name: BuildDirectory - href: api/XRTK.Editor.BuildPipeline.BuildDeployPreferences.html#XRTK_Editor_BuildPipeline_BuildDeployPreferences_BuildDirectory - commentId: P:XRTK.Editor.BuildPipeline.BuildDeployPreferences.BuildDirectory - fullName: XRTK.Editor.BuildPipeline.BuildDeployPreferences.BuildDirectory - nameWithType: BuildDeployPreferences.BuildDirectory -- uid: XRTK.Editor.BuildPipeline.BuildDeployPreferences.BuildDirectory* - name: BuildDirectory - href: api/XRTK.Editor.BuildPipeline.BuildDeployPreferences.html#XRTK_Editor_BuildPipeline_BuildDeployPreferences_BuildDirectory_ - commentId: Overload:XRTK.Editor.BuildPipeline.BuildDeployPreferences.BuildDirectory - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.BuildDeployPreferences.BuildDirectory - nameWithType: BuildDeployPreferences.BuildDirectory -- uid: XRTK.Editor.BuildPipeline.BuildDeployWindow - name: BuildDeployWindow - href: api/XRTK.Editor.BuildPipeline.BuildDeployWindow.html - commentId: T:XRTK.Editor.BuildPipeline.BuildDeployWindow - fullName: XRTK.Editor.BuildPipeline.BuildDeployWindow - nameWithType: BuildDeployWindow -- uid: XRTK.Editor.BuildPipeline.BuildDeployWindow.OpenWindow - name: OpenWindow() - href: api/XRTK.Editor.BuildPipeline.BuildDeployWindow.html#XRTK_Editor_BuildPipeline_BuildDeployWindow_OpenWindow - commentId: M:XRTK.Editor.BuildPipeline.BuildDeployWindow.OpenWindow - fullName: XRTK.Editor.BuildPipeline.BuildDeployWindow.OpenWindow() - nameWithType: BuildDeployWindow.OpenWindow() -- uid: XRTK.Editor.BuildPipeline.BuildDeployWindow.OpenWindow* - name: OpenWindow - href: api/XRTK.Editor.BuildPipeline.BuildDeployWindow.html#XRTK_Editor_BuildPipeline_BuildDeployWindow_OpenWindow_ - commentId: Overload:XRTK.Editor.BuildPipeline.BuildDeployWindow.OpenWindow - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.BuildDeployWindow.OpenWindow - nameWithType: BuildDeployWindow.OpenWindow -- uid: XRTK.Editor.BuildPipeline.BuildInfo - name: BuildInfo - href: api/XRTK.Editor.BuildPipeline.BuildInfo.html - commentId: T:XRTK.Editor.BuildPipeline.BuildInfo - fullName: XRTK.Editor.BuildPipeline.BuildInfo - nameWithType: BuildInfo -- uid: XRTK.Editor.BuildPipeline.BuildInfo.AbsoluteOutputDirectory - name: AbsoluteOutputDirectory - href: api/XRTK.Editor.BuildPipeline.BuildInfo.html#XRTK_Editor_BuildPipeline_BuildInfo_AbsoluteOutputDirectory - commentId: P:XRTK.Editor.BuildPipeline.BuildInfo.AbsoluteOutputDirectory - fullName: XRTK.Editor.BuildPipeline.BuildInfo.AbsoluteOutputDirectory - nameWithType: BuildInfo.AbsoluteOutputDirectory -- uid: XRTK.Editor.BuildPipeline.BuildInfo.AbsoluteOutputDirectory* - name: AbsoluteOutputDirectory - href: api/XRTK.Editor.BuildPipeline.BuildInfo.html#XRTK_Editor_BuildPipeline_BuildInfo_AbsoluteOutputDirectory_ - commentId: Overload:XRTK.Editor.BuildPipeline.BuildInfo.AbsoluteOutputDirectory - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.BuildInfo.AbsoluteOutputDirectory - nameWithType: BuildInfo.AbsoluteOutputDirectory -- uid: XRTK.Editor.BuildPipeline.BuildInfo.AutoIncrement - name: AutoIncrement - href: api/XRTK.Editor.BuildPipeline.BuildInfo.html#XRTK_Editor_BuildPipeline_BuildInfo_AutoIncrement - commentId: P:XRTK.Editor.BuildPipeline.BuildInfo.AutoIncrement - fullName: XRTK.Editor.BuildPipeline.BuildInfo.AutoIncrement - nameWithType: BuildInfo.AutoIncrement -- uid: XRTK.Editor.BuildPipeline.BuildInfo.AutoIncrement* - name: AutoIncrement - href: api/XRTK.Editor.BuildPipeline.BuildInfo.html#XRTK_Editor_BuildPipeline_BuildInfo_AutoIncrement_ - commentId: Overload:XRTK.Editor.BuildPipeline.BuildInfo.AutoIncrement - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.BuildInfo.AutoIncrement - nameWithType: BuildInfo.AutoIncrement -- uid: XRTK.Editor.BuildPipeline.BuildInfo.BuildOptions - name: BuildOptions - href: api/XRTK.Editor.BuildPipeline.BuildInfo.html#XRTK_Editor_BuildPipeline_BuildInfo_BuildOptions - commentId: P:XRTK.Editor.BuildPipeline.BuildInfo.BuildOptions - fullName: XRTK.Editor.BuildPipeline.BuildInfo.BuildOptions - nameWithType: BuildInfo.BuildOptions -- uid: XRTK.Editor.BuildPipeline.BuildInfo.BuildOptions* - name: BuildOptions - href: api/XRTK.Editor.BuildPipeline.BuildInfo.html#XRTK_Editor_BuildPipeline_BuildInfo_BuildOptions_ - commentId: Overload:XRTK.Editor.BuildPipeline.BuildInfo.BuildOptions - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.BuildInfo.BuildOptions - nameWithType: BuildInfo.BuildOptions -- uid: XRTK.Editor.BuildPipeline.BuildInfo.BuildPlatform - name: BuildPlatform - href: api/XRTK.Editor.BuildPipeline.BuildInfo.html#XRTK_Editor_BuildPipeline_BuildInfo_BuildPlatform - commentId: P:XRTK.Editor.BuildPipeline.BuildInfo.BuildPlatform - fullName: XRTK.Editor.BuildPipeline.BuildInfo.BuildPlatform - nameWithType: BuildInfo.BuildPlatform -- uid: XRTK.Editor.BuildPipeline.BuildInfo.BuildPlatform* - name: BuildPlatform - href: api/XRTK.Editor.BuildPipeline.BuildInfo.html#XRTK_Editor_BuildPipeline_BuildInfo_BuildPlatform_ - commentId: Overload:XRTK.Editor.BuildPipeline.BuildInfo.BuildPlatform - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.BuildInfo.BuildPlatform - nameWithType: BuildInfo.BuildPlatform -- uid: XRTK.Editor.BuildPipeline.BuildInfo.BuildSymbols - name: BuildSymbols - href: api/XRTK.Editor.BuildPipeline.BuildInfo.html#XRTK_Editor_BuildPipeline_BuildInfo_BuildSymbols - commentId: P:XRTK.Editor.BuildPipeline.BuildInfo.BuildSymbols - fullName: XRTK.Editor.BuildPipeline.BuildInfo.BuildSymbols - nameWithType: BuildInfo.BuildSymbols -- uid: XRTK.Editor.BuildPipeline.BuildInfo.BuildSymbols* - name: BuildSymbols - href: api/XRTK.Editor.BuildPipeline.BuildInfo.html#XRTK_Editor_BuildPipeline_BuildInfo_BuildSymbols_ - commentId: Overload:XRTK.Editor.BuildPipeline.BuildInfo.BuildSymbols - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.BuildInfo.BuildSymbols - nameWithType: BuildInfo.BuildSymbols -- uid: XRTK.Editor.BuildPipeline.BuildInfo.BuildTarget - name: BuildTarget - href: api/XRTK.Editor.BuildPipeline.BuildInfo.html#XRTK_Editor_BuildPipeline_BuildInfo_BuildTarget - commentId: P:XRTK.Editor.BuildPipeline.BuildInfo.BuildTarget - fullName: XRTK.Editor.BuildPipeline.BuildInfo.BuildTarget - nameWithType: BuildInfo.BuildTarget -- uid: XRTK.Editor.BuildPipeline.BuildInfo.BuildTarget* - name: BuildTarget - href: api/XRTK.Editor.BuildPipeline.BuildInfo.html#XRTK_Editor_BuildPipeline_BuildInfo_BuildTarget_ - commentId: Overload:XRTK.Editor.BuildPipeline.BuildInfo.BuildTarget - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.BuildInfo.BuildTarget - nameWithType: BuildInfo.BuildTarget -- uid: XRTK.Editor.BuildPipeline.BuildInfo.BundleIdentifier - name: BundleIdentifier - href: api/XRTK.Editor.BuildPipeline.BuildInfo.html#XRTK_Editor_BuildPipeline_BuildInfo_BundleIdentifier - commentId: P:XRTK.Editor.BuildPipeline.BuildInfo.BundleIdentifier - fullName: XRTK.Editor.BuildPipeline.BuildInfo.BundleIdentifier - nameWithType: BuildInfo.BundleIdentifier -- uid: XRTK.Editor.BuildPipeline.BuildInfo.BundleIdentifier* - name: BundleIdentifier - href: api/XRTK.Editor.BuildPipeline.BuildInfo.html#XRTK_Editor_BuildPipeline_BuildInfo_BundleIdentifier_ - commentId: Overload:XRTK.Editor.BuildPipeline.BuildInfo.BundleIdentifier - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.BuildInfo.BundleIdentifier - nameWithType: BuildInfo.BundleIdentifier -- uid: XRTK.Editor.BuildPipeline.BuildInfo.ColorSpace - name: ColorSpace - href: api/XRTK.Editor.BuildPipeline.BuildInfo.html#XRTK_Editor_BuildPipeline_BuildInfo_ColorSpace - commentId: P:XRTK.Editor.BuildPipeline.BuildInfo.ColorSpace - fullName: XRTK.Editor.BuildPipeline.BuildInfo.ColorSpace - nameWithType: BuildInfo.ColorSpace -- uid: XRTK.Editor.BuildPipeline.BuildInfo.ColorSpace* - name: ColorSpace - href: api/XRTK.Editor.BuildPipeline.BuildInfo.html#XRTK_Editor_BuildPipeline_BuildInfo_ColorSpace_ - commentId: Overload:XRTK.Editor.BuildPipeline.BuildInfo.ColorSpace - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.BuildInfo.ColorSpace - nameWithType: BuildInfo.ColorSpace -- uid: XRTK.Editor.BuildPipeline.BuildInfo.Configuration - name: Configuration - href: api/XRTK.Editor.BuildPipeline.BuildInfo.html#XRTK_Editor_BuildPipeline_BuildInfo_Configuration - commentId: P:XRTK.Editor.BuildPipeline.BuildInfo.Configuration - fullName: XRTK.Editor.BuildPipeline.BuildInfo.Configuration - nameWithType: BuildInfo.Configuration -- uid: XRTK.Editor.BuildPipeline.BuildInfo.Configuration* - name: Configuration - href: api/XRTK.Editor.BuildPipeline.BuildInfo.html#XRTK_Editor_BuildPipeline_BuildInfo_Configuration_ - commentId: Overload:XRTK.Editor.BuildPipeline.BuildInfo.Configuration - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.BuildInfo.Configuration - nameWithType: BuildInfo.Configuration -- uid: XRTK.Editor.BuildPipeline.BuildInfo.ExecutableFileExtension - name: ExecutableFileExtension - href: api/XRTK.Editor.BuildPipeline.BuildInfo.html#XRTK_Editor_BuildPipeline_BuildInfo_ExecutableFileExtension - commentId: P:XRTK.Editor.BuildPipeline.BuildInfo.ExecutableFileExtension - fullName: XRTK.Editor.BuildPipeline.BuildInfo.ExecutableFileExtension - nameWithType: BuildInfo.ExecutableFileExtension -- uid: XRTK.Editor.BuildPipeline.BuildInfo.ExecutableFileExtension* - name: ExecutableFileExtension - href: api/XRTK.Editor.BuildPipeline.BuildInfo.html#XRTK_Editor_BuildPipeline_BuildInfo_ExecutableFileExtension_ - commentId: Overload:XRTK.Editor.BuildPipeline.BuildInfo.ExecutableFileExtension - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.BuildInfo.ExecutableFileExtension - nameWithType: BuildInfo.ExecutableFileExtension -- uid: XRTK.Editor.BuildPipeline.BuildInfo.FullOutputPath - name: FullOutputPath - href: api/XRTK.Editor.BuildPipeline.BuildInfo.html#XRTK_Editor_BuildPipeline_BuildInfo_FullOutputPath - commentId: P:XRTK.Editor.BuildPipeline.BuildInfo.FullOutputPath - fullName: XRTK.Editor.BuildPipeline.BuildInfo.FullOutputPath - nameWithType: BuildInfo.FullOutputPath -- uid: XRTK.Editor.BuildPipeline.BuildInfo.FullOutputPath* - name: FullOutputPath - href: api/XRTK.Editor.BuildPipeline.BuildInfo.html#XRTK_Editor_BuildPipeline_BuildInfo_FullOutputPath_ - commentId: Overload:XRTK.Editor.BuildPipeline.BuildInfo.FullOutputPath - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.BuildInfo.FullOutputPath - nameWithType: BuildInfo.FullOutputPath -- uid: XRTK.Editor.BuildPipeline.BuildInfo.Install - name: Install - href: api/XRTK.Editor.BuildPipeline.BuildInfo.html#XRTK_Editor_BuildPipeline_BuildInfo_Install - commentId: P:XRTK.Editor.BuildPipeline.BuildInfo.Install - fullName: XRTK.Editor.BuildPipeline.BuildInfo.Install - nameWithType: BuildInfo.Install -- uid: XRTK.Editor.BuildPipeline.BuildInfo.Install* - name: Install - href: api/XRTK.Editor.BuildPipeline.BuildInfo.html#XRTK_Editor_BuildPipeline_BuildInfo_Install_ - commentId: Overload:XRTK.Editor.BuildPipeline.BuildInfo.Install - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.BuildInfo.Install - nameWithType: BuildInfo.Install -- uid: XRTK.Editor.BuildPipeline.BuildInfo.IsCommandLine - name: IsCommandLine - href: api/XRTK.Editor.BuildPipeline.BuildInfo.html#XRTK_Editor_BuildPipeline_BuildInfo_IsCommandLine - commentId: P:XRTK.Editor.BuildPipeline.BuildInfo.IsCommandLine - fullName: XRTK.Editor.BuildPipeline.BuildInfo.IsCommandLine - nameWithType: BuildInfo.IsCommandLine -- uid: XRTK.Editor.BuildPipeline.BuildInfo.IsCommandLine* - name: IsCommandLine - href: api/XRTK.Editor.BuildPipeline.BuildInfo.html#XRTK_Editor_BuildPipeline_BuildInfo_IsCommandLine_ - commentId: Overload:XRTK.Editor.BuildPipeline.BuildInfo.IsCommandLine - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.BuildInfo.IsCommandLine - nameWithType: BuildInfo.IsCommandLine -- uid: XRTK.Editor.BuildPipeline.BuildInfo.OnEnable - name: OnEnable() - href: api/XRTK.Editor.BuildPipeline.BuildInfo.html#XRTK_Editor_BuildPipeline_BuildInfo_OnEnable - commentId: M:XRTK.Editor.BuildPipeline.BuildInfo.OnEnable - fullName: XRTK.Editor.BuildPipeline.BuildInfo.OnEnable() - nameWithType: BuildInfo.OnEnable() -- uid: XRTK.Editor.BuildPipeline.BuildInfo.OnEnable* - name: OnEnable - href: api/XRTK.Editor.BuildPipeline.BuildInfo.html#XRTK_Editor_BuildPipeline_BuildInfo_OnEnable_ - commentId: Overload:XRTK.Editor.BuildPipeline.BuildInfo.OnEnable - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.BuildInfo.OnEnable - nameWithType: BuildInfo.OnEnable -- uid: XRTK.Editor.BuildPipeline.BuildInfo.OnPostProcessBuild(UnityEditor.Build.Reporting.BuildReport) - name: OnPostProcessBuild(BuildReport) - href: api/XRTK.Editor.BuildPipeline.BuildInfo.html#XRTK_Editor_BuildPipeline_BuildInfo_OnPostProcessBuild_UnityEditor_Build_Reporting_BuildReport_ - commentId: M:XRTK.Editor.BuildPipeline.BuildInfo.OnPostProcessBuild(UnityEditor.Build.Reporting.BuildReport) - fullName: XRTK.Editor.BuildPipeline.BuildInfo.OnPostProcessBuild(UnityEditor.Build.Reporting.BuildReport) - nameWithType: BuildInfo.OnPostProcessBuild(BuildReport) -- uid: XRTK.Editor.BuildPipeline.BuildInfo.OnPostProcessBuild* - name: OnPostProcessBuild - href: api/XRTK.Editor.BuildPipeline.BuildInfo.html#XRTK_Editor_BuildPipeline_BuildInfo_OnPostProcessBuild_ - commentId: Overload:XRTK.Editor.BuildPipeline.BuildInfo.OnPostProcessBuild - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.BuildInfo.OnPostProcessBuild - nameWithType: BuildInfo.OnPostProcessBuild -- uid: XRTK.Editor.BuildPipeline.BuildInfo.OnPreProcessBuild(UnityEditor.Build.Reporting.BuildReport) - name: OnPreProcessBuild(BuildReport) - href: api/XRTK.Editor.BuildPipeline.BuildInfo.html#XRTK_Editor_BuildPipeline_BuildInfo_OnPreProcessBuild_UnityEditor_Build_Reporting_BuildReport_ - commentId: M:XRTK.Editor.BuildPipeline.BuildInfo.OnPreProcessBuild(UnityEditor.Build.Reporting.BuildReport) - fullName: XRTK.Editor.BuildPipeline.BuildInfo.OnPreProcessBuild(UnityEditor.Build.Reporting.BuildReport) - nameWithType: BuildInfo.OnPreProcessBuild(BuildReport) -- uid: XRTK.Editor.BuildPipeline.BuildInfo.OnPreProcessBuild* - name: OnPreProcessBuild - href: api/XRTK.Editor.BuildPipeline.BuildInfo.html#XRTK_Editor_BuildPipeline_BuildInfo_OnPreProcessBuild_ - commentId: Overload:XRTK.Editor.BuildPipeline.BuildInfo.OnPreProcessBuild - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.BuildInfo.OnPreProcessBuild - nameWithType: BuildInfo.OnPreProcessBuild -- uid: XRTK.Editor.BuildPipeline.BuildInfo.OutputDirectory - name: OutputDirectory - href: api/XRTK.Editor.BuildPipeline.BuildInfo.html#XRTK_Editor_BuildPipeline_BuildInfo_OutputDirectory - commentId: P:XRTK.Editor.BuildPipeline.BuildInfo.OutputDirectory - fullName: XRTK.Editor.BuildPipeline.BuildInfo.OutputDirectory - nameWithType: BuildInfo.OutputDirectory -- uid: XRTK.Editor.BuildPipeline.BuildInfo.OutputDirectory* - name: OutputDirectory - href: api/XRTK.Editor.BuildPipeline.BuildInfo.html#XRTK_Editor_BuildPipeline_BuildInfo_OutputDirectory_ - commentId: Overload:XRTK.Editor.BuildPipeline.BuildInfo.OutputDirectory - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.BuildInfo.OutputDirectory - nameWithType: BuildInfo.OutputDirectory -- uid: XRTK.Editor.BuildPipeline.BuildInfo.ParseCommandLineArgs - name: ParseCommandLineArgs() - href: api/XRTK.Editor.BuildPipeline.BuildInfo.html#XRTK_Editor_BuildPipeline_BuildInfo_ParseCommandLineArgs - commentId: M:XRTK.Editor.BuildPipeline.BuildInfo.ParseCommandLineArgs - fullName: XRTK.Editor.BuildPipeline.BuildInfo.ParseCommandLineArgs() - nameWithType: BuildInfo.ParseCommandLineArgs() -- uid: XRTK.Editor.BuildPipeline.BuildInfo.ParseCommandLineArgs* - name: ParseCommandLineArgs - href: api/XRTK.Editor.BuildPipeline.BuildInfo.html#XRTK_Editor_BuildPipeline_BuildInfo_ParseCommandLineArgs_ - commentId: Overload:XRTK.Editor.BuildPipeline.BuildInfo.ParseCommandLineArgs - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.BuildInfo.ParseCommandLineArgs - nameWithType: BuildInfo.ParseCommandLineArgs -- uid: XRTK.Editor.BuildPipeline.BuildInfo.Scenes - name: Scenes - href: api/XRTK.Editor.BuildPipeline.BuildInfo.html#XRTK_Editor_BuildPipeline_BuildInfo_Scenes - commentId: P:XRTK.Editor.BuildPipeline.BuildInfo.Scenes - fullName: XRTK.Editor.BuildPipeline.BuildInfo.Scenes - nameWithType: BuildInfo.Scenes -- uid: XRTK.Editor.BuildPipeline.BuildInfo.Scenes* - name: Scenes - href: api/XRTK.Editor.BuildPipeline.BuildInfo.html#XRTK_Editor_BuildPipeline_BuildInfo_Scenes_ - commentId: Overload:XRTK.Editor.BuildPipeline.BuildInfo.Scenes - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.BuildInfo.Scenes - nameWithType: BuildInfo.Scenes -- uid: XRTK.Editor.BuildPipeline.BuildInfo.Version - name: Version - href: api/XRTK.Editor.BuildPipeline.BuildInfo.html#XRTK_Editor_BuildPipeline_BuildInfo_Version - commentId: P:XRTK.Editor.BuildPipeline.BuildInfo.Version - fullName: XRTK.Editor.BuildPipeline.BuildInfo.Version - nameWithType: BuildInfo.Version -- uid: XRTK.Editor.BuildPipeline.BuildInfo.Version* - name: Version - href: api/XRTK.Editor.BuildPipeline.BuildInfo.html#XRTK_Editor_BuildPipeline_BuildInfo_Version_ - commentId: Overload:XRTK.Editor.BuildPipeline.BuildInfo.Version - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.BuildInfo.Version - nameWithType: BuildInfo.Version -- uid: XRTK.Editor.BuildPipeline.BuildInfo.VersionCode - name: VersionCode - href: api/XRTK.Editor.BuildPipeline.BuildInfo.html#XRTK_Editor_BuildPipeline_BuildInfo_VersionCode - commentId: P:XRTK.Editor.BuildPipeline.BuildInfo.VersionCode - fullName: XRTK.Editor.BuildPipeline.BuildInfo.VersionCode - nameWithType: BuildInfo.VersionCode -- uid: XRTK.Editor.BuildPipeline.BuildInfo.VersionCode* - name: VersionCode - href: api/XRTK.Editor.BuildPipeline.BuildInfo.html#XRTK_Editor_BuildPipeline_BuildInfo_VersionCode_ - commentId: Overload:XRTK.Editor.BuildPipeline.BuildInfo.VersionCode - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.BuildInfo.VersionCode - nameWithType: BuildInfo.VersionCode -- uid: XRTK.Editor.BuildPipeline.BuildInfoExtensions - name: BuildInfoExtensions - href: api/XRTK.Editor.BuildPipeline.BuildInfoExtensions.html - commentId: T:XRTK.Editor.BuildPipeline.BuildInfoExtensions - fullName: XRTK.Editor.BuildPipeline.BuildInfoExtensions - nameWithType: BuildInfoExtensions -- uid: XRTK.Editor.BuildPipeline.BuildInfoExtensions.AppendSymbols(XRTK.Editor.BuildPipeline.IBuildInfo,System.Collections.Generic.IEnumerable{System.String}) - name: AppendSymbols(IBuildInfo, IEnumerable) - href: api/XRTK.Editor.BuildPipeline.BuildInfoExtensions.html#XRTK_Editor_BuildPipeline_BuildInfoExtensions_AppendSymbols_XRTK_Editor_BuildPipeline_IBuildInfo_System_Collections_Generic_IEnumerable_System_String__ - commentId: M:XRTK.Editor.BuildPipeline.BuildInfoExtensions.AppendSymbols(XRTK.Editor.BuildPipeline.IBuildInfo,System.Collections.Generic.IEnumerable{System.String}) - name.vb: AppendSymbols(IBuildInfo, IEnumerable(Of String)) - fullName: XRTK.Editor.BuildPipeline.BuildInfoExtensions.AppendSymbols(XRTK.Editor.BuildPipeline.IBuildInfo, System.Collections.Generic.IEnumerable) - fullName.vb: XRTK.Editor.BuildPipeline.BuildInfoExtensions.AppendSymbols(XRTK.Editor.BuildPipeline.IBuildInfo, System.Collections.Generic.IEnumerable(Of System.String)) - nameWithType: BuildInfoExtensions.AppendSymbols(IBuildInfo, IEnumerable) - nameWithType.vb: BuildInfoExtensions.AppendSymbols(IBuildInfo, IEnumerable(Of String)) -- uid: XRTK.Editor.BuildPipeline.BuildInfoExtensions.AppendSymbols(XRTK.Editor.BuildPipeline.IBuildInfo,System.String[]) - name: AppendSymbols(IBuildInfo, String[]) - href: api/XRTK.Editor.BuildPipeline.BuildInfoExtensions.html#XRTK_Editor_BuildPipeline_BuildInfoExtensions_AppendSymbols_XRTK_Editor_BuildPipeline_IBuildInfo_System_String___ - commentId: M:XRTK.Editor.BuildPipeline.BuildInfoExtensions.AppendSymbols(XRTK.Editor.BuildPipeline.IBuildInfo,System.String[]) - name.vb: AppendSymbols(IBuildInfo, String()) - fullName: XRTK.Editor.BuildPipeline.BuildInfoExtensions.AppendSymbols(XRTK.Editor.BuildPipeline.IBuildInfo, System.String[]) - fullName.vb: XRTK.Editor.BuildPipeline.BuildInfoExtensions.AppendSymbols(XRTK.Editor.BuildPipeline.IBuildInfo, System.String()) - nameWithType: BuildInfoExtensions.AppendSymbols(IBuildInfo, String[]) - nameWithType.vb: BuildInfoExtensions.AppendSymbols(IBuildInfo, String()) -- uid: XRTK.Editor.BuildPipeline.BuildInfoExtensions.AppendSymbols* - name: AppendSymbols - href: api/XRTK.Editor.BuildPipeline.BuildInfoExtensions.html#XRTK_Editor_BuildPipeline_BuildInfoExtensions_AppendSymbols_ - commentId: Overload:XRTK.Editor.BuildPipeline.BuildInfoExtensions.AppendSymbols - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.BuildInfoExtensions.AppendSymbols - nameWithType: BuildInfoExtensions.AppendSymbols -- uid: XRTK.Editor.BuildPipeline.BuildInfoExtensions.AppendWithoutConfigurationSymbols(XRTK.Editor.BuildPipeline.IBuildInfo,System.String) - name: AppendWithoutConfigurationSymbols(IBuildInfo, String) - href: api/XRTK.Editor.BuildPipeline.BuildInfoExtensions.html#XRTK_Editor_BuildPipeline_BuildInfoExtensions_AppendWithoutConfigurationSymbols_XRTK_Editor_BuildPipeline_IBuildInfo_System_String_ - commentId: M:XRTK.Editor.BuildPipeline.BuildInfoExtensions.AppendWithoutConfigurationSymbols(XRTK.Editor.BuildPipeline.IBuildInfo,System.String) - fullName: XRTK.Editor.BuildPipeline.BuildInfoExtensions.AppendWithoutConfigurationSymbols(XRTK.Editor.BuildPipeline.IBuildInfo, System.String) - nameWithType: BuildInfoExtensions.AppendWithoutConfigurationSymbols(IBuildInfo, String) -- uid: XRTK.Editor.BuildPipeline.BuildInfoExtensions.AppendWithoutConfigurationSymbols* - name: AppendWithoutConfigurationSymbols - href: api/XRTK.Editor.BuildPipeline.BuildInfoExtensions.html#XRTK_Editor_BuildPipeline_BuildInfoExtensions_AppendWithoutConfigurationSymbols_ - commentId: Overload:XRTK.Editor.BuildPipeline.BuildInfoExtensions.AppendWithoutConfigurationSymbols - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.BuildInfoExtensions.AppendWithoutConfigurationSymbols - nameWithType: BuildInfoExtensions.AppendWithoutConfigurationSymbols -- uid: XRTK.Editor.BuildPipeline.BuildInfoExtensions.HasAnySymbols(XRTK.Editor.BuildPipeline.IBuildInfo,System.Collections.Generic.IEnumerable{System.String}) - name: HasAnySymbols(IBuildInfo, IEnumerable) - href: api/XRTK.Editor.BuildPipeline.BuildInfoExtensions.html#XRTK_Editor_BuildPipeline_BuildInfoExtensions_HasAnySymbols_XRTK_Editor_BuildPipeline_IBuildInfo_System_Collections_Generic_IEnumerable_System_String__ - commentId: M:XRTK.Editor.BuildPipeline.BuildInfoExtensions.HasAnySymbols(XRTK.Editor.BuildPipeline.IBuildInfo,System.Collections.Generic.IEnumerable{System.String}) - name.vb: HasAnySymbols(IBuildInfo, IEnumerable(Of String)) - fullName: XRTK.Editor.BuildPipeline.BuildInfoExtensions.HasAnySymbols(XRTK.Editor.BuildPipeline.IBuildInfo, System.Collections.Generic.IEnumerable) - fullName.vb: XRTK.Editor.BuildPipeline.BuildInfoExtensions.HasAnySymbols(XRTK.Editor.BuildPipeline.IBuildInfo, System.Collections.Generic.IEnumerable(Of System.String)) - nameWithType: BuildInfoExtensions.HasAnySymbols(IBuildInfo, IEnumerable) - nameWithType.vb: BuildInfoExtensions.HasAnySymbols(IBuildInfo, IEnumerable(Of String)) -- uid: XRTK.Editor.BuildPipeline.BuildInfoExtensions.HasAnySymbols(XRTK.Editor.BuildPipeline.IBuildInfo,System.String[]) - name: HasAnySymbols(IBuildInfo, String[]) - href: api/XRTK.Editor.BuildPipeline.BuildInfoExtensions.html#XRTK_Editor_BuildPipeline_BuildInfoExtensions_HasAnySymbols_XRTK_Editor_BuildPipeline_IBuildInfo_System_String___ - commentId: M:XRTK.Editor.BuildPipeline.BuildInfoExtensions.HasAnySymbols(XRTK.Editor.BuildPipeline.IBuildInfo,System.String[]) - name.vb: HasAnySymbols(IBuildInfo, String()) - fullName: XRTK.Editor.BuildPipeline.BuildInfoExtensions.HasAnySymbols(XRTK.Editor.BuildPipeline.IBuildInfo, System.String[]) - fullName.vb: XRTK.Editor.BuildPipeline.BuildInfoExtensions.HasAnySymbols(XRTK.Editor.BuildPipeline.IBuildInfo, System.String()) - nameWithType: BuildInfoExtensions.HasAnySymbols(IBuildInfo, String[]) - nameWithType.vb: BuildInfoExtensions.HasAnySymbols(IBuildInfo, String()) -- uid: XRTK.Editor.BuildPipeline.BuildInfoExtensions.HasAnySymbols* - name: HasAnySymbols - href: api/XRTK.Editor.BuildPipeline.BuildInfoExtensions.html#XRTK_Editor_BuildPipeline_BuildInfoExtensions_HasAnySymbols_ - commentId: Overload:XRTK.Editor.BuildPipeline.BuildInfoExtensions.HasAnySymbols - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.BuildInfoExtensions.HasAnySymbols - nameWithType: BuildInfoExtensions.HasAnySymbols -- uid: XRTK.Editor.BuildPipeline.BuildInfoExtensions.HasConfigurationSymbol(XRTK.Editor.BuildPipeline.IBuildInfo) - name: HasConfigurationSymbol(IBuildInfo) - href: api/XRTK.Editor.BuildPipeline.BuildInfoExtensions.html#XRTK_Editor_BuildPipeline_BuildInfoExtensions_HasConfigurationSymbol_XRTK_Editor_BuildPipeline_IBuildInfo_ - commentId: M:XRTK.Editor.BuildPipeline.BuildInfoExtensions.HasConfigurationSymbol(XRTK.Editor.BuildPipeline.IBuildInfo) - fullName: XRTK.Editor.BuildPipeline.BuildInfoExtensions.HasConfigurationSymbol(XRTK.Editor.BuildPipeline.IBuildInfo) - nameWithType: BuildInfoExtensions.HasConfigurationSymbol(IBuildInfo) -- uid: XRTK.Editor.BuildPipeline.BuildInfoExtensions.HasConfigurationSymbol* - name: HasConfigurationSymbol - href: api/XRTK.Editor.BuildPipeline.BuildInfoExtensions.html#XRTK_Editor_BuildPipeline_BuildInfoExtensions_HasConfigurationSymbol_ - commentId: Overload:XRTK.Editor.BuildPipeline.BuildInfoExtensions.HasConfigurationSymbol - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.BuildInfoExtensions.HasConfigurationSymbol - nameWithType: BuildInfoExtensions.HasConfigurationSymbol -- uid: XRTK.Editor.BuildPipeline.BuildInfoExtensions.RemoveSymbols(XRTK.Editor.BuildPipeline.IBuildInfo,System.Collections.Generic.IEnumerable{System.String}) - name: RemoveSymbols(IBuildInfo, IEnumerable) - href: api/XRTK.Editor.BuildPipeline.BuildInfoExtensions.html#XRTK_Editor_BuildPipeline_BuildInfoExtensions_RemoveSymbols_XRTK_Editor_BuildPipeline_IBuildInfo_System_Collections_Generic_IEnumerable_System_String__ - commentId: M:XRTK.Editor.BuildPipeline.BuildInfoExtensions.RemoveSymbols(XRTK.Editor.BuildPipeline.IBuildInfo,System.Collections.Generic.IEnumerable{System.String}) - name.vb: RemoveSymbols(IBuildInfo, IEnumerable(Of String)) - fullName: XRTK.Editor.BuildPipeline.BuildInfoExtensions.RemoveSymbols(XRTK.Editor.BuildPipeline.IBuildInfo, System.Collections.Generic.IEnumerable) - fullName.vb: XRTK.Editor.BuildPipeline.BuildInfoExtensions.RemoveSymbols(XRTK.Editor.BuildPipeline.IBuildInfo, System.Collections.Generic.IEnumerable(Of System.String)) - nameWithType: BuildInfoExtensions.RemoveSymbols(IBuildInfo, IEnumerable) - nameWithType.vb: BuildInfoExtensions.RemoveSymbols(IBuildInfo, IEnumerable(Of String)) -- uid: XRTK.Editor.BuildPipeline.BuildInfoExtensions.RemoveSymbols* - name: RemoveSymbols - href: api/XRTK.Editor.BuildPipeline.BuildInfoExtensions.html#XRTK_Editor_BuildPipeline_BuildInfoExtensions_RemoveSymbols_ - commentId: Overload:XRTK.Editor.BuildPipeline.BuildInfoExtensions.RemoveSymbols - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.BuildInfoExtensions.RemoveSymbols - nameWithType: BuildInfoExtensions.RemoveSymbols -- uid: XRTK.Editor.BuildPipeline.BuildInfoInspector - name: BuildInfoInspector - href: api/XRTK.Editor.BuildPipeline.BuildInfoInspector.html - commentId: T:XRTK.Editor.BuildPipeline.BuildInfoInspector - fullName: XRTK.Editor.BuildPipeline.BuildInfoInspector - nameWithType: BuildInfoInspector -- uid: XRTK.Editor.BuildPipeline.BuildInfoInspector.buildInfo - name: buildInfo - href: api/XRTK.Editor.BuildPipeline.BuildInfoInspector.html#XRTK_Editor_BuildPipeline_BuildInfoInspector_buildInfo - commentId: F:XRTK.Editor.BuildPipeline.BuildInfoInspector.buildInfo - fullName: XRTK.Editor.BuildPipeline.BuildInfoInspector.buildInfo - nameWithType: BuildInfoInspector.buildInfo -- uid: XRTK.Editor.BuildPipeline.BuildInfoInspector.OnEnable - name: OnEnable() - href: api/XRTK.Editor.BuildPipeline.BuildInfoInspector.html#XRTK_Editor_BuildPipeline_BuildInfoInspector_OnEnable - commentId: M:XRTK.Editor.BuildPipeline.BuildInfoInspector.OnEnable - fullName: XRTK.Editor.BuildPipeline.BuildInfoInspector.OnEnable() - nameWithType: BuildInfoInspector.OnEnable() -- uid: XRTK.Editor.BuildPipeline.BuildInfoInspector.OnEnable* - name: OnEnable - href: api/XRTK.Editor.BuildPipeline.BuildInfoInspector.html#XRTK_Editor_BuildPipeline_BuildInfoInspector_OnEnable_ - commentId: Overload:XRTK.Editor.BuildPipeline.BuildInfoInspector.OnEnable - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.BuildInfoInspector.OnEnable - nameWithType: BuildInfoInspector.OnEnable -- uid: XRTK.Editor.BuildPipeline.BuildInfoInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.Editor.BuildPipeline.BuildInfoInspector.html#XRTK_Editor_BuildPipeline_BuildInfoInspector_OnInspectorGUI - commentId: M:XRTK.Editor.BuildPipeline.BuildInfoInspector.OnInspectorGUI - fullName: XRTK.Editor.BuildPipeline.BuildInfoInspector.OnInspectorGUI() - nameWithType: BuildInfoInspector.OnInspectorGUI() -- uid: XRTK.Editor.BuildPipeline.BuildInfoInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.Editor.BuildPipeline.BuildInfoInspector.html#XRTK_Editor_BuildPipeline_BuildInfoInspector_OnInspectorGUI_ - commentId: Overload:XRTK.Editor.BuildPipeline.BuildInfoInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.BuildInfoInspector.OnInspectorGUI - nameWithType: BuildInfoInspector.OnInspectorGUI -- uid: XRTK.Editor.BuildPipeline.IBuildInfo - name: IBuildInfo - href: api/XRTK.Editor.BuildPipeline.IBuildInfo.html - commentId: T:XRTK.Editor.BuildPipeline.IBuildInfo - fullName: XRTK.Editor.BuildPipeline.IBuildInfo - nameWithType: IBuildInfo -- uid: XRTK.Editor.BuildPipeline.IBuildInfo.AbsoluteOutputDirectory - name: AbsoluteOutputDirectory - href: api/XRTK.Editor.BuildPipeline.IBuildInfo.html#XRTK_Editor_BuildPipeline_IBuildInfo_AbsoluteOutputDirectory - commentId: P:XRTK.Editor.BuildPipeline.IBuildInfo.AbsoluteOutputDirectory - fullName: XRTK.Editor.BuildPipeline.IBuildInfo.AbsoluteOutputDirectory - nameWithType: IBuildInfo.AbsoluteOutputDirectory -- uid: XRTK.Editor.BuildPipeline.IBuildInfo.AbsoluteOutputDirectory* - name: AbsoluteOutputDirectory - href: api/XRTK.Editor.BuildPipeline.IBuildInfo.html#XRTK_Editor_BuildPipeline_IBuildInfo_AbsoluteOutputDirectory_ - commentId: Overload:XRTK.Editor.BuildPipeline.IBuildInfo.AbsoluteOutputDirectory - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.IBuildInfo.AbsoluteOutputDirectory - nameWithType: IBuildInfo.AbsoluteOutputDirectory -- uid: XRTK.Editor.BuildPipeline.IBuildInfo.AutoIncrement - name: AutoIncrement - href: api/XRTK.Editor.BuildPipeline.IBuildInfo.html#XRTK_Editor_BuildPipeline_IBuildInfo_AutoIncrement - commentId: P:XRTK.Editor.BuildPipeline.IBuildInfo.AutoIncrement - fullName: XRTK.Editor.BuildPipeline.IBuildInfo.AutoIncrement - nameWithType: IBuildInfo.AutoIncrement -- uid: XRTK.Editor.BuildPipeline.IBuildInfo.AutoIncrement* - name: AutoIncrement - href: api/XRTK.Editor.BuildPipeline.IBuildInfo.html#XRTK_Editor_BuildPipeline_IBuildInfo_AutoIncrement_ - commentId: Overload:XRTK.Editor.BuildPipeline.IBuildInfo.AutoIncrement - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.IBuildInfo.AutoIncrement - nameWithType: IBuildInfo.AutoIncrement -- uid: XRTK.Editor.BuildPipeline.IBuildInfo.BuildOptions - name: BuildOptions - href: api/XRTK.Editor.BuildPipeline.IBuildInfo.html#XRTK_Editor_BuildPipeline_IBuildInfo_BuildOptions - commentId: P:XRTK.Editor.BuildPipeline.IBuildInfo.BuildOptions - fullName: XRTK.Editor.BuildPipeline.IBuildInfo.BuildOptions - nameWithType: IBuildInfo.BuildOptions -- uid: XRTK.Editor.BuildPipeline.IBuildInfo.BuildOptions* - name: BuildOptions - href: api/XRTK.Editor.BuildPipeline.IBuildInfo.html#XRTK_Editor_BuildPipeline_IBuildInfo_BuildOptions_ - commentId: Overload:XRTK.Editor.BuildPipeline.IBuildInfo.BuildOptions - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.IBuildInfo.BuildOptions - nameWithType: IBuildInfo.BuildOptions -- uid: XRTK.Editor.BuildPipeline.IBuildInfo.BuildPlatform - name: BuildPlatform - href: api/XRTK.Editor.BuildPipeline.IBuildInfo.html#XRTK_Editor_BuildPipeline_IBuildInfo_BuildPlatform - commentId: P:XRTK.Editor.BuildPipeline.IBuildInfo.BuildPlatform - fullName: XRTK.Editor.BuildPipeline.IBuildInfo.BuildPlatform - nameWithType: IBuildInfo.BuildPlatform -- uid: XRTK.Editor.BuildPipeline.IBuildInfo.BuildPlatform* - name: BuildPlatform - href: api/XRTK.Editor.BuildPipeline.IBuildInfo.html#XRTK_Editor_BuildPipeline_IBuildInfo_BuildPlatform_ - commentId: Overload:XRTK.Editor.BuildPipeline.IBuildInfo.BuildPlatform - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.IBuildInfo.BuildPlatform - nameWithType: IBuildInfo.BuildPlatform -- uid: XRTK.Editor.BuildPipeline.IBuildInfo.BuildSymbols - name: BuildSymbols - href: api/XRTK.Editor.BuildPipeline.IBuildInfo.html#XRTK_Editor_BuildPipeline_IBuildInfo_BuildSymbols - commentId: P:XRTK.Editor.BuildPipeline.IBuildInfo.BuildSymbols - fullName: XRTK.Editor.BuildPipeline.IBuildInfo.BuildSymbols - nameWithType: IBuildInfo.BuildSymbols -- uid: XRTK.Editor.BuildPipeline.IBuildInfo.BuildSymbols* - name: BuildSymbols - href: api/XRTK.Editor.BuildPipeline.IBuildInfo.html#XRTK_Editor_BuildPipeline_IBuildInfo_BuildSymbols_ - commentId: Overload:XRTK.Editor.BuildPipeline.IBuildInfo.BuildSymbols - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.IBuildInfo.BuildSymbols - nameWithType: IBuildInfo.BuildSymbols -- uid: XRTK.Editor.BuildPipeline.IBuildInfo.BuildTarget - name: BuildTarget - href: api/XRTK.Editor.BuildPipeline.IBuildInfo.html#XRTK_Editor_BuildPipeline_IBuildInfo_BuildTarget - commentId: P:XRTK.Editor.BuildPipeline.IBuildInfo.BuildTarget - fullName: XRTK.Editor.BuildPipeline.IBuildInfo.BuildTarget - nameWithType: IBuildInfo.BuildTarget -- uid: XRTK.Editor.BuildPipeline.IBuildInfo.BuildTarget* - name: BuildTarget - href: api/XRTK.Editor.BuildPipeline.IBuildInfo.html#XRTK_Editor_BuildPipeline_IBuildInfo_BuildTarget_ - commentId: Overload:XRTK.Editor.BuildPipeline.IBuildInfo.BuildTarget - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.IBuildInfo.BuildTarget - nameWithType: IBuildInfo.BuildTarget -- uid: XRTK.Editor.BuildPipeline.IBuildInfo.BundleIdentifier - name: BundleIdentifier - href: api/XRTK.Editor.BuildPipeline.IBuildInfo.html#XRTK_Editor_BuildPipeline_IBuildInfo_BundleIdentifier - commentId: P:XRTK.Editor.BuildPipeline.IBuildInfo.BundleIdentifier - fullName: XRTK.Editor.BuildPipeline.IBuildInfo.BundleIdentifier - nameWithType: IBuildInfo.BundleIdentifier -- uid: XRTK.Editor.BuildPipeline.IBuildInfo.BundleIdentifier* - name: BundleIdentifier - href: api/XRTK.Editor.BuildPipeline.IBuildInfo.html#XRTK_Editor_BuildPipeline_IBuildInfo_BundleIdentifier_ - commentId: Overload:XRTK.Editor.BuildPipeline.IBuildInfo.BundleIdentifier - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.IBuildInfo.BundleIdentifier - nameWithType: IBuildInfo.BundleIdentifier -- uid: XRTK.Editor.BuildPipeline.IBuildInfo.ColorSpace - name: ColorSpace - href: api/XRTK.Editor.BuildPipeline.IBuildInfo.html#XRTK_Editor_BuildPipeline_IBuildInfo_ColorSpace - commentId: P:XRTK.Editor.BuildPipeline.IBuildInfo.ColorSpace - fullName: XRTK.Editor.BuildPipeline.IBuildInfo.ColorSpace - nameWithType: IBuildInfo.ColorSpace -- uid: XRTK.Editor.BuildPipeline.IBuildInfo.ColorSpace* - name: ColorSpace - href: api/XRTK.Editor.BuildPipeline.IBuildInfo.html#XRTK_Editor_BuildPipeline_IBuildInfo_ColorSpace_ - commentId: Overload:XRTK.Editor.BuildPipeline.IBuildInfo.ColorSpace - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.IBuildInfo.ColorSpace - nameWithType: IBuildInfo.ColorSpace -- uid: XRTK.Editor.BuildPipeline.IBuildInfo.Configuration - name: Configuration - href: api/XRTK.Editor.BuildPipeline.IBuildInfo.html#XRTK_Editor_BuildPipeline_IBuildInfo_Configuration - commentId: P:XRTK.Editor.BuildPipeline.IBuildInfo.Configuration - fullName: XRTK.Editor.BuildPipeline.IBuildInfo.Configuration - nameWithType: IBuildInfo.Configuration -- uid: XRTK.Editor.BuildPipeline.IBuildInfo.Configuration* - name: Configuration - href: api/XRTK.Editor.BuildPipeline.IBuildInfo.html#XRTK_Editor_BuildPipeline_IBuildInfo_Configuration_ - commentId: Overload:XRTK.Editor.BuildPipeline.IBuildInfo.Configuration - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.IBuildInfo.Configuration - nameWithType: IBuildInfo.Configuration -- uid: XRTK.Editor.BuildPipeline.IBuildInfo.ExecutableFileExtension - name: ExecutableFileExtension - href: api/XRTK.Editor.BuildPipeline.IBuildInfo.html#XRTK_Editor_BuildPipeline_IBuildInfo_ExecutableFileExtension - commentId: P:XRTK.Editor.BuildPipeline.IBuildInfo.ExecutableFileExtension - fullName: XRTK.Editor.BuildPipeline.IBuildInfo.ExecutableFileExtension - nameWithType: IBuildInfo.ExecutableFileExtension -- uid: XRTK.Editor.BuildPipeline.IBuildInfo.ExecutableFileExtension* - name: ExecutableFileExtension - href: api/XRTK.Editor.BuildPipeline.IBuildInfo.html#XRTK_Editor_BuildPipeline_IBuildInfo_ExecutableFileExtension_ - commentId: Overload:XRTK.Editor.BuildPipeline.IBuildInfo.ExecutableFileExtension - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.IBuildInfo.ExecutableFileExtension - nameWithType: IBuildInfo.ExecutableFileExtension -- uid: XRTK.Editor.BuildPipeline.IBuildInfo.FullOutputPath - name: FullOutputPath - href: api/XRTK.Editor.BuildPipeline.IBuildInfo.html#XRTK_Editor_BuildPipeline_IBuildInfo_FullOutputPath - commentId: P:XRTK.Editor.BuildPipeline.IBuildInfo.FullOutputPath - fullName: XRTK.Editor.BuildPipeline.IBuildInfo.FullOutputPath - nameWithType: IBuildInfo.FullOutputPath -- uid: XRTK.Editor.BuildPipeline.IBuildInfo.FullOutputPath* - name: FullOutputPath - href: api/XRTK.Editor.BuildPipeline.IBuildInfo.html#XRTK_Editor_BuildPipeline_IBuildInfo_FullOutputPath_ - commentId: Overload:XRTK.Editor.BuildPipeline.IBuildInfo.FullOutputPath - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.IBuildInfo.FullOutputPath - nameWithType: IBuildInfo.FullOutputPath -- uid: XRTK.Editor.BuildPipeline.IBuildInfo.Install - name: Install - href: api/XRTK.Editor.BuildPipeline.IBuildInfo.html#XRTK_Editor_BuildPipeline_IBuildInfo_Install - commentId: P:XRTK.Editor.BuildPipeline.IBuildInfo.Install - fullName: XRTK.Editor.BuildPipeline.IBuildInfo.Install - nameWithType: IBuildInfo.Install -- uid: XRTK.Editor.BuildPipeline.IBuildInfo.Install* - name: Install - href: api/XRTK.Editor.BuildPipeline.IBuildInfo.html#XRTK_Editor_BuildPipeline_IBuildInfo_Install_ - commentId: Overload:XRTK.Editor.BuildPipeline.IBuildInfo.Install - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.IBuildInfo.Install - nameWithType: IBuildInfo.Install -- uid: XRTK.Editor.BuildPipeline.IBuildInfo.IsCommandLine - name: IsCommandLine - href: api/XRTK.Editor.BuildPipeline.IBuildInfo.html#XRTK_Editor_BuildPipeline_IBuildInfo_IsCommandLine - commentId: P:XRTK.Editor.BuildPipeline.IBuildInfo.IsCommandLine - fullName: XRTK.Editor.BuildPipeline.IBuildInfo.IsCommandLine - nameWithType: IBuildInfo.IsCommandLine -- uid: XRTK.Editor.BuildPipeline.IBuildInfo.IsCommandLine* - name: IsCommandLine - href: api/XRTK.Editor.BuildPipeline.IBuildInfo.html#XRTK_Editor_BuildPipeline_IBuildInfo_IsCommandLine_ - commentId: Overload:XRTK.Editor.BuildPipeline.IBuildInfo.IsCommandLine - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.IBuildInfo.IsCommandLine - nameWithType: IBuildInfo.IsCommandLine -- uid: XRTK.Editor.BuildPipeline.IBuildInfo.OnPostProcessBuild(UnityEditor.Build.Reporting.BuildReport) - name: OnPostProcessBuild(BuildReport) - href: api/XRTK.Editor.BuildPipeline.IBuildInfo.html#XRTK_Editor_BuildPipeline_IBuildInfo_OnPostProcessBuild_UnityEditor_Build_Reporting_BuildReport_ - commentId: M:XRTK.Editor.BuildPipeline.IBuildInfo.OnPostProcessBuild(UnityEditor.Build.Reporting.BuildReport) - fullName: XRTK.Editor.BuildPipeline.IBuildInfo.OnPostProcessBuild(UnityEditor.Build.Reporting.BuildReport) - nameWithType: IBuildInfo.OnPostProcessBuild(BuildReport) -- uid: XRTK.Editor.BuildPipeline.IBuildInfo.OnPostProcessBuild* - name: OnPostProcessBuild - href: api/XRTK.Editor.BuildPipeline.IBuildInfo.html#XRTK_Editor_BuildPipeline_IBuildInfo_OnPostProcessBuild_ - commentId: Overload:XRTK.Editor.BuildPipeline.IBuildInfo.OnPostProcessBuild - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.IBuildInfo.OnPostProcessBuild - nameWithType: IBuildInfo.OnPostProcessBuild -- uid: XRTK.Editor.BuildPipeline.IBuildInfo.OnPreProcessBuild(UnityEditor.Build.Reporting.BuildReport) - name: OnPreProcessBuild(BuildReport) - href: api/XRTK.Editor.BuildPipeline.IBuildInfo.html#XRTK_Editor_BuildPipeline_IBuildInfo_OnPreProcessBuild_UnityEditor_Build_Reporting_BuildReport_ - commentId: M:XRTK.Editor.BuildPipeline.IBuildInfo.OnPreProcessBuild(UnityEditor.Build.Reporting.BuildReport) - fullName: XRTK.Editor.BuildPipeline.IBuildInfo.OnPreProcessBuild(UnityEditor.Build.Reporting.BuildReport) - nameWithType: IBuildInfo.OnPreProcessBuild(BuildReport) -- uid: XRTK.Editor.BuildPipeline.IBuildInfo.OnPreProcessBuild* - name: OnPreProcessBuild - href: api/XRTK.Editor.BuildPipeline.IBuildInfo.html#XRTK_Editor_BuildPipeline_IBuildInfo_OnPreProcessBuild_ - commentId: Overload:XRTK.Editor.BuildPipeline.IBuildInfo.OnPreProcessBuild - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.IBuildInfo.OnPreProcessBuild - nameWithType: IBuildInfo.OnPreProcessBuild -- uid: XRTK.Editor.BuildPipeline.IBuildInfo.OutputDirectory - name: OutputDirectory - href: api/XRTK.Editor.BuildPipeline.IBuildInfo.html#XRTK_Editor_BuildPipeline_IBuildInfo_OutputDirectory - commentId: P:XRTK.Editor.BuildPipeline.IBuildInfo.OutputDirectory - fullName: XRTK.Editor.BuildPipeline.IBuildInfo.OutputDirectory - nameWithType: IBuildInfo.OutputDirectory -- uid: XRTK.Editor.BuildPipeline.IBuildInfo.OutputDirectory* - name: OutputDirectory - href: api/XRTK.Editor.BuildPipeline.IBuildInfo.html#XRTK_Editor_BuildPipeline_IBuildInfo_OutputDirectory_ - commentId: Overload:XRTK.Editor.BuildPipeline.IBuildInfo.OutputDirectory - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.IBuildInfo.OutputDirectory - nameWithType: IBuildInfo.OutputDirectory -- uid: XRTK.Editor.BuildPipeline.IBuildInfo.ParseCommandLineArgs - name: ParseCommandLineArgs() - href: api/XRTK.Editor.BuildPipeline.IBuildInfo.html#XRTK_Editor_BuildPipeline_IBuildInfo_ParseCommandLineArgs - commentId: M:XRTK.Editor.BuildPipeline.IBuildInfo.ParseCommandLineArgs - fullName: XRTK.Editor.BuildPipeline.IBuildInfo.ParseCommandLineArgs() - nameWithType: IBuildInfo.ParseCommandLineArgs() -- uid: XRTK.Editor.BuildPipeline.IBuildInfo.ParseCommandLineArgs* - name: ParseCommandLineArgs - href: api/XRTK.Editor.BuildPipeline.IBuildInfo.html#XRTK_Editor_BuildPipeline_IBuildInfo_ParseCommandLineArgs_ - commentId: Overload:XRTK.Editor.BuildPipeline.IBuildInfo.ParseCommandLineArgs - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.IBuildInfo.ParseCommandLineArgs - nameWithType: IBuildInfo.ParseCommandLineArgs -- uid: XRTK.Editor.BuildPipeline.IBuildInfo.Scenes - name: Scenes - href: api/XRTK.Editor.BuildPipeline.IBuildInfo.html#XRTK_Editor_BuildPipeline_IBuildInfo_Scenes - commentId: P:XRTK.Editor.BuildPipeline.IBuildInfo.Scenes - fullName: XRTK.Editor.BuildPipeline.IBuildInfo.Scenes - nameWithType: IBuildInfo.Scenes -- uid: XRTK.Editor.BuildPipeline.IBuildInfo.Scenes* - name: Scenes - href: api/XRTK.Editor.BuildPipeline.IBuildInfo.html#XRTK_Editor_BuildPipeline_IBuildInfo_Scenes_ - commentId: Overload:XRTK.Editor.BuildPipeline.IBuildInfo.Scenes - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.IBuildInfo.Scenes - nameWithType: IBuildInfo.Scenes -- uid: XRTK.Editor.BuildPipeline.IBuildInfo.Version - name: Version - href: api/XRTK.Editor.BuildPipeline.IBuildInfo.html#XRTK_Editor_BuildPipeline_IBuildInfo_Version - commentId: P:XRTK.Editor.BuildPipeline.IBuildInfo.Version - fullName: XRTK.Editor.BuildPipeline.IBuildInfo.Version - nameWithType: IBuildInfo.Version -- uid: XRTK.Editor.BuildPipeline.IBuildInfo.Version* - name: Version - href: api/XRTK.Editor.BuildPipeline.IBuildInfo.html#XRTK_Editor_BuildPipeline_IBuildInfo_Version_ - commentId: Overload:XRTK.Editor.BuildPipeline.IBuildInfo.Version - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.IBuildInfo.Version - nameWithType: IBuildInfo.Version -- uid: XRTK.Editor.BuildPipeline.IBuildInfo.VersionCode - name: VersionCode - href: api/XRTK.Editor.BuildPipeline.IBuildInfo.html#XRTK_Editor_BuildPipeline_IBuildInfo_VersionCode - commentId: P:XRTK.Editor.BuildPipeline.IBuildInfo.VersionCode - fullName: XRTK.Editor.BuildPipeline.IBuildInfo.VersionCode - nameWithType: IBuildInfo.VersionCode -- uid: XRTK.Editor.BuildPipeline.IBuildInfo.VersionCode* - name: VersionCode - href: api/XRTK.Editor.BuildPipeline.IBuildInfo.html#XRTK_Editor_BuildPipeline_IBuildInfo_VersionCode_ - commentId: Overload:XRTK.Editor.BuildPipeline.IBuildInfo.VersionCode - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.IBuildInfo.VersionCode - nameWithType: IBuildInfo.VersionCode -- uid: XRTK.Editor.BuildPipeline.LuminBuildInfo - name: LuminBuildInfo - href: api/XRTK.Editor.BuildPipeline.LuminBuildInfo.html - commentId: T:XRTK.Editor.BuildPipeline.LuminBuildInfo - fullName: XRTK.Editor.BuildPipeline.LuminBuildInfo - nameWithType: LuminBuildInfo -- uid: XRTK.Editor.BuildPipeline.LuminBuildInfo.BuildTarget - name: BuildTarget - href: api/XRTK.Editor.BuildPipeline.LuminBuildInfo.html#XRTK_Editor_BuildPipeline_LuminBuildInfo_BuildTarget - commentId: P:XRTK.Editor.BuildPipeline.LuminBuildInfo.BuildTarget - fullName: XRTK.Editor.BuildPipeline.LuminBuildInfo.BuildTarget - nameWithType: LuminBuildInfo.BuildTarget -- uid: XRTK.Editor.BuildPipeline.LuminBuildInfo.BuildTarget* - name: BuildTarget - href: api/XRTK.Editor.BuildPipeline.LuminBuildInfo.html#XRTK_Editor_BuildPipeline_LuminBuildInfo_BuildTarget_ - commentId: Overload:XRTK.Editor.BuildPipeline.LuminBuildInfo.BuildTarget - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.LuminBuildInfo.BuildTarget - nameWithType: LuminBuildInfo.BuildTarget -- uid: XRTK.Editor.BuildPipeline.LuminBuildInfo.ExecutableFileExtension - name: ExecutableFileExtension - href: api/XRTK.Editor.BuildPipeline.LuminBuildInfo.html#XRTK_Editor_BuildPipeline_LuminBuildInfo_ExecutableFileExtension - commentId: P:XRTK.Editor.BuildPipeline.LuminBuildInfo.ExecutableFileExtension - fullName: XRTK.Editor.BuildPipeline.LuminBuildInfo.ExecutableFileExtension - nameWithType: LuminBuildInfo.ExecutableFileExtension -- uid: XRTK.Editor.BuildPipeline.LuminBuildInfo.ExecutableFileExtension* - name: ExecutableFileExtension - href: api/XRTK.Editor.BuildPipeline.LuminBuildInfo.html#XRTK_Editor_BuildPipeline_LuminBuildInfo_ExecutableFileExtension_ - commentId: Overload:XRTK.Editor.BuildPipeline.LuminBuildInfo.ExecutableFileExtension - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.LuminBuildInfo.ExecutableFileExtension - nameWithType: LuminBuildInfo.ExecutableFileExtension -- uid: XRTK.Editor.BuildPipeline.LuminBuildInfo.Install - name: Install - href: api/XRTK.Editor.BuildPipeline.LuminBuildInfo.html#XRTK_Editor_BuildPipeline_LuminBuildInfo_Install - commentId: P:XRTK.Editor.BuildPipeline.LuminBuildInfo.Install - fullName: XRTK.Editor.BuildPipeline.LuminBuildInfo.Install - nameWithType: LuminBuildInfo.Install -- uid: XRTK.Editor.BuildPipeline.LuminBuildInfo.Install* - name: Install - href: api/XRTK.Editor.BuildPipeline.LuminBuildInfo.html#XRTK_Editor_BuildPipeline_LuminBuildInfo_Install_ - commentId: Overload:XRTK.Editor.BuildPipeline.LuminBuildInfo.Install - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.LuminBuildInfo.Install - nameWithType: LuminBuildInfo.Install -- uid: XRTK.Editor.BuildPipeline.LuminBuildInfo.OnPostProcessBuild(UnityEditor.Build.Reporting.BuildReport) - name: OnPostProcessBuild(BuildReport) - href: api/XRTK.Editor.BuildPipeline.LuminBuildInfo.html#XRTK_Editor_BuildPipeline_LuminBuildInfo_OnPostProcessBuild_UnityEditor_Build_Reporting_BuildReport_ - commentId: M:XRTK.Editor.BuildPipeline.LuminBuildInfo.OnPostProcessBuild(UnityEditor.Build.Reporting.BuildReport) - fullName: XRTK.Editor.BuildPipeline.LuminBuildInfo.OnPostProcessBuild(UnityEditor.Build.Reporting.BuildReport) - nameWithType: LuminBuildInfo.OnPostProcessBuild(BuildReport) -- uid: XRTK.Editor.BuildPipeline.LuminBuildInfo.OnPostProcessBuild* - name: OnPostProcessBuild - href: api/XRTK.Editor.BuildPipeline.LuminBuildInfo.html#XRTK_Editor_BuildPipeline_LuminBuildInfo_OnPostProcessBuild_ - commentId: Overload:XRTK.Editor.BuildPipeline.LuminBuildInfo.OnPostProcessBuild - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.LuminBuildInfo.OnPostProcessBuild - nameWithType: LuminBuildInfo.OnPostProcessBuild -- uid: XRTK.Editor.BuildPipeline.LuminBuildInfo.OnPreProcessBuild(UnityEditor.Build.Reporting.BuildReport) - name: OnPreProcessBuild(BuildReport) - href: api/XRTK.Editor.BuildPipeline.LuminBuildInfo.html#XRTK_Editor_BuildPipeline_LuminBuildInfo_OnPreProcessBuild_UnityEditor_Build_Reporting_BuildReport_ - commentId: M:XRTK.Editor.BuildPipeline.LuminBuildInfo.OnPreProcessBuild(UnityEditor.Build.Reporting.BuildReport) - fullName: XRTK.Editor.BuildPipeline.LuminBuildInfo.OnPreProcessBuild(UnityEditor.Build.Reporting.BuildReport) - nameWithType: LuminBuildInfo.OnPreProcessBuild(BuildReport) -- uid: XRTK.Editor.BuildPipeline.LuminBuildInfo.OnPreProcessBuild* - name: OnPreProcessBuild - href: api/XRTK.Editor.BuildPipeline.LuminBuildInfo.html#XRTK_Editor_BuildPipeline_LuminBuildInfo_OnPreProcessBuild_ - commentId: Overload:XRTK.Editor.BuildPipeline.LuminBuildInfo.OnPreProcessBuild - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.LuminBuildInfo.OnPreProcessBuild - nameWithType: LuminBuildInfo.OnPreProcessBuild -- uid: XRTK.Editor.BuildPipeline.MixedRealityAppIcon - name: MixedRealityAppIcon - href: api/XRTK.Editor.BuildPipeline.MixedRealityAppIcon.html - commentId: T:XRTK.Editor.BuildPipeline.MixedRealityAppIcon - fullName: XRTK.Editor.BuildPipeline.MixedRealityAppIcon - nameWithType: MixedRealityAppIcon -- uid: XRTK.Editor.BuildPipeline.MixedRealityAppIcon.MixedRealityAppIconPath - name: MixedRealityAppIconPath - href: api/XRTK.Editor.BuildPipeline.MixedRealityAppIcon.html#XRTK_Editor_BuildPipeline_MixedRealityAppIcon_MixedRealityAppIconPath - commentId: P:XRTK.Editor.BuildPipeline.MixedRealityAppIcon.MixedRealityAppIconPath - fullName: XRTK.Editor.BuildPipeline.MixedRealityAppIcon.MixedRealityAppIconPath - nameWithType: MixedRealityAppIcon.MixedRealityAppIconPath -- uid: XRTK.Editor.BuildPipeline.MixedRealityAppIcon.MixedRealityAppIconPath* - name: MixedRealityAppIconPath - href: api/XRTK.Editor.BuildPipeline.MixedRealityAppIcon.html#XRTK_Editor_BuildPipeline_MixedRealityAppIcon_MixedRealityAppIconPath_ - commentId: Overload:XRTK.Editor.BuildPipeline.MixedRealityAppIcon.MixedRealityAppIconPath - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.MixedRealityAppIcon.MixedRealityAppIconPath - nameWithType: MixedRealityAppIcon.MixedRealityAppIconPath -- uid: XRTK.Editor.BuildPipeline.OculusBuildInfo - name: OculusBuildInfo - href: api/XRTK.Editor.BuildPipeline.OculusBuildInfo.html - commentId: T:XRTK.Editor.BuildPipeline.OculusBuildInfo - fullName: XRTK.Editor.BuildPipeline.OculusBuildInfo - nameWithType: OculusBuildInfo -- uid: XRTK.Editor.BuildPipeline.OculusBuildInfo.BuildPlatform - name: BuildPlatform - href: api/XRTK.Editor.BuildPipeline.OculusBuildInfo.html#XRTK_Editor_BuildPipeline_OculusBuildInfo_BuildPlatform - commentId: P:XRTK.Editor.BuildPipeline.OculusBuildInfo.BuildPlatform - fullName: XRTK.Editor.BuildPipeline.OculusBuildInfo.BuildPlatform - nameWithType: OculusBuildInfo.BuildPlatform -- uid: XRTK.Editor.BuildPipeline.OculusBuildInfo.BuildPlatform* - name: BuildPlatform - href: api/XRTK.Editor.BuildPipeline.OculusBuildInfo.html#XRTK_Editor_BuildPipeline_OculusBuildInfo_BuildPlatform_ - commentId: Overload:XRTK.Editor.BuildPipeline.OculusBuildInfo.BuildPlatform - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.OculusBuildInfo.BuildPlatform - nameWithType: OculusBuildInfo.BuildPlatform -- uid: XRTK.Editor.BuildPipeline.OculusBuildInfo.OnPreProcessBuild(UnityEditor.Build.Reporting.BuildReport) - name: OnPreProcessBuild(BuildReport) - href: api/XRTK.Editor.BuildPipeline.OculusBuildInfo.html#XRTK_Editor_BuildPipeline_OculusBuildInfo_OnPreProcessBuild_UnityEditor_Build_Reporting_BuildReport_ - commentId: M:XRTK.Editor.BuildPipeline.OculusBuildInfo.OnPreProcessBuild(UnityEditor.Build.Reporting.BuildReport) - fullName: XRTK.Editor.BuildPipeline.OculusBuildInfo.OnPreProcessBuild(UnityEditor.Build.Reporting.BuildReport) - nameWithType: OculusBuildInfo.OnPreProcessBuild(BuildReport) -- uid: XRTK.Editor.BuildPipeline.OculusBuildInfo.OnPreProcessBuild* - name: OnPreProcessBuild - href: api/XRTK.Editor.BuildPipeline.OculusBuildInfo.html#XRTK_Editor_BuildPipeline_OculusBuildInfo_OnPreProcessBuild_ - commentId: Overload:XRTK.Editor.BuildPipeline.OculusBuildInfo.OnPreProcessBuild - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.OculusBuildInfo.OnPreProcessBuild - nameWithType: OculusBuildInfo.OnPreProcessBuild -- uid: XRTK.Editor.BuildPipeline.UnityPlayerBuildTools - name: UnityPlayerBuildTools - href: api/XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.html - commentId: T:XRTK.Editor.BuildPipeline.UnityPlayerBuildTools - fullName: XRTK.Editor.BuildPipeline.UnityPlayerBuildTools - nameWithType: UnityPlayerBuildTools -- uid: XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.BuildInfo - name: BuildInfo - href: api/XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.html#XRTK_Editor_BuildPipeline_UnityPlayerBuildTools_BuildInfo - commentId: P:XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.BuildInfo - fullName: XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.BuildInfo - nameWithType: UnityPlayerBuildTools.BuildInfo -- uid: XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.BuildInfo* - name: BuildInfo - href: api/XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.html#XRTK_Editor_BuildPipeline_UnityPlayerBuildTools_BuildInfo_ - commentId: Overload:XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.BuildInfo - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.BuildInfo - nameWithType: UnityPlayerBuildTools.BuildInfo -- uid: XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.BuildSymbolDebug - name: BuildSymbolDebug - href: api/XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.html#XRTK_Editor_BuildPipeline_UnityPlayerBuildTools_BuildSymbolDebug - commentId: F:XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.BuildSymbolDebug - fullName: XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.BuildSymbolDebug - nameWithType: UnityPlayerBuildTools.BuildSymbolDebug -- uid: XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.BuildSymbolMaster - name: BuildSymbolMaster - href: api/XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.html#XRTK_Editor_BuildPipeline_UnityPlayerBuildTools_BuildSymbolMaster - commentId: F:XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.BuildSymbolMaster - fullName: XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.BuildSymbolMaster - nameWithType: UnityPlayerBuildTools.BuildSymbolMaster -- uid: XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.BuildSymbolRelease - name: BuildSymbolRelease - href: api/XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.html#XRTK_Editor_BuildPipeline_UnityPlayerBuildTools_BuildSymbolRelease - commentId: F:XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.BuildSymbolRelease - fullName: XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.BuildSymbolRelease - nameWithType: UnityPlayerBuildTools.BuildSymbolRelease -- uid: XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.BuildUnityPlayer - name: BuildUnityPlayer() - href: api/XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.html#XRTK_Editor_BuildPipeline_UnityPlayerBuildTools_BuildUnityPlayer - commentId: M:XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.BuildUnityPlayer - fullName: XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.BuildUnityPlayer() - nameWithType: UnityPlayerBuildTools.BuildUnityPlayer() -- uid: XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.BuildUnityPlayer* - name: BuildUnityPlayer - href: api/XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.html#XRTK_Editor_BuildPipeline_UnityPlayerBuildTools_BuildUnityPlayer_ - commentId: Overload:XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.BuildUnityPlayer - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.BuildUnityPlayer - nameWithType: UnityPlayerBuildTools.BuildUnityPlayer -- uid: XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.callbackOrder - name: callbackOrder - href: api/XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.html#XRTK_Editor_BuildPipeline_UnityPlayerBuildTools_callbackOrder - commentId: P:XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.callbackOrder - fullName: XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.callbackOrder - nameWithType: UnityPlayerBuildTools.callbackOrder -- uid: XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.callbackOrder* - name: callbackOrder - href: api/XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.html#XRTK_Editor_BuildPipeline_UnityPlayerBuildTools_callbackOrder_ - commentId: Overload:XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.callbackOrder - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.callbackOrder - nameWithType: UnityPlayerBuildTools.callbackOrder -- uid: XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.GetValidVersionString(System.String) - name: GetValidVersionString(String) - href: api/XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.html#XRTK_Editor_BuildPipeline_UnityPlayerBuildTools_GetValidVersionString_System_String_ - commentId: M:XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.GetValidVersionString(System.String) - fullName: XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.GetValidVersionString(System.String) - nameWithType: UnityPlayerBuildTools.GetValidVersionString(String) -- uid: XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.GetValidVersionString* - name: GetValidVersionString - href: api/XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.html#XRTK_Editor_BuildPipeline_UnityPlayerBuildTools_GetValidVersionString_ - commentId: Overload:XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.GetValidVersionString - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.GetValidVersionString - nameWithType: UnityPlayerBuildTools.GetValidVersionString -- uid: XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.OnPostprocessBuild(UnityEditor.Build.Reporting.BuildReport) - name: OnPostprocessBuild(BuildReport) - href: api/XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.html#XRTK_Editor_BuildPipeline_UnityPlayerBuildTools_OnPostprocessBuild_UnityEditor_Build_Reporting_BuildReport_ - commentId: M:XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.OnPostprocessBuild(UnityEditor.Build.Reporting.BuildReport) - fullName: XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.OnPostprocessBuild(UnityEditor.Build.Reporting.BuildReport) - nameWithType: UnityPlayerBuildTools.OnPostprocessBuild(BuildReport) -- uid: XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.OnPostprocessBuild* - name: OnPostprocessBuild - href: api/XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.html#XRTK_Editor_BuildPipeline_UnityPlayerBuildTools_OnPostprocessBuild_ - commentId: Overload:XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.OnPostprocessBuild - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.OnPostprocessBuild - nameWithType: UnityPlayerBuildTools.OnPostprocessBuild -- uid: XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.OnPreprocessBuild(UnityEditor.Build.Reporting.BuildReport) - name: OnPreprocessBuild(BuildReport) - href: api/XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.html#XRTK_Editor_BuildPipeline_UnityPlayerBuildTools_OnPreprocessBuild_UnityEditor_Build_Reporting_BuildReport_ - commentId: M:XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.OnPreprocessBuild(UnityEditor.Build.Reporting.BuildReport) - fullName: XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.OnPreprocessBuild(UnityEditor.Build.Reporting.BuildReport) - nameWithType: UnityPlayerBuildTools.OnPreprocessBuild(BuildReport) -- uid: XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.OnPreprocessBuild* - name: OnPreprocessBuild - href: api/XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.html#XRTK_Editor_BuildPipeline_UnityPlayerBuildTools_OnPreprocessBuild_ - commentId: Overload:XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.OnPreprocessBuild - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.OnPreprocessBuild - nameWithType: UnityPlayerBuildTools.OnPreprocessBuild -- uid: XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.RestoreNugetPackagesAsync(System.String,System.String) - name: RestoreNugetPackagesAsync(String, String) - href: api/XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.html#XRTK_Editor_BuildPipeline_UnityPlayerBuildTools_RestoreNugetPackagesAsync_System_String_System_String_ - commentId: M:XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.RestoreNugetPackagesAsync(System.String,System.String) - fullName: XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.RestoreNugetPackagesAsync(System.String, System.String) - nameWithType: UnityPlayerBuildTools.RestoreNugetPackagesAsync(String, String) -- uid: XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.RestoreNugetPackagesAsync* - name: RestoreNugetPackagesAsync - href: api/XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.html#XRTK_Editor_BuildPipeline_UnityPlayerBuildTools_RestoreNugetPackagesAsync_ - commentId: Overload:XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.RestoreNugetPackagesAsync - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.RestoreNugetPackagesAsync - nameWithType: UnityPlayerBuildTools.RestoreNugetPackagesAsync -- uid: XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.SplitSceneList(System.String) - name: SplitSceneList(String) - href: api/XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.html#XRTK_Editor_BuildPipeline_UnityPlayerBuildTools_SplitSceneList_System_String_ - commentId: M:XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.SplitSceneList(System.String) - fullName: XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.SplitSceneList(System.String) - nameWithType: UnityPlayerBuildTools.SplitSceneList(String) -- uid: XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.SplitSceneList* - name: SplitSceneList - href: api/XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.html#XRTK_Editor_BuildPipeline_UnityPlayerBuildTools_SplitSceneList_ - commentId: Overload:XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.SplitSceneList - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.SplitSceneList - nameWithType: UnityPlayerBuildTools.SplitSceneList -- uid: XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.StartCommandLineBuild - name: StartCommandLineBuild() - href: api/XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.html#XRTK_Editor_BuildPipeline_UnityPlayerBuildTools_StartCommandLineBuild - commentId: M:XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.StartCommandLineBuild - fullName: XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.StartCommandLineBuild() - nameWithType: UnityPlayerBuildTools.StartCommandLineBuild() -- uid: XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.StartCommandLineBuild* - name: StartCommandLineBuild - href: api/XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.html#XRTK_Editor_BuildPipeline_UnityPlayerBuildTools_StartCommandLineBuild_ - commentId: Overload:XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.StartCommandLineBuild - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.StartCommandLineBuild - nameWithType: UnityPlayerBuildTools.StartCommandLineBuild -- uid: XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.SyncSolution - name: SyncSolution() - href: api/XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.html#XRTK_Editor_BuildPipeline_UnityPlayerBuildTools_SyncSolution - commentId: M:XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.SyncSolution - fullName: XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.SyncSolution() - nameWithType: UnityPlayerBuildTools.SyncSolution() -- uid: XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.SyncSolution* - name: SyncSolution - href: api/XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.html#XRTK_Editor_BuildPipeline_UnityPlayerBuildTools_SyncSolution_ - commentId: Overload:XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.SyncSolution - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.SyncSolution - nameWithType: UnityPlayerBuildTools.SyncSolution -- uid: XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.ValidateProject - name: ValidateProject() - href: api/XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.html#XRTK_Editor_BuildPipeline_UnityPlayerBuildTools_ValidateProject - commentId: M:XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.ValidateProject - fullName: XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.ValidateProject() - nameWithType: UnityPlayerBuildTools.ValidateProject() -- uid: XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.ValidateProject* - name: ValidateProject - href: api/XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.html#XRTK_Editor_BuildPipeline_UnityPlayerBuildTools_ValidateProject_ - commentId: Overload:XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.ValidateProject - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.UnityPlayerBuildTools.ValidateProject - nameWithType: UnityPlayerBuildTools.ValidateProject -- uid: XRTK.Editor.BuildPipeline.UwpAppxBuildTools - name: UwpAppxBuildTools - href: api/XRTK.Editor.BuildPipeline.UwpAppxBuildTools.html - commentId: T:XRTK.Editor.BuildPipeline.UwpAppxBuildTools - fullName: XRTK.Editor.BuildPipeline.UwpAppxBuildTools - nameWithType: UwpAppxBuildTools -- uid: XRTK.Editor.BuildPipeline.UwpAppxBuildTools.BuildAppx(XRTK.Editor.BuildPipeline.UwpBuildInfo) - name: BuildAppx(UwpBuildInfo) - href: api/XRTK.Editor.BuildPipeline.UwpAppxBuildTools.html#XRTK_Editor_BuildPipeline_UwpAppxBuildTools_BuildAppx_XRTK_Editor_BuildPipeline_UwpBuildInfo_ - commentId: M:XRTK.Editor.BuildPipeline.UwpAppxBuildTools.BuildAppx(XRTK.Editor.BuildPipeline.UwpBuildInfo) - fullName: XRTK.Editor.BuildPipeline.UwpAppxBuildTools.BuildAppx(XRTK.Editor.BuildPipeline.UwpBuildInfo) - nameWithType: UwpAppxBuildTools.BuildAppx(UwpBuildInfo) -- uid: XRTK.Editor.BuildPipeline.UwpAppxBuildTools.BuildAppx* - name: BuildAppx - href: api/XRTK.Editor.BuildPipeline.UwpAppxBuildTools.html#XRTK_Editor_BuildPipeline_UwpAppxBuildTools_BuildAppx_ - commentId: Overload:XRTK.Editor.BuildPipeline.UwpAppxBuildTools.BuildAppx - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.UwpAppxBuildTools.BuildAppx - nameWithType: UwpAppxBuildTools.BuildAppx -- uid: XRTK.Editor.BuildPipeline.UwpAppxBuildTools.IsBuilding - name: IsBuilding - href: api/XRTK.Editor.BuildPipeline.UwpAppxBuildTools.html#XRTK_Editor_BuildPipeline_UwpAppxBuildTools_IsBuilding - commentId: P:XRTK.Editor.BuildPipeline.UwpAppxBuildTools.IsBuilding - fullName: XRTK.Editor.BuildPipeline.UwpAppxBuildTools.IsBuilding - nameWithType: UwpAppxBuildTools.IsBuilding -- uid: XRTK.Editor.BuildPipeline.UwpAppxBuildTools.IsBuilding* - name: IsBuilding - href: api/XRTK.Editor.BuildPipeline.UwpAppxBuildTools.html#XRTK_Editor_BuildPipeline_UwpAppxBuildTools_IsBuilding_ - commentId: Overload:XRTK.Editor.BuildPipeline.UwpAppxBuildTools.IsBuilding - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.UwpAppxBuildTools.IsBuilding - nameWithType: UwpAppxBuildTools.IsBuilding -- uid: XRTK.Editor.BuildPipeline.UwpAppxBuildTools.ValidateUwpSdk(System.Boolean) - name: ValidateUwpSdk(Boolean) - href: api/XRTK.Editor.BuildPipeline.UwpAppxBuildTools.html#XRTK_Editor_BuildPipeline_UwpAppxBuildTools_ValidateUwpSdk_System_Boolean_ - commentId: M:XRTK.Editor.BuildPipeline.UwpAppxBuildTools.ValidateUwpSdk(System.Boolean) - fullName: XRTK.Editor.BuildPipeline.UwpAppxBuildTools.ValidateUwpSdk(System.Boolean) - nameWithType: UwpAppxBuildTools.ValidateUwpSdk(Boolean) -- uid: XRTK.Editor.BuildPipeline.UwpAppxBuildTools.ValidateUwpSdk* - name: ValidateUwpSdk - href: api/XRTK.Editor.BuildPipeline.UwpAppxBuildTools.html#XRTK_Editor_BuildPipeline_UwpAppxBuildTools_ValidateUwpSdk_ - commentId: Overload:XRTK.Editor.BuildPipeline.UwpAppxBuildTools.ValidateUwpSdk - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.UwpAppxBuildTools.ValidateUwpSdk - nameWithType: UwpAppxBuildTools.ValidateUwpSdk -- uid: XRTK.Editor.BuildPipeline.UwpBuildDeployPreferences - name: UwpBuildDeployPreferences - href: api/XRTK.Editor.BuildPipeline.UwpBuildDeployPreferences.html - commentId: T:XRTK.Editor.BuildPipeline.UwpBuildDeployPreferences - fullName: XRTK.Editor.BuildPipeline.UwpBuildDeployPreferences - nameWithType: UwpBuildDeployPreferences -- uid: XRTK.Editor.BuildPipeline.UwpBuildDeployPreferences.DevicePortalConnections - name: DevicePortalConnections - href: api/XRTK.Editor.BuildPipeline.UwpBuildDeployPreferences.html#XRTK_Editor_BuildPipeline_UwpBuildDeployPreferences_DevicePortalConnections - commentId: P:XRTK.Editor.BuildPipeline.UwpBuildDeployPreferences.DevicePortalConnections - fullName: XRTK.Editor.BuildPipeline.UwpBuildDeployPreferences.DevicePortalConnections - nameWithType: UwpBuildDeployPreferences.DevicePortalConnections -- uid: XRTK.Editor.BuildPipeline.UwpBuildDeployPreferences.DevicePortalConnections* - name: DevicePortalConnections - href: api/XRTK.Editor.BuildPipeline.UwpBuildDeployPreferences.html#XRTK_Editor_BuildPipeline_UwpBuildDeployPreferences_DevicePortalConnections_ - commentId: Overload:XRTK.Editor.BuildPipeline.UwpBuildDeployPreferences.DevicePortalConnections - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.UwpBuildDeployPreferences.DevicePortalConnections - nameWithType: UwpBuildDeployPreferences.DevicePortalConnections -- uid: XRTK.Editor.BuildPipeline.UwpBuildDeployPreferences.FullReinstall - name: FullReinstall - href: api/XRTK.Editor.BuildPipeline.UwpBuildDeployPreferences.html#XRTK_Editor_BuildPipeline_UwpBuildDeployPreferences_FullReinstall - commentId: P:XRTK.Editor.BuildPipeline.UwpBuildDeployPreferences.FullReinstall - fullName: XRTK.Editor.BuildPipeline.UwpBuildDeployPreferences.FullReinstall - nameWithType: UwpBuildDeployPreferences.FullReinstall -- uid: XRTK.Editor.BuildPipeline.UwpBuildDeployPreferences.FullReinstall* - name: FullReinstall - href: api/XRTK.Editor.BuildPipeline.UwpBuildDeployPreferences.html#XRTK_Editor_BuildPipeline_UwpBuildDeployPreferences_FullReinstall_ - commentId: Overload:XRTK.Editor.BuildPipeline.UwpBuildDeployPreferences.FullReinstall - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.UwpBuildDeployPreferences.FullReinstall - nameWithType: UwpBuildDeployPreferences.FullReinstall -- uid: XRTK.Editor.BuildPipeline.UwpBuildDeployPreferences.MIN_SDK_VERSION - name: MIN_SDK_VERSION - href: api/XRTK.Editor.BuildPipeline.UwpBuildDeployPreferences.html#XRTK_Editor_BuildPipeline_UwpBuildDeployPreferences_MIN_SDK_VERSION - commentId: F:XRTK.Editor.BuildPipeline.UwpBuildDeployPreferences.MIN_SDK_VERSION - fullName: XRTK.Editor.BuildPipeline.UwpBuildDeployPreferences.MIN_SDK_VERSION - nameWithType: UwpBuildDeployPreferences.MIN_SDK_VERSION -- uid: XRTK.Editor.BuildPipeline.UwpBuildDeployPreferences.MixedRealityAppIconPath - name: MixedRealityAppIconPath - href: api/XRTK.Editor.BuildPipeline.UwpBuildDeployPreferences.html#XRTK_Editor_BuildPipeline_UwpBuildDeployPreferences_MixedRealityAppIconPath - commentId: P:XRTK.Editor.BuildPipeline.UwpBuildDeployPreferences.MixedRealityAppIconPath - fullName: XRTK.Editor.BuildPipeline.UwpBuildDeployPreferences.MixedRealityAppIconPath - nameWithType: UwpBuildDeployPreferences.MixedRealityAppIconPath -- uid: XRTK.Editor.BuildPipeline.UwpBuildDeployPreferences.MixedRealityAppIconPath* - name: MixedRealityAppIconPath - href: api/XRTK.Editor.BuildPipeline.UwpBuildDeployPreferences.html#XRTK_Editor_BuildPipeline_UwpBuildDeployPreferences_MixedRealityAppIconPath_ - commentId: Overload:XRTK.Editor.BuildPipeline.UwpBuildDeployPreferences.MixedRealityAppIconPath - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.UwpBuildDeployPreferences.MixedRealityAppIconPath - nameWithType: UwpBuildDeployPreferences.MixedRealityAppIconPath -- uid: XRTK.Editor.BuildPipeline.UwpBuildDeployPreferences.TargetAllConnections - name: TargetAllConnections - href: api/XRTK.Editor.BuildPipeline.UwpBuildDeployPreferences.html#XRTK_Editor_BuildPipeline_UwpBuildDeployPreferences_TargetAllConnections - commentId: P:XRTK.Editor.BuildPipeline.UwpBuildDeployPreferences.TargetAllConnections - fullName: XRTK.Editor.BuildPipeline.UwpBuildDeployPreferences.TargetAllConnections - nameWithType: UwpBuildDeployPreferences.TargetAllConnections -- uid: XRTK.Editor.BuildPipeline.UwpBuildDeployPreferences.TargetAllConnections* - name: TargetAllConnections - href: api/XRTK.Editor.BuildPipeline.UwpBuildDeployPreferences.html#XRTK_Editor_BuildPipeline_UwpBuildDeployPreferences_TargetAllConnections_ - commentId: Overload:XRTK.Editor.BuildPipeline.UwpBuildDeployPreferences.TargetAllConnections - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.UwpBuildDeployPreferences.TargetAllConnections - nameWithType: UwpBuildDeployPreferences.TargetAllConnections -- uid: XRTK.Editor.BuildPipeline.UwpBuildDeployPreferences.UseSSL - name: UseSSL - href: api/XRTK.Editor.BuildPipeline.UwpBuildDeployPreferences.html#XRTK_Editor_BuildPipeline_UwpBuildDeployPreferences_UseSSL - commentId: P:XRTK.Editor.BuildPipeline.UwpBuildDeployPreferences.UseSSL - fullName: XRTK.Editor.BuildPipeline.UwpBuildDeployPreferences.UseSSL - nameWithType: UwpBuildDeployPreferences.UseSSL -- uid: XRTK.Editor.BuildPipeline.UwpBuildDeployPreferences.UseSSL* - name: UseSSL - href: api/XRTK.Editor.BuildPipeline.UwpBuildDeployPreferences.html#XRTK_Editor_BuildPipeline_UwpBuildDeployPreferences_UseSSL_ - commentId: Overload:XRTK.Editor.BuildPipeline.UwpBuildDeployPreferences.UseSSL - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.UwpBuildDeployPreferences.UseSSL - nameWithType: UwpBuildDeployPreferences.UseSSL -- uid: XRTK.Editor.BuildPipeline.UwpBuildInfo - name: UwpBuildInfo - href: api/XRTK.Editor.BuildPipeline.UwpBuildInfo.html - commentId: T:XRTK.Editor.BuildPipeline.UwpBuildInfo - fullName: XRTK.Editor.BuildPipeline.UwpBuildInfo - nameWithType: UwpBuildInfo -- uid: XRTK.Editor.BuildPipeline.UwpBuildInfo.BuildAppx - name: BuildAppx - href: api/XRTK.Editor.BuildPipeline.UwpBuildInfo.html#XRTK_Editor_BuildPipeline_UwpBuildInfo_BuildAppx - commentId: P:XRTK.Editor.BuildPipeline.UwpBuildInfo.BuildAppx - fullName: XRTK.Editor.BuildPipeline.UwpBuildInfo.BuildAppx - nameWithType: UwpBuildInfo.BuildAppx -- uid: XRTK.Editor.BuildPipeline.UwpBuildInfo.BuildAppx* - name: BuildAppx - href: api/XRTK.Editor.BuildPipeline.UwpBuildInfo.html#XRTK_Editor_BuildPipeline_UwpBuildInfo_BuildAppx_ - commentId: Overload:XRTK.Editor.BuildPipeline.UwpBuildInfo.BuildAppx - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.UwpBuildInfo.BuildAppx - nameWithType: UwpBuildInfo.BuildAppx -- uid: XRTK.Editor.BuildPipeline.UwpBuildInfo.BuildTarget - name: BuildTarget - href: api/XRTK.Editor.BuildPipeline.UwpBuildInfo.html#XRTK_Editor_BuildPipeline_UwpBuildInfo_BuildTarget - commentId: P:XRTK.Editor.BuildPipeline.UwpBuildInfo.BuildTarget - fullName: XRTK.Editor.BuildPipeline.UwpBuildInfo.BuildTarget - nameWithType: UwpBuildInfo.BuildTarget -- uid: XRTK.Editor.BuildPipeline.UwpBuildInfo.BuildTarget* - name: BuildTarget - href: api/XRTK.Editor.BuildPipeline.UwpBuildInfo.html#XRTK_Editor_BuildPipeline_UwpBuildInfo_BuildTarget_ - commentId: Overload:XRTK.Editor.BuildPipeline.UwpBuildInfo.BuildTarget - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.UwpBuildInfo.BuildTarget - nameWithType: UwpBuildInfo.BuildTarget -- uid: XRTK.Editor.BuildPipeline.UwpBuildInfo.BuildTargetFamilies - name: BuildTargetFamilies - href: api/XRTK.Editor.BuildPipeline.UwpBuildInfo.html#XRTK_Editor_BuildPipeline_UwpBuildInfo_BuildTargetFamilies - commentId: P:XRTK.Editor.BuildPipeline.UwpBuildInfo.BuildTargetFamilies - fullName: XRTK.Editor.BuildPipeline.UwpBuildInfo.BuildTargetFamilies - nameWithType: UwpBuildInfo.BuildTargetFamilies -- uid: XRTK.Editor.BuildPipeline.UwpBuildInfo.BuildTargetFamilies* - name: BuildTargetFamilies - href: api/XRTK.Editor.BuildPipeline.UwpBuildInfo.html#XRTK_Editor_BuildPipeline_UwpBuildInfo_BuildTargetFamilies_ - commentId: Overload:XRTK.Editor.BuildPipeline.UwpBuildInfo.BuildTargetFamilies - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.UwpBuildInfo.BuildTargetFamilies - nameWithType: UwpBuildInfo.BuildTargetFamilies -- uid: XRTK.Editor.BuildPipeline.UwpBuildInfo.MinSdk - name: MinSdk - href: api/XRTK.Editor.BuildPipeline.UwpBuildInfo.html#XRTK_Editor_BuildPipeline_UwpBuildInfo_MinSdk - commentId: P:XRTK.Editor.BuildPipeline.UwpBuildInfo.MinSdk - fullName: XRTK.Editor.BuildPipeline.UwpBuildInfo.MinSdk - nameWithType: UwpBuildInfo.MinSdk -- uid: XRTK.Editor.BuildPipeline.UwpBuildInfo.MinSdk* - name: MinSdk - href: api/XRTK.Editor.BuildPipeline.UwpBuildInfo.html#XRTK_Editor_BuildPipeline_UwpBuildInfo_MinSdk_ - commentId: Overload:XRTK.Editor.BuildPipeline.UwpBuildInfo.MinSdk - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.UwpBuildInfo.MinSdk - nameWithType: UwpBuildInfo.MinSdk -- uid: XRTK.Editor.BuildPipeline.UwpBuildInfo.OnEnable - name: OnEnable() - href: api/XRTK.Editor.BuildPipeline.UwpBuildInfo.html#XRTK_Editor_BuildPipeline_UwpBuildInfo_OnEnable - commentId: M:XRTK.Editor.BuildPipeline.UwpBuildInfo.OnEnable - fullName: XRTK.Editor.BuildPipeline.UwpBuildInfo.OnEnable() - nameWithType: UwpBuildInfo.OnEnable() -- uid: XRTK.Editor.BuildPipeline.UwpBuildInfo.OnEnable* - name: OnEnable - href: api/XRTK.Editor.BuildPipeline.UwpBuildInfo.html#XRTK_Editor_BuildPipeline_UwpBuildInfo_OnEnable_ - commentId: Overload:XRTK.Editor.BuildPipeline.UwpBuildInfo.OnEnable - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.UwpBuildInfo.OnEnable - nameWithType: UwpBuildInfo.OnEnable -- uid: XRTK.Editor.BuildPipeline.UwpBuildInfo.OnPostProcessBuild(UnityEditor.Build.Reporting.BuildReport) - name: OnPostProcessBuild(BuildReport) - href: api/XRTK.Editor.BuildPipeline.UwpBuildInfo.html#XRTK_Editor_BuildPipeline_UwpBuildInfo_OnPostProcessBuild_UnityEditor_Build_Reporting_BuildReport_ - commentId: M:XRTK.Editor.BuildPipeline.UwpBuildInfo.OnPostProcessBuild(UnityEditor.Build.Reporting.BuildReport) - fullName: XRTK.Editor.BuildPipeline.UwpBuildInfo.OnPostProcessBuild(UnityEditor.Build.Reporting.BuildReport) - nameWithType: UwpBuildInfo.OnPostProcessBuild(BuildReport) -- uid: XRTK.Editor.BuildPipeline.UwpBuildInfo.OnPostProcessBuild* - name: OnPostProcessBuild - href: api/XRTK.Editor.BuildPipeline.UwpBuildInfo.html#XRTK_Editor_BuildPipeline_UwpBuildInfo_OnPostProcessBuild_ - commentId: Overload:XRTK.Editor.BuildPipeline.UwpBuildInfo.OnPostProcessBuild - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.UwpBuildInfo.OnPostProcessBuild - nameWithType: UwpBuildInfo.OnPostProcessBuild -- uid: XRTK.Editor.BuildPipeline.UwpBuildInfo.OnPreProcessBuild(UnityEditor.Build.Reporting.BuildReport) - name: OnPreProcessBuild(BuildReport) - href: api/XRTK.Editor.BuildPipeline.UwpBuildInfo.html#XRTK_Editor_BuildPipeline_UwpBuildInfo_OnPreProcessBuild_UnityEditor_Build_Reporting_BuildReport_ - commentId: M:XRTK.Editor.BuildPipeline.UwpBuildInfo.OnPreProcessBuild(UnityEditor.Build.Reporting.BuildReport) - fullName: XRTK.Editor.BuildPipeline.UwpBuildInfo.OnPreProcessBuild(UnityEditor.Build.Reporting.BuildReport) - nameWithType: UwpBuildInfo.OnPreProcessBuild(BuildReport) -- uid: XRTK.Editor.BuildPipeline.UwpBuildInfo.OnPreProcessBuild* - name: OnPreProcessBuild - href: api/XRTK.Editor.BuildPipeline.UwpBuildInfo.html#XRTK_Editor_BuildPipeline_UwpBuildInfo_OnPreProcessBuild_ - commentId: Overload:XRTK.Editor.BuildPipeline.UwpBuildInfo.OnPreProcessBuild - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.UwpBuildInfo.OnPreProcessBuild - nameWithType: UwpBuildInfo.OnPreProcessBuild -- uid: XRTK.Editor.BuildPipeline.UwpBuildInfo.ParseCommandLineArgs - name: ParseCommandLineArgs() - href: api/XRTK.Editor.BuildPipeline.UwpBuildInfo.html#XRTK_Editor_BuildPipeline_UwpBuildInfo_ParseCommandLineArgs - commentId: M:XRTK.Editor.BuildPipeline.UwpBuildInfo.ParseCommandLineArgs - fullName: XRTK.Editor.BuildPipeline.UwpBuildInfo.ParseCommandLineArgs() - nameWithType: UwpBuildInfo.ParseCommandLineArgs() -- uid: XRTK.Editor.BuildPipeline.UwpBuildInfo.ParseCommandLineArgs* - name: ParseCommandLineArgs - href: api/XRTK.Editor.BuildPipeline.UwpBuildInfo.html#XRTK_Editor_BuildPipeline_UwpBuildInfo_ParseCommandLineArgs_ - commentId: Overload:XRTK.Editor.BuildPipeline.UwpBuildInfo.ParseCommandLineArgs - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.UwpBuildInfo.ParseCommandLineArgs - nameWithType: UwpBuildInfo.ParseCommandLineArgs -- uid: XRTK.Editor.BuildPipeline.UwpBuildInfo.Platform - name: UwpBuildInfo.Platform - href: api/XRTK.Editor.BuildPipeline.UwpBuildInfo.Platform.html - commentId: T:XRTK.Editor.BuildPipeline.UwpBuildInfo.Platform - fullName: XRTK.Editor.BuildPipeline.UwpBuildInfo.Platform - nameWithType: UwpBuildInfo.Platform -- uid: XRTK.Editor.BuildPipeline.UwpBuildInfo.Platform.ARM - name: ARM - href: api/XRTK.Editor.BuildPipeline.UwpBuildInfo.Platform.html#XRTK_Editor_BuildPipeline_UwpBuildInfo_Platform_ARM - commentId: F:XRTK.Editor.BuildPipeline.UwpBuildInfo.Platform.ARM - fullName: XRTK.Editor.BuildPipeline.UwpBuildInfo.Platform.ARM - nameWithType: UwpBuildInfo.Platform.ARM -- uid: XRTK.Editor.BuildPipeline.UwpBuildInfo.Platform.ARM64 - name: ARM64 - href: api/XRTK.Editor.BuildPipeline.UwpBuildInfo.Platform.html#XRTK_Editor_BuildPipeline_UwpBuildInfo_Platform_ARM64 - commentId: F:XRTK.Editor.BuildPipeline.UwpBuildInfo.Platform.ARM64 - fullName: XRTK.Editor.BuildPipeline.UwpBuildInfo.Platform.ARM64 - nameWithType: UwpBuildInfo.Platform.ARM64 -- uid: XRTK.Editor.BuildPipeline.UwpBuildInfo.Platform.x64 - name: x64 - href: api/XRTK.Editor.BuildPipeline.UwpBuildInfo.Platform.html#XRTK_Editor_BuildPipeline_UwpBuildInfo_Platform_x64 - commentId: F:XRTK.Editor.BuildPipeline.UwpBuildInfo.Platform.x64 - fullName: XRTK.Editor.BuildPipeline.UwpBuildInfo.Platform.x64 - nameWithType: UwpBuildInfo.Platform.x64 -- uid: XRTK.Editor.BuildPipeline.UwpBuildInfo.Platform.x86 - name: x86 - href: api/XRTK.Editor.BuildPipeline.UwpBuildInfo.Platform.html#XRTK_Editor_BuildPipeline_UwpBuildInfo_Platform_x86 - commentId: F:XRTK.Editor.BuildPipeline.UwpBuildInfo.Platform.x86 - fullName: XRTK.Editor.BuildPipeline.UwpBuildInfo.Platform.x86 - nameWithType: UwpBuildInfo.Platform.x86 -- uid: XRTK.Editor.BuildPipeline.UwpBuildInfo.PlatformArchitecture - name: PlatformArchitecture - href: api/XRTK.Editor.BuildPipeline.UwpBuildInfo.html#XRTK_Editor_BuildPipeline_UwpBuildInfo_PlatformArchitecture - commentId: P:XRTK.Editor.BuildPipeline.UwpBuildInfo.PlatformArchitecture - fullName: XRTK.Editor.BuildPipeline.UwpBuildInfo.PlatformArchitecture - nameWithType: UwpBuildInfo.PlatformArchitecture -- uid: XRTK.Editor.BuildPipeline.UwpBuildInfo.PlatformArchitecture* - name: PlatformArchitecture - href: api/XRTK.Editor.BuildPipeline.UwpBuildInfo.html#XRTK_Editor_BuildPipeline_UwpBuildInfo_PlatformArchitecture_ - commentId: Overload:XRTK.Editor.BuildPipeline.UwpBuildInfo.PlatformArchitecture - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.UwpBuildInfo.PlatformArchitecture - nameWithType: UwpBuildInfo.PlatformArchitecture -- uid: XRTK.Editor.BuildPipeline.UwpBuildInfo.RebuildAppx - name: RebuildAppx - href: api/XRTK.Editor.BuildPipeline.UwpBuildInfo.html#XRTK_Editor_BuildPipeline_UwpBuildInfo_RebuildAppx - commentId: P:XRTK.Editor.BuildPipeline.UwpBuildInfo.RebuildAppx - fullName: XRTK.Editor.BuildPipeline.UwpBuildInfo.RebuildAppx - nameWithType: UwpBuildInfo.RebuildAppx -- uid: XRTK.Editor.BuildPipeline.UwpBuildInfo.RebuildAppx* - name: RebuildAppx - href: api/XRTK.Editor.BuildPipeline.UwpBuildInfo.html#XRTK_Editor_BuildPipeline_UwpBuildInfo_RebuildAppx_ - commentId: Overload:XRTK.Editor.BuildPipeline.UwpBuildInfo.RebuildAppx - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.UwpBuildInfo.RebuildAppx - nameWithType: UwpBuildInfo.RebuildAppx -- uid: XRTK.Editor.BuildPipeline.UwpBuildInfo.SolutionName - name: SolutionName - href: api/XRTK.Editor.BuildPipeline.UwpBuildInfo.html#XRTK_Editor_BuildPipeline_UwpBuildInfo_SolutionName - commentId: P:XRTK.Editor.BuildPipeline.UwpBuildInfo.SolutionName - fullName: XRTK.Editor.BuildPipeline.UwpBuildInfo.SolutionName - nameWithType: UwpBuildInfo.SolutionName -- uid: XRTK.Editor.BuildPipeline.UwpBuildInfo.SolutionName* - name: SolutionName - href: api/XRTK.Editor.BuildPipeline.UwpBuildInfo.html#XRTK_Editor_BuildPipeline_UwpBuildInfo_SolutionName_ - commentId: Overload:XRTK.Editor.BuildPipeline.UwpBuildInfo.SolutionName - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.UwpBuildInfo.SolutionName - nameWithType: UwpBuildInfo.SolutionName -- uid: XRTK.Editor.BuildPipeline.UwpBuildInfo.UwpSdk - name: UwpSdk - href: api/XRTK.Editor.BuildPipeline.UwpBuildInfo.html#XRTK_Editor_BuildPipeline_UwpBuildInfo_UwpSdk - commentId: P:XRTK.Editor.BuildPipeline.UwpBuildInfo.UwpSdk - fullName: XRTK.Editor.BuildPipeline.UwpBuildInfo.UwpSdk - nameWithType: UwpBuildInfo.UwpSdk -- uid: XRTK.Editor.BuildPipeline.UwpBuildInfo.UwpSdk* - name: UwpSdk - href: api/XRTK.Editor.BuildPipeline.UwpBuildInfo.html#XRTK_Editor_BuildPipeline_UwpBuildInfo_UwpSdk_ - commentId: Overload:XRTK.Editor.BuildPipeline.UwpBuildInfo.UwpSdk - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.UwpBuildInfo.UwpSdk - nameWithType: UwpBuildInfo.UwpSdk -- uid: XRTK.Editor.BuildPipeline.UwpBuildInfo.Verbosity - name: Verbosity - href: api/XRTK.Editor.BuildPipeline.UwpBuildInfo.html#XRTK_Editor_BuildPipeline_UwpBuildInfo_Verbosity - commentId: P:XRTK.Editor.BuildPipeline.UwpBuildInfo.Verbosity - fullName: XRTK.Editor.BuildPipeline.UwpBuildInfo.Verbosity - nameWithType: UwpBuildInfo.Verbosity -- uid: XRTK.Editor.BuildPipeline.UwpBuildInfo.Verbosity* - name: Verbosity - href: api/XRTK.Editor.BuildPipeline.UwpBuildInfo.html#XRTK_Editor_BuildPipeline_UwpBuildInfo_Verbosity_ - commentId: Overload:XRTK.Editor.BuildPipeline.UwpBuildInfo.Verbosity - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.UwpBuildInfo.Verbosity - nameWithType: UwpBuildInfo.Verbosity -- uid: XRTK.Editor.BuildPipeline.UwpBuildInfo.VerbosityLevel - name: UwpBuildInfo.VerbosityLevel - href: api/XRTK.Editor.BuildPipeline.UwpBuildInfo.VerbosityLevel.html - commentId: T:XRTK.Editor.BuildPipeline.UwpBuildInfo.VerbosityLevel - fullName: XRTK.Editor.BuildPipeline.UwpBuildInfo.VerbosityLevel - nameWithType: UwpBuildInfo.VerbosityLevel -- uid: XRTK.Editor.BuildPipeline.UwpBuildInfo.VerbosityLevel.Detailed - name: Detailed - href: api/XRTK.Editor.BuildPipeline.UwpBuildInfo.VerbosityLevel.html#XRTK_Editor_BuildPipeline_UwpBuildInfo_VerbosityLevel_Detailed - commentId: F:XRTK.Editor.BuildPipeline.UwpBuildInfo.VerbosityLevel.Detailed - fullName: XRTK.Editor.BuildPipeline.UwpBuildInfo.VerbosityLevel.Detailed - nameWithType: UwpBuildInfo.VerbosityLevel.Detailed -- uid: XRTK.Editor.BuildPipeline.UwpBuildInfo.VerbosityLevel.Diagnostic - name: Diagnostic - href: api/XRTK.Editor.BuildPipeline.UwpBuildInfo.VerbosityLevel.html#XRTK_Editor_BuildPipeline_UwpBuildInfo_VerbosityLevel_Diagnostic - commentId: F:XRTK.Editor.BuildPipeline.UwpBuildInfo.VerbosityLevel.Diagnostic - fullName: XRTK.Editor.BuildPipeline.UwpBuildInfo.VerbosityLevel.Diagnostic - nameWithType: UwpBuildInfo.VerbosityLevel.Diagnostic -- uid: XRTK.Editor.BuildPipeline.UwpBuildInfo.VerbosityLevel.Minimal - name: Minimal - href: api/XRTK.Editor.BuildPipeline.UwpBuildInfo.VerbosityLevel.html#XRTK_Editor_BuildPipeline_UwpBuildInfo_VerbosityLevel_Minimal - commentId: F:XRTK.Editor.BuildPipeline.UwpBuildInfo.VerbosityLevel.Minimal - fullName: XRTK.Editor.BuildPipeline.UwpBuildInfo.VerbosityLevel.Minimal - nameWithType: UwpBuildInfo.VerbosityLevel.Minimal -- uid: XRTK.Editor.BuildPipeline.UwpBuildInfo.VerbosityLevel.Normal - name: Normal - href: api/XRTK.Editor.BuildPipeline.UwpBuildInfo.VerbosityLevel.html#XRTK_Editor_BuildPipeline_UwpBuildInfo_VerbosityLevel_Normal - commentId: F:XRTK.Editor.BuildPipeline.UwpBuildInfo.VerbosityLevel.Normal - fullName: XRTK.Editor.BuildPipeline.UwpBuildInfo.VerbosityLevel.Normal - nameWithType: UwpBuildInfo.VerbosityLevel.Normal -- uid: XRTK.Editor.BuildPipeline.UwpBuildInfo.VerbosityLevel.Quiet - name: Quiet - href: api/XRTK.Editor.BuildPipeline.UwpBuildInfo.VerbosityLevel.html#XRTK_Editor_BuildPipeline_UwpBuildInfo_VerbosityLevel_Quiet - commentId: F:XRTK.Editor.BuildPipeline.UwpBuildInfo.VerbosityLevel.Quiet - fullName: XRTK.Editor.BuildPipeline.UwpBuildInfo.VerbosityLevel.Quiet - nameWithType: UwpBuildInfo.VerbosityLevel.Quiet -- uid: XRTK.Editor.BuildPipeline.UwpBuildInfo.Version - name: Version - href: api/XRTK.Editor.BuildPipeline.UwpBuildInfo.html#XRTK_Editor_BuildPipeline_UwpBuildInfo_Version - commentId: P:XRTK.Editor.BuildPipeline.UwpBuildInfo.Version - fullName: XRTK.Editor.BuildPipeline.UwpBuildInfo.Version - nameWithType: UwpBuildInfo.Version -- uid: XRTK.Editor.BuildPipeline.UwpBuildInfo.Version* - name: Version - href: api/XRTK.Editor.BuildPipeline.UwpBuildInfo.html#XRTK_Editor_BuildPipeline_UwpBuildInfo_Version_ - commentId: Overload:XRTK.Editor.BuildPipeline.UwpBuildInfo.Version - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.UwpBuildInfo.Version - nameWithType: UwpBuildInfo.Version -- uid: XRTK.Editor.BuildPipeline.UwpBuildInfoInspector - name: UwpBuildInfoInspector - href: api/XRTK.Editor.BuildPipeline.UwpBuildInfoInspector.html - commentId: T:XRTK.Editor.BuildPipeline.UwpBuildInfoInspector - fullName: XRTK.Editor.BuildPipeline.UwpBuildInfoInspector - nameWithType: UwpBuildInfoInspector -- uid: XRTK.Editor.BuildPipeline.UwpBuildInfoInspector.OnEnable - name: OnEnable() - href: api/XRTK.Editor.BuildPipeline.UwpBuildInfoInspector.html#XRTK_Editor_BuildPipeline_UwpBuildInfoInspector_OnEnable - commentId: M:XRTK.Editor.BuildPipeline.UwpBuildInfoInspector.OnEnable - fullName: XRTK.Editor.BuildPipeline.UwpBuildInfoInspector.OnEnable() - nameWithType: UwpBuildInfoInspector.OnEnable() -- uid: XRTK.Editor.BuildPipeline.UwpBuildInfoInspector.OnEnable* - name: OnEnable - href: api/XRTK.Editor.BuildPipeline.UwpBuildInfoInspector.html#XRTK_Editor_BuildPipeline_UwpBuildInfoInspector_OnEnable_ - commentId: Overload:XRTK.Editor.BuildPipeline.UwpBuildInfoInspector.OnEnable - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.UwpBuildInfoInspector.OnEnable - nameWithType: UwpBuildInfoInspector.OnEnable -- uid: XRTK.Editor.BuildPipeline.UwpBuildInfoInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.Editor.BuildPipeline.UwpBuildInfoInspector.html#XRTK_Editor_BuildPipeline_UwpBuildInfoInspector_OnInspectorGUI - commentId: M:XRTK.Editor.BuildPipeline.UwpBuildInfoInspector.OnInspectorGUI - fullName: XRTK.Editor.BuildPipeline.UwpBuildInfoInspector.OnInspectorGUI() - nameWithType: UwpBuildInfoInspector.OnInspectorGUI() -- uid: XRTK.Editor.BuildPipeline.UwpBuildInfoInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.Editor.BuildPipeline.UwpBuildInfoInspector.html#XRTK_Editor_BuildPipeline_UwpBuildInfoInspector_OnInspectorGUI_ - commentId: Overload:XRTK.Editor.BuildPipeline.UwpBuildInfoInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.Editor.BuildPipeline.UwpBuildInfoInspector.OnInspectorGUI - nameWithType: UwpBuildInfoInspector.OnInspectorGUI -- uid: XRTK.Editor.ControllerPopupWindow - name: ControllerPopupWindow - href: api/XRTK.Editor.ControllerPopupWindow.html - commentId: T:XRTK.Editor.ControllerPopupWindow - fullName: XRTK.Editor.ControllerPopupWindow - nameWithType: ControllerPopupWindow -- uid: XRTK.Editor.ControllerPopupWindow.Show(XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile,UnityEditor.SerializedProperty) - name: Show(MixedRealityControllerMappingProfile, SerializedProperty) - href: api/XRTK.Editor.ControllerPopupWindow.html#XRTK_Editor_ControllerPopupWindow_Show_XRTK_Definitions_Controllers_MixedRealityControllerMappingProfile_UnityEditor_SerializedProperty_ - commentId: M:XRTK.Editor.ControllerPopupWindow.Show(XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile,UnityEditor.SerializedProperty) - fullName: XRTK.Editor.ControllerPopupWindow.Show(XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile, UnityEditor.SerializedProperty) - nameWithType: ControllerPopupWindow.Show(MixedRealityControllerMappingProfile, SerializedProperty) -- uid: XRTK.Editor.ControllerPopupWindow.Show* - name: Show - href: api/XRTK.Editor.ControllerPopupWindow.html#XRTK_Editor_ControllerPopupWindow_Show_ - commentId: Overload:XRTK.Editor.ControllerPopupWindow.Show - isSpec: "True" - fullName: XRTK.Editor.ControllerPopupWindow.Show - nameWithType: ControllerPopupWindow.Show -- uid: XRTK.Editor.Data - name: XRTK.Editor.Data - href: api/XRTK.Editor.Data.html - commentId: N:XRTK.Editor.Data - fullName: XRTK.Editor.Data - nameWithType: XRTK.Editor.Data -- uid: XRTK.Editor.Data.ControllerInputActionOption - name: ControllerInputActionOption - href: api/XRTK.Editor.Data.ControllerInputActionOption.html - commentId: T:XRTK.Editor.Data.ControllerInputActionOption - fullName: XRTK.Editor.Data.ControllerInputActionOption - nameWithType: ControllerInputActionOption -- uid: XRTK.Editor.Data.ControllerInputActionOption.Controller - name: Controller - href: api/XRTK.Editor.Data.ControllerInputActionOption.html#XRTK_Editor_Data_ControllerInputActionOption_Controller - commentId: F:XRTK.Editor.Data.ControllerInputActionOption.Controller - fullName: XRTK.Editor.Data.ControllerInputActionOption.Controller - nameWithType: ControllerInputActionOption.Controller -- uid: XRTK.Editor.Data.ControllerInputActionOption.Handedness - name: Handedness - href: api/XRTK.Editor.Data.ControllerInputActionOption.html#XRTK_Editor_Data_ControllerInputActionOption_Handedness - commentId: F:XRTK.Editor.Data.ControllerInputActionOption.Handedness - fullName: XRTK.Editor.Data.ControllerInputActionOption.Handedness - nameWithType: ControllerInputActionOption.Handedness -- uid: XRTK.Editor.Data.ControllerInputActionOption.InputLabelPositions - name: InputLabelPositions - href: api/XRTK.Editor.Data.ControllerInputActionOption.html#XRTK_Editor_Data_ControllerInputActionOption_InputLabelPositions - commentId: F:XRTK.Editor.Data.ControllerInputActionOption.InputLabelPositions - fullName: XRTK.Editor.Data.ControllerInputActionOption.InputLabelPositions - nameWithType: ControllerInputActionOption.InputLabelPositions -- uid: XRTK.Editor.Data.ControllerInputActionOption.IsLabelFlipped - name: IsLabelFlipped - href: api/XRTK.Editor.Data.ControllerInputActionOption.html#XRTK_Editor_Data_ControllerInputActionOption_IsLabelFlipped - commentId: F:XRTK.Editor.Data.ControllerInputActionOption.IsLabelFlipped - fullName: XRTK.Editor.Data.ControllerInputActionOption.IsLabelFlipped - nameWithType: ControllerInputActionOption.IsLabelFlipped -- uid: XRTK.Editor.Data.ControllerInputActionOptions - name: ControllerInputActionOptions - href: api/XRTK.Editor.Data.ControllerInputActionOptions.html - commentId: T:XRTK.Editor.Data.ControllerInputActionOptions - fullName: XRTK.Editor.Data.ControllerInputActionOptions - nameWithType: ControllerInputActionOptions -- uid: XRTK.Editor.Data.ControllerInputActionOptions.Controllers - name: Controllers - href: api/XRTK.Editor.Data.ControllerInputActionOptions.html#XRTK_Editor_Data_ControllerInputActionOptions_Controllers - commentId: F:XRTK.Editor.Data.ControllerInputActionOptions.Controllers - fullName: XRTK.Editor.Data.ControllerInputActionOptions.Controllers - nameWithType: ControllerInputActionOptions.Controllers -- uid: XRTK.Editor.Data.Controllers.Hands - name: XRTK.Editor.Data.Controllers.Hands - href: api/XRTK.Editor.Data.Controllers.Hands.html - commentId: N:XRTK.Editor.Data.Controllers.Hands - fullName: XRTK.Editor.Data.Controllers.Hands - nameWithType: XRTK.Editor.Data.Controllers.Hands -- uid: XRTK.Editor.Data.Controllers.Hands.HandControllerPoseProfileInspector - name: HandControllerPoseProfileInspector - href: api/XRTK.Editor.Data.Controllers.Hands.HandControllerPoseProfileInspector.html - commentId: T:XRTK.Editor.Data.Controllers.Hands.HandControllerPoseProfileInspector - fullName: XRTK.Editor.Data.Controllers.Hands.HandControllerPoseProfileInspector - nameWithType: HandControllerPoseProfileInspector -- uid: XRTK.Editor.Data.Controllers.Hands.HandControllerPoseProfileInspector.OnEnable - name: OnEnable() - href: api/XRTK.Editor.Data.Controllers.Hands.HandControllerPoseProfileInspector.html#XRTK_Editor_Data_Controllers_Hands_HandControllerPoseProfileInspector_OnEnable - commentId: M:XRTK.Editor.Data.Controllers.Hands.HandControllerPoseProfileInspector.OnEnable - fullName: XRTK.Editor.Data.Controllers.Hands.HandControllerPoseProfileInspector.OnEnable() - nameWithType: HandControllerPoseProfileInspector.OnEnable() -- uid: XRTK.Editor.Data.Controllers.Hands.HandControllerPoseProfileInspector.OnEnable* - name: OnEnable - href: api/XRTK.Editor.Data.Controllers.Hands.HandControllerPoseProfileInspector.html#XRTK_Editor_Data_Controllers_Hands_HandControllerPoseProfileInspector_OnEnable_ - commentId: Overload:XRTK.Editor.Data.Controllers.Hands.HandControllerPoseProfileInspector.OnEnable - isSpec: "True" - fullName: XRTK.Editor.Data.Controllers.Hands.HandControllerPoseProfileInspector.OnEnable - nameWithType: HandControllerPoseProfileInspector.OnEnable -- uid: XRTK.Editor.Data.Controllers.Hands.HandControllerPoseProfileInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.Editor.Data.Controllers.Hands.HandControllerPoseProfileInspector.html#XRTK_Editor_Data_Controllers_Hands_HandControllerPoseProfileInspector_OnInspectorGUI - commentId: M:XRTK.Editor.Data.Controllers.Hands.HandControllerPoseProfileInspector.OnInspectorGUI - fullName: XRTK.Editor.Data.Controllers.Hands.HandControllerPoseProfileInspector.OnInspectorGUI() - nameWithType: HandControllerPoseProfileInspector.OnInspectorGUI() -- uid: XRTK.Editor.Data.Controllers.Hands.HandControllerPoseProfileInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.Editor.Data.Controllers.Hands.HandControllerPoseProfileInspector.html#XRTK_Editor_Data_Controllers_Hands_HandControllerPoseProfileInspector_OnInspectorGUI_ - commentId: Overload:XRTK.Editor.Data.Controllers.Hands.HandControllerPoseProfileInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.Editor.Data.Controllers.Hands.HandControllerPoseProfileInspector.OnInspectorGUI - nameWithType: HandControllerPoseProfileInspector.OnInspectorGUI -- uid: XRTK.Editor.EditorActiveProfileChangeHandler - name: EditorActiveProfileChangeHandler - href: api/XRTK.Editor.EditorActiveProfileChangeHandler.html - commentId: T:XRTK.Editor.EditorActiveProfileChangeHandler - fullName: XRTK.Editor.EditorActiveProfileChangeHandler - nameWithType: EditorActiveProfileChangeHandler -- uid: XRTK.Editor.EditorHandsShaderGUI - name: EditorHandsShaderGUI - href: api/XRTK.Editor.EditorHandsShaderGUI.html - commentId: T:XRTK.Editor.EditorHandsShaderGUI - fullName: XRTK.Editor.EditorHandsShaderGUI - nameWithType: EditorHandsShaderGUI -- uid: XRTK.Editor.EditorHandsShaderGUI.OnGUI(UnityEditor.MaterialEditor,UnityEditor.MaterialProperty[]) - name: OnGUI(MaterialEditor, MaterialProperty[]) - href: api/XRTK.Editor.EditorHandsShaderGUI.html#XRTK_Editor_EditorHandsShaderGUI_OnGUI_UnityEditor_MaterialEditor_UnityEditor_MaterialProperty___ - commentId: M:XRTK.Editor.EditorHandsShaderGUI.OnGUI(UnityEditor.MaterialEditor,UnityEditor.MaterialProperty[]) - name.vb: OnGUI(MaterialEditor, MaterialProperty()) - fullName: XRTK.Editor.EditorHandsShaderGUI.OnGUI(UnityEditor.MaterialEditor, UnityEditor.MaterialProperty[]) - fullName.vb: XRTK.Editor.EditorHandsShaderGUI.OnGUI(UnityEditor.MaterialEditor, UnityEditor.MaterialProperty()) - nameWithType: EditorHandsShaderGUI.OnGUI(MaterialEditor, MaterialProperty[]) - nameWithType.vb: EditorHandsShaderGUI.OnGUI(MaterialEditor, MaterialProperty()) -- uid: XRTK.Editor.EditorHandsShaderGUI.OnGUI* - name: OnGUI - href: api/XRTK.Editor.EditorHandsShaderGUI.html#XRTK_Editor_EditorHandsShaderGUI_OnGUI_ - commentId: Overload:XRTK.Editor.EditorHandsShaderGUI.OnGUI - isSpec: "True" - fullName: XRTK.Editor.EditorHandsShaderGUI.OnGUI - nameWithType: EditorHandsShaderGUI.OnGUI -- uid: XRTK.Editor.Extensions - name: XRTK.Editor.Extensions - href: api/XRTK.Editor.Extensions.html - commentId: N:XRTK.Editor.Extensions - fullName: XRTK.Editor.Extensions - nameWithType: XRTK.Editor.Extensions -- uid: XRTK.Editor.Extensions.EditorGUILayoutExtensions - name: EditorGUILayoutExtensions - href: api/XRTK.Editor.Extensions.EditorGUILayoutExtensions.html - commentId: T:XRTK.Editor.Extensions.EditorGUILayoutExtensions - fullName: XRTK.Editor.Extensions.EditorGUILayoutExtensions - nameWithType: EditorGUILayoutExtensions -- uid: XRTK.Editor.Extensions.EditorGUILayoutExtensions.FoldoutWithBoldLabel(System.Boolean,UnityEngine.GUIContent,System.Boolean) - name: FoldoutWithBoldLabel(Boolean, GUIContent, Boolean) - href: api/XRTK.Editor.Extensions.EditorGUILayoutExtensions.html#XRTK_Editor_Extensions_EditorGUILayoutExtensions_FoldoutWithBoldLabel_System_Boolean_UnityEngine_GUIContent_System_Boolean_ - commentId: M:XRTK.Editor.Extensions.EditorGUILayoutExtensions.FoldoutWithBoldLabel(System.Boolean,UnityEngine.GUIContent,System.Boolean) - fullName: XRTK.Editor.Extensions.EditorGUILayoutExtensions.FoldoutWithBoldLabel(System.Boolean, UnityEngine.GUIContent, System.Boolean) - nameWithType: EditorGUILayoutExtensions.FoldoutWithBoldLabel(Boolean, GUIContent, Boolean) -- uid: XRTK.Editor.Extensions.EditorGUILayoutExtensions.FoldoutWithBoldLabel* - name: FoldoutWithBoldLabel - href: api/XRTK.Editor.Extensions.EditorGUILayoutExtensions.html#XRTK_Editor_Extensions_EditorGUILayoutExtensions_FoldoutWithBoldLabel_ - commentId: Overload:XRTK.Editor.Extensions.EditorGUILayoutExtensions.FoldoutWithBoldLabel - isSpec: "True" - fullName: XRTK.Editor.Extensions.EditorGUILayoutExtensions.FoldoutWithBoldLabel - nameWithType: EditorGUILayoutExtensions.FoldoutWithBoldLabel -- uid: XRTK.Editor.Extensions.ScriptableObjectExtensions - name: ScriptableObjectExtensions - href: api/XRTK.Editor.Extensions.ScriptableObjectExtensions.html - commentId: T:XRTK.Editor.Extensions.ScriptableObjectExtensions - fullName: XRTK.Editor.Extensions.ScriptableObjectExtensions - nameWithType: ScriptableObjectExtensions -- uid: XRTK.Editor.Extensions.ScriptableObjectExtensions.CreateAsset* - name: CreateAsset - href: api/XRTK.Editor.Extensions.ScriptableObjectExtensions.html#XRTK_Editor_Extensions_ScriptableObjectExtensions_CreateAsset_ - commentId: Overload:XRTK.Editor.Extensions.ScriptableObjectExtensions.CreateAsset - isSpec: "True" - fullName: XRTK.Editor.Extensions.ScriptableObjectExtensions.CreateAsset - nameWithType: ScriptableObjectExtensions.CreateAsset -- uid: XRTK.Editor.Extensions.ScriptableObjectExtensions.CreateAsset``1(``0,System.Boolean) - name: CreateAsset(T, Boolean) - href: api/XRTK.Editor.Extensions.ScriptableObjectExtensions.html#XRTK_Editor_Extensions_ScriptableObjectExtensions_CreateAsset__1___0_System_Boolean_ - commentId: M:XRTK.Editor.Extensions.ScriptableObjectExtensions.CreateAsset``1(``0,System.Boolean) - name.vb: CreateAsset(Of T)(T, Boolean) - fullName: XRTK.Editor.Extensions.ScriptableObjectExtensions.CreateAsset(T, System.Boolean) - fullName.vb: XRTK.Editor.Extensions.ScriptableObjectExtensions.CreateAsset(Of T)(T, System.Boolean) - nameWithType: ScriptableObjectExtensions.CreateAsset(T, Boolean) - nameWithType.vb: ScriptableObjectExtensions.CreateAsset(Of T)(T, Boolean) -- uid: XRTK.Editor.Extensions.ScriptableObjectExtensions.CreateAsset``1(``0,System.String,System.Boolean) - name: CreateAsset(T, String, Boolean) - href: api/XRTK.Editor.Extensions.ScriptableObjectExtensions.html#XRTK_Editor_Extensions_ScriptableObjectExtensions_CreateAsset__1___0_System_String_System_Boolean_ - commentId: M:XRTK.Editor.Extensions.ScriptableObjectExtensions.CreateAsset``1(``0,System.String,System.Boolean) - name.vb: CreateAsset(Of T)(T, String, Boolean) - fullName: XRTK.Editor.Extensions.ScriptableObjectExtensions.CreateAsset(T, System.String, System.Boolean) - fullName.vb: XRTK.Editor.Extensions.ScriptableObjectExtensions.CreateAsset(Of T)(T, System.String, System.Boolean) - nameWithType: ScriptableObjectExtensions.CreateAsset(T, String, Boolean) - nameWithType.vb: ScriptableObjectExtensions.CreateAsset(Of T)(T, String, Boolean) -- uid: XRTK.Editor.Extensions.ScriptableObjectExtensions.CreateAsset``1(``0,System.String,System.String,System.Boolean,System.Boolean) - name: CreateAsset(T, String, String, Boolean, Boolean) - href: api/XRTK.Editor.Extensions.ScriptableObjectExtensions.html#XRTK_Editor_Extensions_ScriptableObjectExtensions_CreateAsset__1___0_System_String_System_String_System_Boolean_System_Boolean_ - commentId: M:XRTK.Editor.Extensions.ScriptableObjectExtensions.CreateAsset``1(``0,System.String,System.String,System.Boolean,System.Boolean) - name.vb: CreateAsset(Of T)(T, String, String, Boolean, Boolean) - fullName: XRTK.Editor.Extensions.ScriptableObjectExtensions.CreateAsset(T, System.String, System.String, System.Boolean, System.Boolean) - fullName.vb: XRTK.Editor.Extensions.ScriptableObjectExtensions.CreateAsset(Of T)(T, System.String, System.String, System.Boolean, System.Boolean) - nameWithType: ScriptableObjectExtensions.CreateAsset(T, String, String, Boolean, Boolean) - nameWithType.vb: ScriptableObjectExtensions.CreateAsset(Of T)(T, String, String, Boolean, Boolean) -- uid: XRTK.Editor.Extensions.ScriptableObjectExtensions.GetAllInstances* - name: GetAllInstances - href: api/XRTK.Editor.Extensions.ScriptableObjectExtensions.html#XRTK_Editor_Extensions_ScriptableObjectExtensions_GetAllInstances_ - commentId: Overload:XRTK.Editor.Extensions.ScriptableObjectExtensions.GetAllInstances - isSpec: "True" - fullName: XRTK.Editor.Extensions.ScriptableObjectExtensions.GetAllInstances - nameWithType: ScriptableObjectExtensions.GetAllInstances -- uid: XRTK.Editor.Extensions.ScriptableObjectExtensions.GetAllInstances``1 - name: GetAllInstances() - href: api/XRTK.Editor.Extensions.ScriptableObjectExtensions.html#XRTK_Editor_Extensions_ScriptableObjectExtensions_GetAllInstances__1 - commentId: M:XRTK.Editor.Extensions.ScriptableObjectExtensions.GetAllInstances``1 - name.vb: GetAllInstances(Of T)() - fullName: XRTK.Editor.Extensions.ScriptableObjectExtensions.GetAllInstances() - fullName.vb: XRTK.Editor.Extensions.ScriptableObjectExtensions.GetAllInstances(Of T)() - nameWithType: ScriptableObjectExtensions.GetAllInstances() - nameWithType.vb: ScriptableObjectExtensions.GetAllInstances(Of T)() -- uid: XRTK.Editor.Extensions.ScriptableObjectExtensions.GetOrCreateAsset* - name: GetOrCreateAsset - href: api/XRTK.Editor.Extensions.ScriptableObjectExtensions.html#XRTK_Editor_Extensions_ScriptableObjectExtensions_GetOrCreateAsset_ - commentId: Overload:XRTK.Editor.Extensions.ScriptableObjectExtensions.GetOrCreateAsset - isSpec: "True" - fullName: XRTK.Editor.Extensions.ScriptableObjectExtensions.GetOrCreateAsset - nameWithType: ScriptableObjectExtensions.GetOrCreateAsset -- uid: XRTK.Editor.Extensions.ScriptableObjectExtensions.GetOrCreateAsset``1(``0,System.Boolean) - name: GetOrCreateAsset(T, Boolean) - href: api/XRTK.Editor.Extensions.ScriptableObjectExtensions.html#XRTK_Editor_Extensions_ScriptableObjectExtensions_GetOrCreateAsset__1___0_System_Boolean_ - commentId: M:XRTK.Editor.Extensions.ScriptableObjectExtensions.GetOrCreateAsset``1(``0,System.Boolean) - name.vb: GetOrCreateAsset(Of T)(T, Boolean) - fullName: XRTK.Editor.Extensions.ScriptableObjectExtensions.GetOrCreateAsset(T, System.Boolean) - fullName.vb: XRTK.Editor.Extensions.ScriptableObjectExtensions.GetOrCreateAsset(Of T)(T, System.Boolean) - nameWithType: ScriptableObjectExtensions.GetOrCreateAsset(T, Boolean) - nameWithType.vb: ScriptableObjectExtensions.GetOrCreateAsset(Of T)(T, Boolean) -- uid: XRTK.Editor.Extensions.ScriptableObjectExtensions.GetOrCreateAsset``1(``0,System.String,System.Boolean) - name: GetOrCreateAsset(T, String, Boolean) - href: api/XRTK.Editor.Extensions.ScriptableObjectExtensions.html#XRTK_Editor_Extensions_ScriptableObjectExtensions_GetOrCreateAsset__1___0_System_String_System_Boolean_ - commentId: M:XRTK.Editor.Extensions.ScriptableObjectExtensions.GetOrCreateAsset``1(``0,System.String,System.Boolean) - name.vb: GetOrCreateAsset(Of T)(T, String, Boolean) - fullName: XRTK.Editor.Extensions.ScriptableObjectExtensions.GetOrCreateAsset(T, System.String, System.Boolean) - fullName.vb: XRTK.Editor.Extensions.ScriptableObjectExtensions.GetOrCreateAsset(Of T)(T, System.String, System.Boolean) - nameWithType: ScriptableObjectExtensions.GetOrCreateAsset(T, String, Boolean) - nameWithType.vb: ScriptableObjectExtensions.GetOrCreateAsset(Of T)(T, String, Boolean) -- uid: XRTK.Editor.Extensions.ScriptableObjectExtensions.GetOrCreateAsset``1(``0,System.String,System.String,System.Boolean) - name: GetOrCreateAsset(T, String, String, Boolean) - href: api/XRTK.Editor.Extensions.ScriptableObjectExtensions.html#XRTK_Editor_Extensions_ScriptableObjectExtensions_GetOrCreateAsset__1___0_System_String_System_String_System_Boolean_ - commentId: M:XRTK.Editor.Extensions.ScriptableObjectExtensions.GetOrCreateAsset``1(``0,System.String,System.String,System.Boolean) - name.vb: GetOrCreateAsset(Of T)(T, String, String, Boolean) - fullName: XRTK.Editor.Extensions.ScriptableObjectExtensions.GetOrCreateAsset(T, System.String, System.String, System.Boolean) - fullName.vb: XRTK.Editor.Extensions.ScriptableObjectExtensions.GetOrCreateAsset(Of T)(T, System.String, System.String, System.Boolean) - nameWithType: ScriptableObjectExtensions.GetOrCreateAsset(T, String, String, Boolean) - nameWithType.vb: ScriptableObjectExtensions.GetOrCreateAsset(Of T)(T, String, String, Boolean) -- uid: XRTK.Editor.Extensions.SerializedPropertyExtensions - name: SerializedPropertyExtensions - href: api/XRTK.Editor.Extensions.SerializedPropertyExtensions.html - commentId: T:XRTK.Editor.Extensions.SerializedPropertyExtensions - fullName: XRTK.Editor.Extensions.SerializedPropertyExtensions - nameWithType: SerializedPropertyExtensions -- uid: XRTK.Editor.Extensions.SerializedPropertyExtensions.FoldoutWithBoldLabelPropertyField(UnityEditor.SerializedProperty,UnityEngine.GUIContent,System.Boolean,UnityEngine.GUIContent,System.Boolean,UnityEngine.GUILayoutOption[]) - name: FoldoutWithBoldLabelPropertyField(SerializedProperty, GUIContent, Boolean, GUIContent, Boolean, GUILayoutOption[]) - href: api/XRTK.Editor.Extensions.SerializedPropertyExtensions.html#XRTK_Editor_Extensions_SerializedPropertyExtensions_FoldoutWithBoldLabelPropertyField_UnityEditor_SerializedProperty_UnityEngine_GUIContent_System_Boolean_UnityEngine_GUIContent_System_Boolean_UnityEngine_GUILayoutOption___ - commentId: M:XRTK.Editor.Extensions.SerializedPropertyExtensions.FoldoutWithBoldLabelPropertyField(UnityEditor.SerializedProperty,UnityEngine.GUIContent,System.Boolean,UnityEngine.GUIContent,System.Boolean,UnityEngine.GUILayoutOption[]) - name.vb: FoldoutWithBoldLabelPropertyField(SerializedProperty, GUIContent, Boolean, GUIContent, Boolean, GUILayoutOption()) - fullName: XRTK.Editor.Extensions.SerializedPropertyExtensions.FoldoutWithBoldLabelPropertyField(UnityEditor.SerializedProperty, UnityEngine.GUIContent, System.Boolean, UnityEngine.GUIContent, System.Boolean, UnityEngine.GUILayoutOption[]) - fullName.vb: XRTK.Editor.Extensions.SerializedPropertyExtensions.FoldoutWithBoldLabelPropertyField(UnityEditor.SerializedProperty, UnityEngine.GUIContent, System.Boolean, UnityEngine.GUIContent, System.Boolean, UnityEngine.GUILayoutOption()) - nameWithType: SerializedPropertyExtensions.FoldoutWithBoldLabelPropertyField(SerializedProperty, GUIContent, Boolean, GUIContent, Boolean, GUILayoutOption[]) - nameWithType.vb: SerializedPropertyExtensions.FoldoutWithBoldLabelPropertyField(SerializedProperty, GUIContent, Boolean, GUIContent, Boolean, GUILayoutOption()) -- uid: XRTK.Editor.Extensions.SerializedPropertyExtensions.FoldoutWithBoldLabelPropertyField(UnityEditor.SerializedProperty,UnityEngine.GUIContent,UnityEngine.GUIContent,System.Boolean,UnityEngine.GUILayoutOption[]) - name: FoldoutWithBoldLabelPropertyField(SerializedProperty, GUIContent, GUIContent, Boolean, GUILayoutOption[]) - href: api/XRTK.Editor.Extensions.SerializedPropertyExtensions.html#XRTK_Editor_Extensions_SerializedPropertyExtensions_FoldoutWithBoldLabelPropertyField_UnityEditor_SerializedProperty_UnityEngine_GUIContent_UnityEngine_GUIContent_System_Boolean_UnityEngine_GUILayoutOption___ - commentId: M:XRTK.Editor.Extensions.SerializedPropertyExtensions.FoldoutWithBoldLabelPropertyField(UnityEditor.SerializedProperty,UnityEngine.GUIContent,UnityEngine.GUIContent,System.Boolean,UnityEngine.GUILayoutOption[]) - name.vb: FoldoutWithBoldLabelPropertyField(SerializedProperty, GUIContent, GUIContent, Boolean, GUILayoutOption()) - fullName: XRTK.Editor.Extensions.SerializedPropertyExtensions.FoldoutWithBoldLabelPropertyField(UnityEditor.SerializedProperty, UnityEngine.GUIContent, UnityEngine.GUIContent, System.Boolean, UnityEngine.GUILayoutOption[]) - fullName.vb: XRTK.Editor.Extensions.SerializedPropertyExtensions.FoldoutWithBoldLabelPropertyField(UnityEditor.SerializedProperty, UnityEngine.GUIContent, UnityEngine.GUIContent, System.Boolean, UnityEngine.GUILayoutOption()) - nameWithType: SerializedPropertyExtensions.FoldoutWithBoldLabelPropertyField(SerializedProperty, GUIContent, GUIContent, Boolean, GUILayoutOption[]) - nameWithType.vb: SerializedPropertyExtensions.FoldoutWithBoldLabelPropertyField(SerializedProperty, GUIContent, GUIContent, Boolean, GUILayoutOption()) -- uid: XRTK.Editor.Extensions.SerializedPropertyExtensions.FoldoutWithBoldLabelPropertyField* - name: FoldoutWithBoldLabelPropertyField - href: api/XRTK.Editor.Extensions.SerializedPropertyExtensions.html#XRTK_Editor_Extensions_SerializedPropertyExtensions_FoldoutWithBoldLabelPropertyField_ - commentId: Overload:XRTK.Editor.Extensions.SerializedPropertyExtensions.FoldoutWithBoldLabelPropertyField - isSpec: "True" - fullName: XRTK.Editor.Extensions.SerializedPropertyExtensions.FoldoutWithBoldLabelPropertyField - nameWithType: SerializedPropertyExtensions.FoldoutWithBoldLabelPropertyField -- uid: XRTK.Editor.MixedRealityPreferences - name: MixedRealityPreferences - href: api/XRTK.Editor.MixedRealityPreferences.html - commentId: T:XRTK.Editor.MixedRealityPreferences - fullName: XRTK.Editor.MixedRealityPreferences - nameWithType: MixedRealityPreferences -- uid: XRTK.Editor.MixedRealityPreferences.AutoLoadSymbolicLinks - name: AutoLoadSymbolicLinks - href: api/XRTK.Editor.MixedRealityPreferences.html#XRTK_Editor_MixedRealityPreferences_AutoLoadSymbolicLinks - commentId: P:XRTK.Editor.MixedRealityPreferences.AutoLoadSymbolicLinks - fullName: XRTK.Editor.MixedRealityPreferences.AutoLoadSymbolicLinks - nameWithType: MixedRealityPreferences.AutoLoadSymbolicLinks -- uid: XRTK.Editor.MixedRealityPreferences.AutoLoadSymbolicLinks* - name: AutoLoadSymbolicLinks - href: api/XRTK.Editor.MixedRealityPreferences.html#XRTK_Editor_MixedRealityPreferences_AutoLoadSymbolicLinks_ - commentId: Overload:XRTK.Editor.MixedRealityPreferences.AutoLoadSymbolicLinks - isSpec: "True" - fullName: XRTK.Editor.MixedRealityPreferences.AutoLoadSymbolicLinks - nameWithType: MixedRealityPreferences.AutoLoadSymbolicLinks -- uid: XRTK.Editor.MixedRealityPreferences.CurrentPlatformTarget - name: CurrentPlatformTarget - href: api/XRTK.Editor.MixedRealityPreferences.html#XRTK_Editor_MixedRealityPreferences_CurrentPlatformTarget - commentId: P:XRTK.Editor.MixedRealityPreferences.CurrentPlatformTarget - fullName: XRTK.Editor.MixedRealityPreferences.CurrentPlatformTarget - nameWithType: MixedRealityPreferences.CurrentPlatformTarget -- uid: XRTK.Editor.MixedRealityPreferences.CurrentPlatformTarget* - name: CurrentPlatformTarget - href: api/XRTK.Editor.MixedRealityPreferences.html#XRTK_Editor_MixedRealityPreferences_CurrentPlatformTarget_ - commentId: Overload:XRTK.Editor.MixedRealityPreferences.CurrentPlatformTarget - isSpec: "True" - fullName: XRTK.Editor.MixedRealityPreferences.CurrentPlatformTarget - nameWithType: MixedRealityPreferences.CurrentPlatformTarget -- uid: XRTK.Editor.MixedRealityPreferences.DebugSymbolicInfo - name: DebugSymbolicInfo - href: api/XRTK.Editor.MixedRealityPreferences.html#XRTK_Editor_MixedRealityPreferences_DebugSymbolicInfo - commentId: P:XRTK.Editor.MixedRealityPreferences.DebugSymbolicInfo - fullName: XRTK.Editor.MixedRealityPreferences.DebugSymbolicInfo - nameWithType: MixedRealityPreferences.DebugSymbolicInfo -- uid: XRTK.Editor.MixedRealityPreferences.DebugSymbolicInfo* - name: DebugSymbolicInfo - href: api/XRTK.Editor.MixedRealityPreferences.html#XRTK_Editor_MixedRealityPreferences_DebugSymbolicInfo_ - commentId: Overload:XRTK.Editor.MixedRealityPreferences.DebugSymbolicInfo - isSpec: "True" - fullName: XRTK.Editor.MixedRealityPreferences.DebugSymbolicInfo - nameWithType: MixedRealityPreferences.DebugSymbolicInfo -- uid: XRTK.Editor.MixedRealityPreferences.HIDDEN_PREFABS_PATH - name: HIDDEN_PREFABS_PATH - href: api/XRTK.Editor.MixedRealityPreferences.html#XRTK_Editor_MixedRealityPreferences_HIDDEN_PREFABS_PATH - commentId: F:XRTK.Editor.MixedRealityPreferences.HIDDEN_PREFABS_PATH - fullName: XRTK.Editor.MixedRealityPreferences.HIDDEN_PREFABS_PATH - nameWithType: MixedRealityPreferences.HIDDEN_PREFABS_PATH -- uid: XRTK.Editor.MixedRealityPreferences.HIDDEN_PROFILES_PATH - name: HIDDEN_PROFILES_PATH - href: api/XRTK.Editor.MixedRealityPreferences.html#XRTK_Editor_MixedRealityPreferences_HIDDEN_PROFILES_PATH - commentId: F:XRTK.Editor.MixedRealityPreferences.HIDDEN_PROFILES_PATH - fullName: XRTK.Editor.MixedRealityPreferences.HIDDEN_PROFILES_PATH - nameWithType: MixedRealityPreferences.HIDDEN_PROFILES_PATH -- uid: XRTK.Editor.MixedRealityPreferences.IgnoreSettingsPrompt - name: IgnoreSettingsPrompt - href: api/XRTK.Editor.MixedRealityPreferences.html#XRTK_Editor_MixedRealityPreferences_IgnoreSettingsPrompt - commentId: P:XRTK.Editor.MixedRealityPreferences.IgnoreSettingsPrompt - fullName: XRTK.Editor.MixedRealityPreferences.IgnoreSettingsPrompt - nameWithType: MixedRealityPreferences.IgnoreSettingsPrompt -- uid: XRTK.Editor.MixedRealityPreferences.IgnoreSettingsPrompt* - name: IgnoreSettingsPrompt - href: api/XRTK.Editor.MixedRealityPreferences.html#XRTK_Editor_MixedRealityPreferences_IgnoreSettingsPrompt_ - commentId: Overload:XRTK.Editor.MixedRealityPreferences.IgnoreSettingsPrompt - isSpec: "True" - fullName: XRTK.Editor.MixedRealityPreferences.IgnoreSettingsPrompt - nameWithType: MixedRealityPreferences.IgnoreSettingsPrompt -- uid: XRTK.Editor.MixedRealityPreferences.ProfileGenerationPath - name: ProfileGenerationPath - href: api/XRTK.Editor.MixedRealityPreferences.html#XRTK_Editor_MixedRealityPreferences_ProfileGenerationPath - commentId: P:XRTK.Editor.MixedRealityPreferences.ProfileGenerationPath - fullName: XRTK.Editor.MixedRealityPreferences.ProfileGenerationPath - nameWithType: MixedRealityPreferences.ProfileGenerationPath -- uid: XRTK.Editor.MixedRealityPreferences.ProfileGenerationPath* - name: ProfileGenerationPath - href: api/XRTK.Editor.MixedRealityPreferences.html#XRTK_Editor_MixedRealityPreferences_ProfileGenerationPath_ - commentId: Overload:XRTK.Editor.MixedRealityPreferences.ProfileGenerationPath - isSpec: "True" - fullName: XRTK.Editor.MixedRealityPreferences.ProfileGenerationPath - nameWithType: MixedRealityPreferences.ProfileGenerationPath -- uid: XRTK.Editor.MixedRealityPreferences.ShowCanvasUtilityPrompt - name: ShowCanvasUtilityPrompt - href: api/XRTK.Editor.MixedRealityPreferences.html#XRTK_Editor_MixedRealityPreferences_ShowCanvasUtilityPrompt - commentId: P:XRTK.Editor.MixedRealityPreferences.ShowCanvasUtilityPrompt - fullName: XRTK.Editor.MixedRealityPreferences.ShowCanvasUtilityPrompt - nameWithType: MixedRealityPreferences.ShowCanvasUtilityPrompt -- uid: XRTK.Editor.MixedRealityPreferences.ShowCanvasUtilityPrompt* - name: ShowCanvasUtilityPrompt - href: api/XRTK.Editor.MixedRealityPreferences.html#XRTK_Editor_MixedRealityPreferences_ShowCanvasUtilityPrompt_ - commentId: Overload:XRTK.Editor.MixedRealityPreferences.ShowCanvasUtilityPrompt - isSpec: "True" - fullName: XRTK.Editor.MixedRealityPreferences.ShowCanvasUtilityPrompt - nameWithType: MixedRealityPreferences.ShowCanvasUtilityPrompt -- uid: XRTK.Editor.MixedRealityPreferences.StartSceneAsset - name: StartSceneAsset - href: api/XRTK.Editor.MixedRealityPreferences.html#XRTK_Editor_MixedRealityPreferences_StartSceneAsset - commentId: P:XRTK.Editor.MixedRealityPreferences.StartSceneAsset - fullName: XRTK.Editor.MixedRealityPreferences.StartSceneAsset - nameWithType: MixedRealityPreferences.StartSceneAsset -- uid: XRTK.Editor.MixedRealityPreferences.StartSceneAsset* - name: StartSceneAsset - href: api/XRTK.Editor.MixedRealityPreferences.html#XRTK_Editor_MixedRealityPreferences_StartSceneAsset_ - commentId: Overload:XRTK.Editor.MixedRealityPreferences.StartSceneAsset - isSpec: "True" - fullName: XRTK.Editor.MixedRealityPreferences.StartSceneAsset - nameWithType: MixedRealityPreferences.StartSceneAsset -- uid: XRTK.Editor.MixedRealityPreferences.SymbolicLinkSettingsPath - name: SymbolicLinkSettingsPath - href: api/XRTK.Editor.MixedRealityPreferences.html#XRTK_Editor_MixedRealityPreferences_SymbolicLinkSettingsPath - commentId: P:XRTK.Editor.MixedRealityPreferences.SymbolicLinkSettingsPath - fullName: XRTK.Editor.MixedRealityPreferences.SymbolicLinkSettingsPath - nameWithType: MixedRealityPreferences.SymbolicLinkSettingsPath -- uid: XRTK.Editor.MixedRealityPreferences.SymbolicLinkSettingsPath* - name: SymbolicLinkSettingsPath - href: api/XRTK.Editor.MixedRealityPreferences.html#XRTK_Editor_MixedRealityPreferences_SymbolicLinkSettingsPath_ - commentId: Overload:XRTK.Editor.MixedRealityPreferences.SymbolicLinkSettingsPath - isSpec: "True" - fullName: XRTK.Editor.MixedRealityPreferences.SymbolicLinkSettingsPath - nameWithType: MixedRealityPreferences.SymbolicLinkSettingsPath -- uid: XRTK.Editor.MixedRealityStandardShaderGUI - name: MixedRealityStandardShaderGUI - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html - commentId: T:XRTK.Editor.MixedRealityStandardShaderGUI - fullName: XRTK.Editor.MixedRealityStandardShaderGUI - nameWithType: MixedRealityStandardShaderGUI -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.AdvancedOptions(UnityEditor.MaterialEditor,UnityEngine.Material) - name: AdvancedOptions(MaterialEditor, Material) - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_AdvancedOptions_UnityEditor_MaterialEditor_UnityEngine_Material_ - commentId: M:XRTK.Editor.MixedRealityStandardShaderGUI.AdvancedOptions(UnityEditor.MaterialEditor,UnityEngine.Material) - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.AdvancedOptions(UnityEditor.MaterialEditor, UnityEngine.Material) - nameWithType: MixedRealityStandardShaderGUI.AdvancedOptions(MaterialEditor, Material) -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.AdvancedOptions* - name: AdvancedOptions - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_AdvancedOptions_ - commentId: Overload:XRTK.Editor.MixedRealityStandardShaderGUI.AdvancedOptions - isSpec: "True" - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.AdvancedOptions - nameWithType: MixedRealityStandardShaderGUI.AdvancedOptions -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.albedoAlphaMode - name: albedoAlphaMode - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_albedoAlphaMode - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.albedoAlphaMode - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.albedoAlphaMode - nameWithType: MixedRealityStandardShaderGUI.albedoAlphaMode -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.AlbedoAlphaMode - name: MixedRealityStandardShaderGUI.AlbedoAlphaMode - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.AlbedoAlphaMode.html - commentId: T:XRTK.Editor.MixedRealityStandardShaderGUI.AlbedoAlphaMode - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.AlbedoAlphaMode - nameWithType: MixedRealityStandardShaderGUI.AlbedoAlphaMode -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.AlbedoAlphaMode.Metallic - name: Metallic - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.AlbedoAlphaMode.html#XRTK_Editor_MixedRealityStandardShaderGUI_AlbedoAlphaMode_Metallic - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.AlbedoAlphaMode.Metallic - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.AlbedoAlphaMode.Metallic - nameWithType: MixedRealityStandardShaderGUI.AlbedoAlphaMode.Metallic -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.AlbedoAlphaMode.Smoothness - name: Smoothness - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.AlbedoAlphaMode.html#XRTK_Editor_MixedRealityStandardShaderGUI_AlbedoAlphaMode_Smoothness - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.AlbedoAlphaMode.Smoothness - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.AlbedoAlphaMode.Smoothness - nameWithType: MixedRealityStandardShaderGUI.AlbedoAlphaMode.Smoothness -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.AlbedoAlphaMode.Transparency - name: Transparency - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.AlbedoAlphaMode.html#XRTK_Editor_MixedRealityStandardShaderGUI_AlbedoAlphaMode_Transparency - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.AlbedoAlphaMode.Transparency - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.AlbedoAlphaMode.Transparency - nameWithType: MixedRealityStandardShaderGUI.AlbedoAlphaMode.Transparency -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.albedoAssignedAtRuntime - name: albedoAssignedAtRuntime - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_albedoAssignedAtRuntime - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.albedoAssignedAtRuntime - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.albedoAssignedAtRuntime - nameWithType: MixedRealityStandardShaderGUI.albedoAssignedAtRuntime -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.albedoColor - name: albedoColor - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_albedoColor - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.albedoColor - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.albedoColor - nameWithType: MixedRealityStandardShaderGUI.albedoColor -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.albedoMap - name: albedoMap - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_albedoMap - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.albedoMap - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.albedoMap - nameWithType: MixedRealityStandardShaderGUI.albedoMap -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.alphaCutoff - name: alphaCutoff - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_alphaCutoff - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.alphaCutoff - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.alphaCutoff - nameWithType: MixedRealityStandardShaderGUI.alphaCutoff -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.AssignNewShaderToMaterial(UnityEngine.Material,UnityEngine.Shader,UnityEngine.Shader) - name: AssignNewShaderToMaterial(Material, Shader, Shader) - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_AssignNewShaderToMaterial_UnityEngine_Material_UnityEngine_Shader_UnityEngine_Shader_ - commentId: M:XRTK.Editor.MixedRealityStandardShaderGUI.AssignNewShaderToMaterial(UnityEngine.Material,UnityEngine.Shader,UnityEngine.Shader) - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.AssignNewShaderToMaterial(UnityEngine.Material, UnityEngine.Shader, UnityEngine.Shader) - nameWithType: MixedRealityStandardShaderGUI.AssignNewShaderToMaterial(Material, Shader, Shader) -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.AssignNewShaderToMaterial* - name: AssignNewShaderToMaterial - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_AssignNewShaderToMaterial_ - commentId: Overload:XRTK.Editor.MixedRealityStandardShaderGUI.AssignNewShaderToMaterial - isSpec: "True" - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.AssignNewShaderToMaterial - nameWithType: MixedRealityStandardShaderGUI.AssignNewShaderToMaterial -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.blendOperation - name: blendOperation - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_blendOperation - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.blendOperation - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.blendOperation - nameWithType: MixedRealityStandardShaderGUI.blendOperation -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.borderLight - name: borderLight - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_borderLight - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.borderLight - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.borderLight - nameWithType: MixedRealityStandardShaderGUI.borderLight -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.borderLightOpaque - name: borderLightOpaque - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_borderLightOpaque - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.borderLightOpaque - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.borderLightOpaque - nameWithType: MixedRealityStandardShaderGUI.borderLightOpaque -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.borderLightOpaqueAlpha - name: borderLightOpaqueAlpha - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_borderLightOpaqueAlpha - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.borderLightOpaqueAlpha - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.borderLightOpaqueAlpha - nameWithType: MixedRealityStandardShaderGUI.borderLightOpaqueAlpha -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.borderLightReplacesAlbedo - name: borderLightReplacesAlbedo - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_borderLightReplacesAlbedo - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.borderLightReplacesAlbedo - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.borderLightReplacesAlbedo - nameWithType: MixedRealityStandardShaderGUI.borderLightReplacesAlbedo -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.borderLightUsesHoverColor - name: borderLightUsesHoverColor - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_borderLightUsesHoverColor - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.borderLightUsesHoverColor - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.borderLightUsesHoverColor - nameWithType: MixedRealityStandardShaderGUI.borderLightUsesHoverColor -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.borderMinValue - name: borderMinValue - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_borderMinValue - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.borderMinValue - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.borderMinValue - nameWithType: MixedRealityStandardShaderGUI.borderMinValue -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.borderWidth - name: borderWidth - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_borderWidth - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.borderWidth - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.borderWidth - nameWithType: MixedRealityStandardShaderGUI.borderWidth -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.channelMap - name: channelMap - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_channelMap - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.channelMap - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.channelMap - nameWithType: MixedRealityStandardShaderGUI.channelMap -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.clippingBorder - name: clippingBorder - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_clippingBorder - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.clippingBorder - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.clippingBorder - nameWithType: MixedRealityStandardShaderGUI.clippingBorder -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.clippingBorderColor - name: clippingBorderColor - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_clippingBorderColor - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.clippingBorderColor - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.clippingBorderColor - nameWithType: MixedRealityStandardShaderGUI.clippingBorderColor -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.clippingBorderWidth - name: clippingBorderWidth - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_clippingBorderWidth - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.clippingBorderWidth - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.clippingBorderWidth - nameWithType: MixedRealityStandardShaderGUI.clippingBorderWidth -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.clippingBox - name: clippingBox - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_clippingBox - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.clippingBox - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.clippingBox - nameWithType: MixedRealityStandardShaderGUI.clippingBox -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.clippingPlane - name: clippingPlane - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_clippingPlane - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.clippingPlane - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.clippingPlane - nameWithType: MixedRealityStandardShaderGUI.clippingPlane -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.clippingSphere - name: clippingSphere - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_clippingSphere - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.clippingSphere - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.clippingSphere - nameWithType: MixedRealityStandardShaderGUI.clippingSphere -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.colorWriteMask - name: colorWriteMask - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_colorWriteMask - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.colorWriteMask - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.colorWriteMask - nameWithType: MixedRealityStandardShaderGUI.colorWriteMask -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.cullMode - name: cullMode - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_cullMode - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.cullMode - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.cullMode - nameWithType: MixedRealityStandardShaderGUI.cullMode -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.customRenderingMode - name: customRenderingMode - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_customRenderingMode - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.customRenderingMode - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.customRenderingMode - nameWithType: MixedRealityStandardShaderGUI.customRenderingMode -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.CustomRenderingMode - name: MixedRealityStandardShaderGUI.CustomRenderingMode - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.CustomRenderingMode.html - commentId: T:XRTK.Editor.MixedRealityStandardShaderGUI.CustomRenderingMode - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.CustomRenderingMode - nameWithType: MixedRealityStandardShaderGUI.CustomRenderingMode -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.CustomRenderingMode.Opaque - name: Opaque - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.CustomRenderingMode.html#XRTK_Editor_MixedRealityStandardShaderGUI_CustomRenderingMode_Opaque - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.CustomRenderingMode.Opaque - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.CustomRenderingMode.Opaque - nameWithType: MixedRealityStandardShaderGUI.CustomRenderingMode.Opaque -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.CustomRenderingMode.Transparent - name: Transparent - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.CustomRenderingMode.html#XRTK_Editor_MixedRealityStandardShaderGUI_CustomRenderingMode_Transparent - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.CustomRenderingMode.Transparent - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.CustomRenderingMode.Transparent - nameWithType: MixedRealityStandardShaderGUI.CustomRenderingMode.Transparent -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.CustomRenderingMode.TransparentCutout - name: TransparentCutout - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.CustomRenderingMode.html#XRTK_Editor_MixedRealityStandardShaderGUI_CustomRenderingMode_TransparentCutout - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.CustomRenderingMode.TransparentCutout - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.CustomRenderingMode.TransparentCutout - nameWithType: MixedRealityStandardShaderGUI.CustomRenderingMode.TransparentCutout -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.depthTest - name: depthTest - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_depthTest - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.depthTest - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.depthTest - nameWithType: MixedRealityStandardShaderGUI.depthTest -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.depthWrite - name: depthWrite - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_depthWrite - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.depthWrite - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.depthWrite - nameWithType: MixedRealityStandardShaderGUI.depthWrite -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.DepthWrite - name: MixedRealityStandardShaderGUI.DepthWrite - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.DepthWrite.html - commentId: T:XRTK.Editor.MixedRealityStandardShaderGUI.DepthWrite - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.DepthWrite - nameWithType: MixedRealityStandardShaderGUI.DepthWrite -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.DepthWrite.Off - name: Off - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.DepthWrite.html#XRTK_Editor_MixedRealityStandardShaderGUI_DepthWrite_Off - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.DepthWrite.Off - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.DepthWrite.Off - nameWithType: MixedRealityStandardShaderGUI.DepthWrite.Off -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.DepthWrite.On - name: On - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.DepthWrite.html#XRTK_Editor_MixedRealityStandardShaderGUI_DepthWrite_On - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.DepthWrite.On - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.DepthWrite.On - nameWithType: MixedRealityStandardShaderGUI.DepthWrite.On -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.destinationBlend - name: destinationBlend - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_destinationBlend - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.destinationBlend - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.destinationBlend - nameWithType: MixedRealityStandardShaderGUI.destinationBlend -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.directionalLight - name: directionalLight - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_directionalLight - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.directionalLight - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.directionalLight - nameWithType: MixedRealityStandardShaderGUI.directionalLight -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.edgeSmoothingValue - name: edgeSmoothingValue - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_edgeSmoothingValue - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.edgeSmoothingValue - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.edgeSmoothingValue - nameWithType: MixedRealityStandardShaderGUI.edgeSmoothingValue -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.emissiveColor - name: emissiveColor - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_emissiveColor - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.emissiveColor - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.emissiveColor - nameWithType: MixedRealityStandardShaderGUI.emissiveColor -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.enableChannelMap - name: enableChannelMap - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_enableChannelMap - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.enableChannelMap - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.enableChannelMap - nameWithType: MixedRealityStandardShaderGUI.enableChannelMap -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.enableEmission - name: enableEmission - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_enableEmission - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.enableEmission - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.enableEmission - nameWithType: MixedRealityStandardShaderGUI.enableEmission -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.enableHoverColorOverride - name: enableHoverColorOverride - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_enableHoverColorOverride - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.enableHoverColorOverride - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.enableHoverColorOverride - nameWithType: MixedRealityStandardShaderGUI.enableHoverColorOverride -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.enableLocalSpaceTriplanarMapping - name: enableLocalSpaceTriplanarMapping - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_enableLocalSpaceTriplanarMapping - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.enableLocalSpaceTriplanarMapping - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.enableLocalSpaceTriplanarMapping - nameWithType: MixedRealityStandardShaderGUI.enableLocalSpaceTriplanarMapping -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.enableNormalMap - name: enableNormalMap - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_enableNormalMap - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.enableNormalMap - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.enableNormalMap - nameWithType: MixedRealityStandardShaderGUI.enableNormalMap -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.enableTriplanarMapping - name: enableTriplanarMapping - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_enableTriplanarMapping - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.enableTriplanarMapping - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.enableTriplanarMapping - nameWithType: MixedRealityStandardShaderGUI.enableTriplanarMapping -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.environmentColoring - name: environmentColoring - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_environmentColoring - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.environmentColoring - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.environmentColoring - nameWithType: MixedRealityStandardShaderGUI.environmentColoring -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.environmentColorIntensity - name: environmentColorIntensity - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_environmentColorIntensity - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.environmentColorIntensity - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.environmentColorIntensity - nameWithType: MixedRealityStandardShaderGUI.environmentColorIntensity -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.environmentColorThreshold - name: environmentColorThreshold - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_environmentColorThreshold - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.environmentColorThreshold - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.environmentColorThreshold - nameWithType: MixedRealityStandardShaderGUI.environmentColorThreshold -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.environmentColorX - name: environmentColorX - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_environmentColorX - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.environmentColorX - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.environmentColorX - nameWithType: MixedRealityStandardShaderGUI.environmentColorX -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.environmentColorY - name: environmentColorY - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_environmentColorY - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.environmentColorY - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.environmentColorY - nameWithType: MixedRealityStandardShaderGUI.environmentColorY -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.environmentColorZ - name: environmentColorZ - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_environmentColorZ - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.environmentColorZ - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.environmentColorZ - nameWithType: MixedRealityStandardShaderGUI.environmentColorZ -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.fadeBeginDistance - name: fadeBeginDistance - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_fadeBeginDistance - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.fadeBeginDistance - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.fadeBeginDistance - nameWithType: MixedRealityStandardShaderGUI.fadeBeginDistance -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.fadeCompleteDistance - name: fadeCompleteDistance - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_fadeCompleteDistance - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.fadeCompleteDistance - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.fadeCompleteDistance - nameWithType: MixedRealityStandardShaderGUI.fadeCompleteDistance -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.FindProperties(UnityEditor.MaterialProperty[]) - name: FindProperties(MaterialProperty[]) - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_FindProperties_UnityEditor_MaterialProperty___ - commentId: M:XRTK.Editor.MixedRealityStandardShaderGUI.FindProperties(UnityEditor.MaterialProperty[]) - name.vb: FindProperties(MaterialProperty()) - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.FindProperties(UnityEditor.MaterialProperty[]) - fullName.vb: XRTK.Editor.MixedRealityStandardShaderGUI.FindProperties(UnityEditor.MaterialProperty()) - nameWithType: MixedRealityStandardShaderGUI.FindProperties(MaterialProperty[]) - nameWithType.vb: MixedRealityStandardShaderGUI.FindProperties(MaterialProperty()) -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.FindProperties* - name: FindProperties - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_FindProperties_ - commentId: Overload:XRTK.Editor.MixedRealityStandardShaderGUI.FindProperties - isSpec: "True" - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.FindProperties - nameWithType: MixedRealityStandardShaderGUI.FindProperties -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.FluentOptions(UnityEditor.MaterialEditor,UnityEngine.Material) - name: FluentOptions(MaterialEditor, Material) - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_FluentOptions_UnityEditor_MaterialEditor_UnityEngine_Material_ - commentId: M:XRTK.Editor.MixedRealityStandardShaderGUI.FluentOptions(UnityEditor.MaterialEditor,UnityEngine.Material) - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.FluentOptions(UnityEditor.MaterialEditor, UnityEngine.Material) - nameWithType: MixedRealityStandardShaderGUI.FluentOptions(MaterialEditor, Material) -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.FluentOptions* - name: FluentOptions - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_FluentOptions_ - commentId: Overload:XRTK.Editor.MixedRealityStandardShaderGUI.FluentOptions - isSpec: "True" - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.FluentOptions - nameWithType: MixedRealityStandardShaderGUI.FluentOptions -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.GetColorProperty(UnityEngine.Material,System.String) - name: GetColorProperty(Material, String) - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_GetColorProperty_UnityEngine_Material_System_String_ - commentId: M:XRTK.Editor.MixedRealityStandardShaderGUI.GetColorProperty(UnityEngine.Material,System.String) - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.GetColorProperty(UnityEngine.Material, System.String) - nameWithType: MixedRealityStandardShaderGUI.GetColorProperty(Material, String) -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.GetColorProperty* - name: GetColorProperty - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_GetColorProperty_ - commentId: Overload:XRTK.Editor.MixedRealityStandardShaderGUI.GetColorProperty - isSpec: "True" - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.GetColorProperty - nameWithType: MixedRealityStandardShaderGUI.GetColorProperty -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.GetFloatProperty(UnityEngine.Material,System.String) - name: GetFloatProperty(Material, String) - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_GetFloatProperty_UnityEngine_Material_System_String_ - commentId: M:XRTK.Editor.MixedRealityStandardShaderGUI.GetFloatProperty(UnityEngine.Material,System.String) - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.GetFloatProperty(UnityEngine.Material, System.String) - nameWithType: MixedRealityStandardShaderGUI.GetFloatProperty(Material, String) -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.GetFloatProperty* - name: GetFloatProperty - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_GetFloatProperty_ - commentId: Overload:XRTK.Editor.MixedRealityStandardShaderGUI.GetFloatProperty - isSpec: "True" - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.GetFloatProperty - nameWithType: MixedRealityStandardShaderGUI.GetFloatProperty -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.GetVectorProperty(UnityEngine.Material,System.String) - name: GetVectorProperty(Material, String) - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_GetVectorProperty_UnityEngine_Material_System_String_ - commentId: M:XRTK.Editor.MixedRealityStandardShaderGUI.GetVectorProperty(UnityEngine.Material,System.String) - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.GetVectorProperty(UnityEngine.Material, System.String) - nameWithType: MixedRealityStandardShaderGUI.GetVectorProperty(Material, String) -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.GetVectorProperty* - name: GetVectorProperty - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_GetVectorProperty_ - commentId: Overload:XRTK.Editor.MixedRealityStandardShaderGUI.GetVectorProperty - isSpec: "True" - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.GetVectorProperty - nameWithType: MixedRealityStandardShaderGUI.GetVectorProperty -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.hoverColorOverride - name: hoverColorOverride - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_hoverColorOverride - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.hoverColorOverride - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.hoverColorOverride - nameWithType: MixedRealityStandardShaderGUI.hoverColorOverride -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.hoverLight - name: hoverLight - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_hoverLight - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.hoverLight - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.hoverLight - nameWithType: MixedRealityStandardShaderGUI.hoverLight -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Initialize(UnityEngine.Material) - name: Initialize(Material) - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_Initialize_UnityEngine_Material_ - commentId: M:XRTK.Editor.MixedRealityStandardShaderGUI.Initialize(UnityEngine.Material) - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Initialize(UnityEngine.Material) - nameWithType: MixedRealityStandardShaderGUI.Initialize(Material) -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Initialize* - name: Initialize - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_Initialize_ - commentId: Overload:XRTK.Editor.MixedRealityStandardShaderGUI.Initialize - isSpec: "True" - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Initialize - nameWithType: MixedRealityStandardShaderGUI.Initialize -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.initialized - name: initialized - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_initialized - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.initialized - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.initialized - nameWithType: MixedRealityStandardShaderGUI.initialized -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.innerGlow - name: innerGlow - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_innerGlow - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.innerGlow - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.innerGlow - nameWithType: MixedRealityStandardShaderGUI.innerGlow -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.innerGlowColor - name: innerGlowColor - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_innerGlowColor - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.innerGlowColor - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.innerGlowColor - nameWithType: MixedRealityStandardShaderGUI.innerGlowColor -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.innerGlowPower - name: innerGlowPower - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_innerGlowPower - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.innerGlowPower - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.innerGlowPower - nameWithType: MixedRealityStandardShaderGUI.innerGlowPower -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.instancedColor - name: instancedColor - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_instancedColor - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.instancedColor - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.instancedColor - nameWithType: MixedRealityStandardShaderGUI.instancedColor -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.iridescence - name: iridescence - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_iridescence - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.iridescence - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.iridescence - nameWithType: MixedRealityStandardShaderGUI.iridescence -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.iridescenceAngle - name: iridescenceAngle - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_iridescenceAngle - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.iridescenceAngle - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.iridescenceAngle - nameWithType: MixedRealityStandardShaderGUI.iridescenceAngle -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.iridescenceIntensity - name: iridescenceIntensity - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_iridescenceIntensity - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.iridescenceIntensity - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.iridescenceIntensity - nameWithType: MixedRealityStandardShaderGUI.iridescenceIntensity -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.iridescenceThreshold - name: iridescenceThreshold - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_iridescenceThreshold - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.iridescenceThreshold - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.iridescenceThreshold - nameWithType: MixedRealityStandardShaderGUI.iridescenceThreshold -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.iridescentSpectrumMap - name: iridescentSpectrumMap - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_iridescentSpectrumMap - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.iridescentSpectrumMap - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.iridescentSpectrumMap - nameWithType: MixedRealityStandardShaderGUI.iridescentSpectrumMap -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.MainMapOptions(UnityEditor.MaterialEditor,UnityEngine.Material) - name: MainMapOptions(MaterialEditor, Material) - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_MainMapOptions_UnityEditor_MaterialEditor_UnityEngine_Material_ - commentId: M:XRTK.Editor.MixedRealityStandardShaderGUI.MainMapOptions(UnityEditor.MaterialEditor,UnityEngine.Material) - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.MainMapOptions(UnityEditor.MaterialEditor, UnityEngine.Material) - nameWithType: MixedRealityStandardShaderGUI.MainMapOptions(MaterialEditor, Material) -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.MainMapOptions* - name: MainMapOptions - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_MainMapOptions_ - commentId: Overload:XRTK.Editor.MixedRealityStandardShaderGUI.MainMapOptions - isSpec: "True" - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.MainMapOptions - nameWithType: MixedRealityStandardShaderGUI.MainMapOptions -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.MaterialChanged(UnityEngine.Material) - name: MaterialChanged(Material) - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_MaterialChanged_UnityEngine_Material_ - commentId: M:XRTK.Editor.MixedRealityStandardShaderGUI.MaterialChanged(UnityEngine.Material) - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.MaterialChanged(UnityEngine.Material) - nameWithType: MixedRealityStandardShaderGUI.MaterialChanged(Material) -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.MaterialChanged* - name: MaterialChanged - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_MaterialChanged_ - commentId: Overload:XRTK.Editor.MixedRealityStandardShaderGUI.MaterialChanged - isSpec: "True" - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.MaterialChanged - nameWithType: MixedRealityStandardShaderGUI.MaterialChanged -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.metallic - name: metallic - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_metallic - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.metallic - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.metallic - nameWithType: MixedRealityStandardShaderGUI.metallic -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.nearLightFade - name: nearLightFade - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_nearLightFade - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.nearLightFade - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.nearLightFade - nameWithType: MixedRealityStandardShaderGUI.nearLightFade -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.nearPlaneFade - name: nearPlaneFade - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_nearPlaneFade - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.nearPlaneFade - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.nearPlaneFade - nameWithType: MixedRealityStandardShaderGUI.nearPlaneFade -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.normalMap - name: normalMap - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_normalMap - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.normalMap - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.normalMap - nameWithType: MixedRealityStandardShaderGUI.normalMap -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.normalMapScale - name: normalMapScale - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_normalMapScale - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.normalMapScale - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.normalMapScale - nameWithType: MixedRealityStandardShaderGUI.normalMapScale -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.OnGUI(UnityEditor.MaterialEditor,UnityEditor.MaterialProperty[]) - name: OnGUI(MaterialEditor, MaterialProperty[]) - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_OnGUI_UnityEditor_MaterialEditor_UnityEditor_MaterialProperty___ - commentId: M:XRTK.Editor.MixedRealityStandardShaderGUI.OnGUI(UnityEditor.MaterialEditor,UnityEditor.MaterialProperty[]) - name.vb: OnGUI(MaterialEditor, MaterialProperty()) - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.OnGUI(UnityEditor.MaterialEditor, UnityEditor.MaterialProperty[]) - fullName.vb: XRTK.Editor.MixedRealityStandardShaderGUI.OnGUI(UnityEditor.MaterialEditor, UnityEditor.MaterialProperty()) - nameWithType: MixedRealityStandardShaderGUI.OnGUI(MaterialEditor, MaterialProperty[]) - nameWithType.vb: MixedRealityStandardShaderGUI.OnGUI(MaterialEditor, MaterialProperty()) -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.OnGUI* - name: OnGUI - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_OnGUI_ - commentId: Overload:XRTK.Editor.MixedRealityStandardShaderGUI.OnGUI - isSpec: "True" - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.OnGUI - nameWithType: MixedRealityStandardShaderGUI.OnGUI -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.PropertyEnabled(UnityEditor.MaterialProperty) - name: PropertyEnabled(MaterialProperty) - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_PropertyEnabled_UnityEditor_MaterialProperty_ - commentId: M:XRTK.Editor.MixedRealityStandardShaderGUI.PropertyEnabled(UnityEditor.MaterialProperty) - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.PropertyEnabled(UnityEditor.MaterialProperty) - nameWithType: MixedRealityStandardShaderGUI.PropertyEnabled(MaterialProperty) -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.PropertyEnabled* - name: PropertyEnabled - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_PropertyEnabled_ - commentId: Overload:XRTK.Editor.MixedRealityStandardShaderGUI.PropertyEnabled - isSpec: "True" - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.PropertyEnabled - nameWithType: MixedRealityStandardShaderGUI.PropertyEnabled -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.proximityLight - name: proximityLight - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_proximityLight - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.proximityLight - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.proximityLight - nameWithType: MixedRealityStandardShaderGUI.proximityLight -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.proximityLightTwoSided - name: proximityLightTwoSided - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_proximityLightTwoSided - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.proximityLightTwoSided - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.proximityLightTwoSided - nameWithType: MixedRealityStandardShaderGUI.proximityLightTwoSided -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.reflections - name: reflections - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_reflections - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.reflections - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.reflections - nameWithType: MixedRealityStandardShaderGUI.reflections -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.refraction - name: refraction - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_refraction - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.refraction - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.refraction - nameWithType: MixedRealityStandardShaderGUI.refraction -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.refractiveIndex - name: refractiveIndex - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_refractiveIndex - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.refractiveIndex - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.refractiveIndex - nameWithType: MixedRealityStandardShaderGUI.refractiveIndex -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.renderingMode - name: renderingMode - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_renderingMode - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.renderingMode - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.renderingMode - nameWithType: MixedRealityStandardShaderGUI.renderingMode -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.RenderingMode - name: MixedRealityStandardShaderGUI.RenderingMode - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.RenderingMode.html - commentId: T:XRTK.Editor.MixedRealityStandardShaderGUI.RenderingMode - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.RenderingMode - nameWithType: MixedRealityStandardShaderGUI.RenderingMode -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.RenderingMode.Additive - name: Additive - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.RenderingMode.html#XRTK_Editor_MixedRealityStandardShaderGUI_RenderingMode_Additive - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.RenderingMode.Additive - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.RenderingMode.Additive - nameWithType: MixedRealityStandardShaderGUI.RenderingMode.Additive -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.RenderingMode.Custom - name: Custom - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.RenderingMode.html#XRTK_Editor_MixedRealityStandardShaderGUI_RenderingMode_Custom - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.RenderingMode.Custom - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.RenderingMode.Custom - nameWithType: MixedRealityStandardShaderGUI.RenderingMode.Custom -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.RenderingMode.Opaque - name: Opaque - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.RenderingMode.html#XRTK_Editor_MixedRealityStandardShaderGUI_RenderingMode_Opaque - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.RenderingMode.Opaque - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.RenderingMode.Opaque - nameWithType: MixedRealityStandardShaderGUI.RenderingMode.Opaque -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.RenderingMode.PremultipliedTransparent - name: PremultipliedTransparent - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.RenderingMode.html#XRTK_Editor_MixedRealityStandardShaderGUI_RenderingMode_PremultipliedTransparent - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.RenderingMode.PremultipliedTransparent - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.RenderingMode.PremultipliedTransparent - nameWithType: MixedRealityStandardShaderGUI.RenderingMode.PremultipliedTransparent -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.RenderingMode.Transparent - name: Transparent - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.RenderingMode.html#XRTK_Editor_MixedRealityStandardShaderGUI_RenderingMode_Transparent - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.RenderingMode.Transparent - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.RenderingMode.Transparent - nameWithType: MixedRealityStandardShaderGUI.RenderingMode.Transparent -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.RenderingMode.TransparentCutout - name: TransparentCutout - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.RenderingMode.html#XRTK_Editor_MixedRealityStandardShaderGUI_RenderingMode_TransparentCutout - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.RenderingMode.TransparentCutout - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.RenderingMode.TransparentCutout - nameWithType: MixedRealityStandardShaderGUI.RenderingMode.TransparentCutout -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.RenderingModeOptions(UnityEditor.MaterialEditor) - name: RenderingModeOptions(MaterialEditor) - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_RenderingModeOptions_UnityEditor_MaterialEditor_ - commentId: M:XRTK.Editor.MixedRealityStandardShaderGUI.RenderingModeOptions(UnityEditor.MaterialEditor) - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.RenderingModeOptions(UnityEditor.MaterialEditor) - nameWithType: MixedRealityStandardShaderGUI.RenderingModeOptions(MaterialEditor) -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.RenderingModeOptions* - name: RenderingModeOptions - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_RenderingModeOptions_ - commentId: Overload:XRTK.Editor.MixedRealityStandardShaderGUI.RenderingModeOptions - isSpec: "True" - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.RenderingModeOptions - nameWithType: MixedRealityStandardShaderGUI.RenderingModeOptions -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.RenderingOptions(UnityEditor.MaterialEditor,UnityEngine.Material) - name: RenderingOptions(MaterialEditor, Material) - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_RenderingOptions_UnityEditor_MaterialEditor_UnityEngine_Material_ - commentId: M:XRTK.Editor.MixedRealityStandardShaderGUI.RenderingOptions(UnityEditor.MaterialEditor,UnityEngine.Material) - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.RenderingOptions(UnityEditor.MaterialEditor, UnityEngine.Material) - nameWithType: MixedRealityStandardShaderGUI.RenderingOptions(MaterialEditor, Material) -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.RenderingOptions* - name: RenderingOptions - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_RenderingOptions_ - commentId: Overload:XRTK.Editor.MixedRealityStandardShaderGUI.RenderingOptions - isSpec: "True" - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.RenderingOptions - nameWithType: MixedRealityStandardShaderGUI.RenderingOptions -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.renderQueueOverride - name: renderQueueOverride - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_renderQueueOverride - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.renderQueueOverride - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.renderQueueOverride - nameWithType: MixedRealityStandardShaderGUI.renderQueueOverride -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.rimColor - name: rimColor - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_rimColor - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.rimColor - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.rimColor - nameWithType: MixedRealityStandardShaderGUI.rimColor -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.rimLight - name: rimLight - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_rimLight - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.rimLight - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.rimLight - nameWithType: MixedRealityStandardShaderGUI.rimLight -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.rimPower - name: rimPower - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_rimPower - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.rimPower - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.rimPower - nameWithType: MixedRealityStandardShaderGUI.rimPower -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.roundCornerMargin - name: roundCornerMargin - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_roundCornerMargin - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.roundCornerMargin - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.roundCornerMargin - nameWithType: MixedRealityStandardShaderGUI.roundCornerMargin -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.roundCornerRadius - name: roundCornerRadius - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_roundCornerRadius - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.roundCornerRadius - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.roundCornerRadius - nameWithType: MixedRealityStandardShaderGUI.roundCornerRadius -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.roundCorners - name: roundCorners - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_roundCorners - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.roundCorners - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.roundCorners - nameWithType: MixedRealityStandardShaderGUI.roundCorners -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.SetColorProperty(UnityEngine.Material,System.String,System.Nullable{UnityEngine.Color}) - name: SetColorProperty(Material, String, Nullable) - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_SetColorProperty_UnityEngine_Material_System_String_System_Nullable_UnityEngine_Color__ - commentId: M:XRTK.Editor.MixedRealityStandardShaderGUI.SetColorProperty(UnityEngine.Material,System.String,System.Nullable{UnityEngine.Color}) - name.vb: SetColorProperty(Material, String, Nullable(Of Color)) - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.SetColorProperty(UnityEngine.Material, System.String, System.Nullable) - fullName.vb: XRTK.Editor.MixedRealityStandardShaderGUI.SetColorProperty(UnityEngine.Material, System.String, System.Nullable(Of UnityEngine.Color)) - nameWithType: MixedRealityStandardShaderGUI.SetColorProperty(Material, String, Nullable) - nameWithType.vb: MixedRealityStandardShaderGUI.SetColorProperty(Material, String, Nullable(Of Color)) -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.SetColorProperty* - name: SetColorProperty - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_SetColorProperty_ - commentId: Overload:XRTK.Editor.MixedRealityStandardShaderGUI.SetColorProperty - isSpec: "True" - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.SetColorProperty - nameWithType: MixedRealityStandardShaderGUI.SetColorProperty -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.SetFloatProperty(UnityEngine.Material,System.String,System.String,System.Nullable{System.Single}) - name: SetFloatProperty(Material, String, String, Nullable) - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_SetFloatProperty_UnityEngine_Material_System_String_System_String_System_Nullable_System_Single__ - commentId: M:XRTK.Editor.MixedRealityStandardShaderGUI.SetFloatProperty(UnityEngine.Material,System.String,System.String,System.Nullable{System.Single}) - name.vb: SetFloatProperty(Material, String, String, Nullable(Of Single)) - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.SetFloatProperty(UnityEngine.Material, System.String, System.String, System.Nullable) - fullName.vb: XRTK.Editor.MixedRealityStandardShaderGUI.SetFloatProperty(UnityEngine.Material, System.String, System.String, System.Nullable(Of System.Single)) - nameWithType: MixedRealityStandardShaderGUI.SetFloatProperty(Material, String, String, Nullable) - nameWithType.vb: MixedRealityStandardShaderGUI.SetFloatProperty(Material, String, String, Nullable(Of Single)) -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.SetFloatProperty* - name: SetFloatProperty - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_SetFloatProperty_ - commentId: Overload:XRTK.Editor.MixedRealityStandardShaderGUI.SetFloatProperty - isSpec: "True" - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.SetFloatProperty - nameWithType: MixedRealityStandardShaderGUI.SetFloatProperty -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.SetupMaterialWithAlbedo(UnityEngine.Material,UnityEditor.MaterialProperty,UnityEditor.MaterialProperty,UnityEditor.MaterialProperty) - name: SetupMaterialWithAlbedo(Material, MaterialProperty, MaterialProperty, MaterialProperty) - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_SetupMaterialWithAlbedo_UnityEngine_Material_UnityEditor_MaterialProperty_UnityEditor_MaterialProperty_UnityEditor_MaterialProperty_ - commentId: M:XRTK.Editor.MixedRealityStandardShaderGUI.SetupMaterialWithAlbedo(UnityEngine.Material,UnityEditor.MaterialProperty,UnityEditor.MaterialProperty,UnityEditor.MaterialProperty) - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.SetupMaterialWithAlbedo(UnityEngine.Material, UnityEditor.MaterialProperty, UnityEditor.MaterialProperty, UnityEditor.MaterialProperty) - nameWithType: MixedRealityStandardShaderGUI.SetupMaterialWithAlbedo(Material, MaterialProperty, MaterialProperty, MaterialProperty) -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.SetupMaterialWithAlbedo* - name: SetupMaterialWithAlbedo - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_SetupMaterialWithAlbedo_ - commentId: Overload:XRTK.Editor.MixedRealityStandardShaderGUI.SetupMaterialWithAlbedo - isSpec: "True" - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.SetupMaterialWithAlbedo - nameWithType: MixedRealityStandardShaderGUI.SetupMaterialWithAlbedo -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.SetupMaterialWithRenderingMode(UnityEngine.Material,XRTK.Editor.MixedRealityStandardShaderGUI.RenderingMode,XRTK.Editor.MixedRealityStandardShaderGUI.CustomRenderingMode,System.Int32) - name: SetupMaterialWithRenderingMode(Material, MixedRealityStandardShaderGUI.RenderingMode, MixedRealityStandardShaderGUI.CustomRenderingMode, Int32) - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_SetupMaterialWithRenderingMode_UnityEngine_Material_XRTK_Editor_MixedRealityStandardShaderGUI_RenderingMode_XRTK_Editor_MixedRealityStandardShaderGUI_CustomRenderingMode_System_Int32_ - commentId: M:XRTK.Editor.MixedRealityStandardShaderGUI.SetupMaterialWithRenderingMode(UnityEngine.Material,XRTK.Editor.MixedRealityStandardShaderGUI.RenderingMode,XRTK.Editor.MixedRealityStandardShaderGUI.CustomRenderingMode,System.Int32) - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.SetupMaterialWithRenderingMode(UnityEngine.Material, XRTK.Editor.MixedRealityStandardShaderGUI.RenderingMode, XRTK.Editor.MixedRealityStandardShaderGUI.CustomRenderingMode, System.Int32) - nameWithType: MixedRealityStandardShaderGUI.SetupMaterialWithRenderingMode(Material, MixedRealityStandardShaderGUI.RenderingMode, MixedRealityStandardShaderGUI.CustomRenderingMode, Int32) -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.SetupMaterialWithRenderingMode* - name: SetupMaterialWithRenderingMode - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_SetupMaterialWithRenderingMode_ - commentId: Overload:XRTK.Editor.MixedRealityStandardShaderGUI.SetupMaterialWithRenderingMode - isSpec: "True" - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.SetupMaterialWithRenderingMode - nameWithType: MixedRealityStandardShaderGUI.SetupMaterialWithRenderingMode -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.SetVectorProperty(UnityEngine.Material,System.String,System.Nullable{UnityEngine.Vector4}) - name: SetVectorProperty(Material, String, Nullable) - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_SetVectorProperty_UnityEngine_Material_System_String_System_Nullable_UnityEngine_Vector4__ - commentId: M:XRTK.Editor.MixedRealityStandardShaderGUI.SetVectorProperty(UnityEngine.Material,System.String,System.Nullable{UnityEngine.Vector4}) - name.vb: SetVectorProperty(Material, String, Nullable(Of Vector4)) - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.SetVectorProperty(UnityEngine.Material, System.String, System.Nullable) - fullName.vb: XRTK.Editor.MixedRealityStandardShaderGUI.SetVectorProperty(UnityEngine.Material, System.String, System.Nullable(Of UnityEngine.Vector4)) - nameWithType: MixedRealityStandardShaderGUI.SetVectorProperty(Material, String, Nullable) - nameWithType.vb: MixedRealityStandardShaderGUI.SetVectorProperty(Material, String, Nullable(Of Vector4)) -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.SetVectorProperty* - name: SetVectorProperty - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_SetVectorProperty_ - commentId: Overload:XRTK.Editor.MixedRealityStandardShaderGUI.SetVectorProperty - isSpec: "True" - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.SetVectorProperty - nameWithType: MixedRealityStandardShaderGUI.SetVectorProperty -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.smoothness - name: smoothness - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_smoothness - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.smoothness - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.smoothness - nameWithType: MixedRealityStandardShaderGUI.smoothness -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.sourceBlend - name: sourceBlend - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_sourceBlend - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.sourceBlend - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.sourceBlend - nameWithType: MixedRealityStandardShaderGUI.sourceBlend -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.specularHighlights - name: specularHighlights - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_specularHighlights - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.specularHighlights - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.specularHighlights - nameWithType: MixedRealityStandardShaderGUI.specularHighlights -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.sphericalHarmonics - name: sphericalHarmonics - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_sphericalHarmonics - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.sphericalHarmonics - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.sphericalHarmonics - nameWithType: MixedRealityStandardShaderGUI.sphericalHarmonics -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.stencil - name: stencil - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_stencil - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.stencil - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.stencil - nameWithType: MixedRealityStandardShaderGUI.stencil -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.stencilComparison - name: stencilComparison - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_stencilComparison - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.stencilComparison - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.stencilComparison - nameWithType: MixedRealityStandardShaderGUI.stencilComparison -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.stencilOperation - name: stencilOperation - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_stencilOperation - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.stencilOperation - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.stencilOperation - nameWithType: MixedRealityStandardShaderGUI.stencilOperation -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.stencilReference - name: stencilReference - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_stencilReference - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.stencilReference - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.stencilReference - nameWithType: MixedRealityStandardShaderGUI.stencilReference -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles - name: MixedRealityStandardShaderGUI.Styles - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html - commentId: T:XRTK.Editor.MixedRealityStandardShaderGUI.Styles - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles - nameWithType: MixedRealityStandardShaderGUI.Styles -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.advancedOptionsTitle - name: advancedOptionsTitle - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_advancedOptionsTitle - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.advancedOptionsTitle - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.advancedOptionsTitle - nameWithType: MixedRealityStandardShaderGUI.Styles.advancedOptionsTitle -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.albedo - name: albedo - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_albedo - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.albedo - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.albedo - nameWithType: MixedRealityStandardShaderGUI.Styles.albedo -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.albedoAlphaModeNames - name: albedoAlphaModeNames - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_albedoAlphaModeNames - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.albedoAlphaModeNames - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.albedoAlphaModeNames - nameWithType: MixedRealityStandardShaderGUI.Styles.albedoAlphaModeNames -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.albedoAssignedAtRuntime - name: albedoAssignedAtRuntime - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_albedoAssignedAtRuntime - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.albedoAssignedAtRuntime - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.albedoAssignedAtRuntime - nameWithType: MixedRealityStandardShaderGUI.Styles.albedoAssignedAtRuntime -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.albedoMapAlphaMetallicName - name: albedoMapAlphaMetallicName - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_albedoMapAlphaMetallicName - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.albedoMapAlphaMetallicName - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.albedoMapAlphaMetallicName - nameWithType: MixedRealityStandardShaderGUI.Styles.albedoMapAlphaMetallicName -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.albedoMapAlphaSmoothnessName - name: albedoMapAlphaSmoothnessName - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_albedoMapAlphaSmoothnessName - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.albedoMapAlphaSmoothnessName - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.albedoMapAlphaSmoothnessName - nameWithType: MixedRealityStandardShaderGUI.Styles.albedoMapAlphaSmoothnessName -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.alphaBlendOnName - name: alphaBlendOnName - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_alphaBlendOnName - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.alphaBlendOnName - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.alphaBlendOnName - nameWithType: MixedRealityStandardShaderGUI.Styles.alphaBlendOnName -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.alphaCutoff - name: alphaCutoff - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_alphaCutoff - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.alphaCutoff - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.alphaCutoff - nameWithType: MixedRealityStandardShaderGUI.Styles.alphaCutoff -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.alphaTestOnName - name: alphaTestOnName - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_alphaTestOnName - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.alphaTestOnName - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.alphaTestOnName - nameWithType: MixedRealityStandardShaderGUI.Styles.alphaTestOnName -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.blendOperation - name: blendOperation - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_blendOperation - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.blendOperation - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.blendOperation - nameWithType: MixedRealityStandardShaderGUI.Styles.blendOperation -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.blendOperationName - name: blendOperationName - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_blendOperationName - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.blendOperationName - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.blendOperationName - nameWithType: MixedRealityStandardShaderGUI.Styles.blendOperationName -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.borderLight - name: borderLight - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_borderLight - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.borderLight - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.borderLight - nameWithType: MixedRealityStandardShaderGUI.Styles.borderLight -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.borderLightOpaque - name: borderLightOpaque - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_borderLightOpaque - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.borderLightOpaque - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.borderLightOpaque - nameWithType: MixedRealityStandardShaderGUI.Styles.borderLightOpaque -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.borderLightOpaqueAlpha - name: borderLightOpaqueAlpha - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_borderLightOpaqueAlpha - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.borderLightOpaqueAlpha - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.borderLightOpaqueAlpha - nameWithType: MixedRealityStandardShaderGUI.Styles.borderLightOpaqueAlpha -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.borderLightReplacesAlbedo - name: borderLightReplacesAlbedo - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_borderLightReplacesAlbedo - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.borderLightReplacesAlbedo - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.borderLightReplacesAlbedo - nameWithType: MixedRealityStandardShaderGUI.Styles.borderLightReplacesAlbedo -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.borderLightUsesHoverColor - name: borderLightUsesHoverColor - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_borderLightUsesHoverColor - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.borderLightUsesHoverColor - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.borderLightUsesHoverColor - nameWithType: MixedRealityStandardShaderGUI.Styles.borderLightUsesHoverColor -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.borderMinValue - name: borderMinValue - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_borderMinValue - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.borderMinValue - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.borderMinValue - nameWithType: MixedRealityStandardShaderGUI.Styles.borderMinValue -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.borderWidth - name: borderWidth - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_borderWidth - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.borderWidth - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.borderWidth - nameWithType: MixedRealityStandardShaderGUI.Styles.borderWidth -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.channelMap - name: channelMap - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_channelMap - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.channelMap - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.channelMap - nameWithType: MixedRealityStandardShaderGUI.Styles.channelMap -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.clippingBorder - name: clippingBorder - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_clippingBorder - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.clippingBorder - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.clippingBorder - nameWithType: MixedRealityStandardShaderGUI.Styles.clippingBorder -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.clippingBorderColor - name: clippingBorderColor - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_clippingBorderColor - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.clippingBorderColor - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.clippingBorderColor - nameWithType: MixedRealityStandardShaderGUI.Styles.clippingBorderColor -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.clippingBorderWidth - name: clippingBorderWidth - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_clippingBorderWidth - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.clippingBorderWidth - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.clippingBorderWidth - nameWithType: MixedRealityStandardShaderGUI.Styles.clippingBorderWidth -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.clippingBox - name: clippingBox - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_clippingBox - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.clippingBox - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.clippingBox - nameWithType: MixedRealityStandardShaderGUI.Styles.clippingBox -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.clippingPlane - name: clippingPlane - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_clippingPlane - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.clippingPlane - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.clippingPlane - nameWithType: MixedRealityStandardShaderGUI.Styles.clippingPlane -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.clippingSphere - name: clippingSphere - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_clippingSphere - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.clippingSphere - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.clippingSphere - nameWithType: MixedRealityStandardShaderGUI.Styles.clippingSphere -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.colorWriteMask - name: colorWriteMask - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_colorWriteMask - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.colorWriteMask - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.colorWriteMask - nameWithType: MixedRealityStandardShaderGUI.Styles.colorWriteMask -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.colorWriteMaskName - name: colorWriteMaskName - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_colorWriteMaskName - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.colorWriteMaskName - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.colorWriteMaskName - nameWithType: MixedRealityStandardShaderGUI.Styles.colorWriteMaskName -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.cullMode - name: cullMode - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_cullMode - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.cullMode - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.cullMode - nameWithType: MixedRealityStandardShaderGUI.Styles.cullMode -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.customRenderingModeName - name: customRenderingModeName - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_customRenderingModeName - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.customRenderingModeName - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.customRenderingModeName - nameWithType: MixedRealityStandardShaderGUI.Styles.customRenderingModeName -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.customRenderingModeNames - name: customRenderingModeNames - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_customRenderingModeNames - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.customRenderingModeNames - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.customRenderingModeNames - nameWithType: MixedRealityStandardShaderGUI.Styles.customRenderingModeNames -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.depthTest - name: depthTest - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_depthTest - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.depthTest - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.depthTest - nameWithType: MixedRealityStandardShaderGUI.Styles.depthTest -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.depthTestName - name: depthTestName - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_depthTestName - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.depthTestName - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.depthTestName - nameWithType: MixedRealityStandardShaderGUI.Styles.depthTestName -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.depthWrite - name: depthWrite - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_depthWrite - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.depthWrite - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.depthWrite - nameWithType: MixedRealityStandardShaderGUI.Styles.depthWrite -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.depthWriteName - name: depthWriteName - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_depthWriteName - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.depthWriteName - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.depthWriteName - nameWithType: MixedRealityStandardShaderGUI.Styles.depthWriteName -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.depthWriteNames - name: depthWriteNames - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_depthWriteNames - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.depthWriteNames - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.depthWriteNames - nameWithType: MixedRealityStandardShaderGUI.Styles.depthWriteNames -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.destinationBlend - name: destinationBlend - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_destinationBlend - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.destinationBlend - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.destinationBlend - nameWithType: MixedRealityStandardShaderGUI.Styles.destinationBlend -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.destinationBlendName - name: destinationBlendName - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_destinationBlendName - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.destinationBlendName - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.destinationBlendName - nameWithType: MixedRealityStandardShaderGUI.Styles.destinationBlendName -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.directionalLight - name: directionalLight - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_directionalLight - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.directionalLight - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.directionalLight - nameWithType: MixedRealityStandardShaderGUI.Styles.directionalLight -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.disableAlbedoMapName - name: disableAlbedoMapName - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_disableAlbedoMapName - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.disableAlbedoMapName - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.disableAlbedoMapName - nameWithType: MixedRealityStandardShaderGUI.Styles.disableAlbedoMapName -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.edgeSmoothingValue - name: edgeSmoothingValue - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_edgeSmoothingValue - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.edgeSmoothingValue - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.edgeSmoothingValue - nameWithType: MixedRealityStandardShaderGUI.Styles.edgeSmoothingValue -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.emissiveColor - name: emissiveColor - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_emissiveColor - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.emissiveColor - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.emissiveColor - nameWithType: MixedRealityStandardShaderGUI.Styles.emissiveColor -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.enableChannelMap - name: enableChannelMap - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_enableChannelMap - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.enableChannelMap - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.enableChannelMap - nameWithType: MixedRealityStandardShaderGUI.Styles.enableChannelMap -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.enableEmission - name: enableEmission - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_enableEmission - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.enableEmission - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.enableEmission - nameWithType: MixedRealityStandardShaderGUI.Styles.enableEmission -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.enableHoverColorOverride - name: enableHoverColorOverride - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_enableHoverColorOverride - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.enableHoverColorOverride - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.enableHoverColorOverride - nameWithType: MixedRealityStandardShaderGUI.Styles.enableHoverColorOverride -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.enableLocalSpaceTriplanarMapping - name: enableLocalSpaceTriplanarMapping - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_enableLocalSpaceTriplanarMapping - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.enableLocalSpaceTriplanarMapping - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.enableLocalSpaceTriplanarMapping - nameWithType: MixedRealityStandardShaderGUI.Styles.enableLocalSpaceTriplanarMapping -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.enableNormalMap - name: enableNormalMap - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_enableNormalMap - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.enableNormalMap - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.enableNormalMap - nameWithType: MixedRealityStandardShaderGUI.Styles.enableNormalMap -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.enableTriplanarMapping - name: enableTriplanarMapping - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_enableTriplanarMapping - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.enableTriplanarMapping - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.enableTriplanarMapping - nameWithType: MixedRealityStandardShaderGUI.Styles.enableTriplanarMapping -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.environmentColoring - name: environmentColoring - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_environmentColoring - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.environmentColoring - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.environmentColoring - nameWithType: MixedRealityStandardShaderGUI.Styles.environmentColoring -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.environmentColorIntensity - name: environmentColorIntensity - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_environmentColorIntensity - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.environmentColorIntensity - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.environmentColorIntensity - nameWithType: MixedRealityStandardShaderGUI.Styles.environmentColorIntensity -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.environmentColorThreshold - name: environmentColorThreshold - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_environmentColorThreshold - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.environmentColorThreshold - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.environmentColorThreshold - nameWithType: MixedRealityStandardShaderGUI.Styles.environmentColorThreshold -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.environmentColorX - name: environmentColorX - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_environmentColorX - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.environmentColorX - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.environmentColorX - nameWithType: MixedRealityStandardShaderGUI.Styles.environmentColorX -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.environmentColorY - name: environmentColorY - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_environmentColorY - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.environmentColorY - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.environmentColorY - nameWithType: MixedRealityStandardShaderGUI.Styles.environmentColorY -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.environmentColorZ - name: environmentColorZ - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_environmentColorZ - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.environmentColorZ - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.environmentColorZ - nameWithType: MixedRealityStandardShaderGUI.Styles.environmentColorZ -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.fadeBeginDistance - name: fadeBeginDistance - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_fadeBeginDistance - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.fadeBeginDistance - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.fadeBeginDistance - nameWithType: MixedRealityStandardShaderGUI.Styles.fadeBeginDistance -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.fadeCompleteDistance - name: fadeCompleteDistance - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_fadeCompleteDistance - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.fadeCompleteDistance - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.fadeCompleteDistance - nameWithType: MixedRealityStandardShaderGUI.Styles.fadeCompleteDistance -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.fluentOptionsTitle - name: fluentOptionsTitle - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_fluentOptionsTitle - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.fluentOptionsTitle - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.fluentOptionsTitle - nameWithType: MixedRealityStandardShaderGUI.Styles.fluentOptionsTitle -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.hoverColorOverride - name: hoverColorOverride - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_hoverColorOverride - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.hoverColorOverride - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.hoverColorOverride - nameWithType: MixedRealityStandardShaderGUI.Styles.hoverColorOverride -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.hoverLight - name: hoverLight - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_hoverLight - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.hoverLight - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.hoverLight - nameWithType: MixedRealityStandardShaderGUI.Styles.hoverLight -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.innerGlow - name: innerGlow - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_innerGlow - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.innerGlow - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.innerGlow - nameWithType: MixedRealityStandardShaderGUI.Styles.innerGlow -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.innerGlowColor - name: innerGlowColor - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_innerGlowColor - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.innerGlowColor - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.innerGlowColor - nameWithType: MixedRealityStandardShaderGUI.Styles.innerGlowColor -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.innerGlowPower - name: innerGlowPower - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_innerGlowPower - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.innerGlowPower - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.innerGlowPower - nameWithType: MixedRealityStandardShaderGUI.Styles.innerGlowPower -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.instancedColor - name: instancedColor - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_instancedColor - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.instancedColor - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.instancedColor - nameWithType: MixedRealityStandardShaderGUI.Styles.instancedColor -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.instancedColorFeatureName - name: instancedColorFeatureName - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_instancedColorFeatureName - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.instancedColorFeatureName - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.instancedColorFeatureName - nameWithType: MixedRealityStandardShaderGUI.Styles.instancedColorFeatureName -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.instancedColorName - name: instancedColorName - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_instancedColorName - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.instancedColorName - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.instancedColorName - nameWithType: MixedRealityStandardShaderGUI.Styles.instancedColorName -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.iridescence - name: iridescence - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_iridescence - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.iridescence - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.iridescence - nameWithType: MixedRealityStandardShaderGUI.Styles.iridescence -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.iridescenceAngle - name: iridescenceAngle - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_iridescenceAngle - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.iridescenceAngle - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.iridescenceAngle - nameWithType: MixedRealityStandardShaderGUI.Styles.iridescenceAngle -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.iridescenceIntensity - name: iridescenceIntensity - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_iridescenceIntensity - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.iridescenceIntensity - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.iridescenceIntensity - nameWithType: MixedRealityStandardShaderGUI.Styles.iridescenceIntensity -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.iridescenceThreshold - name: iridescenceThreshold - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_iridescenceThreshold - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.iridescenceThreshold - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.iridescenceThreshold - nameWithType: MixedRealityStandardShaderGUI.Styles.iridescenceThreshold -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.iridescentSpectrumMap - name: iridescentSpectrumMap - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_iridescentSpectrumMap - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.iridescentSpectrumMap - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.iridescentSpectrumMap - nameWithType: MixedRealityStandardShaderGUI.Styles.iridescentSpectrumMap -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.metallic - name: metallic - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_metallic - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.metallic - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.metallic - nameWithType: MixedRealityStandardShaderGUI.Styles.metallic -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.nearLightFade - name: nearLightFade - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_nearLightFade - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.nearLightFade - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.nearLightFade - nameWithType: MixedRealityStandardShaderGUI.Styles.nearLightFade -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.nearPlaneFade - name: nearPlaneFade - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_nearPlaneFade - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.nearPlaneFade - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.nearPlaneFade - nameWithType: MixedRealityStandardShaderGUI.Styles.nearPlaneFade -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.normalMap - name: normalMap - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_normalMap - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.normalMap - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.normalMap - nameWithType: MixedRealityStandardShaderGUI.Styles.normalMap -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.normalMapScale - name: normalMapScale - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_normalMapScale - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.normalMapScale - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.normalMapScale - nameWithType: MixedRealityStandardShaderGUI.Styles.normalMapScale -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.primaryMapsTitle - name: primaryMapsTitle - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_primaryMapsTitle - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.primaryMapsTitle - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.primaryMapsTitle - nameWithType: MixedRealityStandardShaderGUI.Styles.primaryMapsTitle -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.propertiesComponentHelp - name: propertiesComponentHelp - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_propertiesComponentHelp - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.propertiesComponentHelp - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.propertiesComponentHelp - nameWithType: MixedRealityStandardShaderGUI.Styles.propertiesComponentHelp -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.proximityLight - name: proximityLight - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_proximityLight - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.proximityLight - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.proximityLight - nameWithType: MixedRealityStandardShaderGUI.Styles.proximityLight -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.proximityLightTwoSided - name: proximityLightTwoSided - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_proximityLightTwoSided - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.proximityLightTwoSided - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.proximityLightTwoSided - nameWithType: MixedRealityStandardShaderGUI.Styles.proximityLightTwoSided -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.reflections - name: reflections - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_reflections - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.reflections - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.reflections - nameWithType: MixedRealityStandardShaderGUI.Styles.reflections -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.refraction - name: refraction - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_refraction - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.refraction - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.refraction - nameWithType: MixedRealityStandardShaderGUI.Styles.refraction -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.refractiveIndex - name: refractiveIndex - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_refractiveIndex - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.refractiveIndex - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.refractiveIndex - nameWithType: MixedRealityStandardShaderGUI.Styles.refractiveIndex -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.renderingModeName - name: renderingModeName - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_renderingModeName - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.renderingModeName - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.renderingModeName - nameWithType: MixedRealityStandardShaderGUI.Styles.renderingModeName -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.renderingModeNames - name: renderingModeNames - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_renderingModeNames - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.renderingModeNames - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.renderingModeNames - nameWithType: MixedRealityStandardShaderGUI.Styles.renderingModeNames -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.renderingOptionsTitle - name: renderingOptionsTitle - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_renderingOptionsTitle - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.renderingOptionsTitle - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.renderingOptionsTitle - nameWithType: MixedRealityStandardShaderGUI.Styles.renderingOptionsTitle -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.renderQueueOverride - name: renderQueueOverride - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_renderQueueOverride - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.renderQueueOverride - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.renderQueueOverride - nameWithType: MixedRealityStandardShaderGUI.Styles.renderQueueOverride -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.renderTypeName - name: renderTypeName - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_renderTypeName - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.renderTypeName - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.renderTypeName - nameWithType: MixedRealityStandardShaderGUI.Styles.renderTypeName -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.rimColor - name: rimColor - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_rimColor - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.rimColor - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.rimColor - nameWithType: MixedRealityStandardShaderGUI.Styles.rimColor -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.rimLight - name: rimLight - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_rimLight - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.rimLight - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.rimLight - nameWithType: MixedRealityStandardShaderGUI.Styles.rimLight -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.rimPower - name: rimPower - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_rimPower - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.rimPower - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.rimPower - nameWithType: MixedRealityStandardShaderGUI.Styles.rimPower -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.roundCornerMargin - name: roundCornerMargin - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_roundCornerMargin - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.roundCornerMargin - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.roundCornerMargin - nameWithType: MixedRealityStandardShaderGUI.Styles.roundCornerMargin -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.roundCornerRadius - name: roundCornerRadius - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_roundCornerRadius - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.roundCornerRadius - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.roundCornerRadius - nameWithType: MixedRealityStandardShaderGUI.Styles.roundCornerRadius -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.roundCorners - name: roundCorners - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_roundCorners - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.roundCorners - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.roundCorners - nameWithType: MixedRealityStandardShaderGUI.Styles.roundCorners -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.smoothness - name: smoothness - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_smoothness - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.smoothness - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.smoothness - nameWithType: MixedRealityStandardShaderGUI.Styles.smoothness -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.sourceBlend - name: sourceBlend - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_sourceBlend - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.sourceBlend - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.sourceBlend - nameWithType: MixedRealityStandardShaderGUI.Styles.sourceBlend -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.sourceBlendName - name: sourceBlendName - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_sourceBlendName - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.sourceBlendName - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.sourceBlendName - nameWithType: MixedRealityStandardShaderGUI.Styles.sourceBlendName -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.specularHighlights - name: specularHighlights - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_specularHighlights - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.specularHighlights - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.specularHighlights - nameWithType: MixedRealityStandardShaderGUI.Styles.specularHighlights -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.sphericalHarmonics - name: sphericalHarmonics - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_sphericalHarmonics - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.sphericalHarmonics - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.sphericalHarmonics - nameWithType: MixedRealityStandardShaderGUI.Styles.sphericalHarmonics -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.stencil - name: stencil - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_stencil - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.stencil - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.stencil - nameWithType: MixedRealityStandardShaderGUI.Styles.stencil -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.stencilComparison - name: stencilComparison - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_stencilComparison - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.stencilComparison - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.stencilComparison - nameWithType: MixedRealityStandardShaderGUI.Styles.stencilComparison -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.stencilComparisonName - name: stencilComparisonName - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_stencilComparisonName - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.stencilComparisonName - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.stencilComparisonName - nameWithType: MixedRealityStandardShaderGUI.Styles.stencilComparisonName -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.stencilOperation - name: stencilOperation - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_stencilOperation - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.stencilOperation - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.stencilOperation - nameWithType: MixedRealityStandardShaderGUI.Styles.stencilOperation -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.stencilOperationName - name: stencilOperationName - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_stencilOperationName - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.stencilOperationName - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.stencilOperationName - nameWithType: MixedRealityStandardShaderGUI.Styles.stencilOperationName -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.stencilReference - name: stencilReference - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_stencilReference - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.stencilReference - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.stencilReference - nameWithType: MixedRealityStandardShaderGUI.Styles.stencilReference -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.triplanarMappingBlendSharpness - name: triplanarMappingBlendSharpness - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_triplanarMappingBlendSharpness - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.triplanarMappingBlendSharpness - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.triplanarMappingBlendSharpness - nameWithType: MixedRealityStandardShaderGUI.Styles.triplanarMappingBlendSharpness -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.vertexColors - name: vertexColors - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.Styles.html#XRTK_Editor_MixedRealityStandardShaderGUI_Styles_vertexColors - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.Styles.vertexColors - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.Styles.vertexColors - nameWithType: MixedRealityStandardShaderGUI.Styles.vertexColors -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.triplanarMappingBlendSharpness - name: triplanarMappingBlendSharpness - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_triplanarMappingBlendSharpness - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.triplanarMappingBlendSharpness - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.triplanarMappingBlendSharpness - nameWithType: MixedRealityStandardShaderGUI.triplanarMappingBlendSharpness -- uid: XRTK.Editor.MixedRealityStandardShaderGUI.vertexColors - name: vertexColors - href: api/XRTK.Editor.MixedRealityStandardShaderGUI.html#XRTK_Editor_MixedRealityStandardShaderGUI_vertexColors - commentId: F:XRTK.Editor.MixedRealityStandardShaderGUI.vertexColors - fullName: XRTK.Editor.MixedRealityStandardShaderGUI.vertexColors - nameWithType: MixedRealityStandardShaderGUI.vertexColors -- uid: XRTK.Editor.MixedRealityToolkitInspector - name: MixedRealityToolkitInspector - href: api/XRTK.Editor.MixedRealityToolkitInspector.html - commentId: T:XRTK.Editor.MixedRealityToolkitInspector - fullName: XRTK.Editor.MixedRealityToolkitInspector - nameWithType: MixedRealityToolkitInspector -- uid: XRTK.Editor.MixedRealityToolkitInspector.CreateMixedRealityToolkitGameObject - name: CreateMixedRealityToolkitGameObject() - href: api/XRTK.Editor.MixedRealityToolkitInspector.html#XRTK_Editor_MixedRealityToolkitInspector_CreateMixedRealityToolkitGameObject - commentId: M:XRTK.Editor.MixedRealityToolkitInspector.CreateMixedRealityToolkitGameObject - fullName: XRTK.Editor.MixedRealityToolkitInspector.CreateMixedRealityToolkitGameObject() - nameWithType: MixedRealityToolkitInspector.CreateMixedRealityToolkitGameObject() -- uid: XRTK.Editor.MixedRealityToolkitInspector.CreateMixedRealityToolkitGameObject* - name: CreateMixedRealityToolkitGameObject - href: api/XRTK.Editor.MixedRealityToolkitInspector.html#XRTK_Editor_MixedRealityToolkitInspector_CreateMixedRealityToolkitGameObject_ - commentId: Overload:XRTK.Editor.MixedRealityToolkitInspector.CreateMixedRealityToolkitGameObject - isSpec: "True" - fullName: XRTK.Editor.MixedRealityToolkitInspector.CreateMixedRealityToolkitGameObject - nameWithType: MixedRealityToolkitInspector.CreateMixedRealityToolkitGameObject -- uid: XRTK.Editor.MixedRealityToolkitInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.Editor.MixedRealityToolkitInspector.html#XRTK_Editor_MixedRealityToolkitInspector_OnInspectorGUI - commentId: M:XRTK.Editor.MixedRealityToolkitInspector.OnInspectorGUI - fullName: XRTK.Editor.MixedRealityToolkitInspector.OnInspectorGUI() - nameWithType: MixedRealityToolkitInspector.OnInspectorGUI() -- uid: XRTK.Editor.MixedRealityToolkitInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.Editor.MixedRealityToolkitInspector.html#XRTK_Editor_MixedRealityToolkitInspector_OnInspectorGUI_ - commentId: Overload:XRTK.Editor.MixedRealityToolkitInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.Editor.MixedRealityToolkitInspector.OnInspectorGUI - nameWithType: MixedRealityToolkitInspector.OnInspectorGUI -- uid: XRTK.Editor.PackageInstaller - name: PackageInstaller - href: api/XRTK.Editor.PackageInstaller.html - commentId: T:XRTK.Editor.PackageInstaller - fullName: XRTK.Editor.PackageInstaller - nameWithType: PackageInstaller -- uid: XRTK.Editor.PackageInstaller.InstallConfiguration(XRTK.Definitions.MixedRealityPlatformServiceConfigurationProfile,XRTK.Definitions.MixedRealityToolkitRootProfile) - name: InstallConfiguration(MixedRealityPlatformServiceConfigurationProfile, MixedRealityToolkitRootProfile) - href: api/XRTK.Editor.PackageInstaller.html#XRTK_Editor_PackageInstaller_InstallConfiguration_XRTK_Definitions_MixedRealityPlatformServiceConfigurationProfile_XRTK_Definitions_MixedRealityToolkitRootProfile_ - commentId: M:XRTK.Editor.PackageInstaller.InstallConfiguration(XRTK.Definitions.MixedRealityPlatformServiceConfigurationProfile,XRTK.Definitions.MixedRealityToolkitRootProfile) - fullName: XRTK.Editor.PackageInstaller.InstallConfiguration(XRTK.Definitions.MixedRealityPlatformServiceConfigurationProfile, XRTK.Definitions.MixedRealityToolkitRootProfile) - nameWithType: PackageInstaller.InstallConfiguration(MixedRealityPlatformServiceConfigurationProfile, MixedRealityToolkitRootProfile) -- uid: XRTK.Editor.PackageInstaller.InstallConfiguration* - name: InstallConfiguration - href: api/XRTK.Editor.PackageInstaller.html#XRTK_Editor_PackageInstaller_InstallConfiguration_ - commentId: Overload:XRTK.Editor.PackageInstaller.InstallConfiguration - isSpec: "True" - fullName: XRTK.Editor.PackageInstaller.InstallConfiguration - nameWithType: PackageInstaller.InstallConfiguration -- uid: XRTK.Editor.PackageInstaller.TryInstallAssets(System.Collections.Generic.Dictionary{System.String,System.String},System.Boolean) - name: TryInstallAssets(Dictionary, Boolean) - href: api/XRTK.Editor.PackageInstaller.html#XRTK_Editor_PackageInstaller_TryInstallAssets_System_Collections_Generic_Dictionary_System_String_System_String__System_Boolean_ - commentId: M:XRTK.Editor.PackageInstaller.TryInstallAssets(System.Collections.Generic.Dictionary{System.String,System.String},System.Boolean) - name.vb: TryInstallAssets(Dictionary(Of String, String), Boolean) - fullName: XRTK.Editor.PackageInstaller.TryInstallAssets(System.Collections.Generic.Dictionary, System.Boolean) - fullName.vb: XRTK.Editor.PackageInstaller.TryInstallAssets(System.Collections.Generic.Dictionary(Of System.String, System.String), System.Boolean) - nameWithType: PackageInstaller.TryInstallAssets(Dictionary, Boolean) - nameWithType.vb: PackageInstaller.TryInstallAssets(Dictionary(Of String, String), Boolean) -- uid: XRTK.Editor.PackageInstaller.TryInstallAssets(System.String,System.String,System.Boolean) - name: TryInstallAssets(String, String, Boolean) - href: api/XRTK.Editor.PackageInstaller.html#XRTK_Editor_PackageInstaller_TryInstallAssets_System_String_System_String_System_Boolean_ - commentId: M:XRTK.Editor.PackageInstaller.TryInstallAssets(System.String,System.String,System.Boolean) - fullName: XRTK.Editor.PackageInstaller.TryInstallAssets(System.String, System.String, System.Boolean) - nameWithType: PackageInstaller.TryInstallAssets(String, String, Boolean) -- uid: XRTK.Editor.PackageInstaller.TryInstallAssets* - name: TryInstallAssets - href: api/XRTK.Editor.PackageInstaller.html#XRTK_Editor_PackageInstaller_TryInstallAssets_ - commentId: Overload:XRTK.Editor.PackageInstaller.TryInstallAssets - isSpec: "True" - fullName: XRTK.Editor.PackageInstaller.TryInstallAssets - nameWithType: PackageInstaller.TryInstallAssets -- uid: XRTK.Editor.Profiles - name: XRTK.Editor.Profiles - href: api/XRTK.Editor.Profiles.html - commentId: N:XRTK.Editor.Profiles - fullName: XRTK.Editor.Profiles - nameWithType: XRTK.Editor.Profiles -- uid: XRTK.Editor.Profiles.BaseMixedRealityProfileInspector - name: BaseMixedRealityProfileInspector - href: api/XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.html - commentId: T:XRTK.Editor.Profiles.BaseMixedRealityProfileInspector - fullName: XRTK.Editor.Profiles.BaseMixedRealityProfileInspector - nameWithType: BaseMixedRealityProfileInspector -- uid: XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.CreateCloneProfile - name: CreateCloneProfile() - href: api/XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.html#XRTK_Editor_Profiles_BaseMixedRealityProfileInspector_CreateCloneProfile - commentId: M:XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.CreateCloneProfile - fullName: XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.CreateCloneProfile() - nameWithType: BaseMixedRealityProfileInspector.CreateCloneProfile() -- uid: XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.CreateCloneProfile* - name: CreateCloneProfile - href: api/XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.html#XRTK_Editor_Profiles_BaseMixedRealityProfileInspector_CreateCloneProfile_ - commentId: Overload:XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.CreateCloneProfile - isSpec: "True" - fullName: XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.CreateCloneProfile - nameWithType: BaseMixedRealityProfileInspector.CreateCloneProfile -- uid: XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.DefaultGuidString - name: DefaultGuidString - href: api/XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.html#XRTK_Editor_Profiles_BaseMixedRealityProfileInspector_DefaultGuidString - commentId: F:XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.DefaultGuidString - fullName: XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.DefaultGuidString - nameWithType: BaseMixedRealityProfileInspector.DefaultGuidString -- uid: XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.OnEnable - name: OnEnable() - href: api/XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.html#XRTK_Editor_Profiles_BaseMixedRealityProfileInspector_OnEnable - commentId: M:XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.OnEnable - fullName: XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.OnEnable() - nameWithType: BaseMixedRealityProfileInspector.OnEnable() -- uid: XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.OnEnable* - name: OnEnable - href: api/XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.html#XRTK_Editor_Profiles_BaseMixedRealityProfileInspector_OnEnable_ - commentId: Overload:XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.OnEnable - isSpec: "True" - fullName: XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.OnEnable - nameWithType: BaseMixedRealityProfileInspector.OnEnable -- uid: XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.html#XRTK_Editor_Profiles_BaseMixedRealityProfileInspector_OnInspectorGUI - commentId: M:XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.OnInspectorGUI - fullName: XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.OnInspectorGUI() - nameWithType: BaseMixedRealityProfileInspector.OnInspectorGUI() -- uid: XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.html#XRTK_Editor_Profiles_BaseMixedRealityProfileInspector_OnInspectorGUI_ - commentId: Overload:XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.OnInspectorGUI - nameWithType: BaseMixedRealityProfileInspector.OnInspectorGUI -- uid: XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.RenderHeader(System.String,UnityEngine.Texture2D) - name: RenderHeader(String, Texture2D) - href: api/XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.html#XRTK_Editor_Profiles_BaseMixedRealityProfileInspector_RenderHeader_System_String_UnityEngine_Texture2D_ - commentId: M:XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.RenderHeader(System.String,UnityEngine.Texture2D) - fullName: XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.RenderHeader(System.String, UnityEngine.Texture2D) - nameWithType: BaseMixedRealityProfileInspector.RenderHeader(String, Texture2D) -- uid: XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.RenderHeader* - name: RenderHeader - href: api/XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.html#XRTK_Editor_Profiles_BaseMixedRealityProfileInspector_RenderHeader_ - commentId: Overload:XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.RenderHeader - isSpec: "True" - fullName: XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.RenderHeader - nameWithType: BaseMixedRealityProfileInspector.RenderHeader -- uid: XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.ThisProfile - name: ThisProfile - href: api/XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.html#XRTK_Editor_Profiles_BaseMixedRealityProfileInspector_ThisProfile - commentId: P:XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.ThisProfile - fullName: XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.ThisProfile - nameWithType: BaseMixedRealityProfileInspector.ThisProfile -- uid: XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.ThisProfile* - name: ThisProfile - href: api/XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.html#XRTK_Editor_Profiles_BaseMixedRealityProfileInspector_ThisProfile_ - commentId: Overload:XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.ThisProfile - isSpec: "True" - fullName: XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.ThisProfile - nameWithType: BaseMixedRealityProfileInspector.ThisProfile -- uid: XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.ThisProfileGuidString - name: ThisProfileGuidString - href: api/XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.html#XRTK_Editor_Profiles_BaseMixedRealityProfileInspector_ThisProfileGuidString - commentId: P:XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.ThisProfileGuidString - fullName: XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.ThisProfileGuidString - nameWithType: BaseMixedRealityProfileInspector.ThisProfileGuidString -- uid: XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.ThisProfileGuidString* - name: ThisProfileGuidString - href: api/XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.html#XRTK_Editor_Profiles_BaseMixedRealityProfileInspector_ThisProfileGuidString_ - commentId: Overload:XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.ThisProfileGuidString - isSpec: "True" - fullName: XRTK.Editor.Profiles.BaseMixedRealityProfileInspector.ThisProfileGuidString - nameWithType: BaseMixedRealityProfileInspector.ThisProfileGuidString -- uid: XRTK.Editor.Profiles.CameraSystem - name: XRTK.Editor.Profiles.CameraSystem - href: api/XRTK.Editor.Profiles.CameraSystem.html - commentId: N:XRTK.Editor.Profiles.CameraSystem - fullName: XRTK.Editor.Profiles.CameraSystem - nameWithType: XRTK.Editor.Profiles.CameraSystem -- uid: XRTK.Editor.Profiles.CameraSystem.BaseMixedRealityCameraDataProviderProfileInspector - name: BaseMixedRealityCameraDataProviderProfileInspector - href: api/XRTK.Editor.Profiles.CameraSystem.BaseMixedRealityCameraDataProviderProfileInspector.html - commentId: T:XRTK.Editor.Profiles.CameraSystem.BaseMixedRealityCameraDataProviderProfileInspector - fullName: XRTK.Editor.Profiles.CameraSystem.BaseMixedRealityCameraDataProviderProfileInspector - nameWithType: BaseMixedRealityCameraDataProviderProfileInspector -- uid: XRTK.Editor.Profiles.CameraSystem.BaseMixedRealityCameraDataProviderProfileInspector.OnEnable - name: OnEnable() - href: api/XRTK.Editor.Profiles.CameraSystem.BaseMixedRealityCameraDataProviderProfileInspector.html#XRTK_Editor_Profiles_CameraSystem_BaseMixedRealityCameraDataProviderProfileInspector_OnEnable - commentId: M:XRTK.Editor.Profiles.CameraSystem.BaseMixedRealityCameraDataProviderProfileInspector.OnEnable - fullName: XRTK.Editor.Profiles.CameraSystem.BaseMixedRealityCameraDataProviderProfileInspector.OnEnable() - nameWithType: BaseMixedRealityCameraDataProviderProfileInspector.OnEnable() -- uid: XRTK.Editor.Profiles.CameraSystem.BaseMixedRealityCameraDataProviderProfileInspector.OnEnable* - name: OnEnable - href: api/XRTK.Editor.Profiles.CameraSystem.BaseMixedRealityCameraDataProviderProfileInspector.html#XRTK_Editor_Profiles_CameraSystem_BaseMixedRealityCameraDataProviderProfileInspector_OnEnable_ - commentId: Overload:XRTK.Editor.Profiles.CameraSystem.BaseMixedRealityCameraDataProviderProfileInspector.OnEnable - isSpec: "True" - fullName: XRTK.Editor.Profiles.CameraSystem.BaseMixedRealityCameraDataProviderProfileInspector.OnEnable - nameWithType: BaseMixedRealityCameraDataProviderProfileInspector.OnEnable -- uid: XRTK.Editor.Profiles.CameraSystem.BaseMixedRealityCameraDataProviderProfileInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.Editor.Profiles.CameraSystem.BaseMixedRealityCameraDataProviderProfileInspector.html#XRTK_Editor_Profiles_CameraSystem_BaseMixedRealityCameraDataProviderProfileInspector_OnInspectorGUI - commentId: M:XRTK.Editor.Profiles.CameraSystem.BaseMixedRealityCameraDataProviderProfileInspector.OnInspectorGUI - fullName: XRTK.Editor.Profiles.CameraSystem.BaseMixedRealityCameraDataProviderProfileInspector.OnInspectorGUI() - nameWithType: BaseMixedRealityCameraDataProviderProfileInspector.OnInspectorGUI() -- uid: XRTK.Editor.Profiles.CameraSystem.BaseMixedRealityCameraDataProviderProfileInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.Editor.Profiles.CameraSystem.BaseMixedRealityCameraDataProviderProfileInspector.html#XRTK_Editor_Profiles_CameraSystem_BaseMixedRealityCameraDataProviderProfileInspector_OnInspectorGUI_ - commentId: Overload:XRTK.Editor.Profiles.CameraSystem.BaseMixedRealityCameraDataProviderProfileInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.Editor.Profiles.CameraSystem.BaseMixedRealityCameraDataProviderProfileInspector.OnInspectorGUI - nameWithType: BaseMixedRealityCameraDataProviderProfileInspector.OnInspectorGUI -- uid: XRTK.Editor.Profiles.CameraSystem.MixedRealityCameraSystemProfileInspector - name: MixedRealityCameraSystemProfileInspector - href: api/XRTK.Editor.Profiles.CameraSystem.MixedRealityCameraSystemProfileInspector.html - commentId: T:XRTK.Editor.Profiles.CameraSystem.MixedRealityCameraSystemProfileInspector - fullName: XRTK.Editor.Profiles.CameraSystem.MixedRealityCameraSystemProfileInspector - nameWithType: MixedRealityCameraSystemProfileInspector -- uid: XRTK.Editor.Profiles.CameraSystem.MixedRealityCameraSystemProfileInspector.OnEnable - name: OnEnable() - href: api/XRTK.Editor.Profiles.CameraSystem.MixedRealityCameraSystemProfileInspector.html#XRTK_Editor_Profiles_CameraSystem_MixedRealityCameraSystemProfileInspector_OnEnable - commentId: M:XRTK.Editor.Profiles.CameraSystem.MixedRealityCameraSystemProfileInspector.OnEnable - fullName: XRTK.Editor.Profiles.CameraSystem.MixedRealityCameraSystemProfileInspector.OnEnable() - nameWithType: MixedRealityCameraSystemProfileInspector.OnEnable() -- uid: XRTK.Editor.Profiles.CameraSystem.MixedRealityCameraSystemProfileInspector.OnEnable* - name: OnEnable - href: api/XRTK.Editor.Profiles.CameraSystem.MixedRealityCameraSystemProfileInspector.html#XRTK_Editor_Profiles_CameraSystem_MixedRealityCameraSystemProfileInspector_OnEnable_ - commentId: Overload:XRTK.Editor.Profiles.CameraSystem.MixedRealityCameraSystemProfileInspector.OnEnable - isSpec: "True" - fullName: XRTK.Editor.Profiles.CameraSystem.MixedRealityCameraSystemProfileInspector.OnEnable - nameWithType: MixedRealityCameraSystemProfileInspector.OnEnable -- uid: XRTK.Editor.Profiles.CameraSystem.MixedRealityCameraSystemProfileInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.Editor.Profiles.CameraSystem.MixedRealityCameraSystemProfileInspector.html#XRTK_Editor_Profiles_CameraSystem_MixedRealityCameraSystemProfileInspector_OnInspectorGUI - commentId: M:XRTK.Editor.Profiles.CameraSystem.MixedRealityCameraSystemProfileInspector.OnInspectorGUI - fullName: XRTK.Editor.Profiles.CameraSystem.MixedRealityCameraSystemProfileInspector.OnInspectorGUI() - nameWithType: MixedRealityCameraSystemProfileInspector.OnInspectorGUI() -- uid: XRTK.Editor.Profiles.CameraSystem.MixedRealityCameraSystemProfileInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.Editor.Profiles.CameraSystem.MixedRealityCameraSystemProfileInspector.html#XRTK_Editor_Profiles_CameraSystem_MixedRealityCameraSystemProfileInspector_OnInspectorGUI_ - commentId: Overload:XRTK.Editor.Profiles.CameraSystem.MixedRealityCameraSystemProfileInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.Editor.Profiles.CameraSystem.MixedRealityCameraSystemProfileInspector.OnInspectorGUI - nameWithType: MixedRealityCameraSystemProfileInspector.OnInspectorGUI -- uid: XRTK.Editor.Profiles.DiagnosticsSystem - name: XRTK.Editor.Profiles.DiagnosticsSystem - href: api/XRTK.Editor.Profiles.DiagnosticsSystem.html - commentId: N:XRTK.Editor.Profiles.DiagnosticsSystem - fullName: XRTK.Editor.Profiles.DiagnosticsSystem - nameWithType: XRTK.Editor.Profiles.DiagnosticsSystem -- uid: XRTK.Editor.Profiles.DiagnosticsSystem.MixedRealityDiagnosticsSystemProfileInspector - name: MixedRealityDiagnosticsSystemProfileInspector - href: api/XRTK.Editor.Profiles.DiagnosticsSystem.MixedRealityDiagnosticsSystemProfileInspector.html - commentId: T:XRTK.Editor.Profiles.DiagnosticsSystem.MixedRealityDiagnosticsSystemProfileInspector - fullName: XRTK.Editor.Profiles.DiagnosticsSystem.MixedRealityDiagnosticsSystemProfileInspector - nameWithType: MixedRealityDiagnosticsSystemProfileInspector -- uid: XRTK.Editor.Profiles.DiagnosticsSystem.MixedRealityDiagnosticsSystemProfileInspector.OnEnable - name: OnEnable() - href: api/XRTK.Editor.Profiles.DiagnosticsSystem.MixedRealityDiagnosticsSystemProfileInspector.html#XRTK_Editor_Profiles_DiagnosticsSystem_MixedRealityDiagnosticsSystemProfileInspector_OnEnable - commentId: M:XRTK.Editor.Profiles.DiagnosticsSystem.MixedRealityDiagnosticsSystemProfileInspector.OnEnable - fullName: XRTK.Editor.Profiles.DiagnosticsSystem.MixedRealityDiagnosticsSystemProfileInspector.OnEnable() - nameWithType: MixedRealityDiagnosticsSystemProfileInspector.OnEnable() -- uid: XRTK.Editor.Profiles.DiagnosticsSystem.MixedRealityDiagnosticsSystemProfileInspector.OnEnable* - name: OnEnable - href: api/XRTK.Editor.Profiles.DiagnosticsSystem.MixedRealityDiagnosticsSystemProfileInspector.html#XRTK_Editor_Profiles_DiagnosticsSystem_MixedRealityDiagnosticsSystemProfileInspector_OnEnable_ - commentId: Overload:XRTK.Editor.Profiles.DiagnosticsSystem.MixedRealityDiagnosticsSystemProfileInspector.OnEnable - isSpec: "True" - fullName: XRTK.Editor.Profiles.DiagnosticsSystem.MixedRealityDiagnosticsSystemProfileInspector.OnEnable - nameWithType: MixedRealityDiagnosticsSystemProfileInspector.OnEnable -- uid: XRTK.Editor.Profiles.DiagnosticsSystem.MixedRealityDiagnosticsSystemProfileInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.Editor.Profiles.DiagnosticsSystem.MixedRealityDiagnosticsSystemProfileInspector.html#XRTK_Editor_Profiles_DiagnosticsSystem_MixedRealityDiagnosticsSystemProfileInspector_OnInspectorGUI - commentId: M:XRTK.Editor.Profiles.DiagnosticsSystem.MixedRealityDiagnosticsSystemProfileInspector.OnInspectorGUI - fullName: XRTK.Editor.Profiles.DiagnosticsSystem.MixedRealityDiagnosticsSystemProfileInspector.OnInspectorGUI() - nameWithType: MixedRealityDiagnosticsSystemProfileInspector.OnInspectorGUI() -- uid: XRTK.Editor.Profiles.DiagnosticsSystem.MixedRealityDiagnosticsSystemProfileInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.Editor.Profiles.DiagnosticsSystem.MixedRealityDiagnosticsSystemProfileInspector.html#XRTK_Editor_Profiles_DiagnosticsSystem_MixedRealityDiagnosticsSystemProfileInspector_OnInspectorGUI_ - commentId: Overload:XRTK.Editor.Profiles.DiagnosticsSystem.MixedRealityDiagnosticsSystemProfileInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.Editor.Profiles.DiagnosticsSystem.MixedRealityDiagnosticsSystemProfileInspector.OnInspectorGUI - nameWithType: MixedRealityDiagnosticsSystemProfileInspector.OnInspectorGUI -- uid: XRTK.Editor.Profiles.InputSystem - name: XRTK.Editor.Profiles.InputSystem - href: api/XRTK.Editor.Profiles.InputSystem.html - commentId: N:XRTK.Editor.Profiles.InputSystem - fullName: XRTK.Editor.Profiles.InputSystem - nameWithType: XRTK.Editor.Profiles.InputSystem -- uid: XRTK.Editor.Profiles.InputSystem.Controllers - name: XRTK.Editor.Profiles.InputSystem.Controllers - href: api/XRTK.Editor.Profiles.InputSystem.Controllers.html - commentId: N:XRTK.Editor.Profiles.InputSystem.Controllers - fullName: XRTK.Editor.Profiles.InputSystem.Controllers - nameWithType: XRTK.Editor.Profiles.InputSystem.Controllers -- uid: XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityControllerDataProviderProfileInspector - name: BaseMixedRealityControllerDataProviderProfileInspector - href: api/XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityControllerDataProviderProfileInspector.html - commentId: T:XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityControllerDataProviderProfileInspector - fullName: XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityControllerDataProviderProfileInspector - nameWithType: BaseMixedRealityControllerDataProviderProfileInspector -- uid: XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityControllerDataProviderProfileInspector.OnEnable - name: OnEnable() - href: api/XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityControllerDataProviderProfileInspector.html#XRTK_Editor_Profiles_InputSystem_Controllers_BaseMixedRealityControllerDataProviderProfileInspector_OnEnable - commentId: M:XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityControllerDataProviderProfileInspector.OnEnable - fullName: XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityControllerDataProviderProfileInspector.OnEnable() - nameWithType: BaseMixedRealityControllerDataProviderProfileInspector.OnEnable() -- uid: XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityControllerDataProviderProfileInspector.OnEnable* - name: OnEnable - href: api/XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityControllerDataProviderProfileInspector.html#XRTK_Editor_Profiles_InputSystem_Controllers_BaseMixedRealityControllerDataProviderProfileInspector_OnEnable_ - commentId: Overload:XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityControllerDataProviderProfileInspector.OnEnable - isSpec: "True" - fullName: XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityControllerDataProviderProfileInspector.OnEnable - nameWithType: BaseMixedRealityControllerDataProviderProfileInspector.OnEnable -- uid: XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityControllerDataProviderProfileInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityControllerDataProviderProfileInspector.html#XRTK_Editor_Profiles_InputSystem_Controllers_BaseMixedRealityControllerDataProviderProfileInspector_OnInspectorGUI - commentId: M:XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityControllerDataProviderProfileInspector.OnInspectorGUI - fullName: XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityControllerDataProviderProfileInspector.OnInspectorGUI() - nameWithType: BaseMixedRealityControllerDataProviderProfileInspector.OnInspectorGUI() -- uid: XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityControllerDataProviderProfileInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityControllerDataProviderProfileInspector.html#XRTK_Editor_Profiles_InputSystem_Controllers_BaseMixedRealityControllerDataProviderProfileInspector_OnInspectorGUI_ - commentId: Overload:XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityControllerDataProviderProfileInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityControllerDataProviderProfileInspector.OnInspectorGUI - nameWithType: BaseMixedRealityControllerDataProviderProfileInspector.OnInspectorGUI -- uid: XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityControllerMappingProfileInspector - name: BaseMixedRealityControllerMappingProfileInspector - href: api/XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityControllerMappingProfileInspector.html - commentId: T:XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityControllerMappingProfileInspector - fullName: XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityControllerMappingProfileInspector - nameWithType: BaseMixedRealityControllerMappingProfileInspector -- uid: XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityControllerMappingProfileInspector.OnEnable - name: OnEnable() - href: api/XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityControllerMappingProfileInspector.html#XRTK_Editor_Profiles_InputSystem_Controllers_BaseMixedRealityControllerMappingProfileInspector_OnEnable - commentId: M:XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityControllerMappingProfileInspector.OnEnable - fullName: XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityControllerMappingProfileInspector.OnEnable() - nameWithType: BaseMixedRealityControllerMappingProfileInspector.OnEnable() -- uid: XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityControllerMappingProfileInspector.OnEnable* - name: OnEnable - href: api/XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityControllerMappingProfileInspector.html#XRTK_Editor_Profiles_InputSystem_Controllers_BaseMixedRealityControllerMappingProfileInspector_OnEnable_ - commentId: Overload:XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityControllerMappingProfileInspector.OnEnable - isSpec: "True" - fullName: XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityControllerMappingProfileInspector.OnEnable - nameWithType: BaseMixedRealityControllerMappingProfileInspector.OnEnable -- uid: XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityControllerMappingProfileInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityControllerMappingProfileInspector.html#XRTK_Editor_Profiles_InputSystem_Controllers_BaseMixedRealityControllerMappingProfileInspector_OnInspectorGUI - commentId: M:XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityControllerMappingProfileInspector.OnInspectorGUI - fullName: XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityControllerMappingProfileInspector.OnInspectorGUI() - nameWithType: BaseMixedRealityControllerMappingProfileInspector.OnInspectorGUI() -- uid: XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityControllerMappingProfileInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityControllerMappingProfileInspector.html#XRTK_Editor_Profiles_InputSystem_Controllers_BaseMixedRealityControllerMappingProfileInspector_OnInspectorGUI_ - commentId: Overload:XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityControllerMappingProfileInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityControllerMappingProfileInspector.OnInspectorGUI - nameWithType: BaseMixedRealityControllerMappingProfileInspector.OnInspectorGUI -- uid: XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityHandControllerDataProviderProfileInspector - name: BaseMixedRealityHandControllerDataProviderProfileInspector - href: api/XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityHandControllerDataProviderProfileInspector.html - commentId: T:XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityHandControllerDataProviderProfileInspector - fullName: XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityHandControllerDataProviderProfileInspector - nameWithType: BaseMixedRealityHandControllerDataProviderProfileInspector -- uid: XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityHandControllerDataProviderProfileInspector.OnEnable - name: OnEnable() - href: api/XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityHandControllerDataProviderProfileInspector.html#XRTK_Editor_Profiles_InputSystem_Controllers_BaseMixedRealityHandControllerDataProviderProfileInspector_OnEnable - commentId: M:XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityHandControllerDataProviderProfileInspector.OnEnable - fullName: XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityHandControllerDataProviderProfileInspector.OnEnable() - nameWithType: BaseMixedRealityHandControllerDataProviderProfileInspector.OnEnable() -- uid: XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityHandControllerDataProviderProfileInspector.OnEnable* - name: OnEnable - href: api/XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityHandControllerDataProviderProfileInspector.html#XRTK_Editor_Profiles_InputSystem_Controllers_BaseMixedRealityHandControllerDataProviderProfileInspector_OnEnable_ - commentId: Overload:XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityHandControllerDataProviderProfileInspector.OnEnable - isSpec: "True" - fullName: XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityHandControllerDataProviderProfileInspector.OnEnable - nameWithType: BaseMixedRealityHandControllerDataProviderProfileInspector.OnEnable -- uid: XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityHandControllerDataProviderProfileInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityHandControllerDataProviderProfileInspector.html#XRTK_Editor_Profiles_InputSystem_Controllers_BaseMixedRealityHandControllerDataProviderProfileInspector_OnInspectorGUI - commentId: M:XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityHandControllerDataProviderProfileInspector.OnInspectorGUI - fullName: XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityHandControllerDataProviderProfileInspector.OnInspectorGUI() - nameWithType: BaseMixedRealityHandControllerDataProviderProfileInspector.OnInspectorGUI() -- uid: XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityHandControllerDataProviderProfileInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityHandControllerDataProviderProfileInspector.html#XRTK_Editor_Profiles_InputSystem_Controllers_BaseMixedRealityHandControllerDataProviderProfileInspector_OnInspectorGUI_ - commentId: Overload:XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityHandControllerDataProviderProfileInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.Editor.Profiles.InputSystem.Controllers.BaseMixedRealityHandControllerDataProviderProfileInspector.OnInspectorGUI - nameWithType: BaseMixedRealityHandControllerDataProviderProfileInspector.OnInspectorGUI -- uid: XRTK.Editor.Profiles.InputSystem.Controllers.MixedRealityControllerVisualizationProfileInspector - name: MixedRealityControllerVisualizationProfileInspector - href: api/XRTK.Editor.Profiles.InputSystem.Controllers.MixedRealityControllerVisualizationProfileInspector.html - commentId: T:XRTK.Editor.Profiles.InputSystem.Controllers.MixedRealityControllerVisualizationProfileInspector - fullName: XRTK.Editor.Profiles.InputSystem.Controllers.MixedRealityControllerVisualizationProfileInspector - nameWithType: MixedRealityControllerVisualizationProfileInspector -- uid: XRTK.Editor.Profiles.InputSystem.Controllers.MixedRealityControllerVisualizationProfileInspector.OnEnable - name: OnEnable() - href: api/XRTK.Editor.Profiles.InputSystem.Controllers.MixedRealityControllerVisualizationProfileInspector.html#XRTK_Editor_Profiles_InputSystem_Controllers_MixedRealityControllerVisualizationProfileInspector_OnEnable - commentId: M:XRTK.Editor.Profiles.InputSystem.Controllers.MixedRealityControllerVisualizationProfileInspector.OnEnable - fullName: XRTK.Editor.Profiles.InputSystem.Controllers.MixedRealityControllerVisualizationProfileInspector.OnEnable() - nameWithType: MixedRealityControllerVisualizationProfileInspector.OnEnable() -- uid: XRTK.Editor.Profiles.InputSystem.Controllers.MixedRealityControllerVisualizationProfileInspector.OnEnable* - name: OnEnable - href: api/XRTK.Editor.Profiles.InputSystem.Controllers.MixedRealityControllerVisualizationProfileInspector.html#XRTK_Editor_Profiles_InputSystem_Controllers_MixedRealityControllerVisualizationProfileInspector_OnEnable_ - commentId: Overload:XRTK.Editor.Profiles.InputSystem.Controllers.MixedRealityControllerVisualizationProfileInspector.OnEnable - isSpec: "True" - fullName: XRTK.Editor.Profiles.InputSystem.Controllers.MixedRealityControllerVisualizationProfileInspector.OnEnable - nameWithType: MixedRealityControllerVisualizationProfileInspector.OnEnable -- uid: XRTK.Editor.Profiles.InputSystem.Controllers.MixedRealityControllerVisualizationProfileInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.Editor.Profiles.InputSystem.Controllers.MixedRealityControllerVisualizationProfileInspector.html#XRTK_Editor_Profiles_InputSystem_Controllers_MixedRealityControllerVisualizationProfileInspector_OnInspectorGUI - commentId: M:XRTK.Editor.Profiles.InputSystem.Controllers.MixedRealityControllerVisualizationProfileInspector.OnInspectorGUI - fullName: XRTK.Editor.Profiles.InputSystem.Controllers.MixedRealityControllerVisualizationProfileInspector.OnInspectorGUI() - nameWithType: MixedRealityControllerVisualizationProfileInspector.OnInspectorGUI() -- uid: XRTK.Editor.Profiles.InputSystem.Controllers.MixedRealityControllerVisualizationProfileInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.Editor.Profiles.InputSystem.Controllers.MixedRealityControllerVisualizationProfileInspector.html#XRTK_Editor_Profiles_InputSystem_Controllers_MixedRealityControllerVisualizationProfileInspector_OnInspectorGUI_ - commentId: Overload:XRTK.Editor.Profiles.InputSystem.Controllers.MixedRealityControllerVisualizationProfileInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.Editor.Profiles.InputSystem.Controllers.MixedRealityControllerVisualizationProfileInspector.OnInspectorGUI - nameWithType: MixedRealityControllerVisualizationProfileInspector.OnInspectorGUI -- uid: XRTK.Editor.Profiles.InputSystem.Controllers.MixedRealityInteractionMappingProfileInspector - name: MixedRealityInteractionMappingProfileInspector - href: api/XRTK.Editor.Profiles.InputSystem.Controllers.MixedRealityInteractionMappingProfileInspector.html - commentId: T:XRTK.Editor.Profiles.InputSystem.Controllers.MixedRealityInteractionMappingProfileInspector - fullName: XRTK.Editor.Profiles.InputSystem.Controllers.MixedRealityInteractionMappingProfileInspector - nameWithType: MixedRealityInteractionMappingProfileInspector -- uid: XRTK.Editor.Profiles.InputSystem.Controllers.MixedRealityInteractionMappingProfileInspector.OnEnable - name: OnEnable() - href: api/XRTK.Editor.Profiles.InputSystem.Controllers.MixedRealityInteractionMappingProfileInspector.html#XRTK_Editor_Profiles_InputSystem_Controllers_MixedRealityInteractionMappingProfileInspector_OnEnable - commentId: M:XRTK.Editor.Profiles.InputSystem.Controllers.MixedRealityInteractionMappingProfileInspector.OnEnable - fullName: XRTK.Editor.Profiles.InputSystem.Controllers.MixedRealityInteractionMappingProfileInspector.OnEnable() - nameWithType: MixedRealityInteractionMappingProfileInspector.OnEnable() -- uid: XRTK.Editor.Profiles.InputSystem.Controllers.MixedRealityInteractionMappingProfileInspector.OnEnable* - name: OnEnable - href: api/XRTK.Editor.Profiles.InputSystem.Controllers.MixedRealityInteractionMappingProfileInspector.html#XRTK_Editor_Profiles_InputSystem_Controllers_MixedRealityInteractionMappingProfileInspector_OnEnable_ - commentId: Overload:XRTK.Editor.Profiles.InputSystem.Controllers.MixedRealityInteractionMappingProfileInspector.OnEnable - isSpec: "True" - fullName: XRTK.Editor.Profiles.InputSystem.Controllers.MixedRealityInteractionMappingProfileInspector.OnEnable - nameWithType: MixedRealityInteractionMappingProfileInspector.OnEnable -- uid: XRTK.Editor.Profiles.InputSystem.Controllers.MixedRealityInteractionMappingProfileInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.Editor.Profiles.InputSystem.Controllers.MixedRealityInteractionMappingProfileInspector.html#XRTK_Editor_Profiles_InputSystem_Controllers_MixedRealityInteractionMappingProfileInspector_OnInspectorGUI - commentId: M:XRTK.Editor.Profiles.InputSystem.Controllers.MixedRealityInteractionMappingProfileInspector.OnInspectorGUI - fullName: XRTK.Editor.Profiles.InputSystem.Controllers.MixedRealityInteractionMappingProfileInspector.OnInspectorGUI() - nameWithType: MixedRealityInteractionMappingProfileInspector.OnInspectorGUI() -- uid: XRTK.Editor.Profiles.InputSystem.Controllers.MixedRealityInteractionMappingProfileInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.Editor.Profiles.InputSystem.Controllers.MixedRealityInteractionMappingProfileInspector.html#XRTK_Editor_Profiles_InputSystem_Controllers_MixedRealityInteractionMappingProfileInspector_OnInspectorGUI_ - commentId: Overload:XRTK.Editor.Profiles.InputSystem.Controllers.MixedRealityInteractionMappingProfileInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.Editor.Profiles.InputSystem.Controllers.MixedRealityInteractionMappingProfileInspector.OnInspectorGUI - nameWithType: MixedRealityInteractionMappingProfileInspector.OnInspectorGUI -- uid: XRTK.Editor.Profiles.InputSystem.Controllers.Simulation - name: XRTK.Editor.Profiles.InputSystem.Controllers.Simulation - href: api/XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.html - commentId: N:XRTK.Editor.Profiles.InputSystem.Controllers.Simulation - fullName: XRTK.Editor.Profiles.InputSystem.Controllers.Simulation - nameWithType: XRTK.Editor.Profiles.InputSystem.Controllers.Simulation -- uid: XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.SimulatedControllerDataProviderProfileInspector - name: SimulatedControllerDataProviderProfileInspector - href: api/XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.SimulatedControllerDataProviderProfileInspector.html - commentId: T:XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.SimulatedControllerDataProviderProfileInspector - fullName: XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.SimulatedControllerDataProviderProfileInspector - nameWithType: SimulatedControllerDataProviderProfileInspector -- uid: XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.SimulatedControllerDataProviderProfileInspector.OnEnable - name: OnEnable() - href: api/XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.SimulatedControllerDataProviderProfileInspector.html#XRTK_Editor_Profiles_InputSystem_Controllers_Simulation_SimulatedControllerDataProviderProfileInspector_OnEnable - commentId: M:XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.SimulatedControllerDataProviderProfileInspector.OnEnable - fullName: XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.SimulatedControllerDataProviderProfileInspector.OnEnable() - nameWithType: SimulatedControllerDataProviderProfileInspector.OnEnable() -- uid: XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.SimulatedControllerDataProviderProfileInspector.OnEnable* - name: OnEnable - href: api/XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.SimulatedControllerDataProviderProfileInspector.html#XRTK_Editor_Profiles_InputSystem_Controllers_Simulation_SimulatedControllerDataProviderProfileInspector_OnEnable_ - commentId: Overload:XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.SimulatedControllerDataProviderProfileInspector.OnEnable - isSpec: "True" - fullName: XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.SimulatedControllerDataProviderProfileInspector.OnEnable - nameWithType: SimulatedControllerDataProviderProfileInspector.OnEnable -- uid: XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.SimulatedControllerDataProviderProfileInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.SimulatedControllerDataProviderProfileInspector.html#XRTK_Editor_Profiles_InputSystem_Controllers_Simulation_SimulatedControllerDataProviderProfileInspector_OnInspectorGUI - commentId: M:XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.SimulatedControllerDataProviderProfileInspector.OnInspectorGUI - fullName: XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.SimulatedControllerDataProviderProfileInspector.OnInspectorGUI() - nameWithType: SimulatedControllerDataProviderProfileInspector.OnInspectorGUI() -- uid: XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.SimulatedControllerDataProviderProfileInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.SimulatedControllerDataProviderProfileInspector.html#XRTK_Editor_Profiles_InputSystem_Controllers_Simulation_SimulatedControllerDataProviderProfileInspector_OnInspectorGUI_ - commentId: Overload:XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.SimulatedControllerDataProviderProfileInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.SimulatedControllerDataProviderProfileInspector.OnInspectorGUI - nameWithType: SimulatedControllerDataProviderProfileInspector.OnInspectorGUI -- uid: XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.SimulatedHandControllerDataProviderProfileInspector - name: SimulatedHandControllerDataProviderProfileInspector - href: api/XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.SimulatedHandControllerDataProviderProfileInspector.html - commentId: T:XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.SimulatedHandControllerDataProviderProfileInspector - fullName: XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.SimulatedHandControllerDataProviderProfileInspector - nameWithType: SimulatedHandControllerDataProviderProfileInspector -- uid: XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.SimulatedHandControllerDataProviderProfileInspector.OnEnable - name: OnEnable() - href: api/XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.SimulatedHandControllerDataProviderProfileInspector.html#XRTK_Editor_Profiles_InputSystem_Controllers_Simulation_SimulatedHandControllerDataProviderProfileInspector_OnEnable - commentId: M:XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.SimulatedHandControllerDataProviderProfileInspector.OnEnable - fullName: XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.SimulatedHandControllerDataProviderProfileInspector.OnEnable() - nameWithType: SimulatedHandControllerDataProviderProfileInspector.OnEnable() -- uid: XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.SimulatedHandControllerDataProviderProfileInspector.OnEnable* - name: OnEnable - href: api/XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.SimulatedHandControllerDataProviderProfileInspector.html#XRTK_Editor_Profiles_InputSystem_Controllers_Simulation_SimulatedHandControllerDataProviderProfileInspector_OnEnable_ - commentId: Overload:XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.SimulatedHandControllerDataProviderProfileInspector.OnEnable - isSpec: "True" - fullName: XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.SimulatedHandControllerDataProviderProfileInspector.OnEnable - nameWithType: SimulatedHandControllerDataProviderProfileInspector.OnEnable -- uid: XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.SimulatedHandControllerDataProviderProfileInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.SimulatedHandControllerDataProviderProfileInspector.html#XRTK_Editor_Profiles_InputSystem_Controllers_Simulation_SimulatedHandControllerDataProviderProfileInspector_OnInspectorGUI - commentId: M:XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.SimulatedHandControllerDataProviderProfileInspector.OnInspectorGUI - fullName: XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.SimulatedHandControllerDataProviderProfileInspector.OnInspectorGUI() - nameWithType: SimulatedHandControllerDataProviderProfileInspector.OnInspectorGUI() -- uid: XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.SimulatedHandControllerDataProviderProfileInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.SimulatedHandControllerDataProviderProfileInspector.html#XRTK_Editor_Profiles_InputSystem_Controllers_Simulation_SimulatedHandControllerDataProviderProfileInspector_OnInspectorGUI_ - commentId: Overload:XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.SimulatedHandControllerDataProviderProfileInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.Editor.Profiles.InputSystem.Controllers.Simulation.SimulatedHandControllerDataProviderProfileInspector.OnInspectorGUI - nameWithType: SimulatedHandControllerDataProviderProfileInspector.OnInspectorGUI -- uid: XRTK.Editor.Profiles.InputSystem.MixedRealityGesturesProfileInspector - name: MixedRealityGesturesProfileInspector - href: api/XRTK.Editor.Profiles.InputSystem.MixedRealityGesturesProfileInspector.html - commentId: T:XRTK.Editor.Profiles.InputSystem.MixedRealityGesturesProfileInspector - fullName: XRTK.Editor.Profiles.InputSystem.MixedRealityGesturesProfileInspector - nameWithType: MixedRealityGesturesProfileInspector -- uid: XRTK.Editor.Profiles.InputSystem.MixedRealityGesturesProfileInspector.OnEnable - name: OnEnable() - href: api/XRTK.Editor.Profiles.InputSystem.MixedRealityGesturesProfileInspector.html#XRTK_Editor_Profiles_InputSystem_MixedRealityGesturesProfileInspector_OnEnable - commentId: M:XRTK.Editor.Profiles.InputSystem.MixedRealityGesturesProfileInspector.OnEnable - fullName: XRTK.Editor.Profiles.InputSystem.MixedRealityGesturesProfileInspector.OnEnable() - nameWithType: MixedRealityGesturesProfileInspector.OnEnable() -- uid: XRTK.Editor.Profiles.InputSystem.MixedRealityGesturesProfileInspector.OnEnable* - name: OnEnable - href: api/XRTK.Editor.Profiles.InputSystem.MixedRealityGesturesProfileInspector.html#XRTK_Editor_Profiles_InputSystem_MixedRealityGesturesProfileInspector_OnEnable_ - commentId: Overload:XRTK.Editor.Profiles.InputSystem.MixedRealityGesturesProfileInspector.OnEnable - isSpec: "True" - fullName: XRTK.Editor.Profiles.InputSystem.MixedRealityGesturesProfileInspector.OnEnable - nameWithType: MixedRealityGesturesProfileInspector.OnEnable -- uid: XRTK.Editor.Profiles.InputSystem.MixedRealityGesturesProfileInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.Editor.Profiles.InputSystem.MixedRealityGesturesProfileInspector.html#XRTK_Editor_Profiles_InputSystem_MixedRealityGesturesProfileInspector_OnInspectorGUI - commentId: M:XRTK.Editor.Profiles.InputSystem.MixedRealityGesturesProfileInspector.OnInspectorGUI - fullName: XRTK.Editor.Profiles.InputSystem.MixedRealityGesturesProfileInspector.OnInspectorGUI() - nameWithType: MixedRealityGesturesProfileInspector.OnInspectorGUI() -- uid: XRTK.Editor.Profiles.InputSystem.MixedRealityGesturesProfileInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.Editor.Profiles.InputSystem.MixedRealityGesturesProfileInspector.html#XRTK_Editor_Profiles_InputSystem_MixedRealityGesturesProfileInspector_OnInspectorGUI_ - commentId: Overload:XRTK.Editor.Profiles.InputSystem.MixedRealityGesturesProfileInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.Editor.Profiles.InputSystem.MixedRealityGesturesProfileInspector.OnInspectorGUI - nameWithType: MixedRealityGesturesProfileInspector.OnInspectorGUI -- uid: XRTK.Editor.Profiles.InputSystem.MixedRealityInputActionsProfileInspector - name: MixedRealityInputActionsProfileInspector - href: api/XRTK.Editor.Profiles.InputSystem.MixedRealityInputActionsProfileInspector.html - commentId: T:XRTK.Editor.Profiles.InputSystem.MixedRealityInputActionsProfileInspector - fullName: XRTK.Editor.Profiles.InputSystem.MixedRealityInputActionsProfileInspector - nameWithType: MixedRealityInputActionsProfileInspector -- uid: XRTK.Editor.Profiles.InputSystem.MixedRealityInputActionsProfileInspector.OnEnable - name: OnEnable() - href: api/XRTK.Editor.Profiles.InputSystem.MixedRealityInputActionsProfileInspector.html#XRTK_Editor_Profiles_InputSystem_MixedRealityInputActionsProfileInspector_OnEnable - commentId: M:XRTK.Editor.Profiles.InputSystem.MixedRealityInputActionsProfileInspector.OnEnable - fullName: XRTK.Editor.Profiles.InputSystem.MixedRealityInputActionsProfileInspector.OnEnable() - nameWithType: MixedRealityInputActionsProfileInspector.OnEnable() -- uid: XRTK.Editor.Profiles.InputSystem.MixedRealityInputActionsProfileInspector.OnEnable* - name: OnEnable - href: api/XRTK.Editor.Profiles.InputSystem.MixedRealityInputActionsProfileInspector.html#XRTK_Editor_Profiles_InputSystem_MixedRealityInputActionsProfileInspector_OnEnable_ - commentId: Overload:XRTK.Editor.Profiles.InputSystem.MixedRealityInputActionsProfileInspector.OnEnable - isSpec: "True" - fullName: XRTK.Editor.Profiles.InputSystem.MixedRealityInputActionsProfileInspector.OnEnable - nameWithType: MixedRealityInputActionsProfileInspector.OnEnable -- uid: XRTK.Editor.Profiles.InputSystem.MixedRealityInputActionsProfileInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.Editor.Profiles.InputSystem.MixedRealityInputActionsProfileInspector.html#XRTK_Editor_Profiles_InputSystem_MixedRealityInputActionsProfileInspector_OnInspectorGUI - commentId: M:XRTK.Editor.Profiles.InputSystem.MixedRealityInputActionsProfileInspector.OnInspectorGUI - fullName: XRTK.Editor.Profiles.InputSystem.MixedRealityInputActionsProfileInspector.OnInspectorGUI() - nameWithType: MixedRealityInputActionsProfileInspector.OnInspectorGUI() -- uid: XRTK.Editor.Profiles.InputSystem.MixedRealityInputActionsProfileInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.Editor.Profiles.InputSystem.MixedRealityInputActionsProfileInspector.html#XRTK_Editor_Profiles_InputSystem_MixedRealityInputActionsProfileInspector_OnInspectorGUI_ - commentId: Overload:XRTK.Editor.Profiles.InputSystem.MixedRealityInputActionsProfileInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.Editor.Profiles.InputSystem.MixedRealityInputActionsProfileInspector.OnInspectorGUI - nameWithType: MixedRealityInputActionsProfileInspector.OnInspectorGUI -- uid: XRTK.Editor.Profiles.InputSystem.MixedRealityInputSystemProfileInspector - name: MixedRealityInputSystemProfileInspector - href: api/XRTK.Editor.Profiles.InputSystem.MixedRealityInputSystemProfileInspector.html - commentId: T:XRTK.Editor.Profiles.InputSystem.MixedRealityInputSystemProfileInspector - fullName: XRTK.Editor.Profiles.InputSystem.MixedRealityInputSystemProfileInspector - nameWithType: MixedRealityInputSystemProfileInspector -- uid: XRTK.Editor.Profiles.InputSystem.MixedRealityInputSystemProfileInspector.OnEnable - name: OnEnable() - href: api/XRTK.Editor.Profiles.InputSystem.MixedRealityInputSystemProfileInspector.html#XRTK_Editor_Profiles_InputSystem_MixedRealityInputSystemProfileInspector_OnEnable - commentId: M:XRTK.Editor.Profiles.InputSystem.MixedRealityInputSystemProfileInspector.OnEnable - fullName: XRTK.Editor.Profiles.InputSystem.MixedRealityInputSystemProfileInspector.OnEnable() - nameWithType: MixedRealityInputSystemProfileInspector.OnEnable() -- uid: XRTK.Editor.Profiles.InputSystem.MixedRealityInputSystemProfileInspector.OnEnable* - name: OnEnable - href: api/XRTK.Editor.Profiles.InputSystem.MixedRealityInputSystemProfileInspector.html#XRTK_Editor_Profiles_InputSystem_MixedRealityInputSystemProfileInspector_OnEnable_ - commentId: Overload:XRTK.Editor.Profiles.InputSystem.MixedRealityInputSystemProfileInspector.OnEnable - isSpec: "True" - fullName: XRTK.Editor.Profiles.InputSystem.MixedRealityInputSystemProfileInspector.OnEnable - nameWithType: MixedRealityInputSystemProfileInspector.OnEnable -- uid: XRTK.Editor.Profiles.InputSystem.MixedRealityInputSystemProfileInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.Editor.Profiles.InputSystem.MixedRealityInputSystemProfileInspector.html#XRTK_Editor_Profiles_InputSystem_MixedRealityInputSystemProfileInspector_OnInspectorGUI - commentId: M:XRTK.Editor.Profiles.InputSystem.MixedRealityInputSystemProfileInspector.OnInspectorGUI - fullName: XRTK.Editor.Profiles.InputSystem.MixedRealityInputSystemProfileInspector.OnInspectorGUI() - nameWithType: MixedRealityInputSystemProfileInspector.OnInspectorGUI() -- uid: XRTK.Editor.Profiles.InputSystem.MixedRealityInputSystemProfileInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.Editor.Profiles.InputSystem.MixedRealityInputSystemProfileInspector.html#XRTK_Editor_Profiles_InputSystem_MixedRealityInputSystemProfileInspector_OnInspectorGUI_ - commentId: Overload:XRTK.Editor.Profiles.InputSystem.MixedRealityInputSystemProfileInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.Editor.Profiles.InputSystem.MixedRealityInputSystemProfileInspector.OnInspectorGUI - nameWithType: MixedRealityInputSystemProfileInspector.OnInspectorGUI -- uid: XRTK.Editor.Profiles.InputSystem.MixedRealityPointerProfileInspector - name: MixedRealityPointerProfileInspector - href: api/XRTK.Editor.Profiles.InputSystem.MixedRealityPointerProfileInspector.html - commentId: T:XRTK.Editor.Profiles.InputSystem.MixedRealityPointerProfileInspector - fullName: XRTK.Editor.Profiles.InputSystem.MixedRealityPointerProfileInspector - nameWithType: MixedRealityPointerProfileInspector -- uid: XRTK.Editor.Profiles.InputSystem.MixedRealityPointerProfileInspector.OnEnable - name: OnEnable() - href: api/XRTK.Editor.Profiles.InputSystem.MixedRealityPointerProfileInspector.html#XRTK_Editor_Profiles_InputSystem_MixedRealityPointerProfileInspector_OnEnable - commentId: M:XRTK.Editor.Profiles.InputSystem.MixedRealityPointerProfileInspector.OnEnable - fullName: XRTK.Editor.Profiles.InputSystem.MixedRealityPointerProfileInspector.OnEnable() - nameWithType: MixedRealityPointerProfileInspector.OnEnable() -- uid: XRTK.Editor.Profiles.InputSystem.MixedRealityPointerProfileInspector.OnEnable* - name: OnEnable - href: api/XRTK.Editor.Profiles.InputSystem.MixedRealityPointerProfileInspector.html#XRTK_Editor_Profiles_InputSystem_MixedRealityPointerProfileInspector_OnEnable_ - commentId: Overload:XRTK.Editor.Profiles.InputSystem.MixedRealityPointerProfileInspector.OnEnable - isSpec: "True" - fullName: XRTK.Editor.Profiles.InputSystem.MixedRealityPointerProfileInspector.OnEnable - nameWithType: MixedRealityPointerProfileInspector.OnEnable -- uid: XRTK.Editor.Profiles.InputSystem.MixedRealityPointerProfileInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.Editor.Profiles.InputSystem.MixedRealityPointerProfileInspector.html#XRTK_Editor_Profiles_InputSystem_MixedRealityPointerProfileInspector_OnInspectorGUI - commentId: M:XRTK.Editor.Profiles.InputSystem.MixedRealityPointerProfileInspector.OnInspectorGUI - fullName: XRTK.Editor.Profiles.InputSystem.MixedRealityPointerProfileInspector.OnInspectorGUI() - nameWithType: MixedRealityPointerProfileInspector.OnInspectorGUI() -- uid: XRTK.Editor.Profiles.InputSystem.MixedRealityPointerProfileInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.Editor.Profiles.InputSystem.MixedRealityPointerProfileInspector.html#XRTK_Editor_Profiles_InputSystem_MixedRealityPointerProfileInspector_OnInspectorGUI_ - commentId: Overload:XRTK.Editor.Profiles.InputSystem.MixedRealityPointerProfileInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.Editor.Profiles.InputSystem.MixedRealityPointerProfileInspector.OnInspectorGUI - nameWithType: MixedRealityPointerProfileInspector.OnInspectorGUI -- uid: XRTK.Editor.Profiles.InputSystem.MixedRealitySpeechCommandsProfileInspector - name: MixedRealitySpeechCommandsProfileInspector - href: api/XRTK.Editor.Profiles.InputSystem.MixedRealitySpeechCommandsProfileInspector.html - commentId: T:XRTK.Editor.Profiles.InputSystem.MixedRealitySpeechCommandsProfileInspector - fullName: XRTK.Editor.Profiles.InputSystem.MixedRealitySpeechCommandsProfileInspector - nameWithType: MixedRealitySpeechCommandsProfileInspector -- uid: XRTK.Editor.Profiles.InputSystem.MixedRealitySpeechCommandsProfileInspector.OnEnable - name: OnEnable() - href: api/XRTK.Editor.Profiles.InputSystem.MixedRealitySpeechCommandsProfileInspector.html#XRTK_Editor_Profiles_InputSystem_MixedRealitySpeechCommandsProfileInspector_OnEnable - commentId: M:XRTK.Editor.Profiles.InputSystem.MixedRealitySpeechCommandsProfileInspector.OnEnable - fullName: XRTK.Editor.Profiles.InputSystem.MixedRealitySpeechCommandsProfileInspector.OnEnable() - nameWithType: MixedRealitySpeechCommandsProfileInspector.OnEnable() -- uid: XRTK.Editor.Profiles.InputSystem.MixedRealitySpeechCommandsProfileInspector.OnEnable* - name: OnEnable - href: api/XRTK.Editor.Profiles.InputSystem.MixedRealitySpeechCommandsProfileInspector.html#XRTK_Editor_Profiles_InputSystem_MixedRealitySpeechCommandsProfileInspector_OnEnable_ - commentId: Overload:XRTK.Editor.Profiles.InputSystem.MixedRealitySpeechCommandsProfileInspector.OnEnable - isSpec: "True" - fullName: XRTK.Editor.Profiles.InputSystem.MixedRealitySpeechCommandsProfileInspector.OnEnable - nameWithType: MixedRealitySpeechCommandsProfileInspector.OnEnable -- uid: XRTK.Editor.Profiles.InputSystem.MixedRealitySpeechCommandsProfileInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.Editor.Profiles.InputSystem.MixedRealitySpeechCommandsProfileInspector.html#XRTK_Editor_Profiles_InputSystem_MixedRealitySpeechCommandsProfileInspector_OnInspectorGUI - commentId: M:XRTK.Editor.Profiles.InputSystem.MixedRealitySpeechCommandsProfileInspector.OnInspectorGUI - fullName: XRTK.Editor.Profiles.InputSystem.MixedRealitySpeechCommandsProfileInspector.OnInspectorGUI() - nameWithType: MixedRealitySpeechCommandsProfileInspector.OnInspectorGUI() -- uid: XRTK.Editor.Profiles.InputSystem.MixedRealitySpeechCommandsProfileInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.Editor.Profiles.InputSystem.MixedRealitySpeechCommandsProfileInspector.html#XRTK_Editor_Profiles_InputSystem_MixedRealitySpeechCommandsProfileInspector_OnInspectorGUI_ - commentId: Overload:XRTK.Editor.Profiles.InputSystem.MixedRealitySpeechCommandsProfileInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.Editor.Profiles.InputSystem.MixedRealitySpeechCommandsProfileInspector.OnInspectorGUI - nameWithType: MixedRealitySpeechCommandsProfileInspector.OnInspectorGUI -- uid: XRTK.Editor.Profiles.MixedRealityBoundaryVisualizationProfileInspector - name: MixedRealityBoundaryVisualizationProfileInspector - href: api/XRTK.Editor.Profiles.MixedRealityBoundaryVisualizationProfileInspector.html - commentId: T:XRTK.Editor.Profiles.MixedRealityBoundaryVisualizationProfileInspector - fullName: XRTK.Editor.Profiles.MixedRealityBoundaryVisualizationProfileInspector - nameWithType: MixedRealityBoundaryVisualizationProfileInspector -- uid: XRTK.Editor.Profiles.MixedRealityBoundaryVisualizationProfileInspector.OnEnable - name: OnEnable() - href: api/XRTK.Editor.Profiles.MixedRealityBoundaryVisualizationProfileInspector.html#XRTK_Editor_Profiles_MixedRealityBoundaryVisualizationProfileInspector_OnEnable - commentId: M:XRTK.Editor.Profiles.MixedRealityBoundaryVisualizationProfileInspector.OnEnable - fullName: XRTK.Editor.Profiles.MixedRealityBoundaryVisualizationProfileInspector.OnEnable() - nameWithType: MixedRealityBoundaryVisualizationProfileInspector.OnEnable() -- uid: XRTK.Editor.Profiles.MixedRealityBoundaryVisualizationProfileInspector.OnEnable* - name: OnEnable - href: api/XRTK.Editor.Profiles.MixedRealityBoundaryVisualizationProfileInspector.html#XRTK_Editor_Profiles_MixedRealityBoundaryVisualizationProfileInspector_OnEnable_ - commentId: Overload:XRTK.Editor.Profiles.MixedRealityBoundaryVisualizationProfileInspector.OnEnable - isSpec: "True" - fullName: XRTK.Editor.Profiles.MixedRealityBoundaryVisualizationProfileInspector.OnEnable - nameWithType: MixedRealityBoundaryVisualizationProfileInspector.OnEnable -- uid: XRTK.Editor.Profiles.MixedRealityBoundaryVisualizationProfileInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.Editor.Profiles.MixedRealityBoundaryVisualizationProfileInspector.html#XRTK_Editor_Profiles_MixedRealityBoundaryVisualizationProfileInspector_OnInspectorGUI - commentId: M:XRTK.Editor.Profiles.MixedRealityBoundaryVisualizationProfileInspector.OnInspectorGUI - fullName: XRTK.Editor.Profiles.MixedRealityBoundaryVisualizationProfileInspector.OnInspectorGUI() - nameWithType: MixedRealityBoundaryVisualizationProfileInspector.OnInspectorGUI() -- uid: XRTK.Editor.Profiles.MixedRealityBoundaryVisualizationProfileInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.Editor.Profiles.MixedRealityBoundaryVisualizationProfileInspector.html#XRTK_Editor_Profiles_MixedRealityBoundaryVisualizationProfileInspector_OnInspectorGUI_ - commentId: Overload:XRTK.Editor.Profiles.MixedRealityBoundaryVisualizationProfileInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.Editor.Profiles.MixedRealityBoundaryVisualizationProfileInspector.OnInspectorGUI - nameWithType: MixedRealityBoundaryVisualizationProfileInspector.OnInspectorGUI -- uid: XRTK.Editor.Profiles.MixedRealityNetworkSystemProfileInspector - name: MixedRealityNetworkSystemProfileInspector - href: api/XRTK.Editor.Profiles.MixedRealityNetworkSystemProfileInspector.html - commentId: T:XRTK.Editor.Profiles.MixedRealityNetworkSystemProfileInspector - fullName: XRTK.Editor.Profiles.MixedRealityNetworkSystemProfileInspector - nameWithType: MixedRealityNetworkSystemProfileInspector -- uid: XRTK.Editor.Profiles.MixedRealityNetworkSystemProfileInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.Editor.Profiles.MixedRealityNetworkSystemProfileInspector.html#XRTK_Editor_Profiles_MixedRealityNetworkSystemProfileInspector_OnInspectorGUI - commentId: M:XRTK.Editor.Profiles.MixedRealityNetworkSystemProfileInspector.OnInspectorGUI - fullName: XRTK.Editor.Profiles.MixedRealityNetworkSystemProfileInspector.OnInspectorGUI() - nameWithType: MixedRealityNetworkSystemProfileInspector.OnInspectorGUI() -- uid: XRTK.Editor.Profiles.MixedRealityNetworkSystemProfileInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.Editor.Profiles.MixedRealityNetworkSystemProfileInspector.html#XRTK_Editor_Profiles_MixedRealityNetworkSystemProfileInspector_OnInspectorGUI_ - commentId: Overload:XRTK.Editor.Profiles.MixedRealityNetworkSystemProfileInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.Editor.Profiles.MixedRealityNetworkSystemProfileInspector.OnInspectorGUI - nameWithType: MixedRealityNetworkSystemProfileInspector.OnInspectorGUI -- uid: XRTK.Editor.Profiles.MixedRealityPlatformServiceConfigurationProfileInspector - name: MixedRealityPlatformServiceConfigurationProfileInspector - href: api/XRTK.Editor.Profiles.MixedRealityPlatformServiceConfigurationProfileInspector.html - commentId: T:XRTK.Editor.Profiles.MixedRealityPlatformServiceConfigurationProfileInspector - fullName: XRTK.Editor.Profiles.MixedRealityPlatformServiceConfigurationProfileInspector - nameWithType: MixedRealityPlatformServiceConfigurationProfileInspector -- uid: XRTK.Editor.Profiles.MixedRealityPlatformServiceConfigurationProfileInspector.OnEnable - name: OnEnable() - href: api/XRTK.Editor.Profiles.MixedRealityPlatformServiceConfigurationProfileInspector.html#XRTK_Editor_Profiles_MixedRealityPlatformServiceConfigurationProfileInspector_OnEnable - commentId: M:XRTK.Editor.Profiles.MixedRealityPlatformServiceConfigurationProfileInspector.OnEnable - fullName: XRTK.Editor.Profiles.MixedRealityPlatformServiceConfigurationProfileInspector.OnEnable() - nameWithType: MixedRealityPlatformServiceConfigurationProfileInspector.OnEnable() -- uid: XRTK.Editor.Profiles.MixedRealityPlatformServiceConfigurationProfileInspector.OnEnable* - name: OnEnable - href: api/XRTK.Editor.Profiles.MixedRealityPlatformServiceConfigurationProfileInspector.html#XRTK_Editor_Profiles_MixedRealityPlatformServiceConfigurationProfileInspector_OnEnable_ - commentId: Overload:XRTK.Editor.Profiles.MixedRealityPlatformServiceConfigurationProfileInspector.OnEnable - isSpec: "True" - fullName: XRTK.Editor.Profiles.MixedRealityPlatformServiceConfigurationProfileInspector.OnEnable - nameWithType: MixedRealityPlatformServiceConfigurationProfileInspector.OnEnable -- uid: XRTK.Editor.Profiles.MixedRealityPlatformServiceConfigurationProfileInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.Editor.Profiles.MixedRealityPlatformServiceConfigurationProfileInspector.html#XRTK_Editor_Profiles_MixedRealityPlatformServiceConfigurationProfileInspector_OnInspectorGUI - commentId: M:XRTK.Editor.Profiles.MixedRealityPlatformServiceConfigurationProfileInspector.OnInspectorGUI - fullName: XRTK.Editor.Profiles.MixedRealityPlatformServiceConfigurationProfileInspector.OnInspectorGUI() - nameWithType: MixedRealityPlatformServiceConfigurationProfileInspector.OnInspectorGUI() -- uid: XRTK.Editor.Profiles.MixedRealityPlatformServiceConfigurationProfileInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.Editor.Profiles.MixedRealityPlatformServiceConfigurationProfileInspector.html#XRTK_Editor_Profiles_MixedRealityPlatformServiceConfigurationProfileInspector_OnInspectorGUI_ - commentId: Overload:XRTK.Editor.Profiles.MixedRealityPlatformServiceConfigurationProfileInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.Editor.Profiles.MixedRealityPlatformServiceConfigurationProfileInspector.OnInspectorGUI - nameWithType: MixedRealityPlatformServiceConfigurationProfileInspector.OnInspectorGUI -- uid: XRTK.Editor.Profiles.MixedRealityRegisteredServiceProvidersProfileInspector - name: MixedRealityRegisteredServiceProvidersProfileInspector - href: api/XRTK.Editor.Profiles.MixedRealityRegisteredServiceProvidersProfileInspector.html - commentId: T:XRTK.Editor.Profiles.MixedRealityRegisteredServiceProvidersProfileInspector - fullName: XRTK.Editor.Profiles.MixedRealityRegisteredServiceProvidersProfileInspector - nameWithType: MixedRealityRegisteredServiceProvidersProfileInspector -- uid: XRTK.Editor.Profiles.MixedRealityRegisteredServiceProvidersProfileInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.Editor.Profiles.MixedRealityRegisteredServiceProvidersProfileInspector.html#XRTK_Editor_Profiles_MixedRealityRegisteredServiceProvidersProfileInspector_OnInspectorGUI - commentId: M:XRTK.Editor.Profiles.MixedRealityRegisteredServiceProvidersProfileInspector.OnInspectorGUI - fullName: XRTK.Editor.Profiles.MixedRealityRegisteredServiceProvidersProfileInspector.OnInspectorGUI() - nameWithType: MixedRealityRegisteredServiceProvidersProfileInspector.OnInspectorGUI() -- uid: XRTK.Editor.Profiles.MixedRealityRegisteredServiceProvidersProfileInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.Editor.Profiles.MixedRealityRegisteredServiceProvidersProfileInspector.html#XRTK_Editor_Profiles_MixedRealityRegisteredServiceProvidersProfileInspector_OnInspectorGUI_ - commentId: Overload:XRTK.Editor.Profiles.MixedRealityRegisteredServiceProvidersProfileInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.Editor.Profiles.MixedRealityRegisteredServiceProvidersProfileInspector.OnInspectorGUI - nameWithType: MixedRealityRegisteredServiceProvidersProfileInspector.OnInspectorGUI -- uid: XRTK.Editor.Profiles.MixedRealityServiceProfileInspector - name: MixedRealityServiceProfileInspector - href: api/XRTK.Editor.Profiles.MixedRealityServiceProfileInspector.html - commentId: T:XRTK.Editor.Profiles.MixedRealityServiceProfileInspector - fullName: XRTK.Editor.Profiles.MixedRealityServiceProfileInspector - nameWithType: MixedRealityServiceProfileInspector -- uid: XRTK.Editor.Profiles.MixedRealityServiceProfileInspector.Configurations - name: Configurations - href: api/XRTK.Editor.Profiles.MixedRealityServiceProfileInspector.html#XRTK_Editor_Profiles_MixedRealityServiceProfileInspector_Configurations - commentId: P:XRTK.Editor.Profiles.MixedRealityServiceProfileInspector.Configurations - fullName: XRTK.Editor.Profiles.MixedRealityServiceProfileInspector.Configurations - nameWithType: MixedRealityServiceProfileInspector.Configurations -- uid: XRTK.Editor.Profiles.MixedRealityServiceProfileInspector.Configurations* - name: Configurations - href: api/XRTK.Editor.Profiles.MixedRealityServiceProfileInspector.html#XRTK_Editor_Profiles_MixedRealityServiceProfileInspector_Configurations_ - commentId: Overload:XRTK.Editor.Profiles.MixedRealityServiceProfileInspector.Configurations - isSpec: "True" - fullName: XRTK.Editor.Profiles.MixedRealityServiceProfileInspector.Configurations - nameWithType: MixedRealityServiceProfileInspector.Configurations -- uid: XRTK.Editor.Profiles.MixedRealityServiceProfileInspector.OnEnable - name: OnEnable() - href: api/XRTK.Editor.Profiles.MixedRealityServiceProfileInspector.html#XRTK_Editor_Profiles_MixedRealityServiceProfileInspector_OnEnable - commentId: M:XRTK.Editor.Profiles.MixedRealityServiceProfileInspector.OnEnable - fullName: XRTK.Editor.Profiles.MixedRealityServiceProfileInspector.OnEnable() - nameWithType: MixedRealityServiceProfileInspector.OnEnable() -- uid: XRTK.Editor.Profiles.MixedRealityServiceProfileInspector.OnEnable* - name: OnEnable - href: api/XRTK.Editor.Profiles.MixedRealityServiceProfileInspector.html#XRTK_Editor_Profiles_MixedRealityServiceProfileInspector_OnEnable_ - commentId: Overload:XRTK.Editor.Profiles.MixedRealityServiceProfileInspector.OnEnable - isSpec: "True" - fullName: XRTK.Editor.Profiles.MixedRealityServiceProfileInspector.OnEnable - nameWithType: MixedRealityServiceProfileInspector.OnEnable -- uid: XRTK.Editor.Profiles.MixedRealityServiceProfileInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.Editor.Profiles.MixedRealityServiceProfileInspector.html#XRTK_Editor_Profiles_MixedRealityServiceProfileInspector_OnInspectorGUI - commentId: M:XRTK.Editor.Profiles.MixedRealityServiceProfileInspector.OnInspectorGUI - fullName: XRTK.Editor.Profiles.MixedRealityServiceProfileInspector.OnInspectorGUI() - nameWithType: MixedRealityServiceProfileInspector.OnInspectorGUI() -- uid: XRTK.Editor.Profiles.MixedRealityServiceProfileInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.Editor.Profiles.MixedRealityServiceProfileInspector.html#XRTK_Editor_Profiles_MixedRealityServiceProfileInspector_OnInspectorGUI_ - commentId: Overload:XRTK.Editor.Profiles.MixedRealityServiceProfileInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.Editor.Profiles.MixedRealityServiceProfileInspector.OnInspectorGUI - nameWithType: MixedRealityServiceProfileInspector.OnInspectorGUI -- uid: XRTK.Editor.Profiles.MixedRealityServiceProfileInspector.RenderConfigurationOptions(System.Boolean) - name: RenderConfigurationOptions(Boolean) - href: api/XRTK.Editor.Profiles.MixedRealityServiceProfileInspector.html#XRTK_Editor_Profiles_MixedRealityServiceProfileInspector_RenderConfigurationOptions_System_Boolean_ - commentId: M:XRTK.Editor.Profiles.MixedRealityServiceProfileInspector.RenderConfigurationOptions(System.Boolean) - fullName: XRTK.Editor.Profiles.MixedRealityServiceProfileInspector.RenderConfigurationOptions(System.Boolean) - nameWithType: MixedRealityServiceProfileInspector.RenderConfigurationOptions(Boolean) -- uid: XRTK.Editor.Profiles.MixedRealityServiceProfileInspector.RenderConfigurationOptions* - name: RenderConfigurationOptions - href: api/XRTK.Editor.Profiles.MixedRealityServiceProfileInspector.html#XRTK_Editor_Profiles_MixedRealityServiceProfileInspector_RenderConfigurationOptions_ - commentId: Overload:XRTK.Editor.Profiles.MixedRealityServiceProfileInspector.RenderConfigurationOptions - isSpec: "True" - fullName: XRTK.Editor.Profiles.MixedRealityServiceProfileInspector.RenderConfigurationOptions - nameWithType: MixedRealityServiceProfileInspector.RenderConfigurationOptions -- uid: XRTK.Editor.Profiles.MixedRealityServiceProfileInspector.ServiceConstraint - name: ServiceConstraint - href: api/XRTK.Editor.Profiles.MixedRealityServiceProfileInspector.html#XRTK_Editor_Profiles_MixedRealityServiceProfileInspector_ServiceConstraint - commentId: P:XRTK.Editor.Profiles.MixedRealityServiceProfileInspector.ServiceConstraint - fullName: XRTK.Editor.Profiles.MixedRealityServiceProfileInspector.ServiceConstraint - nameWithType: MixedRealityServiceProfileInspector.ServiceConstraint -- uid: XRTK.Editor.Profiles.MixedRealityServiceProfileInspector.ServiceConstraint* - name: ServiceConstraint - href: api/XRTK.Editor.Profiles.MixedRealityServiceProfileInspector.html#XRTK_Editor_Profiles_MixedRealityServiceProfileInspector_ServiceConstraint_ - commentId: Overload:XRTK.Editor.Profiles.MixedRealityServiceProfileInspector.ServiceConstraint - isSpec: "True" - fullName: XRTK.Editor.Profiles.MixedRealityServiceProfileInspector.ServiceConstraint - nameWithType: MixedRealityServiceProfileInspector.ServiceConstraint -- uid: XRTK.Editor.Profiles.MixedRealityToolkitRootProfileInspector - name: MixedRealityToolkitRootProfileInspector - href: api/XRTK.Editor.Profiles.MixedRealityToolkitRootProfileInspector.html - commentId: T:XRTK.Editor.Profiles.MixedRealityToolkitRootProfileInspector - fullName: XRTK.Editor.Profiles.MixedRealityToolkitRootProfileInspector - nameWithType: MixedRealityToolkitRootProfileInspector -- uid: XRTK.Editor.Profiles.MixedRealityToolkitRootProfileInspector.OnEnable - name: OnEnable() - href: api/XRTK.Editor.Profiles.MixedRealityToolkitRootProfileInspector.html#XRTK_Editor_Profiles_MixedRealityToolkitRootProfileInspector_OnEnable - commentId: M:XRTK.Editor.Profiles.MixedRealityToolkitRootProfileInspector.OnEnable - fullName: XRTK.Editor.Profiles.MixedRealityToolkitRootProfileInspector.OnEnable() - nameWithType: MixedRealityToolkitRootProfileInspector.OnEnable() -- uid: XRTK.Editor.Profiles.MixedRealityToolkitRootProfileInspector.OnEnable* - name: OnEnable - href: api/XRTK.Editor.Profiles.MixedRealityToolkitRootProfileInspector.html#XRTK_Editor_Profiles_MixedRealityToolkitRootProfileInspector_OnEnable_ - commentId: Overload:XRTK.Editor.Profiles.MixedRealityToolkitRootProfileInspector.OnEnable - isSpec: "True" - fullName: XRTK.Editor.Profiles.MixedRealityToolkitRootProfileInspector.OnEnable - nameWithType: MixedRealityToolkitRootProfileInspector.OnEnable -- uid: XRTK.Editor.Profiles.MixedRealityToolkitRootProfileInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.Editor.Profiles.MixedRealityToolkitRootProfileInspector.html#XRTK_Editor_Profiles_MixedRealityToolkitRootProfileInspector_OnInspectorGUI - commentId: M:XRTK.Editor.Profiles.MixedRealityToolkitRootProfileInspector.OnInspectorGUI - fullName: XRTK.Editor.Profiles.MixedRealityToolkitRootProfileInspector.OnInspectorGUI() - nameWithType: MixedRealityToolkitRootProfileInspector.OnInspectorGUI() -- uid: XRTK.Editor.Profiles.MixedRealityToolkitRootProfileInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.Editor.Profiles.MixedRealityToolkitRootProfileInspector.html#XRTK_Editor_Profiles_MixedRealityToolkitRootProfileInspector_OnInspectorGUI_ - commentId: Overload:XRTK.Editor.Profiles.MixedRealityToolkitRootProfileInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.Editor.Profiles.MixedRealityToolkitRootProfileInspector.OnInspectorGUI - nameWithType: MixedRealityToolkitRootProfileInspector.OnInspectorGUI -- uid: XRTK.Editor.Profiles.SpatialAwareness - name: XRTK.Editor.Profiles.SpatialAwareness - href: api/XRTK.Editor.Profiles.SpatialAwareness.html - commentId: N:XRTK.Editor.Profiles.SpatialAwareness - fullName: XRTK.Editor.Profiles.SpatialAwareness - nameWithType: XRTK.Editor.Profiles.SpatialAwareness -- uid: XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySpatialMeshObserverProfileInspector - name: BaseMixedRealitySpatialMeshObserverProfileInspector - href: api/XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySpatialMeshObserverProfileInspector.html - commentId: T:XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySpatialMeshObserverProfileInspector - fullName: XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySpatialMeshObserverProfileInspector - nameWithType: BaseMixedRealitySpatialMeshObserverProfileInspector -- uid: XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySpatialMeshObserverProfileInspector.OnEnable - name: OnEnable() - href: api/XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySpatialMeshObserverProfileInspector.html#XRTK_Editor_Profiles_SpatialAwareness_BaseMixedRealitySpatialMeshObserverProfileInspector_OnEnable - commentId: M:XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySpatialMeshObserverProfileInspector.OnEnable - fullName: XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySpatialMeshObserverProfileInspector.OnEnable() - nameWithType: BaseMixedRealitySpatialMeshObserverProfileInspector.OnEnable() -- uid: XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySpatialMeshObserverProfileInspector.OnEnable* - name: OnEnable - href: api/XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySpatialMeshObserverProfileInspector.html#XRTK_Editor_Profiles_SpatialAwareness_BaseMixedRealitySpatialMeshObserverProfileInspector_OnEnable_ - commentId: Overload:XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySpatialMeshObserverProfileInspector.OnEnable - isSpec: "True" - fullName: XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySpatialMeshObserverProfileInspector.OnEnable - nameWithType: BaseMixedRealitySpatialMeshObserverProfileInspector.OnEnable -- uid: XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySpatialMeshObserverProfileInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySpatialMeshObserverProfileInspector.html#XRTK_Editor_Profiles_SpatialAwareness_BaseMixedRealitySpatialMeshObserverProfileInspector_OnInspectorGUI - commentId: M:XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySpatialMeshObserverProfileInspector.OnInspectorGUI - fullName: XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySpatialMeshObserverProfileInspector.OnInspectorGUI() - nameWithType: BaseMixedRealitySpatialMeshObserverProfileInspector.OnInspectorGUI() -- uid: XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySpatialMeshObserverProfileInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySpatialMeshObserverProfileInspector.html#XRTK_Editor_Profiles_SpatialAwareness_BaseMixedRealitySpatialMeshObserverProfileInspector_OnInspectorGUI_ - commentId: Overload:XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySpatialMeshObserverProfileInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySpatialMeshObserverProfileInspector.OnInspectorGUI - nameWithType: BaseMixedRealitySpatialMeshObserverProfileInspector.OnInspectorGUI -- uid: XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySpatialObserverProfileInspector - name: BaseMixedRealitySpatialObserverProfileInspector - href: api/XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySpatialObserverProfileInspector.html - commentId: T:XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySpatialObserverProfileInspector - fullName: XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySpatialObserverProfileInspector - nameWithType: BaseMixedRealitySpatialObserverProfileInspector -- uid: XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySpatialObserverProfileInspector.OnEnable - name: OnEnable() - href: api/XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySpatialObserverProfileInspector.html#XRTK_Editor_Profiles_SpatialAwareness_BaseMixedRealitySpatialObserverProfileInspector_OnEnable - commentId: M:XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySpatialObserverProfileInspector.OnEnable - fullName: XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySpatialObserverProfileInspector.OnEnable() - nameWithType: BaseMixedRealitySpatialObserverProfileInspector.OnEnable() -- uid: XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySpatialObserverProfileInspector.OnEnable* - name: OnEnable - href: api/XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySpatialObserverProfileInspector.html#XRTK_Editor_Profiles_SpatialAwareness_BaseMixedRealitySpatialObserverProfileInspector_OnEnable_ - commentId: Overload:XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySpatialObserverProfileInspector.OnEnable - isSpec: "True" - fullName: XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySpatialObserverProfileInspector.OnEnable - nameWithType: BaseMixedRealitySpatialObserverProfileInspector.OnEnable -- uid: XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySpatialObserverProfileInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySpatialObserverProfileInspector.html#XRTK_Editor_Profiles_SpatialAwareness_BaseMixedRealitySpatialObserverProfileInspector_OnInspectorGUI - commentId: M:XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySpatialObserverProfileInspector.OnInspectorGUI - fullName: XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySpatialObserverProfileInspector.OnInspectorGUI() - nameWithType: BaseMixedRealitySpatialObserverProfileInspector.OnInspectorGUI() -- uid: XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySpatialObserverProfileInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySpatialObserverProfileInspector.html#XRTK_Editor_Profiles_SpatialAwareness_BaseMixedRealitySpatialObserverProfileInspector_OnInspectorGUI_ - commentId: Overload:XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySpatialObserverProfileInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySpatialObserverProfileInspector.OnInspectorGUI - nameWithType: BaseMixedRealitySpatialObserverProfileInspector.OnInspectorGUI -- uid: XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySurfaceObserverProfileInspector - name: BaseMixedRealitySurfaceObserverProfileInspector - href: api/XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySurfaceObserverProfileInspector.html - commentId: T:XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySurfaceObserverProfileInspector - fullName: XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySurfaceObserverProfileInspector - nameWithType: BaseMixedRealitySurfaceObserverProfileInspector -- uid: XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySurfaceObserverProfileInspector.OnEnable - name: OnEnable() - href: api/XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySurfaceObserverProfileInspector.html#XRTK_Editor_Profiles_SpatialAwareness_BaseMixedRealitySurfaceObserverProfileInspector_OnEnable - commentId: M:XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySurfaceObserverProfileInspector.OnEnable - fullName: XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySurfaceObserverProfileInspector.OnEnable() - nameWithType: BaseMixedRealitySurfaceObserverProfileInspector.OnEnable() -- uid: XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySurfaceObserverProfileInspector.OnEnable* - name: OnEnable - href: api/XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySurfaceObserverProfileInspector.html#XRTK_Editor_Profiles_SpatialAwareness_BaseMixedRealitySurfaceObserverProfileInspector_OnEnable_ - commentId: Overload:XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySurfaceObserverProfileInspector.OnEnable - isSpec: "True" - fullName: XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySurfaceObserverProfileInspector.OnEnable - nameWithType: BaseMixedRealitySurfaceObserverProfileInspector.OnEnable -- uid: XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySurfaceObserverProfileInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySurfaceObserverProfileInspector.html#XRTK_Editor_Profiles_SpatialAwareness_BaseMixedRealitySurfaceObserverProfileInspector_OnInspectorGUI - commentId: M:XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySurfaceObserverProfileInspector.OnInspectorGUI - fullName: XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySurfaceObserverProfileInspector.OnInspectorGUI() - nameWithType: BaseMixedRealitySurfaceObserverProfileInspector.OnInspectorGUI() -- uid: XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySurfaceObserverProfileInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySurfaceObserverProfileInspector.html#XRTK_Editor_Profiles_SpatialAwareness_BaseMixedRealitySurfaceObserverProfileInspector_OnInspectorGUI_ - commentId: Overload:XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySurfaceObserverProfileInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.Editor.Profiles.SpatialAwareness.BaseMixedRealitySurfaceObserverProfileInspector.OnInspectorGUI - nameWithType: BaseMixedRealitySurfaceObserverProfileInspector.OnInspectorGUI -- uid: XRTK.Editor.Profiles.SpatialAwareness.MixedRealitySpatialAwarenessSystemProfileInspector - name: MixedRealitySpatialAwarenessSystemProfileInspector - href: api/XRTK.Editor.Profiles.SpatialAwareness.MixedRealitySpatialAwarenessSystemProfileInspector.html - commentId: T:XRTK.Editor.Profiles.SpatialAwareness.MixedRealitySpatialAwarenessSystemProfileInspector - fullName: XRTK.Editor.Profiles.SpatialAwareness.MixedRealitySpatialAwarenessSystemProfileInspector - nameWithType: MixedRealitySpatialAwarenessSystemProfileInspector -- uid: XRTK.Editor.Profiles.SpatialAwareness.MixedRealitySpatialAwarenessSystemProfileInspector.OnEnable - name: OnEnable() - href: api/XRTK.Editor.Profiles.SpatialAwareness.MixedRealitySpatialAwarenessSystemProfileInspector.html#XRTK_Editor_Profiles_SpatialAwareness_MixedRealitySpatialAwarenessSystemProfileInspector_OnEnable - commentId: M:XRTK.Editor.Profiles.SpatialAwareness.MixedRealitySpatialAwarenessSystemProfileInspector.OnEnable - fullName: XRTK.Editor.Profiles.SpatialAwareness.MixedRealitySpatialAwarenessSystemProfileInspector.OnEnable() - nameWithType: MixedRealitySpatialAwarenessSystemProfileInspector.OnEnable() -- uid: XRTK.Editor.Profiles.SpatialAwareness.MixedRealitySpatialAwarenessSystemProfileInspector.OnEnable* - name: OnEnable - href: api/XRTK.Editor.Profiles.SpatialAwareness.MixedRealitySpatialAwarenessSystemProfileInspector.html#XRTK_Editor_Profiles_SpatialAwareness_MixedRealitySpatialAwarenessSystemProfileInspector_OnEnable_ - commentId: Overload:XRTK.Editor.Profiles.SpatialAwareness.MixedRealitySpatialAwarenessSystemProfileInspector.OnEnable - isSpec: "True" - fullName: XRTK.Editor.Profiles.SpatialAwareness.MixedRealitySpatialAwarenessSystemProfileInspector.OnEnable - nameWithType: MixedRealitySpatialAwarenessSystemProfileInspector.OnEnable -- uid: XRTK.Editor.Profiles.SpatialAwareness.MixedRealitySpatialAwarenessSystemProfileInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.Editor.Profiles.SpatialAwareness.MixedRealitySpatialAwarenessSystemProfileInspector.html#XRTK_Editor_Profiles_SpatialAwareness_MixedRealitySpatialAwarenessSystemProfileInspector_OnInspectorGUI - commentId: M:XRTK.Editor.Profiles.SpatialAwareness.MixedRealitySpatialAwarenessSystemProfileInspector.OnInspectorGUI - fullName: XRTK.Editor.Profiles.SpatialAwareness.MixedRealitySpatialAwarenessSystemProfileInspector.OnInspectorGUI() - nameWithType: MixedRealitySpatialAwarenessSystemProfileInspector.OnInspectorGUI() -- uid: XRTK.Editor.Profiles.SpatialAwareness.MixedRealitySpatialAwarenessSystemProfileInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.Editor.Profiles.SpatialAwareness.MixedRealitySpatialAwarenessSystemProfileInspector.html#XRTK_Editor_Profiles_SpatialAwareness_MixedRealitySpatialAwarenessSystemProfileInspector_OnInspectorGUI_ - commentId: Overload:XRTK.Editor.Profiles.SpatialAwareness.MixedRealitySpatialAwarenessSystemProfileInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.Editor.Profiles.SpatialAwareness.MixedRealitySpatialAwarenessSystemProfileInspector.OnInspectorGUI - nameWithType: MixedRealitySpatialAwarenessSystemProfileInspector.OnInspectorGUI -- uid: XRTK.Editor.Profiles.TeleportSystem - name: XRTK.Editor.Profiles.TeleportSystem - href: api/XRTK.Editor.Profiles.TeleportSystem.html - commentId: N:XRTK.Editor.Profiles.TeleportSystem - fullName: XRTK.Editor.Profiles.TeleportSystem - nameWithType: XRTK.Editor.Profiles.TeleportSystem -- uid: XRTK.Editor.Profiles.TeleportSystem.MixedRealityTeleportSystemProfileInspector - name: MixedRealityTeleportSystemProfileInspector - href: api/XRTK.Editor.Profiles.TeleportSystem.MixedRealityTeleportSystemProfileInspector.html - commentId: T:XRTK.Editor.Profiles.TeleportSystem.MixedRealityTeleportSystemProfileInspector - fullName: XRTK.Editor.Profiles.TeleportSystem.MixedRealityTeleportSystemProfileInspector - nameWithType: MixedRealityTeleportSystemProfileInspector -- uid: XRTK.Editor.Profiles.TeleportSystem.MixedRealityTeleportSystemProfileInspector.OnEnable - name: OnEnable() - href: api/XRTK.Editor.Profiles.TeleportSystem.MixedRealityTeleportSystemProfileInspector.html#XRTK_Editor_Profiles_TeleportSystem_MixedRealityTeleportSystemProfileInspector_OnEnable - commentId: M:XRTK.Editor.Profiles.TeleportSystem.MixedRealityTeleportSystemProfileInspector.OnEnable - fullName: XRTK.Editor.Profiles.TeleportSystem.MixedRealityTeleportSystemProfileInspector.OnEnable() - nameWithType: MixedRealityTeleportSystemProfileInspector.OnEnable() -- uid: XRTK.Editor.Profiles.TeleportSystem.MixedRealityTeleportSystemProfileInspector.OnEnable* - name: OnEnable - href: api/XRTK.Editor.Profiles.TeleportSystem.MixedRealityTeleportSystemProfileInspector.html#XRTK_Editor_Profiles_TeleportSystem_MixedRealityTeleportSystemProfileInspector_OnEnable_ - commentId: Overload:XRTK.Editor.Profiles.TeleportSystem.MixedRealityTeleportSystemProfileInspector.OnEnable - isSpec: "True" - fullName: XRTK.Editor.Profiles.TeleportSystem.MixedRealityTeleportSystemProfileInspector.OnEnable - nameWithType: MixedRealityTeleportSystemProfileInspector.OnEnable -- uid: XRTK.Editor.Profiles.TeleportSystem.MixedRealityTeleportSystemProfileInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.Editor.Profiles.TeleportSystem.MixedRealityTeleportSystemProfileInspector.html#XRTK_Editor_Profiles_TeleportSystem_MixedRealityTeleportSystemProfileInspector_OnInspectorGUI - commentId: M:XRTK.Editor.Profiles.TeleportSystem.MixedRealityTeleportSystemProfileInspector.OnInspectorGUI - fullName: XRTK.Editor.Profiles.TeleportSystem.MixedRealityTeleportSystemProfileInspector.OnInspectorGUI() - nameWithType: MixedRealityTeleportSystemProfileInspector.OnInspectorGUI() -- uid: XRTK.Editor.Profiles.TeleportSystem.MixedRealityTeleportSystemProfileInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.Editor.Profiles.TeleportSystem.MixedRealityTeleportSystemProfileInspector.html#XRTK_Editor_Profiles_TeleportSystem_MixedRealityTeleportSystemProfileInspector_OnInspectorGUI_ - commentId: Overload:XRTK.Editor.Profiles.TeleportSystem.MixedRealityTeleportSystemProfileInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.Editor.Profiles.TeleportSystem.MixedRealityTeleportSystemProfileInspector.OnInspectorGUI - nameWithType: MixedRealityTeleportSystemProfileInspector.OnInspectorGUI -- uid: XRTK.Editor.Profiles.TeleportSystem.MixedRealityTeleportValidationDataProviderProfileInspector - name: MixedRealityTeleportValidationDataProviderProfileInspector - href: api/XRTK.Editor.Profiles.TeleportSystem.MixedRealityTeleportValidationDataProviderProfileInspector.html - commentId: T:XRTK.Editor.Profiles.TeleportSystem.MixedRealityTeleportValidationDataProviderProfileInspector - fullName: XRTK.Editor.Profiles.TeleportSystem.MixedRealityTeleportValidationDataProviderProfileInspector - nameWithType: MixedRealityTeleportValidationDataProviderProfileInspector -- uid: XRTK.Editor.Profiles.TeleportSystem.MixedRealityTeleportValidationDataProviderProfileInspector.OnEnable - name: OnEnable() - href: api/XRTK.Editor.Profiles.TeleportSystem.MixedRealityTeleportValidationDataProviderProfileInspector.html#XRTK_Editor_Profiles_TeleportSystem_MixedRealityTeleportValidationDataProviderProfileInspector_OnEnable - commentId: M:XRTK.Editor.Profiles.TeleportSystem.MixedRealityTeleportValidationDataProviderProfileInspector.OnEnable - fullName: XRTK.Editor.Profiles.TeleportSystem.MixedRealityTeleportValidationDataProviderProfileInspector.OnEnable() - nameWithType: MixedRealityTeleportValidationDataProviderProfileInspector.OnEnable() -- uid: XRTK.Editor.Profiles.TeleportSystem.MixedRealityTeleportValidationDataProviderProfileInspector.OnEnable* - name: OnEnable - href: api/XRTK.Editor.Profiles.TeleportSystem.MixedRealityTeleportValidationDataProviderProfileInspector.html#XRTK_Editor_Profiles_TeleportSystem_MixedRealityTeleportValidationDataProviderProfileInspector_OnEnable_ - commentId: Overload:XRTK.Editor.Profiles.TeleportSystem.MixedRealityTeleportValidationDataProviderProfileInspector.OnEnable - isSpec: "True" - fullName: XRTK.Editor.Profiles.TeleportSystem.MixedRealityTeleportValidationDataProviderProfileInspector.OnEnable - nameWithType: MixedRealityTeleportValidationDataProviderProfileInspector.OnEnable -- uid: XRTK.Editor.Profiles.TeleportSystem.MixedRealityTeleportValidationDataProviderProfileInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.Editor.Profiles.TeleportSystem.MixedRealityTeleportValidationDataProviderProfileInspector.html#XRTK_Editor_Profiles_TeleportSystem_MixedRealityTeleportValidationDataProviderProfileInspector_OnInspectorGUI - commentId: M:XRTK.Editor.Profiles.TeleportSystem.MixedRealityTeleportValidationDataProviderProfileInspector.OnInspectorGUI - fullName: XRTK.Editor.Profiles.TeleportSystem.MixedRealityTeleportValidationDataProviderProfileInspector.OnInspectorGUI() - nameWithType: MixedRealityTeleportValidationDataProviderProfileInspector.OnInspectorGUI() -- uid: XRTK.Editor.Profiles.TeleportSystem.MixedRealityTeleportValidationDataProviderProfileInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.Editor.Profiles.TeleportSystem.MixedRealityTeleportValidationDataProviderProfileInspector.html#XRTK_Editor_Profiles_TeleportSystem_MixedRealityTeleportValidationDataProviderProfileInspector_OnInspectorGUI_ - commentId: Overload:XRTK.Editor.Profiles.TeleportSystem.MixedRealityTeleportValidationDataProviderProfileInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.Editor.Profiles.TeleportSystem.MixedRealityTeleportValidationDataProviderProfileInspector.OnInspectorGUI - nameWithType: MixedRealityTeleportValidationDataProviderProfileInspector.OnInspectorGUI -- uid: XRTK.Editor.PropertyDrawers - name: XRTK.Editor.PropertyDrawers - href: api/XRTK.Editor.PropertyDrawers.html - commentId: N:XRTK.Editor.PropertyDrawers - fullName: XRTK.Editor.PropertyDrawers - nameWithType: XRTK.Editor.PropertyDrawers -- uid: XRTK.Editor.PropertyDrawers.AxisConstraintAttributeDrawer - name: AxisConstraintAttributeDrawer - href: api/XRTK.Editor.PropertyDrawers.AxisConstraintAttributeDrawer.html - commentId: T:XRTK.Editor.PropertyDrawers.AxisConstraintAttributeDrawer - fullName: XRTK.Editor.PropertyDrawers.AxisConstraintAttributeDrawer - nameWithType: AxisConstraintAttributeDrawer -- uid: XRTK.Editor.PropertyDrawers.AxisConstraintAttributeDrawer.OnGUI(UnityEngine.Rect,UnityEditor.SerializedProperty,UnityEngine.GUIContent) - name: OnGUI(Rect, SerializedProperty, GUIContent) - href: api/XRTK.Editor.PropertyDrawers.AxisConstraintAttributeDrawer.html#XRTK_Editor_PropertyDrawers_AxisConstraintAttributeDrawer_OnGUI_UnityEngine_Rect_UnityEditor_SerializedProperty_UnityEngine_GUIContent_ - commentId: M:XRTK.Editor.PropertyDrawers.AxisConstraintAttributeDrawer.OnGUI(UnityEngine.Rect,UnityEditor.SerializedProperty,UnityEngine.GUIContent) - fullName: XRTK.Editor.PropertyDrawers.AxisConstraintAttributeDrawer.OnGUI(UnityEngine.Rect, UnityEditor.SerializedProperty, UnityEngine.GUIContent) - nameWithType: AxisConstraintAttributeDrawer.OnGUI(Rect, SerializedProperty, GUIContent) -- uid: XRTK.Editor.PropertyDrawers.AxisConstraintAttributeDrawer.OnGUI* - name: OnGUI - href: api/XRTK.Editor.PropertyDrawers.AxisConstraintAttributeDrawer.html#XRTK_Editor_PropertyDrawers_AxisConstraintAttributeDrawer_OnGUI_ - commentId: Overload:XRTK.Editor.PropertyDrawers.AxisConstraintAttributeDrawer.OnGUI - isSpec: "True" - fullName: XRTK.Editor.PropertyDrawers.AxisConstraintAttributeDrawer.OnGUI - nameWithType: AxisConstraintAttributeDrawer.OnGUI -- uid: XRTK.Editor.PropertyDrawers.EnumFlagsAttributeDrawer - name: EnumFlagsAttributeDrawer - href: api/XRTK.Editor.PropertyDrawers.EnumFlagsAttributeDrawer.html - commentId: T:XRTK.Editor.PropertyDrawers.EnumFlagsAttributeDrawer - fullName: XRTK.Editor.PropertyDrawers.EnumFlagsAttributeDrawer - nameWithType: EnumFlagsAttributeDrawer -- uid: XRTK.Editor.PropertyDrawers.EnumFlagsAttributeDrawer.OnGUI(UnityEngine.Rect,UnityEditor.SerializedProperty,UnityEngine.GUIContent) - name: OnGUI(Rect, SerializedProperty, GUIContent) - href: api/XRTK.Editor.PropertyDrawers.EnumFlagsAttributeDrawer.html#XRTK_Editor_PropertyDrawers_EnumFlagsAttributeDrawer_OnGUI_UnityEngine_Rect_UnityEditor_SerializedProperty_UnityEngine_GUIContent_ - commentId: M:XRTK.Editor.PropertyDrawers.EnumFlagsAttributeDrawer.OnGUI(UnityEngine.Rect,UnityEditor.SerializedProperty,UnityEngine.GUIContent) - fullName: XRTK.Editor.PropertyDrawers.EnumFlagsAttributeDrawer.OnGUI(UnityEngine.Rect, UnityEditor.SerializedProperty, UnityEngine.GUIContent) - nameWithType: EnumFlagsAttributeDrawer.OnGUI(Rect, SerializedProperty, GUIContent) -- uid: XRTK.Editor.PropertyDrawers.EnumFlagsAttributeDrawer.OnGUI* - name: OnGUI - href: api/XRTK.Editor.PropertyDrawers.EnumFlagsAttributeDrawer.html#XRTK_Editor_PropertyDrawers_EnumFlagsAttributeDrawer_OnGUI_ - commentId: Overload:XRTK.Editor.PropertyDrawers.EnumFlagsAttributeDrawer.OnGUI - isSpec: "True" - fullName: XRTK.Editor.PropertyDrawers.EnumFlagsAttributeDrawer.OnGUI - nameWithType: EnumFlagsAttributeDrawer.OnGUI -- uid: XRTK.Editor.PropertyDrawers.InputActionPropertyDrawer - name: InputActionPropertyDrawer - href: api/XRTK.Editor.PropertyDrawers.InputActionPropertyDrawer.html - commentId: T:XRTK.Editor.PropertyDrawers.InputActionPropertyDrawer - fullName: XRTK.Editor.PropertyDrawers.InputActionPropertyDrawer - nameWithType: InputActionPropertyDrawer -- uid: XRTK.Editor.PropertyDrawers.InputActionPropertyDrawer.OnGUI(UnityEngine.Rect,UnityEditor.SerializedProperty,UnityEngine.GUIContent) - name: OnGUI(Rect, SerializedProperty, GUIContent) - href: api/XRTK.Editor.PropertyDrawers.InputActionPropertyDrawer.html#XRTK_Editor_PropertyDrawers_InputActionPropertyDrawer_OnGUI_UnityEngine_Rect_UnityEditor_SerializedProperty_UnityEngine_GUIContent_ - commentId: M:XRTK.Editor.PropertyDrawers.InputActionPropertyDrawer.OnGUI(UnityEngine.Rect,UnityEditor.SerializedProperty,UnityEngine.GUIContent) - fullName: XRTK.Editor.PropertyDrawers.InputActionPropertyDrawer.OnGUI(UnityEngine.Rect, UnityEditor.SerializedProperty, UnityEngine.GUIContent) - nameWithType: InputActionPropertyDrawer.OnGUI(Rect, SerializedProperty, GUIContent) -- uid: XRTK.Editor.PropertyDrawers.InputActionPropertyDrawer.OnGUI* - name: OnGUI - href: api/XRTK.Editor.PropertyDrawers.InputActionPropertyDrawer.html#XRTK_Editor_PropertyDrawers_InputActionPropertyDrawer_OnGUI_ - commentId: Overload:XRTK.Editor.PropertyDrawers.InputActionPropertyDrawer.OnGUI - isSpec: "True" - fullName: XRTK.Editor.PropertyDrawers.InputActionPropertyDrawer.OnGUI - nameWithType: InputActionPropertyDrawer.OnGUI -- uid: XRTK.Editor.PropertyDrawers.MinPropertyDrawer - name: MinPropertyDrawer - href: api/XRTK.Editor.PropertyDrawers.MinPropertyDrawer.html - commentId: T:XRTK.Editor.PropertyDrawers.MinPropertyDrawer - fullName: XRTK.Editor.PropertyDrawers.MinPropertyDrawer - nameWithType: MinPropertyDrawer -- uid: XRTK.Editor.PropertyDrawers.MinPropertyDrawer.OnGUI(UnityEngine.Rect,UnityEditor.SerializedProperty,UnityEngine.GUIContent) - name: OnGUI(Rect, SerializedProperty, GUIContent) - href: api/XRTK.Editor.PropertyDrawers.MinPropertyDrawer.html#XRTK_Editor_PropertyDrawers_MinPropertyDrawer_OnGUI_UnityEngine_Rect_UnityEditor_SerializedProperty_UnityEngine_GUIContent_ - commentId: M:XRTK.Editor.PropertyDrawers.MinPropertyDrawer.OnGUI(UnityEngine.Rect,UnityEditor.SerializedProperty,UnityEngine.GUIContent) - fullName: XRTK.Editor.PropertyDrawers.MinPropertyDrawer.OnGUI(UnityEngine.Rect, UnityEditor.SerializedProperty, UnityEngine.GUIContent) - nameWithType: MinPropertyDrawer.OnGUI(Rect, SerializedProperty, GUIContent) -- uid: XRTK.Editor.PropertyDrawers.MinPropertyDrawer.OnGUI* - name: OnGUI - href: api/XRTK.Editor.PropertyDrawers.MinPropertyDrawer.html#XRTK_Editor_PropertyDrawers_MinPropertyDrawer_OnGUI_ - commentId: Overload:XRTK.Editor.PropertyDrawers.MinPropertyDrawer.OnGUI - isSpec: "True" - fullName: XRTK.Editor.PropertyDrawers.MinPropertyDrawer.OnGUI - nameWithType: MinPropertyDrawer.OnGUI -- uid: XRTK.Editor.PropertyDrawers.MixedRealityInputActionDropdown - name: MixedRealityInputActionDropdown - href: api/XRTK.Editor.PropertyDrawers.MixedRealityInputActionDropdown.html - commentId: T:XRTK.Editor.PropertyDrawers.MixedRealityInputActionDropdown - fullName: XRTK.Editor.PropertyDrawers.MixedRealityInputActionDropdown - nameWithType: MixedRealityInputActionDropdown -- uid: XRTK.Editor.PropertyDrawers.MixedRealityInputActionDropdown.OnGui(UnityEngine.GUIContent,UnityEditor.SerializedProperty,XRTK.Definitions.Utilities.AxisType,UnityEngine.GUILayoutOption[]) - name: OnGui(GUIContent, SerializedProperty, AxisType, GUILayoutOption[]) - href: api/XRTK.Editor.PropertyDrawers.MixedRealityInputActionDropdown.html#XRTK_Editor_PropertyDrawers_MixedRealityInputActionDropdown_OnGui_UnityEngine_GUIContent_UnityEditor_SerializedProperty_XRTK_Definitions_Utilities_AxisType_UnityEngine_GUILayoutOption___ - commentId: M:XRTK.Editor.PropertyDrawers.MixedRealityInputActionDropdown.OnGui(UnityEngine.GUIContent,UnityEditor.SerializedProperty,XRTK.Definitions.Utilities.AxisType,UnityEngine.GUILayoutOption[]) - name.vb: OnGui(GUIContent, SerializedProperty, AxisType, GUILayoutOption()) - fullName: XRTK.Editor.PropertyDrawers.MixedRealityInputActionDropdown.OnGui(UnityEngine.GUIContent, UnityEditor.SerializedProperty, XRTK.Definitions.Utilities.AxisType, UnityEngine.GUILayoutOption[]) - fullName.vb: XRTK.Editor.PropertyDrawers.MixedRealityInputActionDropdown.OnGui(UnityEngine.GUIContent, UnityEditor.SerializedProperty, XRTK.Definitions.Utilities.AxisType, UnityEngine.GUILayoutOption()) - nameWithType: MixedRealityInputActionDropdown.OnGui(GUIContent, SerializedProperty, AxisType, GUILayoutOption[]) - nameWithType.vb: MixedRealityInputActionDropdown.OnGui(GUIContent, SerializedProperty, AxisType, GUILayoutOption()) -- uid: XRTK.Editor.PropertyDrawers.MixedRealityInputActionDropdown.OnGui(UnityEngine.Rect,UnityEditor.SerializedProperty,UnityEngine.GUIContent,XRTK.Definitions.Utilities.AxisType) - name: OnGui(Rect, SerializedProperty, GUIContent, AxisType) - href: api/XRTK.Editor.PropertyDrawers.MixedRealityInputActionDropdown.html#XRTK_Editor_PropertyDrawers_MixedRealityInputActionDropdown_OnGui_UnityEngine_Rect_UnityEditor_SerializedProperty_UnityEngine_GUIContent_XRTK_Definitions_Utilities_AxisType_ - commentId: M:XRTK.Editor.PropertyDrawers.MixedRealityInputActionDropdown.OnGui(UnityEngine.Rect,UnityEditor.SerializedProperty,UnityEngine.GUIContent,XRTK.Definitions.Utilities.AxisType) - fullName: XRTK.Editor.PropertyDrawers.MixedRealityInputActionDropdown.OnGui(UnityEngine.Rect, UnityEditor.SerializedProperty, UnityEngine.GUIContent, XRTK.Definitions.Utilities.AxisType) - nameWithType: MixedRealityInputActionDropdown.OnGui(Rect, SerializedProperty, GUIContent, AxisType) -- uid: XRTK.Editor.PropertyDrawers.MixedRealityInputActionDropdown.OnGui* - name: OnGui - href: api/XRTK.Editor.PropertyDrawers.MixedRealityInputActionDropdown.html#XRTK_Editor_PropertyDrawers_MixedRealityInputActionDropdown_OnGui_ - commentId: Overload:XRTK.Editor.PropertyDrawers.MixedRealityInputActionDropdown.OnGui - isSpec: "True" - fullName: XRTK.Editor.PropertyDrawers.MixedRealityInputActionDropdown.OnGui - nameWithType: MixedRealityInputActionDropdown.OnGui -- uid: XRTK.Editor.PropertyDrawers.MixedRealityPosePropertyDrawer - name: MixedRealityPosePropertyDrawer - href: api/XRTK.Editor.PropertyDrawers.MixedRealityPosePropertyDrawer.html - commentId: T:XRTK.Editor.PropertyDrawers.MixedRealityPosePropertyDrawer - fullName: XRTK.Editor.PropertyDrawers.MixedRealityPosePropertyDrawer - nameWithType: MixedRealityPosePropertyDrawer -- uid: XRTK.Editor.PropertyDrawers.MixedRealityPosePropertyDrawer.GetPropertyHeight(UnityEditor.SerializedProperty,UnityEngine.GUIContent) - name: GetPropertyHeight(SerializedProperty, GUIContent) - href: api/XRTK.Editor.PropertyDrawers.MixedRealityPosePropertyDrawer.html#XRTK_Editor_PropertyDrawers_MixedRealityPosePropertyDrawer_GetPropertyHeight_UnityEditor_SerializedProperty_UnityEngine_GUIContent_ - commentId: M:XRTK.Editor.PropertyDrawers.MixedRealityPosePropertyDrawer.GetPropertyHeight(UnityEditor.SerializedProperty,UnityEngine.GUIContent) - fullName: XRTK.Editor.PropertyDrawers.MixedRealityPosePropertyDrawer.GetPropertyHeight(UnityEditor.SerializedProperty, UnityEngine.GUIContent) - nameWithType: MixedRealityPosePropertyDrawer.GetPropertyHeight(SerializedProperty, GUIContent) -- uid: XRTK.Editor.PropertyDrawers.MixedRealityPosePropertyDrawer.GetPropertyHeight* - name: GetPropertyHeight - href: api/XRTK.Editor.PropertyDrawers.MixedRealityPosePropertyDrawer.html#XRTK_Editor_PropertyDrawers_MixedRealityPosePropertyDrawer_GetPropertyHeight_ - commentId: Overload:XRTK.Editor.PropertyDrawers.MixedRealityPosePropertyDrawer.GetPropertyHeight - isSpec: "True" - fullName: XRTK.Editor.PropertyDrawers.MixedRealityPosePropertyDrawer.GetPropertyHeight - nameWithType: MixedRealityPosePropertyDrawer.GetPropertyHeight -- uid: XRTK.Editor.PropertyDrawers.MixedRealityPosePropertyDrawer.OnGUI(UnityEngine.Rect,UnityEditor.SerializedProperty,UnityEngine.GUIContent) - name: OnGUI(Rect, SerializedProperty, GUIContent) - href: api/XRTK.Editor.PropertyDrawers.MixedRealityPosePropertyDrawer.html#XRTK_Editor_PropertyDrawers_MixedRealityPosePropertyDrawer_OnGUI_UnityEngine_Rect_UnityEditor_SerializedProperty_UnityEngine_GUIContent_ - commentId: M:XRTK.Editor.PropertyDrawers.MixedRealityPosePropertyDrawer.OnGUI(UnityEngine.Rect,UnityEditor.SerializedProperty,UnityEngine.GUIContent) - fullName: XRTK.Editor.PropertyDrawers.MixedRealityPosePropertyDrawer.OnGUI(UnityEngine.Rect, UnityEditor.SerializedProperty, UnityEngine.GUIContent) - nameWithType: MixedRealityPosePropertyDrawer.OnGUI(Rect, SerializedProperty, GUIContent) -- uid: XRTK.Editor.PropertyDrawers.MixedRealityPosePropertyDrawer.OnGUI* - name: OnGUI - href: api/XRTK.Editor.PropertyDrawers.MixedRealityPosePropertyDrawer.html#XRTK_Editor_PropertyDrawers_MixedRealityPosePropertyDrawer_OnGUI_ - commentId: Overload:XRTK.Editor.PropertyDrawers.MixedRealityPosePropertyDrawer.OnGUI - isSpec: "True" - fullName: XRTK.Editor.PropertyDrawers.MixedRealityPosePropertyDrawer.OnGUI - nameWithType: MixedRealityPosePropertyDrawer.OnGUI -- uid: XRTK.Editor.PropertyDrawers.MixedRealityProfilePropertyDrawer - name: MixedRealityProfilePropertyDrawer - href: api/XRTK.Editor.PropertyDrawers.MixedRealityProfilePropertyDrawer.html - commentId: T:XRTK.Editor.PropertyDrawers.MixedRealityProfilePropertyDrawer - fullName: XRTK.Editor.PropertyDrawers.MixedRealityProfilePropertyDrawer - nameWithType: MixedRealityProfilePropertyDrawer -- uid: XRTK.Editor.PropertyDrawers.MixedRealityProfilePropertyDrawer.DrawCloneButtons - name: DrawCloneButtons - href: api/XRTK.Editor.PropertyDrawers.MixedRealityProfilePropertyDrawer.html#XRTK_Editor_PropertyDrawers_MixedRealityProfilePropertyDrawer_DrawCloneButtons - commentId: P:XRTK.Editor.PropertyDrawers.MixedRealityProfilePropertyDrawer.DrawCloneButtons - fullName: XRTK.Editor.PropertyDrawers.MixedRealityProfilePropertyDrawer.DrawCloneButtons - nameWithType: MixedRealityProfilePropertyDrawer.DrawCloneButtons -- uid: XRTK.Editor.PropertyDrawers.MixedRealityProfilePropertyDrawer.DrawCloneButtons* - name: DrawCloneButtons - href: api/XRTK.Editor.PropertyDrawers.MixedRealityProfilePropertyDrawer.html#XRTK_Editor_PropertyDrawers_MixedRealityProfilePropertyDrawer_DrawCloneButtons_ - commentId: Overload:XRTK.Editor.PropertyDrawers.MixedRealityProfilePropertyDrawer.DrawCloneButtons - isSpec: "True" - fullName: XRTK.Editor.PropertyDrawers.MixedRealityProfilePropertyDrawer.DrawCloneButtons - nameWithType: MixedRealityProfilePropertyDrawer.DrawCloneButtons -- uid: XRTK.Editor.PropertyDrawers.MixedRealityProfilePropertyDrawer.OnGUI(UnityEngine.Rect,UnityEditor.SerializedProperty,UnityEngine.GUIContent) - name: OnGUI(Rect, SerializedProperty, GUIContent) - href: api/XRTK.Editor.PropertyDrawers.MixedRealityProfilePropertyDrawer.html#XRTK_Editor_PropertyDrawers_MixedRealityProfilePropertyDrawer_OnGUI_UnityEngine_Rect_UnityEditor_SerializedProperty_UnityEngine_GUIContent_ - commentId: M:XRTK.Editor.PropertyDrawers.MixedRealityProfilePropertyDrawer.OnGUI(UnityEngine.Rect,UnityEditor.SerializedProperty,UnityEngine.GUIContent) - fullName: XRTK.Editor.PropertyDrawers.MixedRealityProfilePropertyDrawer.OnGUI(UnityEngine.Rect, UnityEditor.SerializedProperty, UnityEngine.GUIContent) - nameWithType: MixedRealityProfilePropertyDrawer.OnGUI(Rect, SerializedProperty, GUIContent) -- uid: XRTK.Editor.PropertyDrawers.MixedRealityProfilePropertyDrawer.OnGUI* - name: OnGUI - href: api/XRTK.Editor.PropertyDrawers.MixedRealityProfilePropertyDrawer.html#XRTK_Editor_PropertyDrawers_MixedRealityProfilePropertyDrawer_OnGUI_ - commentId: Overload:XRTK.Editor.PropertyDrawers.MixedRealityProfilePropertyDrawer.OnGUI - isSpec: "True" - fullName: XRTK.Editor.PropertyDrawers.MixedRealityProfilePropertyDrawer.OnGUI - nameWithType: MixedRealityProfilePropertyDrawer.OnGUI -- uid: XRTK.Editor.PropertyDrawers.MixedRealityProfilePropertyDrawer.ParentProfileOverride - name: ParentProfileOverride - href: api/XRTK.Editor.PropertyDrawers.MixedRealityProfilePropertyDrawer.html#XRTK_Editor_PropertyDrawers_MixedRealityProfilePropertyDrawer_ParentProfileOverride - commentId: P:XRTK.Editor.PropertyDrawers.MixedRealityProfilePropertyDrawer.ParentProfileOverride - fullName: XRTK.Editor.PropertyDrawers.MixedRealityProfilePropertyDrawer.ParentProfileOverride - nameWithType: MixedRealityProfilePropertyDrawer.ParentProfileOverride -- uid: XRTK.Editor.PropertyDrawers.MixedRealityProfilePropertyDrawer.ParentProfileOverride* - name: ParentProfileOverride - href: api/XRTK.Editor.PropertyDrawers.MixedRealityProfilePropertyDrawer.html#XRTK_Editor_PropertyDrawers_MixedRealityProfilePropertyDrawer_ParentProfileOverride_ - commentId: Overload:XRTK.Editor.PropertyDrawers.MixedRealityProfilePropertyDrawer.ParentProfileOverride - isSpec: "True" - fullName: XRTK.Editor.PropertyDrawers.MixedRealityProfilePropertyDrawer.ParentProfileOverride - nameWithType: MixedRealityProfilePropertyDrawer.ParentProfileOverride -- uid: XRTK.Editor.PropertyDrawers.MixedRealityProfilePropertyDrawer.ProfileTypeOverride - name: ProfileTypeOverride - href: api/XRTK.Editor.PropertyDrawers.MixedRealityProfilePropertyDrawer.html#XRTK_Editor_PropertyDrawers_MixedRealityProfilePropertyDrawer_ProfileTypeOverride - commentId: P:XRTK.Editor.PropertyDrawers.MixedRealityProfilePropertyDrawer.ProfileTypeOverride - fullName: XRTK.Editor.PropertyDrawers.MixedRealityProfilePropertyDrawer.ProfileTypeOverride - nameWithType: MixedRealityProfilePropertyDrawer.ProfileTypeOverride -- uid: XRTK.Editor.PropertyDrawers.MixedRealityProfilePropertyDrawer.ProfileTypeOverride* - name: ProfileTypeOverride - href: api/XRTK.Editor.PropertyDrawers.MixedRealityProfilePropertyDrawer.html#XRTK_Editor_PropertyDrawers_MixedRealityProfilePropertyDrawer_ProfileTypeOverride_ - commentId: Overload:XRTK.Editor.PropertyDrawers.MixedRealityProfilePropertyDrawer.ProfileTypeOverride - isSpec: "True" - fullName: XRTK.Editor.PropertyDrawers.MixedRealityProfilePropertyDrawer.ProfileTypeOverride - nameWithType: MixedRealityProfilePropertyDrawer.ProfileTypeOverride -- uid: XRTK.Editor.PropertyDrawers.PhysicsLayerAttributeDrawer - name: PhysicsLayerAttributeDrawer - href: api/XRTK.Editor.PropertyDrawers.PhysicsLayerAttributeDrawer.html - commentId: T:XRTK.Editor.PropertyDrawers.PhysicsLayerAttributeDrawer - fullName: XRTK.Editor.PropertyDrawers.PhysicsLayerAttributeDrawer - nameWithType: PhysicsLayerAttributeDrawer -- uid: XRTK.Editor.PropertyDrawers.PhysicsLayerAttributeDrawer.OnGUI(UnityEngine.Rect,UnityEditor.SerializedProperty,UnityEngine.GUIContent) - name: OnGUI(Rect, SerializedProperty, GUIContent) - href: api/XRTK.Editor.PropertyDrawers.PhysicsLayerAttributeDrawer.html#XRTK_Editor_PropertyDrawers_PhysicsLayerAttributeDrawer_OnGUI_UnityEngine_Rect_UnityEditor_SerializedProperty_UnityEngine_GUIContent_ - commentId: M:XRTK.Editor.PropertyDrawers.PhysicsLayerAttributeDrawer.OnGUI(UnityEngine.Rect,UnityEditor.SerializedProperty,UnityEngine.GUIContent) - fullName: XRTK.Editor.PropertyDrawers.PhysicsLayerAttributeDrawer.OnGUI(UnityEngine.Rect, UnityEditor.SerializedProperty, UnityEngine.GUIContent) - nameWithType: PhysicsLayerAttributeDrawer.OnGUI(Rect, SerializedProperty, GUIContent) -- uid: XRTK.Editor.PropertyDrawers.PhysicsLayerAttributeDrawer.OnGUI* - name: OnGUI - href: api/XRTK.Editor.PropertyDrawers.PhysicsLayerAttributeDrawer.html#XRTK_Editor_PropertyDrawers_PhysicsLayerAttributeDrawer_OnGUI_ - commentId: Overload:XRTK.Editor.PropertyDrawers.PhysicsLayerAttributeDrawer.OnGUI - isSpec: "True" - fullName: XRTK.Editor.PropertyDrawers.PhysicsLayerAttributeDrawer.OnGUI - nameWithType: PhysicsLayerAttributeDrawer.OnGUI -- uid: XRTK.Editor.PropertyDrawers.PlatformEntryPropertyDrawer - name: PlatformEntryPropertyDrawer - href: api/XRTK.Editor.PropertyDrawers.PlatformEntryPropertyDrawer.html - commentId: T:XRTK.Editor.PropertyDrawers.PlatformEntryPropertyDrawer - fullName: XRTK.Editor.PropertyDrawers.PlatformEntryPropertyDrawer - nameWithType: PlatformEntryPropertyDrawer -- uid: XRTK.Editor.PropertyDrawers.PlatformEntryPropertyDrawer.OnGUI(UnityEngine.Rect,UnityEditor.SerializedProperty,UnityEngine.GUIContent) - name: OnGUI(Rect, SerializedProperty, GUIContent) - href: api/XRTK.Editor.PropertyDrawers.PlatformEntryPropertyDrawer.html#XRTK_Editor_PropertyDrawers_PlatformEntryPropertyDrawer_OnGUI_UnityEngine_Rect_UnityEditor_SerializedProperty_UnityEngine_GUIContent_ - commentId: M:XRTK.Editor.PropertyDrawers.PlatformEntryPropertyDrawer.OnGUI(UnityEngine.Rect,UnityEditor.SerializedProperty,UnityEngine.GUIContent) - fullName: XRTK.Editor.PropertyDrawers.PlatformEntryPropertyDrawer.OnGUI(UnityEngine.Rect, UnityEditor.SerializedProperty, UnityEngine.GUIContent) - nameWithType: PlatformEntryPropertyDrawer.OnGUI(Rect, SerializedProperty, GUIContent) -- uid: XRTK.Editor.PropertyDrawers.PlatformEntryPropertyDrawer.OnGUI* - name: OnGUI - href: api/XRTK.Editor.PropertyDrawers.PlatformEntryPropertyDrawer.html#XRTK_Editor_PropertyDrawers_PlatformEntryPropertyDrawer_OnGUI_ - commentId: Overload:XRTK.Editor.PropertyDrawers.PlatformEntryPropertyDrawer.OnGUI - isSpec: "True" - fullName: XRTK.Editor.PropertyDrawers.PlatformEntryPropertyDrawer.OnGUI - nameWithType: PlatformEntryPropertyDrawer.OnGUI -- uid: XRTK.Editor.PropertyDrawers.PrefabPropertyDrawer - name: PrefabPropertyDrawer - href: api/XRTK.Editor.PropertyDrawers.PrefabPropertyDrawer.html - commentId: T:XRTK.Editor.PropertyDrawers.PrefabPropertyDrawer - fullName: XRTK.Editor.PropertyDrawers.PrefabPropertyDrawer - nameWithType: PrefabPropertyDrawer -- uid: XRTK.Editor.PropertyDrawers.PrefabPropertyDrawer.OnGUI(UnityEngine.Rect,UnityEditor.SerializedProperty,UnityEngine.GUIContent) - name: OnGUI(Rect, SerializedProperty, GUIContent) - href: api/XRTK.Editor.PropertyDrawers.PrefabPropertyDrawer.html#XRTK_Editor_PropertyDrawers_PrefabPropertyDrawer_OnGUI_UnityEngine_Rect_UnityEditor_SerializedProperty_UnityEngine_GUIContent_ - commentId: M:XRTK.Editor.PropertyDrawers.PrefabPropertyDrawer.OnGUI(UnityEngine.Rect,UnityEditor.SerializedProperty,UnityEngine.GUIContent) - fullName: XRTK.Editor.PropertyDrawers.PrefabPropertyDrawer.OnGUI(UnityEngine.Rect, UnityEditor.SerializedProperty, UnityEngine.GUIContent) - nameWithType: PrefabPropertyDrawer.OnGUI(Rect, SerializedProperty, GUIContent) -- uid: XRTK.Editor.PropertyDrawers.PrefabPropertyDrawer.OnGUI* - name: OnGUI - href: api/XRTK.Editor.PropertyDrawers.PrefabPropertyDrawer.html#XRTK_Editor_PropertyDrawers_PrefabPropertyDrawer_OnGUI_ - commentId: Overload:XRTK.Editor.PropertyDrawers.PrefabPropertyDrawer.OnGUI - isSpec: "True" - fullName: XRTK.Editor.PropertyDrawers.PrefabPropertyDrawer.OnGUI - nameWithType: PrefabPropertyDrawer.OnGUI -- uid: XRTK.Editor.PropertyDrawers.SpeechCommandPropertyDrawer - name: SpeechCommandPropertyDrawer - href: api/XRTK.Editor.PropertyDrawers.SpeechCommandPropertyDrawer.html - commentId: T:XRTK.Editor.PropertyDrawers.SpeechCommandPropertyDrawer - fullName: XRTK.Editor.PropertyDrawers.SpeechCommandPropertyDrawer - nameWithType: SpeechCommandPropertyDrawer -- uid: XRTK.Editor.PropertyDrawers.SpeechCommandPropertyDrawer.OnGUI(UnityEngine.Rect,UnityEditor.SerializedProperty,UnityEngine.GUIContent) - name: OnGUI(Rect, SerializedProperty, GUIContent) - href: api/XRTK.Editor.PropertyDrawers.SpeechCommandPropertyDrawer.html#XRTK_Editor_PropertyDrawers_SpeechCommandPropertyDrawer_OnGUI_UnityEngine_Rect_UnityEditor_SerializedProperty_UnityEngine_GUIContent_ - commentId: M:XRTK.Editor.PropertyDrawers.SpeechCommandPropertyDrawer.OnGUI(UnityEngine.Rect,UnityEditor.SerializedProperty,UnityEngine.GUIContent) - fullName: XRTK.Editor.PropertyDrawers.SpeechCommandPropertyDrawer.OnGUI(UnityEngine.Rect, UnityEditor.SerializedProperty, UnityEngine.GUIContent) - nameWithType: SpeechCommandPropertyDrawer.OnGUI(Rect, SerializedProperty, GUIContent) -- uid: XRTK.Editor.PropertyDrawers.SpeechCommandPropertyDrawer.OnGUI* - name: OnGUI - href: api/XRTK.Editor.PropertyDrawers.SpeechCommandPropertyDrawer.html#XRTK_Editor_PropertyDrawers_SpeechCommandPropertyDrawer_OnGUI_ - commentId: Overload:XRTK.Editor.PropertyDrawers.SpeechCommandPropertyDrawer.OnGUI - isSpec: "True" - fullName: XRTK.Editor.PropertyDrawers.SpeechCommandPropertyDrawer.OnGUI - nameWithType: SpeechCommandPropertyDrawer.OnGUI -- uid: XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer - name: TypeReferencePropertyDrawer - href: api/XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.html - commentId: T:XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer - fullName: XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer - nameWithType: TypeReferencePropertyDrawer -- uid: XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.CreateNewTypeOverride - name: CreateNewTypeOverride - href: api/XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.html#XRTK_Editor_PropertyDrawers_TypeReferencePropertyDrawer_CreateNewTypeOverride - commentId: P:XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.CreateNewTypeOverride - fullName: XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.CreateNewTypeOverride - nameWithType: TypeReferencePropertyDrawer.CreateNewTypeOverride -- uid: XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.CreateNewTypeOverride* - name: CreateNewTypeOverride - href: api/XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.html#XRTK_Editor_PropertyDrawers_TypeReferencePropertyDrawer_CreateNewTypeOverride_ - commentId: Overload:XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.CreateNewTypeOverride - isSpec: "True" - fullName: XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.CreateNewTypeOverride - nameWithType: TypeReferencePropertyDrawer.CreateNewTypeOverride -- uid: XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.DisplayDropDown(UnityEngine.Rect,System.Collections.Generic.IEnumerable{System.Type},System.Type,XRTK.Definitions.Utilities.TypeGrouping,System.Type) - name: DisplayDropDown(Rect, IEnumerable, Type, TypeGrouping, Type) - href: api/XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.html#XRTK_Editor_PropertyDrawers_TypeReferencePropertyDrawer_DisplayDropDown_UnityEngine_Rect_System_Collections_Generic_IEnumerable_System_Type__System_Type_XRTK_Definitions_Utilities_TypeGrouping_System_Type_ - commentId: M:XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.DisplayDropDown(UnityEngine.Rect,System.Collections.Generic.IEnumerable{System.Type},System.Type,XRTK.Definitions.Utilities.TypeGrouping,System.Type) - name.vb: DisplayDropDown(Rect, IEnumerable(Of Type), Type, TypeGrouping, Type) - fullName: XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.DisplayDropDown(UnityEngine.Rect, System.Collections.Generic.IEnumerable, System.Type, XRTK.Definitions.Utilities.TypeGrouping, System.Type) - fullName.vb: XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.DisplayDropDown(UnityEngine.Rect, System.Collections.Generic.IEnumerable(Of System.Type), System.Type, XRTK.Definitions.Utilities.TypeGrouping, System.Type) - nameWithType: TypeReferencePropertyDrawer.DisplayDropDown(Rect, IEnumerable, Type, TypeGrouping, Type) - nameWithType.vb: TypeReferencePropertyDrawer.DisplayDropDown(Rect, IEnumerable(Of Type), Type, TypeGrouping, Type) -- uid: XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.DisplayDropDown* - name: DisplayDropDown - href: api/XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.html#XRTK_Editor_PropertyDrawers_TypeReferencePropertyDrawer_DisplayDropDown_ - commentId: Overload:XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.DisplayDropDown - isSpec: "True" - fullName: XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.DisplayDropDown - nameWithType: TypeReferencePropertyDrawer.DisplayDropDown -- uid: XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.ExcludedTypeCollectionGetter - name: ExcludedTypeCollectionGetter - href: api/XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.html#XRTK_Editor_PropertyDrawers_TypeReferencePropertyDrawer_ExcludedTypeCollectionGetter - commentId: P:XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.ExcludedTypeCollectionGetter - fullName: XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.ExcludedTypeCollectionGetter - nameWithType: TypeReferencePropertyDrawer.ExcludedTypeCollectionGetter -- uid: XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.ExcludedTypeCollectionGetter* - name: ExcludedTypeCollectionGetter - href: api/XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.html#XRTK_Editor_PropertyDrawers_TypeReferencePropertyDrawer_ExcludedTypeCollectionGetter_ - commentId: Overload:XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.ExcludedTypeCollectionGetter - isSpec: "True" - fullName: XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.ExcludedTypeCollectionGetter - nameWithType: TypeReferencePropertyDrawer.ExcludedTypeCollectionGetter -- uid: XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.FilterConstraintOverride - name: FilterConstraintOverride - href: api/XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.html#XRTK_Editor_PropertyDrawers_TypeReferencePropertyDrawer_FilterConstraintOverride - commentId: P:XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.FilterConstraintOverride - fullName: XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.FilterConstraintOverride - nameWithType: TypeReferencePropertyDrawer.FilterConstraintOverride -- uid: XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.FilterConstraintOverride* - name: FilterConstraintOverride - href: api/XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.html#XRTK_Editor_PropertyDrawers_TypeReferencePropertyDrawer_FilterConstraintOverride_ - commentId: Overload:XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.FilterConstraintOverride - isSpec: "True" - fullName: XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.FilterConstraintOverride - nameWithType: TypeReferencePropertyDrawer.FilterConstraintOverride -- uid: XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.GetPropertyHeight(UnityEditor.SerializedProperty,UnityEngine.GUIContent) - name: GetPropertyHeight(SerializedProperty, GUIContent) - href: api/XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.html#XRTK_Editor_PropertyDrawers_TypeReferencePropertyDrawer_GetPropertyHeight_UnityEditor_SerializedProperty_UnityEngine_GUIContent_ - commentId: M:XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.GetPropertyHeight(UnityEditor.SerializedProperty,UnityEngine.GUIContent) - fullName: XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.GetPropertyHeight(UnityEditor.SerializedProperty, UnityEngine.GUIContent) - nameWithType: TypeReferencePropertyDrawer.GetPropertyHeight(SerializedProperty, GUIContent) -- uid: XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.GetPropertyHeight* - name: GetPropertyHeight - href: api/XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.html#XRTK_Editor_PropertyDrawers_TypeReferencePropertyDrawer_GetPropertyHeight_ - commentId: Overload:XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.GetPropertyHeight - isSpec: "True" - fullName: XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.GetPropertyHeight - nameWithType: TypeReferencePropertyDrawer.GetPropertyHeight -- uid: XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.GroupingOverride - name: GroupingOverride - href: api/XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.html#XRTK_Editor_PropertyDrawers_TypeReferencePropertyDrawer_GroupingOverride - commentId: P:XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.GroupingOverride - fullName: XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.GroupingOverride - nameWithType: TypeReferencePropertyDrawer.GroupingOverride -- uid: XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.GroupingOverride* - name: GroupingOverride - href: api/XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.html#XRTK_Editor_PropertyDrawers_TypeReferencePropertyDrawer_GroupingOverride_ - commentId: Overload:XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.GroupingOverride - isSpec: "True" - fullName: XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.GroupingOverride - nameWithType: TypeReferencePropertyDrawer.GroupingOverride -- uid: XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.OnGUI(UnityEngine.Rect,UnityEditor.SerializedProperty,UnityEngine.GUIContent) - name: OnGUI(Rect, SerializedProperty, GUIContent) - href: api/XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.html#XRTK_Editor_PropertyDrawers_TypeReferencePropertyDrawer_OnGUI_UnityEngine_Rect_UnityEditor_SerializedProperty_UnityEngine_GUIContent_ - commentId: M:XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.OnGUI(UnityEngine.Rect,UnityEditor.SerializedProperty,UnityEngine.GUIContent) - fullName: XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.OnGUI(UnityEngine.Rect, UnityEditor.SerializedProperty, UnityEngine.GUIContent) - nameWithType: TypeReferencePropertyDrawer.OnGUI(Rect, SerializedProperty, GUIContent) -- uid: XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.OnGUI* - name: OnGUI - href: api/XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.html#XRTK_Editor_PropertyDrawers_TypeReferencePropertyDrawer_OnGUI_ - commentId: Overload:XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.OnGUI - isSpec: "True" - fullName: XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.OnGUI - nameWithType: TypeReferencePropertyDrawer.OnGUI -- uid: XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.SelectedType - name: SelectedType - href: api/XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.html#XRTK_Editor_PropertyDrawers_TypeReferencePropertyDrawer_SelectedType - commentId: P:XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.SelectedType - fullName: XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.SelectedType - nameWithType: TypeReferencePropertyDrawer.SelectedType -- uid: XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.SelectedType* - name: SelectedType - href: api/XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.html#XRTK_Editor_PropertyDrawers_TypeReferencePropertyDrawer_SelectedType_ - commentId: Overload:XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.SelectedType - isSpec: "True" - fullName: XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.SelectedType - nameWithType: TypeReferencePropertyDrawer.SelectedType -- uid: XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.TypeReferenceUpdated - name: TypeReferenceUpdated - href: api/XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.html#XRTK_Editor_PropertyDrawers_TypeReferencePropertyDrawer_TypeReferenceUpdated - commentId: F:XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.TypeReferenceUpdated - fullName: XRTK.Editor.PropertyDrawers.TypeReferencePropertyDrawer.TypeReferenceUpdated - nameWithType: TypeReferencePropertyDrawer.TypeReferenceUpdated -- uid: XRTK.Editor.PropertyDrawers.Vector3RangePropertyDrawer - name: Vector3RangePropertyDrawer - href: api/XRTK.Editor.PropertyDrawers.Vector3RangePropertyDrawer.html - commentId: T:XRTK.Editor.PropertyDrawers.Vector3RangePropertyDrawer - fullName: XRTK.Editor.PropertyDrawers.Vector3RangePropertyDrawer - nameWithType: Vector3RangePropertyDrawer -- uid: XRTK.Editor.PropertyDrawers.Vector3RangePropertyDrawer.GetPropertyHeight(UnityEditor.SerializedProperty,UnityEngine.GUIContent) - name: GetPropertyHeight(SerializedProperty, GUIContent) - href: api/XRTK.Editor.PropertyDrawers.Vector3RangePropertyDrawer.html#XRTK_Editor_PropertyDrawers_Vector3RangePropertyDrawer_GetPropertyHeight_UnityEditor_SerializedProperty_UnityEngine_GUIContent_ - commentId: M:XRTK.Editor.PropertyDrawers.Vector3RangePropertyDrawer.GetPropertyHeight(UnityEditor.SerializedProperty,UnityEngine.GUIContent) - fullName: XRTK.Editor.PropertyDrawers.Vector3RangePropertyDrawer.GetPropertyHeight(UnityEditor.SerializedProperty, UnityEngine.GUIContent) - nameWithType: Vector3RangePropertyDrawer.GetPropertyHeight(SerializedProperty, GUIContent) -- uid: XRTK.Editor.PropertyDrawers.Vector3RangePropertyDrawer.GetPropertyHeight* - name: GetPropertyHeight - href: api/XRTK.Editor.PropertyDrawers.Vector3RangePropertyDrawer.html#XRTK_Editor_PropertyDrawers_Vector3RangePropertyDrawer_GetPropertyHeight_ - commentId: Overload:XRTK.Editor.PropertyDrawers.Vector3RangePropertyDrawer.GetPropertyHeight - isSpec: "True" - fullName: XRTK.Editor.PropertyDrawers.Vector3RangePropertyDrawer.GetPropertyHeight - nameWithType: Vector3RangePropertyDrawer.GetPropertyHeight -- uid: XRTK.Editor.PropertyDrawers.Vector3RangePropertyDrawer.OnGUI(UnityEngine.Rect,UnityEditor.SerializedProperty,UnityEngine.GUIContent) - name: OnGUI(Rect, SerializedProperty, GUIContent) - href: api/XRTK.Editor.PropertyDrawers.Vector3RangePropertyDrawer.html#XRTK_Editor_PropertyDrawers_Vector3RangePropertyDrawer_OnGUI_UnityEngine_Rect_UnityEditor_SerializedProperty_UnityEngine_GUIContent_ - commentId: M:XRTK.Editor.PropertyDrawers.Vector3RangePropertyDrawer.OnGUI(UnityEngine.Rect,UnityEditor.SerializedProperty,UnityEngine.GUIContent) - fullName: XRTK.Editor.PropertyDrawers.Vector3RangePropertyDrawer.OnGUI(UnityEngine.Rect, UnityEditor.SerializedProperty, UnityEngine.GUIContent) - nameWithType: Vector3RangePropertyDrawer.OnGUI(Rect, SerializedProperty, GUIContent) -- uid: XRTK.Editor.PropertyDrawers.Vector3RangePropertyDrawer.OnGUI* - name: OnGUI - href: api/XRTK.Editor.PropertyDrawers.Vector3RangePropertyDrawer.html#XRTK_Editor_PropertyDrawers_Vector3RangePropertyDrawer_OnGUI_ - commentId: Overload:XRTK.Editor.PropertyDrawers.Vector3RangePropertyDrawer.OnGUI - isSpec: "True" - fullName: XRTK.Editor.PropertyDrawers.Vector3RangePropertyDrawer.OnGUI - nameWithType: Vector3RangePropertyDrawer.OnGUI -- uid: XRTK.Editor.Rendering - name: XRTK.Editor.Rendering - href: api/XRTK.Editor.Rendering.html - commentId: N:XRTK.Editor.Rendering - fullName: XRTK.Editor.Rendering - nameWithType: XRTK.Editor.Rendering -- uid: XRTK.Editor.Rendering.ClippingBoxEditor - name: ClippingBoxEditor - href: api/XRTK.Editor.Rendering.ClippingBoxEditor.html - commentId: T:XRTK.Editor.Rendering.ClippingBoxEditor - fullName: XRTK.Editor.Rendering.ClippingBoxEditor - nameWithType: ClippingBoxEditor -- uid: XRTK.Editor.Rendering.ClippingPlaneEditor - name: ClippingPlaneEditor - href: api/XRTK.Editor.Rendering.ClippingPlaneEditor.html - commentId: T:XRTK.Editor.Rendering.ClippingPlaneEditor - fullName: XRTK.Editor.Rendering.ClippingPlaneEditor - nameWithType: ClippingPlaneEditor -- uid: XRTK.Editor.Rendering.ClippingSphereEditor - name: ClippingSphereEditor - href: api/XRTK.Editor.Rendering.ClippingSphereEditor.html - commentId: T:XRTK.Editor.Rendering.ClippingSphereEditor - fullName: XRTK.Editor.Rendering.ClippingSphereEditor - nameWithType: ClippingSphereEditor -- uid: XRTK.Editor.SystemTypeRepairWindow - name: SystemTypeRepairWindow - href: api/XRTK.Editor.SystemTypeRepairWindow.html - commentId: T:XRTK.Editor.SystemTypeRepairWindow - fullName: XRTK.Editor.SystemTypeRepairWindow - nameWithType: SystemTypeRepairWindow -- uid: XRTK.Editor.SystemTypeRepairWindow.Display(System.Type[],UnityEditor.SerializedProperty) - name: Display(Type[], SerializedProperty) - href: api/XRTK.Editor.SystemTypeRepairWindow.html#XRTK_Editor_SystemTypeRepairWindow_Display_System_Type___UnityEditor_SerializedProperty_ - commentId: M:XRTK.Editor.SystemTypeRepairWindow.Display(System.Type[],UnityEditor.SerializedProperty) - name.vb: Display(Type(), SerializedProperty) - fullName: XRTK.Editor.SystemTypeRepairWindow.Display(System.Type[], UnityEditor.SerializedProperty) - fullName.vb: XRTK.Editor.SystemTypeRepairWindow.Display(System.Type(), UnityEditor.SerializedProperty) - nameWithType: SystemTypeRepairWindow.Display(Type[], SerializedProperty) - nameWithType.vb: SystemTypeRepairWindow.Display(Type(), SerializedProperty) -- uid: XRTK.Editor.SystemTypeRepairWindow.Display* - name: Display - href: api/XRTK.Editor.SystemTypeRepairWindow.html#XRTK_Editor_SystemTypeRepairWindow_Display_ - commentId: Overload:XRTK.Editor.SystemTypeRepairWindow.Display - isSpec: "True" - fullName: XRTK.Editor.SystemTypeRepairWindow.Display - nameWithType: SystemTypeRepairWindow.Display -- uid: XRTK.Editor.SystemTypeRepairWindow.WindowOpen - name: WindowOpen - href: api/XRTK.Editor.SystemTypeRepairWindow.html#XRTK_Editor_SystemTypeRepairWindow_WindowOpen - commentId: P:XRTK.Editor.SystemTypeRepairWindow.WindowOpen - fullName: XRTK.Editor.SystemTypeRepairWindow.WindowOpen - nameWithType: SystemTypeRepairWindow.WindowOpen -- uid: XRTK.Editor.SystemTypeRepairWindow.WindowOpen* - name: WindowOpen - href: api/XRTK.Editor.SystemTypeRepairWindow.html#XRTK_Editor_SystemTypeRepairWindow_WindowOpen_ - commentId: Overload:XRTK.Editor.SystemTypeRepairWindow.WindowOpen - isSpec: "True" - fullName: XRTK.Editor.SystemTypeRepairWindow.WindowOpen - nameWithType: SystemTypeRepairWindow.WindowOpen -- uid: XRTK.Editor.Text3DShaderGUI - name: Text3DShaderGUI - href: api/XRTK.Editor.Text3DShaderGUI.html - commentId: T:XRTK.Editor.Text3DShaderGUI - fullName: XRTK.Editor.Text3DShaderGUI - nameWithType: Text3DShaderGUI -- uid: XRTK.Editor.Text3DShaderGUI.cullMode - name: cullMode - href: api/XRTK.Editor.Text3DShaderGUI.html#XRTK_Editor_Text3DShaderGUI_cullMode - commentId: F:XRTK.Editor.Text3DShaderGUI.cullMode - fullName: XRTK.Editor.Text3DShaderGUI.cullMode - nameWithType: Text3DShaderGUI.cullMode -- uid: XRTK.Editor.Text3DShaderGUI.firstTimeApply - name: firstTimeApply - href: api/XRTK.Editor.Text3DShaderGUI.html#XRTK_Editor_Text3DShaderGUI_firstTimeApply - commentId: F:XRTK.Editor.Text3DShaderGUI.firstTimeApply - fullName: XRTK.Editor.Text3DShaderGUI.firstTimeApply - nameWithType: Text3DShaderGUI.firstTimeApply -- uid: XRTK.Editor.Text3DShaderGUI.OnGUI(UnityEditor.MaterialEditor,UnityEditor.MaterialProperty[]) - name: OnGUI(MaterialEditor, MaterialProperty[]) - href: api/XRTK.Editor.Text3DShaderGUI.html#XRTK_Editor_Text3DShaderGUI_OnGUI_UnityEditor_MaterialEditor_UnityEditor_MaterialProperty___ - commentId: M:XRTK.Editor.Text3DShaderGUI.OnGUI(UnityEditor.MaterialEditor,UnityEditor.MaterialProperty[]) - name.vb: OnGUI(MaterialEditor, MaterialProperty()) - fullName: XRTK.Editor.Text3DShaderGUI.OnGUI(UnityEditor.MaterialEditor, UnityEditor.MaterialProperty[]) - fullName.vb: XRTK.Editor.Text3DShaderGUI.OnGUI(UnityEditor.MaterialEditor, UnityEditor.MaterialProperty()) - nameWithType: Text3DShaderGUI.OnGUI(MaterialEditor, MaterialProperty[]) - nameWithType.vb: Text3DShaderGUI.OnGUI(MaterialEditor, MaterialProperty()) -- uid: XRTK.Editor.Text3DShaderGUI.OnGUI* - name: OnGUI - href: api/XRTK.Editor.Text3DShaderGUI.html#XRTK_Editor_Text3DShaderGUI_OnGUI_ - commentId: Overload:XRTK.Editor.Text3DShaderGUI.OnGUI - isSpec: "True" - fullName: XRTK.Editor.Text3DShaderGUI.OnGUI - nameWithType: Text3DShaderGUI.OnGUI -- uid: XRTK.Editor.Text3DShaderGUI.Styles - name: Text3DShaderGUI.Styles - href: api/XRTK.Editor.Text3DShaderGUI.Styles.html - commentId: T:XRTK.Editor.Text3DShaderGUI.Styles - fullName: XRTK.Editor.Text3DShaderGUI.Styles - nameWithType: Text3DShaderGUI.Styles -- uid: XRTK.Editor.Text3DShaderGUI.Styles.cullMode - name: cullMode - href: api/XRTK.Editor.Text3DShaderGUI.Styles.html#XRTK_Editor_Text3DShaderGUI_Styles_cullMode - commentId: F:XRTK.Editor.Text3DShaderGUI.Styles.cullMode - fullName: XRTK.Editor.Text3DShaderGUI.Styles.cullMode - nameWithType: Text3DShaderGUI.Styles.cullMode -- uid: XRTK.Editor.Utilities - name: XRTK.Editor.Utilities - href: api/XRTK.Editor.Utilities.html - commentId: N:XRTK.Editor.Utilities - fullName: XRTK.Editor.Utilities - nameWithType: XRTK.Editor.Utilities -- uid: XRTK.Editor.Utilities.AssemblyDefinitionEditorExtension - name: AssemblyDefinitionEditorExtension - href: api/XRTK.Editor.Utilities.AssemblyDefinitionEditorExtension.html - commentId: T:XRTK.Editor.Utilities.AssemblyDefinitionEditorExtension - fullName: XRTK.Editor.Utilities.AssemblyDefinitionEditorExtension - nameWithType: AssemblyDefinitionEditorExtension -- uid: XRTK.Editor.Utilities.AssemblyDefinitionEditorExtension.ReplaceWithAssembly - name: ReplaceWithAssembly() - href: api/XRTK.Editor.Utilities.AssemblyDefinitionEditorExtension.html#XRTK_Editor_Utilities_AssemblyDefinitionEditorExtension_ReplaceWithAssembly - commentId: M:XRTK.Editor.Utilities.AssemblyDefinitionEditorExtension.ReplaceWithAssembly - fullName: XRTK.Editor.Utilities.AssemblyDefinitionEditorExtension.ReplaceWithAssembly() - nameWithType: AssemblyDefinitionEditorExtension.ReplaceWithAssembly() -- uid: XRTK.Editor.Utilities.AssemblyDefinitionEditorExtension.ReplaceWithAssembly* - name: ReplaceWithAssembly - href: api/XRTK.Editor.Utilities.AssemblyDefinitionEditorExtension.html#XRTK_Editor_Utilities_AssemblyDefinitionEditorExtension_ReplaceWithAssembly_ - commentId: Overload:XRTK.Editor.Utilities.AssemblyDefinitionEditorExtension.ReplaceWithAssembly - isSpec: "True" - fullName: XRTK.Editor.Utilities.AssemblyDefinitionEditorExtension.ReplaceWithAssembly - nameWithType: AssemblyDefinitionEditorExtension.ReplaceWithAssembly -- uid: XRTK.Editor.Utilities.AssemblyDefinitionEditorExtension.ReplaceWithAssemblyValidation - name: ReplaceWithAssemblyValidation() - href: api/XRTK.Editor.Utilities.AssemblyDefinitionEditorExtension.html#XRTK_Editor_Utilities_AssemblyDefinitionEditorExtension_ReplaceWithAssemblyValidation - commentId: M:XRTK.Editor.Utilities.AssemblyDefinitionEditorExtension.ReplaceWithAssemblyValidation - fullName: XRTK.Editor.Utilities.AssemblyDefinitionEditorExtension.ReplaceWithAssemblyValidation() - nameWithType: AssemblyDefinitionEditorExtension.ReplaceWithAssemblyValidation() -- uid: XRTK.Editor.Utilities.AssemblyDefinitionEditorExtension.ReplaceWithAssemblyValidation* - name: ReplaceWithAssemblyValidation - href: api/XRTK.Editor.Utilities.AssemblyDefinitionEditorExtension.html#XRTK_Editor_Utilities_AssemblyDefinitionEditorExtension_ReplaceWithAssemblyValidation_ - commentId: Overload:XRTK.Editor.Utilities.AssemblyDefinitionEditorExtension.ReplaceWithAssemblyValidation - isSpec: "True" - fullName: XRTK.Editor.Utilities.AssemblyDefinitionEditorExtension.ReplaceWithAssemblyValidation - nameWithType: AssemblyDefinitionEditorExtension.ReplaceWithAssemblyValidation -- uid: XRTK.Editor.Utilities.AssemblyDefinitionEditorExtension.ReplaceWithSource - name: ReplaceWithSource() - href: api/XRTK.Editor.Utilities.AssemblyDefinitionEditorExtension.html#XRTK_Editor_Utilities_AssemblyDefinitionEditorExtension_ReplaceWithSource - commentId: M:XRTK.Editor.Utilities.AssemblyDefinitionEditorExtension.ReplaceWithSource - fullName: XRTK.Editor.Utilities.AssemblyDefinitionEditorExtension.ReplaceWithSource() - nameWithType: AssemblyDefinitionEditorExtension.ReplaceWithSource() -- uid: XRTK.Editor.Utilities.AssemblyDefinitionEditorExtension.ReplaceWithSource* - name: ReplaceWithSource - href: api/XRTK.Editor.Utilities.AssemblyDefinitionEditorExtension.html#XRTK_Editor_Utilities_AssemblyDefinitionEditorExtension_ReplaceWithSource_ - commentId: Overload:XRTK.Editor.Utilities.AssemblyDefinitionEditorExtension.ReplaceWithSource - isSpec: "True" - fullName: XRTK.Editor.Utilities.AssemblyDefinitionEditorExtension.ReplaceWithSource - nameWithType: AssemblyDefinitionEditorExtension.ReplaceWithSource -- uid: XRTK.Editor.Utilities.AssemblyDefinitionEditorExtension.ReplaceWithSourceValidation - name: ReplaceWithSourceValidation() - href: api/XRTK.Editor.Utilities.AssemblyDefinitionEditorExtension.html#XRTK_Editor_Utilities_AssemblyDefinitionEditorExtension_ReplaceWithSourceValidation - commentId: M:XRTK.Editor.Utilities.AssemblyDefinitionEditorExtension.ReplaceWithSourceValidation - fullName: XRTK.Editor.Utilities.AssemblyDefinitionEditorExtension.ReplaceWithSourceValidation() - nameWithType: AssemblyDefinitionEditorExtension.ReplaceWithSourceValidation() -- uid: XRTK.Editor.Utilities.AssemblyDefinitionEditorExtension.ReplaceWithSourceValidation* - name: ReplaceWithSourceValidation - href: api/XRTK.Editor.Utilities.AssemblyDefinitionEditorExtension.html#XRTK_Editor_Utilities_AssemblyDefinitionEditorExtension_ReplaceWithSourceValidation_ - commentId: Overload:XRTK.Editor.Utilities.AssemblyDefinitionEditorExtension.ReplaceWithSourceValidation - isSpec: "True" - fullName: XRTK.Editor.Utilities.AssemblyDefinitionEditorExtension.ReplaceWithSourceValidation - nameWithType: AssemblyDefinitionEditorExtension.ReplaceWithSourceValidation -- uid: XRTK.Editor.Utilities.AutoSceneSwitcher - name: AutoSceneSwitcher - href: api/XRTK.Editor.Utilities.AutoSceneSwitcher.html - commentId: T:XRTK.Editor.Utilities.AutoSceneSwitcher - fullName: XRTK.Editor.Utilities.AutoSceneSwitcher - nameWithType: AutoSceneSwitcher -- uid: XRTK.Editor.Utilities.BaseMixedRealityProfileInspectorExtensions - name: BaseMixedRealityProfileInspectorExtensions - href: api/XRTK.Editor.Utilities.BaseMixedRealityProfileInspectorExtensions.html - commentId: T:XRTK.Editor.Utilities.BaseMixedRealityProfileInspectorExtensions - fullName: XRTK.Editor.Utilities.BaseMixedRealityProfileInspectorExtensions - nameWithType: BaseMixedRealityProfileInspectorExtensions -- uid: XRTK.Editor.Utilities.BaseMixedRealityProfileInspectorExtensions.CopySerializedValues(XRTK.Definitions.BaseMixedRealityProfile,XRTK.Definitions.BaseMixedRealityProfile) - name: CopySerializedValues(BaseMixedRealityProfile, BaseMixedRealityProfile) - href: api/XRTK.Editor.Utilities.BaseMixedRealityProfileInspectorExtensions.html#XRTK_Editor_Utilities_BaseMixedRealityProfileInspectorExtensions_CopySerializedValues_XRTK_Definitions_BaseMixedRealityProfile_XRTK_Definitions_BaseMixedRealityProfile_ - commentId: M:XRTK.Editor.Utilities.BaseMixedRealityProfileInspectorExtensions.CopySerializedValues(XRTK.Definitions.BaseMixedRealityProfile,XRTK.Definitions.BaseMixedRealityProfile) - fullName: XRTK.Editor.Utilities.BaseMixedRealityProfileInspectorExtensions.CopySerializedValues(XRTK.Definitions.BaseMixedRealityProfile, XRTK.Definitions.BaseMixedRealityProfile) - nameWithType: BaseMixedRealityProfileInspectorExtensions.CopySerializedValues(BaseMixedRealityProfile, BaseMixedRealityProfile) -- uid: XRTK.Editor.Utilities.BaseMixedRealityProfileInspectorExtensions.CopySerializedValues* - name: CopySerializedValues - href: api/XRTK.Editor.Utilities.BaseMixedRealityProfileInspectorExtensions.html#XRTK_Editor_Utilities_BaseMixedRealityProfileInspectorExtensions_CopySerializedValues_ - commentId: Overload:XRTK.Editor.Utilities.BaseMixedRealityProfileInspectorExtensions.CopySerializedValues - isSpec: "True" - fullName: XRTK.Editor.Utilities.BaseMixedRealityProfileInspectorExtensions.CopySerializedValues - nameWithType: BaseMixedRealityProfileInspectorExtensions.CopySerializedValues -- uid: XRTK.Editor.Utilities.BaseMixedRealityProfileInspectorExtensions.CreateNewProfileInstance(XRTK.Definitions.BaseMixedRealityProfile,UnityEditor.SerializedProperty,System.Type,System.Boolean) - name: CreateNewProfileInstance(BaseMixedRealityProfile, SerializedProperty, Type, Boolean) - href: api/XRTK.Editor.Utilities.BaseMixedRealityProfileInspectorExtensions.html#XRTK_Editor_Utilities_BaseMixedRealityProfileInspectorExtensions_CreateNewProfileInstance_XRTK_Definitions_BaseMixedRealityProfile_UnityEditor_SerializedProperty_System_Type_System_Boolean_ - commentId: M:XRTK.Editor.Utilities.BaseMixedRealityProfileInspectorExtensions.CreateNewProfileInstance(XRTK.Definitions.BaseMixedRealityProfile,UnityEditor.SerializedProperty,System.Type,System.Boolean) - fullName: XRTK.Editor.Utilities.BaseMixedRealityProfileInspectorExtensions.CreateNewProfileInstance(XRTK.Definitions.BaseMixedRealityProfile, UnityEditor.SerializedProperty, System.Type, System.Boolean) - nameWithType: BaseMixedRealityProfileInspectorExtensions.CreateNewProfileInstance(BaseMixedRealityProfile, SerializedProperty, Type, Boolean) -- uid: XRTK.Editor.Utilities.BaseMixedRealityProfileInspectorExtensions.CreateNewProfileInstance* - name: CreateNewProfileInstance - href: api/XRTK.Editor.Utilities.BaseMixedRealityProfileInspectorExtensions.html#XRTK_Editor_Utilities_BaseMixedRealityProfileInspectorExtensions_CreateNewProfileInstance_ - commentId: Overload:XRTK.Editor.Utilities.BaseMixedRealityProfileInspectorExtensions.CreateNewProfileInstance - isSpec: "True" - fullName: XRTK.Editor.Utilities.BaseMixedRealityProfileInspectorExtensions.CreateNewProfileInstance - nameWithType: BaseMixedRealityProfileInspectorExtensions.CreateNewProfileInstance -- uid: XRTK.Editor.Utilities.CanvasEditorExtension - name: CanvasEditorExtension - href: api/XRTK.Editor.Utilities.CanvasEditorExtension.html - commentId: T:XRTK.Editor.Utilities.CanvasEditorExtension - fullName: XRTK.Editor.Utilities.CanvasEditorExtension - nameWithType: CanvasEditorExtension -- uid: XRTK.Editor.Utilities.CanvasEditorExtension.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.Editor.Utilities.CanvasEditorExtension.html#XRTK_Editor_Utilities_CanvasEditorExtension_OnInspectorGUI - commentId: M:XRTK.Editor.Utilities.CanvasEditorExtension.OnInspectorGUI - fullName: XRTK.Editor.Utilities.CanvasEditorExtension.OnInspectorGUI() - nameWithType: CanvasEditorExtension.OnInspectorGUI() -- uid: XRTK.Editor.Utilities.CanvasEditorExtension.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.Editor.Utilities.CanvasEditorExtension.html#XRTK_Editor_Utilities_CanvasEditorExtension_OnInspectorGUI_ - commentId: Overload:XRTK.Editor.Utilities.CanvasEditorExtension.OnInspectorGUI - isSpec: "True" - fullName: XRTK.Editor.Utilities.CanvasEditorExtension.OnInspectorGUI - nameWithType: CanvasEditorExtension.OnInspectorGUI -- uid: XRTK.Editor.Utilities.ChannelPackerWindow - name: ChannelPackerWindow - href: api/XRTK.Editor.Utilities.ChannelPackerWindow.html - commentId: T:XRTK.Editor.Utilities.ChannelPackerWindow - fullName: XRTK.Editor.Utilities.ChannelPackerWindow - nameWithType: ChannelPackerWindow -- uid: XRTK.Editor.Utilities.ControllerMappingUtilities - name: ControllerMappingUtilities - href: api/XRTK.Editor.Utilities.ControllerMappingUtilities.html - commentId: T:XRTK.Editor.Utilities.ControllerMappingUtilities - fullName: XRTK.Editor.Utilities.ControllerMappingUtilities - nameWithType: ControllerMappingUtilities -- uid: XRTK.Editor.Utilities.ControllerMappingUtilities.GetControllerTexture(XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - name: GetControllerTexture(MixedRealityControllerMappingProfile) - href: api/XRTK.Editor.Utilities.ControllerMappingUtilities.html#XRTK_Editor_Utilities_ControllerMappingUtilities_GetControllerTexture_XRTK_Definitions_Controllers_MixedRealityControllerMappingProfile_ - commentId: M:XRTK.Editor.Utilities.ControllerMappingUtilities.GetControllerTexture(XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - fullName: XRTK.Editor.Utilities.ControllerMappingUtilities.GetControllerTexture(XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - nameWithType: ControllerMappingUtilities.GetControllerTexture(MixedRealityControllerMappingProfile) -- uid: XRTK.Editor.Utilities.ControllerMappingUtilities.GetControllerTexture* - name: GetControllerTexture - href: api/XRTK.Editor.Utilities.ControllerMappingUtilities.html#XRTK_Editor_Utilities_ControllerMappingUtilities_GetControllerTexture_ - commentId: Overload:XRTK.Editor.Utilities.ControllerMappingUtilities.GetControllerTexture - isSpec: "True" - fullName: XRTK.Editor.Utilities.ControllerMappingUtilities.GetControllerTexture - nameWithType: ControllerMappingUtilities.GetControllerTexture -- uid: XRTK.Editor.Utilities.ControllerMappingUtilities.GetControllerTextureScaled(XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - name: GetControllerTextureScaled(MixedRealityControllerMappingProfile) - href: api/XRTK.Editor.Utilities.ControllerMappingUtilities.html#XRTK_Editor_Utilities_ControllerMappingUtilities_GetControllerTextureScaled_XRTK_Definitions_Controllers_MixedRealityControllerMappingProfile_ - commentId: M:XRTK.Editor.Utilities.ControllerMappingUtilities.GetControllerTextureScaled(XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - fullName: XRTK.Editor.Utilities.ControllerMappingUtilities.GetControllerTextureScaled(XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - nameWithType: ControllerMappingUtilities.GetControllerTextureScaled(MixedRealityControllerMappingProfile) -- uid: XRTK.Editor.Utilities.ControllerMappingUtilities.GetControllerTextureScaled* - name: GetControllerTextureScaled - href: api/XRTK.Editor.Utilities.ControllerMappingUtilities.html#XRTK_Editor_Utilities_ControllerMappingUtilities_GetControllerTextureScaled_ - commentId: Overload:XRTK.Editor.Utilities.ControllerMappingUtilities.GetControllerTextureScaled - isSpec: "True" - fullName: XRTK.Editor.Utilities.ControllerMappingUtilities.GetControllerTextureScaled - nameWithType: ControllerMappingUtilities.GetControllerTextureScaled -- uid: XRTK.Editor.Utilities.ControllerMappingUtilities.UnityInputManagerAxes - name: UnityInputManagerAxes - href: api/XRTK.Editor.Utilities.ControllerMappingUtilities.html#XRTK_Editor_Utilities_ControllerMappingUtilities_UnityInputManagerAxes - commentId: P:XRTK.Editor.Utilities.ControllerMappingUtilities.UnityInputManagerAxes - fullName: XRTK.Editor.Utilities.ControllerMappingUtilities.UnityInputManagerAxes - nameWithType: ControllerMappingUtilities.UnityInputManagerAxes -- uid: XRTK.Editor.Utilities.ControllerMappingUtilities.UnityInputManagerAxes* - name: UnityInputManagerAxes - href: api/XRTK.Editor.Utilities.ControllerMappingUtilities.html#XRTK_Editor_Utilities_ControllerMappingUtilities_UnityInputManagerAxes_ - commentId: Overload:XRTK.Editor.Utilities.ControllerMappingUtilities.UnityInputManagerAxes - isSpec: "True" - fullName: XRTK.Editor.Utilities.ControllerMappingUtilities.UnityInputManagerAxes - nameWithType: ControllerMappingUtilities.UnityInputManagerAxes -- uid: XRTK.Editor.Utilities.CorePathFinder - name: CorePathFinder - href: api/XRTK.Editor.Utilities.CorePathFinder.html - commentId: T:XRTK.Editor.Utilities.CorePathFinder - fullName: XRTK.Editor.Utilities.CorePathFinder - nameWithType: CorePathFinder -- uid: XRTK.Editor.Utilities.CorePathFinder.Location - name: Location - href: api/XRTK.Editor.Utilities.CorePathFinder.html#XRTK_Editor_Utilities_CorePathFinder_Location - commentId: P:XRTK.Editor.Utilities.CorePathFinder.Location - fullName: XRTK.Editor.Utilities.CorePathFinder.Location - nameWithType: CorePathFinder.Location -- uid: XRTK.Editor.Utilities.CorePathFinder.Location* - name: Location - href: api/XRTK.Editor.Utilities.CorePathFinder.html#XRTK_Editor_Utilities_CorePathFinder_Location_ - commentId: Overload:XRTK.Editor.Utilities.CorePathFinder.Location - isSpec: "True" - fullName: XRTK.Editor.Utilities.CorePathFinder.Location - nameWithType: CorePathFinder.Location -- uid: XRTK.Editor.Utilities.DevOpsLoggingUtility - name: DevOpsLoggingUtility - href: api/XRTK.Editor.Utilities.DevOpsLoggingUtility.html - commentId: T:XRTK.Editor.Utilities.DevOpsLoggingUtility - fullName: XRTK.Editor.Utilities.DevOpsLoggingUtility - nameWithType: DevOpsLoggingUtility -- uid: XRTK.Editor.Utilities.DevOpsLoggingUtility.IgnoredLogs - name: IgnoredLogs - href: api/XRTK.Editor.Utilities.DevOpsLoggingUtility.html#XRTK_Editor_Utilities_DevOpsLoggingUtility_IgnoredLogs - commentId: F:XRTK.Editor.Utilities.DevOpsLoggingUtility.IgnoredLogs - fullName: XRTK.Editor.Utilities.DevOpsLoggingUtility.IgnoredLogs - nameWithType: DevOpsLoggingUtility.IgnoredLogs -- uid: XRTK.Editor.Utilities.DevOpsLoggingUtility.LoggingEnabled - name: LoggingEnabled - href: api/XRTK.Editor.Utilities.DevOpsLoggingUtility.html#XRTK_Editor_Utilities_DevOpsLoggingUtility_LoggingEnabled - commentId: P:XRTK.Editor.Utilities.DevOpsLoggingUtility.LoggingEnabled - fullName: XRTK.Editor.Utilities.DevOpsLoggingUtility.LoggingEnabled - nameWithType: DevOpsLoggingUtility.LoggingEnabled -- uid: XRTK.Editor.Utilities.DevOpsLoggingUtility.LoggingEnabled* - name: LoggingEnabled - href: api/XRTK.Editor.Utilities.DevOpsLoggingUtility.html#XRTK_Editor_Utilities_DevOpsLoggingUtility_LoggingEnabled_ - commentId: Overload:XRTK.Editor.Utilities.DevOpsLoggingUtility.LoggingEnabled - isSpec: "True" - fullName: XRTK.Editor.Utilities.DevOpsLoggingUtility.LoggingEnabled - nameWithType: DevOpsLoggingUtility.LoggingEnabled -- uid: XRTK.Editor.Utilities.EditorAssemblyReloadManager - name: EditorAssemblyReloadManager - href: api/XRTK.Editor.Utilities.EditorAssemblyReloadManager.html - commentId: T:XRTK.Editor.Utilities.EditorAssemblyReloadManager - fullName: XRTK.Editor.Utilities.EditorAssemblyReloadManager - nameWithType: EditorAssemblyReloadManager -- uid: XRTK.Editor.Utilities.EditorAssemblyReloadManager.LockReloadAssemblies - name: LockReloadAssemblies - href: api/XRTK.Editor.Utilities.EditorAssemblyReloadManager.html#XRTK_Editor_Utilities_EditorAssemblyReloadManager_LockReloadAssemblies - commentId: P:XRTK.Editor.Utilities.EditorAssemblyReloadManager.LockReloadAssemblies - fullName: XRTK.Editor.Utilities.EditorAssemblyReloadManager.LockReloadAssemblies - nameWithType: EditorAssemblyReloadManager.LockReloadAssemblies -- uid: XRTK.Editor.Utilities.EditorAssemblyReloadManager.LockReloadAssemblies* - name: LockReloadAssemblies - href: api/XRTK.Editor.Utilities.EditorAssemblyReloadManager.html#XRTK_Editor_Utilities_EditorAssemblyReloadManager_LockReloadAssemblies_ - commentId: Overload:XRTK.Editor.Utilities.EditorAssemblyReloadManager.LockReloadAssemblies - isSpec: "True" - fullName: XRTK.Editor.Utilities.EditorAssemblyReloadManager.LockReloadAssemblies - nameWithType: EditorAssemblyReloadManager.LockReloadAssemblies -- uid: XRTK.Editor.Utilities.EditorPreferences - name: EditorPreferences - href: api/XRTK.Editor.Utilities.EditorPreferences.html - commentId: T:XRTK.Editor.Utilities.EditorPreferences - fullName: XRTK.Editor.Utilities.EditorPreferences - nameWithType: EditorPreferences -- uid: XRTK.Editor.Utilities.EditorPreferences.ApplicationDataPath - name: ApplicationDataPath - href: api/XRTK.Editor.Utilities.EditorPreferences.html#XRTK_Editor_Utilities_EditorPreferences_ApplicationDataPath - commentId: F:XRTK.Editor.Utilities.EditorPreferences.ApplicationDataPath - fullName: XRTK.Editor.Utilities.EditorPreferences.ApplicationDataPath - nameWithType: EditorPreferences.ApplicationDataPath -- uid: XRTK.Editor.Utilities.EditorPreferences.ApplicationProductName - name: ApplicationProductName - href: api/XRTK.Editor.Utilities.EditorPreferences.html#XRTK_Editor_Utilities_EditorPreferences_ApplicationProductName - commentId: P:XRTK.Editor.Utilities.EditorPreferences.ApplicationProductName - fullName: XRTK.Editor.Utilities.EditorPreferences.ApplicationProductName - nameWithType: EditorPreferences.ApplicationProductName -- uid: XRTK.Editor.Utilities.EditorPreferences.ApplicationProductName* - name: ApplicationProductName - href: api/XRTK.Editor.Utilities.EditorPreferences.html#XRTK_Editor_Utilities_EditorPreferences_ApplicationProductName_ - commentId: Overload:XRTK.Editor.Utilities.EditorPreferences.ApplicationProductName - isSpec: "True" - fullName: XRTK.Editor.Utilities.EditorPreferences.ApplicationProductName - nameWithType: EditorPreferences.ApplicationProductName -- uid: XRTK.Editor.Utilities.EditorPreferences.Get(System.String,System.Boolean) - name: Get(String, Boolean) - href: api/XRTK.Editor.Utilities.EditorPreferences.html#XRTK_Editor_Utilities_EditorPreferences_Get_System_String_System_Boolean_ - commentId: M:XRTK.Editor.Utilities.EditorPreferences.Get(System.String,System.Boolean) - fullName: XRTK.Editor.Utilities.EditorPreferences.Get(System.String, System.Boolean) - nameWithType: EditorPreferences.Get(String, Boolean) -- uid: XRTK.Editor.Utilities.EditorPreferences.Get(System.String,System.Int32) - name: Get(String, Int32) - href: api/XRTK.Editor.Utilities.EditorPreferences.html#XRTK_Editor_Utilities_EditorPreferences_Get_System_String_System_Int32_ - commentId: M:XRTK.Editor.Utilities.EditorPreferences.Get(System.String,System.Int32) - fullName: XRTK.Editor.Utilities.EditorPreferences.Get(System.String, System.Int32) - nameWithType: EditorPreferences.Get(String, Int32) -- uid: XRTK.Editor.Utilities.EditorPreferences.Get(System.String,System.Single) - name: Get(String, Single) - href: api/XRTK.Editor.Utilities.EditorPreferences.html#XRTK_Editor_Utilities_EditorPreferences_Get_System_String_System_Single_ - commentId: M:XRTK.Editor.Utilities.EditorPreferences.Get(System.String,System.Single) - fullName: XRTK.Editor.Utilities.EditorPreferences.Get(System.String, System.Single) - nameWithType: EditorPreferences.Get(String, Single) -- uid: XRTK.Editor.Utilities.EditorPreferences.Get(System.String,System.String) - name: Get(String, String) - href: api/XRTK.Editor.Utilities.EditorPreferences.html#XRTK_Editor_Utilities_EditorPreferences_Get_System_String_System_String_ - commentId: M:XRTK.Editor.Utilities.EditorPreferences.Get(System.String,System.String) - fullName: XRTK.Editor.Utilities.EditorPreferences.Get(System.String, System.String) - nameWithType: EditorPreferences.Get(String, String) -- uid: XRTK.Editor.Utilities.EditorPreferences.Get* - name: Get - href: api/XRTK.Editor.Utilities.EditorPreferences.html#XRTK_Editor_Utilities_EditorPreferences_Get_ - commentId: Overload:XRTK.Editor.Utilities.EditorPreferences.Get - isSpec: "True" - fullName: XRTK.Editor.Utilities.EditorPreferences.Get - nameWithType: EditorPreferences.Get -- uid: XRTK.Editor.Utilities.EditorPreferences.Set(System.String,System.Boolean) - name: Set(String, Boolean) - href: api/XRTK.Editor.Utilities.EditorPreferences.html#XRTK_Editor_Utilities_EditorPreferences_Set_System_String_System_Boolean_ - commentId: M:XRTK.Editor.Utilities.EditorPreferences.Set(System.String,System.Boolean) - fullName: XRTK.Editor.Utilities.EditorPreferences.Set(System.String, System.Boolean) - nameWithType: EditorPreferences.Set(String, Boolean) -- uid: XRTK.Editor.Utilities.EditorPreferences.Set(System.String,System.Int32) - name: Set(String, Int32) - href: api/XRTK.Editor.Utilities.EditorPreferences.html#XRTK_Editor_Utilities_EditorPreferences_Set_System_String_System_Int32_ - commentId: M:XRTK.Editor.Utilities.EditorPreferences.Set(System.String,System.Int32) - fullName: XRTK.Editor.Utilities.EditorPreferences.Set(System.String, System.Int32) - nameWithType: EditorPreferences.Set(String, Int32) -- uid: XRTK.Editor.Utilities.EditorPreferences.Set(System.String,System.Single) - name: Set(String, Single) - href: api/XRTK.Editor.Utilities.EditorPreferences.html#XRTK_Editor_Utilities_EditorPreferences_Set_System_String_System_Single_ - commentId: M:XRTK.Editor.Utilities.EditorPreferences.Set(System.String,System.Single) - fullName: XRTK.Editor.Utilities.EditorPreferences.Set(System.String, System.Single) - nameWithType: EditorPreferences.Set(String, Single) -- uid: XRTK.Editor.Utilities.EditorPreferences.Set(System.String,System.String) - name: Set(String, String) - href: api/XRTK.Editor.Utilities.EditorPreferences.html#XRTK_Editor_Utilities_EditorPreferences_Set_System_String_System_String_ - commentId: M:XRTK.Editor.Utilities.EditorPreferences.Set(System.String,System.String) - fullName: XRTK.Editor.Utilities.EditorPreferences.Set(System.String, System.String) - nameWithType: EditorPreferences.Set(String, String) -- uid: XRTK.Editor.Utilities.EditorPreferences.Set* - name: Set - href: api/XRTK.Editor.Utilities.EditorPreferences.html#XRTK_Editor_Utilities_EditorPreferences_Set_ - commentId: Overload:XRTK.Editor.Utilities.EditorPreferences.Set - isSpec: "True" - fullName: XRTK.Editor.Utilities.EditorPreferences.Set - nameWithType: EditorPreferences.Set -- uid: XRTK.Editor.Utilities.GitUtilities - name: GitUtilities - href: api/XRTK.Editor.Utilities.GitUtilities.html - commentId: T:XRTK.Editor.Utilities.GitUtilities - fullName: XRTK.Editor.Utilities.GitUtilities - nameWithType: GitUtilities -- uid: XRTK.Editor.Utilities.GitUtilities.ForceUpdateSubmodules - name: ForceUpdateSubmodules() - href: api/XRTK.Editor.Utilities.GitUtilities.html#XRTK_Editor_Utilities_GitUtilities_ForceUpdateSubmodules - commentId: M:XRTK.Editor.Utilities.GitUtilities.ForceUpdateSubmodules - fullName: XRTK.Editor.Utilities.GitUtilities.ForceUpdateSubmodules() - nameWithType: GitUtilities.ForceUpdateSubmodules() -- uid: XRTK.Editor.Utilities.GitUtilities.ForceUpdateSubmodules* - name: ForceUpdateSubmodules - href: api/XRTK.Editor.Utilities.GitUtilities.html#XRTK_Editor_Utilities_GitUtilities_ForceUpdateSubmodules_ - commentId: Overload:XRTK.Editor.Utilities.GitUtilities.ForceUpdateSubmodules - isSpec: "True" - fullName: XRTK.Editor.Utilities.GitUtilities.ForceUpdateSubmodules - nameWithType: GitUtilities.ForceUpdateSubmodules -- uid: XRTK.Editor.Utilities.GitUtilities.ForceUpdateSubmodulesValidation - name: ForceUpdateSubmodulesValidation() - href: api/XRTK.Editor.Utilities.GitUtilities.html#XRTK_Editor_Utilities_GitUtilities_ForceUpdateSubmodulesValidation - commentId: M:XRTK.Editor.Utilities.GitUtilities.ForceUpdateSubmodulesValidation - fullName: XRTK.Editor.Utilities.GitUtilities.ForceUpdateSubmodulesValidation() - nameWithType: GitUtilities.ForceUpdateSubmodulesValidation() -- uid: XRTK.Editor.Utilities.GitUtilities.ForceUpdateSubmodulesValidation* - name: ForceUpdateSubmodulesValidation - href: api/XRTK.Editor.Utilities.GitUtilities.html#XRTK_Editor_Utilities_GitUtilities_ForceUpdateSubmodulesValidation_ - commentId: Overload:XRTK.Editor.Utilities.GitUtilities.ForceUpdateSubmodulesValidation - isSpec: "True" - fullName: XRTK.Editor.Utilities.GitUtilities.ForceUpdateSubmodulesValidation - nameWithType: GitUtilities.ForceUpdateSubmodulesValidation -- uid: XRTK.Editor.Utilities.GitUtilities.GetAllTagsFromRemoteAsync(System.String) - name: GetAllTagsFromRemoteAsync(String) - href: api/XRTK.Editor.Utilities.GitUtilities.html#XRTK_Editor_Utilities_GitUtilities_GetAllTagsFromRemoteAsync_System_String_ - commentId: M:XRTK.Editor.Utilities.GitUtilities.GetAllTagsFromRemoteAsync(System.String) - fullName: XRTK.Editor.Utilities.GitUtilities.GetAllTagsFromRemoteAsync(System.String) - nameWithType: GitUtilities.GetAllTagsFromRemoteAsync(String) -- uid: XRTK.Editor.Utilities.GitUtilities.GetAllTagsFromRemoteAsync* - name: GetAllTagsFromRemoteAsync - href: api/XRTK.Editor.Utilities.GitUtilities.html#XRTK_Editor_Utilities_GitUtilities_GetAllTagsFromRemoteAsync_ - commentId: Overload:XRTK.Editor.Utilities.GitUtilities.GetAllTagsFromRemoteAsync - isSpec: "True" - fullName: XRTK.Editor.Utilities.GitUtilities.GetAllTagsFromRemoteAsync - nameWithType: GitUtilities.GetAllTagsFromRemoteAsync -- uid: XRTK.Editor.Utilities.GitUtilities.IsGitInstalled - name: IsGitInstalled - href: api/XRTK.Editor.Utilities.GitUtilities.html#XRTK_Editor_Utilities_GitUtilities_IsGitInstalled - commentId: P:XRTK.Editor.Utilities.GitUtilities.IsGitInstalled - fullName: XRTK.Editor.Utilities.GitUtilities.IsGitInstalled - nameWithType: GitUtilities.IsGitInstalled -- uid: XRTK.Editor.Utilities.GitUtilities.IsGitInstalled* - name: IsGitInstalled - href: api/XRTK.Editor.Utilities.GitUtilities.html#XRTK_Editor_Utilities_GitUtilities_IsGitInstalled_ - commentId: Overload:XRTK.Editor.Utilities.GitUtilities.IsGitInstalled - isSpec: "True" - fullName: XRTK.Editor.Utilities.GitUtilities.IsGitInstalled - nameWithType: GitUtilities.IsGitInstalled -- uid: XRTK.Editor.Utilities.GitUtilities.RepositoryRootDir - name: RepositoryRootDir - href: api/XRTK.Editor.Utilities.GitUtilities.html#XRTK_Editor_Utilities_GitUtilities_RepositoryRootDir - commentId: P:XRTK.Editor.Utilities.GitUtilities.RepositoryRootDir - fullName: XRTK.Editor.Utilities.GitUtilities.RepositoryRootDir - nameWithType: GitUtilities.RepositoryRootDir -- uid: XRTK.Editor.Utilities.GitUtilities.RepositoryRootDir* - name: RepositoryRootDir - href: api/XRTK.Editor.Utilities.GitUtilities.html#XRTK_Editor_Utilities_GitUtilities_RepositoryRootDir_ - commentId: Overload:XRTK.Editor.Utilities.GitUtilities.RepositoryRootDir - isSpec: "True" - fullName: XRTK.Editor.Utilities.GitUtilities.RepositoryRootDir - nameWithType: GitUtilities.RepositoryRootDir -- uid: XRTK.Editor.Utilities.GitUtilities.WritePathToGitIgnore(System.String) - name: WritePathToGitIgnore(String) - href: api/XRTK.Editor.Utilities.GitUtilities.html#XRTK_Editor_Utilities_GitUtilities_WritePathToGitIgnore_System_String_ - commentId: M:XRTK.Editor.Utilities.GitUtilities.WritePathToGitIgnore(System.String) - fullName: XRTK.Editor.Utilities.GitUtilities.WritePathToGitIgnore(System.String) - nameWithType: GitUtilities.WritePathToGitIgnore(String) -- uid: XRTK.Editor.Utilities.GitUtilities.WritePathToGitIgnore* - name: WritePathToGitIgnore - href: api/XRTK.Editor.Utilities.GitUtilities.html#XRTK_Editor_Utilities_GitUtilities_WritePathToGitIgnore_ - commentId: Overload:XRTK.Editor.Utilities.GitUtilities.WritePathToGitIgnore - isSpec: "True" - fullName: XRTK.Editor.Utilities.GitUtilities.WritePathToGitIgnore - nameWithType: GitUtilities.WritePathToGitIgnore -- uid: XRTK.Editor.Utilities.GuidRegenerator - name: GuidRegenerator - href: api/XRTK.Editor.Utilities.GuidRegenerator.html - commentId: T:XRTK.Editor.Utilities.GuidRegenerator - fullName: XRTK.Editor.Utilities.GuidRegenerator - nameWithType: GuidRegenerator -- uid: XRTK.Editor.Utilities.GuidRegenerator.RegenerateGuids(System.Collections.Generic.List{System.String},System.Boolean) - name: RegenerateGuids(List, Boolean) - href: api/XRTK.Editor.Utilities.GuidRegenerator.html#XRTK_Editor_Utilities_GuidRegenerator_RegenerateGuids_System_Collections_Generic_List_System_String__System_Boolean_ - commentId: M:XRTK.Editor.Utilities.GuidRegenerator.RegenerateGuids(System.Collections.Generic.List{System.String},System.Boolean) - name.vb: RegenerateGuids(List(Of String), Boolean) - fullName: XRTK.Editor.Utilities.GuidRegenerator.RegenerateGuids(System.Collections.Generic.List, System.Boolean) - fullName.vb: XRTK.Editor.Utilities.GuidRegenerator.RegenerateGuids(System.Collections.Generic.List(Of System.String), System.Boolean) - nameWithType: GuidRegenerator.RegenerateGuids(List, Boolean) - nameWithType.vb: GuidRegenerator.RegenerateGuids(List(Of String), Boolean) -- uid: XRTK.Editor.Utilities.GuidRegenerator.RegenerateGuids(System.String,System.Boolean) - name: RegenerateGuids(String, Boolean) - href: api/XRTK.Editor.Utilities.GuidRegenerator.html#XRTK_Editor_Utilities_GuidRegenerator_RegenerateGuids_System_String_System_Boolean_ - commentId: M:XRTK.Editor.Utilities.GuidRegenerator.RegenerateGuids(System.String,System.Boolean) - fullName: XRTK.Editor.Utilities.GuidRegenerator.RegenerateGuids(System.String, System.Boolean) - nameWithType: GuidRegenerator.RegenerateGuids(String, Boolean) -- uid: XRTK.Editor.Utilities.GuidRegenerator.RegenerateGuids* - name: RegenerateGuids - href: api/XRTK.Editor.Utilities.GuidRegenerator.html#XRTK_Editor_Utilities_GuidRegenerator_RegenerateGuids_ - commentId: Overload:XRTK.Editor.Utilities.GuidRegenerator.RegenerateGuids - isSpec: "True" - fullName: XRTK.Editor.Utilities.GuidRegenerator.RegenerateGuids - nameWithType: GuidRegenerator.RegenerateGuids -- uid: XRTK.Editor.Utilities.HoverLightInspector - name: HoverLightInspector - href: api/XRTK.Editor.Utilities.HoverLightInspector.html - commentId: T:XRTK.Editor.Utilities.HoverLightInspector - fullName: XRTK.Editor.Utilities.HoverLightInspector - nameWithType: HoverLightInspector -- uid: XRTK.Editor.Utilities.IconEditor - name: IconEditor - href: api/XRTK.Editor.Utilities.IconEditor.html - commentId: T:XRTK.Editor.Utilities.IconEditor - fullName: XRTK.Editor.Utilities.IconEditor - nameWithType: IconEditor -- uid: XRTK.Editor.Utilities.IconEditor.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.Editor.Utilities.IconEditor.html#XRTK_Editor_Utilities_IconEditor_OnInspectorGUI - commentId: M:XRTK.Editor.Utilities.IconEditor.OnInspectorGUI - fullName: XRTK.Editor.Utilities.IconEditor.OnInspectorGUI() - nameWithType: IconEditor.OnInspectorGUI() -- uid: XRTK.Editor.Utilities.IconEditor.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.Editor.Utilities.IconEditor.html#XRTK_Editor_Utilities_IconEditor_OnInspectorGUI_ - commentId: Overload:XRTK.Editor.Utilities.IconEditor.OnInspectorGUI - isSpec: "True" - fullName: XRTK.Editor.Utilities.IconEditor.OnInspectorGUI - nameWithType: IconEditor.OnInspectorGUI -- uid: XRTK.Editor.Utilities.InputManagerAxis - name: InputManagerAxis - href: api/XRTK.Editor.Utilities.InputManagerAxis.html - commentId: T:XRTK.Editor.Utilities.InputManagerAxis - fullName: XRTK.Editor.Utilities.InputManagerAxis - nameWithType: InputManagerAxis -- uid: XRTK.Editor.Utilities.InputManagerAxis.AltNegativeButton - name: AltNegativeButton - href: api/XRTK.Editor.Utilities.InputManagerAxis.html#XRTK_Editor_Utilities_InputManagerAxis_AltNegativeButton - commentId: F:XRTK.Editor.Utilities.InputManagerAxis.AltNegativeButton - fullName: XRTK.Editor.Utilities.InputManagerAxis.AltNegativeButton - nameWithType: InputManagerAxis.AltNegativeButton -- uid: XRTK.Editor.Utilities.InputManagerAxis.AltPositiveButton - name: AltPositiveButton - href: api/XRTK.Editor.Utilities.InputManagerAxis.html#XRTK_Editor_Utilities_InputManagerAxis_AltPositiveButton - commentId: F:XRTK.Editor.Utilities.InputManagerAxis.AltPositiveButton - fullName: XRTK.Editor.Utilities.InputManagerAxis.AltPositiveButton - nameWithType: InputManagerAxis.AltPositiveButton -- uid: XRTK.Editor.Utilities.InputManagerAxis.Axis - name: Axis - href: api/XRTK.Editor.Utilities.InputManagerAxis.html#XRTK_Editor_Utilities_InputManagerAxis_Axis - commentId: F:XRTK.Editor.Utilities.InputManagerAxis.Axis - fullName: XRTK.Editor.Utilities.InputManagerAxis.Axis - nameWithType: InputManagerAxis.Axis -- uid: XRTK.Editor.Utilities.InputManagerAxis.Dead - name: Dead - href: api/XRTK.Editor.Utilities.InputManagerAxis.html#XRTK_Editor_Utilities_InputManagerAxis_Dead - commentId: F:XRTK.Editor.Utilities.InputManagerAxis.Dead - fullName: XRTK.Editor.Utilities.InputManagerAxis.Dead - nameWithType: InputManagerAxis.Dead -- uid: XRTK.Editor.Utilities.InputManagerAxis.DescriptiveName - name: DescriptiveName - href: api/XRTK.Editor.Utilities.InputManagerAxis.html#XRTK_Editor_Utilities_InputManagerAxis_DescriptiveName - commentId: F:XRTK.Editor.Utilities.InputManagerAxis.DescriptiveName - fullName: XRTK.Editor.Utilities.InputManagerAxis.DescriptiveName - nameWithType: InputManagerAxis.DescriptiveName -- uid: XRTK.Editor.Utilities.InputManagerAxis.DescriptiveNegativeName - name: DescriptiveNegativeName - href: api/XRTK.Editor.Utilities.InputManagerAxis.html#XRTK_Editor_Utilities_InputManagerAxis_DescriptiveNegativeName - commentId: F:XRTK.Editor.Utilities.InputManagerAxis.DescriptiveNegativeName - fullName: XRTK.Editor.Utilities.InputManagerAxis.DescriptiveNegativeName - nameWithType: InputManagerAxis.DescriptiveNegativeName -- uid: XRTK.Editor.Utilities.InputManagerAxis.Gravity - name: Gravity - href: api/XRTK.Editor.Utilities.InputManagerAxis.html#XRTK_Editor_Utilities_InputManagerAxis_Gravity - commentId: F:XRTK.Editor.Utilities.InputManagerAxis.Gravity - fullName: XRTK.Editor.Utilities.InputManagerAxis.Gravity - nameWithType: InputManagerAxis.Gravity -- uid: XRTK.Editor.Utilities.InputManagerAxis.Invert - name: Invert - href: api/XRTK.Editor.Utilities.InputManagerAxis.html#XRTK_Editor_Utilities_InputManagerAxis_Invert - commentId: F:XRTK.Editor.Utilities.InputManagerAxis.Invert - fullName: XRTK.Editor.Utilities.InputManagerAxis.Invert - nameWithType: InputManagerAxis.Invert -- uid: XRTK.Editor.Utilities.InputManagerAxis.JoyNum - name: JoyNum - href: api/XRTK.Editor.Utilities.InputManagerAxis.html#XRTK_Editor_Utilities_InputManagerAxis_JoyNum - commentId: F:XRTK.Editor.Utilities.InputManagerAxis.JoyNum - fullName: XRTK.Editor.Utilities.InputManagerAxis.JoyNum - nameWithType: InputManagerAxis.JoyNum -- uid: XRTK.Editor.Utilities.InputManagerAxis.Name - name: Name - href: api/XRTK.Editor.Utilities.InputManagerAxis.html#XRTK_Editor_Utilities_InputManagerAxis_Name - commentId: F:XRTK.Editor.Utilities.InputManagerAxis.Name - fullName: XRTK.Editor.Utilities.InputManagerAxis.Name - nameWithType: InputManagerAxis.Name -- uid: XRTK.Editor.Utilities.InputManagerAxis.NegativeButton - name: NegativeButton - href: api/XRTK.Editor.Utilities.InputManagerAxis.html#XRTK_Editor_Utilities_InputManagerAxis_NegativeButton - commentId: F:XRTK.Editor.Utilities.InputManagerAxis.NegativeButton - fullName: XRTK.Editor.Utilities.InputManagerAxis.NegativeButton - nameWithType: InputManagerAxis.NegativeButton -- uid: XRTK.Editor.Utilities.InputManagerAxis.PositiveButton - name: PositiveButton - href: api/XRTK.Editor.Utilities.InputManagerAxis.html#XRTK_Editor_Utilities_InputManagerAxis_PositiveButton - commentId: F:XRTK.Editor.Utilities.InputManagerAxis.PositiveButton - fullName: XRTK.Editor.Utilities.InputManagerAxis.PositiveButton - nameWithType: InputManagerAxis.PositiveButton -- uid: XRTK.Editor.Utilities.InputManagerAxis.Sensitivity - name: Sensitivity - href: api/XRTK.Editor.Utilities.InputManagerAxis.html#XRTK_Editor_Utilities_InputManagerAxis_Sensitivity - commentId: F:XRTK.Editor.Utilities.InputManagerAxis.Sensitivity - fullName: XRTK.Editor.Utilities.InputManagerAxis.Sensitivity - nameWithType: InputManagerAxis.Sensitivity -- uid: XRTK.Editor.Utilities.InputManagerAxis.Snap - name: Snap - href: api/XRTK.Editor.Utilities.InputManagerAxis.html#XRTK_Editor_Utilities_InputManagerAxis_Snap - commentId: F:XRTK.Editor.Utilities.InputManagerAxis.Snap - fullName: XRTK.Editor.Utilities.InputManagerAxis.Snap - nameWithType: InputManagerAxis.Snap -- uid: XRTK.Editor.Utilities.InputManagerAxis.Type - name: Type - href: api/XRTK.Editor.Utilities.InputManagerAxis.html#XRTK_Editor_Utilities_InputManagerAxis_Type - commentId: F:XRTK.Editor.Utilities.InputManagerAxis.Type - fullName: XRTK.Editor.Utilities.InputManagerAxis.Type - nameWithType: InputManagerAxis.Type -- uid: XRTK.Editor.Utilities.InputManagerAxisType - name: InputManagerAxisType - href: api/XRTK.Editor.Utilities.InputManagerAxisType.html - commentId: T:XRTK.Editor.Utilities.InputManagerAxisType - fullName: XRTK.Editor.Utilities.InputManagerAxisType - nameWithType: InputManagerAxisType -- uid: XRTK.Editor.Utilities.InputManagerAxisType.JoystickAxis - name: JoystickAxis - href: api/XRTK.Editor.Utilities.InputManagerAxisType.html#XRTK_Editor_Utilities_InputManagerAxisType_JoystickAxis - commentId: F:XRTK.Editor.Utilities.InputManagerAxisType.JoystickAxis - fullName: XRTK.Editor.Utilities.InputManagerAxisType.JoystickAxis - nameWithType: InputManagerAxisType.JoystickAxis -- uid: XRTK.Editor.Utilities.InputManagerAxisType.KeyOrMouseButton - name: KeyOrMouseButton - href: api/XRTK.Editor.Utilities.InputManagerAxisType.html#XRTK_Editor_Utilities_InputManagerAxisType_KeyOrMouseButton - commentId: F:XRTK.Editor.Utilities.InputManagerAxisType.KeyOrMouseButton - fullName: XRTK.Editor.Utilities.InputManagerAxisType.KeyOrMouseButton - nameWithType: InputManagerAxisType.KeyOrMouseButton -- uid: XRTK.Editor.Utilities.InputManagerAxisType.MouseMovement - name: MouseMovement - href: api/XRTK.Editor.Utilities.InputManagerAxisType.html#XRTK_Editor_Utilities_InputManagerAxisType_MouseMovement - commentId: F:XRTK.Editor.Utilities.InputManagerAxisType.MouseMovement - fullName: XRTK.Editor.Utilities.InputManagerAxisType.MouseMovement - nameWithType: InputManagerAxisType.MouseMovement -- uid: XRTK.Editor.Utilities.InputMappingAxisUtility - name: InputMappingAxisUtility - href: api/XRTK.Editor.Utilities.InputMappingAxisUtility.html - commentId: T:XRTK.Editor.Utilities.InputMappingAxisUtility - fullName: XRTK.Editor.Utilities.InputMappingAxisUtility - nameWithType: InputMappingAxisUtility -- uid: XRTK.Editor.Utilities.InputMappingAxisUtility.CheckUnityInputManagerMappings(XRTK.Editor.Utilities.InputManagerAxis[]) - name: CheckUnityInputManagerMappings(InputManagerAxis[]) - href: api/XRTK.Editor.Utilities.InputMappingAxisUtility.html#XRTK_Editor_Utilities_InputMappingAxisUtility_CheckUnityInputManagerMappings_XRTK_Editor_Utilities_InputManagerAxis___ - commentId: M:XRTK.Editor.Utilities.InputMappingAxisUtility.CheckUnityInputManagerMappings(XRTK.Editor.Utilities.InputManagerAxis[]) - name.vb: CheckUnityInputManagerMappings(InputManagerAxis()) - fullName: XRTK.Editor.Utilities.InputMappingAxisUtility.CheckUnityInputManagerMappings(XRTK.Editor.Utilities.InputManagerAxis[]) - fullName.vb: XRTK.Editor.Utilities.InputMappingAxisUtility.CheckUnityInputManagerMappings(XRTK.Editor.Utilities.InputManagerAxis()) - nameWithType: InputMappingAxisUtility.CheckUnityInputManagerMappings(InputManagerAxis[]) - nameWithType.vb: InputMappingAxisUtility.CheckUnityInputManagerMappings(InputManagerAxis()) -- uid: XRTK.Editor.Utilities.InputMappingAxisUtility.CheckUnityInputManagerMappings* - name: CheckUnityInputManagerMappings - href: api/XRTK.Editor.Utilities.InputMappingAxisUtility.html#XRTK_Editor_Utilities_InputMappingAxisUtility_CheckUnityInputManagerMappings_ - commentId: Overload:XRTK.Editor.Utilities.InputMappingAxisUtility.CheckUnityInputManagerMappings - isSpec: "True" - fullName: XRTK.Editor.Utilities.InputMappingAxisUtility.CheckUnityInputManagerMappings - nameWithType: InputMappingAxisUtility.CheckUnityInputManagerMappings -- uid: XRTK.Editor.Utilities.InputMappingAxisUtility.DoesAxisNameExist(System.String) - name: DoesAxisNameExist(String) - href: api/XRTK.Editor.Utilities.InputMappingAxisUtility.html#XRTK_Editor_Utilities_InputMappingAxisUtility_DoesAxisNameExist_System_String_ - commentId: M:XRTK.Editor.Utilities.InputMappingAxisUtility.DoesAxisNameExist(System.String) - fullName: XRTK.Editor.Utilities.InputMappingAxisUtility.DoesAxisNameExist(System.String) - nameWithType: InputMappingAxisUtility.DoesAxisNameExist(String) -- uid: XRTK.Editor.Utilities.InputMappingAxisUtility.DoesAxisNameExist* - name: DoesAxisNameExist - href: api/XRTK.Editor.Utilities.InputMappingAxisUtility.html#XRTK_Editor_Utilities_InputMappingAxisUtility_DoesAxisNameExist_ - commentId: Overload:XRTK.Editor.Utilities.InputMappingAxisUtility.DoesAxisNameExist - isSpec: "True" - fullName: XRTK.Editor.Utilities.InputMappingAxisUtility.DoesAxisNameExist - nameWithType: InputMappingAxisUtility.DoesAxisNameExist -- uid: XRTK.Editor.Utilities.InputMappingAxisUtility.RemoveMappings(XRTK.Editor.Utilities.InputManagerAxis[]) - name: RemoveMappings(InputManagerAxis[]) - href: api/XRTK.Editor.Utilities.InputMappingAxisUtility.html#XRTK_Editor_Utilities_InputMappingAxisUtility_RemoveMappings_XRTK_Editor_Utilities_InputManagerAxis___ - commentId: M:XRTK.Editor.Utilities.InputMappingAxisUtility.RemoveMappings(XRTK.Editor.Utilities.InputManagerAxis[]) - name.vb: RemoveMappings(InputManagerAxis()) - fullName: XRTK.Editor.Utilities.InputMappingAxisUtility.RemoveMappings(XRTK.Editor.Utilities.InputManagerAxis[]) - fullName.vb: XRTK.Editor.Utilities.InputMappingAxisUtility.RemoveMappings(XRTK.Editor.Utilities.InputManagerAxis()) - nameWithType: InputMappingAxisUtility.RemoveMappings(InputManagerAxis[]) - nameWithType.vb: InputMappingAxisUtility.RemoveMappings(InputManagerAxis()) -- uid: XRTK.Editor.Utilities.InputMappingAxisUtility.RemoveMappings* - name: RemoveMappings - href: api/XRTK.Editor.Utilities.InputMappingAxisUtility.html#XRTK_Editor_Utilities_InputMappingAxisUtility_RemoveMappings_ - commentId: Overload:XRTK.Editor.Utilities.InputMappingAxisUtility.RemoveMappings - isSpec: "True" - fullName: XRTK.Editor.Utilities.InputMappingAxisUtility.RemoveMappings - nameWithType: InputMappingAxisUtility.RemoveMappings -- uid: XRTK.Editor.Utilities.IPathFinder - name: IPathFinder - href: api/XRTK.Editor.Utilities.IPathFinder.html - commentId: T:XRTK.Editor.Utilities.IPathFinder - fullName: XRTK.Editor.Utilities.IPathFinder - nameWithType: IPathFinder -- uid: XRTK.Editor.Utilities.IPathFinder.Location - name: Location - href: api/XRTK.Editor.Utilities.IPathFinder.html#XRTK_Editor_Utilities_IPathFinder_Location - commentId: P:XRTK.Editor.Utilities.IPathFinder.Location - fullName: XRTK.Editor.Utilities.IPathFinder.Location - nameWithType: IPathFinder.Location -- uid: XRTK.Editor.Utilities.IPathFinder.Location* - name: Location - href: api/XRTK.Editor.Utilities.IPathFinder.html#XRTK_Editor_Utilities_IPathFinder_Location_ - commentId: Overload:XRTK.Editor.Utilities.IPathFinder.Location - isSpec: "True" - fullName: XRTK.Editor.Utilities.IPathFinder.Location - nameWithType: IPathFinder.Location -- uid: XRTK.Editor.Utilities.LayerUtilities - name: LayerUtilities - href: api/XRTK.Editor.Utilities.LayerUtilities.html - commentId: T:XRTK.Editor.Utilities.LayerUtilities - fullName: XRTK.Editor.Utilities.LayerUtilities - nameWithType: LayerUtilities -- uid: XRTK.Editor.Utilities.LayerUtilities.CheckLayer(System.String,System.Int32@) - name: CheckLayer(String, out Int32) - href: api/XRTK.Editor.Utilities.LayerUtilities.html#XRTK_Editor_Utilities_LayerUtilities_CheckLayer_System_String_System_Int32__ - commentId: M:XRTK.Editor.Utilities.LayerUtilities.CheckLayer(System.String,System.Int32@) - name.vb: CheckLayer(String, ByRef Int32) - fullName: XRTK.Editor.Utilities.LayerUtilities.CheckLayer(System.String, out System.Int32) - fullName.vb: XRTK.Editor.Utilities.LayerUtilities.CheckLayer(System.String, ByRef System.Int32) - nameWithType: LayerUtilities.CheckLayer(String, out Int32) - nameWithType.vb: LayerUtilities.CheckLayer(String, ByRef Int32) -- uid: XRTK.Editor.Utilities.LayerUtilities.CheckLayer* - name: CheckLayer - href: api/XRTK.Editor.Utilities.LayerUtilities.html#XRTK_Editor_Utilities_LayerUtilities_CheckLayer_ - commentId: Overload:XRTK.Editor.Utilities.LayerUtilities.CheckLayer - isSpec: "True" - fullName: XRTK.Editor.Utilities.LayerUtilities.CheckLayer - nameWithType: LayerUtilities.CheckLayer -- uid: XRTK.Editor.Utilities.LayerUtilities.CheckLayers(System.Tuple{System.Int32,System.String}[]) - name: CheckLayers(Tuple[]) - href: api/XRTK.Editor.Utilities.LayerUtilities.html#XRTK_Editor_Utilities_LayerUtilities_CheckLayers_System_Tuple_System_Int32_System_String____ - commentId: M:XRTK.Editor.Utilities.LayerUtilities.CheckLayers(System.Tuple{System.Int32,System.String}[]) - name.vb: CheckLayers(Tuple(Of Int32, String)()) - fullName: XRTK.Editor.Utilities.LayerUtilities.CheckLayers(System.Tuple[]) - fullName.vb: XRTK.Editor.Utilities.LayerUtilities.CheckLayers(System.Tuple(Of System.Int32, System.String)()) - nameWithType: LayerUtilities.CheckLayers(Tuple[]) - nameWithType.vb: LayerUtilities.CheckLayers(Tuple(Of Int32, String)()) -- uid: XRTK.Editor.Utilities.LayerUtilities.CheckLayers* - name: CheckLayers - href: api/XRTK.Editor.Utilities.LayerUtilities.html#XRTK_Editor_Utilities_LayerUtilities_CheckLayers_ - commentId: Overload:XRTK.Editor.Utilities.LayerUtilities.CheckLayers - isSpec: "True" - fullName: XRTK.Editor.Utilities.LayerUtilities.CheckLayers - nameWithType: LayerUtilities.CheckLayers -- uid: XRTK.Editor.Utilities.LayerUtilities.RemoveLayer(System.String) - name: RemoveLayer(String) - href: api/XRTK.Editor.Utilities.LayerUtilities.html#XRTK_Editor_Utilities_LayerUtilities_RemoveLayer_System_String_ - commentId: M:XRTK.Editor.Utilities.LayerUtilities.RemoveLayer(System.String) - fullName: XRTK.Editor.Utilities.LayerUtilities.RemoveLayer(System.String) - nameWithType: LayerUtilities.RemoveLayer(String) -- uid: XRTK.Editor.Utilities.LayerUtilities.RemoveLayer* - name: RemoveLayer - href: api/XRTK.Editor.Utilities.LayerUtilities.html#XRTK_Editor_Utilities_LayerUtilities_RemoveLayer_ - commentId: Overload:XRTK.Editor.Utilities.LayerUtilities.RemoveLayer - isSpec: "True" - fullName: XRTK.Editor.Utilities.LayerUtilities.RemoveLayer - nameWithType: LayerUtilities.RemoveLayer -- uid: XRTK.Editor.Utilities.LayerUtilities.RemoveLayers(System.Tuple{System.Int32,System.String}[]) - name: RemoveLayers(Tuple[]) - href: api/XRTK.Editor.Utilities.LayerUtilities.html#XRTK_Editor_Utilities_LayerUtilities_RemoveLayers_System_Tuple_System_Int32_System_String____ - commentId: M:XRTK.Editor.Utilities.LayerUtilities.RemoveLayers(System.Tuple{System.Int32,System.String}[]) - name.vb: RemoveLayers(Tuple(Of Int32, String)()) - fullName: XRTK.Editor.Utilities.LayerUtilities.RemoveLayers(System.Tuple[]) - fullName.vb: XRTK.Editor.Utilities.LayerUtilities.RemoveLayers(System.Tuple(Of System.Int32, System.String)()) - nameWithType: LayerUtilities.RemoveLayers(Tuple[]) - nameWithType.vb: LayerUtilities.RemoveLayers(Tuple(Of Int32, String)()) -- uid: XRTK.Editor.Utilities.LayerUtilities.RemoveLayers* - name: RemoveLayers - href: api/XRTK.Editor.Utilities.LayerUtilities.html#XRTK_Editor_Utilities_LayerUtilities_RemoveLayers_ - commentId: Overload:XRTK.Editor.Utilities.LayerUtilities.RemoveLayers - isSpec: "True" - fullName: XRTK.Editor.Utilities.LayerUtilities.RemoveLayers - nameWithType: LayerUtilities.RemoveLayers -- uid: XRTK.Editor.Utilities.LayerUtilities.SetupLayer(System.Int32,System.String) - name: SetupLayer(Int32, String) - href: api/XRTK.Editor.Utilities.LayerUtilities.html#XRTK_Editor_Utilities_LayerUtilities_SetupLayer_System_Int32_System_String_ - commentId: M:XRTK.Editor.Utilities.LayerUtilities.SetupLayer(System.Int32,System.String) - fullName: XRTK.Editor.Utilities.LayerUtilities.SetupLayer(System.Int32, System.String) - nameWithType: LayerUtilities.SetupLayer(Int32, String) -- uid: XRTK.Editor.Utilities.LayerUtilities.SetupLayer* - name: SetupLayer - href: api/XRTK.Editor.Utilities.LayerUtilities.html#XRTK_Editor_Utilities_LayerUtilities_SetupLayer_ - commentId: Overload:XRTK.Editor.Utilities.LayerUtilities.SetupLayer - isSpec: "True" - fullName: XRTK.Editor.Utilities.LayerUtilities.SetupLayer - nameWithType: LayerUtilities.SetupLayer -- uid: XRTK.Editor.Utilities.LayerUtilities.TagManagerLayerProperties - name: TagManagerLayerProperties - href: api/XRTK.Editor.Utilities.LayerUtilities.html#XRTK_Editor_Utilities_LayerUtilities_TagManagerLayerProperties - commentId: P:XRTK.Editor.Utilities.LayerUtilities.TagManagerLayerProperties - fullName: XRTK.Editor.Utilities.LayerUtilities.TagManagerLayerProperties - nameWithType: LayerUtilities.TagManagerLayerProperties -- uid: XRTK.Editor.Utilities.LayerUtilities.TagManagerLayerProperties* - name: TagManagerLayerProperties - href: api/XRTK.Editor.Utilities.LayerUtilities.html#XRTK_Editor_Utilities_LayerUtilities_TagManagerLayerProperties_ - commentId: Overload:XRTK.Editor.Utilities.LayerUtilities.TagManagerLayerProperties - isSpec: "True" - fullName: XRTK.Editor.Utilities.LayerUtilities.TagManagerLayerProperties - nameWithType: LayerUtilities.TagManagerLayerProperties -- uid: XRTK.Editor.Utilities.Lines.DataProviders - name: XRTK.Editor.Utilities.Lines.DataProviders - href: api/XRTK.Editor.Utilities.Lines.DataProviders.html - commentId: N:XRTK.Editor.Utilities.Lines.DataProviders - fullName: XRTK.Editor.Utilities.Lines.DataProviders - nameWithType: XRTK.Editor.Utilities.Lines.DataProviders -- uid: XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector - name: BaseMixedRealityLineDataProviderInspector - href: api/XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.html - commentId: T:XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector - fullName: XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector - nameWithType: BaseMixedRealityLineDataProviderInspector -- uid: XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.DrawLineManualUpVectors - name: DrawLineManualUpVectors - href: api/XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.html#XRTK_Editor_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProviderInspector_DrawLineManualUpVectors - commentId: F:XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.DrawLineManualUpVectors - fullName: XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.DrawLineManualUpVectors - nameWithType: BaseMixedRealityLineDataProviderInspector.DrawLineManualUpVectors -- uid: XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.DrawLinePoints - name: DrawLinePoints - href: api/XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.html#XRTK_Editor_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProviderInspector_DrawLinePoints - commentId: F:XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.DrawLinePoints - fullName: XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.DrawLinePoints - nameWithType: BaseMixedRealityLineDataProviderInspector.DrawLinePoints -- uid: XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.DrawLineRotations - name: DrawLineRotations - href: api/XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.html#XRTK_Editor_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProviderInspector_DrawLineRotations - commentId: F:XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.DrawLineRotations - fullName: XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.DrawLineRotations - nameWithType: BaseMixedRealityLineDataProviderInspector.DrawLineRotations -- uid: XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.LineData - name: LineData - href: api/XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.html#XRTK_Editor_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProviderInspector_LineData - commentId: F:XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.LineData - fullName: XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.LineData - nameWithType: BaseMixedRealityLineDataProviderInspector.LineData -- uid: XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.LinePreviewResolution - name: LinePreviewResolution - href: api/XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.html#XRTK_Editor_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProviderInspector_LinePreviewResolution - commentId: F:XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.LinePreviewResolution - fullName: XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.LinePreviewResolution - nameWithType: BaseMixedRealityLineDataProviderInspector.LinePreviewResolution -- uid: XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.ManualUpVectorLength - name: ManualUpVectorLength - href: api/XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.html#XRTK_Editor_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProviderInspector_ManualUpVectorLength - commentId: F:XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.ManualUpVectorLength - fullName: XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.ManualUpVectorLength - nameWithType: BaseMixedRealityLineDataProviderInspector.ManualUpVectorLength -- uid: XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.OnEnable - name: OnEnable() - href: api/XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.html#XRTK_Editor_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProviderInspector_OnEnable - commentId: M:XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.OnEnable - fullName: XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.OnEnable() - nameWithType: BaseMixedRealityLineDataProviderInspector.OnEnable() -- uid: XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.OnEnable* - name: OnEnable - href: api/XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.html#XRTK_Editor_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProviderInspector_OnEnable_ - commentId: Overload:XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.OnEnable - isSpec: "True" - fullName: XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.OnEnable - nameWithType: BaseMixedRealityLineDataProviderInspector.OnEnable -- uid: XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.html#XRTK_Editor_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProviderInspector_OnInspectorGUI - commentId: M:XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.OnInspectorGUI - fullName: XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.OnInspectorGUI() - nameWithType: BaseMixedRealityLineDataProviderInspector.OnInspectorGUI() -- uid: XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.html#XRTK_Editor_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProviderInspector_OnInspectorGUI_ - commentId: Overload:XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.OnInspectorGUI - nameWithType: BaseMixedRealityLineDataProviderInspector.OnInspectorGUI -- uid: XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.OnSceneGUI - name: OnSceneGUI() - href: api/XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.html#XRTK_Editor_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProviderInspector_OnSceneGUI - commentId: M:XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.OnSceneGUI - fullName: XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.OnSceneGUI() - nameWithType: BaseMixedRealityLineDataProviderInspector.OnSceneGUI() -- uid: XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.OnSceneGUI* - name: OnSceneGUI - href: api/XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.html#XRTK_Editor_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProviderInspector_OnSceneGUI_ - commentId: Overload:XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.OnSceneGUI - isSpec: "True" - fullName: XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.OnSceneGUI - nameWithType: BaseMixedRealityLineDataProviderInspector.OnSceneGUI -- uid: XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.RenderLinePreview - name: RenderLinePreview - href: api/XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.html#XRTK_Editor_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProviderInspector_RenderLinePreview - commentId: F:XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.RenderLinePreview - fullName: XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.RenderLinePreview - nameWithType: BaseMixedRealityLineDataProviderInspector.RenderLinePreview -- uid: XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.RotationArrowLength - name: RotationArrowLength - href: api/XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.html#XRTK_Editor_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProviderInspector_RotationArrowLength - commentId: F:XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.RotationArrowLength - fullName: XRTK.Editor.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProviderInspector.RotationArrowLength - nameWithType: BaseMixedRealityLineDataProviderInspector.RotationArrowLength -- uid: XRTK.Editor.Utilities.Lines.DataProviders.BezierDataProviderInspector - name: BezierDataProviderInspector - href: api/XRTK.Editor.Utilities.Lines.DataProviders.BezierDataProviderInspector.html - commentId: T:XRTK.Editor.Utilities.Lines.DataProviders.BezierDataProviderInspector - fullName: XRTK.Editor.Utilities.Lines.DataProviders.BezierDataProviderInspector - nameWithType: BezierDataProviderInspector -- uid: XRTK.Editor.Utilities.Lines.DataProviders.BezierDataProviderInspector.OnEnable - name: OnEnable() - href: api/XRTK.Editor.Utilities.Lines.DataProviders.BezierDataProviderInspector.html#XRTK_Editor_Utilities_Lines_DataProviders_BezierDataProviderInspector_OnEnable - commentId: M:XRTK.Editor.Utilities.Lines.DataProviders.BezierDataProviderInspector.OnEnable - fullName: XRTK.Editor.Utilities.Lines.DataProviders.BezierDataProviderInspector.OnEnable() - nameWithType: BezierDataProviderInspector.OnEnable() -- uid: XRTK.Editor.Utilities.Lines.DataProviders.BezierDataProviderInspector.OnEnable* - name: OnEnable - href: api/XRTK.Editor.Utilities.Lines.DataProviders.BezierDataProviderInspector.html#XRTK_Editor_Utilities_Lines_DataProviders_BezierDataProviderInspector_OnEnable_ - commentId: Overload:XRTK.Editor.Utilities.Lines.DataProviders.BezierDataProviderInspector.OnEnable - isSpec: "True" - fullName: XRTK.Editor.Utilities.Lines.DataProviders.BezierDataProviderInspector.OnEnable - nameWithType: BezierDataProviderInspector.OnEnable -- uid: XRTK.Editor.Utilities.Lines.DataProviders.BezierDataProviderInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.Editor.Utilities.Lines.DataProviders.BezierDataProviderInspector.html#XRTK_Editor_Utilities_Lines_DataProviders_BezierDataProviderInspector_OnInspectorGUI - commentId: M:XRTK.Editor.Utilities.Lines.DataProviders.BezierDataProviderInspector.OnInspectorGUI - fullName: XRTK.Editor.Utilities.Lines.DataProviders.BezierDataProviderInspector.OnInspectorGUI() - nameWithType: BezierDataProviderInspector.OnInspectorGUI() -- uid: XRTK.Editor.Utilities.Lines.DataProviders.BezierDataProviderInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.Editor.Utilities.Lines.DataProviders.BezierDataProviderInspector.html#XRTK_Editor_Utilities_Lines_DataProviders_BezierDataProviderInspector_OnInspectorGUI_ - commentId: Overload:XRTK.Editor.Utilities.Lines.DataProviders.BezierDataProviderInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.Editor.Utilities.Lines.DataProviders.BezierDataProviderInspector.OnInspectorGUI - nameWithType: BezierDataProviderInspector.OnInspectorGUI -- uid: XRTK.Editor.Utilities.Lines.DataProviders.BezierDataProviderInspector.OnSceneGUI - name: OnSceneGUI() - href: api/XRTK.Editor.Utilities.Lines.DataProviders.BezierDataProviderInspector.html#XRTK_Editor_Utilities_Lines_DataProviders_BezierDataProviderInspector_OnSceneGUI - commentId: M:XRTK.Editor.Utilities.Lines.DataProviders.BezierDataProviderInspector.OnSceneGUI - fullName: XRTK.Editor.Utilities.Lines.DataProviders.BezierDataProviderInspector.OnSceneGUI() - nameWithType: BezierDataProviderInspector.OnSceneGUI() -- uid: XRTK.Editor.Utilities.Lines.DataProviders.BezierDataProviderInspector.OnSceneGUI* - name: OnSceneGUI - href: api/XRTK.Editor.Utilities.Lines.DataProviders.BezierDataProviderInspector.html#XRTK_Editor_Utilities_Lines_DataProviders_BezierDataProviderInspector_OnSceneGUI_ - commentId: Overload:XRTK.Editor.Utilities.Lines.DataProviders.BezierDataProviderInspector.OnSceneGUI - isSpec: "True" - fullName: XRTK.Editor.Utilities.Lines.DataProviders.BezierDataProviderInspector.OnSceneGUI - nameWithType: BezierDataProviderInspector.OnSceneGUI -- uid: XRTK.Editor.Utilities.Lines.DataProviders.EllipseLineDataProviderInspector - name: EllipseLineDataProviderInspector - href: api/XRTK.Editor.Utilities.Lines.DataProviders.EllipseLineDataProviderInspector.html - commentId: T:XRTK.Editor.Utilities.Lines.DataProviders.EllipseLineDataProviderInspector - fullName: XRTK.Editor.Utilities.Lines.DataProviders.EllipseLineDataProviderInspector - nameWithType: EllipseLineDataProviderInspector -- uid: XRTK.Editor.Utilities.Lines.DataProviders.EllipseLineDataProviderInspector.OnEnable - name: OnEnable() - href: api/XRTK.Editor.Utilities.Lines.DataProviders.EllipseLineDataProviderInspector.html#XRTK_Editor_Utilities_Lines_DataProviders_EllipseLineDataProviderInspector_OnEnable - commentId: M:XRTK.Editor.Utilities.Lines.DataProviders.EllipseLineDataProviderInspector.OnEnable - fullName: XRTK.Editor.Utilities.Lines.DataProviders.EllipseLineDataProviderInspector.OnEnable() - nameWithType: EllipseLineDataProviderInspector.OnEnable() -- uid: XRTK.Editor.Utilities.Lines.DataProviders.EllipseLineDataProviderInspector.OnEnable* - name: OnEnable - href: api/XRTK.Editor.Utilities.Lines.DataProviders.EllipseLineDataProviderInspector.html#XRTK_Editor_Utilities_Lines_DataProviders_EllipseLineDataProviderInspector_OnEnable_ - commentId: Overload:XRTK.Editor.Utilities.Lines.DataProviders.EllipseLineDataProviderInspector.OnEnable - isSpec: "True" - fullName: XRTK.Editor.Utilities.Lines.DataProviders.EllipseLineDataProviderInspector.OnEnable - nameWithType: EllipseLineDataProviderInspector.OnEnable -- uid: XRTK.Editor.Utilities.Lines.DataProviders.EllipseLineDataProviderInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.Editor.Utilities.Lines.DataProviders.EllipseLineDataProviderInspector.html#XRTK_Editor_Utilities_Lines_DataProviders_EllipseLineDataProviderInspector_OnInspectorGUI - commentId: M:XRTK.Editor.Utilities.Lines.DataProviders.EllipseLineDataProviderInspector.OnInspectorGUI - fullName: XRTK.Editor.Utilities.Lines.DataProviders.EllipseLineDataProviderInspector.OnInspectorGUI() - nameWithType: EllipseLineDataProviderInspector.OnInspectorGUI() -- uid: XRTK.Editor.Utilities.Lines.DataProviders.EllipseLineDataProviderInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.Editor.Utilities.Lines.DataProviders.EllipseLineDataProviderInspector.html#XRTK_Editor_Utilities_Lines_DataProviders_EllipseLineDataProviderInspector_OnInspectorGUI_ - commentId: Overload:XRTK.Editor.Utilities.Lines.DataProviders.EllipseLineDataProviderInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.Editor.Utilities.Lines.DataProviders.EllipseLineDataProviderInspector.OnInspectorGUI - nameWithType: EllipseLineDataProviderInspector.OnInspectorGUI -- uid: XRTK.Editor.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProviderInspector - name: ParabolaPhysicalLineDataProviderInspector - href: api/XRTK.Editor.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProviderInspector.html - commentId: T:XRTK.Editor.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProviderInspector - fullName: XRTK.Editor.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProviderInspector - nameWithType: ParabolaPhysicalLineDataProviderInspector -- uid: XRTK.Editor.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProviderInspector.OnEnable - name: OnEnable() - href: api/XRTK.Editor.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProviderInspector.html#XRTK_Editor_Utilities_Lines_DataProviders_ParabolaPhysicalLineDataProviderInspector_OnEnable - commentId: M:XRTK.Editor.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProviderInspector.OnEnable - fullName: XRTK.Editor.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProviderInspector.OnEnable() - nameWithType: ParabolaPhysicalLineDataProviderInspector.OnEnable() -- uid: XRTK.Editor.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProviderInspector.OnEnable* - name: OnEnable - href: api/XRTK.Editor.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProviderInspector.html#XRTK_Editor_Utilities_Lines_DataProviders_ParabolaPhysicalLineDataProviderInspector_OnEnable_ - commentId: Overload:XRTK.Editor.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProviderInspector.OnEnable - isSpec: "True" - fullName: XRTK.Editor.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProviderInspector.OnEnable - nameWithType: ParabolaPhysicalLineDataProviderInspector.OnEnable -- uid: XRTK.Editor.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProviderInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.Editor.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProviderInspector.html#XRTK_Editor_Utilities_Lines_DataProviders_ParabolaPhysicalLineDataProviderInspector_OnInspectorGUI - commentId: M:XRTK.Editor.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProviderInspector.OnInspectorGUI - fullName: XRTK.Editor.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProviderInspector.OnInspectorGUI() - nameWithType: ParabolaPhysicalLineDataProviderInspector.OnInspectorGUI() -- uid: XRTK.Editor.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProviderInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.Editor.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProviderInspector.html#XRTK_Editor_Utilities_Lines_DataProviders_ParabolaPhysicalLineDataProviderInspector_OnInspectorGUI_ - commentId: Overload:XRTK.Editor.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProviderInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.Editor.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProviderInspector.OnInspectorGUI - nameWithType: ParabolaPhysicalLineDataProviderInspector.OnInspectorGUI -- uid: XRTK.Editor.Utilities.Lines.DataProviders.ParabolicConstrainedLineDataProviderInspector - name: ParabolicConstrainedLineDataProviderInspector - href: api/XRTK.Editor.Utilities.Lines.DataProviders.ParabolicConstrainedLineDataProviderInspector.html - commentId: T:XRTK.Editor.Utilities.Lines.DataProviders.ParabolicConstrainedLineDataProviderInspector - fullName: XRTK.Editor.Utilities.Lines.DataProviders.ParabolicConstrainedLineDataProviderInspector - nameWithType: ParabolicConstrainedLineDataProviderInspector -- uid: XRTK.Editor.Utilities.Lines.DataProviders.ParabolicConstrainedLineDataProviderInspector.OnEnable - name: OnEnable() - href: api/XRTK.Editor.Utilities.Lines.DataProviders.ParabolicConstrainedLineDataProviderInspector.html#XRTK_Editor_Utilities_Lines_DataProviders_ParabolicConstrainedLineDataProviderInspector_OnEnable - commentId: M:XRTK.Editor.Utilities.Lines.DataProviders.ParabolicConstrainedLineDataProviderInspector.OnEnable - fullName: XRTK.Editor.Utilities.Lines.DataProviders.ParabolicConstrainedLineDataProviderInspector.OnEnable() - nameWithType: ParabolicConstrainedLineDataProviderInspector.OnEnable() -- uid: XRTK.Editor.Utilities.Lines.DataProviders.ParabolicConstrainedLineDataProviderInspector.OnEnable* - name: OnEnable - href: api/XRTK.Editor.Utilities.Lines.DataProviders.ParabolicConstrainedLineDataProviderInspector.html#XRTK_Editor_Utilities_Lines_DataProviders_ParabolicConstrainedLineDataProviderInspector_OnEnable_ - commentId: Overload:XRTK.Editor.Utilities.Lines.DataProviders.ParabolicConstrainedLineDataProviderInspector.OnEnable - isSpec: "True" - fullName: XRTK.Editor.Utilities.Lines.DataProviders.ParabolicConstrainedLineDataProviderInspector.OnEnable - nameWithType: ParabolicConstrainedLineDataProviderInspector.OnEnable -- uid: XRTK.Editor.Utilities.Lines.DataProviders.ParabolicConstrainedLineDataProviderInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.Editor.Utilities.Lines.DataProviders.ParabolicConstrainedLineDataProviderInspector.html#XRTK_Editor_Utilities_Lines_DataProviders_ParabolicConstrainedLineDataProviderInspector_OnInspectorGUI - commentId: M:XRTK.Editor.Utilities.Lines.DataProviders.ParabolicConstrainedLineDataProviderInspector.OnInspectorGUI - fullName: XRTK.Editor.Utilities.Lines.DataProviders.ParabolicConstrainedLineDataProviderInspector.OnInspectorGUI() - nameWithType: ParabolicConstrainedLineDataProviderInspector.OnInspectorGUI() -- uid: XRTK.Editor.Utilities.Lines.DataProviders.ParabolicConstrainedLineDataProviderInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.Editor.Utilities.Lines.DataProviders.ParabolicConstrainedLineDataProviderInspector.html#XRTK_Editor_Utilities_Lines_DataProviders_ParabolicConstrainedLineDataProviderInspector_OnInspectorGUI_ - commentId: Overload:XRTK.Editor.Utilities.Lines.DataProviders.ParabolicConstrainedLineDataProviderInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.Editor.Utilities.Lines.DataProviders.ParabolicConstrainedLineDataProviderInspector.OnInspectorGUI - nameWithType: ParabolicConstrainedLineDataProviderInspector.OnInspectorGUI -- uid: XRTK.Editor.Utilities.Lines.DataProviders.ParabolicConstrainedLineDataProviderInspector.OnSceneGUI - name: OnSceneGUI() - href: api/XRTK.Editor.Utilities.Lines.DataProviders.ParabolicConstrainedLineDataProviderInspector.html#XRTK_Editor_Utilities_Lines_DataProviders_ParabolicConstrainedLineDataProviderInspector_OnSceneGUI - commentId: M:XRTK.Editor.Utilities.Lines.DataProviders.ParabolicConstrainedLineDataProviderInspector.OnSceneGUI - fullName: XRTK.Editor.Utilities.Lines.DataProviders.ParabolicConstrainedLineDataProviderInspector.OnSceneGUI() - nameWithType: ParabolicConstrainedLineDataProviderInspector.OnSceneGUI() -- uid: XRTK.Editor.Utilities.Lines.DataProviders.ParabolicConstrainedLineDataProviderInspector.OnSceneGUI* - name: OnSceneGUI - href: api/XRTK.Editor.Utilities.Lines.DataProviders.ParabolicConstrainedLineDataProviderInspector.html#XRTK_Editor_Utilities_Lines_DataProviders_ParabolicConstrainedLineDataProviderInspector_OnSceneGUI_ - commentId: Overload:XRTK.Editor.Utilities.Lines.DataProviders.ParabolicConstrainedLineDataProviderInspector.OnSceneGUI - isSpec: "True" - fullName: XRTK.Editor.Utilities.Lines.DataProviders.ParabolicConstrainedLineDataProviderInspector.OnSceneGUI - nameWithType: ParabolicConstrainedLineDataProviderInspector.OnSceneGUI -- uid: XRTK.Editor.Utilities.Lines.DataProviders.RectangleLineDataProviderInspector - name: RectangleLineDataProviderInspector - href: api/XRTK.Editor.Utilities.Lines.DataProviders.RectangleLineDataProviderInspector.html - commentId: T:XRTK.Editor.Utilities.Lines.DataProviders.RectangleLineDataProviderInspector - fullName: XRTK.Editor.Utilities.Lines.DataProviders.RectangleLineDataProviderInspector - nameWithType: RectangleLineDataProviderInspector -- uid: XRTK.Editor.Utilities.Lines.DataProviders.RectangleLineDataProviderInspector.OnEnable - name: OnEnable() - href: api/XRTK.Editor.Utilities.Lines.DataProviders.RectangleLineDataProviderInspector.html#XRTK_Editor_Utilities_Lines_DataProviders_RectangleLineDataProviderInspector_OnEnable - commentId: M:XRTK.Editor.Utilities.Lines.DataProviders.RectangleLineDataProviderInspector.OnEnable - fullName: XRTK.Editor.Utilities.Lines.DataProviders.RectangleLineDataProviderInspector.OnEnable() - nameWithType: RectangleLineDataProviderInspector.OnEnable() -- uid: XRTK.Editor.Utilities.Lines.DataProviders.RectangleLineDataProviderInspector.OnEnable* - name: OnEnable - href: api/XRTK.Editor.Utilities.Lines.DataProviders.RectangleLineDataProviderInspector.html#XRTK_Editor_Utilities_Lines_DataProviders_RectangleLineDataProviderInspector_OnEnable_ - commentId: Overload:XRTK.Editor.Utilities.Lines.DataProviders.RectangleLineDataProviderInspector.OnEnable - isSpec: "True" - fullName: XRTK.Editor.Utilities.Lines.DataProviders.RectangleLineDataProviderInspector.OnEnable - nameWithType: RectangleLineDataProviderInspector.OnEnable -- uid: XRTK.Editor.Utilities.Lines.DataProviders.RectangleLineDataProviderInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.Editor.Utilities.Lines.DataProviders.RectangleLineDataProviderInspector.html#XRTK_Editor_Utilities_Lines_DataProviders_RectangleLineDataProviderInspector_OnInspectorGUI - commentId: M:XRTK.Editor.Utilities.Lines.DataProviders.RectangleLineDataProviderInspector.OnInspectorGUI - fullName: XRTK.Editor.Utilities.Lines.DataProviders.RectangleLineDataProviderInspector.OnInspectorGUI() - nameWithType: RectangleLineDataProviderInspector.OnInspectorGUI() -- uid: XRTK.Editor.Utilities.Lines.DataProviders.RectangleLineDataProviderInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.Editor.Utilities.Lines.DataProviders.RectangleLineDataProviderInspector.html#XRTK_Editor_Utilities_Lines_DataProviders_RectangleLineDataProviderInspector_OnInspectorGUI_ - commentId: Overload:XRTK.Editor.Utilities.Lines.DataProviders.RectangleLineDataProviderInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.Editor.Utilities.Lines.DataProviders.RectangleLineDataProviderInspector.OnInspectorGUI - nameWithType: RectangleLineDataProviderInspector.OnInspectorGUI -- uid: XRTK.Editor.Utilities.Lines.DataProviders.RectangleLineDataProviderInspector.OnSceneGUI - name: OnSceneGUI() - href: api/XRTK.Editor.Utilities.Lines.DataProviders.RectangleLineDataProviderInspector.html#XRTK_Editor_Utilities_Lines_DataProviders_RectangleLineDataProviderInspector_OnSceneGUI - commentId: M:XRTK.Editor.Utilities.Lines.DataProviders.RectangleLineDataProviderInspector.OnSceneGUI - fullName: XRTK.Editor.Utilities.Lines.DataProviders.RectangleLineDataProviderInspector.OnSceneGUI() - nameWithType: RectangleLineDataProviderInspector.OnSceneGUI() -- uid: XRTK.Editor.Utilities.Lines.DataProviders.RectangleLineDataProviderInspector.OnSceneGUI* - name: OnSceneGUI - href: api/XRTK.Editor.Utilities.Lines.DataProviders.RectangleLineDataProviderInspector.html#XRTK_Editor_Utilities_Lines_DataProviders_RectangleLineDataProviderInspector_OnSceneGUI_ - commentId: Overload:XRTK.Editor.Utilities.Lines.DataProviders.RectangleLineDataProviderInspector.OnSceneGUI - isSpec: "True" - fullName: XRTK.Editor.Utilities.Lines.DataProviders.RectangleLineDataProviderInspector.OnSceneGUI - nameWithType: RectangleLineDataProviderInspector.OnSceneGUI -- uid: XRTK.Editor.Utilities.Lines.DataProviders.SimpleLineDataProviderInspector - name: SimpleLineDataProviderInspector - href: api/XRTK.Editor.Utilities.Lines.DataProviders.SimpleLineDataProviderInspector.html - commentId: T:XRTK.Editor.Utilities.Lines.DataProviders.SimpleLineDataProviderInspector - fullName: XRTK.Editor.Utilities.Lines.DataProviders.SimpleLineDataProviderInspector - nameWithType: SimpleLineDataProviderInspector -- uid: XRTK.Editor.Utilities.Lines.DataProviders.SimpleLineDataProviderInspector.OnEnable - name: OnEnable() - href: api/XRTK.Editor.Utilities.Lines.DataProviders.SimpleLineDataProviderInspector.html#XRTK_Editor_Utilities_Lines_DataProviders_SimpleLineDataProviderInspector_OnEnable - commentId: M:XRTK.Editor.Utilities.Lines.DataProviders.SimpleLineDataProviderInspector.OnEnable - fullName: XRTK.Editor.Utilities.Lines.DataProviders.SimpleLineDataProviderInspector.OnEnable() - nameWithType: SimpleLineDataProviderInspector.OnEnable() -- uid: XRTK.Editor.Utilities.Lines.DataProviders.SimpleLineDataProviderInspector.OnEnable* - name: OnEnable - href: api/XRTK.Editor.Utilities.Lines.DataProviders.SimpleLineDataProviderInspector.html#XRTK_Editor_Utilities_Lines_DataProviders_SimpleLineDataProviderInspector_OnEnable_ - commentId: Overload:XRTK.Editor.Utilities.Lines.DataProviders.SimpleLineDataProviderInspector.OnEnable - isSpec: "True" - fullName: XRTK.Editor.Utilities.Lines.DataProviders.SimpleLineDataProviderInspector.OnEnable - nameWithType: SimpleLineDataProviderInspector.OnEnable -- uid: XRTK.Editor.Utilities.Lines.DataProviders.SimpleLineDataProviderInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.Editor.Utilities.Lines.DataProviders.SimpleLineDataProviderInspector.html#XRTK_Editor_Utilities_Lines_DataProviders_SimpleLineDataProviderInspector_OnInspectorGUI - commentId: M:XRTK.Editor.Utilities.Lines.DataProviders.SimpleLineDataProviderInspector.OnInspectorGUI - fullName: XRTK.Editor.Utilities.Lines.DataProviders.SimpleLineDataProviderInspector.OnInspectorGUI() - nameWithType: SimpleLineDataProviderInspector.OnInspectorGUI() -- uid: XRTK.Editor.Utilities.Lines.DataProviders.SimpleLineDataProviderInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.Editor.Utilities.Lines.DataProviders.SimpleLineDataProviderInspector.html#XRTK_Editor_Utilities_Lines_DataProviders_SimpleLineDataProviderInspector_OnInspectorGUI_ - commentId: Overload:XRTK.Editor.Utilities.Lines.DataProviders.SimpleLineDataProviderInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.Editor.Utilities.Lines.DataProviders.SimpleLineDataProviderInspector.OnInspectorGUI - nameWithType: SimpleLineDataProviderInspector.OnInspectorGUI -- uid: XRTK.Editor.Utilities.Lines.DataProviders.SimpleLineDataProviderInspector.OnSceneGUI - name: OnSceneGUI() - href: api/XRTK.Editor.Utilities.Lines.DataProviders.SimpleLineDataProviderInspector.html#XRTK_Editor_Utilities_Lines_DataProviders_SimpleLineDataProviderInspector_OnSceneGUI - commentId: M:XRTK.Editor.Utilities.Lines.DataProviders.SimpleLineDataProviderInspector.OnSceneGUI - fullName: XRTK.Editor.Utilities.Lines.DataProviders.SimpleLineDataProviderInspector.OnSceneGUI() - nameWithType: SimpleLineDataProviderInspector.OnSceneGUI() -- uid: XRTK.Editor.Utilities.Lines.DataProviders.SimpleLineDataProviderInspector.OnSceneGUI* - name: OnSceneGUI - href: api/XRTK.Editor.Utilities.Lines.DataProviders.SimpleLineDataProviderInspector.html#XRTK_Editor_Utilities_Lines_DataProviders_SimpleLineDataProviderInspector_OnSceneGUI_ - commentId: Overload:XRTK.Editor.Utilities.Lines.DataProviders.SimpleLineDataProviderInspector.OnSceneGUI - isSpec: "True" - fullName: XRTK.Editor.Utilities.Lines.DataProviders.SimpleLineDataProviderInspector.OnSceneGUI - nameWithType: SimpleLineDataProviderInspector.OnSceneGUI -- uid: XRTK.Editor.Utilities.Lines.DataProviders.SplineDataProviderInspector - name: SplineDataProviderInspector - href: api/XRTK.Editor.Utilities.Lines.DataProviders.SplineDataProviderInspector.html - commentId: T:XRTK.Editor.Utilities.Lines.DataProviders.SplineDataProviderInspector - fullName: XRTK.Editor.Utilities.Lines.DataProviders.SplineDataProviderInspector - nameWithType: SplineDataProviderInspector -- uid: XRTK.Editor.Utilities.Lines.DataProviders.SplineDataProviderInspector.OnEnable - name: OnEnable() - href: api/XRTK.Editor.Utilities.Lines.DataProviders.SplineDataProviderInspector.html#XRTK_Editor_Utilities_Lines_DataProviders_SplineDataProviderInspector_OnEnable - commentId: M:XRTK.Editor.Utilities.Lines.DataProviders.SplineDataProviderInspector.OnEnable - fullName: XRTK.Editor.Utilities.Lines.DataProviders.SplineDataProviderInspector.OnEnable() - nameWithType: SplineDataProviderInspector.OnEnable() -- uid: XRTK.Editor.Utilities.Lines.DataProviders.SplineDataProviderInspector.OnEnable* - name: OnEnable - href: api/XRTK.Editor.Utilities.Lines.DataProviders.SplineDataProviderInspector.html#XRTK_Editor_Utilities_Lines_DataProviders_SplineDataProviderInspector_OnEnable_ - commentId: Overload:XRTK.Editor.Utilities.Lines.DataProviders.SplineDataProviderInspector.OnEnable - isSpec: "True" - fullName: XRTK.Editor.Utilities.Lines.DataProviders.SplineDataProviderInspector.OnEnable - nameWithType: SplineDataProviderInspector.OnEnable -- uid: XRTK.Editor.Utilities.Lines.DataProviders.SplineDataProviderInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.Editor.Utilities.Lines.DataProviders.SplineDataProviderInspector.html#XRTK_Editor_Utilities_Lines_DataProviders_SplineDataProviderInspector_OnInspectorGUI - commentId: M:XRTK.Editor.Utilities.Lines.DataProviders.SplineDataProviderInspector.OnInspectorGUI - fullName: XRTK.Editor.Utilities.Lines.DataProviders.SplineDataProviderInspector.OnInspectorGUI() - nameWithType: SplineDataProviderInspector.OnInspectorGUI() -- uid: XRTK.Editor.Utilities.Lines.DataProviders.SplineDataProviderInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.Editor.Utilities.Lines.DataProviders.SplineDataProviderInspector.html#XRTK_Editor_Utilities_Lines_DataProviders_SplineDataProviderInspector_OnInspectorGUI_ - commentId: Overload:XRTK.Editor.Utilities.Lines.DataProviders.SplineDataProviderInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.Editor.Utilities.Lines.DataProviders.SplineDataProviderInspector.OnInspectorGUI - nameWithType: SplineDataProviderInspector.OnInspectorGUI -- uid: XRTK.Editor.Utilities.Lines.DataProviders.SplineDataProviderInspector.OnSceneGUI - name: OnSceneGUI() - href: api/XRTK.Editor.Utilities.Lines.DataProviders.SplineDataProviderInspector.html#XRTK_Editor_Utilities_Lines_DataProviders_SplineDataProviderInspector_OnSceneGUI - commentId: M:XRTK.Editor.Utilities.Lines.DataProviders.SplineDataProviderInspector.OnSceneGUI - fullName: XRTK.Editor.Utilities.Lines.DataProviders.SplineDataProviderInspector.OnSceneGUI() - nameWithType: SplineDataProviderInspector.OnSceneGUI() -- uid: XRTK.Editor.Utilities.Lines.DataProviders.SplineDataProviderInspector.OnSceneGUI* - name: OnSceneGUI - href: api/XRTK.Editor.Utilities.Lines.DataProviders.SplineDataProviderInspector.html#XRTK_Editor_Utilities_Lines_DataProviders_SplineDataProviderInspector_OnSceneGUI_ - commentId: Overload:XRTK.Editor.Utilities.Lines.DataProviders.SplineDataProviderInspector.OnSceneGUI - isSpec: "True" - fullName: XRTK.Editor.Utilities.Lines.DataProviders.SplineDataProviderInspector.OnSceneGUI - nameWithType: SplineDataProviderInspector.OnSceneGUI -- uid: XRTK.Editor.Utilities.MixedRealityEditorSettings - name: MixedRealityEditorSettings - href: api/XRTK.Editor.Utilities.MixedRealityEditorSettings.html - commentId: T:XRTK.Editor.Utilities.MixedRealityEditorSettings - fullName: XRTK.Editor.Utilities.MixedRealityEditorSettings - nameWithType: MixedRealityEditorSettings -- uid: XRTK.Editor.Utilities.MixedRealityEditorSettings.callbackOrder - name: callbackOrder - href: api/XRTK.Editor.Utilities.MixedRealityEditorSettings.html#XRTK_Editor_Utilities_MixedRealityEditorSettings_callbackOrder - commentId: P:XRTK.Editor.Utilities.MixedRealityEditorSettings.callbackOrder - fullName: XRTK.Editor.Utilities.MixedRealityEditorSettings.callbackOrder - nameWithType: MixedRealityEditorSettings.callbackOrder -- uid: XRTK.Editor.Utilities.MixedRealityEditorSettings.callbackOrder* - name: callbackOrder - href: api/XRTK.Editor.Utilities.MixedRealityEditorSettings.html#XRTK_Editor_Utilities_MixedRealityEditorSettings_callbackOrder_ - commentId: Overload:XRTK.Editor.Utilities.MixedRealityEditorSettings.callbackOrder - isSpec: "True" - fullName: XRTK.Editor.Utilities.MixedRealityEditorSettings.callbackOrder - nameWithType: MixedRealityEditorSettings.callbackOrder -- uid: XRTK.Editor.Utilities.MixedRealityEditorSettings.CheckSettings - name: CheckSettings() - href: api/XRTK.Editor.Utilities.MixedRealityEditorSettings.html#XRTK_Editor_Utilities_MixedRealityEditorSettings_CheckSettings - commentId: M:XRTK.Editor.Utilities.MixedRealityEditorSettings.CheckSettings - fullName: XRTK.Editor.Utilities.MixedRealityEditorSettings.CheckSettings() - nameWithType: MixedRealityEditorSettings.CheckSettings() -- uid: XRTK.Editor.Utilities.MixedRealityEditorSettings.CheckSettings* - name: CheckSettings - href: api/XRTK.Editor.Utilities.MixedRealityEditorSettings.html#XRTK_Editor_Utilities_MixedRealityEditorSettings_CheckSettings_ - commentId: Overload:XRTK.Editor.Utilities.MixedRealityEditorSettings.CheckSettings - isSpec: "True" - fullName: XRTK.Editor.Utilities.MixedRealityEditorSettings.CheckSettings - nameWithType: MixedRealityEditorSettings.CheckSettings -- uid: XRTK.Editor.Utilities.MixedRealityInspectorUtility - name: MixedRealityInspectorUtility - href: api/XRTK.Editor.Utilities.MixedRealityInspectorUtility.html - commentId: T:XRTK.Editor.Utilities.MixedRealityInspectorUtility - fullName: XRTK.Editor.Utilities.MixedRealityInspectorUtility - nameWithType: MixedRealityInspectorUtility -- uid: XRTK.Editor.Utilities.MixedRealityInspectorUtility.AxisMoveHandle(UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Vector3,System.Single,System.Single,System.Boolean,System.Boolean) - name: AxisMoveHandle(Object, Vector3, Vector3, Single, Single, Boolean, Boolean) - href: api/XRTK.Editor.Utilities.MixedRealityInspectorUtility.html#XRTK_Editor_Utilities_MixedRealityInspectorUtility_AxisMoveHandle_UnityEngine_Object_UnityEngine_Vector3_UnityEngine_Vector3_System_Single_System_Single_System_Boolean_System_Boolean_ - commentId: M:XRTK.Editor.Utilities.MixedRealityInspectorUtility.AxisMoveHandle(UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Vector3,System.Single,System.Single,System.Boolean,System.Boolean) - fullName: XRTK.Editor.Utilities.MixedRealityInspectorUtility.AxisMoveHandle(UnityEngine.Object, UnityEngine.Vector3, UnityEngine.Vector3, System.Single, System.Single, System.Boolean, System.Boolean) - nameWithType: MixedRealityInspectorUtility.AxisMoveHandle(Object, Vector3, Vector3, Single, Single, Boolean, Boolean) -- uid: XRTK.Editor.Utilities.MixedRealityInspectorUtility.AxisMoveHandle* - name: AxisMoveHandle - href: api/XRTK.Editor.Utilities.MixedRealityInspectorUtility.html#XRTK_Editor_Utilities_MixedRealityInspectorUtility_AxisMoveHandle_ - commentId: Overload:XRTK.Editor.Utilities.MixedRealityInspectorUtility.AxisMoveHandle - isSpec: "True" - fullName: XRTK.Editor.Utilities.MixedRealityInspectorUtility.AxisMoveHandle - nameWithType: MixedRealityInspectorUtility.AxisMoveHandle -- uid: XRTK.Editor.Utilities.MixedRealityInspectorUtility.BoldCenteredHeaderStyle - name: BoldCenteredHeaderStyle - href: api/XRTK.Editor.Utilities.MixedRealityInspectorUtility.html#XRTK_Editor_Utilities_MixedRealityInspectorUtility_BoldCenteredHeaderStyle - commentId: P:XRTK.Editor.Utilities.MixedRealityInspectorUtility.BoldCenteredHeaderStyle - fullName: XRTK.Editor.Utilities.MixedRealityInspectorUtility.BoldCenteredHeaderStyle - nameWithType: MixedRealityInspectorUtility.BoldCenteredHeaderStyle -- uid: XRTK.Editor.Utilities.MixedRealityInspectorUtility.BoldCenteredHeaderStyle* - name: BoldCenteredHeaderStyle - href: api/XRTK.Editor.Utilities.MixedRealityInspectorUtility.html#XRTK_Editor_Utilities_MixedRealityInspectorUtility_BoldCenteredHeaderStyle_ - commentId: Overload:XRTK.Editor.Utilities.MixedRealityInspectorUtility.BoldCenteredHeaderStyle - isSpec: "True" - fullName: XRTK.Editor.Utilities.MixedRealityInspectorUtility.BoldCenteredHeaderStyle - nameWithType: MixedRealityInspectorUtility.BoldCenteredHeaderStyle -- uid: XRTK.Editor.Utilities.MixedRealityInspectorUtility.CenterOnMainWin(UnityEditor.EditorWindow) - name: CenterOnMainWin(EditorWindow) - href: api/XRTK.Editor.Utilities.MixedRealityInspectorUtility.html#XRTK_Editor_Utilities_MixedRealityInspectorUtility_CenterOnMainWin_UnityEditor_EditorWindow_ - commentId: M:XRTK.Editor.Utilities.MixedRealityInspectorUtility.CenterOnMainWin(UnityEditor.EditorWindow) - fullName: XRTK.Editor.Utilities.MixedRealityInspectorUtility.CenterOnMainWin(UnityEditor.EditorWindow) - nameWithType: MixedRealityInspectorUtility.CenterOnMainWin(EditorWindow) -- uid: XRTK.Editor.Utilities.MixedRealityInspectorUtility.CenterOnMainWin* - name: CenterOnMainWin - href: api/XRTK.Editor.Utilities.MixedRealityInspectorUtility.html#XRTK_Editor_Utilities_MixedRealityInspectorUtility_CenterOnMainWin_ - commentId: Overload:XRTK.Editor.Utilities.MixedRealityInspectorUtility.CenterOnMainWin - isSpec: "True" - fullName: XRTK.Editor.Utilities.MixedRealityInspectorUtility.CenterOnMainWin - nameWithType: MixedRealityInspectorUtility.CenterOnMainWin -- uid: XRTK.Editor.Utilities.MixedRealityInspectorUtility.CircleMoveHandle(UnityEngine.Object,UnityEngine.Vector3,System.Single,System.Single,System.Single,System.Single,System.Boolean,System.Boolean) - name: CircleMoveHandle(Object, Vector3, Single, Single, Single, Single, Boolean, Boolean) - href: api/XRTK.Editor.Utilities.MixedRealityInspectorUtility.html#XRTK_Editor_Utilities_MixedRealityInspectorUtility_CircleMoveHandle_UnityEngine_Object_UnityEngine_Vector3_System_Single_System_Single_System_Single_System_Single_System_Boolean_System_Boolean_ - commentId: M:XRTK.Editor.Utilities.MixedRealityInspectorUtility.CircleMoveHandle(UnityEngine.Object,UnityEngine.Vector3,System.Single,System.Single,System.Single,System.Single,System.Boolean,System.Boolean) - fullName: XRTK.Editor.Utilities.MixedRealityInspectorUtility.CircleMoveHandle(UnityEngine.Object, UnityEngine.Vector3, System.Single, System.Single, System.Single, System.Single, System.Boolean, System.Boolean) - nameWithType: MixedRealityInspectorUtility.CircleMoveHandle(Object, Vector3, Single, Single, Single, Single, Boolean, Boolean) -- uid: XRTK.Editor.Utilities.MixedRealityInspectorUtility.CircleMoveHandle* - name: CircleMoveHandle - href: api/XRTK.Editor.Utilities.MixedRealityInspectorUtility.html#XRTK_Editor_Utilities_MixedRealityInspectorUtility_CircleMoveHandle_ - commentId: Overload:XRTK.Editor.Utilities.MixedRealityInspectorUtility.CircleMoveHandle - isSpec: "True" - fullName: XRTK.Editor.Utilities.MixedRealityInspectorUtility.CircleMoveHandle - nameWithType: MixedRealityInspectorUtility.CircleMoveHandle -- uid: XRTK.Editor.Utilities.MixedRealityInspectorUtility.DarkColor - name: DarkColor - href: api/XRTK.Editor.Utilities.MixedRealityInspectorUtility.html#XRTK_Editor_Utilities_MixedRealityInspectorUtility_DarkColor - commentId: F:XRTK.Editor.Utilities.MixedRealityInspectorUtility.DarkColor - fullName: XRTK.Editor.Utilities.MixedRealityInspectorUtility.DarkColor - nameWithType: MixedRealityInspectorUtility.DarkColor -- uid: XRTK.Editor.Utilities.MixedRealityInspectorUtility.DarkThemeLogo - name: DarkThemeLogo - href: api/XRTK.Editor.Utilities.MixedRealityInspectorUtility.html#XRTK_Editor_Utilities_MixedRealityInspectorUtility_DarkThemeLogo - commentId: P:XRTK.Editor.Utilities.MixedRealityInspectorUtility.DarkThemeLogo - fullName: XRTK.Editor.Utilities.MixedRealityInspectorUtility.DarkThemeLogo - nameWithType: MixedRealityInspectorUtility.DarkThemeLogo -- uid: XRTK.Editor.Utilities.MixedRealityInspectorUtility.DarkThemeLogo* - name: DarkThemeLogo - href: api/XRTK.Editor.Utilities.MixedRealityInspectorUtility.html#XRTK_Editor_Utilities_MixedRealityInspectorUtility_DarkThemeLogo_ - commentId: Overload:XRTK.Editor.Utilities.MixedRealityInspectorUtility.DarkThemeLogo - isSpec: "True" - fullName: XRTK.Editor.Utilities.MixedRealityInspectorUtility.DarkThemeLogo - nameWithType: MixedRealityInspectorUtility.DarkThemeLogo -- uid: XRTK.Editor.Utilities.MixedRealityInspectorUtility.DisabledColor - name: DisabledColor - href: api/XRTK.Editor.Utilities.MixedRealityInspectorUtility.html#XRTK_Editor_Utilities_MixedRealityInspectorUtility_DisabledColor - commentId: F:XRTK.Editor.Utilities.MixedRealityInspectorUtility.DisabledColor - fullName: XRTK.Editor.Utilities.MixedRealityInspectorUtility.DisabledColor - nameWithType: MixedRealityInspectorUtility.DisabledColor -- uid: XRTK.Editor.Utilities.MixedRealityInspectorUtility.DottedLineScreenSpace - name: DottedLineScreenSpace - href: api/XRTK.Editor.Utilities.MixedRealityInspectorUtility.html#XRTK_Editor_Utilities_MixedRealityInspectorUtility_DottedLineScreenSpace - commentId: F:XRTK.Editor.Utilities.MixedRealityInspectorUtility.DottedLineScreenSpace - fullName: XRTK.Editor.Utilities.MixedRealityInspectorUtility.DottedLineScreenSpace - nameWithType: MixedRealityInspectorUtility.DottedLineScreenSpace -- uid: XRTK.Editor.Utilities.MixedRealityInspectorUtility.DrawWireCapsule(UnityEngine.Vector3,UnityEngine.Quaternion,System.Single,System.Single,UnityEngine.Color) - name: DrawWireCapsule(Vector3, Quaternion, Single, Single, Color) - href: api/XRTK.Editor.Utilities.MixedRealityInspectorUtility.html#XRTK_Editor_Utilities_MixedRealityInspectorUtility_DrawWireCapsule_UnityEngine_Vector3_UnityEngine_Quaternion_System_Single_System_Single_UnityEngine_Color_ - commentId: M:XRTK.Editor.Utilities.MixedRealityInspectorUtility.DrawWireCapsule(UnityEngine.Vector3,UnityEngine.Quaternion,System.Single,System.Single,UnityEngine.Color) - fullName: XRTK.Editor.Utilities.MixedRealityInspectorUtility.DrawWireCapsule(UnityEngine.Vector3, UnityEngine.Quaternion, System.Single, System.Single, UnityEngine.Color) - nameWithType: MixedRealityInspectorUtility.DrawWireCapsule(Vector3, Quaternion, Single, Single, Color) -- uid: XRTK.Editor.Utilities.MixedRealityInspectorUtility.DrawWireCapsule* - name: DrawWireCapsule - href: api/XRTK.Editor.Utilities.MixedRealityInspectorUtility.html#XRTK_Editor_Utilities_MixedRealityInspectorUtility_DrawWireCapsule_ - commentId: Overload:XRTK.Editor.Utilities.MixedRealityInspectorUtility.DrawWireCapsule - isSpec: "True" - fullName: XRTK.Editor.Utilities.MixedRealityInspectorUtility.DrawWireCapsule - nameWithType: MixedRealityInspectorUtility.DrawWireCapsule -- uid: XRTK.Editor.Utilities.MixedRealityInspectorUtility.ErrorColor - name: ErrorColor - href: api/XRTK.Editor.Utilities.MixedRealityInspectorUtility.html#XRTK_Editor_Utilities_MixedRealityInspectorUtility_ErrorColor - commentId: F:XRTK.Editor.Utilities.MixedRealityInspectorUtility.ErrorColor - fullName: XRTK.Editor.Utilities.MixedRealityInspectorUtility.ErrorColor - nameWithType: MixedRealityInspectorUtility.ErrorColor -- uid: XRTK.Editor.Utilities.MixedRealityInspectorUtility.GetEditorMainWindowPos - name: GetEditorMainWindowPos() - href: api/XRTK.Editor.Utilities.MixedRealityInspectorUtility.html#XRTK_Editor_Utilities_MixedRealityInspectorUtility_GetEditorMainWindowPos - commentId: M:XRTK.Editor.Utilities.MixedRealityInspectorUtility.GetEditorMainWindowPos - fullName: XRTK.Editor.Utilities.MixedRealityInspectorUtility.GetEditorMainWindowPos() - nameWithType: MixedRealityInspectorUtility.GetEditorMainWindowPos() -- uid: XRTK.Editor.Utilities.MixedRealityInspectorUtility.GetEditorMainWindowPos* - name: GetEditorMainWindowPos - href: api/XRTK.Editor.Utilities.MixedRealityInspectorUtility.html#XRTK_Editor_Utilities_MixedRealityInspectorUtility_GetEditorMainWindowPos_ - commentId: Overload:XRTK.Editor.Utilities.MixedRealityInspectorUtility.GetEditorMainWindowPos - isSpec: "True" - fullName: XRTK.Editor.Utilities.MixedRealityInspectorUtility.GetEditorMainWindowPos - nameWithType: MixedRealityInspectorUtility.GetEditorMainWindowPos -- uid: XRTK.Editor.Utilities.MixedRealityInspectorUtility.HandleColorAxis - name: HandleColorAxis - href: api/XRTK.Editor.Utilities.MixedRealityInspectorUtility.html#XRTK_Editor_Utilities_MixedRealityInspectorUtility_HandleColorAxis - commentId: F:XRTK.Editor.Utilities.MixedRealityInspectorUtility.HandleColorAxis - fullName: XRTK.Editor.Utilities.MixedRealityInspectorUtility.HandleColorAxis - nameWithType: MixedRealityInspectorUtility.HandleColorAxis -- uid: XRTK.Editor.Utilities.MixedRealityInspectorUtility.HandleColorCircle - name: HandleColorCircle - href: api/XRTK.Editor.Utilities.MixedRealityInspectorUtility.html#XRTK_Editor_Utilities_MixedRealityInspectorUtility_HandleColorCircle - commentId: F:XRTK.Editor.Utilities.MixedRealityInspectorUtility.HandleColorCircle - fullName: XRTK.Editor.Utilities.MixedRealityInspectorUtility.HandleColorCircle - nameWithType: MixedRealityInspectorUtility.HandleColorCircle -- uid: XRTK.Editor.Utilities.MixedRealityInspectorUtility.HandleColorRotation - name: HandleColorRotation - href: api/XRTK.Editor.Utilities.MixedRealityInspectorUtility.html#XRTK_Editor_Utilities_MixedRealityInspectorUtility_HandleColorRotation - commentId: F:XRTK.Editor.Utilities.MixedRealityInspectorUtility.HandleColorRotation - fullName: XRTK.Editor.Utilities.MixedRealityInspectorUtility.HandleColorRotation - nameWithType: MixedRealityInspectorUtility.HandleColorRotation -- uid: XRTK.Editor.Utilities.MixedRealityInspectorUtility.HandleColorSphere - name: HandleColorSphere - href: api/XRTK.Editor.Utilities.MixedRealityInspectorUtility.html#XRTK_Editor_Utilities_MixedRealityInspectorUtility_HandleColorSphere - commentId: F:XRTK.Editor.Utilities.MixedRealityInspectorUtility.HandleColorSphere - fullName: XRTK.Editor.Utilities.MixedRealityInspectorUtility.HandleColorSphere - nameWithType: MixedRealityInspectorUtility.HandleColorSphere -- uid: XRTK.Editor.Utilities.MixedRealityInspectorUtility.HandleColorSquare - name: HandleColorSquare - href: api/XRTK.Editor.Utilities.MixedRealityInspectorUtility.html#XRTK_Editor_Utilities_MixedRealityInspectorUtility_HandleColorSquare - commentId: F:XRTK.Editor.Utilities.MixedRealityInspectorUtility.HandleColorSquare - fullName: XRTK.Editor.Utilities.MixedRealityInspectorUtility.HandleColorSquare - nameWithType: MixedRealityInspectorUtility.HandleColorSquare -- uid: XRTK.Editor.Utilities.MixedRealityInspectorUtility.HandleColorTangent - name: HandleColorTangent - href: api/XRTK.Editor.Utilities.MixedRealityInspectorUtility.html#XRTK_Editor_Utilities_MixedRealityInspectorUtility_HandleColorTangent - commentId: F:XRTK.Editor.Utilities.MixedRealityInspectorUtility.HandleColorTangent - fullName: XRTK.Editor.Utilities.MixedRealityInspectorUtility.HandleColorTangent - nameWithType: MixedRealityInspectorUtility.HandleColorTangent -- uid: XRTK.Editor.Utilities.MixedRealityInspectorUtility.LightThemeLogo - name: LightThemeLogo - href: api/XRTK.Editor.Utilities.MixedRealityInspectorUtility.html#XRTK_Editor_Utilities_MixedRealityInspectorUtility_LightThemeLogo - commentId: P:XRTK.Editor.Utilities.MixedRealityInspectorUtility.LightThemeLogo - fullName: XRTK.Editor.Utilities.MixedRealityInspectorUtility.LightThemeLogo - nameWithType: MixedRealityInspectorUtility.LightThemeLogo -- uid: XRTK.Editor.Utilities.MixedRealityInspectorUtility.LightThemeLogo* - name: LightThemeLogo - href: api/XRTK.Editor.Utilities.MixedRealityInspectorUtility.html#XRTK_Editor_Utilities_MixedRealityInspectorUtility_LightThemeLogo_ - commentId: Overload:XRTK.Editor.Utilities.MixedRealityInspectorUtility.LightThemeLogo - isSpec: "True" - fullName: XRTK.Editor.Utilities.MixedRealityInspectorUtility.LightThemeLogo - nameWithType: MixedRealityInspectorUtility.LightThemeLogo -- uid: XRTK.Editor.Utilities.MixedRealityInspectorUtility.LineVelocityColor - name: LineVelocityColor - href: api/XRTK.Editor.Utilities.MixedRealityInspectorUtility.html#XRTK_Editor_Utilities_MixedRealityInspectorUtility_LineVelocityColor - commentId: F:XRTK.Editor.Utilities.MixedRealityInspectorUtility.LineVelocityColor - fullName: XRTK.Editor.Utilities.MixedRealityInspectorUtility.LineVelocityColor - nameWithType: MixedRealityInspectorUtility.LineVelocityColor -- uid: XRTK.Editor.Utilities.MixedRealityInspectorUtility.RenderInspectorHeader(UnityEngine.Texture2D) - name: RenderInspectorHeader(Texture2D) - href: api/XRTK.Editor.Utilities.MixedRealityInspectorUtility.html#XRTK_Editor_Utilities_MixedRealityInspectorUtility_RenderInspectorHeader_UnityEngine_Texture2D_ - commentId: M:XRTK.Editor.Utilities.MixedRealityInspectorUtility.RenderInspectorHeader(UnityEngine.Texture2D) - fullName: XRTK.Editor.Utilities.MixedRealityInspectorUtility.RenderInspectorHeader(UnityEngine.Texture2D) - nameWithType: MixedRealityInspectorUtility.RenderInspectorHeader(Texture2D) -- uid: XRTK.Editor.Utilities.MixedRealityInspectorUtility.RenderInspectorHeader* - name: RenderInspectorHeader - href: api/XRTK.Editor.Utilities.MixedRealityInspectorUtility.html#XRTK_Editor_Utilities_MixedRealityInspectorUtility_RenderInspectorHeader_ - commentId: Overload:XRTK.Editor.Utilities.MixedRealityInspectorUtility.RenderInspectorHeader - isSpec: "True" - fullName: XRTK.Editor.Utilities.MixedRealityInspectorUtility.RenderInspectorHeader - nameWithType: MixedRealityInspectorUtility.RenderInspectorHeader -- uid: XRTK.Editor.Utilities.MixedRealityInspectorUtility.RenderMixedRealityToolkitLogo - name: RenderMixedRealityToolkitLogo() - href: api/XRTK.Editor.Utilities.MixedRealityInspectorUtility.html#XRTK_Editor_Utilities_MixedRealityInspectorUtility_RenderMixedRealityToolkitLogo - commentId: M:XRTK.Editor.Utilities.MixedRealityInspectorUtility.RenderMixedRealityToolkitLogo - fullName: XRTK.Editor.Utilities.MixedRealityInspectorUtility.RenderMixedRealityToolkitLogo() - nameWithType: MixedRealityInspectorUtility.RenderMixedRealityToolkitLogo() -- uid: XRTK.Editor.Utilities.MixedRealityInspectorUtility.RenderMixedRealityToolkitLogo* - name: RenderMixedRealityToolkitLogo - href: api/XRTK.Editor.Utilities.MixedRealityInspectorUtility.html#XRTK_Editor_Utilities_MixedRealityInspectorUtility_RenderMixedRealityToolkitLogo_ - commentId: Overload:XRTK.Editor.Utilities.MixedRealityInspectorUtility.RenderMixedRealityToolkitLogo - isSpec: "True" - fullName: XRTK.Editor.Utilities.MixedRealityInspectorUtility.RenderMixedRealityToolkitLogo - nameWithType: MixedRealityInspectorUtility.RenderMixedRealityToolkitLogo -- uid: XRTK.Editor.Utilities.MixedRealityInspectorUtility.RotationHandle(UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion,System.Single,System.Boolean,System.Boolean) - name: RotationHandle(Object, Vector3, Quaternion, Single, Boolean, Boolean) - href: api/XRTK.Editor.Utilities.MixedRealityInspectorUtility.html#XRTK_Editor_Utilities_MixedRealityInspectorUtility_RotationHandle_UnityEngine_Object_UnityEngine_Vector3_UnityEngine_Quaternion_System_Single_System_Boolean_System_Boolean_ - commentId: M:XRTK.Editor.Utilities.MixedRealityInspectorUtility.RotationHandle(UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion,System.Single,System.Boolean,System.Boolean) - fullName: XRTK.Editor.Utilities.MixedRealityInspectorUtility.RotationHandle(UnityEngine.Object, UnityEngine.Vector3, UnityEngine.Quaternion, System.Single, System.Boolean, System.Boolean) - nameWithType: MixedRealityInspectorUtility.RotationHandle(Object, Vector3, Quaternion, Single, Boolean, Boolean) -- uid: XRTK.Editor.Utilities.MixedRealityInspectorUtility.RotationHandle* - name: RotationHandle - href: api/XRTK.Editor.Utilities.MixedRealityInspectorUtility.html#XRTK_Editor_Utilities_MixedRealityInspectorUtility_RotationHandle_ - commentId: Overload:XRTK.Editor.Utilities.MixedRealityInspectorUtility.RotationHandle - isSpec: "True" - fullName: XRTK.Editor.Utilities.MixedRealityInspectorUtility.RotationHandle - nameWithType: MixedRealityInspectorUtility.RotationHandle -- uid: XRTK.Editor.Utilities.MixedRealityInspectorUtility.SectionColor - name: SectionColor - href: api/XRTK.Editor.Utilities.MixedRealityInspectorUtility.html#XRTK_Editor_Utilities_MixedRealityInspectorUtility_SectionColor - commentId: F:XRTK.Editor.Utilities.MixedRealityInspectorUtility.SectionColor - fullName: XRTK.Editor.Utilities.MixedRealityInspectorUtility.SectionColor - nameWithType: MixedRealityInspectorUtility.SectionColor -- uid: XRTK.Editor.Utilities.MixedRealityInspectorUtility.SphereMoveHandle(UnityEngine.Object,UnityEngine.Vector3,System.Single,System.Single,System.Single,System.Single,System.Boolean,System.Boolean) - name: SphereMoveHandle(Object, Vector3, Single, Single, Single, Single, Boolean, Boolean) - href: api/XRTK.Editor.Utilities.MixedRealityInspectorUtility.html#XRTK_Editor_Utilities_MixedRealityInspectorUtility_SphereMoveHandle_UnityEngine_Object_UnityEngine_Vector3_System_Single_System_Single_System_Single_System_Single_System_Boolean_System_Boolean_ - commentId: M:XRTK.Editor.Utilities.MixedRealityInspectorUtility.SphereMoveHandle(UnityEngine.Object,UnityEngine.Vector3,System.Single,System.Single,System.Single,System.Single,System.Boolean,System.Boolean) - fullName: XRTK.Editor.Utilities.MixedRealityInspectorUtility.SphereMoveHandle(UnityEngine.Object, UnityEngine.Vector3, System.Single, System.Single, System.Single, System.Single, System.Boolean, System.Boolean) - nameWithType: MixedRealityInspectorUtility.SphereMoveHandle(Object, Vector3, Single, Single, Single, Single, Boolean, Boolean) -- uid: XRTK.Editor.Utilities.MixedRealityInspectorUtility.SphereMoveHandle* - name: SphereMoveHandle - href: api/XRTK.Editor.Utilities.MixedRealityInspectorUtility.html#XRTK_Editor_Utilities_MixedRealityInspectorUtility_SphereMoveHandle_ - commentId: Overload:XRTK.Editor.Utilities.MixedRealityInspectorUtility.SphereMoveHandle - isSpec: "True" - fullName: XRTK.Editor.Utilities.MixedRealityInspectorUtility.SphereMoveHandle - nameWithType: MixedRealityInspectorUtility.SphereMoveHandle -- uid: XRTK.Editor.Utilities.MixedRealityInspectorUtility.SquareMoveHandle(UnityEngine.Object,UnityEngine.Vector3,System.Single,System.Single,System.Single,System.Single,System.Boolean,System.Boolean) - name: SquareMoveHandle(Object, Vector3, Single, Single, Single, Single, Boolean, Boolean) - href: api/XRTK.Editor.Utilities.MixedRealityInspectorUtility.html#XRTK_Editor_Utilities_MixedRealityInspectorUtility_SquareMoveHandle_UnityEngine_Object_UnityEngine_Vector3_System_Single_System_Single_System_Single_System_Single_System_Boolean_System_Boolean_ - commentId: M:XRTK.Editor.Utilities.MixedRealityInspectorUtility.SquareMoveHandle(UnityEngine.Object,UnityEngine.Vector3,System.Single,System.Single,System.Single,System.Single,System.Boolean,System.Boolean) - fullName: XRTK.Editor.Utilities.MixedRealityInspectorUtility.SquareMoveHandle(UnityEngine.Object, UnityEngine.Vector3, System.Single, System.Single, System.Single, System.Single, System.Boolean, System.Boolean) - nameWithType: MixedRealityInspectorUtility.SquareMoveHandle(Object, Vector3, Single, Single, Single, Single, Boolean, Boolean) -- uid: XRTK.Editor.Utilities.MixedRealityInspectorUtility.SquareMoveHandle* - name: SquareMoveHandle - href: api/XRTK.Editor.Utilities.MixedRealityInspectorUtility.html#XRTK_Editor_Utilities_MixedRealityInspectorUtility_SquareMoveHandle_ - commentId: Overload:XRTK.Editor.Utilities.MixedRealityInspectorUtility.SquareMoveHandle - isSpec: "True" - fullName: XRTK.Editor.Utilities.MixedRealityInspectorUtility.SquareMoveHandle - nameWithType: MixedRealityInspectorUtility.SquareMoveHandle -- uid: XRTK.Editor.Utilities.MixedRealityInspectorUtility.SuccessColor - name: SuccessColor - href: api/XRTK.Editor.Utilities.MixedRealityInspectorUtility.html#XRTK_Editor_Utilities_MixedRealityInspectorUtility_SuccessColor - commentId: F:XRTK.Editor.Utilities.MixedRealityInspectorUtility.SuccessColor - fullName: XRTK.Editor.Utilities.MixedRealityInspectorUtility.SuccessColor - nameWithType: MixedRealityInspectorUtility.SuccessColor -- uid: XRTK.Editor.Utilities.MixedRealityInspectorUtility.VectorHandle(UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Vector3,System.Boolean,System.Boolean,System.Single,System.Single,System.Boolean,System.Boolean) - name: VectorHandle(Object, Vector3, Vector3, Boolean, Boolean, Single, Single, Boolean, Boolean) - href: api/XRTK.Editor.Utilities.MixedRealityInspectorUtility.html#XRTK_Editor_Utilities_MixedRealityInspectorUtility_VectorHandle_UnityEngine_Object_UnityEngine_Vector3_UnityEngine_Vector3_System_Boolean_System_Boolean_System_Single_System_Single_System_Boolean_System_Boolean_ - commentId: M:XRTK.Editor.Utilities.MixedRealityInspectorUtility.VectorHandle(UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Vector3,System.Boolean,System.Boolean,System.Single,System.Single,System.Boolean,System.Boolean) - fullName: XRTK.Editor.Utilities.MixedRealityInspectorUtility.VectorHandle(UnityEngine.Object, UnityEngine.Vector3, UnityEngine.Vector3, System.Boolean, System.Boolean, System.Single, System.Single, System.Boolean, System.Boolean) - nameWithType: MixedRealityInspectorUtility.VectorHandle(Object, Vector3, Vector3, Boolean, Boolean, Single, Single, Boolean, Boolean) -- uid: XRTK.Editor.Utilities.MixedRealityInspectorUtility.VectorHandle* - name: VectorHandle - href: api/XRTK.Editor.Utilities.MixedRealityInspectorUtility.html#XRTK_Editor_Utilities_MixedRealityInspectorUtility_VectorHandle_ - commentId: Overload:XRTK.Editor.Utilities.MixedRealityInspectorUtility.VectorHandle - isSpec: "True" - fullName: XRTK.Editor.Utilities.MixedRealityInspectorUtility.VectorHandle - nameWithType: MixedRealityInspectorUtility.VectorHandle -- uid: XRTK.Editor.Utilities.MixedRealityInspectorUtility.WarningColor - name: WarningColor - href: api/XRTK.Editor.Utilities.MixedRealityInspectorUtility.html#XRTK_Editor_Utilities_MixedRealityInspectorUtility_WarningColor - commentId: F:XRTK.Editor.Utilities.MixedRealityInspectorUtility.WarningColor - fullName: XRTK.Editor.Utilities.MixedRealityInspectorUtility.WarningColor - nameWithType: MixedRealityInspectorUtility.WarningColor -- uid: XRTK.Editor.Utilities.MixedRealityServiceWizard - name: MixedRealityServiceWizard - href: api/XRTK.Editor.Utilities.MixedRealityServiceWizard.html - commentId: T:XRTK.Editor.Utilities.MixedRealityServiceWizard - fullName: XRTK.Editor.Utilities.MixedRealityServiceWizard - nameWithType: MixedRealityServiceWizard -- uid: XRTK.Editor.Utilities.MixedRealityServiceWizard.ShowNewServiceWizard(System.Type) - name: ShowNewServiceWizard(Type) - href: api/XRTK.Editor.Utilities.MixedRealityServiceWizard.html#XRTK_Editor_Utilities_MixedRealityServiceWizard_ShowNewServiceWizard_System_Type_ - commentId: M:XRTK.Editor.Utilities.MixedRealityServiceWizard.ShowNewServiceWizard(System.Type) - fullName: XRTK.Editor.Utilities.MixedRealityServiceWizard.ShowNewServiceWizard(System.Type) - nameWithType: MixedRealityServiceWizard.ShowNewServiceWizard(Type) -- uid: XRTK.Editor.Utilities.MixedRealityServiceWizard.ShowNewServiceWizard* - name: ShowNewServiceWizard - href: api/XRTK.Editor.Utilities.MixedRealityServiceWizard.html#XRTK_Editor_Utilities_MixedRealityServiceWizard_ShowNewServiceWizard_ - commentId: Overload:XRTK.Editor.Utilities.MixedRealityServiceWizard.ShowNewServiceWizard - isSpec: "True" - fullName: XRTK.Editor.Utilities.MixedRealityServiceWizard.ShowNewServiceWizard - nameWithType: MixedRealityServiceWizard.ShowNewServiceWizard -- uid: XRTK.Editor.Utilities.PathFinderUtility - name: PathFinderUtility - href: api/XRTK.Editor.Utilities.PathFinderUtility.html - commentId: T:XRTK.Editor.Utilities.PathFinderUtility - fullName: XRTK.Editor.Utilities.PathFinderUtility - nameWithType: PathFinderUtility -- uid: XRTK.Editor.Utilities.PathFinderUtility.ResolvePath* - name: ResolvePath - href: api/XRTK.Editor.Utilities.PathFinderUtility.html#XRTK_Editor_Utilities_PathFinderUtility_ResolvePath_ - commentId: Overload:XRTK.Editor.Utilities.PathFinderUtility.ResolvePath - isSpec: "True" - fullName: XRTK.Editor.Utilities.PathFinderUtility.ResolvePath - nameWithType: PathFinderUtility.ResolvePath -- uid: XRTK.Editor.Utilities.PathFinderUtility.ResolvePath``1(System.Type) - name: ResolvePath(Type) - href: api/XRTK.Editor.Utilities.PathFinderUtility.html#XRTK_Editor_Utilities_PathFinderUtility_ResolvePath__1_System_Type_ - commentId: M:XRTK.Editor.Utilities.PathFinderUtility.ResolvePath``1(System.Type) - name.vb: ResolvePath(Of T)(Type) - fullName: XRTK.Editor.Utilities.PathFinderUtility.ResolvePath(System.Type) - fullName.vb: XRTK.Editor.Utilities.PathFinderUtility.ResolvePath(Of T)(System.Type) - nameWithType: PathFinderUtility.ResolvePath(Type) - nameWithType.vb: PathFinderUtility.ResolvePath(Of T)(Type) -- uid: XRTK.Editor.Utilities.PathFinderUtility.XRTK_Core_AbsoluteFolderPath - name: XRTK_Core_AbsoluteFolderPath - href: api/XRTK.Editor.Utilities.PathFinderUtility.html#XRTK_Editor_Utilities_PathFinderUtility_XRTK_Core_AbsoluteFolderPath - commentId: P:XRTK.Editor.Utilities.PathFinderUtility.XRTK_Core_AbsoluteFolderPath - fullName: XRTK.Editor.Utilities.PathFinderUtility.XRTK_Core_AbsoluteFolderPath - nameWithType: PathFinderUtility.XRTK_Core_AbsoluteFolderPath -- uid: XRTK.Editor.Utilities.PathFinderUtility.XRTK_Core_AbsoluteFolderPath* - name: XRTK_Core_AbsoluteFolderPath - href: api/XRTK.Editor.Utilities.PathFinderUtility.html#XRTK_Editor_Utilities_PathFinderUtility_XRTK_Core_AbsoluteFolderPath_ - commentId: Overload:XRTK.Editor.Utilities.PathFinderUtility.XRTK_Core_AbsoluteFolderPath - isSpec: "True" - fullName: XRTK.Editor.Utilities.PathFinderUtility.XRTK_Core_AbsoluteFolderPath - nameWithType: PathFinderUtility.XRTK_Core_AbsoluteFolderPath -- uid: XRTK.Editor.Utilities.PathFinderUtility.XRTK_Core_RelativeFolderPath - name: XRTK_Core_RelativeFolderPath - href: api/XRTK.Editor.Utilities.PathFinderUtility.html#XRTK_Editor_Utilities_PathFinderUtility_XRTK_Core_RelativeFolderPath - commentId: P:XRTK.Editor.Utilities.PathFinderUtility.XRTK_Core_RelativeFolderPath - fullName: XRTK.Editor.Utilities.PathFinderUtility.XRTK_Core_RelativeFolderPath - nameWithType: PathFinderUtility.XRTK_Core_RelativeFolderPath -- uid: XRTK.Editor.Utilities.PathFinderUtility.XRTK_Core_RelativeFolderPath* - name: XRTK_Core_RelativeFolderPath - href: api/XRTK.Editor.Utilities.PathFinderUtility.html#XRTK_Editor_Utilities_PathFinderUtility_XRTK_Core_RelativeFolderPath_ - commentId: Overload:XRTK.Editor.Utilities.PathFinderUtility.XRTK_Core_RelativeFolderPath - isSpec: "True" - fullName: XRTK.Editor.Utilities.PathFinderUtility.XRTK_Core_RelativeFolderPath - nameWithType: PathFinderUtility.XRTK_Core_RelativeFolderPath -- uid: XRTK.Editor.Utilities.PathFinderUtility.XRTK_SDK_AbsoluteFolderPath - name: XRTK_SDK_AbsoluteFolderPath - href: api/XRTK.Editor.Utilities.PathFinderUtility.html#XRTK_Editor_Utilities_PathFinderUtility_XRTK_SDK_AbsoluteFolderPath - commentId: P:XRTK.Editor.Utilities.PathFinderUtility.XRTK_SDK_AbsoluteFolderPath - fullName: XRTK.Editor.Utilities.PathFinderUtility.XRTK_SDK_AbsoluteFolderPath - nameWithType: PathFinderUtility.XRTK_SDK_AbsoluteFolderPath -- uid: XRTK.Editor.Utilities.PathFinderUtility.XRTK_SDK_AbsoluteFolderPath* - name: XRTK_SDK_AbsoluteFolderPath - href: api/XRTK.Editor.Utilities.PathFinderUtility.html#XRTK_Editor_Utilities_PathFinderUtility_XRTK_SDK_AbsoluteFolderPath_ - commentId: Overload:XRTK.Editor.Utilities.PathFinderUtility.XRTK_SDK_AbsoluteFolderPath - isSpec: "True" - fullName: XRTK.Editor.Utilities.PathFinderUtility.XRTK_SDK_AbsoluteFolderPath - nameWithType: PathFinderUtility.XRTK_SDK_AbsoluteFolderPath -- uid: XRTK.Editor.Utilities.PathFinderUtility.XRTK_SDK_RelativeFolderPath - name: XRTK_SDK_RelativeFolderPath - href: api/XRTK.Editor.Utilities.PathFinderUtility.html#XRTK_Editor_Utilities_PathFinderUtility_XRTK_SDK_RelativeFolderPath - commentId: P:XRTK.Editor.Utilities.PathFinderUtility.XRTK_SDK_RelativeFolderPath - fullName: XRTK.Editor.Utilities.PathFinderUtility.XRTK_SDK_RelativeFolderPath - nameWithType: PathFinderUtility.XRTK_SDK_RelativeFolderPath -- uid: XRTK.Editor.Utilities.PathFinderUtility.XRTK_SDK_RelativeFolderPath* - name: XRTK_SDK_RelativeFolderPath - href: api/XRTK.Editor.Utilities.PathFinderUtility.html#XRTK_Editor_Utilities_PathFinderUtility_XRTK_SDK_RelativeFolderPath_ - commentId: Overload:XRTK.Editor.Utilities.PathFinderUtility.XRTK_SDK_RelativeFolderPath - isSpec: "True" - fullName: XRTK.Editor.Utilities.PathFinderUtility.XRTK_SDK_RelativeFolderPath - nameWithType: PathFinderUtility.XRTK_SDK_RelativeFolderPath -- uid: XRTK.Editor.Utilities.SceneHelpers - name: SceneHelpers - href: api/XRTK.Editor.Utilities.SceneHelpers.html - commentId: T:XRTK.Editor.Utilities.SceneHelpers - fullName: XRTK.Editor.Utilities.SceneHelpers - nameWithType: SceneHelpers -- uid: XRTK.Editor.Utilities.SceneHelpers.CreateFloor - name: CreateFloor() - href: api/XRTK.Editor.Utilities.SceneHelpers.html#XRTK_Editor_Utilities_SceneHelpers_CreateFloor - commentId: M:XRTK.Editor.Utilities.SceneHelpers.CreateFloor - fullName: XRTK.Editor.Utilities.SceneHelpers.CreateFloor() - nameWithType: SceneHelpers.CreateFloor() -- uid: XRTK.Editor.Utilities.SceneHelpers.CreateFloor* - name: CreateFloor - href: api/XRTK.Editor.Utilities.SceneHelpers.html#XRTK_Editor_Utilities_SceneHelpers_CreateFloor_ - commentId: Overload:XRTK.Editor.Utilities.SceneHelpers.CreateFloor - isSpec: "True" - fullName: XRTK.Editor.Utilities.SceneHelpers.CreateFloor - nameWithType: SceneHelpers.CreateFloor -- uid: XRTK.Editor.Utilities.SymbolicLinks - name: XRTK.Editor.Utilities.SymbolicLinks - href: api/XRTK.Editor.Utilities.SymbolicLinks.html - commentId: N:XRTK.Editor.Utilities.SymbolicLinks - fullName: XRTK.Editor.Utilities.SymbolicLinks - nameWithType: XRTK.Editor.Utilities.SymbolicLinks -- uid: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink - name: SymbolicLink - href: api/XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.html - commentId: T:XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink - fullName: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink - nameWithType: SymbolicLink -- uid: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.#ctor - name: SymbolicLink() - href: api/XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.html#XRTK_Editor_Utilities_SymbolicLinks_SymbolicLink__ctor - commentId: M:XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.#ctor - fullName: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.SymbolicLink() - nameWithType: SymbolicLink.SymbolicLink() -- uid: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.#ctor(System.String,System.String) - name: SymbolicLink(String, String) - href: api/XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.html#XRTK_Editor_Utilities_SymbolicLinks_SymbolicLink__ctor_System_String_System_String_ - commentId: M:XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.#ctor(System.String,System.String) - fullName: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.SymbolicLink(System.String, System.String) - nameWithType: SymbolicLink.SymbolicLink(String, String) -- uid: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.#ctor* - name: SymbolicLink - href: api/XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.html#XRTK_Editor_Utilities_SymbolicLinks_SymbolicLink__ctor_ - commentId: Overload:XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.#ctor - isSpec: "True" - fullName: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.SymbolicLink - nameWithType: SymbolicLink.SymbolicLink -- uid: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.IsActive - name: IsActive - href: api/XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.html#XRTK_Editor_Utilities_SymbolicLinks_SymbolicLink_IsActive - commentId: P:XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.IsActive - fullName: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.IsActive - nameWithType: SymbolicLink.IsActive -- uid: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.IsActive* - name: IsActive - href: api/XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.html#XRTK_Editor_Utilities_SymbolicLinks_SymbolicLink_IsActive_ - commentId: Overload:XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.IsActive - isSpec: "True" - fullName: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.IsActive - nameWithType: SymbolicLink.IsActive -- uid: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.SourceAbsolutePath - name: SourceAbsolutePath - href: api/XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.html#XRTK_Editor_Utilities_SymbolicLinks_SymbolicLink_SourceAbsolutePath - commentId: P:XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.SourceAbsolutePath - fullName: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.SourceAbsolutePath - nameWithType: SymbolicLink.SourceAbsolutePath -- uid: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.SourceAbsolutePath* - name: SourceAbsolutePath - href: api/XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.html#XRTK_Editor_Utilities_SymbolicLinks_SymbolicLink_SourceAbsolutePath_ - commentId: Overload:XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.SourceAbsolutePath - isSpec: "True" - fullName: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.SourceAbsolutePath - nameWithType: SymbolicLink.SourceAbsolutePath -- uid: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.SourceRelativePath - name: SourceRelativePath - href: api/XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.html#XRTK_Editor_Utilities_SymbolicLinks_SymbolicLink_SourceRelativePath - commentId: P:XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.SourceRelativePath - fullName: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.SourceRelativePath - nameWithType: SymbolicLink.SourceRelativePath -- uid: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.SourceRelativePath* - name: SourceRelativePath - href: api/XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.html#XRTK_Editor_Utilities_SymbolicLinks_SymbolicLink_SourceRelativePath_ - commentId: Overload:XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.SourceRelativePath - isSpec: "True" - fullName: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.SourceRelativePath - nameWithType: SymbolicLink.SourceRelativePath -- uid: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.TargetAbsolutePath - name: TargetAbsolutePath - href: api/XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.html#XRTK_Editor_Utilities_SymbolicLinks_SymbolicLink_TargetAbsolutePath - commentId: P:XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.TargetAbsolutePath - fullName: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.TargetAbsolutePath - nameWithType: SymbolicLink.TargetAbsolutePath -- uid: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.TargetAbsolutePath* - name: TargetAbsolutePath - href: api/XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.html#XRTK_Editor_Utilities_SymbolicLinks_SymbolicLink_TargetAbsolutePath_ - commentId: Overload:XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.TargetAbsolutePath - isSpec: "True" - fullName: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.TargetAbsolutePath - nameWithType: SymbolicLink.TargetAbsolutePath -- uid: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.TargetRelativePath - name: TargetRelativePath - href: api/XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.html#XRTK_Editor_Utilities_SymbolicLinks_SymbolicLink_TargetRelativePath - commentId: P:XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.TargetRelativePath - fullName: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.TargetRelativePath - nameWithType: SymbolicLink.TargetRelativePath -- uid: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.TargetRelativePath* - name: TargetRelativePath - href: api/XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.html#XRTK_Editor_Utilities_SymbolicLinks_SymbolicLink_TargetRelativePath_ - commentId: Overload:XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.TargetRelativePath - isSpec: "True" - fullName: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLink.TargetRelativePath - nameWithType: SymbolicLink.TargetRelativePath -- uid: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinker - name: SymbolicLinker - href: api/XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinker.html - commentId: T:XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinker - fullName: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinker - nameWithType: SymbolicLinker -- uid: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinker.IsSyncing - name: IsSyncing - href: api/XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinker.html#XRTK_Editor_Utilities_SymbolicLinks_SymbolicLinker_IsSyncing - commentId: P:XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinker.IsSyncing - fullName: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinker.IsSyncing - nameWithType: SymbolicLinker.IsSyncing -- uid: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinker.IsSyncing* - name: IsSyncing - href: api/XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinker.html#XRTK_Editor_Utilities_SymbolicLinks_SymbolicLinker_IsSyncing_ - commentId: Overload:XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinker.IsSyncing - isSpec: "True" - fullName: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinker.IsSyncing - nameWithType: SymbolicLinker.IsSyncing -- uid: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinker.RunSync(System.Boolean) - name: RunSync(Boolean) - href: api/XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinker.html#XRTK_Editor_Utilities_SymbolicLinks_SymbolicLinker_RunSync_System_Boolean_ - commentId: M:XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinker.RunSync(System.Boolean) - fullName: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinker.RunSync(System.Boolean) - nameWithType: SymbolicLinker.RunSync(Boolean) -- uid: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinker.RunSync* - name: RunSync - href: api/XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinker.html#XRTK_Editor_Utilities_SymbolicLinks_SymbolicLinker_RunSync_ - commentId: Overload:XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinker.RunSync - isSpec: "True" - fullName: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinker.RunSync - nameWithType: SymbolicLinker.RunSync -- uid: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinker.Settings - name: Settings - href: api/XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinker.html#XRTK_Editor_Utilities_SymbolicLinks_SymbolicLinker_Settings - commentId: P:XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinker.Settings - fullName: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinker.Settings - nameWithType: SymbolicLinker.Settings -- uid: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinker.Settings* - name: Settings - href: api/XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinker.html#XRTK_Editor_Utilities_SymbolicLinks_SymbolicLinker_Settings_ - commentId: Overload:XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinker.Settings - isSpec: "True" - fullName: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinker.Settings - nameWithType: SymbolicLinker.Settings -- uid: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinkerWindow - name: SymbolicLinkerWindow - href: api/XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinkerWindow.html - commentId: T:XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinkerWindow - fullName: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinkerWindow - nameWithType: SymbolicLinkerWindow -- uid: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinkSettings - name: SymbolicLinkSettings - href: api/XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinkSettings.html - commentId: T:XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinkSettings - fullName: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinkSettings - nameWithType: SymbolicLinkSettings -- uid: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinkSettings.SymbolicLinks - name: SymbolicLinks - href: api/XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinkSettings.html#XRTK_Editor_Utilities_SymbolicLinks_SymbolicLinkSettings_SymbolicLinks - commentId: P:XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinkSettings.SymbolicLinks - fullName: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinkSettings.SymbolicLinks - nameWithType: SymbolicLinkSettings.SymbolicLinks -- uid: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinkSettings.SymbolicLinks* - name: SymbolicLinks - href: api/XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinkSettings.html#XRTK_Editor_Utilities_SymbolicLinks_SymbolicLinkSettings_SymbolicLinks_ - commentId: Overload:XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinkSettings.SymbolicLinks - isSpec: "True" - fullName: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinkSettings.SymbolicLinks - nameWithType: SymbolicLinkSettings.SymbolicLinks -- uid: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinkSettingsInspector - name: SymbolicLinkSettingsInspector - href: api/XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinkSettingsInspector.html - commentId: T:XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinkSettingsInspector - fullName: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinkSettingsInspector - nameWithType: SymbolicLinkSettingsInspector -- uid: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinkSettingsInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinkSettingsInspector.html#XRTK_Editor_Utilities_SymbolicLinks_SymbolicLinkSettingsInspector_OnInspectorGUI - commentId: M:XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinkSettingsInspector.OnInspectorGUI - fullName: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinkSettingsInspector.OnInspectorGUI() - nameWithType: SymbolicLinkSettingsInspector.OnInspectorGUI() -- uid: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinkSettingsInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinkSettingsInspector.html#XRTK_Editor_Utilities_SymbolicLinks_SymbolicLinkSettingsInspector_OnInspectorGUI_ - commentId: Overload:XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinkSettingsInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.Editor.Utilities.SymbolicLinks.SymbolicLinkSettingsInspector.OnInspectorGUI - nameWithType: SymbolicLinkSettingsInspector.OnInspectorGUI -- uid: XRTK.Editor.Utilities.UnityFileHelper - name: UnityFileHelper - href: api/XRTK.Editor.Utilities.UnityFileHelper.html - commentId: T:XRTK.Editor.Utilities.UnityFileHelper - fullName: XRTK.Editor.Utilities.UnityFileHelper - nameWithType: UnityFileHelper -- uid: XRTK.Editor.Utilities.UnityFileHelper.GetUnityAssetsAtPath(System.String) - name: GetUnityAssetsAtPath(String) - href: api/XRTK.Editor.Utilities.UnityFileHelper.html#XRTK_Editor_Utilities_UnityFileHelper_GetUnityAssetsAtPath_System_String_ - commentId: M:XRTK.Editor.Utilities.UnityFileHelper.GetUnityAssetsAtPath(System.String) - fullName: XRTK.Editor.Utilities.UnityFileHelper.GetUnityAssetsAtPath(System.String) - nameWithType: UnityFileHelper.GetUnityAssetsAtPath(String) -- uid: XRTK.Editor.Utilities.UnityFileHelper.GetUnityAssetsAtPath* - name: GetUnityAssetsAtPath - href: api/XRTK.Editor.Utilities.UnityFileHelper.html#XRTK_Editor_Utilities_UnityFileHelper_GetUnityAssetsAtPath_ - commentId: Overload:XRTK.Editor.Utilities.UnityFileHelper.GetUnityAssetsAtPath - isSpec: "True" - fullName: XRTK.Editor.Utilities.UnityFileHelper.GetUnityAssetsAtPath - nameWithType: UnityFileHelper.GetUnityAssetsAtPath -- uid: XRTK.Editor.Utilities.USB - name: XRTK.Editor.Utilities.USB - href: api/XRTK.Editor.Utilities.USB.html - commentId: N:XRTK.Editor.Utilities.USB - fullName: XRTK.Editor.Utilities.USB - nameWithType: XRTK.Editor.Utilities.USB -- uid: XRTK.Editor.Utilities.USB.USBDeviceInfo - name: USBDeviceInfo - href: api/XRTK.Editor.Utilities.USB.USBDeviceInfo.html - commentId: T:XRTK.Editor.Utilities.USB.USBDeviceInfo - fullName: XRTK.Editor.Utilities.USB.USBDeviceInfo - nameWithType: USBDeviceInfo -- uid: XRTK.Editor.Utilities.USB.USBDeviceInfo.#ctor(System.Int32,System.String,System.Int32,System.String,System.Int32) - name: USBDeviceInfo(Int32, String, Int32, String, Int32) - href: api/XRTK.Editor.Utilities.USB.USBDeviceInfo.html#XRTK_Editor_Utilities_USB_USBDeviceInfo__ctor_System_Int32_System_String_System_Int32_System_String_System_Int32_ - commentId: M:XRTK.Editor.Utilities.USB.USBDeviceInfo.#ctor(System.Int32,System.String,System.Int32,System.String,System.Int32) - fullName: XRTK.Editor.Utilities.USB.USBDeviceInfo.USBDeviceInfo(System.Int32, System.String, System.Int32, System.String, System.Int32) - nameWithType: USBDeviceInfo.USBDeviceInfo(Int32, String, Int32, String, Int32) -- uid: XRTK.Editor.Utilities.USB.USBDeviceInfo.#ctor* - name: USBDeviceInfo - href: api/XRTK.Editor.Utilities.USB.USBDeviceInfo.html#XRTK_Editor_Utilities_USB_USBDeviceInfo__ctor_ - commentId: Overload:XRTK.Editor.Utilities.USB.USBDeviceInfo.#ctor - isSpec: "True" - fullName: XRTK.Editor.Utilities.USB.USBDeviceInfo.USBDeviceInfo - nameWithType: USBDeviceInfo.USBDeviceInfo -- uid: XRTK.Editor.Utilities.USB.USBDeviceInfo.Name - name: Name - href: api/XRTK.Editor.Utilities.USB.USBDeviceInfo.html#XRTK_Editor_Utilities_USB_USBDeviceInfo_Name - commentId: P:XRTK.Editor.Utilities.USB.USBDeviceInfo.Name - fullName: XRTK.Editor.Utilities.USB.USBDeviceInfo.Name - nameWithType: USBDeviceInfo.Name -- uid: XRTK.Editor.Utilities.USB.USBDeviceInfo.Name* - name: Name - href: api/XRTK.Editor.Utilities.USB.USBDeviceInfo.html#XRTK_Editor_Utilities_USB_USBDeviceInfo_Name_ - commentId: Overload:XRTK.Editor.Utilities.USB.USBDeviceInfo.Name - isSpec: "True" - fullName: XRTK.Editor.Utilities.USB.USBDeviceInfo.Name - nameWithType: USBDeviceInfo.Name -- uid: XRTK.Editor.Utilities.USB.USBDeviceInfo.ProductId - name: ProductId - href: api/XRTK.Editor.Utilities.USB.USBDeviceInfo.html#XRTK_Editor_Utilities_USB_USBDeviceInfo_ProductId - commentId: P:XRTK.Editor.Utilities.USB.USBDeviceInfo.ProductId - fullName: XRTK.Editor.Utilities.USB.USBDeviceInfo.ProductId - nameWithType: USBDeviceInfo.ProductId -- uid: XRTK.Editor.Utilities.USB.USBDeviceInfo.ProductId* - name: ProductId - href: api/XRTK.Editor.Utilities.USB.USBDeviceInfo.html#XRTK_Editor_Utilities_USB_USBDeviceInfo_ProductId_ - commentId: Overload:XRTK.Editor.Utilities.USB.USBDeviceInfo.ProductId - isSpec: "True" - fullName: XRTK.Editor.Utilities.USB.USBDeviceInfo.ProductId - nameWithType: USBDeviceInfo.ProductId -- uid: XRTK.Editor.Utilities.USB.USBDeviceInfo.Revision - name: Revision - href: api/XRTK.Editor.Utilities.USB.USBDeviceInfo.html#XRTK_Editor_Utilities_USB_USBDeviceInfo_Revision - commentId: P:XRTK.Editor.Utilities.USB.USBDeviceInfo.Revision - fullName: XRTK.Editor.Utilities.USB.USBDeviceInfo.Revision - nameWithType: USBDeviceInfo.Revision -- uid: XRTK.Editor.Utilities.USB.USBDeviceInfo.Revision* - name: Revision - href: api/XRTK.Editor.Utilities.USB.USBDeviceInfo.html#XRTK_Editor_Utilities_USB_USBDeviceInfo_Revision_ - commentId: Overload:XRTK.Editor.Utilities.USB.USBDeviceInfo.Revision - isSpec: "True" - fullName: XRTK.Editor.Utilities.USB.USBDeviceInfo.Revision - nameWithType: USBDeviceInfo.Revision -- uid: XRTK.Editor.Utilities.USB.USBDeviceInfo.Udid - name: Udid - href: api/XRTK.Editor.Utilities.USB.USBDeviceInfo.html#XRTK_Editor_Utilities_USB_USBDeviceInfo_Udid - commentId: P:XRTK.Editor.Utilities.USB.USBDeviceInfo.Udid - fullName: XRTK.Editor.Utilities.USB.USBDeviceInfo.Udid - nameWithType: USBDeviceInfo.Udid -- uid: XRTK.Editor.Utilities.USB.USBDeviceInfo.Udid* - name: Udid - href: api/XRTK.Editor.Utilities.USB.USBDeviceInfo.html#XRTK_Editor_Utilities_USB_USBDeviceInfo_Udid_ - commentId: Overload:XRTK.Editor.Utilities.USB.USBDeviceInfo.Udid - isSpec: "True" - fullName: XRTK.Editor.Utilities.USB.USBDeviceInfo.Udid - nameWithType: USBDeviceInfo.Udid -- uid: XRTK.Editor.Utilities.USB.USBDeviceInfo.VendorId - name: VendorId - href: api/XRTK.Editor.Utilities.USB.USBDeviceInfo.html#XRTK_Editor_Utilities_USB_USBDeviceInfo_VendorId - commentId: P:XRTK.Editor.Utilities.USB.USBDeviceInfo.VendorId - fullName: XRTK.Editor.Utilities.USB.USBDeviceInfo.VendorId - nameWithType: USBDeviceInfo.VendorId -- uid: XRTK.Editor.Utilities.USB.USBDeviceInfo.VendorId* - name: VendorId - href: api/XRTK.Editor.Utilities.USB.USBDeviceInfo.html#XRTK_Editor_Utilities_USB_USBDeviceInfo_VendorId_ - commentId: Overload:XRTK.Editor.Utilities.USB.USBDeviceInfo.VendorId - isSpec: "True" - fullName: XRTK.Editor.Utilities.USB.USBDeviceInfo.VendorId - nameWithType: USBDeviceInfo.VendorId -- uid: XRTK.Editor.Utilities.USB.USBDeviceListener - name: USBDeviceListener - href: api/XRTK.Editor.Utilities.USB.USBDeviceListener.html - commentId: T:XRTK.Editor.Utilities.USB.USBDeviceListener - fullName: XRTK.Editor.Utilities.USB.USBDeviceListener - nameWithType: USBDeviceListener -- uid: XRTK.Editor.Utilities.USB.USBDeviceListener.OnUsbDevicesChanged - name: USBDeviceListener.OnUsbDevicesChanged - href: api/XRTK.Editor.Utilities.USB.USBDeviceListener.OnUsbDevicesChanged.html - commentId: T:XRTK.Editor.Utilities.USB.USBDeviceListener.OnUsbDevicesChanged - fullName: XRTK.Editor.Utilities.USB.USBDeviceListener.OnUsbDevicesChanged - nameWithType: USBDeviceListener.OnUsbDevicesChanged -- uid: XRTK.Editor.Utilities.USB.USBDeviceListener.USBDevices - name: USBDevices - href: api/XRTK.Editor.Utilities.USB.USBDeviceListener.html#XRTK_Editor_Utilities_USB_USBDeviceListener_USBDevices - commentId: F:XRTK.Editor.Utilities.USB.USBDeviceListener.USBDevices - fullName: XRTK.Editor.Utilities.USB.USBDeviceListener.USBDevices - nameWithType: USBDeviceListener.USBDevices -- uid: XRTK.Editor.Utilities.USB.USBDeviceListener.UsbDevicesChanged - name: UsbDevicesChanged - href: api/XRTK.Editor.Utilities.USB.USBDeviceListener.html#XRTK_Editor_Utilities_USB_USBDeviceListener_UsbDevicesChanged - commentId: E:XRTK.Editor.Utilities.USB.USBDeviceListener.UsbDevicesChanged - fullName: XRTK.Editor.Utilities.USB.USBDeviceListener.UsbDevicesChanged - nameWithType: USBDeviceListener.UsbDevicesChanged -- uid: XRTK.EventDatum - name: XRTK.EventDatum - href: api/XRTK.EventDatum.html - commentId: N:XRTK.EventDatum - fullName: XRTK.EventDatum - nameWithType: XRTK.EventDatum -- uid: XRTK.EventDatum.DiagnosticsSystem - name: XRTK.EventDatum.DiagnosticsSystem - href: api/XRTK.EventDatum.DiagnosticsSystem.html - commentId: N:XRTK.EventDatum.DiagnosticsSystem - fullName: XRTK.EventDatum.DiagnosticsSystem - nameWithType: XRTK.EventDatum.DiagnosticsSystem -- uid: XRTK.EventDatum.DiagnosticsSystem.BaseDiagnosticsEventData - name: BaseDiagnosticsEventData - href: api/XRTK.EventDatum.DiagnosticsSystem.BaseDiagnosticsEventData.html - commentId: T:XRTK.EventDatum.DiagnosticsSystem.BaseDiagnosticsEventData - fullName: XRTK.EventDatum.DiagnosticsSystem.BaseDiagnosticsEventData - nameWithType: BaseDiagnosticsEventData -- uid: XRTK.EventDatum.DiagnosticsSystem.BaseDiagnosticsEventData.#ctor(EventSystem) - name: BaseDiagnosticsEventData(EventSystem) - href: api/XRTK.EventDatum.DiagnosticsSystem.BaseDiagnosticsEventData.html#XRTK_EventDatum_DiagnosticsSystem_BaseDiagnosticsEventData__ctor_EventSystem_ - commentId: M:XRTK.EventDatum.DiagnosticsSystem.BaseDiagnosticsEventData.#ctor(EventSystem) - fullName: XRTK.EventDatum.DiagnosticsSystem.BaseDiagnosticsEventData.BaseDiagnosticsEventData(EventSystem) - nameWithType: BaseDiagnosticsEventData.BaseDiagnosticsEventData(EventSystem) -- uid: XRTK.EventDatum.DiagnosticsSystem.BaseDiagnosticsEventData.#ctor* - name: BaseDiagnosticsEventData - href: api/XRTK.EventDatum.DiagnosticsSystem.BaseDiagnosticsEventData.html#XRTK_EventDatum_DiagnosticsSystem_BaseDiagnosticsEventData__ctor_ - commentId: Overload:XRTK.EventDatum.DiagnosticsSystem.BaseDiagnosticsEventData.#ctor - isSpec: "True" - fullName: XRTK.EventDatum.DiagnosticsSystem.BaseDiagnosticsEventData.BaseDiagnosticsEventData - nameWithType: BaseDiagnosticsEventData.BaseDiagnosticsEventData -- uid: XRTK.EventDatum.DiagnosticsSystem.BaseDiagnosticsEventData.BaseInitialize - name: BaseInitialize() - href: api/XRTK.EventDatum.DiagnosticsSystem.BaseDiagnosticsEventData.html#XRTK_EventDatum_DiagnosticsSystem_BaseDiagnosticsEventData_BaseInitialize - commentId: M:XRTK.EventDatum.DiagnosticsSystem.BaseDiagnosticsEventData.BaseInitialize - fullName: XRTK.EventDatum.DiagnosticsSystem.BaseDiagnosticsEventData.BaseInitialize() - nameWithType: BaseDiagnosticsEventData.BaseInitialize() -- uid: XRTK.EventDatum.DiagnosticsSystem.BaseDiagnosticsEventData.BaseInitialize* - name: BaseInitialize - href: api/XRTK.EventDatum.DiagnosticsSystem.BaseDiagnosticsEventData.html#XRTK_EventDatum_DiagnosticsSystem_BaseDiagnosticsEventData_BaseInitialize_ - commentId: Overload:XRTK.EventDatum.DiagnosticsSystem.BaseDiagnosticsEventData.BaseInitialize - isSpec: "True" - fullName: XRTK.EventDatum.DiagnosticsSystem.BaseDiagnosticsEventData.BaseInitialize - nameWithType: BaseDiagnosticsEventData.BaseInitialize -- uid: XRTK.EventDatum.DiagnosticsSystem.BaseDiagnosticsEventData.EventTime - name: EventTime - href: api/XRTK.EventDatum.DiagnosticsSystem.BaseDiagnosticsEventData.html#XRTK_EventDatum_DiagnosticsSystem_BaseDiagnosticsEventData_EventTime - commentId: P:XRTK.EventDatum.DiagnosticsSystem.BaseDiagnosticsEventData.EventTime - fullName: XRTK.EventDatum.DiagnosticsSystem.BaseDiagnosticsEventData.EventTime - nameWithType: BaseDiagnosticsEventData.EventTime -- uid: XRTK.EventDatum.DiagnosticsSystem.BaseDiagnosticsEventData.EventTime* - name: EventTime - href: api/XRTK.EventDatum.DiagnosticsSystem.BaseDiagnosticsEventData.html#XRTK_EventDatum_DiagnosticsSystem_BaseDiagnosticsEventData_EventTime_ - commentId: Overload:XRTK.EventDatum.DiagnosticsSystem.BaseDiagnosticsEventData.EventTime - isSpec: "True" - fullName: XRTK.EventDatum.DiagnosticsSystem.BaseDiagnosticsEventData.EventTime - nameWithType: BaseDiagnosticsEventData.EventTime -- uid: XRTK.EventDatum.DiagnosticsSystem.ConsoleEventData - name: ConsoleEventData - href: api/XRTK.EventDatum.DiagnosticsSystem.ConsoleEventData.html - commentId: T:XRTK.EventDatum.DiagnosticsSystem.ConsoleEventData - fullName: XRTK.EventDatum.DiagnosticsSystem.ConsoleEventData - nameWithType: ConsoleEventData -- uid: XRTK.EventDatum.DiagnosticsSystem.ConsoleEventData.#ctor(EventSystem) - name: ConsoleEventData(EventSystem) - href: api/XRTK.EventDatum.DiagnosticsSystem.ConsoleEventData.html#XRTK_EventDatum_DiagnosticsSystem_ConsoleEventData__ctor_EventSystem_ - commentId: M:XRTK.EventDatum.DiagnosticsSystem.ConsoleEventData.#ctor(EventSystem) - fullName: XRTK.EventDatum.DiagnosticsSystem.ConsoleEventData.ConsoleEventData(EventSystem) - nameWithType: ConsoleEventData.ConsoleEventData(EventSystem) -- uid: XRTK.EventDatum.DiagnosticsSystem.ConsoleEventData.#ctor* - name: ConsoleEventData - href: api/XRTK.EventDatum.DiagnosticsSystem.ConsoleEventData.html#XRTK_EventDatum_DiagnosticsSystem_ConsoleEventData__ctor_ - commentId: Overload:XRTK.EventDatum.DiagnosticsSystem.ConsoleEventData.#ctor - isSpec: "True" - fullName: XRTK.EventDatum.DiagnosticsSystem.ConsoleEventData.ConsoleEventData - nameWithType: ConsoleEventData.ConsoleEventData -- uid: XRTK.EventDatum.DiagnosticsSystem.ConsoleEventData.Initialize(System.String,System.String,UnityEngine.LogType) - name: Initialize(String, String, LogType) - href: api/XRTK.EventDatum.DiagnosticsSystem.ConsoleEventData.html#XRTK_EventDatum_DiagnosticsSystem_ConsoleEventData_Initialize_System_String_System_String_UnityEngine_LogType_ - commentId: M:XRTK.EventDatum.DiagnosticsSystem.ConsoleEventData.Initialize(System.String,System.String,UnityEngine.LogType) - fullName: XRTK.EventDatum.DiagnosticsSystem.ConsoleEventData.Initialize(System.String, System.String, UnityEngine.LogType) - nameWithType: ConsoleEventData.Initialize(String, String, LogType) -- uid: XRTK.EventDatum.DiagnosticsSystem.ConsoleEventData.Initialize* - name: Initialize - href: api/XRTK.EventDatum.DiagnosticsSystem.ConsoleEventData.html#XRTK_EventDatum_DiagnosticsSystem_ConsoleEventData_Initialize_ - commentId: Overload:XRTK.EventDatum.DiagnosticsSystem.ConsoleEventData.Initialize - isSpec: "True" - fullName: XRTK.EventDatum.DiagnosticsSystem.ConsoleEventData.Initialize - nameWithType: ConsoleEventData.Initialize -- uid: XRTK.EventDatum.DiagnosticsSystem.ConsoleEventData.LogType - name: LogType - href: api/XRTK.EventDatum.DiagnosticsSystem.ConsoleEventData.html#XRTK_EventDatum_DiagnosticsSystem_ConsoleEventData_LogType - commentId: P:XRTK.EventDatum.DiagnosticsSystem.ConsoleEventData.LogType - fullName: XRTK.EventDatum.DiagnosticsSystem.ConsoleEventData.LogType - nameWithType: ConsoleEventData.LogType -- uid: XRTK.EventDatum.DiagnosticsSystem.ConsoleEventData.LogType* - name: LogType - href: api/XRTK.EventDatum.DiagnosticsSystem.ConsoleEventData.html#XRTK_EventDatum_DiagnosticsSystem_ConsoleEventData_LogType_ - commentId: Overload:XRTK.EventDatum.DiagnosticsSystem.ConsoleEventData.LogType - isSpec: "True" - fullName: XRTK.EventDatum.DiagnosticsSystem.ConsoleEventData.LogType - nameWithType: ConsoleEventData.LogType -- uid: XRTK.EventDatum.DiagnosticsSystem.ConsoleEventData.Message - name: Message - href: api/XRTK.EventDatum.DiagnosticsSystem.ConsoleEventData.html#XRTK_EventDatum_DiagnosticsSystem_ConsoleEventData_Message - commentId: P:XRTK.EventDatum.DiagnosticsSystem.ConsoleEventData.Message - fullName: XRTK.EventDatum.DiagnosticsSystem.ConsoleEventData.Message - nameWithType: ConsoleEventData.Message -- uid: XRTK.EventDatum.DiagnosticsSystem.ConsoleEventData.Message* - name: Message - href: api/XRTK.EventDatum.DiagnosticsSystem.ConsoleEventData.html#XRTK_EventDatum_DiagnosticsSystem_ConsoleEventData_Message_ - commentId: Overload:XRTK.EventDatum.DiagnosticsSystem.ConsoleEventData.Message - isSpec: "True" - fullName: XRTK.EventDatum.DiagnosticsSystem.ConsoleEventData.Message - nameWithType: ConsoleEventData.Message -- uid: XRTK.EventDatum.DiagnosticsSystem.ConsoleEventData.StackTrace - name: StackTrace - href: api/XRTK.EventDatum.DiagnosticsSystem.ConsoleEventData.html#XRTK_EventDatum_DiagnosticsSystem_ConsoleEventData_StackTrace - commentId: P:XRTK.EventDatum.DiagnosticsSystem.ConsoleEventData.StackTrace - fullName: XRTK.EventDatum.DiagnosticsSystem.ConsoleEventData.StackTrace - nameWithType: ConsoleEventData.StackTrace -- uid: XRTK.EventDatum.DiagnosticsSystem.ConsoleEventData.StackTrace* - name: StackTrace - href: api/XRTK.EventDatum.DiagnosticsSystem.ConsoleEventData.html#XRTK_EventDatum_DiagnosticsSystem_ConsoleEventData_StackTrace_ - commentId: Overload:XRTK.EventDatum.DiagnosticsSystem.ConsoleEventData.StackTrace - isSpec: "True" - fullName: XRTK.EventDatum.DiagnosticsSystem.ConsoleEventData.StackTrace - nameWithType: ConsoleEventData.StackTrace -- uid: XRTK.EventDatum.DiagnosticsSystem.FrameEventData - name: FrameEventData - href: api/XRTK.EventDatum.DiagnosticsSystem.FrameEventData.html - commentId: T:XRTK.EventDatum.DiagnosticsSystem.FrameEventData - fullName: XRTK.EventDatum.DiagnosticsSystem.FrameEventData - nameWithType: FrameEventData -- uid: XRTK.EventDatum.DiagnosticsSystem.FrameEventData.#ctor(EventSystem) - name: FrameEventData(EventSystem) - href: api/XRTK.EventDatum.DiagnosticsSystem.FrameEventData.html#XRTK_EventDatum_DiagnosticsSystem_FrameEventData__ctor_EventSystem_ - commentId: M:XRTK.EventDatum.DiagnosticsSystem.FrameEventData.#ctor(EventSystem) - fullName: XRTK.EventDatum.DiagnosticsSystem.FrameEventData.FrameEventData(EventSystem) - nameWithType: FrameEventData.FrameEventData(EventSystem) -- uid: XRTK.EventDatum.DiagnosticsSystem.FrameEventData.#ctor* - name: FrameEventData - href: api/XRTK.EventDatum.DiagnosticsSystem.FrameEventData.html#XRTK_EventDatum_DiagnosticsSystem_FrameEventData__ctor_ - commentId: Overload:XRTK.EventDatum.DiagnosticsSystem.FrameEventData.#ctor - isSpec: "True" - fullName: XRTK.EventDatum.DiagnosticsSystem.FrameEventData.FrameEventData - nameWithType: FrameEventData.FrameEventData -- uid: XRTK.EventDatum.DiagnosticsSystem.FrameEventData.FramesPerSecond - name: FramesPerSecond - href: api/XRTK.EventDatum.DiagnosticsSystem.FrameEventData.html#XRTK_EventDatum_DiagnosticsSystem_FrameEventData_FramesPerSecond - commentId: P:XRTK.EventDatum.DiagnosticsSystem.FrameEventData.FramesPerSecond - fullName: XRTK.EventDatum.DiagnosticsSystem.FrameEventData.FramesPerSecond - nameWithType: FrameEventData.FramesPerSecond -- uid: XRTK.EventDatum.DiagnosticsSystem.FrameEventData.FramesPerSecond* - name: FramesPerSecond - href: api/XRTK.EventDatum.DiagnosticsSystem.FrameEventData.html#XRTK_EventDatum_DiagnosticsSystem_FrameEventData_FramesPerSecond_ - commentId: Overload:XRTK.EventDatum.DiagnosticsSystem.FrameEventData.FramesPerSecond - isSpec: "True" - fullName: XRTK.EventDatum.DiagnosticsSystem.FrameEventData.FramesPerSecond - nameWithType: FrameEventData.FramesPerSecond -- uid: XRTK.EventDatum.DiagnosticsSystem.FrameEventData.Initialize(System.Boolean[]) - name: Initialize(Boolean[]) - href: api/XRTK.EventDatum.DiagnosticsSystem.FrameEventData.html#XRTK_EventDatum_DiagnosticsSystem_FrameEventData_Initialize_System_Boolean___ - commentId: M:XRTK.EventDatum.DiagnosticsSystem.FrameEventData.Initialize(System.Boolean[]) - name.vb: Initialize(Boolean()) - fullName: XRTK.EventDatum.DiagnosticsSystem.FrameEventData.Initialize(System.Boolean[]) - fullName.vb: XRTK.EventDatum.DiagnosticsSystem.FrameEventData.Initialize(System.Boolean()) - nameWithType: FrameEventData.Initialize(Boolean[]) - nameWithType.vb: FrameEventData.Initialize(Boolean()) -- uid: XRTK.EventDatum.DiagnosticsSystem.FrameEventData.Initialize(System.Int32,System.Boolean) - name: Initialize(Int32, Boolean) - href: api/XRTK.EventDatum.DiagnosticsSystem.FrameEventData.html#XRTK_EventDatum_DiagnosticsSystem_FrameEventData_Initialize_System_Int32_System_Boolean_ - commentId: M:XRTK.EventDatum.DiagnosticsSystem.FrameEventData.Initialize(System.Int32,System.Boolean) - fullName: XRTK.EventDatum.DiagnosticsSystem.FrameEventData.Initialize(System.Int32, System.Boolean) - nameWithType: FrameEventData.Initialize(Int32, Boolean) -- uid: XRTK.EventDatum.DiagnosticsSystem.FrameEventData.Initialize* - name: Initialize - href: api/XRTK.EventDatum.DiagnosticsSystem.FrameEventData.html#XRTK_EventDatum_DiagnosticsSystem_FrameEventData_Initialize_ - commentId: Overload:XRTK.EventDatum.DiagnosticsSystem.FrameEventData.Initialize - isSpec: "True" - fullName: XRTK.EventDatum.DiagnosticsSystem.FrameEventData.Initialize - nameWithType: FrameEventData.Initialize -- uid: XRTK.EventDatum.DiagnosticsSystem.FrameEventData.IsGpuReading - name: IsGpuReading - href: api/XRTK.EventDatum.DiagnosticsSystem.FrameEventData.html#XRTK_EventDatum_DiagnosticsSystem_FrameEventData_IsGpuReading - commentId: P:XRTK.EventDatum.DiagnosticsSystem.FrameEventData.IsGpuReading - fullName: XRTK.EventDatum.DiagnosticsSystem.FrameEventData.IsGpuReading - nameWithType: FrameEventData.IsGpuReading -- uid: XRTK.EventDatum.DiagnosticsSystem.FrameEventData.IsGpuReading* - name: IsGpuReading - href: api/XRTK.EventDatum.DiagnosticsSystem.FrameEventData.html#XRTK_EventDatum_DiagnosticsSystem_FrameEventData_IsGpuReading_ - commentId: Overload:XRTK.EventDatum.DiagnosticsSystem.FrameEventData.IsGpuReading - isSpec: "True" - fullName: XRTK.EventDatum.DiagnosticsSystem.FrameEventData.IsGpuReading - nameWithType: FrameEventData.IsGpuReading -- uid: XRTK.EventDatum.DiagnosticsSystem.FrameEventData.MissedFrames - name: MissedFrames - href: api/XRTK.EventDatum.DiagnosticsSystem.FrameEventData.html#XRTK_EventDatum_DiagnosticsSystem_FrameEventData_MissedFrames - commentId: P:XRTK.EventDatum.DiagnosticsSystem.FrameEventData.MissedFrames - fullName: XRTK.EventDatum.DiagnosticsSystem.FrameEventData.MissedFrames - nameWithType: FrameEventData.MissedFrames -- uid: XRTK.EventDatum.DiagnosticsSystem.FrameEventData.MissedFrames* - name: MissedFrames - href: api/XRTK.EventDatum.DiagnosticsSystem.FrameEventData.html#XRTK_EventDatum_DiagnosticsSystem_FrameEventData_MissedFrames_ - commentId: Overload:XRTK.EventDatum.DiagnosticsSystem.FrameEventData.MissedFrames - isSpec: "True" - fullName: XRTK.EventDatum.DiagnosticsSystem.FrameEventData.MissedFrames - nameWithType: FrameEventData.MissedFrames -- uid: XRTK.EventDatum.DiagnosticsSystem.MemoryEventData - name: MemoryEventData - href: api/XRTK.EventDatum.DiagnosticsSystem.MemoryEventData.html - commentId: T:XRTK.EventDatum.DiagnosticsSystem.MemoryEventData - fullName: XRTK.EventDatum.DiagnosticsSystem.MemoryEventData - nameWithType: MemoryEventData -- uid: XRTK.EventDatum.DiagnosticsSystem.MemoryEventData.#ctor(EventSystem) - name: MemoryEventData(EventSystem) - href: api/XRTK.EventDatum.DiagnosticsSystem.MemoryEventData.html#XRTK_EventDatum_DiagnosticsSystem_MemoryEventData__ctor_EventSystem_ - commentId: M:XRTK.EventDatum.DiagnosticsSystem.MemoryEventData.#ctor(EventSystem) - fullName: XRTK.EventDatum.DiagnosticsSystem.MemoryEventData.MemoryEventData(EventSystem) - nameWithType: MemoryEventData.MemoryEventData(EventSystem) -- uid: XRTK.EventDatum.DiagnosticsSystem.MemoryEventData.#ctor* - name: MemoryEventData - href: api/XRTK.EventDatum.DiagnosticsSystem.MemoryEventData.html#XRTK_EventDatum_DiagnosticsSystem_MemoryEventData__ctor_ - commentId: Overload:XRTK.EventDatum.DiagnosticsSystem.MemoryEventData.#ctor - isSpec: "True" - fullName: XRTK.EventDatum.DiagnosticsSystem.MemoryEventData.MemoryEventData - nameWithType: MemoryEventData.MemoryEventData -- uid: XRTK.EventDatum.DiagnosticsSystem.MemoryEventData.CurrentMemoryLimit - name: CurrentMemoryLimit - href: api/XRTK.EventDatum.DiagnosticsSystem.MemoryEventData.html#XRTK_EventDatum_DiagnosticsSystem_MemoryEventData_CurrentMemoryLimit - commentId: P:XRTK.EventDatum.DiagnosticsSystem.MemoryEventData.CurrentMemoryLimit - fullName: XRTK.EventDatum.DiagnosticsSystem.MemoryEventData.CurrentMemoryLimit - nameWithType: MemoryEventData.CurrentMemoryLimit -- uid: XRTK.EventDatum.DiagnosticsSystem.MemoryEventData.CurrentMemoryLimit* - name: CurrentMemoryLimit - href: api/XRTK.EventDatum.DiagnosticsSystem.MemoryEventData.html#XRTK_EventDatum_DiagnosticsSystem_MemoryEventData_CurrentMemoryLimit_ - commentId: Overload:XRTK.EventDatum.DiagnosticsSystem.MemoryEventData.CurrentMemoryLimit - isSpec: "True" - fullName: XRTK.EventDatum.DiagnosticsSystem.MemoryEventData.CurrentMemoryLimit - nameWithType: MemoryEventData.CurrentMemoryLimit -- uid: XRTK.EventDatum.DiagnosticsSystem.MemoryEventData.CurrentMemoryUsage - name: CurrentMemoryUsage - href: api/XRTK.EventDatum.DiagnosticsSystem.MemoryEventData.html#XRTK_EventDatum_DiagnosticsSystem_MemoryEventData_CurrentMemoryUsage - commentId: P:XRTK.EventDatum.DiagnosticsSystem.MemoryEventData.CurrentMemoryUsage - fullName: XRTK.EventDatum.DiagnosticsSystem.MemoryEventData.CurrentMemoryUsage - nameWithType: MemoryEventData.CurrentMemoryUsage -- uid: XRTK.EventDatum.DiagnosticsSystem.MemoryEventData.CurrentMemoryUsage* - name: CurrentMemoryUsage - href: api/XRTK.EventDatum.DiagnosticsSystem.MemoryEventData.html#XRTK_EventDatum_DiagnosticsSystem_MemoryEventData_CurrentMemoryUsage_ - commentId: Overload:XRTK.EventDatum.DiagnosticsSystem.MemoryEventData.CurrentMemoryUsage - isSpec: "True" - fullName: XRTK.EventDatum.DiagnosticsSystem.MemoryEventData.CurrentMemoryUsage - nameWithType: MemoryEventData.CurrentMemoryUsage -- uid: XRTK.EventDatum.DiagnosticsSystem.MemoryEventData.Initialize(XRTK.Definitions.DiagnosticsSystem.MemoryLimit) - name: Initialize(MemoryLimit) - href: api/XRTK.EventDatum.DiagnosticsSystem.MemoryEventData.html#XRTK_EventDatum_DiagnosticsSystem_MemoryEventData_Initialize_XRTK_Definitions_DiagnosticsSystem_MemoryLimit_ - commentId: M:XRTK.EventDatum.DiagnosticsSystem.MemoryEventData.Initialize(XRTK.Definitions.DiagnosticsSystem.MemoryLimit) - fullName: XRTK.EventDatum.DiagnosticsSystem.MemoryEventData.Initialize(XRTK.Definitions.DiagnosticsSystem.MemoryLimit) - nameWithType: MemoryEventData.Initialize(MemoryLimit) -- uid: XRTK.EventDatum.DiagnosticsSystem.MemoryEventData.Initialize(XRTK.Definitions.DiagnosticsSystem.MemoryPeak) - name: Initialize(MemoryPeak) - href: api/XRTK.EventDatum.DiagnosticsSystem.MemoryEventData.html#XRTK_EventDatum_DiagnosticsSystem_MemoryEventData_Initialize_XRTK_Definitions_DiagnosticsSystem_MemoryPeak_ - commentId: M:XRTK.EventDatum.DiagnosticsSystem.MemoryEventData.Initialize(XRTK.Definitions.DiagnosticsSystem.MemoryPeak) - fullName: XRTK.EventDatum.DiagnosticsSystem.MemoryEventData.Initialize(XRTK.Definitions.DiagnosticsSystem.MemoryPeak) - nameWithType: MemoryEventData.Initialize(MemoryPeak) -- uid: XRTK.EventDatum.DiagnosticsSystem.MemoryEventData.Initialize(XRTK.Definitions.DiagnosticsSystem.MemoryUsage) - name: Initialize(MemoryUsage) - href: api/XRTK.EventDatum.DiagnosticsSystem.MemoryEventData.html#XRTK_EventDatum_DiagnosticsSystem_MemoryEventData_Initialize_XRTK_Definitions_DiagnosticsSystem_MemoryUsage_ - commentId: M:XRTK.EventDatum.DiagnosticsSystem.MemoryEventData.Initialize(XRTK.Definitions.DiagnosticsSystem.MemoryUsage) - fullName: XRTK.EventDatum.DiagnosticsSystem.MemoryEventData.Initialize(XRTK.Definitions.DiagnosticsSystem.MemoryUsage) - nameWithType: MemoryEventData.Initialize(MemoryUsage) -- uid: XRTK.EventDatum.DiagnosticsSystem.MemoryEventData.Initialize* - name: Initialize - href: api/XRTK.EventDatum.DiagnosticsSystem.MemoryEventData.html#XRTK_EventDatum_DiagnosticsSystem_MemoryEventData_Initialize_ - commentId: Overload:XRTK.EventDatum.DiagnosticsSystem.MemoryEventData.Initialize - isSpec: "True" - fullName: XRTK.EventDatum.DiagnosticsSystem.MemoryEventData.Initialize - nameWithType: MemoryEventData.Initialize -- uid: XRTK.EventDatum.DiagnosticsSystem.MemoryEventData.MemoryPeak - name: MemoryPeak - href: api/XRTK.EventDatum.DiagnosticsSystem.MemoryEventData.html#XRTK_EventDatum_DiagnosticsSystem_MemoryEventData_MemoryPeak - commentId: P:XRTK.EventDatum.DiagnosticsSystem.MemoryEventData.MemoryPeak - fullName: XRTK.EventDatum.DiagnosticsSystem.MemoryEventData.MemoryPeak - nameWithType: MemoryEventData.MemoryPeak -- uid: XRTK.EventDatum.DiagnosticsSystem.MemoryEventData.MemoryPeak* - name: MemoryPeak - href: api/XRTK.EventDatum.DiagnosticsSystem.MemoryEventData.html#XRTK_EventDatum_DiagnosticsSystem_MemoryEventData_MemoryPeak_ - commentId: Overload:XRTK.EventDatum.DiagnosticsSystem.MemoryEventData.MemoryPeak - isSpec: "True" - fullName: XRTK.EventDatum.DiagnosticsSystem.MemoryEventData.MemoryPeak - nameWithType: MemoryEventData.MemoryPeak -- uid: XRTK.EventDatum.GenericBaseEventData - name: GenericBaseEventData - href: api/XRTK.EventDatum.GenericBaseEventData.html - commentId: T:XRTK.EventDatum.GenericBaseEventData - fullName: XRTK.EventDatum.GenericBaseEventData - nameWithType: GenericBaseEventData -- uid: XRTK.EventDatum.GenericBaseEventData.#ctor(EventSystem) - name: GenericBaseEventData(EventSystem) - href: api/XRTK.EventDatum.GenericBaseEventData.html#XRTK_EventDatum_GenericBaseEventData__ctor_EventSystem_ - commentId: M:XRTK.EventDatum.GenericBaseEventData.#ctor(EventSystem) - fullName: XRTK.EventDatum.GenericBaseEventData.GenericBaseEventData(EventSystem) - nameWithType: GenericBaseEventData.GenericBaseEventData(EventSystem) -- uid: XRTK.EventDatum.GenericBaseEventData.#ctor* - name: GenericBaseEventData - href: api/XRTK.EventDatum.GenericBaseEventData.html#XRTK_EventDatum_GenericBaseEventData__ctor_ - commentId: Overload:XRTK.EventDatum.GenericBaseEventData.#ctor - isSpec: "True" - fullName: XRTK.EventDatum.GenericBaseEventData.GenericBaseEventData - nameWithType: GenericBaseEventData.GenericBaseEventData -- uid: XRTK.EventDatum.GenericBaseEventData.BaseInitialize(XRTK.Interfaces.Events.IMixedRealityEventSource) - name: BaseInitialize(IMixedRealityEventSource) - href: api/XRTK.EventDatum.GenericBaseEventData.html#XRTK_EventDatum_GenericBaseEventData_BaseInitialize_XRTK_Interfaces_Events_IMixedRealityEventSource_ - commentId: M:XRTK.EventDatum.GenericBaseEventData.BaseInitialize(XRTK.Interfaces.Events.IMixedRealityEventSource) - fullName: XRTK.EventDatum.GenericBaseEventData.BaseInitialize(XRTK.Interfaces.Events.IMixedRealityEventSource) - nameWithType: GenericBaseEventData.BaseInitialize(IMixedRealityEventSource) -- uid: XRTK.EventDatum.GenericBaseEventData.BaseInitialize* - name: BaseInitialize - href: api/XRTK.EventDatum.GenericBaseEventData.html#XRTK_EventDatum_GenericBaseEventData_BaseInitialize_ - commentId: Overload:XRTK.EventDatum.GenericBaseEventData.BaseInitialize - isSpec: "True" - fullName: XRTK.EventDatum.GenericBaseEventData.BaseInitialize - nameWithType: GenericBaseEventData.BaseInitialize -- uid: XRTK.EventDatum.GenericBaseEventData.EventSource - name: EventSource - href: api/XRTK.EventDatum.GenericBaseEventData.html#XRTK_EventDatum_GenericBaseEventData_EventSource - commentId: P:XRTK.EventDatum.GenericBaseEventData.EventSource - fullName: XRTK.EventDatum.GenericBaseEventData.EventSource - nameWithType: GenericBaseEventData.EventSource -- uid: XRTK.EventDatum.GenericBaseEventData.EventSource* - name: EventSource - href: api/XRTK.EventDatum.GenericBaseEventData.html#XRTK_EventDatum_GenericBaseEventData_EventSource_ - commentId: Overload:XRTK.EventDatum.GenericBaseEventData.EventSource - isSpec: "True" - fullName: XRTK.EventDatum.GenericBaseEventData.EventSource - nameWithType: GenericBaseEventData.EventSource -- uid: XRTK.EventDatum.GenericBaseEventData.EventTime - name: EventTime - href: api/XRTK.EventDatum.GenericBaseEventData.html#XRTK_EventDatum_GenericBaseEventData_EventTime - commentId: P:XRTK.EventDatum.GenericBaseEventData.EventTime - fullName: XRTK.EventDatum.GenericBaseEventData.EventTime - nameWithType: GenericBaseEventData.EventTime -- uid: XRTK.EventDatum.GenericBaseEventData.EventTime* - name: EventTime - href: api/XRTK.EventDatum.GenericBaseEventData.html#XRTK_EventDatum_GenericBaseEventData_EventTime_ - commentId: Overload:XRTK.EventDatum.GenericBaseEventData.EventTime - isSpec: "True" - fullName: XRTK.EventDatum.GenericBaseEventData.EventTime - nameWithType: GenericBaseEventData.EventTime -- uid: XRTK.EventDatum.Input - name: XRTK.EventDatum.Input - href: api/XRTK.EventDatum.Input.html - commentId: N:XRTK.EventDatum.Input - fullName: XRTK.EventDatum.Input - nameWithType: XRTK.EventDatum.Input -- uid: XRTK.EventDatum.Input.BaseInputEventData - name: BaseInputEventData - href: api/XRTK.EventDatum.Input.BaseInputEventData.html - commentId: T:XRTK.EventDatum.Input.BaseInputEventData - fullName: XRTK.EventDatum.Input.BaseInputEventData - nameWithType: BaseInputEventData -- uid: XRTK.EventDatum.Input.BaseInputEventData.#ctor(EventSystem) - name: BaseInputEventData(EventSystem) - href: api/XRTK.EventDatum.Input.BaseInputEventData.html#XRTK_EventDatum_Input_BaseInputEventData__ctor_EventSystem_ - commentId: M:XRTK.EventDatum.Input.BaseInputEventData.#ctor(EventSystem) - fullName: XRTK.EventDatum.Input.BaseInputEventData.BaseInputEventData(EventSystem) - nameWithType: BaseInputEventData.BaseInputEventData(EventSystem) -- uid: XRTK.EventDatum.Input.BaseInputEventData.#ctor* - name: BaseInputEventData - href: api/XRTK.EventDatum.Input.BaseInputEventData.html#XRTK_EventDatum_Input_BaseInputEventData__ctor_ - commentId: Overload:XRTK.EventDatum.Input.BaseInputEventData.#ctor - isSpec: "True" - fullName: XRTK.EventDatum.Input.BaseInputEventData.BaseInputEventData - nameWithType: BaseInputEventData.BaseInputEventData -- uid: XRTK.EventDatum.Input.BaseInputEventData.BaseInitialize(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.InputSystem.MixedRealityInputAction) - name: BaseInitialize(IMixedRealityInputSource, MixedRealityInputAction) - href: api/XRTK.EventDatum.Input.BaseInputEventData.html#XRTK_EventDatum_Input_BaseInputEventData_BaseInitialize_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Definitions_InputSystem_MixedRealityInputAction_ - commentId: M:XRTK.EventDatum.Input.BaseInputEventData.BaseInitialize(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.InputSystem.MixedRealityInputAction) - fullName: XRTK.EventDatum.Input.BaseInputEventData.BaseInitialize(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Definitions.InputSystem.MixedRealityInputAction) - nameWithType: BaseInputEventData.BaseInitialize(IMixedRealityInputSource, MixedRealityInputAction) -- uid: XRTK.EventDatum.Input.BaseInputEventData.BaseInitialize* - name: BaseInitialize - href: api/XRTK.EventDatum.Input.BaseInputEventData.html#XRTK_EventDatum_Input_BaseInputEventData_BaseInitialize_ - commentId: Overload:XRTK.EventDatum.Input.BaseInputEventData.BaseInitialize - isSpec: "True" - fullName: XRTK.EventDatum.Input.BaseInputEventData.BaseInitialize - nameWithType: BaseInputEventData.BaseInitialize -- uid: XRTK.EventDatum.Input.BaseInputEventData.EventTime - name: EventTime - href: api/XRTK.EventDatum.Input.BaseInputEventData.html#XRTK_EventDatum_Input_BaseInputEventData_EventTime - commentId: P:XRTK.EventDatum.Input.BaseInputEventData.EventTime - fullName: XRTK.EventDatum.Input.BaseInputEventData.EventTime - nameWithType: BaseInputEventData.EventTime -- uid: XRTK.EventDatum.Input.BaseInputEventData.EventTime* - name: EventTime - href: api/XRTK.EventDatum.Input.BaseInputEventData.html#XRTK_EventDatum_Input_BaseInputEventData_EventTime_ - commentId: Overload:XRTK.EventDatum.Input.BaseInputEventData.EventTime - isSpec: "True" - fullName: XRTK.EventDatum.Input.BaseInputEventData.EventTime - nameWithType: BaseInputEventData.EventTime -- uid: XRTK.EventDatum.Input.BaseInputEventData.InputSource - name: InputSource - href: api/XRTK.EventDatum.Input.BaseInputEventData.html#XRTK_EventDatum_Input_BaseInputEventData_InputSource - commentId: P:XRTK.EventDatum.Input.BaseInputEventData.InputSource - fullName: XRTK.EventDatum.Input.BaseInputEventData.InputSource - nameWithType: BaseInputEventData.InputSource -- uid: XRTK.EventDatum.Input.BaseInputEventData.InputSource* - name: InputSource - href: api/XRTK.EventDatum.Input.BaseInputEventData.html#XRTK_EventDatum_Input_BaseInputEventData_InputSource_ - commentId: Overload:XRTK.EventDatum.Input.BaseInputEventData.InputSource - isSpec: "True" - fullName: XRTK.EventDatum.Input.BaseInputEventData.InputSource - nameWithType: BaseInputEventData.InputSource -- uid: XRTK.EventDatum.Input.BaseInputEventData.MixedRealityInputAction - name: MixedRealityInputAction - href: api/XRTK.EventDatum.Input.BaseInputEventData.html#XRTK_EventDatum_Input_BaseInputEventData_MixedRealityInputAction - commentId: P:XRTK.EventDatum.Input.BaseInputEventData.MixedRealityInputAction - fullName: XRTK.EventDatum.Input.BaseInputEventData.MixedRealityInputAction - nameWithType: BaseInputEventData.MixedRealityInputAction -- uid: XRTK.EventDatum.Input.BaseInputEventData.MixedRealityInputAction* - name: MixedRealityInputAction - href: api/XRTK.EventDatum.Input.BaseInputEventData.html#XRTK_EventDatum_Input_BaseInputEventData_MixedRealityInputAction_ - commentId: Overload:XRTK.EventDatum.Input.BaseInputEventData.MixedRealityInputAction - isSpec: "True" - fullName: XRTK.EventDatum.Input.BaseInputEventData.MixedRealityInputAction - nameWithType: BaseInputEventData.MixedRealityInputAction -- uid: XRTK.EventDatum.Input.BaseInputEventData.SourceId - name: SourceId - href: api/XRTK.EventDatum.Input.BaseInputEventData.html#XRTK_EventDatum_Input_BaseInputEventData_SourceId - commentId: P:XRTK.EventDatum.Input.BaseInputEventData.SourceId - fullName: XRTK.EventDatum.Input.BaseInputEventData.SourceId - nameWithType: BaseInputEventData.SourceId -- uid: XRTK.EventDatum.Input.BaseInputEventData.SourceId* - name: SourceId - href: api/XRTK.EventDatum.Input.BaseInputEventData.html#XRTK_EventDatum_Input_BaseInputEventData_SourceId_ - commentId: Overload:XRTK.EventDatum.Input.BaseInputEventData.SourceId - isSpec: "True" - fullName: XRTK.EventDatum.Input.BaseInputEventData.SourceId - nameWithType: BaseInputEventData.SourceId -- uid: XRTK.EventDatum.Input.DictationEventData - name: DictationEventData - href: api/XRTK.EventDatum.Input.DictationEventData.html - commentId: T:XRTK.EventDatum.Input.DictationEventData - fullName: XRTK.EventDatum.Input.DictationEventData - nameWithType: DictationEventData -- uid: XRTK.EventDatum.Input.DictationEventData.#ctor(EventSystem) - name: DictationEventData(EventSystem) - href: api/XRTK.EventDatum.Input.DictationEventData.html#XRTK_EventDatum_Input_DictationEventData__ctor_EventSystem_ - commentId: M:XRTK.EventDatum.Input.DictationEventData.#ctor(EventSystem) - fullName: XRTK.EventDatum.Input.DictationEventData.DictationEventData(EventSystem) - nameWithType: DictationEventData.DictationEventData(EventSystem) -- uid: XRTK.EventDatum.Input.DictationEventData.#ctor* - name: DictationEventData - href: api/XRTK.EventDatum.Input.DictationEventData.html#XRTK_EventDatum_Input_DictationEventData__ctor_ - commentId: Overload:XRTK.EventDatum.Input.DictationEventData.#ctor - isSpec: "True" - fullName: XRTK.EventDatum.Input.DictationEventData.DictationEventData - nameWithType: DictationEventData.DictationEventData -- uid: XRTK.EventDatum.Input.DictationEventData.DictationAudioClip - name: DictationAudioClip - href: api/XRTK.EventDatum.Input.DictationEventData.html#XRTK_EventDatum_Input_DictationEventData_DictationAudioClip - commentId: P:XRTK.EventDatum.Input.DictationEventData.DictationAudioClip - fullName: XRTK.EventDatum.Input.DictationEventData.DictationAudioClip - nameWithType: DictationEventData.DictationAudioClip -- uid: XRTK.EventDatum.Input.DictationEventData.DictationAudioClip* - name: DictationAudioClip - href: api/XRTK.EventDatum.Input.DictationEventData.html#XRTK_EventDatum_Input_DictationEventData_DictationAudioClip_ - commentId: Overload:XRTK.EventDatum.Input.DictationEventData.DictationAudioClip - isSpec: "True" - fullName: XRTK.EventDatum.Input.DictationEventData.DictationAudioClip - nameWithType: DictationEventData.DictationAudioClip -- uid: XRTK.EventDatum.Input.DictationEventData.DictationResult - name: DictationResult - href: api/XRTK.EventDatum.Input.DictationEventData.html#XRTK_EventDatum_Input_DictationEventData_DictationResult - commentId: P:XRTK.EventDatum.Input.DictationEventData.DictationResult - fullName: XRTK.EventDatum.Input.DictationEventData.DictationResult - nameWithType: DictationEventData.DictationResult -- uid: XRTK.EventDatum.Input.DictationEventData.DictationResult* - name: DictationResult - href: api/XRTK.EventDatum.Input.DictationEventData.html#XRTK_EventDatum_Input_DictationEventData_DictationResult_ - commentId: Overload:XRTK.EventDatum.Input.DictationEventData.DictationResult - isSpec: "True" - fullName: XRTK.EventDatum.Input.DictationEventData.DictationResult - nameWithType: DictationEventData.DictationResult -- uid: XRTK.EventDatum.Input.DictationEventData.Initialize(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,System.String,UnityEngine.AudioClip) - name: Initialize(IMixedRealityInputSource, String, AudioClip) - href: api/XRTK.EventDatum.Input.DictationEventData.html#XRTK_EventDatum_Input_DictationEventData_Initialize_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_System_String_UnityEngine_AudioClip_ - commentId: M:XRTK.EventDatum.Input.DictationEventData.Initialize(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,System.String,UnityEngine.AudioClip) - fullName: XRTK.EventDatum.Input.DictationEventData.Initialize(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, System.String, UnityEngine.AudioClip) - nameWithType: DictationEventData.Initialize(IMixedRealityInputSource, String, AudioClip) -- uid: XRTK.EventDatum.Input.DictationEventData.Initialize* - name: Initialize - href: api/XRTK.EventDatum.Input.DictationEventData.html#XRTK_EventDatum_Input_DictationEventData_Initialize_ - commentId: Overload:XRTK.EventDatum.Input.DictationEventData.Initialize - isSpec: "True" - fullName: XRTK.EventDatum.Input.DictationEventData.Initialize - nameWithType: DictationEventData.Initialize -- uid: XRTK.EventDatum.Input.FocusEventData - name: FocusEventData - href: api/XRTK.EventDatum.Input.FocusEventData.html - commentId: T:XRTK.EventDatum.Input.FocusEventData - fullName: XRTK.EventDatum.Input.FocusEventData - nameWithType: FocusEventData -- uid: XRTK.EventDatum.Input.FocusEventData.#ctor(EventSystem) - name: FocusEventData(EventSystem) - href: api/XRTK.EventDatum.Input.FocusEventData.html#XRTK_EventDatum_Input_FocusEventData__ctor_EventSystem_ - commentId: M:XRTK.EventDatum.Input.FocusEventData.#ctor(EventSystem) - fullName: XRTK.EventDatum.Input.FocusEventData.FocusEventData(EventSystem) - nameWithType: FocusEventData.FocusEventData(EventSystem) -- uid: XRTK.EventDatum.Input.FocusEventData.#ctor* - name: FocusEventData - href: api/XRTK.EventDatum.Input.FocusEventData.html#XRTK_EventDatum_Input_FocusEventData__ctor_ - commentId: Overload:XRTK.EventDatum.Input.FocusEventData.#ctor - isSpec: "True" - fullName: XRTK.EventDatum.Input.FocusEventData.FocusEventData - nameWithType: FocusEventData.FocusEventData -- uid: XRTK.EventDatum.Input.FocusEventData.Initialize(XRTK.Interfaces.InputSystem.IMixedRealityPointer) - name: Initialize(IMixedRealityPointer) - href: api/XRTK.EventDatum.Input.FocusEventData.html#XRTK_EventDatum_Input_FocusEventData_Initialize_XRTK_Interfaces_InputSystem_IMixedRealityPointer_ - commentId: M:XRTK.EventDatum.Input.FocusEventData.Initialize(XRTK.Interfaces.InputSystem.IMixedRealityPointer) - fullName: XRTK.EventDatum.Input.FocusEventData.Initialize(XRTK.Interfaces.InputSystem.IMixedRealityPointer) - nameWithType: FocusEventData.Initialize(IMixedRealityPointer) -- uid: XRTK.EventDatum.Input.FocusEventData.Initialize(XRTK.Interfaces.InputSystem.IMixedRealityPointer,UnityEngine.GameObject,UnityEngine.GameObject) - name: Initialize(IMixedRealityPointer, GameObject, GameObject) - href: api/XRTK.EventDatum.Input.FocusEventData.html#XRTK_EventDatum_Input_FocusEventData_Initialize_XRTK_Interfaces_InputSystem_IMixedRealityPointer_UnityEngine_GameObject_UnityEngine_GameObject_ - commentId: M:XRTK.EventDatum.Input.FocusEventData.Initialize(XRTK.Interfaces.InputSystem.IMixedRealityPointer,UnityEngine.GameObject,UnityEngine.GameObject) - fullName: XRTK.EventDatum.Input.FocusEventData.Initialize(XRTK.Interfaces.InputSystem.IMixedRealityPointer, UnityEngine.GameObject, UnityEngine.GameObject) - nameWithType: FocusEventData.Initialize(IMixedRealityPointer, GameObject, GameObject) -- uid: XRTK.EventDatum.Input.FocusEventData.Initialize* - name: Initialize - href: api/XRTK.EventDatum.Input.FocusEventData.html#XRTK_EventDatum_Input_FocusEventData_Initialize_ - commentId: Overload:XRTK.EventDatum.Input.FocusEventData.Initialize - isSpec: "True" - fullName: XRTK.EventDatum.Input.FocusEventData.Initialize - nameWithType: FocusEventData.Initialize -- uid: XRTK.EventDatum.Input.FocusEventData.NewFocusedObject - name: NewFocusedObject - href: api/XRTK.EventDatum.Input.FocusEventData.html#XRTK_EventDatum_Input_FocusEventData_NewFocusedObject - commentId: P:XRTK.EventDatum.Input.FocusEventData.NewFocusedObject - fullName: XRTK.EventDatum.Input.FocusEventData.NewFocusedObject - nameWithType: FocusEventData.NewFocusedObject -- uid: XRTK.EventDatum.Input.FocusEventData.NewFocusedObject* - name: NewFocusedObject - href: api/XRTK.EventDatum.Input.FocusEventData.html#XRTK_EventDatum_Input_FocusEventData_NewFocusedObject_ - commentId: Overload:XRTK.EventDatum.Input.FocusEventData.NewFocusedObject - isSpec: "True" - fullName: XRTK.EventDatum.Input.FocusEventData.NewFocusedObject - nameWithType: FocusEventData.NewFocusedObject -- uid: XRTK.EventDatum.Input.FocusEventData.OldFocusedObject - name: OldFocusedObject - href: api/XRTK.EventDatum.Input.FocusEventData.html#XRTK_EventDatum_Input_FocusEventData_OldFocusedObject - commentId: P:XRTK.EventDatum.Input.FocusEventData.OldFocusedObject - fullName: XRTK.EventDatum.Input.FocusEventData.OldFocusedObject - nameWithType: FocusEventData.OldFocusedObject -- uid: XRTK.EventDatum.Input.FocusEventData.OldFocusedObject* - name: OldFocusedObject - href: api/XRTK.EventDatum.Input.FocusEventData.html#XRTK_EventDatum_Input_FocusEventData_OldFocusedObject_ - commentId: Overload:XRTK.EventDatum.Input.FocusEventData.OldFocusedObject - isSpec: "True" - fullName: XRTK.EventDatum.Input.FocusEventData.OldFocusedObject - nameWithType: FocusEventData.OldFocusedObject -- uid: XRTK.EventDatum.Input.FocusEventData.Pointer - name: Pointer - href: api/XRTK.EventDatum.Input.FocusEventData.html#XRTK_EventDatum_Input_FocusEventData_Pointer - commentId: P:XRTK.EventDatum.Input.FocusEventData.Pointer - fullName: XRTK.EventDatum.Input.FocusEventData.Pointer - nameWithType: FocusEventData.Pointer -- uid: XRTK.EventDatum.Input.FocusEventData.Pointer* - name: Pointer - href: api/XRTK.EventDatum.Input.FocusEventData.html#XRTK_EventDatum_Input_FocusEventData_Pointer_ - commentId: Overload:XRTK.EventDatum.Input.FocusEventData.Pointer - isSpec: "True" - fullName: XRTK.EventDatum.Input.FocusEventData.Pointer - nameWithType: FocusEventData.Pointer -- uid: XRTK.EventDatum.Input.GraphicInputEventData - name: GraphicInputEventData - href: api/XRTK.EventDatum.Input.GraphicInputEventData.html - commentId: T:XRTK.EventDatum.Input.GraphicInputEventData - fullName: XRTK.EventDatum.Input.GraphicInputEventData - nameWithType: GraphicInputEventData -- uid: XRTK.EventDatum.Input.GraphicInputEventData.#ctor(EventSystem) - name: GraphicInputEventData(EventSystem) - href: api/XRTK.EventDatum.Input.GraphicInputEventData.html#XRTK_EventDatum_Input_GraphicInputEventData__ctor_EventSystem_ - commentId: M:XRTK.EventDatum.Input.GraphicInputEventData.#ctor(EventSystem) - fullName: XRTK.EventDatum.Input.GraphicInputEventData.GraphicInputEventData(EventSystem) - nameWithType: GraphicInputEventData.GraphicInputEventData(EventSystem) -- uid: XRTK.EventDatum.Input.GraphicInputEventData.#ctor* - name: GraphicInputEventData - href: api/XRTK.EventDatum.Input.GraphicInputEventData.html#XRTK_EventDatum_Input_GraphicInputEventData__ctor_ - commentId: Overload:XRTK.EventDatum.Input.GraphicInputEventData.#ctor - isSpec: "True" - fullName: XRTK.EventDatum.Input.GraphicInputEventData.GraphicInputEventData - nameWithType: GraphicInputEventData.GraphicInputEventData -- uid: XRTK.EventDatum.Input.GraphicInputEventData.Clear - name: Clear() - href: api/XRTK.EventDatum.Input.GraphicInputEventData.html#XRTK_EventDatum_Input_GraphicInputEventData_Clear - commentId: M:XRTK.EventDatum.Input.GraphicInputEventData.Clear - fullName: XRTK.EventDatum.Input.GraphicInputEventData.Clear() - nameWithType: GraphicInputEventData.Clear() -- uid: XRTK.EventDatum.Input.GraphicInputEventData.Clear* - name: Clear - href: api/XRTK.EventDatum.Input.GraphicInputEventData.html#XRTK_EventDatum_Input_GraphicInputEventData_Clear_ - commentId: Overload:XRTK.EventDatum.Input.GraphicInputEventData.Clear - isSpec: "True" - fullName: XRTK.EventDatum.Input.GraphicInputEventData.Clear - nameWithType: GraphicInputEventData.Clear -- uid: XRTK.EventDatum.Input.InputEventData - name: InputEventData - href: api/XRTK.EventDatum.Input.InputEventData.html - commentId: T:XRTK.EventDatum.Input.InputEventData - fullName: XRTK.EventDatum.Input.InputEventData - nameWithType: InputEventData -- uid: XRTK.EventDatum.Input.InputEventData.#ctor(EventSystem) - name: InputEventData(EventSystem) - href: api/XRTK.EventDatum.Input.InputEventData.html#XRTK_EventDatum_Input_InputEventData__ctor_EventSystem_ - commentId: M:XRTK.EventDatum.Input.InputEventData.#ctor(EventSystem) - fullName: XRTK.EventDatum.Input.InputEventData.InputEventData(EventSystem) - nameWithType: InputEventData.InputEventData(EventSystem) -- uid: XRTK.EventDatum.Input.InputEventData.#ctor* - name: InputEventData - href: api/XRTK.EventDatum.Input.InputEventData.html#XRTK_EventDatum_Input_InputEventData__ctor_ - commentId: Overload:XRTK.EventDatum.Input.InputEventData.#ctor - isSpec: "True" - fullName: XRTK.EventDatum.Input.InputEventData.InputEventData - nameWithType: InputEventData.InputEventData -- uid: XRTK.EventDatum.Input.InputEventData.Handedness - name: Handedness - href: api/XRTK.EventDatum.Input.InputEventData.html#XRTK_EventDatum_Input_InputEventData_Handedness - commentId: P:XRTK.EventDatum.Input.InputEventData.Handedness - fullName: XRTK.EventDatum.Input.InputEventData.Handedness - nameWithType: InputEventData.Handedness -- uid: XRTK.EventDatum.Input.InputEventData.Handedness* - name: Handedness - href: api/XRTK.EventDatum.Input.InputEventData.html#XRTK_EventDatum_Input_InputEventData_Handedness_ - commentId: Overload:XRTK.EventDatum.Input.InputEventData.Handedness - isSpec: "True" - fullName: XRTK.EventDatum.Input.InputEventData.Handedness - nameWithType: InputEventData.Handedness -- uid: XRTK.EventDatum.Input.InputEventData.Initialize(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.InputSystem.MixedRealityInputAction) - name: Initialize(IMixedRealityInputSource, Handedness, MixedRealityInputAction) - href: api/XRTK.EventDatum.Input.InputEventData.html#XRTK_EventDatum_Input_InputEventData_Initialize_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Definitions_Utilities_Handedness_XRTK_Definitions_InputSystem_MixedRealityInputAction_ - commentId: M:XRTK.EventDatum.Input.InputEventData.Initialize(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.InputSystem.MixedRealityInputAction) - fullName: XRTK.EventDatum.Input.InputEventData.Initialize(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Definitions.Utilities.Handedness, XRTK.Definitions.InputSystem.MixedRealityInputAction) - nameWithType: InputEventData.Initialize(IMixedRealityInputSource, Handedness, MixedRealityInputAction) -- uid: XRTK.EventDatum.Input.InputEventData.Initialize* - name: Initialize - href: api/XRTK.EventDatum.Input.InputEventData.html#XRTK_EventDatum_Input_InputEventData_Initialize_ - commentId: Overload:XRTK.EventDatum.Input.InputEventData.Initialize - isSpec: "True" - fullName: XRTK.EventDatum.Input.InputEventData.Initialize - nameWithType: InputEventData.Initialize -- uid: XRTK.EventDatum.Input.InputEventData`1 - name: InputEventData - href: api/XRTK.EventDatum.Input.InputEventData-1.html - commentId: T:XRTK.EventDatum.Input.InputEventData`1 - name.vb: InputEventData(Of T) - fullName: XRTK.EventDatum.Input.InputEventData - fullName.vb: XRTK.EventDatum.Input.InputEventData(Of T) - nameWithType: InputEventData - nameWithType.vb: InputEventData(Of T) -- uid: XRTK.EventDatum.Input.InputEventData`1.#ctor(EventSystem) - name: InputEventData(EventSystem) - href: api/XRTK.EventDatum.Input.InputEventData-1.html#XRTK_EventDatum_Input_InputEventData_1__ctor_EventSystem_ - commentId: M:XRTK.EventDatum.Input.InputEventData`1.#ctor(EventSystem) - fullName: XRTK.EventDatum.Input.InputEventData.InputEventData(EventSystem) - fullName.vb: XRTK.EventDatum.Input.InputEventData(Of T).InputEventData(EventSystem) - nameWithType: InputEventData.InputEventData(EventSystem) - nameWithType.vb: InputEventData(Of T).InputEventData(EventSystem) -- uid: XRTK.EventDatum.Input.InputEventData`1.#ctor* - name: InputEventData - href: api/XRTK.EventDatum.Input.InputEventData-1.html#XRTK_EventDatum_Input_InputEventData_1__ctor_ - commentId: Overload:XRTK.EventDatum.Input.InputEventData`1.#ctor - isSpec: "True" - fullName: XRTK.EventDatum.Input.InputEventData.InputEventData - fullName.vb: XRTK.EventDatum.Input.InputEventData(Of T).InputEventData - nameWithType: InputEventData.InputEventData - nameWithType.vb: InputEventData(Of T).InputEventData -- uid: XRTK.EventDatum.Input.InputEventData`1.Initialize(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.InputSystem.MixedRealityInputAction,`0) - name: Initialize(IMixedRealityInputSource, Handedness, MixedRealityInputAction, T) - href: api/XRTK.EventDatum.Input.InputEventData-1.html#XRTK_EventDatum_Input_InputEventData_1_Initialize_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Definitions_Utilities_Handedness_XRTK_Definitions_InputSystem_MixedRealityInputAction__0_ - commentId: M:XRTK.EventDatum.Input.InputEventData`1.Initialize(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.InputSystem.MixedRealityInputAction,`0) - fullName: XRTK.EventDatum.Input.InputEventData.Initialize(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Definitions.Utilities.Handedness, XRTK.Definitions.InputSystem.MixedRealityInputAction, T) - fullName.vb: XRTK.EventDatum.Input.InputEventData(Of T).Initialize(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Definitions.Utilities.Handedness, XRTK.Definitions.InputSystem.MixedRealityInputAction, T) - nameWithType: InputEventData.Initialize(IMixedRealityInputSource, Handedness, MixedRealityInputAction, T) - nameWithType.vb: InputEventData(Of T).Initialize(IMixedRealityInputSource, Handedness, MixedRealityInputAction, T) -- uid: XRTK.EventDatum.Input.InputEventData`1.Initialize* - name: Initialize - href: api/XRTK.EventDatum.Input.InputEventData-1.html#XRTK_EventDatum_Input_InputEventData_1_Initialize_ - commentId: Overload:XRTK.EventDatum.Input.InputEventData`1.Initialize - isSpec: "True" - fullName: XRTK.EventDatum.Input.InputEventData.Initialize - fullName.vb: XRTK.EventDatum.Input.InputEventData(Of T).Initialize - nameWithType: InputEventData.Initialize - nameWithType.vb: InputEventData(Of T).Initialize -- uid: XRTK.EventDatum.Input.InputEventData`1.InputData - name: InputData - href: api/XRTK.EventDatum.Input.InputEventData-1.html#XRTK_EventDatum_Input_InputEventData_1_InputData - commentId: P:XRTK.EventDatum.Input.InputEventData`1.InputData - fullName: XRTK.EventDatum.Input.InputEventData.InputData - fullName.vb: XRTK.EventDatum.Input.InputEventData(Of T).InputData - nameWithType: InputEventData.InputData - nameWithType.vb: InputEventData(Of T).InputData -- uid: XRTK.EventDatum.Input.InputEventData`1.InputData* - name: InputData - href: api/XRTK.EventDatum.Input.InputEventData-1.html#XRTK_EventDatum_Input_InputEventData_1_InputData_ - commentId: Overload:XRTK.EventDatum.Input.InputEventData`1.InputData - isSpec: "True" - fullName: XRTK.EventDatum.Input.InputEventData.InputData - fullName.vb: XRTK.EventDatum.Input.InputEventData(Of T).InputData - nameWithType: InputEventData.InputData - nameWithType.vb: InputEventData(Of T).InputData -- uid: XRTK.EventDatum.Input.MixedRealityPointerDragEventData - name: MixedRealityPointerDragEventData - href: api/XRTK.EventDatum.Input.MixedRealityPointerDragEventData.html - commentId: T:XRTK.EventDatum.Input.MixedRealityPointerDragEventData - fullName: XRTK.EventDatum.Input.MixedRealityPointerDragEventData - nameWithType: MixedRealityPointerDragEventData -- uid: XRTK.EventDatum.Input.MixedRealityPointerDragEventData.#ctor(EventSystem) - name: MixedRealityPointerDragEventData(EventSystem) - href: api/XRTK.EventDatum.Input.MixedRealityPointerDragEventData.html#XRTK_EventDatum_Input_MixedRealityPointerDragEventData__ctor_EventSystem_ - commentId: M:XRTK.EventDatum.Input.MixedRealityPointerDragEventData.#ctor(EventSystem) - fullName: XRTK.EventDatum.Input.MixedRealityPointerDragEventData.MixedRealityPointerDragEventData(EventSystem) - nameWithType: MixedRealityPointerDragEventData.MixedRealityPointerDragEventData(EventSystem) -- uid: XRTK.EventDatum.Input.MixedRealityPointerDragEventData.#ctor* - name: MixedRealityPointerDragEventData - href: api/XRTK.EventDatum.Input.MixedRealityPointerDragEventData.html#XRTK_EventDatum_Input_MixedRealityPointerDragEventData__ctor_ - commentId: Overload:XRTK.EventDatum.Input.MixedRealityPointerDragEventData.#ctor - isSpec: "True" - fullName: XRTK.EventDatum.Input.MixedRealityPointerDragEventData.MixedRealityPointerDragEventData - nameWithType: MixedRealityPointerDragEventData.MixedRealityPointerDragEventData -- uid: XRTK.EventDatum.Input.MixedRealityPointerDragEventData.DragDelta - name: DragDelta - href: api/XRTK.EventDatum.Input.MixedRealityPointerDragEventData.html#XRTK_EventDatum_Input_MixedRealityPointerDragEventData_DragDelta - commentId: P:XRTK.EventDatum.Input.MixedRealityPointerDragEventData.DragDelta - fullName: XRTK.EventDatum.Input.MixedRealityPointerDragEventData.DragDelta - nameWithType: MixedRealityPointerDragEventData.DragDelta -- uid: XRTK.EventDatum.Input.MixedRealityPointerDragEventData.DragDelta* - name: DragDelta - href: api/XRTK.EventDatum.Input.MixedRealityPointerDragEventData.html#XRTK_EventDatum_Input_MixedRealityPointerDragEventData_DragDelta_ - commentId: Overload:XRTK.EventDatum.Input.MixedRealityPointerDragEventData.DragDelta - isSpec: "True" - fullName: XRTK.EventDatum.Input.MixedRealityPointerDragEventData.DragDelta - nameWithType: MixedRealityPointerDragEventData.DragDelta -- uid: XRTK.EventDatum.Input.MixedRealityPointerDragEventData.Initialize(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Vector3,XRTK.Interfaces.InputSystem.IMixedRealityInputSource) - name: Initialize(IMixedRealityPointer, MixedRealityInputAction, Vector3, IMixedRealityInputSource) - href: api/XRTK.EventDatum.Input.MixedRealityPointerDragEventData.html#XRTK_EventDatum_Input_MixedRealityPointerDragEventData_Initialize_XRTK_Interfaces_InputSystem_IMixedRealityPointer_XRTK_Definitions_InputSystem_MixedRealityInputAction_UnityEngine_Vector3_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_ - commentId: M:XRTK.EventDatum.Input.MixedRealityPointerDragEventData.Initialize(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Vector3,XRTK.Interfaces.InputSystem.IMixedRealityInputSource) - fullName: XRTK.EventDatum.Input.MixedRealityPointerDragEventData.Initialize(XRTK.Interfaces.InputSystem.IMixedRealityPointer, XRTK.Definitions.InputSystem.MixedRealityInputAction, UnityEngine.Vector3, XRTK.Interfaces.InputSystem.IMixedRealityInputSource) - nameWithType: MixedRealityPointerDragEventData.Initialize(IMixedRealityPointer, MixedRealityInputAction, Vector3, IMixedRealityInputSource) -- uid: XRTK.EventDatum.Input.MixedRealityPointerDragEventData.Initialize* - name: Initialize - href: api/XRTK.EventDatum.Input.MixedRealityPointerDragEventData.html#XRTK_EventDatum_Input_MixedRealityPointerDragEventData_Initialize_ - commentId: Overload:XRTK.EventDatum.Input.MixedRealityPointerDragEventData.Initialize - isSpec: "True" - fullName: XRTK.EventDatum.Input.MixedRealityPointerDragEventData.Initialize - nameWithType: MixedRealityPointerDragEventData.Initialize -- uid: XRTK.EventDatum.Input.MixedRealityPointerEventData - name: MixedRealityPointerEventData - href: api/XRTK.EventDatum.Input.MixedRealityPointerEventData.html - commentId: T:XRTK.EventDatum.Input.MixedRealityPointerEventData - fullName: XRTK.EventDatum.Input.MixedRealityPointerEventData - nameWithType: MixedRealityPointerEventData -- uid: XRTK.EventDatum.Input.MixedRealityPointerEventData.#ctor(EventSystem) - name: MixedRealityPointerEventData(EventSystem) - href: api/XRTK.EventDatum.Input.MixedRealityPointerEventData.html#XRTK_EventDatum_Input_MixedRealityPointerEventData__ctor_EventSystem_ - commentId: M:XRTK.EventDatum.Input.MixedRealityPointerEventData.#ctor(EventSystem) - fullName: XRTK.EventDatum.Input.MixedRealityPointerEventData.MixedRealityPointerEventData(EventSystem) - nameWithType: MixedRealityPointerEventData.MixedRealityPointerEventData(EventSystem) -- uid: XRTK.EventDatum.Input.MixedRealityPointerEventData.#ctor* - name: MixedRealityPointerEventData - href: api/XRTK.EventDatum.Input.MixedRealityPointerEventData.html#XRTK_EventDatum_Input_MixedRealityPointerEventData__ctor_ - commentId: Overload:XRTK.EventDatum.Input.MixedRealityPointerEventData.#ctor - isSpec: "True" - fullName: XRTK.EventDatum.Input.MixedRealityPointerEventData.MixedRealityPointerEventData - nameWithType: MixedRealityPointerEventData.MixedRealityPointerEventData -- uid: XRTK.EventDatum.Input.MixedRealityPointerEventData.Initialize(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Definitions.InputSystem.MixedRealityInputAction,XRTK.Interfaces.InputSystem.IMixedRealityInputSource) - name: Initialize(IMixedRealityPointer, MixedRealityInputAction, IMixedRealityInputSource) - href: api/XRTK.EventDatum.Input.MixedRealityPointerEventData.html#XRTK_EventDatum_Input_MixedRealityPointerEventData_Initialize_XRTK_Interfaces_InputSystem_IMixedRealityPointer_XRTK_Definitions_InputSystem_MixedRealityInputAction_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_ - commentId: M:XRTK.EventDatum.Input.MixedRealityPointerEventData.Initialize(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Definitions.InputSystem.MixedRealityInputAction,XRTK.Interfaces.InputSystem.IMixedRealityInputSource) - fullName: XRTK.EventDatum.Input.MixedRealityPointerEventData.Initialize(XRTK.Interfaces.InputSystem.IMixedRealityPointer, XRTK.Definitions.InputSystem.MixedRealityInputAction, XRTK.Interfaces.InputSystem.IMixedRealityInputSource) - nameWithType: MixedRealityPointerEventData.Initialize(IMixedRealityPointer, MixedRealityInputAction, IMixedRealityInputSource) -- uid: XRTK.EventDatum.Input.MixedRealityPointerEventData.Initialize* - name: Initialize - href: api/XRTK.EventDatum.Input.MixedRealityPointerEventData.html#XRTK_EventDatum_Input_MixedRealityPointerEventData_Initialize_ - commentId: Overload:XRTK.EventDatum.Input.MixedRealityPointerEventData.Initialize - isSpec: "True" - fullName: XRTK.EventDatum.Input.MixedRealityPointerEventData.Initialize - nameWithType: MixedRealityPointerEventData.Initialize -- uid: XRTK.EventDatum.Input.MixedRealityPointerEventData.Pointer - name: Pointer - href: api/XRTK.EventDatum.Input.MixedRealityPointerEventData.html#XRTK_EventDatum_Input_MixedRealityPointerEventData_Pointer - commentId: P:XRTK.EventDatum.Input.MixedRealityPointerEventData.Pointer - fullName: XRTK.EventDatum.Input.MixedRealityPointerEventData.Pointer - nameWithType: MixedRealityPointerEventData.Pointer -- uid: XRTK.EventDatum.Input.MixedRealityPointerEventData.Pointer* - name: Pointer - href: api/XRTK.EventDatum.Input.MixedRealityPointerEventData.html#XRTK_EventDatum_Input_MixedRealityPointerEventData_Pointer_ - commentId: Overload:XRTK.EventDatum.Input.MixedRealityPointerEventData.Pointer - isSpec: "True" - fullName: XRTK.EventDatum.Input.MixedRealityPointerEventData.Pointer - nameWithType: MixedRealityPointerEventData.Pointer -- uid: XRTK.EventDatum.Input.MixedRealityPointerScrollEventData - name: MixedRealityPointerScrollEventData - href: api/XRTK.EventDatum.Input.MixedRealityPointerScrollEventData.html - commentId: T:XRTK.EventDatum.Input.MixedRealityPointerScrollEventData - fullName: XRTK.EventDatum.Input.MixedRealityPointerScrollEventData - nameWithType: MixedRealityPointerScrollEventData -- uid: XRTK.EventDatum.Input.MixedRealityPointerScrollEventData.#ctor(EventSystem) - name: MixedRealityPointerScrollEventData(EventSystem) - href: api/XRTK.EventDatum.Input.MixedRealityPointerScrollEventData.html#XRTK_EventDatum_Input_MixedRealityPointerScrollEventData__ctor_EventSystem_ - commentId: M:XRTK.EventDatum.Input.MixedRealityPointerScrollEventData.#ctor(EventSystem) - fullName: XRTK.EventDatum.Input.MixedRealityPointerScrollEventData.MixedRealityPointerScrollEventData(EventSystem) - nameWithType: MixedRealityPointerScrollEventData.MixedRealityPointerScrollEventData(EventSystem) -- uid: XRTK.EventDatum.Input.MixedRealityPointerScrollEventData.#ctor* - name: MixedRealityPointerScrollEventData - href: api/XRTK.EventDatum.Input.MixedRealityPointerScrollEventData.html#XRTK_EventDatum_Input_MixedRealityPointerScrollEventData__ctor_ - commentId: Overload:XRTK.EventDatum.Input.MixedRealityPointerScrollEventData.#ctor - isSpec: "True" - fullName: XRTK.EventDatum.Input.MixedRealityPointerScrollEventData.MixedRealityPointerScrollEventData - nameWithType: MixedRealityPointerScrollEventData.MixedRealityPointerScrollEventData -- uid: XRTK.EventDatum.Input.MixedRealityPointerScrollEventData.Initialize(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Vector2,XRTK.Interfaces.InputSystem.IMixedRealityInputSource) - name: Initialize(IMixedRealityPointer, MixedRealityInputAction, Vector2, IMixedRealityInputSource) - href: api/XRTK.EventDatum.Input.MixedRealityPointerScrollEventData.html#XRTK_EventDatum_Input_MixedRealityPointerScrollEventData_Initialize_XRTK_Interfaces_InputSystem_IMixedRealityPointer_XRTK_Definitions_InputSystem_MixedRealityInputAction_UnityEngine_Vector2_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_ - commentId: M:XRTK.EventDatum.Input.MixedRealityPointerScrollEventData.Initialize(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Vector2,XRTK.Interfaces.InputSystem.IMixedRealityInputSource) - fullName: XRTK.EventDatum.Input.MixedRealityPointerScrollEventData.Initialize(XRTK.Interfaces.InputSystem.IMixedRealityPointer, XRTK.Definitions.InputSystem.MixedRealityInputAction, UnityEngine.Vector2, XRTK.Interfaces.InputSystem.IMixedRealityInputSource) - nameWithType: MixedRealityPointerScrollEventData.Initialize(IMixedRealityPointer, MixedRealityInputAction, Vector2, IMixedRealityInputSource) -- uid: XRTK.EventDatum.Input.MixedRealityPointerScrollEventData.Initialize* - name: Initialize - href: api/XRTK.EventDatum.Input.MixedRealityPointerScrollEventData.html#XRTK_EventDatum_Input_MixedRealityPointerScrollEventData_Initialize_ - commentId: Overload:XRTK.EventDatum.Input.MixedRealityPointerScrollEventData.Initialize - isSpec: "True" - fullName: XRTK.EventDatum.Input.MixedRealityPointerScrollEventData.Initialize - nameWithType: MixedRealityPointerScrollEventData.Initialize -- uid: XRTK.EventDatum.Input.MixedRealityPointerScrollEventData.ScrollDelta - name: ScrollDelta - href: api/XRTK.EventDatum.Input.MixedRealityPointerScrollEventData.html#XRTK_EventDatum_Input_MixedRealityPointerScrollEventData_ScrollDelta - commentId: P:XRTK.EventDatum.Input.MixedRealityPointerScrollEventData.ScrollDelta - fullName: XRTK.EventDatum.Input.MixedRealityPointerScrollEventData.ScrollDelta - nameWithType: MixedRealityPointerScrollEventData.ScrollDelta -- uid: XRTK.EventDatum.Input.MixedRealityPointerScrollEventData.ScrollDelta* - name: ScrollDelta - href: api/XRTK.EventDatum.Input.MixedRealityPointerScrollEventData.html#XRTK_EventDatum_Input_MixedRealityPointerScrollEventData_ScrollDelta_ - commentId: Overload:XRTK.EventDatum.Input.MixedRealityPointerScrollEventData.ScrollDelta - isSpec: "True" - fullName: XRTK.EventDatum.Input.MixedRealityPointerScrollEventData.ScrollDelta - nameWithType: MixedRealityPointerScrollEventData.ScrollDelta -- uid: XRTK.EventDatum.Input.SourcePoseEventData`1 - name: SourcePoseEventData - href: api/XRTK.EventDatum.Input.SourcePoseEventData-1.html - commentId: T:XRTK.EventDatum.Input.SourcePoseEventData`1 - name.vb: SourcePoseEventData(Of T) - fullName: XRTK.EventDatum.Input.SourcePoseEventData - fullName.vb: XRTK.EventDatum.Input.SourcePoseEventData(Of T) - nameWithType: SourcePoseEventData - nameWithType.vb: SourcePoseEventData(Of T) -- uid: XRTK.EventDatum.Input.SourcePoseEventData`1.#ctor(EventSystem) - name: SourcePoseEventData(EventSystem) - href: api/XRTK.EventDatum.Input.SourcePoseEventData-1.html#XRTK_EventDatum_Input_SourcePoseEventData_1__ctor_EventSystem_ - commentId: M:XRTK.EventDatum.Input.SourcePoseEventData`1.#ctor(EventSystem) - fullName: XRTK.EventDatum.Input.SourcePoseEventData.SourcePoseEventData(EventSystem) - fullName.vb: XRTK.EventDatum.Input.SourcePoseEventData(Of T).SourcePoseEventData(EventSystem) - nameWithType: SourcePoseEventData.SourcePoseEventData(EventSystem) - nameWithType.vb: SourcePoseEventData(Of T).SourcePoseEventData(EventSystem) -- uid: XRTK.EventDatum.Input.SourcePoseEventData`1.#ctor* - name: SourcePoseEventData - href: api/XRTK.EventDatum.Input.SourcePoseEventData-1.html#XRTK_EventDatum_Input_SourcePoseEventData_1__ctor_ - commentId: Overload:XRTK.EventDatum.Input.SourcePoseEventData`1.#ctor - isSpec: "True" - fullName: XRTK.EventDatum.Input.SourcePoseEventData.SourcePoseEventData - fullName.vb: XRTK.EventDatum.Input.SourcePoseEventData(Of T).SourcePoseEventData - nameWithType: SourcePoseEventData.SourcePoseEventData - nameWithType.vb: SourcePoseEventData(Of T).SourcePoseEventData -- uid: XRTK.EventDatum.Input.SourcePoseEventData`1.Initialize(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Interfaces.Providers.Controllers.IMixedRealityController,`0) - name: Initialize(IMixedRealityInputSource, IMixedRealityController, T) - href: api/XRTK.EventDatum.Input.SourcePoseEventData-1.html#XRTK_EventDatum_Input_SourcePoseEventData_1_Initialize_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Interfaces_Providers_Controllers_IMixedRealityController__0_ - commentId: M:XRTK.EventDatum.Input.SourcePoseEventData`1.Initialize(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Interfaces.Providers.Controllers.IMixedRealityController,`0) - fullName: XRTK.EventDatum.Input.SourcePoseEventData.Initialize(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Interfaces.Providers.Controllers.IMixedRealityController, T) - fullName.vb: XRTK.EventDatum.Input.SourcePoseEventData(Of T).Initialize(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Interfaces.Providers.Controllers.IMixedRealityController, T) - nameWithType: SourcePoseEventData.Initialize(IMixedRealityInputSource, IMixedRealityController, T) - nameWithType.vb: SourcePoseEventData(Of T).Initialize(IMixedRealityInputSource, IMixedRealityController, T) -- uid: XRTK.EventDatum.Input.SourcePoseEventData`1.Initialize* - name: Initialize - href: api/XRTK.EventDatum.Input.SourcePoseEventData-1.html#XRTK_EventDatum_Input_SourcePoseEventData_1_Initialize_ - commentId: Overload:XRTK.EventDatum.Input.SourcePoseEventData`1.Initialize - isSpec: "True" - fullName: XRTK.EventDatum.Input.SourcePoseEventData.Initialize - fullName.vb: XRTK.EventDatum.Input.SourcePoseEventData(Of T).Initialize - nameWithType: SourcePoseEventData.Initialize - nameWithType.vb: SourcePoseEventData(Of T).Initialize -- uid: XRTK.EventDatum.Input.SourcePoseEventData`1.SourceData - name: SourceData - href: api/XRTK.EventDatum.Input.SourcePoseEventData-1.html#XRTK_EventDatum_Input_SourcePoseEventData_1_SourceData - commentId: P:XRTK.EventDatum.Input.SourcePoseEventData`1.SourceData - fullName: XRTK.EventDatum.Input.SourcePoseEventData.SourceData - fullName.vb: XRTK.EventDatum.Input.SourcePoseEventData(Of T).SourceData - nameWithType: SourcePoseEventData.SourceData - nameWithType.vb: SourcePoseEventData(Of T).SourceData -- uid: XRTK.EventDatum.Input.SourcePoseEventData`1.SourceData* - name: SourceData - href: api/XRTK.EventDatum.Input.SourcePoseEventData-1.html#XRTK_EventDatum_Input_SourcePoseEventData_1_SourceData_ - commentId: Overload:XRTK.EventDatum.Input.SourcePoseEventData`1.SourceData - isSpec: "True" - fullName: XRTK.EventDatum.Input.SourcePoseEventData.SourceData - fullName.vb: XRTK.EventDatum.Input.SourcePoseEventData(Of T).SourceData - nameWithType: SourcePoseEventData.SourceData - nameWithType.vb: SourcePoseEventData(Of T).SourceData -- uid: XRTK.EventDatum.Input.SourceStateEventData - name: SourceStateEventData - href: api/XRTK.EventDatum.Input.SourceStateEventData.html - commentId: T:XRTK.EventDatum.Input.SourceStateEventData - fullName: XRTK.EventDatum.Input.SourceStateEventData - nameWithType: SourceStateEventData -- uid: XRTK.EventDatum.Input.SourceStateEventData.#ctor(EventSystem) - name: SourceStateEventData(EventSystem) - href: api/XRTK.EventDatum.Input.SourceStateEventData.html#XRTK_EventDatum_Input_SourceStateEventData__ctor_EventSystem_ - commentId: M:XRTK.EventDatum.Input.SourceStateEventData.#ctor(EventSystem) - fullName: XRTK.EventDatum.Input.SourceStateEventData.SourceStateEventData(EventSystem) - nameWithType: SourceStateEventData.SourceStateEventData(EventSystem) -- uid: XRTK.EventDatum.Input.SourceStateEventData.#ctor* - name: SourceStateEventData - href: api/XRTK.EventDatum.Input.SourceStateEventData.html#XRTK_EventDatum_Input_SourceStateEventData__ctor_ - commentId: Overload:XRTK.EventDatum.Input.SourceStateEventData.#ctor - isSpec: "True" - fullName: XRTK.EventDatum.Input.SourceStateEventData.SourceStateEventData - nameWithType: SourceStateEventData.SourceStateEventData -- uid: XRTK.EventDatum.Input.SourceStateEventData.Controller - name: Controller - href: api/XRTK.EventDatum.Input.SourceStateEventData.html#XRTK_EventDatum_Input_SourceStateEventData_Controller - commentId: P:XRTK.EventDatum.Input.SourceStateEventData.Controller - fullName: XRTK.EventDatum.Input.SourceStateEventData.Controller - nameWithType: SourceStateEventData.Controller -- uid: XRTK.EventDatum.Input.SourceStateEventData.Controller* - name: Controller - href: api/XRTK.EventDatum.Input.SourceStateEventData.html#XRTK_EventDatum_Input_SourceStateEventData_Controller_ - commentId: Overload:XRTK.EventDatum.Input.SourceStateEventData.Controller - isSpec: "True" - fullName: XRTK.EventDatum.Input.SourceStateEventData.Controller - nameWithType: SourceStateEventData.Controller -- uid: XRTK.EventDatum.Input.SourceStateEventData.Initialize(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Interfaces.Providers.Controllers.IMixedRealityController) - name: Initialize(IMixedRealityInputSource, IMixedRealityController) - href: api/XRTK.EventDatum.Input.SourceStateEventData.html#XRTK_EventDatum_Input_SourceStateEventData_Initialize_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Interfaces_Providers_Controllers_IMixedRealityController_ - commentId: M:XRTK.EventDatum.Input.SourceStateEventData.Initialize(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Interfaces.Providers.Controllers.IMixedRealityController) - fullName: XRTK.EventDatum.Input.SourceStateEventData.Initialize(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Interfaces.Providers.Controllers.IMixedRealityController) - nameWithType: SourceStateEventData.Initialize(IMixedRealityInputSource, IMixedRealityController) -- uid: XRTK.EventDatum.Input.SourceStateEventData.Initialize* - name: Initialize - href: api/XRTK.EventDatum.Input.SourceStateEventData.html#XRTK_EventDatum_Input_SourceStateEventData_Initialize_ - commentId: Overload:XRTK.EventDatum.Input.SourceStateEventData.Initialize - isSpec: "True" - fullName: XRTK.EventDatum.Input.SourceStateEventData.Initialize - nameWithType: SourceStateEventData.Initialize -- uid: XRTK.EventDatum.Input.SpeechEventData - name: SpeechEventData - href: api/XRTK.EventDatum.Input.SpeechEventData.html - commentId: T:XRTK.EventDatum.Input.SpeechEventData - fullName: XRTK.EventDatum.Input.SpeechEventData - nameWithType: SpeechEventData -- uid: XRTK.EventDatum.Input.SpeechEventData.#ctor(EventSystem) - name: SpeechEventData(EventSystem) - href: api/XRTK.EventDatum.Input.SpeechEventData.html#XRTK_EventDatum_Input_SpeechEventData__ctor_EventSystem_ - commentId: M:XRTK.EventDatum.Input.SpeechEventData.#ctor(EventSystem) - fullName: XRTK.EventDatum.Input.SpeechEventData.SpeechEventData(EventSystem) - nameWithType: SpeechEventData.SpeechEventData(EventSystem) -- uid: XRTK.EventDatum.Input.SpeechEventData.#ctor* - name: SpeechEventData - href: api/XRTK.EventDatum.Input.SpeechEventData.html#XRTK_EventDatum_Input_SpeechEventData__ctor_ - commentId: Overload:XRTK.EventDatum.Input.SpeechEventData.#ctor - isSpec: "True" - fullName: XRTK.EventDatum.Input.SpeechEventData.SpeechEventData - nameWithType: SpeechEventData.SpeechEventData -- uid: XRTK.EventDatum.Input.SpeechEventData.Confidence - name: Confidence - href: api/XRTK.EventDatum.Input.SpeechEventData.html#XRTK_EventDatum_Input_SpeechEventData_Confidence - commentId: P:XRTK.EventDatum.Input.SpeechEventData.Confidence - fullName: XRTK.EventDatum.Input.SpeechEventData.Confidence - nameWithType: SpeechEventData.Confidence -- uid: XRTK.EventDatum.Input.SpeechEventData.Confidence* - name: Confidence - href: api/XRTK.EventDatum.Input.SpeechEventData.html#XRTK_EventDatum_Input_SpeechEventData_Confidence_ - commentId: Overload:XRTK.EventDatum.Input.SpeechEventData.Confidence - isSpec: "True" - fullName: XRTK.EventDatum.Input.SpeechEventData.Confidence - nameWithType: SpeechEventData.Confidence -- uid: XRTK.EventDatum.Input.SpeechEventData.Initialize(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.InputSystem.MixedRealityInputAction,XRTK.Definitions.Utilities.RecognitionConfidenceLevel,System.TimeSpan,System.DateTime,System.String) - name: Initialize(IMixedRealityInputSource, MixedRealityInputAction, RecognitionConfidenceLevel, TimeSpan, DateTime, String) - href: api/XRTK.EventDatum.Input.SpeechEventData.html#XRTK_EventDatum_Input_SpeechEventData_Initialize_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Definitions_InputSystem_MixedRealityInputAction_XRTK_Definitions_Utilities_RecognitionConfidenceLevel_System_TimeSpan_System_DateTime_System_String_ - commentId: M:XRTK.EventDatum.Input.SpeechEventData.Initialize(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.InputSystem.MixedRealityInputAction,XRTK.Definitions.Utilities.RecognitionConfidenceLevel,System.TimeSpan,System.DateTime,System.String) - fullName: XRTK.EventDatum.Input.SpeechEventData.Initialize(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Definitions.InputSystem.MixedRealityInputAction, XRTK.Definitions.Utilities.RecognitionConfidenceLevel, System.TimeSpan, System.DateTime, System.String) - nameWithType: SpeechEventData.Initialize(IMixedRealityInputSource, MixedRealityInputAction, RecognitionConfidenceLevel, TimeSpan, DateTime, String) -- uid: XRTK.EventDatum.Input.SpeechEventData.Initialize* - name: Initialize - href: api/XRTK.EventDatum.Input.SpeechEventData.html#XRTK_EventDatum_Input_SpeechEventData_Initialize_ - commentId: Overload:XRTK.EventDatum.Input.SpeechEventData.Initialize - isSpec: "True" - fullName: XRTK.EventDatum.Input.SpeechEventData.Initialize - nameWithType: SpeechEventData.Initialize -- uid: XRTK.EventDatum.Input.SpeechEventData.PhraseDuration - name: PhraseDuration - href: api/XRTK.EventDatum.Input.SpeechEventData.html#XRTK_EventDatum_Input_SpeechEventData_PhraseDuration - commentId: P:XRTK.EventDatum.Input.SpeechEventData.PhraseDuration - fullName: XRTK.EventDatum.Input.SpeechEventData.PhraseDuration - nameWithType: SpeechEventData.PhraseDuration -- uid: XRTK.EventDatum.Input.SpeechEventData.PhraseDuration* - name: PhraseDuration - href: api/XRTK.EventDatum.Input.SpeechEventData.html#XRTK_EventDatum_Input_SpeechEventData_PhraseDuration_ - commentId: Overload:XRTK.EventDatum.Input.SpeechEventData.PhraseDuration - isSpec: "True" - fullName: XRTK.EventDatum.Input.SpeechEventData.PhraseDuration - nameWithType: SpeechEventData.PhraseDuration -- uid: XRTK.EventDatum.Input.SpeechEventData.PhraseStartTime - name: PhraseStartTime - href: api/XRTK.EventDatum.Input.SpeechEventData.html#XRTK_EventDatum_Input_SpeechEventData_PhraseStartTime - commentId: P:XRTK.EventDatum.Input.SpeechEventData.PhraseStartTime - fullName: XRTK.EventDatum.Input.SpeechEventData.PhraseStartTime - nameWithType: SpeechEventData.PhraseStartTime -- uid: XRTK.EventDatum.Input.SpeechEventData.PhraseStartTime* - name: PhraseStartTime - href: api/XRTK.EventDatum.Input.SpeechEventData.html#XRTK_EventDatum_Input_SpeechEventData_PhraseStartTime_ - commentId: Overload:XRTK.EventDatum.Input.SpeechEventData.PhraseStartTime - isSpec: "True" - fullName: XRTK.EventDatum.Input.SpeechEventData.PhraseStartTime - nameWithType: SpeechEventData.PhraseStartTime -- uid: XRTK.EventDatum.Input.SpeechEventData.RecognizedText - name: RecognizedText - href: api/XRTK.EventDatum.Input.SpeechEventData.html#XRTK_EventDatum_Input_SpeechEventData_RecognizedText - commentId: P:XRTK.EventDatum.Input.SpeechEventData.RecognizedText - fullName: XRTK.EventDatum.Input.SpeechEventData.RecognizedText - nameWithType: SpeechEventData.RecognizedText -- uid: XRTK.EventDatum.Input.SpeechEventData.RecognizedText* - name: RecognizedText - href: api/XRTK.EventDatum.Input.SpeechEventData.html#XRTK_EventDatum_Input_SpeechEventData_RecognizedText_ - commentId: Overload:XRTK.EventDatum.Input.SpeechEventData.RecognizedText - isSpec: "True" - fullName: XRTK.EventDatum.Input.SpeechEventData.RecognizedText - nameWithType: SpeechEventData.RecognizedText -- uid: XRTK.EventDatum.Networking - name: XRTK.EventDatum.Networking - href: api/XRTK.EventDatum.Networking.html - commentId: N:XRTK.EventDatum.Networking - fullName: XRTK.EventDatum.Networking - nameWithType: XRTK.EventDatum.Networking -- uid: XRTK.EventDatum.Networking.BaseNetworkingEventData`1 - name: BaseNetworkingEventData - href: api/XRTK.EventDatum.Networking.BaseNetworkingEventData-1.html - commentId: T:XRTK.EventDatum.Networking.BaseNetworkingEventData`1 - name.vb: BaseNetworkingEventData(Of T) - fullName: XRTK.EventDatum.Networking.BaseNetworkingEventData - fullName.vb: XRTK.EventDatum.Networking.BaseNetworkingEventData(Of T) - nameWithType: BaseNetworkingEventData - nameWithType.vb: BaseNetworkingEventData(Of T) -- uid: XRTK.EventDatum.Networking.BaseNetworkingEventData`1.#ctor(EventSystem) - name: BaseNetworkingEventData(EventSystem) - href: api/XRTK.EventDatum.Networking.BaseNetworkingEventData-1.html#XRTK_EventDatum_Networking_BaseNetworkingEventData_1__ctor_EventSystem_ - commentId: M:XRTK.EventDatum.Networking.BaseNetworkingEventData`1.#ctor(EventSystem) - fullName: XRTK.EventDatum.Networking.BaseNetworkingEventData.BaseNetworkingEventData(EventSystem) - fullName.vb: XRTK.EventDatum.Networking.BaseNetworkingEventData(Of T).BaseNetworkingEventData(EventSystem) - nameWithType: BaseNetworkingEventData.BaseNetworkingEventData(EventSystem) - nameWithType.vb: BaseNetworkingEventData(Of T).BaseNetworkingEventData(EventSystem) -- uid: XRTK.EventDatum.Networking.BaseNetworkingEventData`1.#ctor* - name: BaseNetworkingEventData - href: api/XRTK.EventDatum.Networking.BaseNetworkingEventData-1.html#XRTK_EventDatum_Networking_BaseNetworkingEventData_1__ctor_ - commentId: Overload:XRTK.EventDatum.Networking.BaseNetworkingEventData`1.#ctor - isSpec: "True" - fullName: XRTK.EventDatum.Networking.BaseNetworkingEventData.BaseNetworkingEventData - fullName.vb: XRTK.EventDatum.Networking.BaseNetworkingEventData(Of T).BaseNetworkingEventData - nameWithType: BaseNetworkingEventData.BaseNetworkingEventData - nameWithType.vb: BaseNetworkingEventData(Of T).BaseNetworkingEventData -- uid: XRTK.EventDatum.Networking.BaseNetworkingEventData`1.Data - name: Data - href: api/XRTK.EventDatum.Networking.BaseNetworkingEventData-1.html#XRTK_EventDatum_Networking_BaseNetworkingEventData_1_Data - commentId: P:XRTK.EventDatum.Networking.BaseNetworkingEventData`1.Data - fullName: XRTK.EventDatum.Networking.BaseNetworkingEventData.Data - fullName.vb: XRTK.EventDatum.Networking.BaseNetworkingEventData(Of T).Data - nameWithType: BaseNetworkingEventData.Data - nameWithType.vb: BaseNetworkingEventData(Of T).Data -- uid: XRTK.EventDatum.Networking.BaseNetworkingEventData`1.Data* - name: Data - href: api/XRTK.EventDatum.Networking.BaseNetworkingEventData-1.html#XRTK_EventDatum_Networking_BaseNetworkingEventData_1_Data_ - commentId: Overload:XRTK.EventDatum.Networking.BaseNetworkingEventData`1.Data - isSpec: "True" - fullName: XRTK.EventDatum.Networking.BaseNetworkingEventData.Data - fullName.vb: XRTK.EventDatum.Networking.BaseNetworkingEventData(Of T).Data - nameWithType: BaseNetworkingEventData.Data - nameWithType.vb: BaseNetworkingEventData(Of T).Data -- uid: XRTK.EventDatum.Networking.BaseNetworkingEventData`1.Initialize(`0) - name: Initialize(T) - href: api/XRTK.EventDatum.Networking.BaseNetworkingEventData-1.html#XRTK_EventDatum_Networking_BaseNetworkingEventData_1_Initialize__0_ - commentId: M:XRTK.EventDatum.Networking.BaseNetworkingEventData`1.Initialize(`0) - fullName: XRTK.EventDatum.Networking.BaseNetworkingEventData.Initialize(T) - fullName.vb: XRTK.EventDatum.Networking.BaseNetworkingEventData(Of T).Initialize(T) - nameWithType: BaseNetworkingEventData.Initialize(T) - nameWithType.vb: BaseNetworkingEventData(Of T).Initialize(T) -- uid: XRTK.EventDatum.Networking.BaseNetworkingEventData`1.Initialize* - name: Initialize - href: api/XRTK.EventDatum.Networking.BaseNetworkingEventData-1.html#XRTK_EventDatum_Networking_BaseNetworkingEventData_1_Initialize_ - commentId: Overload:XRTK.EventDatum.Networking.BaseNetworkingEventData`1.Initialize - isSpec: "True" - fullName: XRTK.EventDatum.Networking.BaseNetworkingEventData.Initialize - fullName.vb: XRTK.EventDatum.Networking.BaseNetworkingEventData(Of T).Initialize - nameWithType: BaseNetworkingEventData.Initialize - nameWithType.vb: BaseNetworkingEventData(Of T).Initialize -- uid: XRTK.EventDatum.PlacementEventData - name: PlacementEventData - href: api/XRTK.EventDatum.PlacementEventData.html - commentId: T:XRTK.EventDatum.PlacementEventData - fullName: XRTK.EventDatum.PlacementEventData - nameWithType: PlacementEventData -- uid: XRTK.EventDatum.PlacementEventData.#ctor(EventSystem) - name: PlacementEventData(EventSystem) - href: api/XRTK.EventDatum.PlacementEventData.html#XRTK_EventDatum_PlacementEventData__ctor_EventSystem_ - commentId: M:XRTK.EventDatum.PlacementEventData.#ctor(EventSystem) - fullName: XRTK.EventDatum.PlacementEventData.PlacementEventData(EventSystem) - nameWithType: PlacementEventData.PlacementEventData(EventSystem) -- uid: XRTK.EventDatum.PlacementEventData.#ctor* - name: PlacementEventData - href: api/XRTK.EventDatum.PlacementEventData.html#XRTK_EventDatum_PlacementEventData__ctor_ - commentId: Overload:XRTK.EventDatum.PlacementEventData.#ctor - isSpec: "True" - fullName: XRTK.EventDatum.PlacementEventData.PlacementEventData - nameWithType: PlacementEventData.PlacementEventData -- uid: XRTK.EventDatum.PlacementEventData.Initialize(XRTK.Interfaces.Events.IMixedRealityEventSource,UnityEngine.GameObject) - name: Initialize(IMixedRealityEventSource, GameObject) - href: api/XRTK.EventDatum.PlacementEventData.html#XRTK_EventDatum_PlacementEventData_Initialize_XRTK_Interfaces_Events_IMixedRealityEventSource_UnityEngine_GameObject_ - commentId: M:XRTK.EventDatum.PlacementEventData.Initialize(XRTK.Interfaces.Events.IMixedRealityEventSource,UnityEngine.GameObject) - fullName: XRTK.EventDatum.PlacementEventData.Initialize(XRTK.Interfaces.Events.IMixedRealityEventSource, UnityEngine.GameObject) - nameWithType: PlacementEventData.Initialize(IMixedRealityEventSource, GameObject) -- uid: XRTK.EventDatum.PlacementEventData.Initialize* - name: Initialize - href: api/XRTK.EventDatum.PlacementEventData.html#XRTK_EventDatum_PlacementEventData_Initialize_ - commentId: Overload:XRTK.EventDatum.PlacementEventData.Initialize - isSpec: "True" - fullName: XRTK.EventDatum.PlacementEventData.Initialize - nameWithType: PlacementEventData.Initialize -- uid: XRTK.EventDatum.PlacementEventData.ObjectBeingPlaced - name: ObjectBeingPlaced - href: api/XRTK.EventDatum.PlacementEventData.html#XRTK_EventDatum_PlacementEventData_ObjectBeingPlaced - commentId: P:XRTK.EventDatum.PlacementEventData.ObjectBeingPlaced - fullName: XRTK.EventDatum.PlacementEventData.ObjectBeingPlaced - nameWithType: PlacementEventData.ObjectBeingPlaced -- uid: XRTK.EventDatum.PlacementEventData.ObjectBeingPlaced* - name: ObjectBeingPlaced - href: api/XRTK.EventDatum.PlacementEventData.html#XRTK_EventDatum_PlacementEventData_ObjectBeingPlaced_ - commentId: Overload:XRTK.EventDatum.PlacementEventData.ObjectBeingPlaced - isSpec: "True" - fullName: XRTK.EventDatum.PlacementEventData.ObjectBeingPlaced - nameWithType: PlacementEventData.ObjectBeingPlaced -- uid: XRTK.EventDatum.SpatialAwarenessSystem - name: XRTK.EventDatum.SpatialAwarenessSystem - href: api/XRTK.EventDatum.SpatialAwarenessSystem.html - commentId: N:XRTK.EventDatum.SpatialAwarenessSystem - fullName: XRTK.EventDatum.SpatialAwarenessSystem - nameWithType: XRTK.EventDatum.SpatialAwarenessSystem -- uid: XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData`1 - name: MixedRealitySpatialAwarenessEventData - href: api/XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData-1.html - commentId: T:XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData`1 - name.vb: MixedRealitySpatialAwarenessEventData(Of T) - fullName: XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData - fullName.vb: XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData(Of T) - nameWithType: MixedRealitySpatialAwarenessEventData - nameWithType.vb: MixedRealitySpatialAwarenessEventData(Of T) -- uid: XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData`1.#ctor(EventSystem) - name: MixedRealitySpatialAwarenessEventData(EventSystem) - href: api/XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData-1.html#XRTK_EventDatum_SpatialAwarenessSystem_MixedRealitySpatialAwarenessEventData_1__ctor_EventSystem_ - commentId: M:XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData`1.#ctor(EventSystem) - fullName: XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData.MixedRealitySpatialAwarenessEventData(EventSystem) - fullName.vb: XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData(Of T).MixedRealitySpatialAwarenessEventData(EventSystem) - nameWithType: MixedRealitySpatialAwarenessEventData.MixedRealitySpatialAwarenessEventData(EventSystem) - nameWithType.vb: MixedRealitySpatialAwarenessEventData(Of T).MixedRealitySpatialAwarenessEventData(EventSystem) -- uid: XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData`1.#ctor* - name: MixedRealitySpatialAwarenessEventData - href: api/XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData-1.html#XRTK_EventDatum_SpatialAwarenessSystem_MixedRealitySpatialAwarenessEventData_1__ctor_ - commentId: Overload:XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData`1.#ctor - isSpec: "True" - fullName: XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData.MixedRealitySpatialAwarenessEventData - fullName.vb: XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData(Of T).MixedRealitySpatialAwarenessEventData - nameWithType: MixedRealitySpatialAwarenessEventData.MixedRealitySpatialAwarenessEventData - nameWithType.vb: MixedRealitySpatialAwarenessEventData(Of T).MixedRealitySpatialAwarenessEventData -- uid: XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData`1.Id - name: Id - href: api/XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData-1.html#XRTK_EventDatum_SpatialAwarenessSystem_MixedRealitySpatialAwarenessEventData_1_Id - commentId: P:XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData`1.Id - fullName: XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData.Id - fullName.vb: XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData(Of T).Id - nameWithType: MixedRealitySpatialAwarenessEventData.Id - nameWithType.vb: MixedRealitySpatialAwarenessEventData(Of T).Id -- uid: XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData`1.Id* - name: Id - href: api/XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData-1.html#XRTK_EventDatum_SpatialAwarenessSystem_MixedRealitySpatialAwarenessEventData_1_Id_ - commentId: Overload:XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData`1.Id - isSpec: "True" - fullName: XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData.Id - fullName.vb: XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData(Of T).Id - nameWithType: MixedRealitySpatialAwarenessEventData.Id - nameWithType.vb: MixedRealitySpatialAwarenessEventData(Of T).Id -- uid: XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData`1.Initialize(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider,System.Guid,`0) - name: Initialize(IMixedRealitySpatialAwarenessDataProvider, Guid, T) - href: api/XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData-1.html#XRTK_EventDatum_SpatialAwarenessSystem_MixedRealitySpatialAwarenessEventData_1_Initialize_XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialAwarenessDataProvider_System_Guid__0_ - commentId: M:XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData`1.Initialize(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider,System.Guid,`0) - fullName: XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData.Initialize(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider, System.Guid, T) - fullName.vb: XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData(Of T).Initialize(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider, System.Guid, T) - nameWithType: MixedRealitySpatialAwarenessEventData.Initialize(IMixedRealitySpatialAwarenessDataProvider, Guid, T) - nameWithType.vb: MixedRealitySpatialAwarenessEventData(Of T).Initialize(IMixedRealitySpatialAwarenessDataProvider, Guid, T) -- uid: XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData`1.Initialize* - name: Initialize - href: api/XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData-1.html#XRTK_EventDatum_SpatialAwarenessSystem_MixedRealitySpatialAwarenessEventData_1_Initialize_ - commentId: Overload:XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData`1.Initialize - isSpec: "True" - fullName: XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData.Initialize - fullName.vb: XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData(Of T).Initialize - nameWithType: MixedRealitySpatialAwarenessEventData.Initialize - nameWithType.vb: MixedRealitySpatialAwarenessEventData(Of T).Initialize -- uid: XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData`1.SpatialObject - name: SpatialObject - href: api/XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData-1.html#XRTK_EventDatum_SpatialAwarenessSystem_MixedRealitySpatialAwarenessEventData_1_SpatialObject - commentId: P:XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData`1.SpatialObject - fullName: XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData.SpatialObject - fullName.vb: XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData(Of T).SpatialObject - nameWithType: MixedRealitySpatialAwarenessEventData.SpatialObject - nameWithType.vb: MixedRealitySpatialAwarenessEventData(Of T).SpatialObject -- uid: XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData`1.SpatialObject* - name: SpatialObject - href: api/XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData-1.html#XRTK_EventDatum_SpatialAwarenessSystem_MixedRealitySpatialAwarenessEventData_1_SpatialObject_ - commentId: Overload:XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData`1.SpatialObject - isSpec: "True" - fullName: XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData.SpatialObject - fullName.vb: XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData(Of T).SpatialObject - nameWithType: MixedRealitySpatialAwarenessEventData.SpatialObject - nameWithType.vb: MixedRealitySpatialAwarenessEventData(Of T).SpatialObject -- uid: XRTK.EventDatum.Teleport - name: XRTK.EventDatum.Teleport - href: api/XRTK.EventDatum.Teleport.html - commentId: N:XRTK.EventDatum.Teleport - fullName: XRTK.EventDatum.Teleport - nameWithType: XRTK.EventDatum.Teleport -- uid: XRTK.EventDatum.Teleport.TeleportEventData - name: TeleportEventData - href: api/XRTK.EventDatum.Teleport.TeleportEventData.html - commentId: T:XRTK.EventDatum.Teleport.TeleportEventData - fullName: XRTK.EventDatum.Teleport.TeleportEventData - nameWithType: TeleportEventData -- uid: XRTK.EventDatum.Teleport.TeleportEventData.#ctor(EventSystem) - name: TeleportEventData(EventSystem) - href: api/XRTK.EventDatum.Teleport.TeleportEventData.html#XRTK_EventDatum_Teleport_TeleportEventData__ctor_EventSystem_ - commentId: M:XRTK.EventDatum.Teleport.TeleportEventData.#ctor(EventSystem) - fullName: XRTK.EventDatum.Teleport.TeleportEventData.TeleportEventData(EventSystem) - nameWithType: TeleportEventData.TeleportEventData(EventSystem) -- uid: XRTK.EventDatum.Teleport.TeleportEventData.#ctor* - name: TeleportEventData - href: api/XRTK.EventDatum.Teleport.TeleportEventData.html#XRTK_EventDatum_Teleport_TeleportEventData__ctor_ - commentId: Overload:XRTK.EventDatum.Teleport.TeleportEventData.#ctor - isSpec: "True" - fullName: XRTK.EventDatum.Teleport.TeleportEventData.TeleportEventData - nameWithType: TeleportEventData.TeleportEventData -- uid: XRTK.EventDatum.Teleport.TeleportEventData.HotSpot - name: HotSpot - href: api/XRTK.EventDatum.Teleport.TeleportEventData.html#XRTK_EventDatum_Teleport_TeleportEventData_HotSpot - commentId: P:XRTK.EventDatum.Teleport.TeleportEventData.HotSpot - fullName: XRTK.EventDatum.Teleport.TeleportEventData.HotSpot - nameWithType: TeleportEventData.HotSpot -- uid: XRTK.EventDatum.Teleport.TeleportEventData.HotSpot* - name: HotSpot - href: api/XRTK.EventDatum.Teleport.TeleportEventData.html#XRTK_EventDatum_Teleport_TeleportEventData_HotSpot_ - commentId: Overload:XRTK.EventDatum.Teleport.TeleportEventData.HotSpot - isSpec: "True" - fullName: XRTK.EventDatum.Teleport.TeleportEventData.HotSpot - nameWithType: TeleportEventData.HotSpot -- uid: XRTK.EventDatum.Teleport.TeleportEventData.Initialize(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot) - name: Initialize(IMixedRealityPointer, IMixedRealityTeleportHotSpot) - href: api/XRTK.EventDatum.Teleport.TeleportEventData.html#XRTK_EventDatum_Teleport_TeleportEventData_Initialize_XRTK_Interfaces_InputSystem_IMixedRealityPointer_XRTK_Interfaces_TeleportSystem_IMixedRealityTeleportHotSpot_ - commentId: M:XRTK.EventDatum.Teleport.TeleportEventData.Initialize(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot) - fullName: XRTK.EventDatum.Teleport.TeleportEventData.Initialize(XRTK.Interfaces.InputSystem.IMixedRealityPointer, XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot) - nameWithType: TeleportEventData.Initialize(IMixedRealityPointer, IMixedRealityTeleportHotSpot) -- uid: XRTK.EventDatum.Teleport.TeleportEventData.Initialize* - name: Initialize - href: api/XRTK.EventDatum.Teleport.TeleportEventData.html#XRTK_EventDatum_Teleport_TeleportEventData_Initialize_ - commentId: Overload:XRTK.EventDatum.Teleport.TeleportEventData.Initialize - isSpec: "True" - fullName: XRTK.EventDatum.Teleport.TeleportEventData.Initialize - nameWithType: TeleportEventData.Initialize -- uid: XRTK.EventDatum.Teleport.TeleportEventData.Pointer - name: Pointer - href: api/XRTK.EventDatum.Teleport.TeleportEventData.html#XRTK_EventDatum_Teleport_TeleportEventData_Pointer - commentId: P:XRTK.EventDatum.Teleport.TeleportEventData.Pointer - fullName: XRTK.EventDatum.Teleport.TeleportEventData.Pointer - nameWithType: TeleportEventData.Pointer -- uid: XRTK.EventDatum.Teleport.TeleportEventData.Pointer* - name: Pointer - href: api/XRTK.EventDatum.Teleport.TeleportEventData.html#XRTK_EventDatum_Teleport_TeleportEventData_Pointer_ - commentId: Overload:XRTK.EventDatum.Teleport.TeleportEventData.Pointer - isSpec: "True" - fullName: XRTK.EventDatum.Teleport.TeleportEventData.Pointer - nameWithType: TeleportEventData.Pointer -- uid: XRTK.Examples.Demos - name: XRTK.Examples.Demos - href: api/XRTK.Examples.Demos.html - commentId: N:XRTK.Examples.Demos - fullName: XRTK.Examples.Demos - nameWithType: XRTK.Examples.Demos -- uid: XRTK.Examples.Demos.BoundarySystem - name: XRTK.Examples.Demos.BoundarySystem - href: api/XRTK.Examples.Demos.BoundarySystem.html - commentId: N:XRTK.Examples.Demos.BoundarySystem - fullName: XRTK.Examples.Demos.BoundarySystem - nameWithType: XRTK.Examples.Demos.BoundarySystem -- uid: XRTK.Examples.Demos.BoundarySystem.BoundaryVisualizationDemo - name: BoundaryVisualizationDemo - href: api/XRTK.Examples.Demos.BoundarySystem.BoundaryVisualizationDemo.html - commentId: T:XRTK.Examples.Demos.BoundarySystem.BoundaryVisualizationDemo - fullName: XRTK.Examples.Demos.BoundarySystem.BoundaryVisualizationDemo - nameWithType: BoundaryVisualizationDemo -- uid: XRTK.Examples.Demos.CustomExtensionServices - name: XRTK.Examples.Demos.CustomExtensionServices - href: api/XRTK.Examples.Demos.CustomExtensionServices.html - commentId: N:XRTK.Examples.Demos.CustomExtensionServices - fullName: XRTK.Examples.Demos.CustomExtensionServices - nameWithType: XRTK.Examples.Demos.CustomExtensionServices -- uid: XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionService - name: DemoCustomExtensionService - href: api/XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionService.html - commentId: T:XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionService - fullName: XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionService - nameWithType: DemoCustomExtensionService -- uid: XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionService.#ctor(System.String,System.UInt32,XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionServiceProfile) - name: DemoCustomExtensionService(String, UInt32, DemoCustomExtensionServiceProfile) - href: api/XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionService.html#XRTK_Examples_Demos_CustomExtensionServices_DemoCustomExtensionService__ctor_System_String_System_UInt32_XRTK_Examples_Demos_CustomExtensionServices_DemoCustomExtensionServiceProfile_ - commentId: M:XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionService.#ctor(System.String,System.UInt32,XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionServiceProfile) - fullName: XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionService.DemoCustomExtensionService(System.String, System.UInt32, XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionServiceProfile) - nameWithType: DemoCustomExtensionService.DemoCustomExtensionService(String, UInt32, DemoCustomExtensionServiceProfile) -- uid: XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionService.#ctor* - name: DemoCustomExtensionService - href: api/XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionService.html#XRTK_Examples_Demos_CustomExtensionServices_DemoCustomExtensionService__ctor_ - commentId: Overload:XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionService.#ctor - isSpec: "True" - fullName: XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionService.DemoCustomExtensionService - nameWithType: DemoCustomExtensionService.DemoCustomExtensionService -- uid: XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionService.MyCustomData - name: MyCustomData - href: api/XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionService.html#XRTK_Examples_Demos_CustomExtensionServices_DemoCustomExtensionService_MyCustomData - commentId: P:XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionService.MyCustomData - fullName: XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionService.MyCustomData - nameWithType: DemoCustomExtensionService.MyCustomData -- uid: XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionService.MyCustomData* - name: MyCustomData - href: api/XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionService.html#XRTK_Examples_Demos_CustomExtensionServices_DemoCustomExtensionService_MyCustomData_ - commentId: Overload:XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionService.MyCustomData - isSpec: "True" - fullName: XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionService.MyCustomData - nameWithType: DemoCustomExtensionService.MyCustomData -- uid: XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionService.MyCustomEvent - name: MyCustomEvent - href: api/XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionService.html#XRTK_Examples_Demos_CustomExtensionServices_DemoCustomExtensionService_MyCustomEvent - commentId: P:XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionService.MyCustomEvent - fullName: XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionService.MyCustomEvent - nameWithType: DemoCustomExtensionService.MyCustomEvent -- uid: XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionService.MyCustomEvent* - name: MyCustomEvent - href: api/XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionService.html#XRTK_Examples_Demos_CustomExtensionServices_DemoCustomExtensionService_MyCustomEvent_ - commentId: Overload:XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionService.MyCustomEvent - isSpec: "True" - fullName: XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionService.MyCustomEvent - nameWithType: DemoCustomExtensionService.MyCustomEvent -- uid: XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionService.MyCustomMethod - name: MyCustomMethod() - href: api/XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionService.html#XRTK_Examples_Demos_CustomExtensionServices_DemoCustomExtensionService_MyCustomMethod - commentId: M:XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionService.MyCustomMethod - fullName: XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionService.MyCustomMethod() - nameWithType: DemoCustomExtensionService.MyCustomMethod() -- uid: XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionService.MyCustomMethod* - name: MyCustomMethod - href: api/XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionService.html#XRTK_Examples_Demos_CustomExtensionServices_DemoCustomExtensionService_MyCustomMethod_ - commentId: Overload:XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionService.MyCustomMethod - isSpec: "True" - fullName: XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionService.MyCustomMethod - nameWithType: DemoCustomExtensionService.MyCustomMethod -- uid: XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionService.Update - name: Update() - href: api/XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionService.html#XRTK_Examples_Demos_CustomExtensionServices_DemoCustomExtensionService_Update - commentId: M:XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionService.Update - fullName: XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionService.Update() - nameWithType: DemoCustomExtensionService.Update() -- uid: XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionService.Update* - name: Update - href: api/XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionService.html#XRTK_Examples_Demos_CustomExtensionServices_DemoCustomExtensionService_Update_ - commentId: Overload:XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionService.Update - isSpec: "True" - fullName: XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionService.Update - nameWithType: DemoCustomExtensionService.Update -- uid: XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionServiceProfile - name: DemoCustomExtensionServiceProfile - href: api/XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionServiceProfile.html - commentId: T:XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionServiceProfile - fullName: XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionServiceProfile - nameWithType: DemoCustomExtensionServiceProfile -- uid: XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionServiceProfile.MyCustomStringData - name: MyCustomStringData - href: api/XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionServiceProfile.html#XRTK_Examples_Demos_CustomExtensionServices_DemoCustomExtensionServiceProfile_MyCustomStringData - commentId: P:XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionServiceProfile.MyCustomStringData - fullName: XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionServiceProfile.MyCustomStringData - nameWithType: DemoCustomExtensionServiceProfile.MyCustomStringData -- uid: XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionServiceProfile.MyCustomStringData* - name: MyCustomStringData - href: api/XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionServiceProfile.html#XRTK_Examples_Demos_CustomExtensionServices_DemoCustomExtensionServiceProfile_MyCustomStringData_ - commentId: Overload:XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionServiceProfile.MyCustomStringData - isSpec: "True" - fullName: XRTK.Examples.Demos.CustomExtensionServices.DemoCustomExtensionServiceProfile.MyCustomStringData - nameWithType: DemoCustomExtensionServiceProfile.MyCustomStringData -- uid: XRTK.Examples.Demos.CustomExtensionServices.IDemoCustomExtensionService - name: IDemoCustomExtensionService - href: api/XRTK.Examples.Demos.CustomExtensionServices.IDemoCustomExtensionService.html - commentId: T:XRTK.Examples.Demos.CustomExtensionServices.IDemoCustomExtensionService - fullName: XRTK.Examples.Demos.CustomExtensionServices.IDemoCustomExtensionService - nameWithType: IDemoCustomExtensionService -- uid: XRTK.Examples.Demos.CustomExtensionServices.IDemoCustomExtensionService.MyCustomData - name: MyCustomData - href: api/XRTK.Examples.Demos.CustomExtensionServices.IDemoCustomExtensionService.html#XRTK_Examples_Demos_CustomExtensionServices_IDemoCustomExtensionService_MyCustomData - commentId: P:XRTK.Examples.Demos.CustomExtensionServices.IDemoCustomExtensionService.MyCustomData - fullName: XRTK.Examples.Demos.CustomExtensionServices.IDemoCustomExtensionService.MyCustomData - nameWithType: IDemoCustomExtensionService.MyCustomData -- uid: XRTK.Examples.Demos.CustomExtensionServices.IDemoCustomExtensionService.MyCustomData* - name: MyCustomData - href: api/XRTK.Examples.Demos.CustomExtensionServices.IDemoCustomExtensionService.html#XRTK_Examples_Demos_CustomExtensionServices_IDemoCustomExtensionService_MyCustomData_ - commentId: Overload:XRTK.Examples.Demos.CustomExtensionServices.IDemoCustomExtensionService.MyCustomData - isSpec: "True" - fullName: XRTK.Examples.Demos.CustomExtensionServices.IDemoCustomExtensionService.MyCustomData - nameWithType: IDemoCustomExtensionService.MyCustomData -- uid: XRTK.Examples.Demos.CustomExtensionServices.IDemoCustomExtensionService.MyCustomEvent - name: MyCustomEvent - href: api/XRTK.Examples.Demos.CustomExtensionServices.IDemoCustomExtensionService.html#XRTK_Examples_Demos_CustomExtensionServices_IDemoCustomExtensionService_MyCustomEvent - commentId: P:XRTK.Examples.Demos.CustomExtensionServices.IDemoCustomExtensionService.MyCustomEvent - fullName: XRTK.Examples.Demos.CustomExtensionServices.IDemoCustomExtensionService.MyCustomEvent - nameWithType: IDemoCustomExtensionService.MyCustomEvent -- uid: XRTK.Examples.Demos.CustomExtensionServices.IDemoCustomExtensionService.MyCustomEvent* - name: MyCustomEvent - href: api/XRTK.Examples.Demos.CustomExtensionServices.IDemoCustomExtensionService.html#XRTK_Examples_Demos_CustomExtensionServices_IDemoCustomExtensionService_MyCustomEvent_ - commentId: Overload:XRTK.Examples.Demos.CustomExtensionServices.IDemoCustomExtensionService.MyCustomEvent - isSpec: "True" - fullName: XRTK.Examples.Demos.CustomExtensionServices.IDemoCustomExtensionService.MyCustomEvent - nameWithType: IDemoCustomExtensionService.MyCustomEvent -- uid: XRTK.Examples.Demos.CustomExtensionServices.IDemoCustomExtensionService.MyCustomMethod - name: MyCustomMethod() - href: api/XRTK.Examples.Demos.CustomExtensionServices.IDemoCustomExtensionService.html#XRTK_Examples_Demos_CustomExtensionServices_IDemoCustomExtensionService_MyCustomMethod - commentId: M:XRTK.Examples.Demos.CustomExtensionServices.IDemoCustomExtensionService.MyCustomMethod - fullName: XRTK.Examples.Demos.CustomExtensionServices.IDemoCustomExtensionService.MyCustomMethod() - nameWithType: IDemoCustomExtensionService.MyCustomMethod() -- uid: XRTK.Examples.Demos.CustomExtensionServices.IDemoCustomExtensionService.MyCustomMethod* - name: MyCustomMethod - href: api/XRTK.Examples.Demos.CustomExtensionServices.IDemoCustomExtensionService.html#XRTK_Examples_Demos_CustomExtensionServices_IDemoCustomExtensionService_MyCustomMethod_ - commentId: Overload:XRTK.Examples.Demos.CustomExtensionServices.IDemoCustomExtensionService.MyCustomMethod - isSpec: "True" - fullName: XRTK.Examples.Demos.CustomExtensionServices.IDemoCustomExtensionService.MyCustomMethod - nameWithType: IDemoCustomExtensionService.MyCustomMethod -- uid: XRTK.Examples.Demos.CustomServices.Editor - name: XRTK.Examples.Demos.CustomServices.Editor - href: api/XRTK.Examples.Demos.CustomServices.Editor.html - commentId: N:XRTK.Examples.Demos.CustomServices.Editor - fullName: XRTK.Examples.Demos.CustomServices.Editor - nameWithType: XRTK.Examples.Demos.CustomServices.Editor -- uid: XRTK.Examples.Demos.CustomServices.Editor.DemoCustomExtensionServiceProfileInspector - name: DemoCustomExtensionServiceProfileInspector - href: api/XRTK.Examples.Demos.CustomServices.Editor.DemoCustomExtensionServiceProfileInspector.html - commentId: T:XRTK.Examples.Demos.CustomServices.Editor.DemoCustomExtensionServiceProfileInspector - fullName: XRTK.Examples.Demos.CustomServices.Editor.DemoCustomExtensionServiceProfileInspector - nameWithType: DemoCustomExtensionServiceProfileInspector -- uid: XRTK.Examples.Demos.CustomServices.Editor.DemoCustomExtensionServiceProfileInspector.OnEnable - name: OnEnable() - href: api/XRTK.Examples.Demos.CustomServices.Editor.DemoCustomExtensionServiceProfileInspector.html#XRTK_Examples_Demos_CustomServices_Editor_DemoCustomExtensionServiceProfileInspector_OnEnable - commentId: M:XRTK.Examples.Demos.CustomServices.Editor.DemoCustomExtensionServiceProfileInspector.OnEnable - fullName: XRTK.Examples.Demos.CustomServices.Editor.DemoCustomExtensionServiceProfileInspector.OnEnable() - nameWithType: DemoCustomExtensionServiceProfileInspector.OnEnable() -- uid: XRTK.Examples.Demos.CustomServices.Editor.DemoCustomExtensionServiceProfileInspector.OnEnable* - name: OnEnable - href: api/XRTK.Examples.Demos.CustomServices.Editor.DemoCustomExtensionServiceProfileInspector.html#XRTK_Examples_Demos_CustomServices_Editor_DemoCustomExtensionServiceProfileInspector_OnEnable_ - commentId: Overload:XRTK.Examples.Demos.CustomServices.Editor.DemoCustomExtensionServiceProfileInspector.OnEnable - isSpec: "True" - fullName: XRTK.Examples.Demos.CustomServices.Editor.DemoCustomExtensionServiceProfileInspector.OnEnable - nameWithType: DemoCustomExtensionServiceProfileInspector.OnEnable -- uid: XRTK.Examples.Demos.CustomServices.Editor.DemoCustomExtensionServiceProfileInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.Examples.Demos.CustomServices.Editor.DemoCustomExtensionServiceProfileInspector.html#XRTK_Examples_Demos_CustomServices_Editor_DemoCustomExtensionServiceProfileInspector_OnInspectorGUI - commentId: M:XRTK.Examples.Demos.CustomServices.Editor.DemoCustomExtensionServiceProfileInspector.OnInspectorGUI - fullName: XRTK.Examples.Demos.CustomServices.Editor.DemoCustomExtensionServiceProfileInspector.OnInspectorGUI() - nameWithType: DemoCustomExtensionServiceProfileInspector.OnInspectorGUI() -- uid: XRTK.Examples.Demos.CustomServices.Editor.DemoCustomExtensionServiceProfileInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.Examples.Demos.CustomServices.Editor.DemoCustomExtensionServiceProfileInspector.html#XRTK_Examples_Demos_CustomServices_Editor_DemoCustomExtensionServiceProfileInspector_OnInspectorGUI_ - commentId: Overload:XRTK.Examples.Demos.CustomServices.Editor.DemoCustomExtensionServiceProfileInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.Examples.Demos.CustomServices.Editor.DemoCustomExtensionServiceProfileInspector.OnInspectorGUI - nameWithType: DemoCustomExtensionServiceProfileInspector.OnInspectorGUI -- uid: XRTK.Examples.Demos.DemoSpatialMeshHandler - name: DemoSpatialMeshHandler - href: api/XRTK.Examples.Demos.DemoSpatialMeshHandler.html - commentId: T:XRTK.Examples.Demos.DemoSpatialMeshHandler - fullName: XRTK.Examples.Demos.DemoSpatialMeshHandler - nameWithType: DemoSpatialMeshHandler -- uid: XRTK.Examples.Demos.DemoSpatialMeshHandler.OnMeshAdded(XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData{XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject}) - name: OnMeshAdded(MixedRealitySpatialAwarenessEventData) - href: api/XRTK.Examples.Demos.DemoSpatialMeshHandler.html#XRTK_Examples_Demos_DemoSpatialMeshHandler_OnMeshAdded_XRTK_EventDatum_SpatialAwarenessSystem_MixedRealitySpatialAwarenessEventData_XRTK_Definitions_SpatialAwarenessSystem_SpatialMeshObject__ - commentId: M:XRTK.Examples.Demos.DemoSpatialMeshHandler.OnMeshAdded(XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData{XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject}) - name.vb: OnMeshAdded(MixedRealitySpatialAwarenessEventData(Of SpatialMeshObject)) - fullName: XRTK.Examples.Demos.DemoSpatialMeshHandler.OnMeshAdded(XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData) - fullName.vb: XRTK.Examples.Demos.DemoSpatialMeshHandler.OnMeshAdded(XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData(Of XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject)) - nameWithType: DemoSpatialMeshHandler.OnMeshAdded(MixedRealitySpatialAwarenessEventData) - nameWithType.vb: DemoSpatialMeshHandler.OnMeshAdded(MixedRealitySpatialAwarenessEventData(Of SpatialMeshObject)) -- uid: XRTK.Examples.Demos.DemoSpatialMeshHandler.OnMeshAdded* - name: OnMeshAdded - href: api/XRTK.Examples.Demos.DemoSpatialMeshHandler.html#XRTK_Examples_Demos_DemoSpatialMeshHandler_OnMeshAdded_ - commentId: Overload:XRTK.Examples.Demos.DemoSpatialMeshHandler.OnMeshAdded - isSpec: "True" - fullName: XRTK.Examples.Demos.DemoSpatialMeshHandler.OnMeshAdded - nameWithType: DemoSpatialMeshHandler.OnMeshAdded -- uid: XRTK.Examples.Demos.DemoSpatialMeshHandler.OnMeshRemoved(XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData{XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject}) - name: OnMeshRemoved(MixedRealitySpatialAwarenessEventData) - href: api/XRTK.Examples.Demos.DemoSpatialMeshHandler.html#XRTK_Examples_Demos_DemoSpatialMeshHandler_OnMeshRemoved_XRTK_EventDatum_SpatialAwarenessSystem_MixedRealitySpatialAwarenessEventData_XRTK_Definitions_SpatialAwarenessSystem_SpatialMeshObject__ - commentId: M:XRTK.Examples.Demos.DemoSpatialMeshHandler.OnMeshRemoved(XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData{XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject}) - name.vb: OnMeshRemoved(MixedRealitySpatialAwarenessEventData(Of SpatialMeshObject)) - fullName: XRTK.Examples.Demos.DemoSpatialMeshHandler.OnMeshRemoved(XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData) - fullName.vb: XRTK.Examples.Demos.DemoSpatialMeshHandler.OnMeshRemoved(XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData(Of XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject)) - nameWithType: DemoSpatialMeshHandler.OnMeshRemoved(MixedRealitySpatialAwarenessEventData) - nameWithType.vb: DemoSpatialMeshHandler.OnMeshRemoved(MixedRealitySpatialAwarenessEventData(Of SpatialMeshObject)) -- uid: XRTK.Examples.Demos.DemoSpatialMeshHandler.OnMeshRemoved* - name: OnMeshRemoved - href: api/XRTK.Examples.Demos.DemoSpatialMeshHandler.html#XRTK_Examples_Demos_DemoSpatialMeshHandler_OnMeshRemoved_ - commentId: Overload:XRTK.Examples.Demos.DemoSpatialMeshHandler.OnMeshRemoved - isSpec: "True" - fullName: XRTK.Examples.Demos.DemoSpatialMeshHandler.OnMeshRemoved - nameWithType: DemoSpatialMeshHandler.OnMeshRemoved -- uid: XRTK.Examples.Demos.DemoSpatialMeshHandler.OnMeshUpdated(XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData{XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject}) - name: OnMeshUpdated(MixedRealitySpatialAwarenessEventData) - href: api/XRTK.Examples.Demos.DemoSpatialMeshHandler.html#XRTK_Examples_Demos_DemoSpatialMeshHandler_OnMeshUpdated_XRTK_EventDatum_SpatialAwarenessSystem_MixedRealitySpatialAwarenessEventData_XRTK_Definitions_SpatialAwarenessSystem_SpatialMeshObject__ - commentId: M:XRTK.Examples.Demos.DemoSpatialMeshHandler.OnMeshUpdated(XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData{XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject}) - name.vb: OnMeshUpdated(MixedRealitySpatialAwarenessEventData(Of SpatialMeshObject)) - fullName: XRTK.Examples.Demos.DemoSpatialMeshHandler.OnMeshUpdated(XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData) - fullName.vb: XRTK.Examples.Demos.DemoSpatialMeshHandler.OnMeshUpdated(XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData(Of XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject)) - nameWithType: DemoSpatialMeshHandler.OnMeshUpdated(MixedRealitySpatialAwarenessEventData) - nameWithType.vb: DemoSpatialMeshHandler.OnMeshUpdated(MixedRealitySpatialAwarenessEventData(Of SpatialMeshObject)) -- uid: XRTK.Examples.Demos.DemoSpatialMeshHandler.OnMeshUpdated* - name: OnMeshUpdated - href: api/XRTK.Examples.Demos.DemoSpatialMeshHandler.html#XRTK_Examples_Demos_DemoSpatialMeshHandler_OnMeshUpdated_ - commentId: Overload:XRTK.Examples.Demos.DemoSpatialMeshHandler.OnMeshUpdated - isSpec: "True" - fullName: XRTK.Examples.Demos.DemoSpatialMeshHandler.OnMeshUpdated - nameWithType: DemoSpatialMeshHandler.OnMeshUpdated -- uid: XRTK.Examples.Demos.DiagnosticsDemoControls - name: DiagnosticsDemoControls - href: api/XRTK.Examples.Demos.DiagnosticsDemoControls.html - commentId: T:XRTK.Examples.Demos.DiagnosticsDemoControls - fullName: XRTK.Examples.Demos.DiagnosticsDemoControls - nameWithType: DiagnosticsDemoControls -- uid: XRTK.Examples.Demos.Gltf - name: XRTK.Examples.Demos.Gltf - href: api/XRTK.Examples.Demos.Gltf.html - commentId: N:XRTK.Examples.Demos.Gltf - fullName: XRTK.Examples.Demos.Gltf - nameWithType: XRTK.Examples.Demos.Gltf -- uid: XRTK.Examples.Demos.Gltf.TestGlbLoading - name: TestGlbLoading - href: api/XRTK.Examples.Demos.Gltf.TestGlbLoading.html - commentId: T:XRTK.Examples.Demos.Gltf.TestGlbLoading - fullName: XRTK.Examples.Demos.Gltf.TestGlbLoading - nameWithType: TestGlbLoading -- uid: XRTK.Examples.Demos.Gltf.TestGltfLoading - name: TestGltfLoading - href: api/XRTK.Examples.Demos.Gltf.TestGltfLoading.html - commentId: T:XRTK.Examples.Demos.Gltf.TestGltfLoading - fullName: XRTK.Examples.Demos.Gltf.TestGltfLoading - nameWithType: TestGltfLoading -- uid: XRTK.Examples.Demos.HandController - name: XRTK.Examples.Demos.HandController - href: api/XRTK.Examples.Demos.HandController.html - commentId: N:XRTK.Examples.Demos.HandController - fullName: XRTK.Examples.Demos.HandController - nameWithType: XRTK.Examples.Demos.HandController -- uid: XRTK.Examples.Demos.HandController.HandPhysicsDemoStation - name: HandPhysicsDemoStation - href: api/XRTK.Examples.Demos.HandController.HandPhysicsDemoStation.html - commentId: T:XRTK.Examples.Demos.HandController.HandPhysicsDemoStation - fullName: XRTK.Examples.Demos.HandController.HandPhysicsDemoStation - nameWithType: HandPhysicsDemoStation -- uid: XRTK.Examples.Demos.HandController.HandPhysicsDemoStation.SetFingerBoundsMode - name: SetFingerBoundsMode() - href: api/XRTK.Examples.Demos.HandController.HandPhysicsDemoStation.html#XRTK_Examples_Demos_HandController_HandPhysicsDemoStation_SetFingerBoundsMode - commentId: M:XRTK.Examples.Demos.HandController.HandPhysicsDemoStation.SetFingerBoundsMode - fullName: XRTK.Examples.Demos.HandController.HandPhysicsDemoStation.SetFingerBoundsMode() - nameWithType: HandPhysicsDemoStation.SetFingerBoundsMode() -- uid: XRTK.Examples.Demos.HandController.HandPhysicsDemoStation.SetFingerBoundsMode* - name: SetFingerBoundsMode - href: api/XRTK.Examples.Demos.HandController.HandPhysicsDemoStation.html#XRTK_Examples_Demos_HandController_HandPhysicsDemoStation_SetFingerBoundsMode_ - commentId: Overload:XRTK.Examples.Demos.HandController.HandPhysicsDemoStation.SetFingerBoundsMode - isSpec: "True" - fullName: XRTK.Examples.Demos.HandController.HandPhysicsDemoStation.SetFingerBoundsMode - nameWithType: HandPhysicsDemoStation.SetFingerBoundsMode -- uid: XRTK.Examples.Demos.HandController.HandPhysicsDemoStation.SetHandBoundsMode - name: SetHandBoundsMode() - href: api/XRTK.Examples.Demos.HandController.HandPhysicsDemoStation.html#XRTK_Examples_Demos_HandController_HandPhysicsDemoStation_SetHandBoundsMode - commentId: M:XRTK.Examples.Demos.HandController.HandPhysicsDemoStation.SetHandBoundsMode - fullName: XRTK.Examples.Demos.HandController.HandPhysicsDemoStation.SetHandBoundsMode() - nameWithType: HandPhysicsDemoStation.SetHandBoundsMode() -- uid: XRTK.Examples.Demos.HandController.HandPhysicsDemoStation.SetHandBoundsMode* - name: SetHandBoundsMode - href: api/XRTK.Examples.Demos.HandController.HandPhysicsDemoStation.html#XRTK_Examples_Demos_HandController_HandPhysicsDemoStation_SetHandBoundsMode_ - commentId: Overload:XRTK.Examples.Demos.HandController.HandPhysicsDemoStation.SetHandBoundsMode - isSpec: "True" - fullName: XRTK.Examples.Demos.HandController.HandPhysicsDemoStation.SetHandBoundsMode - nameWithType: HandPhysicsDemoStation.SetHandBoundsMode -- uid: XRTK.Examples.Demos.HandController.HandPhysicsDemoStation.TogglePhysics(System.Boolean) - name: TogglePhysics(Boolean) - href: api/XRTK.Examples.Demos.HandController.HandPhysicsDemoStation.html#XRTK_Examples_Demos_HandController_HandPhysicsDemoStation_TogglePhysics_System_Boolean_ - commentId: M:XRTK.Examples.Demos.HandController.HandPhysicsDemoStation.TogglePhysics(System.Boolean) - fullName: XRTK.Examples.Demos.HandController.HandPhysicsDemoStation.TogglePhysics(System.Boolean) - nameWithType: HandPhysicsDemoStation.TogglePhysics(Boolean) -- uid: XRTK.Examples.Demos.HandController.HandPhysicsDemoStation.TogglePhysics* - name: TogglePhysics - href: api/XRTK.Examples.Demos.HandController.HandPhysicsDemoStation.html#XRTK_Examples_Demos_HandController_HandPhysicsDemoStation_TogglePhysics_ - commentId: Overload:XRTK.Examples.Demos.HandController.HandPhysicsDemoStation.TogglePhysics - isSpec: "True" - fullName: XRTK.Examples.Demos.HandController.HandPhysicsDemoStation.TogglePhysics - nameWithType: HandPhysicsDemoStation.TogglePhysics -- uid: XRTK.Examples.Demos.HandController.RenderingModeDemoStation - name: RenderingModeDemoStation - href: api/XRTK.Examples.Demos.HandController.RenderingModeDemoStation.html - commentId: T:XRTK.Examples.Demos.HandController.RenderingModeDemoStation - fullName: XRTK.Examples.Demos.HandController.RenderingModeDemoStation - nameWithType: RenderingModeDemoStation -- uid: XRTK.Examples.Demos.HandController.RenderingModeDemoStation.SetJointsMode - name: SetJointsMode() - href: api/XRTK.Examples.Demos.HandController.RenderingModeDemoStation.html#XRTK_Examples_Demos_HandController_RenderingModeDemoStation_SetJointsMode - commentId: M:XRTK.Examples.Demos.HandController.RenderingModeDemoStation.SetJointsMode - fullName: XRTK.Examples.Demos.HandController.RenderingModeDemoStation.SetJointsMode() - nameWithType: RenderingModeDemoStation.SetJointsMode() -- uid: XRTK.Examples.Demos.HandController.RenderingModeDemoStation.SetJointsMode* - name: SetJointsMode - href: api/XRTK.Examples.Demos.HandController.RenderingModeDemoStation.html#XRTK_Examples_Demos_HandController_RenderingModeDemoStation_SetJointsMode_ - commentId: Overload:XRTK.Examples.Demos.HandController.RenderingModeDemoStation.SetJointsMode - isSpec: "True" - fullName: XRTK.Examples.Demos.HandController.RenderingModeDemoStation.SetJointsMode - nameWithType: RenderingModeDemoStation.SetJointsMode -- uid: XRTK.Examples.Demos.HandController.RenderingModeDemoStation.SetMeshMode - name: SetMeshMode() - href: api/XRTK.Examples.Demos.HandController.RenderingModeDemoStation.html#XRTK_Examples_Demos_HandController_RenderingModeDemoStation_SetMeshMode - commentId: M:XRTK.Examples.Demos.HandController.RenderingModeDemoStation.SetMeshMode - fullName: XRTK.Examples.Demos.HandController.RenderingModeDemoStation.SetMeshMode() - nameWithType: RenderingModeDemoStation.SetMeshMode() -- uid: XRTK.Examples.Demos.HandController.RenderingModeDemoStation.SetMeshMode* - name: SetMeshMode - href: api/XRTK.Examples.Demos.HandController.RenderingModeDemoStation.html#XRTK_Examples_Demos_HandController_RenderingModeDemoStation_SetMeshMode_ - commentId: Overload:XRTK.Examples.Demos.HandController.RenderingModeDemoStation.SetMeshMode - isSpec: "True" - fullName: XRTK.Examples.Demos.HandController.RenderingModeDemoStation.SetMeshMode - nameWithType: RenderingModeDemoStation.SetMeshMode -- uid: XRTK.Examples.Demos.HandController.RenderingModeDemoStation.SetNoneMode - name: SetNoneMode() - href: api/XRTK.Examples.Demos.HandController.RenderingModeDemoStation.html#XRTK_Examples_Demos_HandController_RenderingModeDemoStation_SetNoneMode - commentId: M:XRTK.Examples.Demos.HandController.RenderingModeDemoStation.SetNoneMode - fullName: XRTK.Examples.Demos.HandController.RenderingModeDemoStation.SetNoneMode() - nameWithType: RenderingModeDemoStation.SetNoneMode() -- uid: XRTK.Examples.Demos.HandController.RenderingModeDemoStation.SetNoneMode* - name: SetNoneMode - href: api/XRTK.Examples.Demos.HandController.RenderingModeDemoStation.html#XRTK_Examples_Demos_HandController_RenderingModeDemoStation_SetNoneMode_ - commentId: Overload:XRTK.Examples.Demos.HandController.RenderingModeDemoStation.SetNoneMode - isSpec: "True" - fullName: XRTK.Examples.Demos.HandController.RenderingModeDemoStation.SetNoneMode - nameWithType: RenderingModeDemoStation.SetNoneMode -- uid: XRTK.Examples.Demos.HandController.TrackedPoseDemoStation - name: TrackedPoseDemoStation - href: api/XRTK.Examples.Demos.HandController.TrackedPoseDemoStation.html - commentId: T:XRTK.Examples.Demos.HandController.TrackedPoseDemoStation - fullName: XRTK.Examples.Demos.HandController.TrackedPoseDemoStation - nameWithType: TrackedPoseDemoStation -- uid: XRTK.Examples.Demos.HandController.TrackedPoseDemoStation.OnSourceDetected(XRTK.EventDatum.Input.SourceStateEventData) - name: OnSourceDetected(SourceStateEventData) - href: api/XRTK.Examples.Demos.HandController.TrackedPoseDemoStation.html#XRTK_Examples_Demos_HandController_TrackedPoseDemoStation_OnSourceDetected_XRTK_EventDatum_Input_SourceStateEventData_ - commentId: M:XRTK.Examples.Demos.HandController.TrackedPoseDemoStation.OnSourceDetected(XRTK.EventDatum.Input.SourceStateEventData) - fullName: XRTK.Examples.Demos.HandController.TrackedPoseDemoStation.OnSourceDetected(XRTK.EventDatum.Input.SourceStateEventData) - nameWithType: TrackedPoseDemoStation.OnSourceDetected(SourceStateEventData) -- uid: XRTK.Examples.Demos.HandController.TrackedPoseDemoStation.OnSourceDetected* - name: OnSourceDetected - href: api/XRTK.Examples.Demos.HandController.TrackedPoseDemoStation.html#XRTK_Examples_Demos_HandController_TrackedPoseDemoStation_OnSourceDetected_ - commentId: Overload:XRTK.Examples.Demos.HandController.TrackedPoseDemoStation.OnSourceDetected - isSpec: "True" - fullName: XRTK.Examples.Demos.HandController.TrackedPoseDemoStation.OnSourceDetected - nameWithType: TrackedPoseDemoStation.OnSourceDetected -- uid: XRTK.Examples.Demos.HandController.TrackedPoseDemoStation.OnSourceLost(XRTK.EventDatum.Input.SourceStateEventData) - name: OnSourceLost(SourceStateEventData) - href: api/XRTK.Examples.Demos.HandController.TrackedPoseDemoStation.html#XRTK_Examples_Demos_HandController_TrackedPoseDemoStation_OnSourceLost_XRTK_EventDatum_Input_SourceStateEventData_ - commentId: M:XRTK.Examples.Demos.HandController.TrackedPoseDemoStation.OnSourceLost(XRTK.EventDatum.Input.SourceStateEventData) - fullName: XRTK.Examples.Demos.HandController.TrackedPoseDemoStation.OnSourceLost(XRTK.EventDatum.Input.SourceStateEventData) - nameWithType: TrackedPoseDemoStation.OnSourceLost(SourceStateEventData) -- uid: XRTK.Examples.Demos.HandController.TrackedPoseDemoStation.OnSourceLost* - name: OnSourceLost - href: api/XRTK.Examples.Demos.HandController.TrackedPoseDemoStation.html#XRTK_Examples_Demos_HandController_TrackedPoseDemoStation_OnSourceLost_ - commentId: Overload:XRTK.Examples.Demos.HandController.TrackedPoseDemoStation.OnSourceLost - isSpec: "True" - fullName: XRTK.Examples.Demos.HandController.TrackedPoseDemoStation.OnSourceLost - nameWithType: TrackedPoseDemoStation.OnSourceLost -- uid: XRTK.Examples.Demos.HandController.TrackedPoseDemoStation.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData{UnityEngine.Quaternion}) - name: OnSourcePoseChanged(SourcePoseEventData) - href: api/XRTK.Examples.Demos.HandController.TrackedPoseDemoStation.html#XRTK_Examples_Demos_HandController_TrackedPoseDemoStation_OnSourcePoseChanged_XRTK_EventDatum_Input_SourcePoseEventData_UnityEngine_Quaternion__ - commentId: M:XRTK.Examples.Demos.HandController.TrackedPoseDemoStation.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData{UnityEngine.Quaternion}) - name.vb: OnSourcePoseChanged(SourcePoseEventData(Of Quaternion)) - fullName: XRTK.Examples.Demos.HandController.TrackedPoseDemoStation.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData) - fullName.vb: XRTK.Examples.Demos.HandController.TrackedPoseDemoStation.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData(Of UnityEngine.Quaternion)) - nameWithType: TrackedPoseDemoStation.OnSourcePoseChanged(SourcePoseEventData) - nameWithType.vb: TrackedPoseDemoStation.OnSourcePoseChanged(SourcePoseEventData(Of Quaternion)) -- uid: XRTK.Examples.Demos.HandController.TrackedPoseDemoStation.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData{UnityEngine.Vector2}) - name: OnSourcePoseChanged(SourcePoseEventData) - href: api/XRTK.Examples.Demos.HandController.TrackedPoseDemoStation.html#XRTK_Examples_Demos_HandController_TrackedPoseDemoStation_OnSourcePoseChanged_XRTK_EventDatum_Input_SourcePoseEventData_UnityEngine_Vector2__ - commentId: M:XRTK.Examples.Demos.HandController.TrackedPoseDemoStation.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData{UnityEngine.Vector2}) - name.vb: OnSourcePoseChanged(SourcePoseEventData(Of Vector2)) - fullName: XRTK.Examples.Demos.HandController.TrackedPoseDemoStation.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData) - fullName.vb: XRTK.Examples.Demos.HandController.TrackedPoseDemoStation.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData(Of UnityEngine.Vector2)) - nameWithType: TrackedPoseDemoStation.OnSourcePoseChanged(SourcePoseEventData) - nameWithType.vb: TrackedPoseDemoStation.OnSourcePoseChanged(SourcePoseEventData(Of Vector2)) -- uid: XRTK.Examples.Demos.HandController.TrackedPoseDemoStation.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData{UnityEngine.Vector3}) - name: OnSourcePoseChanged(SourcePoseEventData) - href: api/XRTK.Examples.Demos.HandController.TrackedPoseDemoStation.html#XRTK_Examples_Demos_HandController_TrackedPoseDemoStation_OnSourcePoseChanged_XRTK_EventDatum_Input_SourcePoseEventData_UnityEngine_Vector3__ - commentId: M:XRTK.Examples.Demos.HandController.TrackedPoseDemoStation.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData{UnityEngine.Vector3}) - name.vb: OnSourcePoseChanged(SourcePoseEventData(Of Vector3)) - fullName: XRTK.Examples.Demos.HandController.TrackedPoseDemoStation.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData) - fullName.vb: XRTK.Examples.Demos.HandController.TrackedPoseDemoStation.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData(Of UnityEngine.Vector3)) - nameWithType: TrackedPoseDemoStation.OnSourcePoseChanged(SourcePoseEventData) - nameWithType.vb: TrackedPoseDemoStation.OnSourcePoseChanged(SourcePoseEventData(Of Vector3)) -- uid: XRTK.Examples.Demos.HandController.TrackedPoseDemoStation.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData{XRTK.Definitions.Devices.TrackingState}) - name: OnSourcePoseChanged(SourcePoseEventData) - href: api/XRTK.Examples.Demos.HandController.TrackedPoseDemoStation.html#XRTK_Examples_Demos_HandController_TrackedPoseDemoStation_OnSourcePoseChanged_XRTK_EventDatum_Input_SourcePoseEventData_XRTK_Definitions_Devices_TrackingState__ - commentId: M:XRTK.Examples.Demos.HandController.TrackedPoseDemoStation.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData{XRTK.Definitions.Devices.TrackingState}) - name.vb: OnSourcePoseChanged(SourcePoseEventData(Of TrackingState)) - fullName: XRTK.Examples.Demos.HandController.TrackedPoseDemoStation.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData) - fullName.vb: XRTK.Examples.Demos.HandController.TrackedPoseDemoStation.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData(Of XRTK.Definitions.Devices.TrackingState)) - nameWithType: TrackedPoseDemoStation.OnSourcePoseChanged(SourcePoseEventData) - nameWithType.vb: TrackedPoseDemoStation.OnSourcePoseChanged(SourcePoseEventData(Of TrackingState)) -- uid: XRTK.Examples.Demos.HandController.TrackedPoseDemoStation.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData{XRTK.Definitions.Utilities.MixedRealityPose}) - name: OnSourcePoseChanged(SourcePoseEventData) - href: api/XRTK.Examples.Demos.HandController.TrackedPoseDemoStation.html#XRTK_Examples_Demos_HandController_TrackedPoseDemoStation_OnSourcePoseChanged_XRTK_EventDatum_Input_SourcePoseEventData_XRTK_Definitions_Utilities_MixedRealityPose__ - commentId: M:XRTK.Examples.Demos.HandController.TrackedPoseDemoStation.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData{XRTK.Definitions.Utilities.MixedRealityPose}) - name.vb: OnSourcePoseChanged(SourcePoseEventData(Of MixedRealityPose)) - fullName: XRTK.Examples.Demos.HandController.TrackedPoseDemoStation.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData) - fullName.vb: XRTK.Examples.Demos.HandController.TrackedPoseDemoStation.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData(Of XRTK.Definitions.Utilities.MixedRealityPose)) - nameWithType: TrackedPoseDemoStation.OnSourcePoseChanged(SourcePoseEventData) - nameWithType.vb: TrackedPoseDemoStation.OnSourcePoseChanged(SourcePoseEventData(Of MixedRealityPose)) -- uid: XRTK.Examples.Demos.HandController.TrackedPoseDemoStation.OnSourcePoseChanged* - name: OnSourcePoseChanged - href: api/XRTK.Examples.Demos.HandController.TrackedPoseDemoStation.html#XRTK_Examples_Demos_HandController_TrackedPoseDemoStation_OnSourcePoseChanged_ - commentId: Overload:XRTK.Examples.Demos.HandController.TrackedPoseDemoStation.OnSourcePoseChanged - isSpec: "True" - fullName: XRTK.Examples.Demos.HandController.TrackedPoseDemoStation.OnSourcePoseChanged - nameWithType: TrackedPoseDemoStation.OnSourcePoseChanged -- uid: XRTK.Examples.Demos.HandController.UX - name: XRTK.Examples.Demos.HandController.UX - href: api/XRTK.Examples.Demos.HandController.UX.html - commentId: N:XRTK.Examples.Demos.HandController.UX - fullName: XRTK.Examples.Demos.HandController.UX - nameWithType: XRTK.Examples.Demos.HandController.UX -- uid: XRTK.Examples.Demos.HandController.UX.DemoButton - name: DemoButton - href: api/XRTK.Examples.Demos.HandController.UX.DemoButton.html - commentId: T:XRTK.Examples.Demos.HandController.UX.DemoButton - fullName: XRTK.Examples.Demos.HandController.UX.DemoButton - nameWithType: DemoButton -- uid: XRTK.Examples.Demos.HandController.UX.DemoButton.OnPointerClicked(XRTK.EventDatum.Input.MixedRealityPointerEventData) - name: OnPointerClicked(MixedRealityPointerEventData) - href: api/XRTK.Examples.Demos.HandController.UX.DemoButton.html#XRTK_Examples_Demos_HandController_UX_DemoButton_OnPointerClicked_XRTK_EventDatum_Input_MixedRealityPointerEventData_ - commentId: M:XRTK.Examples.Demos.HandController.UX.DemoButton.OnPointerClicked(XRTK.EventDatum.Input.MixedRealityPointerEventData) - fullName: XRTK.Examples.Demos.HandController.UX.DemoButton.OnPointerClicked(XRTK.EventDatum.Input.MixedRealityPointerEventData) - nameWithType: DemoButton.OnPointerClicked(MixedRealityPointerEventData) -- uid: XRTK.Examples.Demos.HandController.UX.DemoButton.OnPointerClicked* - name: OnPointerClicked - href: api/XRTK.Examples.Demos.HandController.UX.DemoButton.html#XRTK_Examples_Demos_HandController_UX_DemoButton_OnPointerClicked_ - commentId: Overload:XRTK.Examples.Demos.HandController.UX.DemoButton.OnPointerClicked - isSpec: "True" - fullName: XRTK.Examples.Demos.HandController.UX.DemoButton.OnPointerClicked - nameWithType: DemoButton.OnPointerClicked -- uid: XRTK.Examples.Demos.HandController.UX.DemoButton.OnPointerDown(XRTK.EventDatum.Input.MixedRealityPointerEventData) - name: OnPointerDown(MixedRealityPointerEventData) - href: api/XRTK.Examples.Demos.HandController.UX.DemoButton.html#XRTK_Examples_Demos_HandController_UX_DemoButton_OnPointerDown_XRTK_EventDatum_Input_MixedRealityPointerEventData_ - commentId: M:XRTK.Examples.Demos.HandController.UX.DemoButton.OnPointerDown(XRTK.EventDatum.Input.MixedRealityPointerEventData) - fullName: XRTK.Examples.Demos.HandController.UX.DemoButton.OnPointerDown(XRTK.EventDatum.Input.MixedRealityPointerEventData) - nameWithType: DemoButton.OnPointerDown(MixedRealityPointerEventData) -- uid: XRTK.Examples.Demos.HandController.UX.DemoButton.OnPointerDown* - name: OnPointerDown - href: api/XRTK.Examples.Demos.HandController.UX.DemoButton.html#XRTK_Examples_Demos_HandController_UX_DemoButton_OnPointerDown_ - commentId: Overload:XRTK.Examples.Demos.HandController.UX.DemoButton.OnPointerDown - isSpec: "True" - fullName: XRTK.Examples.Demos.HandController.UX.DemoButton.OnPointerDown - nameWithType: DemoButton.OnPointerDown -- uid: XRTK.Examples.Demos.HandController.UX.DemoButton.OnPointerUp(XRTK.EventDatum.Input.MixedRealityPointerEventData) - name: OnPointerUp(MixedRealityPointerEventData) - href: api/XRTK.Examples.Demos.HandController.UX.DemoButton.html#XRTK_Examples_Demos_HandController_UX_DemoButton_OnPointerUp_XRTK_EventDatum_Input_MixedRealityPointerEventData_ - commentId: M:XRTK.Examples.Demos.HandController.UX.DemoButton.OnPointerUp(XRTK.EventDatum.Input.MixedRealityPointerEventData) - fullName: XRTK.Examples.Demos.HandController.UX.DemoButton.OnPointerUp(XRTK.EventDatum.Input.MixedRealityPointerEventData) - nameWithType: DemoButton.OnPointerUp(MixedRealityPointerEventData) -- uid: XRTK.Examples.Demos.HandController.UX.DemoButton.OnPointerUp* - name: OnPointerUp - href: api/XRTK.Examples.Demos.HandController.UX.DemoButton.html#XRTK_Examples_Demos_HandController_UX_DemoButton_OnPointerUp_ - commentId: Overload:XRTK.Examples.Demos.HandController.UX.DemoButton.OnPointerUp - isSpec: "True" - fullName: XRTK.Examples.Demos.HandController.UX.DemoButton.OnPointerUp - nameWithType: DemoButton.OnPointerUp -- uid: XRTK.Examples.Demos.HandController.UX.DemoGrabbable - name: DemoGrabbable - href: api/XRTK.Examples.Demos.HandController.UX.DemoGrabbable.html - commentId: T:XRTK.Examples.Demos.HandController.UX.DemoGrabbable - fullName: XRTK.Examples.Demos.HandController.UX.DemoGrabbable - nameWithType: DemoGrabbable -- uid: XRTK.Examples.Demos.HandController.UX.DemoGrabbable.OnInputChanged(XRTK.EventDatum.Input.InputEventData{XRTK.Definitions.Utilities.MixedRealityPose}) - name: OnInputChanged(InputEventData) - href: api/XRTK.Examples.Demos.HandController.UX.DemoGrabbable.html#XRTK_Examples_Demos_HandController_UX_DemoGrabbable_OnInputChanged_XRTK_EventDatum_Input_InputEventData_XRTK_Definitions_Utilities_MixedRealityPose__ - commentId: M:XRTK.Examples.Demos.HandController.UX.DemoGrabbable.OnInputChanged(XRTK.EventDatum.Input.InputEventData{XRTK.Definitions.Utilities.MixedRealityPose}) - name.vb: OnInputChanged(InputEventData(Of MixedRealityPose)) - fullName: XRTK.Examples.Demos.HandController.UX.DemoGrabbable.OnInputChanged(XRTK.EventDatum.Input.InputEventData) - fullName.vb: XRTK.Examples.Demos.HandController.UX.DemoGrabbable.OnInputChanged(XRTK.EventDatum.Input.InputEventData(Of XRTK.Definitions.Utilities.MixedRealityPose)) - nameWithType: DemoGrabbable.OnInputChanged(InputEventData) - nameWithType.vb: DemoGrabbable.OnInputChanged(InputEventData(Of MixedRealityPose)) -- uid: XRTK.Examples.Demos.HandController.UX.DemoGrabbable.OnInputChanged* - name: OnInputChanged - href: api/XRTK.Examples.Demos.HandController.UX.DemoGrabbable.html#XRTK_Examples_Demos_HandController_UX_DemoGrabbable_OnInputChanged_ - commentId: Overload:XRTK.Examples.Demos.HandController.UX.DemoGrabbable.OnInputChanged - isSpec: "True" - fullName: XRTK.Examples.Demos.HandController.UX.DemoGrabbable.OnInputChanged - nameWithType: DemoGrabbable.OnInputChanged -- uid: XRTK.Examples.Demos.HandController.UX.DemoGrabbable.OnInputDown(XRTK.EventDatum.Input.InputEventData) - name: OnInputDown(InputEventData) - href: api/XRTK.Examples.Demos.HandController.UX.DemoGrabbable.html#XRTK_Examples_Demos_HandController_UX_DemoGrabbable_OnInputDown_XRTK_EventDatum_Input_InputEventData_ - commentId: M:XRTK.Examples.Demos.HandController.UX.DemoGrabbable.OnInputDown(XRTK.EventDatum.Input.InputEventData) - fullName: XRTK.Examples.Demos.HandController.UX.DemoGrabbable.OnInputDown(XRTK.EventDatum.Input.InputEventData) - nameWithType: DemoGrabbable.OnInputDown(InputEventData) -- uid: XRTK.Examples.Demos.HandController.UX.DemoGrabbable.OnInputDown* - name: OnInputDown - href: api/XRTK.Examples.Demos.HandController.UX.DemoGrabbable.html#XRTK_Examples_Demos_HandController_UX_DemoGrabbable_OnInputDown_ - commentId: Overload:XRTK.Examples.Demos.HandController.UX.DemoGrabbable.OnInputDown - isSpec: "True" - fullName: XRTK.Examples.Demos.HandController.UX.DemoGrabbable.OnInputDown - nameWithType: DemoGrabbable.OnInputDown -- uid: XRTK.Examples.Demos.HandController.UX.DemoGrabbable.OnInputUp(XRTK.EventDatum.Input.InputEventData) - name: OnInputUp(InputEventData) - href: api/XRTK.Examples.Demos.HandController.UX.DemoGrabbable.html#XRTK_Examples_Demos_HandController_UX_DemoGrabbable_OnInputUp_XRTK_EventDatum_Input_InputEventData_ - commentId: M:XRTK.Examples.Demos.HandController.UX.DemoGrabbable.OnInputUp(XRTK.EventDatum.Input.InputEventData) - fullName: XRTK.Examples.Demos.HandController.UX.DemoGrabbable.OnInputUp(XRTK.EventDatum.Input.InputEventData) - nameWithType: DemoGrabbable.OnInputUp(InputEventData) -- uid: XRTK.Examples.Demos.HandController.UX.DemoGrabbable.OnInputUp* - name: OnInputUp - href: api/XRTK.Examples.Demos.HandController.UX.DemoGrabbable.html#XRTK_Examples_Demos_HandController_UX_DemoGrabbable_OnInputUp_ - commentId: Overload:XRTK.Examples.Demos.HandController.UX.DemoGrabbable.OnInputUp - isSpec: "True" - fullName: XRTK.Examples.Demos.HandController.UX.DemoGrabbable.OnInputUp - nameWithType: DemoGrabbable.OnInputUp -- uid: XRTK.Examples.Demos.Input - name: XRTK.Examples.Demos.Input - href: api/XRTK.Examples.Demos.Input.html - commentId: N:XRTK.Examples.Demos.Input - fullName: XRTK.Examples.Demos.Input - nameWithType: XRTK.Examples.Demos.Input -- uid: XRTK.Examples.Demos.Input.DemoInputHandler - name: DemoInputHandler - href: api/XRTK.Examples.Demos.Input.DemoInputHandler.html - commentId: T:XRTK.Examples.Demos.Input.DemoInputHandler - fullName: XRTK.Examples.Demos.Input.DemoInputHandler - nameWithType: DemoInputHandler -- uid: XRTK.Examples.Demos.Input.DemoInputHandler.OnEnable - name: OnEnable() - href: api/XRTK.Examples.Demos.Input.DemoInputHandler.html#XRTK_Examples_Demos_Input_DemoInputHandler_OnEnable - commentId: M:XRTK.Examples.Demos.Input.DemoInputHandler.OnEnable - fullName: XRTK.Examples.Demos.Input.DemoInputHandler.OnEnable() - nameWithType: DemoInputHandler.OnEnable() -- uid: XRTK.Examples.Demos.Input.DemoInputHandler.OnEnable* - name: OnEnable - href: api/XRTK.Examples.Demos.Input.DemoInputHandler.html#XRTK_Examples_Demos_Input_DemoInputHandler_OnEnable_ - commentId: Overload:XRTK.Examples.Demos.Input.DemoInputHandler.OnEnable - isSpec: "True" - fullName: XRTK.Examples.Demos.Input.DemoInputHandler.OnEnable - nameWithType: DemoInputHandler.OnEnable -- uid: XRTK.Examples.Demos.Input.DemoInputHandler.Start - name: Start() - href: api/XRTK.Examples.Demos.Input.DemoInputHandler.html#XRTK_Examples_Demos_Input_DemoInputHandler_Start - commentId: M:XRTK.Examples.Demos.Input.DemoInputHandler.Start - fullName: XRTK.Examples.Demos.Input.DemoInputHandler.Start() - nameWithType: DemoInputHandler.Start() -- uid: XRTK.Examples.Demos.Input.DemoInputHandler.Start* - name: Start - href: api/XRTK.Examples.Demos.Input.DemoInputHandler.html#XRTK_Examples_Demos_Input_DemoInputHandler_Start_ - commentId: Overload:XRTK.Examples.Demos.Input.DemoInputHandler.Start - isSpec: "True" - fullName: XRTK.Examples.Demos.Input.DemoInputHandler.Start - nameWithType: DemoInputHandler.Start -- uid: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler#OnGestureCanceled(XRTK.EventDatum.Input.InputEventData) - name: IMixedRealityGestureHandler.OnGestureCanceled(InputEventData) - href: api/XRTK.Examples.Demos.Input.DemoInputHandler.html#XRTK_Examples_Demos_Input_DemoInputHandler_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityGestureHandler_OnGestureCanceled_XRTK_EventDatum_Input_InputEventData_ - commentId: M:XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler#OnGestureCanceled(XRTK.EventDatum.Input.InputEventData) - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCanceled(InputEventData) - fullName: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCanceled(XRTK.EventDatum.Input.InputEventData) - nameWithType: DemoInputHandler.IMixedRealityGestureHandler.OnGestureCanceled(InputEventData) - nameWithType.vb: DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCanceled(InputEventData) -- uid: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler#OnGestureCanceled* - name: IMixedRealityGestureHandler.OnGestureCanceled - href: api/XRTK.Examples.Demos.Input.DemoInputHandler.html#XRTK_Examples_Demos_Input_DemoInputHandler_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityGestureHandler_OnGestureCanceled_ - commentId: Overload:XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler#OnGestureCanceled - isSpec: "True" - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCanceled - fullName: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCanceled - nameWithType: DemoInputHandler.IMixedRealityGestureHandler.OnGestureCanceled - nameWithType.vb: DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCanceled -- uid: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler#OnGestureCompleted(XRTK.EventDatum.Input.InputEventData) - name: IMixedRealityGestureHandler.OnGestureCompleted(InputEventData) - href: api/XRTK.Examples.Demos.Input.DemoInputHandler.html#XRTK_Examples_Demos_Input_DemoInputHandler_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityGestureHandler_OnGestureCompleted_XRTK_EventDatum_Input_InputEventData_ - commentId: M:XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler#OnGestureCompleted(XRTK.EventDatum.Input.InputEventData) - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted(InputEventData) - fullName: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted(XRTK.EventDatum.Input.InputEventData) - nameWithType: DemoInputHandler.IMixedRealityGestureHandler.OnGestureCompleted(InputEventData) - nameWithType.vb: DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted(InputEventData) -- uid: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler#OnGestureCompleted* - name: IMixedRealityGestureHandler.OnGestureCompleted - href: api/XRTK.Examples.Demos.Input.DemoInputHandler.html#XRTK_Examples_Demos_Input_DemoInputHandler_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityGestureHandler_OnGestureCompleted_ - commentId: Overload:XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler#OnGestureCompleted - isSpec: "True" - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted - fullName: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted - nameWithType: DemoInputHandler.IMixedRealityGestureHandler.OnGestureCompleted - nameWithType.vb: DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted -- uid: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler#OnGestureStarted(XRTK.EventDatum.Input.InputEventData) - name: IMixedRealityGestureHandler.OnGestureStarted(InputEventData) - href: api/XRTK.Examples.Demos.Input.DemoInputHandler.html#XRTK_Examples_Demos_Input_DemoInputHandler_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityGestureHandler_OnGestureStarted_XRTK_EventDatum_Input_InputEventData_ - commentId: M:XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler#OnGestureStarted(XRTK.EventDatum.Input.InputEventData) - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureStarted(InputEventData) - fullName: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureStarted(XRTK.EventDatum.Input.InputEventData) - nameWithType: DemoInputHandler.IMixedRealityGestureHandler.OnGestureStarted(InputEventData) - nameWithType.vb: DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureStarted(InputEventData) -- uid: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler#OnGestureStarted* - name: IMixedRealityGestureHandler.OnGestureStarted - href: api/XRTK.Examples.Demos.Input.DemoInputHandler.html#XRTK_Examples_Demos_Input_DemoInputHandler_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityGestureHandler_OnGestureStarted_ - commentId: Overload:XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler#OnGestureStarted - isSpec: "True" - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureStarted - fullName: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureStarted - nameWithType: DemoInputHandler.IMixedRealityGestureHandler.OnGestureStarted - nameWithType.vb: DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureStarted -- uid: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler#OnGestureUpdated(XRTK.EventDatum.Input.InputEventData) - name: IMixedRealityGestureHandler.OnGestureUpdated(InputEventData) - href: api/XRTK.Examples.Demos.Input.DemoInputHandler.html#XRTK_Examples_Demos_Input_DemoInputHandler_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityGestureHandler_OnGestureUpdated_XRTK_EventDatum_Input_InputEventData_ - commentId: M:XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler#OnGestureUpdated(XRTK.EventDatum.Input.InputEventData) - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated(InputEventData) - fullName: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated(XRTK.EventDatum.Input.InputEventData) - nameWithType: DemoInputHandler.IMixedRealityGestureHandler.OnGestureUpdated(InputEventData) - nameWithType.vb: DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated(InputEventData) -- uid: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler#OnGestureUpdated* - name: IMixedRealityGestureHandler.OnGestureUpdated - href: api/XRTK.Examples.Demos.Input.DemoInputHandler.html#XRTK_Examples_Demos_Input_DemoInputHandler_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityGestureHandler_OnGestureUpdated_ - commentId: Overload:XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler#OnGestureUpdated - isSpec: "True" - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated - fullName: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated - nameWithType: DemoInputHandler.IMixedRealityGestureHandler.OnGestureUpdated - nameWithType.vb: DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated -- uid: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler{UnityEngine#Quaternion}#OnGestureCompleted(XRTK.EventDatum.Input.InputEventData{UnityEngine.Quaternion}) - name: IMixedRealityGestureHandler.OnGestureCompleted(InputEventData) - href: api/XRTK.Examples.Demos.Input.DemoInputHandler.html#XRTK_Examples_Demos_Input_DemoInputHandler_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityGestureHandler_UnityEngine_Quaternion__OnGestureCompleted_XRTK_EventDatum_Input_InputEventData_UnityEngine_Quaternion__ - commentId: M:XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler{UnityEngine#Quaternion}#OnGestureCompleted(XRTK.EventDatum.Input.InputEventData{UnityEngine.Quaternion}) - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted(InputEventData(Of Quaternion)) - fullName: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted(XRTK.EventDatum.Input.InputEventData) - fullName.vb: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted(XRTK.EventDatum.Input.InputEventData(Of UnityEngine.Quaternion)) - nameWithType: DemoInputHandler.IMixedRealityGestureHandler.OnGestureCompleted(InputEventData) - nameWithType.vb: DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted(InputEventData(Of Quaternion)) -- uid: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler{UnityEngine#Quaternion}#OnGestureCompleted* - name: IMixedRealityGestureHandler.OnGestureCompleted - href: api/XRTK.Examples.Demos.Input.DemoInputHandler.html#XRTK_Examples_Demos_Input_DemoInputHandler_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityGestureHandler_UnityEngine_Quaternion__OnGestureCompleted_ - commentId: Overload:XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler{UnityEngine#Quaternion}#OnGestureCompleted - isSpec: "True" - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted - fullName: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted - nameWithType: DemoInputHandler.IMixedRealityGestureHandler.OnGestureCompleted - nameWithType.vb: DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted -- uid: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler{UnityEngine#Quaternion}#OnGestureUpdated(XRTK.EventDatum.Input.InputEventData{UnityEngine.Quaternion}) - name: IMixedRealityGestureHandler.OnGestureUpdated(InputEventData) - href: api/XRTK.Examples.Demos.Input.DemoInputHandler.html#XRTK_Examples_Demos_Input_DemoInputHandler_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityGestureHandler_UnityEngine_Quaternion__OnGestureUpdated_XRTK_EventDatum_Input_InputEventData_UnityEngine_Quaternion__ - commentId: M:XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler{UnityEngine#Quaternion}#OnGestureUpdated(XRTK.EventDatum.Input.InputEventData{UnityEngine.Quaternion}) - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated(InputEventData(Of Quaternion)) - fullName: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated(XRTK.EventDatum.Input.InputEventData) - fullName.vb: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated(XRTK.EventDatum.Input.InputEventData(Of UnityEngine.Quaternion)) - nameWithType: DemoInputHandler.IMixedRealityGestureHandler.OnGestureUpdated(InputEventData) - nameWithType.vb: DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated(InputEventData(Of Quaternion)) -- uid: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler{UnityEngine#Quaternion}#OnGestureUpdated* - name: IMixedRealityGestureHandler.OnGestureUpdated - href: api/XRTK.Examples.Demos.Input.DemoInputHandler.html#XRTK_Examples_Demos_Input_DemoInputHandler_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityGestureHandler_UnityEngine_Quaternion__OnGestureUpdated_ - commentId: Overload:XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler{UnityEngine#Quaternion}#OnGestureUpdated - isSpec: "True" - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated - fullName: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated - nameWithType: DemoInputHandler.IMixedRealityGestureHandler.OnGestureUpdated - nameWithType.vb: DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated -- uid: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler{UnityEngine#Vector3}#OnGestureCompleted(XRTK.EventDatum.Input.InputEventData{UnityEngine.Vector3}) - name: IMixedRealityGestureHandler.OnGestureCompleted(InputEventData) - href: api/XRTK.Examples.Demos.Input.DemoInputHandler.html#XRTK_Examples_Demos_Input_DemoInputHandler_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityGestureHandler_UnityEngine_Vector3__OnGestureCompleted_XRTK_EventDatum_Input_InputEventData_UnityEngine_Vector3__ - commentId: M:XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler{UnityEngine#Vector3}#OnGestureCompleted(XRTK.EventDatum.Input.InputEventData{UnityEngine.Vector3}) - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted(InputEventData(Of Vector3)) - fullName: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted(XRTK.EventDatum.Input.InputEventData) - fullName.vb: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted(XRTK.EventDatum.Input.InputEventData(Of UnityEngine.Vector3)) - nameWithType: DemoInputHandler.IMixedRealityGestureHandler.OnGestureCompleted(InputEventData) - nameWithType.vb: DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted(InputEventData(Of Vector3)) -- uid: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler{UnityEngine#Vector3}#OnGestureCompleted* - name: IMixedRealityGestureHandler.OnGestureCompleted - href: api/XRTK.Examples.Demos.Input.DemoInputHandler.html#XRTK_Examples_Demos_Input_DemoInputHandler_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityGestureHandler_UnityEngine_Vector3__OnGestureCompleted_ - commentId: Overload:XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler{UnityEngine#Vector3}#OnGestureCompleted - isSpec: "True" - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted - fullName: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted - nameWithType: DemoInputHandler.IMixedRealityGestureHandler.OnGestureCompleted - nameWithType.vb: DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted -- uid: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler{UnityEngine#Vector3}#OnGestureUpdated(XRTK.EventDatum.Input.InputEventData{UnityEngine.Vector3}) - name: IMixedRealityGestureHandler.OnGestureUpdated(InputEventData) - href: api/XRTK.Examples.Demos.Input.DemoInputHandler.html#XRTK_Examples_Demos_Input_DemoInputHandler_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityGestureHandler_UnityEngine_Vector3__OnGestureUpdated_XRTK_EventDatum_Input_InputEventData_UnityEngine_Vector3__ - commentId: M:XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler{UnityEngine#Vector3}#OnGestureUpdated(XRTK.EventDatum.Input.InputEventData{UnityEngine.Vector3}) - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated(InputEventData(Of Vector3)) - fullName: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated(XRTK.EventDatum.Input.InputEventData) - fullName.vb: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated(XRTK.EventDatum.Input.InputEventData(Of UnityEngine.Vector3)) - nameWithType: DemoInputHandler.IMixedRealityGestureHandler.OnGestureUpdated(InputEventData) - nameWithType.vb: DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated(InputEventData(Of Vector3)) -- uid: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler{UnityEngine#Vector3}#OnGestureUpdated* - name: IMixedRealityGestureHandler.OnGestureUpdated - href: api/XRTK.Examples.Demos.Input.DemoInputHandler.html#XRTK_Examples_Demos_Input_DemoInputHandler_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityGestureHandler_UnityEngine_Vector3__OnGestureUpdated_ - commentId: Overload:XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler{UnityEngine#Vector3}#OnGestureUpdated - isSpec: "True" - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated - fullName: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated - nameWithType: DemoInputHandler.IMixedRealityGestureHandler.OnGestureUpdated - nameWithType.vb: DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated -- uid: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler{XRTK#Definitions#Utilities#MixedRealityPose}#OnGestureCompleted(XRTK.EventDatum.Input.InputEventData{XRTK.Definitions.Utilities.MixedRealityPose}) - name: IMixedRealityGestureHandler.OnGestureCompleted(InputEventData) - href: api/XRTK.Examples.Demos.Input.DemoInputHandler.html#XRTK_Examples_Demos_Input_DemoInputHandler_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityGestureHandler_XRTK_Definitions_Utilities_MixedRealityPose__OnGestureCompleted_XRTK_EventDatum_Input_InputEventData_XRTK_Definitions_Utilities_MixedRealityPose__ - commentId: M:XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler{XRTK#Definitions#Utilities#MixedRealityPose}#OnGestureCompleted(XRTK.EventDatum.Input.InputEventData{XRTK.Definitions.Utilities.MixedRealityPose}) - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted(InputEventData(Of MixedRealityPose)) - fullName: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted(XRTK.EventDatum.Input.InputEventData) - fullName.vb: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted(XRTK.EventDatum.Input.InputEventData(Of XRTK.Definitions.Utilities.MixedRealityPose)) - nameWithType: DemoInputHandler.IMixedRealityGestureHandler.OnGestureCompleted(InputEventData) - nameWithType.vb: DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted(InputEventData(Of MixedRealityPose)) -- uid: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler{XRTK#Definitions#Utilities#MixedRealityPose}#OnGestureCompleted* - name: IMixedRealityGestureHandler.OnGestureCompleted - href: api/XRTK.Examples.Demos.Input.DemoInputHandler.html#XRTK_Examples_Demos_Input_DemoInputHandler_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityGestureHandler_XRTK_Definitions_Utilities_MixedRealityPose__OnGestureCompleted_ - commentId: Overload:XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler{XRTK#Definitions#Utilities#MixedRealityPose}#OnGestureCompleted - isSpec: "True" - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted - fullName: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted - nameWithType: DemoInputHandler.IMixedRealityGestureHandler.OnGestureCompleted - nameWithType.vb: DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted -- uid: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler{XRTK#Definitions#Utilities#MixedRealityPose}#OnGestureUpdated(XRTK.EventDatum.Input.InputEventData{XRTK.Definitions.Utilities.MixedRealityPose}) - name: IMixedRealityGestureHandler.OnGestureUpdated(InputEventData) - href: api/XRTK.Examples.Demos.Input.DemoInputHandler.html#XRTK_Examples_Demos_Input_DemoInputHandler_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityGestureHandler_XRTK_Definitions_Utilities_MixedRealityPose__OnGestureUpdated_XRTK_EventDatum_Input_InputEventData_XRTK_Definitions_Utilities_MixedRealityPose__ - commentId: M:XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler{XRTK#Definitions#Utilities#MixedRealityPose}#OnGestureUpdated(XRTK.EventDatum.Input.InputEventData{XRTK.Definitions.Utilities.MixedRealityPose}) - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated(InputEventData(Of MixedRealityPose)) - fullName: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated(XRTK.EventDatum.Input.InputEventData) - fullName.vb: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated(XRTK.EventDatum.Input.InputEventData(Of XRTK.Definitions.Utilities.MixedRealityPose)) - nameWithType: DemoInputHandler.IMixedRealityGestureHandler.OnGestureUpdated(InputEventData) - nameWithType.vb: DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated(InputEventData(Of MixedRealityPose)) -- uid: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler{XRTK#Definitions#Utilities#MixedRealityPose}#OnGestureUpdated* - name: IMixedRealityGestureHandler.OnGestureUpdated - href: api/XRTK.Examples.Demos.Input.DemoInputHandler.html#XRTK_Examples_Demos_Input_DemoInputHandler_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityGestureHandler_XRTK_Definitions_Utilities_MixedRealityPose__OnGestureUpdated_ - commentId: Overload:XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler{XRTK#Definitions#Utilities#MixedRealityPose}#OnGestureUpdated - isSpec: "True" - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated - fullName: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated - nameWithType: DemoInputHandler.IMixedRealityGestureHandler.OnGestureUpdated - nameWithType.vb: DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated -- uid: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler#OnInputDown(XRTK.EventDatum.Input.InputEventData) - name: IMixedRealityInputHandler.OnInputDown(InputEventData) - href: api/XRTK.Examples.Demos.Input.DemoInputHandler.html#XRTK_Examples_Demos_Input_DemoInputHandler_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityInputHandler_OnInputDown_XRTK_EventDatum_Input_InputEventData_ - commentId: M:XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler#OnInputDown(XRTK.EventDatum.Input.InputEventData) - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputDown(InputEventData) - fullName: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputDown(XRTK.EventDatum.Input.InputEventData) - nameWithType: DemoInputHandler.IMixedRealityInputHandler.OnInputDown(InputEventData) - nameWithType.vb: DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputDown(InputEventData) -- uid: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler#OnInputDown* - name: IMixedRealityInputHandler.OnInputDown - href: api/XRTK.Examples.Demos.Input.DemoInputHandler.html#XRTK_Examples_Demos_Input_DemoInputHandler_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityInputHandler_OnInputDown_ - commentId: Overload:XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler#OnInputDown - isSpec: "True" - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputDown - fullName: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputDown - nameWithType: DemoInputHandler.IMixedRealityInputHandler.OnInputDown - nameWithType.vb: DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputDown -- uid: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler#OnInputUp(XRTK.EventDatum.Input.InputEventData) - name: IMixedRealityInputHandler.OnInputUp(InputEventData) - href: api/XRTK.Examples.Demos.Input.DemoInputHandler.html#XRTK_Examples_Demos_Input_DemoInputHandler_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityInputHandler_OnInputUp_XRTK_EventDatum_Input_InputEventData_ - commentId: M:XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler#OnInputUp(XRTK.EventDatum.Input.InputEventData) - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputUp(InputEventData) - fullName: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputUp(XRTK.EventDatum.Input.InputEventData) - nameWithType: DemoInputHandler.IMixedRealityInputHandler.OnInputUp(InputEventData) - nameWithType.vb: DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputUp(InputEventData) -- uid: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler#OnInputUp* - name: IMixedRealityInputHandler.OnInputUp - href: api/XRTK.Examples.Demos.Input.DemoInputHandler.html#XRTK_Examples_Demos_Input_DemoInputHandler_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityInputHandler_OnInputUp_ - commentId: Overload:XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler#OnInputUp - isSpec: "True" - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputUp - fullName: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputUp - nameWithType: DemoInputHandler.IMixedRealityInputHandler.OnInputUp - nameWithType.vb: DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputUp -- uid: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler{System#Single}#OnInputChanged(XRTK.EventDatum.Input.InputEventData{System.Single}) - name: IMixedRealityInputHandler.OnInputChanged(InputEventData) - href: api/XRTK.Examples.Demos.Input.DemoInputHandler.html#XRTK_Examples_Demos_Input_DemoInputHandler_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityInputHandler_System_Single__OnInputChanged_XRTK_EventDatum_Input_InputEventData_System_Single__ - commentId: M:XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler{System#Single}#OnInputChanged(XRTK.EventDatum.Input.InputEventData{System.Single}) - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputChanged(InputEventData(Of Single)) - fullName: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputChanged(XRTK.EventDatum.Input.InputEventData) - fullName.vb: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputChanged(XRTK.EventDatum.Input.InputEventData(Of System.Single)) - nameWithType: DemoInputHandler.IMixedRealityInputHandler.OnInputChanged(InputEventData) - nameWithType.vb: DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputChanged(InputEventData(Of Single)) -- uid: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler{System#Single}#OnInputChanged* - name: IMixedRealityInputHandler.OnInputChanged - href: api/XRTK.Examples.Demos.Input.DemoInputHandler.html#XRTK_Examples_Demos_Input_DemoInputHandler_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityInputHandler_System_Single__OnInputChanged_ - commentId: Overload:XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler{System#Single}#OnInputChanged - isSpec: "True" - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputChanged - fullName: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputChanged - nameWithType: DemoInputHandler.IMixedRealityInputHandler.OnInputChanged - nameWithType.vb: DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputChanged -- uid: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler{UnityEngine#Quaternion}#OnInputChanged(XRTK.EventDatum.Input.InputEventData{UnityEngine.Quaternion}) - name: IMixedRealityInputHandler.OnInputChanged(InputEventData) - href: api/XRTK.Examples.Demos.Input.DemoInputHandler.html#XRTK_Examples_Demos_Input_DemoInputHandler_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityInputHandler_UnityEngine_Quaternion__OnInputChanged_XRTK_EventDatum_Input_InputEventData_UnityEngine_Quaternion__ - commentId: M:XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler{UnityEngine#Quaternion}#OnInputChanged(XRTK.EventDatum.Input.InputEventData{UnityEngine.Quaternion}) - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputChanged(InputEventData(Of Quaternion)) - fullName: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputChanged(XRTK.EventDatum.Input.InputEventData) - fullName.vb: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputChanged(XRTK.EventDatum.Input.InputEventData(Of UnityEngine.Quaternion)) - nameWithType: DemoInputHandler.IMixedRealityInputHandler.OnInputChanged(InputEventData) - nameWithType.vb: DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputChanged(InputEventData(Of Quaternion)) -- uid: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler{UnityEngine#Quaternion}#OnInputChanged* - name: IMixedRealityInputHandler.OnInputChanged - href: api/XRTK.Examples.Demos.Input.DemoInputHandler.html#XRTK_Examples_Demos_Input_DemoInputHandler_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityInputHandler_UnityEngine_Quaternion__OnInputChanged_ - commentId: Overload:XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler{UnityEngine#Quaternion}#OnInputChanged - isSpec: "True" - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputChanged - fullName: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputChanged - nameWithType: DemoInputHandler.IMixedRealityInputHandler.OnInputChanged - nameWithType.vb: DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputChanged -- uid: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler{UnityEngine#Vector2}#OnInputChanged(XRTK.EventDatum.Input.InputEventData{UnityEngine.Vector2}) - name: IMixedRealityInputHandler.OnInputChanged(InputEventData) - href: api/XRTK.Examples.Demos.Input.DemoInputHandler.html#XRTK_Examples_Demos_Input_DemoInputHandler_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityInputHandler_UnityEngine_Vector2__OnInputChanged_XRTK_EventDatum_Input_InputEventData_UnityEngine_Vector2__ - commentId: M:XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler{UnityEngine#Vector2}#OnInputChanged(XRTK.EventDatum.Input.InputEventData{UnityEngine.Vector2}) - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputChanged(InputEventData(Of Vector2)) - fullName: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputChanged(XRTK.EventDatum.Input.InputEventData) - fullName.vb: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputChanged(XRTK.EventDatum.Input.InputEventData(Of UnityEngine.Vector2)) - nameWithType: DemoInputHandler.IMixedRealityInputHandler.OnInputChanged(InputEventData) - nameWithType.vb: DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputChanged(InputEventData(Of Vector2)) -- uid: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler{UnityEngine#Vector2}#OnInputChanged* - name: IMixedRealityInputHandler.OnInputChanged - href: api/XRTK.Examples.Demos.Input.DemoInputHandler.html#XRTK_Examples_Demos_Input_DemoInputHandler_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityInputHandler_UnityEngine_Vector2__OnInputChanged_ - commentId: Overload:XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler{UnityEngine#Vector2}#OnInputChanged - isSpec: "True" - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputChanged - fullName: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputChanged - nameWithType: DemoInputHandler.IMixedRealityInputHandler.OnInputChanged - nameWithType.vb: DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputChanged -- uid: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler{UnityEngine#Vector3}#OnInputChanged(XRTK.EventDatum.Input.InputEventData{UnityEngine.Vector3}) - name: IMixedRealityInputHandler.OnInputChanged(InputEventData) - href: api/XRTK.Examples.Demos.Input.DemoInputHandler.html#XRTK_Examples_Demos_Input_DemoInputHandler_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityInputHandler_UnityEngine_Vector3__OnInputChanged_XRTK_EventDatum_Input_InputEventData_UnityEngine_Vector3__ - commentId: M:XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler{UnityEngine#Vector3}#OnInputChanged(XRTK.EventDatum.Input.InputEventData{UnityEngine.Vector3}) - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputChanged(InputEventData(Of Vector3)) - fullName: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputChanged(XRTK.EventDatum.Input.InputEventData) - fullName.vb: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputChanged(XRTK.EventDatum.Input.InputEventData(Of UnityEngine.Vector3)) - nameWithType: DemoInputHandler.IMixedRealityInputHandler.OnInputChanged(InputEventData) - nameWithType.vb: DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputChanged(InputEventData(Of Vector3)) -- uid: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler{UnityEngine#Vector3}#OnInputChanged* - name: IMixedRealityInputHandler.OnInputChanged - href: api/XRTK.Examples.Demos.Input.DemoInputHandler.html#XRTK_Examples_Demos_Input_DemoInputHandler_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityInputHandler_UnityEngine_Vector3__OnInputChanged_ - commentId: Overload:XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler{UnityEngine#Vector3}#OnInputChanged - isSpec: "True" - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputChanged - fullName: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputChanged - nameWithType: DemoInputHandler.IMixedRealityInputHandler.OnInputChanged - nameWithType.vb: DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputChanged -- uid: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler{XRTK#Definitions#Utilities#MixedRealityPose}#OnInputChanged(XRTK.EventDatum.Input.InputEventData{XRTK.Definitions.Utilities.MixedRealityPose}) - name: IMixedRealityInputHandler.OnInputChanged(InputEventData) - href: api/XRTK.Examples.Demos.Input.DemoInputHandler.html#XRTK_Examples_Demos_Input_DemoInputHandler_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityInputHandler_XRTK_Definitions_Utilities_MixedRealityPose__OnInputChanged_XRTK_EventDatum_Input_InputEventData_XRTK_Definitions_Utilities_MixedRealityPose__ - commentId: M:XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler{XRTK#Definitions#Utilities#MixedRealityPose}#OnInputChanged(XRTK.EventDatum.Input.InputEventData{XRTK.Definitions.Utilities.MixedRealityPose}) - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputChanged(InputEventData(Of MixedRealityPose)) - fullName: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputChanged(XRTK.EventDatum.Input.InputEventData) - fullName.vb: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputChanged(XRTK.EventDatum.Input.InputEventData(Of XRTK.Definitions.Utilities.MixedRealityPose)) - nameWithType: DemoInputHandler.IMixedRealityInputHandler.OnInputChanged(InputEventData) - nameWithType.vb: DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputChanged(InputEventData(Of MixedRealityPose)) -- uid: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler{XRTK#Definitions#Utilities#MixedRealityPose}#OnInputChanged* - name: IMixedRealityInputHandler.OnInputChanged - href: api/XRTK.Examples.Demos.Input.DemoInputHandler.html#XRTK_Examples_Demos_Input_DemoInputHandler_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityInputHandler_XRTK_Definitions_Utilities_MixedRealityPose__OnInputChanged_ - commentId: Overload:XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler{XRTK#Definitions#Utilities#MixedRealityPose}#OnInputChanged - isSpec: "True" - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputChanged - fullName: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputChanged - nameWithType: DemoInputHandler.IMixedRealityInputHandler.OnInputChanged - nameWithType.vb: DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputChanged -- uid: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealitySourceStateHandler#OnSourceDetected(XRTK.EventDatum.Input.SourceStateEventData) - name: IMixedRealitySourceStateHandler.OnSourceDetected(SourceStateEventData) - href: api/XRTK.Examples.Demos.Input.DemoInputHandler.html#XRTK_Examples_Demos_Input_DemoInputHandler_XRTK_Interfaces_InputSystem_Handlers_IMixedRealitySourceStateHandler_OnSourceDetected_XRTK_EventDatum_Input_SourceStateEventData_ - commentId: M:XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealitySourceStateHandler#OnSourceDetected(XRTK.EventDatum.Input.SourceStateEventData) - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourceStateHandler.OnSourceDetected(SourceStateEventData) - fullName: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourceStateHandler.OnSourceDetected(XRTK.EventDatum.Input.SourceStateEventData) - nameWithType: DemoInputHandler.IMixedRealitySourceStateHandler.OnSourceDetected(SourceStateEventData) - nameWithType.vb: DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourceStateHandler.OnSourceDetected(SourceStateEventData) -- uid: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealitySourceStateHandler#OnSourceDetected* - name: IMixedRealitySourceStateHandler.OnSourceDetected - href: api/XRTK.Examples.Demos.Input.DemoInputHandler.html#XRTK_Examples_Demos_Input_DemoInputHandler_XRTK_Interfaces_InputSystem_Handlers_IMixedRealitySourceStateHandler_OnSourceDetected_ - commentId: Overload:XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealitySourceStateHandler#OnSourceDetected - isSpec: "True" - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourceStateHandler.OnSourceDetected - fullName: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourceStateHandler.OnSourceDetected - nameWithType: DemoInputHandler.IMixedRealitySourceStateHandler.OnSourceDetected - nameWithType.vb: DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourceStateHandler.OnSourceDetected -- uid: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealitySourceStateHandler#OnSourceLost(XRTK.EventDatum.Input.SourceStateEventData) - name: IMixedRealitySourceStateHandler.OnSourceLost(SourceStateEventData) - href: api/XRTK.Examples.Demos.Input.DemoInputHandler.html#XRTK_Examples_Demos_Input_DemoInputHandler_XRTK_Interfaces_InputSystem_Handlers_IMixedRealitySourceStateHandler_OnSourceLost_XRTK_EventDatum_Input_SourceStateEventData_ - commentId: M:XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealitySourceStateHandler#OnSourceLost(XRTK.EventDatum.Input.SourceStateEventData) - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourceStateHandler.OnSourceLost(SourceStateEventData) - fullName: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourceStateHandler.OnSourceLost(XRTK.EventDatum.Input.SourceStateEventData) - nameWithType: DemoInputHandler.IMixedRealitySourceStateHandler.OnSourceLost(SourceStateEventData) - nameWithType.vb: DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourceStateHandler.OnSourceLost(SourceStateEventData) -- uid: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealitySourceStateHandler#OnSourceLost* - name: IMixedRealitySourceStateHandler.OnSourceLost - href: api/XRTK.Examples.Demos.Input.DemoInputHandler.html#XRTK_Examples_Demos_Input_DemoInputHandler_XRTK_Interfaces_InputSystem_Handlers_IMixedRealitySourceStateHandler_OnSourceLost_ - commentId: Overload:XRTK.Examples.Demos.Input.DemoInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealitySourceStateHandler#OnSourceLost - isSpec: "True" - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourceStateHandler.OnSourceLost - fullName: XRTK.Examples.Demos.Input.DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourceStateHandler.OnSourceLost - nameWithType: DemoInputHandler.IMixedRealitySourceStateHandler.OnSourceLost - nameWithType.vb: DemoInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourceStateHandler.OnSourceLost -- uid: XRTK.Examples.Demos.LoFiFilterSelection - name: LoFiFilterSelection - href: api/XRTK.Examples.Demos.LoFiFilterSelection.html - commentId: T:XRTK.Examples.Demos.LoFiFilterSelection - fullName: XRTK.Examples.Demos.LoFiFilterSelection - nameWithType: LoFiFilterSelection -- uid: XRTK.Examples.Demos.LoFiFilterSelection.OnPointerClicked(XRTK.EventDatum.Input.MixedRealityPointerEventData) - name: OnPointerClicked(MixedRealityPointerEventData) - href: api/XRTK.Examples.Demos.LoFiFilterSelection.html#XRTK_Examples_Demos_LoFiFilterSelection_OnPointerClicked_XRTK_EventDatum_Input_MixedRealityPointerEventData_ - commentId: M:XRTK.Examples.Demos.LoFiFilterSelection.OnPointerClicked(XRTK.EventDatum.Input.MixedRealityPointerEventData) - fullName: XRTK.Examples.Demos.LoFiFilterSelection.OnPointerClicked(XRTK.EventDatum.Input.MixedRealityPointerEventData) - nameWithType: LoFiFilterSelection.OnPointerClicked(MixedRealityPointerEventData) -- uid: XRTK.Examples.Demos.LoFiFilterSelection.OnPointerClicked* - name: OnPointerClicked - href: api/XRTK.Examples.Demos.LoFiFilterSelection.html#XRTK_Examples_Demos_LoFiFilterSelection_OnPointerClicked_ - commentId: Overload:XRTK.Examples.Demos.LoFiFilterSelection.OnPointerClicked - isSpec: "True" - fullName: XRTK.Examples.Demos.LoFiFilterSelection.OnPointerClicked - nameWithType: LoFiFilterSelection.OnPointerClicked -- uid: XRTK.Examples.Demos.LoFiFilterSelection.OnPointerDown(XRTK.EventDatum.Input.MixedRealityPointerEventData) - name: OnPointerDown(MixedRealityPointerEventData) - href: api/XRTK.Examples.Demos.LoFiFilterSelection.html#XRTK_Examples_Demos_LoFiFilterSelection_OnPointerDown_XRTK_EventDatum_Input_MixedRealityPointerEventData_ - commentId: M:XRTK.Examples.Demos.LoFiFilterSelection.OnPointerDown(XRTK.EventDatum.Input.MixedRealityPointerEventData) - fullName: XRTK.Examples.Demos.LoFiFilterSelection.OnPointerDown(XRTK.EventDatum.Input.MixedRealityPointerEventData) - nameWithType: LoFiFilterSelection.OnPointerDown(MixedRealityPointerEventData) -- uid: XRTK.Examples.Demos.LoFiFilterSelection.OnPointerDown* - name: OnPointerDown - href: api/XRTK.Examples.Demos.LoFiFilterSelection.html#XRTK_Examples_Demos_LoFiFilterSelection_OnPointerDown_ - commentId: Overload:XRTK.Examples.Demos.LoFiFilterSelection.OnPointerDown - isSpec: "True" - fullName: XRTK.Examples.Demos.LoFiFilterSelection.OnPointerDown - nameWithType: LoFiFilterSelection.OnPointerDown -- uid: XRTK.Examples.Demos.LoFiFilterSelection.OnPointerUp(XRTK.EventDatum.Input.MixedRealityPointerEventData) - name: OnPointerUp(MixedRealityPointerEventData) - href: api/XRTK.Examples.Demos.LoFiFilterSelection.html#XRTK_Examples_Demos_LoFiFilterSelection_OnPointerUp_XRTK_EventDatum_Input_MixedRealityPointerEventData_ - commentId: M:XRTK.Examples.Demos.LoFiFilterSelection.OnPointerUp(XRTK.EventDatum.Input.MixedRealityPointerEventData) - fullName: XRTK.Examples.Demos.LoFiFilterSelection.OnPointerUp(XRTK.EventDatum.Input.MixedRealityPointerEventData) - nameWithType: LoFiFilterSelection.OnPointerUp(MixedRealityPointerEventData) -- uid: XRTK.Examples.Demos.LoFiFilterSelection.OnPointerUp* - name: OnPointerUp - href: api/XRTK.Examples.Demos.LoFiFilterSelection.html#XRTK_Examples_Demos_LoFiFilterSelection_OnPointerUp_ - commentId: Overload:XRTK.Examples.Demos.LoFiFilterSelection.OnPointerUp - isSpec: "True" - fullName: XRTK.Examples.Demos.LoFiFilterSelection.OnPointerUp - nameWithType: LoFiFilterSelection.OnPointerUp -- uid: XRTK.Examples.Demos.StandardShader - name: XRTK.Examples.Demos.StandardShader - href: api/XRTK.Examples.Demos.StandardShader.html - commentId: N:XRTK.Examples.Demos.StandardShader - fullName: XRTK.Examples.Demos.StandardShader - nameWithType: XRTK.Examples.Demos.StandardShader -- uid: XRTK.Examples.Demos.StandardShader.MaterialMatrix - name: MaterialMatrix - href: api/XRTK.Examples.Demos.StandardShader.MaterialMatrix.html - commentId: T:XRTK.Examples.Demos.StandardShader.MaterialMatrix - fullName: XRTK.Examples.Demos.StandardShader.MaterialMatrix - nameWithType: MaterialMatrix -- uid: XRTK.Examples.Demos.StandardShader.MaterialMatrix.BuildMatrix - name: BuildMatrix() - href: api/XRTK.Examples.Demos.StandardShader.MaterialMatrix.html#XRTK_Examples_Demos_StandardShader_MaterialMatrix_BuildMatrix - commentId: M:XRTK.Examples.Demos.StandardShader.MaterialMatrix.BuildMatrix - fullName: XRTK.Examples.Demos.StandardShader.MaterialMatrix.BuildMatrix() - nameWithType: MaterialMatrix.BuildMatrix() -- uid: XRTK.Examples.Demos.StandardShader.MaterialMatrix.BuildMatrix* - name: BuildMatrix - href: api/XRTK.Examples.Demos.StandardShader.MaterialMatrix.html#XRTK_Examples_Demos_StandardShader_MaterialMatrix_BuildMatrix_ - commentId: Overload:XRTK.Examples.Demos.StandardShader.MaterialMatrix.BuildMatrix - isSpec: "True" - fullName: XRTK.Examples.Demos.StandardShader.MaterialMatrix.BuildMatrix - nameWithType: MaterialMatrix.BuildMatrix -- uid: XRTK.Examples.Demos.SwapVolume - name: SwapVolume - href: api/XRTK.Examples.Demos.SwapVolume.html - commentId: T:XRTK.Examples.Demos.SwapVolume - fullName: XRTK.Examples.Demos.SwapVolume - nameWithType: SwapVolume -- uid: XRTK.Examples.Demos.SwapVolume.OnPointerClicked(XRTK.EventDatum.Input.MixedRealityPointerEventData) - name: OnPointerClicked(MixedRealityPointerEventData) - href: api/XRTK.Examples.Demos.SwapVolume.html#XRTK_Examples_Demos_SwapVolume_OnPointerClicked_XRTK_EventDatum_Input_MixedRealityPointerEventData_ - commentId: M:XRTK.Examples.Demos.SwapVolume.OnPointerClicked(XRTK.EventDatum.Input.MixedRealityPointerEventData) - fullName: XRTK.Examples.Demos.SwapVolume.OnPointerClicked(XRTK.EventDatum.Input.MixedRealityPointerEventData) - nameWithType: SwapVolume.OnPointerClicked(MixedRealityPointerEventData) -- uid: XRTK.Examples.Demos.SwapVolume.OnPointerClicked* - name: OnPointerClicked - href: api/XRTK.Examples.Demos.SwapVolume.html#XRTK_Examples_Demos_SwapVolume_OnPointerClicked_ - commentId: Overload:XRTK.Examples.Demos.SwapVolume.OnPointerClicked - isSpec: "True" - fullName: XRTK.Examples.Demos.SwapVolume.OnPointerClicked - nameWithType: SwapVolume.OnPointerClicked -- uid: XRTK.Examples.Demos.SwapVolume.OnPointerDown(XRTK.EventDatum.Input.MixedRealityPointerEventData) - name: OnPointerDown(MixedRealityPointerEventData) - href: api/XRTK.Examples.Demos.SwapVolume.html#XRTK_Examples_Demos_SwapVolume_OnPointerDown_XRTK_EventDatum_Input_MixedRealityPointerEventData_ - commentId: M:XRTK.Examples.Demos.SwapVolume.OnPointerDown(XRTK.EventDatum.Input.MixedRealityPointerEventData) - fullName: XRTK.Examples.Demos.SwapVolume.OnPointerDown(XRTK.EventDatum.Input.MixedRealityPointerEventData) - nameWithType: SwapVolume.OnPointerDown(MixedRealityPointerEventData) -- uid: XRTK.Examples.Demos.SwapVolume.OnPointerDown* - name: OnPointerDown - href: api/XRTK.Examples.Demos.SwapVolume.html#XRTK_Examples_Demos_SwapVolume_OnPointerDown_ - commentId: Overload:XRTK.Examples.Demos.SwapVolume.OnPointerDown - isSpec: "True" - fullName: XRTK.Examples.Demos.SwapVolume.OnPointerDown - nameWithType: SwapVolume.OnPointerDown -- uid: XRTK.Examples.Demos.SwapVolume.OnPointerUp(XRTK.EventDatum.Input.MixedRealityPointerEventData) - name: OnPointerUp(MixedRealityPointerEventData) - href: api/XRTK.Examples.Demos.SwapVolume.html#XRTK_Examples_Demos_SwapVolume_OnPointerUp_XRTK_EventDatum_Input_MixedRealityPointerEventData_ - commentId: M:XRTK.Examples.Demos.SwapVolume.OnPointerUp(XRTK.EventDatum.Input.MixedRealityPointerEventData) - fullName: XRTK.Examples.Demos.SwapVolume.OnPointerUp(XRTK.EventDatum.Input.MixedRealityPointerEventData) - nameWithType: SwapVolume.OnPointerUp(MixedRealityPointerEventData) -- uid: XRTK.Examples.Demos.SwapVolume.OnPointerUp* - name: OnPointerUp - href: api/XRTK.Examples.Demos.SwapVolume.html#XRTK_Examples_Demos_SwapVolume_OnPointerUp_ - commentId: Overload:XRTK.Examples.Demos.SwapVolume.OnPointerUp - isSpec: "True" - fullName: XRTK.Examples.Demos.SwapVolume.OnPointerUp - nameWithType: SwapVolume.OnPointerUp -- uid: XRTK.Extensions - name: XRTK.Extensions - href: api/XRTK.Extensions.html - commentId: N:XRTK.Extensions - fullName: XRTK.Extensions - nameWithType: XRTK.Extensions -- uid: XRTK.Extensions.AnimationCurveExtensions - name: AnimationCurveExtensions - href: api/XRTK.Extensions.AnimationCurveExtensions.html - commentId: T:XRTK.Extensions.AnimationCurveExtensions - fullName: XRTK.Extensions.AnimationCurveExtensions - nameWithType: AnimationCurveExtensions -- uid: XRTK.Extensions.AnimationCurveExtensions.Duration(UnityEngine.AnimationCurve) - name: Duration(AnimationCurve) - href: api/XRTK.Extensions.AnimationCurveExtensions.html#XRTK_Extensions_AnimationCurveExtensions_Duration_UnityEngine_AnimationCurve_ - commentId: M:XRTK.Extensions.AnimationCurveExtensions.Duration(UnityEngine.AnimationCurve) - fullName: XRTK.Extensions.AnimationCurveExtensions.Duration(UnityEngine.AnimationCurve) - nameWithType: AnimationCurveExtensions.Duration(AnimationCurve) -- uid: XRTK.Extensions.AnimationCurveExtensions.Duration* - name: Duration - href: api/XRTK.Extensions.AnimationCurveExtensions.html#XRTK_Extensions_AnimationCurveExtensions_Duration_ - commentId: Overload:XRTK.Extensions.AnimationCurveExtensions.Duration - isSpec: "True" - fullName: XRTK.Extensions.AnimationCurveExtensions.Duration - nameWithType: AnimationCurveExtensions.Duration -- uid: XRTK.Extensions.ArrayExtensions - name: ArrayExtensions - href: api/XRTK.Extensions.ArrayExtensions.html - commentId: T:XRTK.Extensions.ArrayExtensions - fullName: XRTK.Extensions.ArrayExtensions - nameWithType: ArrayExtensions -- uid: XRTK.Extensions.ArrayExtensions.AddItem* - name: AddItem - href: api/XRTK.Extensions.ArrayExtensions.html#XRTK_Extensions_ArrayExtensions_AddItem_ - commentId: Overload:XRTK.Extensions.ArrayExtensions.AddItem - isSpec: "True" - fullName: XRTK.Extensions.ArrayExtensions.AddItem - nameWithType: ArrayExtensions.AddItem -- uid: XRTK.Extensions.ArrayExtensions.AddItem``1(``0[],``0) - name: AddItem(T[], T) - href: api/XRTK.Extensions.ArrayExtensions.html#XRTK_Extensions_ArrayExtensions_AddItem__1___0_____0_ - commentId: M:XRTK.Extensions.ArrayExtensions.AddItem``1(``0[],``0) - name.vb: AddItem(Of T)(T(), T) - fullName: XRTK.Extensions.ArrayExtensions.AddItem(T[], T) - fullName.vb: XRTK.Extensions.ArrayExtensions.AddItem(Of T)(T(), T) - nameWithType: ArrayExtensions.AddItem(T[], T) - nameWithType.vb: ArrayExtensions.AddItem(Of T)(T(), T) -- uid: XRTK.Extensions.ArrayExtensions.InitialiseArray* - name: InitialiseArray - href: api/XRTK.Extensions.ArrayExtensions.html#XRTK_Extensions_ArrayExtensions_InitialiseArray_ - commentId: Overload:XRTK.Extensions.ArrayExtensions.InitialiseArray - isSpec: "True" - fullName: XRTK.Extensions.ArrayExtensions.InitialiseArray - nameWithType: ArrayExtensions.InitialiseArray -- uid: XRTK.Extensions.ArrayExtensions.InitialiseArray``1(``0[],``0) - name: InitialiseArray(T[], T) - href: api/XRTK.Extensions.ArrayExtensions.html#XRTK_Extensions_ArrayExtensions_InitialiseArray__1___0_____0_ - commentId: M:XRTK.Extensions.ArrayExtensions.InitialiseArray``1(``0[],``0) - name.vb: InitialiseArray(Of T)(T(), T) - fullName: XRTK.Extensions.ArrayExtensions.InitialiseArray(T[], T) - fullName.vb: XRTK.Extensions.ArrayExtensions.InitialiseArray(Of T)(T(), T) - nameWithType: ArrayExtensions.InitialiseArray(T[], T) - nameWithType.vb: ArrayExtensions.InitialiseArray(Of T)(T(), T) -- uid: XRTK.Extensions.ArrayExtensions.IsValidArray(System.Array) - name: IsValidArray(Array) - href: api/XRTK.Extensions.ArrayExtensions.html#XRTK_Extensions_ArrayExtensions_IsValidArray_System_Array_ - commentId: M:XRTK.Extensions.ArrayExtensions.IsValidArray(System.Array) - fullName: XRTK.Extensions.ArrayExtensions.IsValidArray(System.Array) - nameWithType: ArrayExtensions.IsValidArray(Array) -- uid: XRTK.Extensions.ArrayExtensions.IsValidArray* - name: IsValidArray - href: api/XRTK.Extensions.ArrayExtensions.html#XRTK_Extensions_ArrayExtensions_IsValidArray_ - commentId: Overload:XRTK.Extensions.ArrayExtensions.IsValidArray - isSpec: "True" - fullName: XRTK.Extensions.ArrayExtensions.IsValidArray - nameWithType: ArrayExtensions.IsValidArray -- uid: XRTK.Extensions.ArrayExtensions.WrapIndex(System.Array,System.Int32) - name: WrapIndex(Array, Int32) - href: api/XRTK.Extensions.ArrayExtensions.html#XRTK_Extensions_ArrayExtensions_WrapIndex_System_Array_System_Int32_ - commentId: M:XRTK.Extensions.ArrayExtensions.WrapIndex(System.Array,System.Int32) - fullName: XRTK.Extensions.ArrayExtensions.WrapIndex(System.Array, System.Int32) - nameWithType: ArrayExtensions.WrapIndex(Array, Int32) -- uid: XRTK.Extensions.ArrayExtensions.WrapIndex* - name: WrapIndex - href: api/XRTK.Extensions.ArrayExtensions.html#XRTK_Extensions_ArrayExtensions_WrapIndex_ - commentId: Overload:XRTK.Extensions.ArrayExtensions.WrapIndex - isSpec: "True" - fullName: XRTK.Extensions.ArrayExtensions.WrapIndex - nameWithType: ArrayExtensions.WrapIndex -- uid: XRTK.Extensions.BoundsExtensions - name: BoundsExtensions - href: api/XRTK.Extensions.BoundsExtensions.html - commentId: T:XRTK.Extensions.BoundsExtensions - fullName: XRTK.Extensions.BoundsExtensions - nameWithType: BoundsExtensions -- uid: XRTK.Extensions.BoundsExtensions.BCK - name: BCK - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_BCK - commentId: F:XRTK.Extensions.BoundsExtensions.BCK - fullName: XRTK.Extensions.BoundsExtensions.BCK - nameWithType: BoundsExtensions.BCK -- uid: XRTK.Extensions.BoundsExtensions.BOT - name: BOT - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_BOT - commentId: F:XRTK.Extensions.BoundsExtensions.BOT - fullName: XRTK.Extensions.BoundsExtensions.BOT - nameWithType: BoundsExtensions.BOT -- uid: XRTK.Extensions.BoundsExtensions.CloserToPoint(UnityEngine.Bounds,UnityEngine.Vector3,UnityEngine.Bounds) - name: CloserToPoint(Bounds, Vector3, Bounds) - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_CloserToPoint_UnityEngine_Bounds_UnityEngine_Vector3_UnityEngine_Bounds_ - commentId: M:XRTK.Extensions.BoundsExtensions.CloserToPoint(UnityEngine.Bounds,UnityEngine.Vector3,UnityEngine.Bounds) - fullName: XRTK.Extensions.BoundsExtensions.CloserToPoint(UnityEngine.Bounds, UnityEngine.Vector3, UnityEngine.Bounds) - nameWithType: BoundsExtensions.CloserToPoint(Bounds, Vector3, Bounds) -- uid: XRTK.Extensions.BoundsExtensions.CloserToPoint* - name: CloserToPoint - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_CloserToPoint_ - commentId: Overload:XRTK.Extensions.BoundsExtensions.CloserToPoint - isSpec: "True" - fullName: XRTK.Extensions.BoundsExtensions.CloserToPoint - nameWithType: BoundsExtensions.CloserToPoint -- uid: XRTK.Extensions.BoundsExtensions.ContainsBounds(UnityEngine.Bounds,UnityEngine.Bounds) - name: ContainsBounds(Bounds, Bounds) - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_ContainsBounds_UnityEngine_Bounds_UnityEngine_Bounds_ - commentId: M:XRTK.Extensions.BoundsExtensions.ContainsBounds(UnityEngine.Bounds,UnityEngine.Bounds) - fullName: XRTK.Extensions.BoundsExtensions.ContainsBounds(UnityEngine.Bounds, UnityEngine.Bounds) - nameWithType: BoundsExtensions.ContainsBounds(Bounds, Bounds) -- uid: XRTK.Extensions.BoundsExtensions.ContainsBounds* - name: ContainsBounds - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_ContainsBounds_ - commentId: Overload:XRTK.Extensions.BoundsExtensions.ContainsBounds - isSpec: "True" - fullName: XRTK.Extensions.BoundsExtensions.ContainsBounds - nameWithType: BoundsExtensions.ContainsBounds -- uid: XRTK.Extensions.BoundsExtensions.ExpandToContain(UnityEngine.Bounds,UnityEngine.Bounds) - name: ExpandToContain(Bounds, Bounds) - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_ExpandToContain_UnityEngine_Bounds_UnityEngine_Bounds_ - commentId: M:XRTK.Extensions.BoundsExtensions.ExpandToContain(UnityEngine.Bounds,UnityEngine.Bounds) - fullName: XRTK.Extensions.BoundsExtensions.ExpandToContain(UnityEngine.Bounds, UnityEngine.Bounds) - nameWithType: BoundsExtensions.ExpandToContain(Bounds, Bounds) -- uid: XRTK.Extensions.BoundsExtensions.ExpandToContain* - name: ExpandToContain - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_ExpandToContain_ - commentId: Overload:XRTK.Extensions.BoundsExtensions.ExpandToContain - isSpec: "True" - fullName: XRTK.Extensions.BoundsExtensions.ExpandToContain - nameWithType: BoundsExtensions.ExpandToContain -- uid: XRTK.Extensions.BoundsExtensions.FWD - name: FWD - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_FWD - commentId: F:XRTK.Extensions.BoundsExtensions.FWD - fullName: XRTK.Extensions.BoundsExtensions.FWD - nameWithType: BoundsExtensions.FWD -- uid: XRTK.Extensions.BoundsExtensions.GetColliderBoundsPoints(UnityEngine.GameObject,System.Collections.Generic.List{UnityEngine.Vector3}@,UnityEngine.LayerMask,UnityEngine.Collider[]) - name: GetColliderBoundsPoints(GameObject, ref List, LayerMask, Collider[]) - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_GetColliderBoundsPoints_UnityEngine_GameObject_System_Collections_Generic_List_UnityEngine_Vector3___UnityEngine_LayerMask_UnityEngine_Collider___ - commentId: M:XRTK.Extensions.BoundsExtensions.GetColliderBoundsPoints(UnityEngine.GameObject,System.Collections.Generic.List{UnityEngine.Vector3}@,UnityEngine.LayerMask,UnityEngine.Collider[]) - name.vb: GetColliderBoundsPoints(GameObject, ByRef List(Of Vector3), LayerMask, Collider()) - fullName: XRTK.Extensions.BoundsExtensions.GetColliderBoundsPoints(UnityEngine.GameObject, ref System.Collections.Generic.List, UnityEngine.LayerMask, UnityEngine.Collider[]) - fullName.vb: XRTK.Extensions.BoundsExtensions.GetColliderBoundsPoints(UnityEngine.GameObject, ByRef System.Collections.Generic.List(Of UnityEngine.Vector3), UnityEngine.LayerMask, UnityEngine.Collider()) - nameWithType: BoundsExtensions.GetColliderBoundsPoints(GameObject, ref List, LayerMask, Collider[]) - nameWithType.vb: BoundsExtensions.GetColliderBoundsPoints(GameObject, ByRef List(Of Vector3), LayerMask, Collider()) -- uid: XRTK.Extensions.BoundsExtensions.GetColliderBoundsPoints* - name: GetColliderBoundsPoints - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_GetColliderBoundsPoints_ - commentId: Overload:XRTK.Extensions.BoundsExtensions.GetColliderBoundsPoints - isSpec: "True" - fullName: XRTK.Extensions.BoundsExtensions.GetColliderBoundsPoints - nameWithType: BoundsExtensions.GetColliderBoundsPoints -- uid: XRTK.Extensions.BoundsExtensions.GetCornerAndMidPointPositions(UnityEngine.Bounds,UnityEngine.Transform,UnityEngine.Vector3[]@) - name: GetCornerAndMidPointPositions(Bounds, Transform, ref Vector3[]) - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_GetCornerAndMidPointPositions_UnityEngine_Bounds_UnityEngine_Transform_UnityEngine_Vector3____ - commentId: M:XRTK.Extensions.BoundsExtensions.GetCornerAndMidPointPositions(UnityEngine.Bounds,UnityEngine.Transform,UnityEngine.Vector3[]@) - name.vb: GetCornerAndMidPointPositions(Bounds, Transform, ByRef Vector3()) - fullName: XRTK.Extensions.BoundsExtensions.GetCornerAndMidPointPositions(UnityEngine.Bounds, UnityEngine.Transform, ref UnityEngine.Vector3[]) - fullName.vb: XRTK.Extensions.BoundsExtensions.GetCornerAndMidPointPositions(UnityEngine.Bounds, UnityEngine.Transform, ByRef UnityEngine.Vector3()) - nameWithType: BoundsExtensions.GetCornerAndMidPointPositions(Bounds, Transform, ref Vector3[]) - nameWithType.vb: BoundsExtensions.GetCornerAndMidPointPositions(Bounds, Transform, ByRef Vector3()) -- uid: XRTK.Extensions.BoundsExtensions.GetCornerAndMidPointPositions* - name: GetCornerAndMidPointPositions - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_GetCornerAndMidPointPositions_ - commentId: Overload:XRTK.Extensions.BoundsExtensions.GetCornerAndMidPointPositions - isSpec: "True" - fullName: XRTK.Extensions.BoundsExtensions.GetCornerAndMidPointPositions - nameWithType: BoundsExtensions.GetCornerAndMidPointPositions -- uid: XRTK.Extensions.BoundsExtensions.GetCornerAndMidPointPositions2D(UnityEngine.Bounds,UnityEngine.Transform,UnityEngine.Vector3[]@,XRTK.Definitions.Utilities.CardinalAxis) - name: GetCornerAndMidPointPositions2D(Bounds, Transform, ref Vector3[], CardinalAxis) - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_GetCornerAndMidPointPositions2D_UnityEngine_Bounds_UnityEngine_Transform_UnityEngine_Vector3____XRTK_Definitions_Utilities_CardinalAxis_ - commentId: M:XRTK.Extensions.BoundsExtensions.GetCornerAndMidPointPositions2D(UnityEngine.Bounds,UnityEngine.Transform,UnityEngine.Vector3[]@,XRTK.Definitions.Utilities.CardinalAxis) - name.vb: GetCornerAndMidPointPositions2D(Bounds, Transform, ByRef Vector3(), CardinalAxis) - fullName: XRTK.Extensions.BoundsExtensions.GetCornerAndMidPointPositions2D(UnityEngine.Bounds, UnityEngine.Transform, ref UnityEngine.Vector3[], XRTK.Definitions.Utilities.CardinalAxis) - fullName.vb: XRTK.Extensions.BoundsExtensions.GetCornerAndMidPointPositions2D(UnityEngine.Bounds, UnityEngine.Transform, ByRef UnityEngine.Vector3(), XRTK.Definitions.Utilities.CardinalAxis) - nameWithType: BoundsExtensions.GetCornerAndMidPointPositions2D(Bounds, Transform, ref Vector3[], CardinalAxis) - nameWithType.vb: BoundsExtensions.GetCornerAndMidPointPositions2D(Bounds, Transform, ByRef Vector3(), CardinalAxis) -- uid: XRTK.Extensions.BoundsExtensions.GetCornerAndMidPointPositions2D* - name: GetCornerAndMidPointPositions2D - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_GetCornerAndMidPointPositions2D_ - commentId: Overload:XRTK.Extensions.BoundsExtensions.GetCornerAndMidPointPositions2D - isSpec: "True" - fullName: XRTK.Extensions.BoundsExtensions.GetCornerAndMidPointPositions2D - nameWithType: BoundsExtensions.GetCornerAndMidPointPositions2D -- uid: XRTK.Extensions.BoundsExtensions.GetCornerPositions(UnityEngine.Bounds,UnityEngine.Vector3[]@) - name: GetCornerPositions(Bounds, ref Vector3[]) - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_GetCornerPositions_UnityEngine_Bounds_UnityEngine_Vector3____ - commentId: M:XRTK.Extensions.BoundsExtensions.GetCornerPositions(UnityEngine.Bounds,UnityEngine.Vector3[]@) - name.vb: GetCornerPositions(Bounds, ByRef Vector3()) - fullName: XRTK.Extensions.BoundsExtensions.GetCornerPositions(UnityEngine.Bounds, ref UnityEngine.Vector3[]) - fullName.vb: XRTK.Extensions.BoundsExtensions.GetCornerPositions(UnityEngine.Bounds, ByRef UnityEngine.Vector3()) - nameWithType: BoundsExtensions.GetCornerPositions(Bounds, ref Vector3[]) - nameWithType.vb: BoundsExtensions.GetCornerPositions(Bounds, ByRef Vector3()) -- uid: XRTK.Extensions.BoundsExtensions.GetCornerPositions* - name: GetCornerPositions - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_GetCornerPositions_ - commentId: Overload:XRTK.Extensions.BoundsExtensions.GetCornerPositions - isSpec: "True" - fullName: XRTK.Extensions.BoundsExtensions.GetCornerPositions - nameWithType: BoundsExtensions.GetCornerPositions -- uid: XRTK.Extensions.BoundsExtensions.GetCornerPositionsLocalSpace(UnityEngine.Bounds,UnityEngine.Vector3[]@) - name: GetCornerPositionsLocalSpace(Bounds, ref Vector3[]) - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_GetCornerPositionsLocalSpace_UnityEngine_Bounds_UnityEngine_Vector3____ - commentId: M:XRTK.Extensions.BoundsExtensions.GetCornerPositionsLocalSpace(UnityEngine.Bounds,UnityEngine.Vector3[]@) - name.vb: GetCornerPositionsLocalSpace(Bounds, ByRef Vector3()) - fullName: XRTK.Extensions.BoundsExtensions.GetCornerPositionsLocalSpace(UnityEngine.Bounds, ref UnityEngine.Vector3[]) - fullName.vb: XRTK.Extensions.BoundsExtensions.GetCornerPositionsLocalSpace(UnityEngine.Bounds, ByRef UnityEngine.Vector3()) - nameWithType: BoundsExtensions.GetCornerPositionsLocalSpace(Bounds, ref Vector3[]) - nameWithType.vb: BoundsExtensions.GetCornerPositionsLocalSpace(Bounds, ByRef Vector3()) -- uid: XRTK.Extensions.BoundsExtensions.GetCornerPositionsLocalSpace* - name: GetCornerPositionsLocalSpace - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_GetCornerPositionsLocalSpace_ - commentId: Overload:XRTK.Extensions.BoundsExtensions.GetCornerPositionsLocalSpace - isSpec: "True" - fullName: XRTK.Extensions.BoundsExtensions.GetCornerPositionsLocalSpace - nameWithType: BoundsExtensions.GetCornerPositionsLocalSpace -- uid: XRTK.Extensions.BoundsExtensions.GetCornerPositionsWorldSpace(UnityEngine.Bounds,UnityEngine.Transform,UnityEngine.Vector3[]@) - name: GetCornerPositionsWorldSpace(Bounds, Transform, ref Vector3[]) - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_GetCornerPositionsWorldSpace_UnityEngine_Bounds_UnityEngine_Transform_UnityEngine_Vector3____ - commentId: M:XRTK.Extensions.BoundsExtensions.GetCornerPositionsWorldSpace(UnityEngine.Bounds,UnityEngine.Transform,UnityEngine.Vector3[]@) - name.vb: GetCornerPositionsWorldSpace(Bounds, Transform, ByRef Vector3()) - fullName: XRTK.Extensions.BoundsExtensions.GetCornerPositionsWorldSpace(UnityEngine.Bounds, UnityEngine.Transform, ref UnityEngine.Vector3[]) - fullName.vb: XRTK.Extensions.BoundsExtensions.GetCornerPositionsWorldSpace(UnityEngine.Bounds, UnityEngine.Transform, ByRef UnityEngine.Vector3()) - nameWithType: BoundsExtensions.GetCornerPositionsWorldSpace(Bounds, Transform, ref Vector3[]) - nameWithType.vb: BoundsExtensions.GetCornerPositionsWorldSpace(Bounds, Transform, ByRef Vector3()) -- uid: XRTK.Extensions.BoundsExtensions.GetCornerPositionsWorldSpace* - name: GetCornerPositionsWorldSpace - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_GetCornerPositionsWorldSpace_ - commentId: Overload:XRTK.Extensions.BoundsExtensions.GetCornerPositionsWorldSpace - isSpec: "True" - fullName: XRTK.Extensions.BoundsExtensions.GetCornerPositionsWorldSpace - nameWithType: BoundsExtensions.GetCornerPositionsWorldSpace -- uid: XRTK.Extensions.BoundsExtensions.GetFacePositions(UnityEngine.Bounds,UnityEngine.Transform,UnityEngine.Vector3[]@) - name: GetFacePositions(Bounds, Transform, ref Vector3[]) - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_GetFacePositions_UnityEngine_Bounds_UnityEngine_Transform_UnityEngine_Vector3____ - commentId: M:XRTK.Extensions.BoundsExtensions.GetFacePositions(UnityEngine.Bounds,UnityEngine.Transform,UnityEngine.Vector3[]@) - name.vb: GetFacePositions(Bounds, Transform, ByRef Vector3()) - fullName: XRTK.Extensions.BoundsExtensions.GetFacePositions(UnityEngine.Bounds, UnityEngine.Transform, ref UnityEngine.Vector3[]) - fullName.vb: XRTK.Extensions.BoundsExtensions.GetFacePositions(UnityEngine.Bounds, UnityEngine.Transform, ByRef UnityEngine.Vector3()) - nameWithType: BoundsExtensions.GetFacePositions(Bounds, Transform, ref Vector3[]) - nameWithType.vb: BoundsExtensions.GetFacePositions(Bounds, Transform, ByRef Vector3()) -- uid: XRTK.Extensions.BoundsExtensions.GetFacePositions* - name: GetFacePositions - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_GetFacePositions_ - commentId: Overload:XRTK.Extensions.BoundsExtensions.GetFacePositions - isSpec: "True" - fullName: XRTK.Extensions.BoundsExtensions.GetFacePositions - nameWithType: BoundsExtensions.GetFacePositions -- uid: XRTK.Extensions.BoundsExtensions.GetInvalidBoundsInstance - name: GetInvalidBoundsInstance() - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_GetInvalidBoundsInstance - commentId: M:XRTK.Extensions.BoundsExtensions.GetInvalidBoundsInstance - fullName: XRTK.Extensions.BoundsExtensions.GetInvalidBoundsInstance() - nameWithType: BoundsExtensions.GetInvalidBoundsInstance() -- uid: XRTK.Extensions.BoundsExtensions.GetInvalidBoundsInstance* - name: GetInvalidBoundsInstance - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_GetInvalidBoundsInstance_ - commentId: Overload:XRTK.Extensions.BoundsExtensions.GetInvalidBoundsInstance - isSpec: "True" - fullName: XRTK.Extensions.BoundsExtensions.GetInvalidBoundsInstance - nameWithType: BoundsExtensions.GetInvalidBoundsInstance -- uid: XRTK.Extensions.BoundsExtensions.GetMeshFilterBoundsPoints(UnityEngine.GameObject,System.Collections.Generic.List{UnityEngine.Vector3}@,UnityEngine.LayerMask,UnityEngine.MeshFilter[]) - name: GetMeshFilterBoundsPoints(GameObject, ref List, LayerMask, MeshFilter[]) - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_GetMeshFilterBoundsPoints_UnityEngine_GameObject_System_Collections_Generic_List_UnityEngine_Vector3___UnityEngine_LayerMask_UnityEngine_MeshFilter___ - commentId: M:XRTK.Extensions.BoundsExtensions.GetMeshFilterBoundsPoints(UnityEngine.GameObject,System.Collections.Generic.List{UnityEngine.Vector3}@,UnityEngine.LayerMask,UnityEngine.MeshFilter[]) - name.vb: GetMeshFilterBoundsPoints(GameObject, ByRef List(Of Vector3), LayerMask, MeshFilter()) - fullName: XRTK.Extensions.BoundsExtensions.GetMeshFilterBoundsPoints(UnityEngine.GameObject, ref System.Collections.Generic.List, UnityEngine.LayerMask, UnityEngine.MeshFilter[]) - fullName.vb: XRTK.Extensions.BoundsExtensions.GetMeshFilterBoundsPoints(UnityEngine.GameObject, ByRef System.Collections.Generic.List(Of UnityEngine.Vector3), UnityEngine.LayerMask, UnityEngine.MeshFilter()) - nameWithType: BoundsExtensions.GetMeshFilterBoundsPoints(GameObject, ref List, LayerMask, MeshFilter[]) - nameWithType.vb: BoundsExtensions.GetMeshFilterBoundsPoints(GameObject, ByRef List(Of Vector3), LayerMask, MeshFilter()) -- uid: XRTK.Extensions.BoundsExtensions.GetMeshFilterBoundsPoints* - name: GetMeshFilterBoundsPoints - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_GetMeshFilterBoundsPoints_ - commentId: Overload:XRTK.Extensions.BoundsExtensions.GetMeshFilterBoundsPoints - isSpec: "True" - fullName: XRTK.Extensions.BoundsExtensions.GetMeshFilterBoundsPoints - nameWithType: BoundsExtensions.GetMeshFilterBoundsPoints -- uid: XRTK.Extensions.BoundsExtensions.GetRenderBoundsPoints(UnityEngine.GameObject,System.Collections.Generic.List{UnityEngine.Vector3}@,UnityEngine.LayerMask,UnityEngine.Renderer[]) - name: GetRenderBoundsPoints(GameObject, ref List, LayerMask, Renderer[]) - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_GetRenderBoundsPoints_UnityEngine_GameObject_System_Collections_Generic_List_UnityEngine_Vector3___UnityEngine_LayerMask_UnityEngine_Renderer___ - commentId: M:XRTK.Extensions.BoundsExtensions.GetRenderBoundsPoints(UnityEngine.GameObject,System.Collections.Generic.List{UnityEngine.Vector3}@,UnityEngine.LayerMask,UnityEngine.Renderer[]) - name.vb: GetRenderBoundsPoints(GameObject, ByRef List(Of Vector3), LayerMask, Renderer()) - fullName: XRTK.Extensions.BoundsExtensions.GetRenderBoundsPoints(UnityEngine.GameObject, ref System.Collections.Generic.List, UnityEngine.LayerMask, UnityEngine.Renderer[]) - fullName.vb: XRTK.Extensions.BoundsExtensions.GetRenderBoundsPoints(UnityEngine.GameObject, ByRef System.Collections.Generic.List(Of UnityEngine.Vector3), UnityEngine.LayerMask, UnityEngine.Renderer()) - nameWithType: BoundsExtensions.GetRenderBoundsPoints(GameObject, ref List, LayerMask, Renderer[]) - nameWithType.vb: BoundsExtensions.GetRenderBoundsPoints(GameObject, ByRef List(Of Vector3), LayerMask, Renderer()) -- uid: XRTK.Extensions.BoundsExtensions.GetRenderBoundsPoints* - name: GetRenderBoundsPoints - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_GetRenderBoundsPoints_ - commentId: Overload:XRTK.Extensions.BoundsExtensions.GetRenderBoundsPoints - isSpec: "True" - fullName: XRTK.Extensions.BoundsExtensions.GetRenderBoundsPoints - nameWithType: BoundsExtensions.GetRenderBoundsPoints -- uid: XRTK.Extensions.BoundsExtensions.GetScreenRectangle(UnityEngine.Bounds,UnityEngine.Camera) - name: GetScreenRectangle(Bounds, Camera) - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_GetScreenRectangle_UnityEngine_Bounds_UnityEngine_Camera_ - commentId: M:XRTK.Extensions.BoundsExtensions.GetScreenRectangle(UnityEngine.Bounds,UnityEngine.Camera) - fullName: XRTK.Extensions.BoundsExtensions.GetScreenRectangle(UnityEngine.Bounds, UnityEngine.Camera) - nameWithType: BoundsExtensions.GetScreenRectangle(Bounds, Camera) -- uid: XRTK.Extensions.BoundsExtensions.GetScreenRectangle* - name: GetScreenRectangle - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_GetScreenRectangle_ - commentId: Overload:XRTK.Extensions.BoundsExtensions.GetScreenRectangle - isSpec: "True" - fullName: XRTK.Extensions.BoundsExtensions.GetScreenRectangle - nameWithType: BoundsExtensions.GetScreenRectangle -- uid: XRTK.Extensions.BoundsExtensions.GetScreenSpaceCornerPoints(UnityEngine.Bounds,UnityEngine.Camera) - name: GetScreenSpaceCornerPoints(Bounds, Camera) - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_GetScreenSpaceCornerPoints_UnityEngine_Bounds_UnityEngine_Camera_ - commentId: M:XRTK.Extensions.BoundsExtensions.GetScreenSpaceCornerPoints(UnityEngine.Bounds,UnityEngine.Camera) - fullName: XRTK.Extensions.BoundsExtensions.GetScreenSpaceCornerPoints(UnityEngine.Bounds, UnityEngine.Camera) - nameWithType: BoundsExtensions.GetScreenSpaceCornerPoints(Bounds, Camera) -- uid: XRTK.Extensions.BoundsExtensions.GetScreenSpaceCornerPoints* - name: GetScreenSpaceCornerPoints - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_GetScreenSpaceCornerPoints_ - commentId: Overload:XRTK.Extensions.BoundsExtensions.GetScreenSpaceCornerPoints - isSpec: "True" - fullName: XRTK.Extensions.BoundsExtensions.GetScreenSpaceCornerPoints - nameWithType: BoundsExtensions.GetScreenSpaceCornerPoints -- uid: XRTK.Extensions.BoundsExtensions.IsValid(UnityEngine.Bounds) - name: IsValid(Bounds) - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_IsValid_UnityEngine_Bounds_ - commentId: M:XRTK.Extensions.BoundsExtensions.IsValid(UnityEngine.Bounds) - fullName: XRTK.Extensions.BoundsExtensions.IsValid(UnityEngine.Bounds) - nameWithType: BoundsExtensions.IsValid(Bounds) -- uid: XRTK.Extensions.BoundsExtensions.IsValid* - name: IsValid - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_IsValid_ - commentId: Overload:XRTK.Extensions.BoundsExtensions.IsValid - isSpec: "True" - fullName: XRTK.Extensions.BoundsExtensions.IsValid - nameWithType: BoundsExtensions.IsValid -- uid: XRTK.Extensions.BoundsExtensions.LB - name: LB - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_LB - commentId: F:XRTK.Extensions.BoundsExtensions.LB - fullName: XRTK.Extensions.BoundsExtensions.LB - nameWithType: BoundsExtensions.LB -- uid: XRTK.Extensions.BoundsExtensions.LB_LT - name: LB_LT - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_LB_LT - commentId: F:XRTK.Extensions.BoundsExtensions.LB_LT - fullName: XRTK.Extensions.BoundsExtensions.LB_LT - nameWithType: BoundsExtensions.LB_LT -- uid: XRTK.Extensions.BoundsExtensions.LBB - name: LBB - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_LBB - commentId: F:XRTK.Extensions.BoundsExtensions.LBB - fullName: XRTK.Extensions.BoundsExtensions.LBB - nameWithType: BoundsExtensions.LBB -- uid: XRTK.Extensions.BoundsExtensions.LBF - name: LBF - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_LBF - commentId: F:XRTK.Extensions.BoundsExtensions.LBF - fullName: XRTK.Extensions.BoundsExtensions.LBF - nameWithType: BoundsExtensions.LBF -- uid: XRTK.Extensions.BoundsExtensions.LBF_LBB - name: LBF_LBB - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_LBF_LBB - commentId: F:XRTK.Extensions.BoundsExtensions.LBF_LBB - fullName: XRTK.Extensions.BoundsExtensions.LBF_LBB - nameWithType: BoundsExtensions.LBF_LBB -- uid: XRTK.Extensions.BoundsExtensions.LBF_RBF - name: LBF_RBF - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_LBF_RBF - commentId: F:XRTK.Extensions.BoundsExtensions.LBF_RBF - fullName: XRTK.Extensions.BoundsExtensions.LBF_RBF - nameWithType: BoundsExtensions.LBF_RBF -- uid: XRTK.Extensions.BoundsExtensions.LFT - name: LFT - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_LFT - commentId: F:XRTK.Extensions.BoundsExtensions.LFT - fullName: XRTK.Extensions.BoundsExtensions.LFT - nameWithType: BoundsExtensions.LFT -- uid: XRTK.Extensions.BoundsExtensions.LT - name: LT - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_LT - commentId: F:XRTK.Extensions.BoundsExtensions.LT - fullName: XRTK.Extensions.BoundsExtensions.LT - nameWithType: BoundsExtensions.LT -- uid: XRTK.Extensions.BoundsExtensions.LT_RT - name: LT_RT - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_LT_RT - commentId: F:XRTK.Extensions.BoundsExtensions.LT_RT - fullName: XRTK.Extensions.BoundsExtensions.LT_RT - nameWithType: BoundsExtensions.LT_RT -- uid: XRTK.Extensions.BoundsExtensions.LTB - name: LTB - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_LTB - commentId: F:XRTK.Extensions.BoundsExtensions.LTB - fullName: XRTK.Extensions.BoundsExtensions.LTB - nameWithType: BoundsExtensions.LTB -- uid: XRTK.Extensions.BoundsExtensions.LTB_LBB - name: LTB_LBB - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_LTB_LBB - commentId: F:XRTK.Extensions.BoundsExtensions.LTB_LBB - fullName: XRTK.Extensions.BoundsExtensions.LTB_LBB - nameWithType: BoundsExtensions.LTB_LBB -- uid: XRTK.Extensions.BoundsExtensions.LTF - name: LTF - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_LTF - commentId: F:XRTK.Extensions.BoundsExtensions.LTF - fullName: XRTK.Extensions.BoundsExtensions.LTF - nameWithType: BoundsExtensions.LTF -- uid: XRTK.Extensions.BoundsExtensions.LTF_LBF - name: LTF_LBF - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_LTF_LBF - commentId: F:XRTK.Extensions.BoundsExtensions.LTF_LBF - fullName: XRTK.Extensions.BoundsExtensions.LTF_LBF - nameWithType: BoundsExtensions.LTF_LBF -- uid: XRTK.Extensions.BoundsExtensions.LTF_LTB - name: LTF_LTB - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_LTF_LTB - commentId: F:XRTK.Extensions.BoundsExtensions.LTF_LTB - fullName: XRTK.Extensions.BoundsExtensions.LTF_LTB - nameWithType: BoundsExtensions.LTF_LTB -- uid: XRTK.Extensions.BoundsExtensions.LTF_RTF - name: LTF_RTF - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_LTF_RTF - commentId: F:XRTK.Extensions.BoundsExtensions.LTF_RTF - fullName: XRTK.Extensions.BoundsExtensions.LTF_RTF - nameWithType: BoundsExtensions.LTF_RTF -- uid: XRTK.Extensions.BoundsExtensions.RB - name: RB - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_RB - commentId: F:XRTK.Extensions.BoundsExtensions.RB - fullName: XRTK.Extensions.BoundsExtensions.RB - nameWithType: BoundsExtensions.RB -- uid: XRTK.Extensions.BoundsExtensions.RB_LB - name: RB_LB - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_RB_LB - commentId: F:XRTK.Extensions.BoundsExtensions.RB_LB - fullName: XRTK.Extensions.BoundsExtensions.RB_LB - nameWithType: BoundsExtensions.RB_LB -- uid: XRTK.Extensions.BoundsExtensions.RBB - name: RBB - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_RBB - commentId: F:XRTK.Extensions.BoundsExtensions.RBB - fullName: XRTK.Extensions.BoundsExtensions.RBB - nameWithType: BoundsExtensions.RBB -- uid: XRTK.Extensions.BoundsExtensions.RBB_LBB - name: RBB_LBB - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_RBB_LBB - commentId: F:XRTK.Extensions.BoundsExtensions.RBB_LBB - fullName: XRTK.Extensions.BoundsExtensions.RBB_LBB - nameWithType: BoundsExtensions.RBB_LBB -- uid: XRTK.Extensions.BoundsExtensions.RBF - name: RBF - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_RBF - commentId: F:XRTK.Extensions.BoundsExtensions.RBF - fullName: XRTK.Extensions.BoundsExtensions.RBF - nameWithType: BoundsExtensions.RBF -- uid: XRTK.Extensions.BoundsExtensions.RBF_RBB - name: RBF_RBB - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_RBF_RBB - commentId: F:XRTK.Extensions.BoundsExtensions.RBF_RBB - fullName: XRTK.Extensions.BoundsExtensions.RBF_RBB - nameWithType: BoundsExtensions.RBF_RBB -- uid: XRTK.Extensions.BoundsExtensions.RHT - name: RHT - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_RHT - commentId: F:XRTK.Extensions.BoundsExtensions.RHT - fullName: XRTK.Extensions.BoundsExtensions.RHT - nameWithType: BoundsExtensions.RHT -- uid: XRTK.Extensions.BoundsExtensions.RT - name: RT - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_RT - commentId: F:XRTK.Extensions.BoundsExtensions.RT - fullName: XRTK.Extensions.BoundsExtensions.RT - nameWithType: BoundsExtensions.RT -- uid: XRTK.Extensions.BoundsExtensions.RT_RB - name: RT_RB - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_RT_RB - commentId: F:XRTK.Extensions.BoundsExtensions.RT_RB - fullName: XRTK.Extensions.BoundsExtensions.RT_RB - nameWithType: BoundsExtensions.RT_RB -- uid: XRTK.Extensions.BoundsExtensions.RTB - name: RTB - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_RTB - commentId: F:XRTK.Extensions.BoundsExtensions.RTB - fullName: XRTK.Extensions.BoundsExtensions.RTB - nameWithType: BoundsExtensions.RTB -- uid: XRTK.Extensions.BoundsExtensions.RTB_LTB - name: RTB_LTB - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_RTB_LTB - commentId: F:XRTK.Extensions.BoundsExtensions.RTB_LTB - fullName: XRTK.Extensions.BoundsExtensions.RTB_LTB - nameWithType: BoundsExtensions.RTB_LTB -- uid: XRTK.Extensions.BoundsExtensions.RTB_RBB - name: RTB_RBB - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_RTB_RBB - commentId: F:XRTK.Extensions.BoundsExtensions.RTB_RBB - fullName: XRTK.Extensions.BoundsExtensions.RTB_RBB - nameWithType: BoundsExtensions.RTB_RBB -- uid: XRTK.Extensions.BoundsExtensions.RTF - name: RTF - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_RTF - commentId: F:XRTK.Extensions.BoundsExtensions.RTF - fullName: XRTK.Extensions.BoundsExtensions.RTF - nameWithType: BoundsExtensions.RTF -- uid: XRTK.Extensions.BoundsExtensions.RTF_RBF - name: RTF_RBF - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_RTF_RBF - commentId: F:XRTK.Extensions.BoundsExtensions.RTF_RBF - fullName: XRTK.Extensions.BoundsExtensions.RTF_RBF - nameWithType: BoundsExtensions.RTF_RBF -- uid: XRTK.Extensions.BoundsExtensions.RTF_RTB - name: RTF_RTB - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_RTF_RTB - commentId: F:XRTK.Extensions.BoundsExtensions.RTF_RTB - fullName: XRTK.Extensions.BoundsExtensions.RTF_RTB - nameWithType: BoundsExtensions.RTF_RTB -- uid: XRTK.Extensions.BoundsExtensions.TOP - name: TOP - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_TOP - commentId: F:XRTK.Extensions.BoundsExtensions.TOP - fullName: XRTK.Extensions.BoundsExtensions.TOP - nameWithType: BoundsExtensions.TOP -- uid: XRTK.Extensions.BoundsExtensions.Transform(UnityEngine.Bounds,UnityEngine.Matrix4x4) - name: Transform(Bounds, Matrix4x4) - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_Transform_UnityEngine_Bounds_UnityEngine_Matrix4x4_ - commentId: M:XRTK.Extensions.BoundsExtensions.Transform(UnityEngine.Bounds,UnityEngine.Matrix4x4) - fullName: XRTK.Extensions.BoundsExtensions.Transform(UnityEngine.Bounds, UnityEngine.Matrix4x4) - nameWithType: BoundsExtensions.Transform(Bounds, Matrix4x4) -- uid: XRTK.Extensions.BoundsExtensions.Transform* - name: Transform - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_Transform_ - commentId: Overload:XRTK.Extensions.BoundsExtensions.Transform - isSpec: "True" - fullName: XRTK.Extensions.BoundsExtensions.Transform - nameWithType: BoundsExtensions.Transform -- uid: XRTK.Extensions.BoundsExtensions.Volume(UnityEngine.Bounds) - name: Volume(Bounds) - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_Volume_UnityEngine_Bounds_ - commentId: M:XRTK.Extensions.BoundsExtensions.Volume(UnityEngine.Bounds) - fullName: XRTK.Extensions.BoundsExtensions.Volume(UnityEngine.Bounds) - nameWithType: BoundsExtensions.Volume(Bounds) -- uid: XRTK.Extensions.BoundsExtensions.Volume* - name: Volume - href: api/XRTK.Extensions.BoundsExtensions.html#XRTK_Extensions_BoundsExtensions_Volume_ - commentId: Overload:XRTK.Extensions.BoundsExtensions.Volume - isSpec: "True" - fullName: XRTK.Extensions.BoundsExtensions.Volume - nameWithType: BoundsExtensions.Volume -- uid: XRTK.Extensions.CameraExtensions - name: CameraExtensions - href: api/XRTK.Extensions.CameraExtensions.html - commentId: T:XRTK.Extensions.CameraExtensions - fullName: XRTK.Extensions.CameraExtensions - nameWithType: CameraExtensions -- uid: XRTK.Extensions.CameraExtensions.GetDistanceForFrustumHeight(UnityEngine.Camera,System.Single) - name: GetDistanceForFrustumHeight(Camera, Single) - href: api/XRTK.Extensions.CameraExtensions.html#XRTK_Extensions_CameraExtensions_GetDistanceForFrustumHeight_UnityEngine_Camera_System_Single_ - commentId: M:XRTK.Extensions.CameraExtensions.GetDistanceForFrustumHeight(UnityEngine.Camera,System.Single) - fullName: XRTK.Extensions.CameraExtensions.GetDistanceForFrustumHeight(UnityEngine.Camera, System.Single) - nameWithType: CameraExtensions.GetDistanceForFrustumHeight(Camera, Single) -- uid: XRTK.Extensions.CameraExtensions.GetDistanceForFrustumHeight* - name: GetDistanceForFrustumHeight - href: api/XRTK.Extensions.CameraExtensions.html#XRTK_Extensions_CameraExtensions_GetDistanceForFrustumHeight_ - commentId: Overload:XRTK.Extensions.CameraExtensions.GetDistanceForFrustumHeight - isSpec: "True" - fullName: XRTK.Extensions.CameraExtensions.GetDistanceForFrustumHeight - nameWithType: CameraExtensions.GetDistanceForFrustumHeight -- uid: XRTK.Extensions.CameraExtensions.GetFrustumSizeForDistance(UnityEngine.Camera,System.Single) - name: GetFrustumSizeForDistance(Camera, Single) - href: api/XRTK.Extensions.CameraExtensions.html#XRTK_Extensions_CameraExtensions_GetFrustumSizeForDistance_UnityEngine_Camera_System_Single_ - commentId: M:XRTK.Extensions.CameraExtensions.GetFrustumSizeForDistance(UnityEngine.Camera,System.Single) - fullName: XRTK.Extensions.CameraExtensions.GetFrustumSizeForDistance(UnityEngine.Camera, System.Single) - nameWithType: CameraExtensions.GetFrustumSizeForDistance(Camera, Single) -- uid: XRTK.Extensions.CameraExtensions.GetFrustumSizeForDistance* - name: GetFrustumSizeForDistance - href: api/XRTK.Extensions.CameraExtensions.html#XRTK_Extensions_CameraExtensions_GetFrustumSizeForDistance_ - commentId: Overload:XRTK.Extensions.CameraExtensions.GetFrustumSizeForDistance - isSpec: "True" - fullName: XRTK.Extensions.CameraExtensions.GetFrustumSizeForDistance - nameWithType: CameraExtensions.GetFrustumSizeForDistance -- uid: XRTK.Extensions.CameraExtensions.GetHorizontalFieldOfViewRadians(UnityEngine.Camera) - name: GetHorizontalFieldOfViewRadians(Camera) - href: api/XRTK.Extensions.CameraExtensions.html#XRTK_Extensions_CameraExtensions_GetHorizontalFieldOfViewRadians_UnityEngine_Camera_ - commentId: M:XRTK.Extensions.CameraExtensions.GetHorizontalFieldOfViewRadians(UnityEngine.Camera) - fullName: XRTK.Extensions.CameraExtensions.GetHorizontalFieldOfViewRadians(UnityEngine.Camera) - nameWithType: CameraExtensions.GetHorizontalFieldOfViewRadians(Camera) -- uid: XRTK.Extensions.CameraExtensions.GetHorizontalFieldOfViewRadians* - name: GetHorizontalFieldOfViewRadians - href: api/XRTK.Extensions.CameraExtensions.html#XRTK_Extensions_CameraExtensions_GetHorizontalFieldOfViewRadians_ - commentId: Overload:XRTK.Extensions.CameraExtensions.GetHorizontalFieldOfViewRadians - isSpec: "True" - fullName: XRTK.Extensions.CameraExtensions.GetHorizontalFieldOfViewRadians - nameWithType: CameraExtensions.GetHorizontalFieldOfViewRadians -- uid: XRTK.Extensions.CameraExtensions.IsInFOV(UnityEngine.Camera,UnityEngine.Vector3) - name: IsInFOV(Camera, Vector3) - href: api/XRTK.Extensions.CameraExtensions.html#XRTK_Extensions_CameraExtensions_IsInFOV_UnityEngine_Camera_UnityEngine_Vector3_ - commentId: M:XRTK.Extensions.CameraExtensions.IsInFOV(UnityEngine.Camera,UnityEngine.Vector3) - fullName: XRTK.Extensions.CameraExtensions.IsInFOV(UnityEngine.Camera, UnityEngine.Vector3) - nameWithType: CameraExtensions.IsInFOV(Camera, Vector3) -- uid: XRTK.Extensions.CameraExtensions.IsInFOV* - name: IsInFOV - href: api/XRTK.Extensions.CameraExtensions.html#XRTK_Extensions_CameraExtensions_IsInFOV_ - commentId: Overload:XRTK.Extensions.CameraExtensions.IsInFOV - isSpec: "True" - fullName: XRTK.Extensions.CameraExtensions.IsInFOV - nameWithType: CameraExtensions.IsInFOV -- uid: XRTK.Extensions.CameraExtensions.IsInFrustum(UnityEngine.Camera,UnityEngine.Bounds) - name: IsInFrustum(Camera, Bounds) - href: api/XRTK.Extensions.CameraExtensions.html#XRTK_Extensions_CameraExtensions_IsInFrustum_UnityEngine_Camera_UnityEngine_Bounds_ - commentId: M:XRTK.Extensions.CameraExtensions.IsInFrustum(UnityEngine.Camera,UnityEngine.Bounds) - fullName: XRTK.Extensions.CameraExtensions.IsInFrustum(UnityEngine.Camera, UnityEngine.Bounds) - nameWithType: CameraExtensions.IsInFrustum(Camera, Bounds) -- uid: XRTK.Extensions.CameraExtensions.IsInFrustum* - name: IsInFrustum - href: api/XRTK.Extensions.CameraExtensions.html#XRTK_Extensions_CameraExtensions_IsInFrustum_ - commentId: Overload:XRTK.Extensions.CameraExtensions.IsInFrustum - isSpec: "True" - fullName: XRTK.Extensions.CameraExtensions.IsInFrustum - nameWithType: CameraExtensions.IsInFrustum -- uid: XRTK.Extensions.CanvasExtensions - name: CanvasExtensions - href: api/XRTK.Extensions.CanvasExtensions.html - commentId: T:XRTK.Extensions.CanvasExtensions - fullName: XRTK.Extensions.CanvasExtensions - nameWithType: CanvasExtensions -- uid: XRTK.Extensions.CanvasExtensions.GetChildRectTransformAtPoint(UnityEngine.RectTransform,UnityEngine.Vector3,System.Boolean,System.Boolean,System.Boolean) - name: GetChildRectTransformAtPoint(RectTransform, Vector3, Boolean, Boolean, Boolean) - href: api/XRTK.Extensions.CanvasExtensions.html#XRTK_Extensions_CanvasExtensions_GetChildRectTransformAtPoint_UnityEngine_RectTransform_UnityEngine_Vector3_System_Boolean_System_Boolean_System_Boolean_ - commentId: M:XRTK.Extensions.CanvasExtensions.GetChildRectTransformAtPoint(UnityEngine.RectTransform,UnityEngine.Vector3,System.Boolean,System.Boolean,System.Boolean) - fullName: XRTK.Extensions.CanvasExtensions.GetChildRectTransformAtPoint(UnityEngine.RectTransform, UnityEngine.Vector3, System.Boolean, System.Boolean, System.Boolean) - nameWithType: CanvasExtensions.GetChildRectTransformAtPoint(RectTransform, Vector3, Boolean, Boolean, Boolean) -- uid: XRTK.Extensions.CanvasExtensions.GetChildRectTransformAtPoint* - name: GetChildRectTransformAtPoint - href: api/XRTK.Extensions.CanvasExtensions.html#XRTK_Extensions_CanvasExtensions_GetChildRectTransformAtPoint_ - commentId: Overload:XRTK.Extensions.CanvasExtensions.GetChildRectTransformAtPoint - isSpec: "True" - fullName: XRTK.Extensions.CanvasExtensions.GetChildRectTransformAtPoint - nameWithType: CanvasExtensions.GetChildRectTransformAtPoint -- uid: XRTK.Extensions.CanvasExtensions.GetLocalCorners(UnityEngine.Canvas) - name: GetLocalCorners(Canvas) - href: api/XRTK.Extensions.CanvasExtensions.html#XRTK_Extensions_CanvasExtensions_GetLocalCorners_UnityEngine_Canvas_ - commentId: M:XRTK.Extensions.CanvasExtensions.GetLocalCorners(UnityEngine.Canvas) - fullName: XRTK.Extensions.CanvasExtensions.GetLocalCorners(UnityEngine.Canvas) - nameWithType: CanvasExtensions.GetLocalCorners(Canvas) -- uid: XRTK.Extensions.CanvasExtensions.GetLocalCorners* - name: GetLocalCorners - href: api/XRTK.Extensions.CanvasExtensions.html#XRTK_Extensions_CanvasExtensions_GetLocalCorners_ - commentId: Overload:XRTK.Extensions.CanvasExtensions.GetLocalCorners - isSpec: "True" - fullName: XRTK.Extensions.CanvasExtensions.GetLocalCorners - nameWithType: CanvasExtensions.GetLocalCorners -- uid: XRTK.Extensions.CanvasExtensions.GetPlane(UnityEngine.Canvas) - name: GetPlane(Canvas) - href: api/XRTK.Extensions.CanvasExtensions.html#XRTK_Extensions_CanvasExtensions_GetPlane_UnityEngine_Canvas_ - commentId: M:XRTK.Extensions.CanvasExtensions.GetPlane(UnityEngine.Canvas) - fullName: XRTK.Extensions.CanvasExtensions.GetPlane(UnityEngine.Canvas) - nameWithType: CanvasExtensions.GetPlane(Canvas) -- uid: XRTK.Extensions.CanvasExtensions.GetPlane* - name: GetPlane - href: api/XRTK.Extensions.CanvasExtensions.html#XRTK_Extensions_CanvasExtensions_GetPlane_ - commentId: Overload:XRTK.Extensions.CanvasExtensions.GetPlane - isSpec: "True" - fullName: XRTK.Extensions.CanvasExtensions.GetPlane - nameWithType: CanvasExtensions.GetPlane -- uid: XRTK.Extensions.CanvasExtensions.GetScreenCorners(UnityEngine.Canvas) - name: GetScreenCorners(Canvas) - href: api/XRTK.Extensions.CanvasExtensions.html#XRTK_Extensions_CanvasExtensions_GetScreenCorners_UnityEngine_Canvas_ - commentId: M:XRTK.Extensions.CanvasExtensions.GetScreenCorners(UnityEngine.Canvas) - fullName: XRTK.Extensions.CanvasExtensions.GetScreenCorners(UnityEngine.Canvas) - nameWithType: CanvasExtensions.GetScreenCorners(Canvas) -- uid: XRTK.Extensions.CanvasExtensions.GetScreenCorners* - name: GetScreenCorners - href: api/XRTK.Extensions.CanvasExtensions.html#XRTK_Extensions_CanvasExtensions_GetScreenCorners_ - commentId: Overload:XRTK.Extensions.CanvasExtensions.GetScreenCorners - isSpec: "True" - fullName: XRTK.Extensions.CanvasExtensions.GetScreenCorners - nameWithType: CanvasExtensions.GetScreenCorners -- uid: XRTK.Extensions.CanvasExtensions.GetScreenRect(UnityEngine.Canvas) - name: GetScreenRect(Canvas) - href: api/XRTK.Extensions.CanvasExtensions.html#XRTK_Extensions_CanvasExtensions_GetScreenRect_UnityEngine_Canvas_ - commentId: M:XRTK.Extensions.CanvasExtensions.GetScreenRect(UnityEngine.Canvas) - fullName: XRTK.Extensions.CanvasExtensions.GetScreenRect(UnityEngine.Canvas) - nameWithType: CanvasExtensions.GetScreenRect(Canvas) -- uid: XRTK.Extensions.CanvasExtensions.GetScreenRect* - name: GetScreenRect - href: api/XRTK.Extensions.CanvasExtensions.html#XRTK_Extensions_CanvasExtensions_GetScreenRect_ - commentId: Overload:XRTK.Extensions.CanvasExtensions.GetScreenRect - isSpec: "True" - fullName: XRTK.Extensions.CanvasExtensions.GetScreenRect - nameWithType: CanvasExtensions.GetScreenRect -- uid: XRTK.Extensions.CanvasExtensions.GetViewportCorners(UnityEngine.Canvas) - name: GetViewportCorners(Canvas) - href: api/XRTK.Extensions.CanvasExtensions.html#XRTK_Extensions_CanvasExtensions_GetViewportCorners_UnityEngine_Canvas_ - commentId: M:XRTK.Extensions.CanvasExtensions.GetViewportCorners(UnityEngine.Canvas) - fullName: XRTK.Extensions.CanvasExtensions.GetViewportCorners(UnityEngine.Canvas) - nameWithType: CanvasExtensions.GetViewportCorners(Canvas) -- uid: XRTK.Extensions.CanvasExtensions.GetViewportCorners* - name: GetViewportCorners - href: api/XRTK.Extensions.CanvasExtensions.html#XRTK_Extensions_CanvasExtensions_GetViewportCorners_ - commentId: Overload:XRTK.Extensions.CanvasExtensions.GetViewportCorners - isSpec: "True" - fullName: XRTK.Extensions.CanvasExtensions.GetViewportCorners - nameWithType: CanvasExtensions.GetViewportCorners -- uid: XRTK.Extensions.CanvasExtensions.GetWorldCorners(UnityEngine.Canvas) - name: GetWorldCorners(Canvas) - href: api/XRTK.Extensions.CanvasExtensions.html#XRTK_Extensions_CanvasExtensions_GetWorldCorners_UnityEngine_Canvas_ - commentId: M:XRTK.Extensions.CanvasExtensions.GetWorldCorners(UnityEngine.Canvas) - fullName: XRTK.Extensions.CanvasExtensions.GetWorldCorners(UnityEngine.Canvas) - nameWithType: CanvasExtensions.GetWorldCorners(Canvas) -- uid: XRTK.Extensions.CanvasExtensions.GetWorldCorners* - name: GetWorldCorners - href: api/XRTK.Extensions.CanvasExtensions.html#XRTK_Extensions_CanvasExtensions_GetWorldCorners_ - commentId: Overload:XRTK.Extensions.CanvasExtensions.GetWorldCorners - isSpec: "True" - fullName: XRTK.Extensions.CanvasExtensions.GetWorldCorners - nameWithType: CanvasExtensions.GetWorldCorners -- uid: XRTK.Extensions.CanvasExtensions.Raycast(UnityEngine.Canvas,UnityEngine.Vector3,UnityEngine.Vector3,System.Single@,UnityEngine.Vector3@,UnityEngine.GameObject@) - name: Raycast(Canvas, Vector3, Vector3, out Single, out Vector3, out GameObject) - href: api/XRTK.Extensions.CanvasExtensions.html#XRTK_Extensions_CanvasExtensions_Raycast_UnityEngine_Canvas_UnityEngine_Vector3_UnityEngine_Vector3_System_Single__UnityEngine_Vector3__UnityEngine_GameObject__ - commentId: M:XRTK.Extensions.CanvasExtensions.Raycast(UnityEngine.Canvas,UnityEngine.Vector3,UnityEngine.Vector3,System.Single@,UnityEngine.Vector3@,UnityEngine.GameObject@) - name.vb: Raycast(Canvas, Vector3, Vector3, ByRef Single, ByRef Vector3, ByRef GameObject) - fullName: XRTK.Extensions.CanvasExtensions.Raycast(UnityEngine.Canvas, UnityEngine.Vector3, UnityEngine.Vector3, out System.Single, out UnityEngine.Vector3, out UnityEngine.GameObject) - fullName.vb: XRTK.Extensions.CanvasExtensions.Raycast(UnityEngine.Canvas, UnityEngine.Vector3, UnityEngine.Vector3, ByRef System.Single, ByRef UnityEngine.Vector3, ByRef UnityEngine.GameObject) - nameWithType: CanvasExtensions.Raycast(Canvas, Vector3, Vector3, out Single, out Vector3, out GameObject) - nameWithType.vb: CanvasExtensions.Raycast(Canvas, Vector3, Vector3, ByRef Single, ByRef Vector3, ByRef GameObject) -- uid: XRTK.Extensions.CanvasExtensions.Raycast* - name: Raycast - href: api/XRTK.Extensions.CanvasExtensions.html#XRTK_Extensions_CanvasExtensions_Raycast_ - commentId: Overload:XRTK.Extensions.CanvasExtensions.Raycast - isSpec: "True" - fullName: XRTK.Extensions.CanvasExtensions.Raycast - nameWithType: CanvasExtensions.Raycast -- uid: XRTK.Extensions.CollectionsExtensions - name: CollectionsExtensions - href: api/XRTK.Extensions.CollectionsExtensions.html - commentId: T:XRTK.Extensions.CollectionsExtensions - fullName: XRTK.Extensions.CollectionsExtensions - nameWithType: CollectionsExtensions -- uid: XRTK.Extensions.CollectionsExtensions.AsReadOnly* - name: AsReadOnly - href: api/XRTK.Extensions.CollectionsExtensions.html#XRTK_Extensions_CollectionsExtensions_AsReadOnly_ - commentId: Overload:XRTK.Extensions.CollectionsExtensions.AsReadOnly - isSpec: "True" - fullName: XRTK.Extensions.CollectionsExtensions.AsReadOnly - nameWithType: CollectionsExtensions.AsReadOnly -- uid: XRTK.Extensions.CollectionsExtensions.AsReadOnly``1(System.Collections.Generic.IList{``0}) - name: AsReadOnly(IList) - href: api/XRTK.Extensions.CollectionsExtensions.html#XRTK_Extensions_CollectionsExtensions_AsReadOnly__1_System_Collections_Generic_IList___0__ - commentId: M:XRTK.Extensions.CollectionsExtensions.AsReadOnly``1(System.Collections.Generic.IList{``0}) - name.vb: AsReadOnly(Of TElement)(IList(Of TElement)) - fullName: XRTK.Extensions.CollectionsExtensions.AsReadOnly(System.Collections.Generic.IList) - fullName.vb: XRTK.Extensions.CollectionsExtensions.AsReadOnly(Of TElement)(System.Collections.Generic.IList(Of TElement)) - nameWithType: CollectionsExtensions.AsReadOnly(IList) - nameWithType.vb: CollectionsExtensions.AsReadOnly(Of TElement)(IList(Of TElement)) -- uid: XRTK.Extensions.CollectionsExtensions.DisposeElements* - name: DisposeElements - href: api/XRTK.Extensions.CollectionsExtensions.html#XRTK_Extensions_CollectionsExtensions_DisposeElements_ - commentId: Overload:XRTK.Extensions.CollectionsExtensions.DisposeElements - isSpec: "True" - fullName: XRTK.Extensions.CollectionsExtensions.DisposeElements - nameWithType: CollectionsExtensions.DisposeElements -- uid: XRTK.Extensions.CollectionsExtensions.DisposeElements``1(System.Collections.Generic.IEnumerable{``0}) - name: DisposeElements(IEnumerable) - href: api/XRTK.Extensions.CollectionsExtensions.html#XRTK_Extensions_CollectionsExtensions_DisposeElements__1_System_Collections_Generic_IEnumerable___0__ - commentId: M:XRTK.Extensions.CollectionsExtensions.DisposeElements``1(System.Collections.Generic.IEnumerable{``0}) - name.vb: DisposeElements(Of TElement)(IEnumerable(Of TElement)) - fullName: XRTK.Extensions.CollectionsExtensions.DisposeElements(System.Collections.Generic.IEnumerable) - fullName.vb: XRTK.Extensions.CollectionsExtensions.DisposeElements(Of TElement)(System.Collections.Generic.IEnumerable(Of TElement)) - nameWithType: CollectionsExtensions.DisposeElements(IEnumerable) - nameWithType.vb: CollectionsExtensions.DisposeElements(Of TElement)(IEnumerable(Of TElement)) -- uid: XRTK.Extensions.CollectionsExtensions.DisposeElements``1(System.Collections.Generic.IList{``0}) - name: DisposeElements(IList) - href: api/XRTK.Extensions.CollectionsExtensions.html#XRTK_Extensions_CollectionsExtensions_DisposeElements__1_System_Collections_Generic_IList___0__ - commentId: M:XRTK.Extensions.CollectionsExtensions.DisposeElements``1(System.Collections.Generic.IList{``0}) - name.vb: DisposeElements(Of TElement)(IList(Of TElement)) - fullName: XRTK.Extensions.CollectionsExtensions.DisposeElements(System.Collections.Generic.IList) - fullName.vb: XRTK.Extensions.CollectionsExtensions.DisposeElements(Of TElement)(System.Collections.Generic.IList(Of TElement)) - nameWithType: CollectionsExtensions.DisposeElements(IList) - nameWithType.vb: CollectionsExtensions.DisposeElements(Of TElement)(IList(Of TElement)) -- uid: XRTK.Extensions.CollectionsExtensions.ExportDictionaryValuesAsArray* - name: ExportDictionaryValuesAsArray - href: api/XRTK.Extensions.CollectionsExtensions.html#XRTK_Extensions_CollectionsExtensions_ExportDictionaryValuesAsArray_ - commentId: Overload:XRTK.Extensions.CollectionsExtensions.ExportDictionaryValuesAsArray - isSpec: "True" - fullName: XRTK.Extensions.CollectionsExtensions.ExportDictionaryValuesAsArray - nameWithType: CollectionsExtensions.ExportDictionaryValuesAsArray -- uid: XRTK.Extensions.CollectionsExtensions.ExportDictionaryValuesAsArray``1(System.Collections.Generic.Dictionary{System.UInt32,``0}) - name: ExportDictionaryValuesAsArray(Dictionary) - href: api/XRTK.Extensions.CollectionsExtensions.html#XRTK_Extensions_CollectionsExtensions_ExportDictionaryValuesAsArray__1_System_Collections_Generic_Dictionary_System_UInt32___0__ - commentId: M:XRTK.Extensions.CollectionsExtensions.ExportDictionaryValuesAsArray``1(System.Collections.Generic.Dictionary{System.UInt32,``0}) - name.vb: ExportDictionaryValuesAsArray(Of T)(Dictionary(Of UInt32, T)) - fullName: XRTK.Extensions.CollectionsExtensions.ExportDictionaryValuesAsArray(System.Collections.Generic.Dictionary) - fullName.vb: XRTK.Extensions.CollectionsExtensions.ExportDictionaryValuesAsArray(Of T)(System.Collections.Generic.Dictionary(Of System.UInt32, T)) - nameWithType: CollectionsExtensions.ExportDictionaryValuesAsArray(Dictionary) - nameWithType.vb: CollectionsExtensions.ExportDictionaryValuesAsArray(Of T)(Dictionary(Of UInt32, T)) -- uid: XRTK.Extensions.CollectionsExtensions.GetInteractionByType(XRTK.Definitions.Devices.MixedRealityInteractionMapping[],XRTK.Definitions.Devices.DeviceInputType) - name: GetInteractionByType(MixedRealityInteractionMapping[], DeviceInputType) - href: api/XRTK.Extensions.CollectionsExtensions.html#XRTK_Extensions_CollectionsExtensions_GetInteractionByType_XRTK_Definitions_Devices_MixedRealityInteractionMapping___XRTK_Definitions_Devices_DeviceInputType_ - commentId: M:XRTK.Extensions.CollectionsExtensions.GetInteractionByType(XRTK.Definitions.Devices.MixedRealityInteractionMapping[],XRTK.Definitions.Devices.DeviceInputType) - name.vb: GetInteractionByType(MixedRealityInteractionMapping(), DeviceInputType) - fullName: XRTK.Extensions.CollectionsExtensions.GetInteractionByType(XRTK.Definitions.Devices.MixedRealityInteractionMapping[], XRTK.Definitions.Devices.DeviceInputType) - fullName.vb: XRTK.Extensions.CollectionsExtensions.GetInteractionByType(XRTK.Definitions.Devices.MixedRealityInteractionMapping(), XRTK.Definitions.Devices.DeviceInputType) - nameWithType: CollectionsExtensions.GetInteractionByType(MixedRealityInteractionMapping[], DeviceInputType) - nameWithType.vb: CollectionsExtensions.GetInteractionByType(MixedRealityInteractionMapping(), DeviceInputType) -- uid: XRTK.Extensions.CollectionsExtensions.GetInteractionByType* - name: GetInteractionByType - href: api/XRTK.Extensions.CollectionsExtensions.html#XRTK_Extensions_CollectionsExtensions_GetInteractionByType_ - commentId: Overload:XRTK.Extensions.CollectionsExtensions.GetInteractionByType - isSpec: "True" - fullName: XRTK.Extensions.CollectionsExtensions.GetInteractionByType - nameWithType: CollectionsExtensions.GetInteractionByType -- uid: XRTK.Extensions.CollectionsExtensions.SortedInsert* - name: SortedInsert - href: api/XRTK.Extensions.CollectionsExtensions.html#XRTK_Extensions_CollectionsExtensions_SortedInsert_ - commentId: Overload:XRTK.Extensions.CollectionsExtensions.SortedInsert - isSpec: "True" - fullName: XRTK.Extensions.CollectionsExtensions.SortedInsert - nameWithType: CollectionsExtensions.SortedInsert -- uid: XRTK.Extensions.CollectionsExtensions.SortedInsert``1(System.Collections.Generic.List{``0},``0,System.Collections.Generic.IComparer{``0}) - name: SortedInsert(List, TElement, IComparer) - href: api/XRTK.Extensions.CollectionsExtensions.html#XRTK_Extensions_CollectionsExtensions_SortedInsert__1_System_Collections_Generic_List___0____0_System_Collections_Generic_IComparer___0__ - commentId: M:XRTK.Extensions.CollectionsExtensions.SortedInsert``1(System.Collections.Generic.List{``0},``0,System.Collections.Generic.IComparer{``0}) - name.vb: SortedInsert(Of TElement)(List(Of TElement), TElement, IComparer(Of TElement)) - fullName: XRTK.Extensions.CollectionsExtensions.SortedInsert(System.Collections.Generic.List, TElement, System.Collections.Generic.IComparer) - fullName.vb: XRTK.Extensions.CollectionsExtensions.SortedInsert(Of TElement)(System.Collections.Generic.List(Of TElement), TElement, System.Collections.Generic.IComparer(Of TElement)) - nameWithType: CollectionsExtensions.SortedInsert(List, TElement, IComparer) - nameWithType.vb: CollectionsExtensions.SortedInsert(Of TElement)(List(Of TElement), TElement, IComparer(Of TElement)) -- uid: XRTK.Extensions.CollectionsExtensions.SupportsInputType(XRTK.Definitions.Devices.MixedRealityInteractionMapping[],XRTK.Definitions.Devices.DeviceInputType) - name: SupportsInputType(MixedRealityInteractionMapping[], DeviceInputType) - href: api/XRTK.Extensions.CollectionsExtensions.html#XRTK_Extensions_CollectionsExtensions_SupportsInputType_XRTK_Definitions_Devices_MixedRealityInteractionMapping___XRTK_Definitions_Devices_DeviceInputType_ - commentId: M:XRTK.Extensions.CollectionsExtensions.SupportsInputType(XRTK.Definitions.Devices.MixedRealityInteractionMapping[],XRTK.Definitions.Devices.DeviceInputType) - name.vb: SupportsInputType(MixedRealityInteractionMapping(), DeviceInputType) - fullName: XRTK.Extensions.CollectionsExtensions.SupportsInputType(XRTK.Definitions.Devices.MixedRealityInteractionMapping[], XRTK.Definitions.Devices.DeviceInputType) - fullName.vb: XRTK.Extensions.CollectionsExtensions.SupportsInputType(XRTK.Definitions.Devices.MixedRealityInteractionMapping(), XRTK.Definitions.Devices.DeviceInputType) - nameWithType: CollectionsExtensions.SupportsInputType(MixedRealityInteractionMapping[], DeviceInputType) - nameWithType.vb: CollectionsExtensions.SupportsInputType(MixedRealityInteractionMapping(), DeviceInputType) -- uid: XRTK.Extensions.CollectionsExtensions.SupportsInputType* - name: SupportsInputType - href: api/XRTK.Extensions.CollectionsExtensions.html#XRTK_Extensions_CollectionsExtensions_SupportsInputType_ - commentId: Overload:XRTK.Extensions.CollectionsExtensions.SupportsInputType - isSpec: "True" - fullName: XRTK.Extensions.CollectionsExtensions.SupportsInputType - nameWithType: CollectionsExtensions.SupportsInputType -- uid: XRTK.Extensions.CollectionsExtensions.ToReadOnlyCollection* - name: ToReadOnlyCollection - href: api/XRTK.Extensions.CollectionsExtensions.html#XRTK_Extensions_CollectionsExtensions_ToReadOnlyCollection_ - commentId: Overload:XRTK.Extensions.CollectionsExtensions.ToReadOnlyCollection - isSpec: "True" - fullName: XRTK.Extensions.CollectionsExtensions.ToReadOnlyCollection - nameWithType: CollectionsExtensions.ToReadOnlyCollection -- uid: XRTK.Extensions.CollectionsExtensions.ToReadOnlyCollection``1(System.Collections.Generic.IEnumerable{``0}) - name: ToReadOnlyCollection(IEnumerable) - href: api/XRTK.Extensions.CollectionsExtensions.html#XRTK_Extensions_CollectionsExtensions_ToReadOnlyCollection__1_System_Collections_Generic_IEnumerable___0__ - commentId: M:XRTK.Extensions.CollectionsExtensions.ToReadOnlyCollection``1(System.Collections.Generic.IEnumerable{``0}) - name.vb: ToReadOnlyCollection(Of TElement)(IEnumerable(Of TElement)) - fullName: XRTK.Extensions.CollectionsExtensions.ToReadOnlyCollection(System.Collections.Generic.IEnumerable) - fullName.vb: XRTK.Extensions.CollectionsExtensions.ToReadOnlyCollection(Of TElement)(System.Collections.Generic.IEnumerable(Of TElement)) - nameWithType: CollectionsExtensions.ToReadOnlyCollection(IEnumerable) - nameWithType.vb: CollectionsExtensions.ToReadOnlyCollection(Of TElement)(IEnumerable(Of TElement)) -- uid: XRTK.Extensions.ColliderExtensions - name: ColliderExtensions - href: api/XRTK.Extensions.ColliderExtensions.html - commentId: T:XRTK.Extensions.ColliderExtensions - fullName: XRTK.Extensions.ColliderExtensions - nameWithType: ColliderExtensions -- uid: XRTK.Extensions.ColliderExtensions.GetCornerPositionsWorldSpace(UnityEngine.Collider,UnityEngine.Transform,UnityEngine.Vector3[]@) - name: GetCornerPositionsWorldSpace(Collider, Transform, ref Vector3[]) - href: api/XRTK.Extensions.ColliderExtensions.html#XRTK_Extensions_ColliderExtensions_GetCornerPositionsWorldSpace_UnityEngine_Collider_UnityEngine_Transform_UnityEngine_Vector3____ - commentId: M:XRTK.Extensions.ColliderExtensions.GetCornerPositionsWorldSpace(UnityEngine.Collider,UnityEngine.Transform,UnityEngine.Vector3[]@) - name.vb: GetCornerPositionsWorldSpace(Collider, Transform, ByRef Vector3()) - fullName: XRTK.Extensions.ColliderExtensions.GetCornerPositionsWorldSpace(UnityEngine.Collider, UnityEngine.Transform, ref UnityEngine.Vector3[]) - fullName.vb: XRTK.Extensions.ColliderExtensions.GetCornerPositionsWorldSpace(UnityEngine.Collider, UnityEngine.Transform, ByRef UnityEngine.Vector3()) - nameWithType: ColliderExtensions.GetCornerPositionsWorldSpace(Collider, Transform, ref Vector3[]) - nameWithType.vb: ColliderExtensions.GetCornerPositionsWorldSpace(Collider, Transform, ByRef Vector3()) -- uid: XRTK.Extensions.ColliderExtensions.GetCornerPositionsWorldSpace* - name: GetCornerPositionsWorldSpace - href: api/XRTK.Extensions.ColliderExtensions.html#XRTK_Extensions_ColliderExtensions_GetCornerPositionsWorldSpace_ - commentId: Overload:XRTK.Extensions.ColliderExtensions.GetCornerPositionsWorldSpace - isSpec: "True" - fullName: XRTK.Extensions.ColliderExtensions.GetCornerPositionsWorldSpace - nameWithType: ColliderExtensions.GetCornerPositionsWorldSpace -- uid: XRTK.Extensions.ColliderExtensions.IsValidCollision(UnityEngine.Collider,UnityEngine.LayerMask[]) - name: IsValidCollision(Collider, LayerMask[]) - href: api/XRTK.Extensions.ColliderExtensions.html#XRTK_Extensions_ColliderExtensions_IsValidCollision_UnityEngine_Collider_UnityEngine_LayerMask___ - commentId: M:XRTK.Extensions.ColliderExtensions.IsValidCollision(UnityEngine.Collider,UnityEngine.LayerMask[]) - name.vb: IsValidCollision(Collider, LayerMask()) - fullName: XRTK.Extensions.ColliderExtensions.IsValidCollision(UnityEngine.Collider, UnityEngine.LayerMask[]) - fullName.vb: XRTK.Extensions.ColliderExtensions.IsValidCollision(UnityEngine.Collider, UnityEngine.LayerMask()) - nameWithType: ColliderExtensions.IsValidCollision(Collider, LayerMask[]) - nameWithType.vb: ColliderExtensions.IsValidCollision(Collider, LayerMask()) -- uid: XRTK.Extensions.ColliderExtensions.IsValidCollision* - name: IsValidCollision - href: api/XRTK.Extensions.ColliderExtensions.html#XRTK_Extensions_ColliderExtensions_IsValidCollision_ - commentId: Overload:XRTK.Extensions.ColliderExtensions.IsValidCollision - isSpec: "True" - fullName: XRTK.Extensions.ColliderExtensions.IsValidCollision - nameWithType: ColliderExtensions.IsValidCollision -- uid: XRTK.Extensions.CollisionExtensions - name: CollisionExtensions - href: api/XRTK.Extensions.CollisionExtensions.html - commentId: T:XRTK.Extensions.CollisionExtensions - fullName: XRTK.Extensions.CollisionExtensions - nameWithType: CollisionExtensions -- uid: XRTK.Extensions.CollisionExtensions.IsValidCollision(UnityEngine.Collision,UnityEngine.LayerMask[]) - name: IsValidCollision(Collision, LayerMask[]) - href: api/XRTK.Extensions.CollisionExtensions.html#XRTK_Extensions_CollisionExtensions_IsValidCollision_UnityEngine_Collision_UnityEngine_LayerMask___ - commentId: M:XRTK.Extensions.CollisionExtensions.IsValidCollision(UnityEngine.Collision,UnityEngine.LayerMask[]) - name.vb: IsValidCollision(Collision, LayerMask()) - fullName: XRTK.Extensions.CollisionExtensions.IsValidCollision(UnityEngine.Collision, UnityEngine.LayerMask[]) - fullName.vb: XRTK.Extensions.CollisionExtensions.IsValidCollision(UnityEngine.Collision, UnityEngine.LayerMask()) - nameWithType: CollisionExtensions.IsValidCollision(Collision, LayerMask[]) - nameWithType.vb: CollisionExtensions.IsValidCollision(Collision, LayerMask()) -- uid: XRTK.Extensions.CollisionExtensions.IsValidCollision* - name: IsValidCollision - href: api/XRTK.Extensions.CollisionExtensions.html#XRTK_Extensions_CollisionExtensions_IsValidCollision_ - commentId: Overload:XRTK.Extensions.CollisionExtensions.IsValidCollision - isSpec: "True" - fullName: XRTK.Extensions.CollisionExtensions.IsValidCollision - nameWithType: CollisionExtensions.IsValidCollision -- uid: XRTK.Extensions.Color32Extensions - name: Color32Extensions - href: api/XRTK.Extensions.Color32Extensions.html - commentId: T:XRTK.Extensions.Color32Extensions - fullName: XRTK.Extensions.Color32Extensions - nameWithType: Color32Extensions -- uid: XRTK.Extensions.Color32Extensions.ParseHexcode(System.String) - name: ParseHexcode(String) - href: api/XRTK.Extensions.Color32Extensions.html#XRTK_Extensions_Color32Extensions_ParseHexcode_System_String_ - commentId: M:XRTK.Extensions.Color32Extensions.ParseHexcode(System.String) - fullName: XRTK.Extensions.Color32Extensions.ParseHexcode(System.String) - nameWithType: Color32Extensions.ParseHexcode(String) -- uid: XRTK.Extensions.Color32Extensions.ParseHexcode* - name: ParseHexcode - href: api/XRTK.Extensions.Color32Extensions.html#XRTK_Extensions_Color32Extensions_ParseHexcode_ - commentId: Overload:XRTK.Extensions.Color32Extensions.ParseHexcode - isSpec: "True" - fullName: XRTK.Extensions.Color32Extensions.ParseHexcode - nameWithType: Color32Extensions.ParseHexcode -- uid: XRTK.Extensions.Color32Extensions.PremultiplyAlpha(UnityEngine.Color) - name: PremultiplyAlpha(Color) - href: api/XRTK.Extensions.Color32Extensions.html#XRTK_Extensions_Color32Extensions_PremultiplyAlpha_UnityEngine_Color_ - commentId: M:XRTK.Extensions.Color32Extensions.PremultiplyAlpha(UnityEngine.Color) - fullName: XRTK.Extensions.Color32Extensions.PremultiplyAlpha(UnityEngine.Color) - nameWithType: Color32Extensions.PremultiplyAlpha(Color) -- uid: XRTK.Extensions.Color32Extensions.PremultiplyAlpha(UnityEngine.Color32) - name: PremultiplyAlpha(Color32) - href: api/XRTK.Extensions.Color32Extensions.html#XRTK_Extensions_Color32Extensions_PremultiplyAlpha_UnityEngine_Color32_ - commentId: M:XRTK.Extensions.Color32Extensions.PremultiplyAlpha(UnityEngine.Color32) - fullName: XRTK.Extensions.Color32Extensions.PremultiplyAlpha(UnityEngine.Color32) - nameWithType: Color32Extensions.PremultiplyAlpha(Color32) -- uid: XRTK.Extensions.Color32Extensions.PremultiplyAlpha* - name: PremultiplyAlpha - href: api/XRTK.Extensions.Color32Extensions.html#XRTK_Extensions_Color32Extensions_PremultiplyAlpha_ - commentId: Overload:XRTK.Extensions.Color32Extensions.PremultiplyAlpha - isSpec: "True" - fullName: XRTK.Extensions.Color32Extensions.PremultiplyAlpha - nameWithType: Color32Extensions.PremultiplyAlpha -- uid: XRTK.Extensions.ComparerExtensions - name: ComparerExtensions - href: api/XRTK.Extensions.ComparerExtensions.html - commentId: T:XRTK.Extensions.ComparerExtensions - fullName: XRTK.Extensions.ComparerExtensions - nameWithType: ComparerExtensions -- uid: XRTK.Extensions.ComparerExtensions.GetReversed* - name: GetReversed - href: api/XRTK.Extensions.ComparerExtensions.html#XRTK_Extensions_ComparerExtensions_GetReversed_ - commentId: Overload:XRTK.Extensions.ComparerExtensions.GetReversed - isSpec: "True" - fullName: XRTK.Extensions.ComparerExtensions.GetReversed - nameWithType: ComparerExtensions.GetReversed -- uid: XRTK.Extensions.ComparerExtensions.GetReversed``1(System.Collections.Generic.IComparer{``0}) - name: GetReversed(IComparer) - href: api/XRTK.Extensions.ComparerExtensions.html#XRTK_Extensions_ComparerExtensions_GetReversed__1_System_Collections_Generic_IComparer___0__ - commentId: M:XRTK.Extensions.ComparerExtensions.GetReversed``1(System.Collections.Generic.IComparer{``0}) - name.vb: GetReversed(Of TElement)(IComparer(Of TElement)) - fullName: XRTK.Extensions.ComparerExtensions.GetReversed(System.Collections.Generic.IComparer) - fullName.vb: XRTK.Extensions.ComparerExtensions.GetReversed(Of TElement)(System.Collections.Generic.IComparer(Of TElement)) - nameWithType: ComparerExtensions.GetReversed(IComparer) - nameWithType.vb: ComparerExtensions.GetReversed(Of TElement)(IComparer(Of TElement)) -- uid: XRTK.Extensions.ComponentExtensions - name: ComponentExtensions - href: api/XRTK.Extensions.ComponentExtensions.html - commentId: T:XRTK.Extensions.ComponentExtensions - fullName: XRTK.Extensions.ComponentExtensions - nameWithType: ComponentExtensions -- uid: XRTK.Extensions.ComponentExtensions.EnsureComponent(UnityEngine.GameObject,System.Type) - name: EnsureComponent(GameObject, Type) - href: api/XRTK.Extensions.ComponentExtensions.html#XRTK_Extensions_ComponentExtensions_EnsureComponent_UnityEngine_GameObject_System_Type_ - commentId: M:XRTK.Extensions.ComponentExtensions.EnsureComponent(UnityEngine.GameObject,System.Type) - fullName: XRTK.Extensions.ComponentExtensions.EnsureComponent(UnityEngine.GameObject, System.Type) - nameWithType: ComponentExtensions.EnsureComponent(GameObject, Type) -- uid: XRTK.Extensions.ComponentExtensions.EnsureComponent* - name: EnsureComponent - href: api/XRTK.Extensions.ComponentExtensions.html#XRTK_Extensions_ComponentExtensions_EnsureComponent_ - commentId: Overload:XRTK.Extensions.ComponentExtensions.EnsureComponent - isSpec: "True" - fullName: XRTK.Extensions.ComponentExtensions.EnsureComponent - nameWithType: ComponentExtensions.EnsureComponent -- uid: XRTK.Extensions.ComponentExtensions.EnsureComponent``1(UnityEngine.Component) - name: EnsureComponent(Component) - href: api/XRTK.Extensions.ComponentExtensions.html#XRTK_Extensions_ComponentExtensions_EnsureComponent__1_UnityEngine_Component_ - commentId: M:XRTK.Extensions.ComponentExtensions.EnsureComponent``1(UnityEngine.Component) - name.vb: EnsureComponent(Of T)(Component) - fullName: XRTK.Extensions.ComponentExtensions.EnsureComponent(UnityEngine.Component) - fullName.vb: XRTK.Extensions.ComponentExtensions.EnsureComponent(Of T)(UnityEngine.Component) - nameWithType: ComponentExtensions.EnsureComponent(Component) - nameWithType.vb: ComponentExtensions.EnsureComponent(Of T)(Component) -- uid: XRTK.Extensions.ComponentExtensions.EnsureComponent``1(UnityEngine.GameObject) - name: EnsureComponent(GameObject) - href: api/XRTK.Extensions.ComponentExtensions.html#XRTK_Extensions_ComponentExtensions_EnsureComponent__1_UnityEngine_GameObject_ - commentId: M:XRTK.Extensions.ComponentExtensions.EnsureComponent``1(UnityEngine.GameObject) - name.vb: EnsureComponent(Of T)(GameObject) - fullName: XRTK.Extensions.ComponentExtensions.EnsureComponent(UnityEngine.GameObject) - fullName.vb: XRTK.Extensions.ComponentExtensions.EnsureComponent(Of T)(UnityEngine.GameObject) - nameWithType: ComponentExtensions.EnsureComponent(GameObject) - nameWithType.vb: ComponentExtensions.EnsureComponent(Of T)(GameObject) -- uid: XRTK.Extensions.ComponentExtensions.FindAncestorComponent* - name: FindAncestorComponent - href: api/XRTK.Extensions.ComponentExtensions.html#XRTK_Extensions_ComponentExtensions_FindAncestorComponent_ - commentId: Overload:XRTK.Extensions.ComponentExtensions.FindAncestorComponent - isSpec: "True" - fullName: XRTK.Extensions.ComponentExtensions.FindAncestorComponent - nameWithType: ComponentExtensions.FindAncestorComponent -- uid: XRTK.Extensions.ComponentExtensions.FindAncestorComponent``1(UnityEngine.Component,System.Boolean) - name: FindAncestorComponent(Component, Boolean) - href: api/XRTK.Extensions.ComponentExtensions.html#XRTK_Extensions_ComponentExtensions_FindAncestorComponent__1_UnityEngine_Component_System_Boolean_ - commentId: M:XRTK.Extensions.ComponentExtensions.FindAncestorComponent``1(UnityEngine.Component,System.Boolean) - name.vb: FindAncestorComponent(Of T)(Component, Boolean) - fullName: XRTK.Extensions.ComponentExtensions.FindAncestorComponent(UnityEngine.Component, System.Boolean) - fullName.vb: XRTK.Extensions.ComponentExtensions.FindAncestorComponent(Of T)(UnityEngine.Component, System.Boolean) - nameWithType: ComponentExtensions.FindAncestorComponent(Component, Boolean) - nameWithType.vb: ComponentExtensions.FindAncestorComponent(Of T)(Component, Boolean) -- uid: XRTK.Extensions.ComponentExtensions.SetActive(UnityEngine.Component,System.Boolean) - name: SetActive(Component, Boolean) - href: api/XRTK.Extensions.ComponentExtensions.html#XRTK_Extensions_ComponentExtensions_SetActive_UnityEngine_Component_System_Boolean_ - commentId: M:XRTK.Extensions.ComponentExtensions.SetActive(UnityEngine.Component,System.Boolean) - fullName: XRTK.Extensions.ComponentExtensions.SetActive(UnityEngine.Component, System.Boolean) - nameWithType: ComponentExtensions.SetActive(Component, Boolean) -- uid: XRTK.Extensions.ComponentExtensions.SetActive* - name: SetActive - href: api/XRTK.Extensions.ComponentExtensions.html#XRTK_Extensions_ComponentExtensions_SetActive_ - commentId: Overload:XRTK.Extensions.ComponentExtensions.SetActive - isSpec: "True" - fullName: XRTK.Extensions.ComponentExtensions.SetActive - nameWithType: ComponentExtensions.SetActive -- uid: XRTK.Extensions.ComponentExtensions.Validate* - name: Validate - href: api/XRTK.Extensions.ComponentExtensions.html#XRTK_Extensions_ComponentExtensions_Validate_ - commentId: Overload:XRTK.Extensions.ComponentExtensions.Validate - isSpec: "True" - fullName: XRTK.Extensions.ComponentExtensions.Validate - nameWithType: ComponentExtensions.Validate -- uid: XRTK.Extensions.ComponentExtensions.Validate``1(``0,System.String) - name: Validate(T, String) - href: api/XRTK.Extensions.ComponentExtensions.html#XRTK_Extensions_ComponentExtensions_Validate__1___0_System_String_ - commentId: M:XRTK.Extensions.ComponentExtensions.Validate``1(``0,System.String) - name.vb: Validate(Of T)(T, String) - fullName: XRTK.Extensions.ComponentExtensions.Validate(T, System.String) - fullName.vb: XRTK.Extensions.ComponentExtensions.Validate(Of T)(T, System.String) - nameWithType: ComponentExtensions.Validate(T, String) - nameWithType.vb: ComponentExtensions.Validate(Of T)(T, String) -- uid: XRTK.Extensions.ConverterExtensions - name: ConverterExtensions - href: api/XRTK.Extensions.ConverterExtensions.html - commentId: T:XRTK.Extensions.ConverterExtensions - fullName: XRTK.Extensions.ConverterExtensions - nameWithType: ConverterExtensions -- uid: XRTK.Extensions.ConverterExtensions.GetBuiltInTypeBytes* - name: GetBuiltInTypeBytes - href: api/XRTK.Extensions.ConverterExtensions.html#XRTK_Extensions_ConverterExtensions_GetBuiltInTypeBytes_ - commentId: Overload:XRTK.Extensions.ConverterExtensions.GetBuiltInTypeBytes - isSpec: "True" - fullName: XRTK.Extensions.ConverterExtensions.GetBuiltInTypeBytes - nameWithType: ConverterExtensions.GetBuiltInTypeBytes -- uid: XRTK.Extensions.ConverterExtensions.GetBuiltInTypeBytes``1(``0) - name: GetBuiltInTypeBytes(T) - href: api/XRTK.Extensions.ConverterExtensions.html#XRTK_Extensions_ConverterExtensions_GetBuiltInTypeBytes__1___0_ - commentId: M:XRTK.Extensions.ConverterExtensions.GetBuiltInTypeBytes``1(``0) - name.vb: GetBuiltInTypeBytes(Of T)(T) - fullName: XRTK.Extensions.ConverterExtensions.GetBuiltInTypeBytes(T) - fullName.vb: XRTK.Extensions.ConverterExtensions.GetBuiltInTypeBytes(Of T)(T) - nameWithType: ConverterExtensions.GetBuiltInTypeBytes(T) - nameWithType.vb: ConverterExtensions.GetBuiltInTypeBytes(Of T)(T) -- uid: XRTK.Extensions.ConverterExtensions.GetBuiltInTypeValueFromBytes* - name: GetBuiltInTypeValueFromBytes - href: api/XRTK.Extensions.ConverterExtensions.html#XRTK_Extensions_ConverterExtensions_GetBuiltInTypeValueFromBytes_ - commentId: Overload:XRTK.Extensions.ConverterExtensions.GetBuiltInTypeValueFromBytes - isSpec: "True" - fullName: XRTK.Extensions.ConverterExtensions.GetBuiltInTypeValueFromBytes - nameWithType: ConverterExtensions.GetBuiltInTypeValueFromBytes -- uid: XRTK.Extensions.ConverterExtensions.GetBuiltInTypeValueFromBytes``1(System.Byte[]) - name: GetBuiltInTypeValueFromBytes(Byte[]) - href: api/XRTK.Extensions.ConverterExtensions.html#XRTK_Extensions_ConverterExtensions_GetBuiltInTypeValueFromBytes__1_System_Byte___ - commentId: M:XRTK.Extensions.ConverterExtensions.GetBuiltInTypeValueFromBytes``1(System.Byte[]) - name.vb: GetBuiltInTypeValueFromBytes(Of T)(Byte()) - fullName: XRTK.Extensions.ConverterExtensions.GetBuiltInTypeValueFromBytes(System.Byte[]) - fullName.vb: XRTK.Extensions.ConverterExtensions.GetBuiltInTypeValueFromBytes(Of T)(System.Byte()) - nameWithType: ConverterExtensions.GetBuiltInTypeValueFromBytes(Byte[]) - nameWithType.vb: ConverterExtensions.GetBuiltInTypeValueFromBytes(Of T)(Byte()) -- uid: XRTK.Extensions.DoubleExtensions - name: DoubleExtensions - href: api/XRTK.Extensions.DoubleExtensions.html - commentId: T:XRTK.Extensions.DoubleExtensions - fullName: XRTK.Extensions.DoubleExtensions - nameWithType: DoubleExtensions -- uid: XRTK.Extensions.DoubleExtensions.Approximately(System.Double,System.Double,System.Double) - name: Approximately(Double, Double, Double) - href: api/XRTK.Extensions.DoubleExtensions.html#XRTK_Extensions_DoubleExtensions_Approximately_System_Double_System_Double_System_Double_ - commentId: M:XRTK.Extensions.DoubleExtensions.Approximately(System.Double,System.Double,System.Double) - fullName: XRTK.Extensions.DoubleExtensions.Approximately(System.Double, System.Double, System.Double) - nameWithType: DoubleExtensions.Approximately(Double, Double, Double) -- uid: XRTK.Extensions.DoubleExtensions.Approximately* - name: Approximately - href: api/XRTK.Extensions.DoubleExtensions.html#XRTK_Extensions_DoubleExtensions_Approximately_ - commentId: Overload:XRTK.Extensions.DoubleExtensions.Approximately - isSpec: "True" - fullName: XRTK.Extensions.DoubleExtensions.Approximately - nameWithType: DoubleExtensions.Approximately -- uid: XRTK.Extensions.EnumerableExtensions - name: EnumerableExtensions - href: api/XRTK.Extensions.EnumerableExtensions.html - commentId: T:XRTK.Extensions.EnumerableExtensions - fullName: XRTK.Extensions.EnumerableExtensions - nameWithType: EnumerableExtensions -- uid: XRTK.Extensions.EnumerableExtensions.MaxOrDefault* - name: MaxOrDefault - href: api/XRTK.Extensions.EnumerableExtensions.html#XRTK_Extensions_EnumerableExtensions_MaxOrDefault_ - commentId: Overload:XRTK.Extensions.EnumerableExtensions.MaxOrDefault - isSpec: "True" - fullName: XRTK.Extensions.EnumerableExtensions.MaxOrDefault - nameWithType: EnumerableExtensions.MaxOrDefault -- uid: XRTK.Extensions.EnumerableExtensions.MaxOrDefault``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IComparer{``0}) - name: MaxOrDefault(IEnumerable, IComparer) - href: api/XRTK.Extensions.EnumerableExtensions.html#XRTK_Extensions_EnumerableExtensions_MaxOrDefault__1_System_Collections_Generic_IEnumerable___0__System_Collections_Generic_IComparer___0__ - commentId: M:XRTK.Extensions.EnumerableExtensions.MaxOrDefault``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IComparer{``0}) - name.vb: MaxOrDefault(Of T)(IEnumerable(Of T), IComparer(Of T)) - fullName: XRTK.Extensions.EnumerableExtensions.MaxOrDefault(System.Collections.Generic.IEnumerable, System.Collections.Generic.IComparer) - fullName.vb: XRTK.Extensions.EnumerableExtensions.MaxOrDefault(Of T)(System.Collections.Generic.IEnumerable(Of T), System.Collections.Generic.IComparer(Of T)) - nameWithType: EnumerableExtensions.MaxOrDefault(IEnumerable, IComparer) - nameWithType.vb: EnumerableExtensions.MaxOrDefault(Of T)(IEnumerable(Of T), IComparer(Of T)) -- uid: XRTK.Extensions.EnumExtensions - name: EnumExtensions - href: api/XRTK.Extensions.EnumExtensions.html - commentId: T:XRTK.Extensions.EnumExtensions - fullName: XRTK.Extensions.EnumExtensions - nameWithType: EnumExtensions -- uid: XRTK.Extensions.EnumExtensions.HasFlags* - name: HasFlags - href: api/XRTK.Extensions.EnumExtensions.html#XRTK_Extensions_EnumExtensions_HasFlags_ - commentId: Overload:XRTK.Extensions.EnumExtensions.HasFlags - isSpec: "True" - fullName: XRTK.Extensions.EnumExtensions.HasFlags - nameWithType: EnumExtensions.HasFlags -- uid: XRTK.Extensions.EnumExtensions.HasFlags``1(``0,``0) - name: HasFlags(TEnum, TEnum) - href: api/XRTK.Extensions.EnumExtensions.html#XRTK_Extensions_EnumExtensions_HasFlags__1___0___0_ - commentId: M:XRTK.Extensions.EnumExtensions.HasFlags``1(``0,``0) - name.vb: HasFlags(Of TEnum)(TEnum, TEnum) - fullName: XRTK.Extensions.EnumExtensions.HasFlags(TEnum, TEnum) - fullName.vb: XRTK.Extensions.EnumExtensions.HasFlags(Of TEnum)(TEnum, TEnum) - nameWithType: EnumExtensions.HasFlags(TEnum, TEnum) - nameWithType.vb: EnumExtensions.HasFlags(Of TEnum)(TEnum, TEnum) -- uid: XRTK.Extensions.EnumExtensions.SetFlags* - name: SetFlags - href: api/XRTK.Extensions.EnumExtensions.html#XRTK_Extensions_EnumExtensions_SetFlags_ - commentId: Overload:XRTK.Extensions.EnumExtensions.SetFlags - isSpec: "True" - fullName: XRTK.Extensions.EnumExtensions.SetFlags - nameWithType: EnumExtensions.SetFlags -- uid: XRTK.Extensions.EnumExtensions.SetFlags``1(``0,``0) - name: SetFlags(TEnum, TEnum) - href: api/XRTK.Extensions.EnumExtensions.html#XRTK_Extensions_EnumExtensions_SetFlags__1___0___0_ - commentId: M:XRTK.Extensions.EnumExtensions.SetFlags``1(``0,``0) - name.vb: SetFlags(Of TEnum)(TEnum, TEnum) - fullName: XRTK.Extensions.EnumExtensions.SetFlags(TEnum, TEnum) - fullName.vb: XRTK.Extensions.EnumExtensions.SetFlags(Of TEnum)(TEnum, TEnum) - nameWithType: EnumExtensions.SetFlags(TEnum, TEnum) - nameWithType.vb: EnumExtensions.SetFlags(Of TEnum)(TEnum, TEnum) -- uid: XRTK.Extensions.EnumExtensions.ToggleFlags* - name: ToggleFlags - href: api/XRTK.Extensions.EnumExtensions.html#XRTK_Extensions_EnumExtensions_ToggleFlags_ - commentId: Overload:XRTK.Extensions.EnumExtensions.ToggleFlags - isSpec: "True" - fullName: XRTK.Extensions.EnumExtensions.ToggleFlags - nameWithType: EnumExtensions.ToggleFlags -- uid: XRTK.Extensions.EnumExtensions.ToggleFlags``1(``0,``0) - name: ToggleFlags(TEnum, TEnum) - href: api/XRTK.Extensions.EnumExtensions.html#XRTK_Extensions_EnumExtensions_ToggleFlags__1___0___0_ - commentId: M:XRTK.Extensions.EnumExtensions.ToggleFlags``1(``0,``0) - name.vb: ToggleFlags(Of TEnum)(TEnum, TEnum) - fullName: XRTK.Extensions.EnumExtensions.ToggleFlags(TEnum, TEnum) - fullName.vb: XRTK.Extensions.EnumExtensions.ToggleFlags(Of TEnum)(TEnum, TEnum) - nameWithType: EnumExtensions.ToggleFlags(TEnum, TEnum) - nameWithType.vb: EnumExtensions.ToggleFlags(Of TEnum)(TEnum, TEnum) -- uid: XRTK.Extensions.EnumExtensions.UnsetFlags* - name: UnsetFlags - href: api/XRTK.Extensions.EnumExtensions.html#XRTK_Extensions_EnumExtensions_UnsetFlags_ - commentId: Overload:XRTK.Extensions.EnumExtensions.UnsetFlags - isSpec: "True" - fullName: XRTK.Extensions.EnumExtensions.UnsetFlags - nameWithType: EnumExtensions.UnsetFlags -- uid: XRTK.Extensions.EnumExtensions.UnsetFlags``1(``0,``0) - name: UnsetFlags(TEnum, TEnum) - href: api/XRTK.Extensions.EnumExtensions.html#XRTK_Extensions_EnumExtensions_UnsetFlags__1___0___0_ - commentId: M:XRTK.Extensions.EnumExtensions.UnsetFlags``1(``0,``0) - name.vb: UnsetFlags(Of TEnum)(TEnum, TEnum) - fullName: XRTK.Extensions.EnumExtensions.UnsetFlags(TEnum, TEnum) - fullName.vb: XRTK.Extensions.EnumExtensions.UnsetFlags(Of TEnum)(TEnum, TEnum) - nameWithType: EnumExtensions.UnsetFlags(TEnum, TEnum) - nameWithType.vb: EnumExtensions.UnsetFlags(Of TEnum)(TEnum, TEnum) -- uid: XRTK.Extensions.EnumExtensions`1 - name: EnumExtensions - href: api/XRTK.Extensions.EnumExtensions-1.html - commentId: T:XRTK.Extensions.EnumExtensions`1 - name.vb: EnumExtensions(Of TEnum) - fullName: XRTK.Extensions.EnumExtensions - fullName.vb: XRTK.Extensions.EnumExtensions(Of TEnum) - nameWithType: EnumExtensions - nameWithType.vb: EnumExtensions(Of TEnum) -- uid: XRTK.Extensions.EnumExtensions`1.From* - name: From - href: api/XRTK.Extensions.EnumExtensions-1.html#XRTK_Extensions_EnumExtensions_1_From_ - commentId: Overload:XRTK.Extensions.EnumExtensions`1.From - isSpec: "True" - fullName: XRTK.Extensions.EnumExtensions.From - fullName.vb: XRTK.Extensions.EnumExtensions(Of TEnum).From - nameWithType: EnumExtensions.From - nameWithType.vb: EnumExtensions(Of TEnum).From -- uid: XRTK.Extensions.EnumExtensions`1.From``1(``0) - name: From(TSource) - href: api/XRTK.Extensions.EnumExtensions-1.html#XRTK_Extensions_EnumExtensions_1_From__1___0_ - commentId: M:XRTK.Extensions.EnumExtensions`1.From``1(``0) - name.vb: From(Of TSource)(TSource) - fullName: XRTK.Extensions.EnumExtensions.From(TSource) - fullName.vb: XRTK.Extensions.EnumExtensions(Of TEnum).From(Of TSource)(TSource) - nameWithType: EnumExtensions.From(TSource) - nameWithType.vb: EnumExtensions(Of TEnum).From(Of TSource)(TSource) -- uid: XRTK.Extensions.EnumExtensions`1.To* - name: To - href: api/XRTK.Extensions.EnumExtensions-1.html#XRTK_Extensions_EnumExtensions_1_To_ - commentId: Overload:XRTK.Extensions.EnumExtensions`1.To - isSpec: "True" - fullName: XRTK.Extensions.EnumExtensions.To - fullName.vb: XRTK.Extensions.EnumExtensions(Of TEnum).To - nameWithType: EnumExtensions.To - nameWithType.vb: EnumExtensions(Of TEnum).To -- uid: XRTK.Extensions.EnumExtensions`1.To``1(`0) - name: To(TEnum) - href: api/XRTK.Extensions.EnumExtensions-1.html#XRTK_Extensions_EnumExtensions_1_To__1__0_ - commentId: M:XRTK.Extensions.EnumExtensions`1.To``1(`0) - name.vb: To(Of TResult)(TEnum) - fullName: XRTK.Extensions.EnumExtensions.To(TEnum) - fullName.vb: XRTK.Extensions.EnumExtensions(Of TEnum).To(Of TResult)(TEnum) - nameWithType: EnumExtensions.To(TEnum) - nameWithType.vb: EnumExtensions(Of TEnum).To(Of TResult)(TEnum) -- uid: XRTK.Extensions.EventSystemExtensions - name: EventSystemExtensions - href: api/XRTK.Extensions.EventSystemExtensions.html - commentId: T:XRTK.Extensions.EventSystemExtensions - fullName: XRTK.Extensions.EventSystemExtensions - nameWithType: EventSystemExtensions -- uid: XRTK.Extensions.EventSystemExtensions.Raycast(EventSystem,PointerEventData,UnityEngine.LayerMask[]) - name: Raycast(EventSystem, PointerEventData, LayerMask[]) - href: api/XRTK.Extensions.EventSystemExtensions.html#XRTK_Extensions_EventSystemExtensions_Raycast_EventSystem_PointerEventData_UnityEngine_LayerMask___ - commentId: M:XRTK.Extensions.EventSystemExtensions.Raycast(EventSystem,PointerEventData,UnityEngine.LayerMask[]) - name.vb: Raycast(EventSystem, PointerEventData, LayerMask()) - fullName: XRTK.Extensions.EventSystemExtensions.Raycast(EventSystem, PointerEventData, UnityEngine.LayerMask[]) - fullName.vb: XRTK.Extensions.EventSystemExtensions.Raycast(EventSystem, PointerEventData, UnityEngine.LayerMask()) - nameWithType: EventSystemExtensions.Raycast(EventSystem, PointerEventData, LayerMask[]) - nameWithType.vb: EventSystemExtensions.Raycast(EventSystem, PointerEventData, LayerMask()) -- uid: XRTK.Extensions.EventSystemExtensions.Raycast* - name: Raycast - href: api/XRTK.Extensions.EventSystemExtensions.html#XRTK_Extensions_EventSystemExtensions_Raycast_ - commentId: Overload:XRTK.Extensions.EventSystemExtensions.Raycast - isSpec: "True" - fullName: XRTK.Extensions.EventSystemExtensions.Raycast - nameWithType: EventSystemExtensions.Raycast -- uid: XRTK.Extensions.FloatExtensions - name: FloatExtensions - href: api/XRTK.Extensions.FloatExtensions.html - commentId: T:XRTK.Extensions.FloatExtensions - fullName: XRTK.Extensions.FloatExtensions - nameWithType: FloatExtensions -- uid: XRTK.Extensions.FloatExtensions.Approximately(System.Single,System.Single,System.Single) - name: Approximately(Single, Single, Single) - href: api/XRTK.Extensions.FloatExtensions.html#XRTK_Extensions_FloatExtensions_Approximately_System_Single_System_Single_System_Single_ - commentId: M:XRTK.Extensions.FloatExtensions.Approximately(System.Single,System.Single,System.Single) - fullName: XRTK.Extensions.FloatExtensions.Approximately(System.Single, System.Single, System.Single) - nameWithType: FloatExtensions.Approximately(Single, Single, Single) -- uid: XRTK.Extensions.FloatExtensions.Approximately* - name: Approximately - href: api/XRTK.Extensions.FloatExtensions.html#XRTK_Extensions_FloatExtensions_Approximately_ - commentId: Overload:XRTK.Extensions.FloatExtensions.Approximately - isSpec: "True" - fullName: XRTK.Extensions.FloatExtensions.Approximately - nameWithType: FloatExtensions.Approximately -- uid: XRTK.Extensions.GameObjectExtensions - name: GameObjectExtensions - href: api/XRTK.Extensions.GameObjectExtensions.html - commentId: T:XRTK.Extensions.GameObjectExtensions - fullName: XRTK.Extensions.GameObjectExtensions - nameWithType: GameObjectExtensions -- uid: XRTK.Extensions.GameObjectExtensions.ApplyLayerCacheRecursively(UnityEngine.GameObject,System.Collections.Generic.Dictionary{UnityEngine.GameObject,System.Int32}) - name: ApplyLayerCacheRecursively(GameObject, Dictionary) - href: api/XRTK.Extensions.GameObjectExtensions.html#XRTK_Extensions_GameObjectExtensions_ApplyLayerCacheRecursively_UnityEngine_GameObject_System_Collections_Generic_Dictionary_UnityEngine_GameObject_System_Int32__ - commentId: M:XRTK.Extensions.GameObjectExtensions.ApplyLayerCacheRecursively(UnityEngine.GameObject,System.Collections.Generic.Dictionary{UnityEngine.GameObject,System.Int32}) - name.vb: ApplyLayerCacheRecursively(GameObject, Dictionary(Of GameObject, Int32)) - fullName: XRTK.Extensions.GameObjectExtensions.ApplyLayerCacheRecursively(UnityEngine.GameObject, System.Collections.Generic.Dictionary) - fullName.vb: XRTK.Extensions.GameObjectExtensions.ApplyLayerCacheRecursively(UnityEngine.GameObject, System.Collections.Generic.Dictionary(Of UnityEngine.GameObject, System.Int32)) - nameWithType: GameObjectExtensions.ApplyLayerCacheRecursively(GameObject, Dictionary) - nameWithType.vb: GameObjectExtensions.ApplyLayerCacheRecursively(GameObject, Dictionary(Of GameObject, Int32)) -- uid: XRTK.Extensions.GameObjectExtensions.ApplyLayerCacheRecursively* - name: ApplyLayerCacheRecursively - href: api/XRTK.Extensions.GameObjectExtensions.html#XRTK_Extensions_GameObjectExtensions_ApplyLayerCacheRecursively_ - commentId: Overload:XRTK.Extensions.GameObjectExtensions.ApplyLayerCacheRecursively - isSpec: "True" - fullName: XRTK.Extensions.GameObjectExtensions.ApplyLayerCacheRecursively - nameWithType: GameObjectExtensions.ApplyLayerCacheRecursively -- uid: XRTK.Extensions.GameObjectExtensions.ApplyToHierarchy(UnityEngine.GameObject,System.Action{UnityEngine.GameObject}) - name: ApplyToHierarchy(GameObject, Action) - href: api/XRTK.Extensions.GameObjectExtensions.html#XRTK_Extensions_GameObjectExtensions_ApplyToHierarchy_UnityEngine_GameObject_System_Action_UnityEngine_GameObject__ - commentId: M:XRTK.Extensions.GameObjectExtensions.ApplyToHierarchy(UnityEngine.GameObject,System.Action{UnityEngine.GameObject}) - name.vb: ApplyToHierarchy(GameObject, Action(Of GameObject)) - fullName: XRTK.Extensions.GameObjectExtensions.ApplyToHierarchy(UnityEngine.GameObject, System.Action) - fullName.vb: XRTK.Extensions.GameObjectExtensions.ApplyToHierarchy(UnityEngine.GameObject, System.Action(Of UnityEngine.GameObject)) - nameWithType: GameObjectExtensions.ApplyToHierarchy(GameObject, Action) - nameWithType.vb: GameObjectExtensions.ApplyToHierarchy(GameObject, Action(Of GameObject)) -- uid: XRTK.Extensions.GameObjectExtensions.ApplyToHierarchy* - name: ApplyToHierarchy - href: api/XRTK.Extensions.GameObjectExtensions.html#XRTK_Extensions_GameObjectExtensions_ApplyToHierarchy_ - commentId: Overload:XRTK.Extensions.GameObjectExtensions.ApplyToHierarchy - isSpec: "True" - fullName: XRTK.Extensions.GameObjectExtensions.ApplyToHierarchy - nameWithType: GameObjectExtensions.ApplyToHierarchy -- uid: XRTK.Extensions.GameObjectExtensions.FindAncestorComponent* - name: FindAncestorComponent - href: api/XRTK.Extensions.GameObjectExtensions.html#XRTK_Extensions_GameObjectExtensions_FindAncestorComponent_ - commentId: Overload:XRTK.Extensions.GameObjectExtensions.FindAncestorComponent - isSpec: "True" - fullName: XRTK.Extensions.GameObjectExtensions.FindAncestorComponent - nameWithType: GameObjectExtensions.FindAncestorComponent -- uid: XRTK.Extensions.GameObjectExtensions.FindAncestorComponent``1(UnityEngine.GameObject,System.Boolean) - name: FindAncestorComponent(GameObject, Boolean) - href: api/XRTK.Extensions.GameObjectExtensions.html#XRTK_Extensions_GameObjectExtensions_FindAncestorComponent__1_UnityEngine_GameObject_System_Boolean_ - commentId: M:XRTK.Extensions.GameObjectExtensions.FindAncestorComponent``1(UnityEngine.GameObject,System.Boolean) - name.vb: FindAncestorComponent(Of T)(GameObject, Boolean) - fullName: XRTK.Extensions.GameObjectExtensions.FindAncestorComponent(UnityEngine.GameObject, System.Boolean) - fullName.vb: XRTK.Extensions.GameObjectExtensions.FindAncestorComponent(Of T)(UnityEngine.GameObject, System.Boolean) - nameWithType: GameObjectExtensions.FindAncestorComponent(GameObject, Boolean) - nameWithType.vb: GameObjectExtensions.FindAncestorComponent(Of T)(GameObject, Boolean) -- uid: XRTK.Extensions.GameObjectExtensions.FindCommonRoot(UnityEngine.GameObject,UnityEngine.GameObject) - name: FindCommonRoot(GameObject, GameObject) - href: api/XRTK.Extensions.GameObjectExtensions.html#XRTK_Extensions_GameObjectExtensions_FindCommonRoot_UnityEngine_GameObject_UnityEngine_GameObject_ - commentId: M:XRTK.Extensions.GameObjectExtensions.FindCommonRoot(UnityEngine.GameObject,UnityEngine.GameObject) - fullName: XRTK.Extensions.GameObjectExtensions.FindCommonRoot(UnityEngine.GameObject, UnityEngine.GameObject) - nameWithType: GameObjectExtensions.FindCommonRoot(GameObject, GameObject) -- uid: XRTK.Extensions.GameObjectExtensions.FindCommonRoot* - name: FindCommonRoot - href: api/XRTK.Extensions.GameObjectExtensions.html#XRTK_Extensions_GameObjectExtensions_FindCommonRoot_ - commentId: Overload:XRTK.Extensions.GameObjectExtensions.FindCommonRoot - isSpec: "True" - fullName: XRTK.Extensions.GameObjectExtensions.FindCommonRoot - nameWithType: GameObjectExtensions.FindCommonRoot -- uid: XRTK.Extensions.GameObjectExtensions.ForEachComponent* - name: ForEachComponent - href: api/XRTK.Extensions.GameObjectExtensions.html#XRTK_Extensions_GameObjectExtensions_ForEachComponent_ - commentId: Overload:XRTK.Extensions.GameObjectExtensions.ForEachComponent - isSpec: "True" - fullName: XRTK.Extensions.GameObjectExtensions.ForEachComponent - nameWithType: GameObjectExtensions.ForEachComponent -- uid: XRTK.Extensions.GameObjectExtensions.ForEachComponent``1(UnityEngine.GameObject,System.Action{``0}) - name: ForEachComponent(GameObject, Action) - href: api/XRTK.Extensions.GameObjectExtensions.html#XRTK_Extensions_GameObjectExtensions_ForEachComponent__1_UnityEngine_GameObject_System_Action___0__ - commentId: M:XRTK.Extensions.GameObjectExtensions.ForEachComponent``1(UnityEngine.GameObject,System.Action{``0}) - name.vb: ForEachComponent(Of T)(GameObject, Action(Of T)) - fullName: XRTK.Extensions.GameObjectExtensions.ForEachComponent(UnityEngine.GameObject, System.Action) - fullName.vb: XRTK.Extensions.GameObjectExtensions.ForEachComponent(Of T)(UnityEngine.GameObject, System.Action(Of T)) - nameWithType: GameObjectExtensions.ForEachComponent(GameObject, Action) - nameWithType.vb: GameObjectExtensions.ForEachComponent(Of T)(GameObject, Action(Of T)) -- uid: XRTK.Extensions.GameObjectExtensions.GetOrAddComponent* - name: GetOrAddComponent - href: api/XRTK.Extensions.GameObjectExtensions.html#XRTK_Extensions_GameObjectExtensions_GetOrAddComponent_ - commentId: Overload:XRTK.Extensions.GameObjectExtensions.GetOrAddComponent - isSpec: "True" - fullName: XRTK.Extensions.GameObjectExtensions.GetOrAddComponent - nameWithType: GameObjectExtensions.GetOrAddComponent -- uid: XRTK.Extensions.GameObjectExtensions.GetOrAddComponent``1(UnityEngine.GameObject) - name: GetOrAddComponent(GameObject) - href: api/XRTK.Extensions.GameObjectExtensions.html#XRTK_Extensions_GameObjectExtensions_GetOrAddComponent__1_UnityEngine_GameObject_ - commentId: M:XRTK.Extensions.GameObjectExtensions.GetOrAddComponent``1(UnityEngine.GameObject) - name.vb: GetOrAddComponent(Of T)(GameObject) - fullName: XRTK.Extensions.GameObjectExtensions.GetOrAddComponent(UnityEngine.GameObject) - fullName.vb: XRTK.Extensions.GameObjectExtensions.GetOrAddComponent(Of T)(UnityEngine.GameObject) - nameWithType: GameObjectExtensions.GetOrAddComponent(GameObject) - nameWithType.vb: GameObjectExtensions.GetOrAddComponent(Of T)(GameObject) -- uid: XRTK.Extensions.GameObjectExtensions.IsInLayerMask(UnityEngine.GameObject,UnityEngine.LayerMask) - name: IsInLayerMask(GameObject, LayerMask) - href: api/XRTK.Extensions.GameObjectExtensions.html#XRTK_Extensions_GameObjectExtensions_IsInLayerMask_UnityEngine_GameObject_UnityEngine_LayerMask_ - commentId: M:XRTK.Extensions.GameObjectExtensions.IsInLayerMask(UnityEngine.GameObject,UnityEngine.LayerMask) - fullName: XRTK.Extensions.GameObjectExtensions.IsInLayerMask(UnityEngine.GameObject, UnityEngine.LayerMask) - nameWithType: GameObjectExtensions.IsInLayerMask(GameObject, LayerMask) -- uid: XRTK.Extensions.GameObjectExtensions.IsInLayerMask* - name: IsInLayerMask - href: api/XRTK.Extensions.GameObjectExtensions.html#XRTK_Extensions_GameObjectExtensions_IsInLayerMask_ - commentId: Overload:XRTK.Extensions.GameObjectExtensions.IsInLayerMask - isSpec: "True" - fullName: XRTK.Extensions.GameObjectExtensions.IsInLayerMask - nameWithType: GameObjectExtensions.IsInLayerMask -- uid: XRTK.Extensions.GameObjectExtensions.IsParentOrChildOf(UnityEngine.GameObject,UnityEngine.GameObject) - name: IsParentOrChildOf(GameObject, GameObject) - href: api/XRTK.Extensions.GameObjectExtensions.html#XRTK_Extensions_GameObjectExtensions_IsParentOrChildOf_UnityEngine_GameObject_UnityEngine_GameObject_ - commentId: M:XRTK.Extensions.GameObjectExtensions.IsParentOrChildOf(UnityEngine.GameObject,UnityEngine.GameObject) - fullName: XRTK.Extensions.GameObjectExtensions.IsParentOrChildOf(UnityEngine.GameObject, UnityEngine.GameObject) - nameWithType: GameObjectExtensions.IsParentOrChildOf(GameObject, GameObject) -- uid: XRTK.Extensions.GameObjectExtensions.IsParentOrChildOf* - name: IsParentOrChildOf - href: api/XRTK.Extensions.GameObjectExtensions.html#XRTK_Extensions_GameObjectExtensions_IsParentOrChildOf_ - commentId: Overload:XRTK.Extensions.GameObjectExtensions.IsParentOrChildOf - isSpec: "True" - fullName: XRTK.Extensions.GameObjectExtensions.IsParentOrChildOf - nameWithType: GameObjectExtensions.IsParentOrChildOf -- uid: XRTK.Extensions.GameObjectExtensions.SetChildrenActive(UnityEngine.GameObject,System.Boolean) - name: SetChildrenActive(GameObject, Boolean) - href: api/XRTK.Extensions.GameObjectExtensions.html#XRTK_Extensions_GameObjectExtensions_SetChildrenActive_UnityEngine_GameObject_System_Boolean_ - commentId: M:XRTK.Extensions.GameObjectExtensions.SetChildrenActive(UnityEngine.GameObject,System.Boolean) - fullName: XRTK.Extensions.GameObjectExtensions.SetChildrenActive(UnityEngine.GameObject, System.Boolean) - nameWithType: GameObjectExtensions.SetChildrenActive(GameObject, Boolean) -- uid: XRTK.Extensions.GameObjectExtensions.SetChildrenActive* - name: SetChildrenActive - href: api/XRTK.Extensions.GameObjectExtensions.html#XRTK_Extensions_GameObjectExtensions_SetChildrenActive_ - commentId: Overload:XRTK.Extensions.GameObjectExtensions.SetChildrenActive - isSpec: "True" - fullName: XRTK.Extensions.GameObjectExtensions.SetChildrenActive - nameWithType: GameObjectExtensions.SetChildrenActive -- uid: XRTK.Extensions.GameObjectExtensions.SetLayerRecursively(UnityEngine.GameObject,System.Int32) - name: SetLayerRecursively(GameObject, Int32) - href: api/XRTK.Extensions.GameObjectExtensions.html#XRTK_Extensions_GameObjectExtensions_SetLayerRecursively_UnityEngine_GameObject_System_Int32_ - commentId: M:XRTK.Extensions.GameObjectExtensions.SetLayerRecursively(UnityEngine.GameObject,System.Int32) - fullName: XRTK.Extensions.GameObjectExtensions.SetLayerRecursively(UnityEngine.GameObject, System.Int32) - nameWithType: GameObjectExtensions.SetLayerRecursively(GameObject, Int32) -- uid: XRTK.Extensions.GameObjectExtensions.SetLayerRecursively(UnityEngine.GameObject,System.Int32,System.Collections.Generic.Dictionary{UnityEngine.GameObject,System.Int32}@) - name: SetLayerRecursively(GameObject, Int32, out Dictionary) - href: api/XRTK.Extensions.GameObjectExtensions.html#XRTK_Extensions_GameObjectExtensions_SetLayerRecursively_UnityEngine_GameObject_System_Int32_System_Collections_Generic_Dictionary_UnityEngine_GameObject_System_Int32___ - commentId: M:XRTK.Extensions.GameObjectExtensions.SetLayerRecursively(UnityEngine.GameObject,System.Int32,System.Collections.Generic.Dictionary{UnityEngine.GameObject,System.Int32}@) - name.vb: SetLayerRecursively(GameObject, Int32, ByRef Dictionary(Of GameObject, Int32)) - fullName: XRTK.Extensions.GameObjectExtensions.SetLayerRecursively(UnityEngine.GameObject, System.Int32, out System.Collections.Generic.Dictionary) - fullName.vb: XRTK.Extensions.GameObjectExtensions.SetLayerRecursively(UnityEngine.GameObject, System.Int32, ByRef System.Collections.Generic.Dictionary(Of UnityEngine.GameObject, System.Int32)) - nameWithType: GameObjectExtensions.SetLayerRecursively(GameObject, Int32, out Dictionary) - nameWithType.vb: GameObjectExtensions.SetLayerRecursively(GameObject, Int32, ByRef Dictionary(Of GameObject, Int32)) -- uid: XRTK.Extensions.GameObjectExtensions.SetLayerRecursively* - name: SetLayerRecursively - href: api/XRTK.Extensions.GameObjectExtensions.html#XRTK_Extensions_GameObjectExtensions_SetLayerRecursively_ - commentId: Overload:XRTK.Extensions.GameObjectExtensions.SetLayerRecursively - isSpec: "True" - fullName: XRTK.Extensions.GameObjectExtensions.SetLayerRecursively - nameWithType: GameObjectExtensions.SetLayerRecursively -- uid: XRTK.Extensions.GameObjectExtensions.SetRenderingActive(UnityEngine.GameObject,System.Boolean,System.Boolean) - name: SetRenderingActive(GameObject, Boolean, Boolean) - href: api/XRTK.Extensions.GameObjectExtensions.html#XRTK_Extensions_GameObjectExtensions_SetRenderingActive_UnityEngine_GameObject_System_Boolean_System_Boolean_ - commentId: M:XRTK.Extensions.GameObjectExtensions.SetRenderingActive(UnityEngine.GameObject,System.Boolean,System.Boolean) - fullName: XRTK.Extensions.GameObjectExtensions.SetRenderingActive(UnityEngine.GameObject, System.Boolean, System.Boolean) - nameWithType: GameObjectExtensions.SetRenderingActive(GameObject, Boolean, Boolean) -- uid: XRTK.Extensions.GameObjectExtensions.SetRenderingActive* - name: SetRenderingActive - href: api/XRTK.Extensions.GameObjectExtensions.html#XRTK_Extensions_GameObjectExtensions_SetRenderingActive_ - commentId: Overload:XRTK.Extensions.GameObjectExtensions.SetRenderingActive - isSpec: "True" - fullName: XRTK.Extensions.GameObjectExtensions.SetRenderingActive - nameWithType: GameObjectExtensions.SetRenderingActive -- uid: XRTK.Extensions.HandControllerPoseProfileExtensions - name: HandControllerPoseProfileExtensions - href: api/XRTK.Extensions.HandControllerPoseProfileExtensions.html - commentId: T:XRTK.Extensions.HandControllerPoseProfileExtensions - fullName: XRTK.Extensions.HandControllerPoseProfileExtensions - nameWithType: HandControllerPoseProfileExtensions -- uid: XRTK.Extensions.HandControllerPoseProfileExtensions.ToHandData(XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile) - name: ToHandData(HandControllerPoseProfile) - href: api/XRTK.Extensions.HandControllerPoseProfileExtensions.html#XRTK_Extensions_HandControllerPoseProfileExtensions_ToHandData_XRTK_Definitions_Controllers_Hands_HandControllerPoseProfile_ - commentId: M:XRTK.Extensions.HandControllerPoseProfileExtensions.ToHandData(XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile) - fullName: XRTK.Extensions.HandControllerPoseProfileExtensions.ToHandData(XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile) - nameWithType: HandControllerPoseProfileExtensions.ToHandData(HandControllerPoseProfile) -- uid: XRTK.Extensions.HandControllerPoseProfileExtensions.ToHandData* - name: ToHandData - href: api/XRTK.Extensions.HandControllerPoseProfileExtensions.html#XRTK_Extensions_HandControllerPoseProfileExtensions_ToHandData_ - commentId: Overload:XRTK.Extensions.HandControllerPoseProfileExtensions.ToHandData - isSpec: "True" - fullName: XRTK.Extensions.HandControllerPoseProfileExtensions.ToHandData - nameWithType: HandControllerPoseProfileExtensions.ToHandData -- uid: XRTK.Extensions.InteractionMappingsExtensions - name: InteractionMappingsExtensions - href: api/XRTK.Extensions.InteractionMappingsExtensions.html - commentId: T:XRTK.Extensions.InteractionMappingsExtensions - fullName: XRTK.Extensions.InteractionMappingsExtensions - nameWithType: InteractionMappingsExtensions -- uid: XRTK.Extensions.InteractionMappingsExtensions.RaiseInputAction(XRTK.Definitions.Devices.MixedRealityInteractionMapping,XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.Utilities.Handedness) - name: RaiseInputAction(MixedRealityInteractionMapping, IMixedRealityInputSource, Handedness) - href: api/XRTK.Extensions.InteractionMappingsExtensions.html#XRTK_Extensions_InteractionMappingsExtensions_RaiseInputAction_XRTK_Definitions_Devices_MixedRealityInteractionMapping_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Definitions_Utilities_Handedness_ - commentId: M:XRTK.Extensions.InteractionMappingsExtensions.RaiseInputAction(XRTK.Definitions.Devices.MixedRealityInteractionMapping,XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.Utilities.Handedness) - fullName: XRTK.Extensions.InteractionMappingsExtensions.RaiseInputAction(XRTK.Definitions.Devices.MixedRealityInteractionMapping, XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Definitions.Utilities.Handedness) - nameWithType: InteractionMappingsExtensions.RaiseInputAction(MixedRealityInteractionMapping, IMixedRealityInputSource, Handedness) -- uid: XRTK.Extensions.InteractionMappingsExtensions.RaiseInputAction* - name: RaiseInputAction - href: api/XRTK.Extensions.InteractionMappingsExtensions.html#XRTK_Extensions_InteractionMappingsExtensions_RaiseInputAction_ - commentId: Overload:XRTK.Extensions.InteractionMappingsExtensions.RaiseInputAction - isSpec: "True" - fullName: XRTK.Extensions.InteractionMappingsExtensions.RaiseInputAction - nameWithType: InteractionMappingsExtensions.RaiseInputAction -- uid: XRTK.Extensions.LayerExtensions - name: LayerExtensions - href: api/XRTK.Extensions.LayerExtensions.html - commentId: T:XRTK.Extensions.LayerExtensions - fullName: XRTK.Extensions.LayerExtensions - nameWithType: LayerExtensions -- uid: XRTK.Extensions.LayerExtensions.Combine(UnityEngine.LayerMask[]) - name: Combine(LayerMask[]) - href: api/XRTK.Extensions.LayerExtensions.html#XRTK_Extensions_LayerExtensions_Combine_UnityEngine_LayerMask___ - commentId: M:XRTK.Extensions.LayerExtensions.Combine(UnityEngine.LayerMask[]) - name.vb: Combine(LayerMask()) - fullName: XRTK.Extensions.LayerExtensions.Combine(UnityEngine.LayerMask[]) - fullName.vb: XRTK.Extensions.LayerExtensions.Combine(UnityEngine.LayerMask()) - nameWithType: LayerExtensions.Combine(LayerMask[]) - nameWithType.vb: LayerExtensions.Combine(LayerMask()) -- uid: XRTK.Extensions.LayerExtensions.Combine* - name: Combine - href: api/XRTK.Extensions.LayerExtensions.html#XRTK_Extensions_LayerExtensions_Combine_ - commentId: Overload:XRTK.Extensions.LayerExtensions.Combine - isSpec: "True" - fullName: XRTK.Extensions.LayerExtensions.Combine - nameWithType: LayerExtensions.Combine -- uid: XRTK.Extensions.LayerExtensions.FindLayerListIndex(System.Int32,UnityEngine.LayerMask[]) - name: FindLayerListIndex(Int32, LayerMask[]) - href: api/XRTK.Extensions.LayerExtensions.html#XRTK_Extensions_LayerExtensions_FindLayerListIndex_System_Int32_UnityEngine_LayerMask___ - commentId: M:XRTK.Extensions.LayerExtensions.FindLayerListIndex(System.Int32,UnityEngine.LayerMask[]) - name.vb: FindLayerListIndex(Int32, LayerMask()) - fullName: XRTK.Extensions.LayerExtensions.FindLayerListIndex(System.Int32, UnityEngine.LayerMask[]) - fullName.vb: XRTK.Extensions.LayerExtensions.FindLayerListIndex(System.Int32, UnityEngine.LayerMask()) - nameWithType: LayerExtensions.FindLayerListIndex(Int32, LayerMask[]) - nameWithType.vb: LayerExtensions.FindLayerListIndex(Int32, LayerMask()) -- uid: XRTK.Extensions.LayerExtensions.FindLayerListIndex* - name: FindLayerListIndex - href: api/XRTK.Extensions.LayerExtensions.html#XRTK_Extensions_LayerExtensions_FindLayerListIndex_ - commentId: Overload:XRTK.Extensions.LayerExtensions.FindLayerListIndex - isSpec: "True" - fullName: XRTK.Extensions.LayerExtensions.FindLayerListIndex - nameWithType: LayerExtensions.FindLayerListIndex -- uid: XRTK.Extensions.LayerExtensions.GetLayerId(System.Int32@,System.String) - name: GetLayerId(ref Int32, String) - href: api/XRTK.Extensions.LayerExtensions.html#XRTK_Extensions_LayerExtensions_GetLayerId_System_Int32__System_String_ - commentId: M:XRTK.Extensions.LayerExtensions.GetLayerId(System.Int32@,System.String) - name.vb: GetLayerId(ByRef Int32, String) - fullName: XRTK.Extensions.LayerExtensions.GetLayerId(ref System.Int32, System.String) - fullName.vb: XRTK.Extensions.LayerExtensions.GetLayerId(ByRef System.Int32, System.String) - nameWithType: LayerExtensions.GetLayerId(ref Int32, String) - nameWithType.vb: LayerExtensions.GetLayerId(ByRef Int32, String) -- uid: XRTK.Extensions.LayerExtensions.GetLayerId* - name: GetLayerId - href: api/XRTK.Extensions.LayerExtensions.html#XRTK_Extensions_LayerExtensions_GetLayerId_ - commentId: Overload:XRTK.Extensions.LayerExtensions.GetLayerId - isSpec: "True" - fullName: XRTK.Extensions.LayerExtensions.GetLayerId - nameWithType: LayerExtensions.GetLayerId -- uid: XRTK.Extensions.LayerExtensions.InvalidLayerId - name: InvalidLayerId - href: api/XRTK.Extensions.LayerExtensions.html#XRTK_Extensions_LayerExtensions_InvalidLayerId - commentId: F:XRTK.Extensions.LayerExtensions.InvalidLayerId - fullName: XRTK.Extensions.LayerExtensions.InvalidLayerId - nameWithType: LayerExtensions.InvalidLayerId -- uid: XRTK.Extensions.LayerExtensions.IsInLayerMask(System.Int32,System.Int32) - name: IsInLayerMask(Int32, Int32) - href: api/XRTK.Extensions.LayerExtensions.html#XRTK_Extensions_LayerExtensions_IsInLayerMask_System_Int32_System_Int32_ - commentId: M:XRTK.Extensions.LayerExtensions.IsInLayerMask(System.Int32,System.Int32) - fullName: XRTK.Extensions.LayerExtensions.IsInLayerMask(System.Int32, System.Int32) - nameWithType: LayerExtensions.IsInLayerMask(Int32, Int32) -- uid: XRTK.Extensions.LayerExtensions.IsInLayerMask* - name: IsInLayerMask - href: api/XRTK.Extensions.LayerExtensions.html#XRTK_Extensions_LayerExtensions_IsInLayerMask_ - commentId: Overload:XRTK.Extensions.LayerExtensions.IsInLayerMask - isSpec: "True" - fullName: XRTK.Extensions.LayerExtensions.IsInLayerMask - nameWithType: LayerExtensions.IsInLayerMask -- uid: XRTK.Extensions.LayerExtensions.ToMask(System.Int32) - name: ToMask(Int32) - href: api/XRTK.Extensions.LayerExtensions.html#XRTK_Extensions_LayerExtensions_ToMask_System_Int32_ - commentId: M:XRTK.Extensions.LayerExtensions.ToMask(System.Int32) - fullName: XRTK.Extensions.LayerExtensions.ToMask(System.Int32) - nameWithType: LayerExtensions.ToMask(Int32) -- uid: XRTK.Extensions.LayerExtensions.ToMask* - name: ToMask - href: api/XRTK.Extensions.LayerExtensions.html#XRTK_Extensions_LayerExtensions_ToMask_ - commentId: Overload:XRTK.Extensions.LayerExtensions.ToMask - isSpec: "True" - fullName: XRTK.Extensions.LayerExtensions.ToMask - nameWithType: LayerExtensions.ToMask -- uid: XRTK.Extensions.MathExtensions - name: MathExtensions - href: api/XRTK.Extensions.MathExtensions.html - commentId: T:XRTK.Extensions.MathExtensions - fullName: XRTK.Extensions.MathExtensions - nameWithType: MathExtensions -- uid: XRTK.Extensions.MathExtensions.ClampComponentWise(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Vector3) - name: ClampComponentWise(Vector3, Vector3, Vector3) - href: api/XRTK.Extensions.MathExtensions.html#XRTK_Extensions_MathExtensions_ClampComponentWise_UnityEngine_Vector3_UnityEngine_Vector3_UnityEngine_Vector3_ - commentId: M:XRTK.Extensions.MathExtensions.ClampComponentWise(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Vector3) - fullName: XRTK.Extensions.MathExtensions.ClampComponentWise(UnityEngine.Vector3, UnityEngine.Vector3, UnityEngine.Vector3) - nameWithType: MathExtensions.ClampComponentWise(Vector3, Vector3, Vector3) -- uid: XRTK.Extensions.MathExtensions.ClampComponentWise* - name: ClampComponentWise - href: api/XRTK.Extensions.MathExtensions.html#XRTK_Extensions_MathExtensions_ClampComponentWise_ - commentId: Overload:XRTK.Extensions.MathExtensions.ClampComponentWise - isSpec: "True" - fullName: XRTK.Extensions.MathExtensions.ClampComponentWise - nameWithType: MathExtensions.ClampComponentWise -- uid: XRTK.Extensions.MathExtensions.CubicToLinearIndex(UnityEngine.Vector3Int,UnityEngine.Vector3Int) - name: CubicToLinearIndex(Vector3Int, Vector3Int) - href: api/XRTK.Extensions.MathExtensions.html#XRTK_Extensions_MathExtensions_CubicToLinearIndex_UnityEngine_Vector3Int_UnityEngine_Vector3Int_ - commentId: M:XRTK.Extensions.MathExtensions.CubicToLinearIndex(UnityEngine.Vector3Int,UnityEngine.Vector3Int) - fullName: XRTK.Extensions.MathExtensions.CubicToLinearIndex(UnityEngine.Vector3Int, UnityEngine.Vector3Int) - nameWithType: MathExtensions.CubicToLinearIndex(Vector3Int, Vector3Int) -- uid: XRTK.Extensions.MathExtensions.CubicToLinearIndex* - name: CubicToLinearIndex - href: api/XRTK.Extensions.MathExtensions.html#XRTK_Extensions_MathExtensions_CubicToLinearIndex_ - commentId: Overload:XRTK.Extensions.MathExtensions.CubicToLinearIndex - isSpec: "True" - fullName: XRTK.Extensions.MathExtensions.CubicToLinearIndex - nameWithType: MathExtensions.CubicToLinearIndex -- uid: XRTK.Extensions.MathExtensions.LinearToCubicIndex(System.Int32,UnityEngine.Vector3Int) - name: LinearToCubicIndex(Int32, Vector3Int) - href: api/XRTK.Extensions.MathExtensions.html#XRTK_Extensions_MathExtensions_LinearToCubicIndex_System_Int32_UnityEngine_Vector3Int_ - commentId: M:XRTK.Extensions.MathExtensions.LinearToCubicIndex(System.Int32,UnityEngine.Vector3Int) - fullName: XRTK.Extensions.MathExtensions.LinearToCubicIndex(System.Int32, UnityEngine.Vector3Int) - nameWithType: MathExtensions.LinearToCubicIndex(Int32, Vector3Int) -- uid: XRTK.Extensions.MathExtensions.LinearToCubicIndex* - name: LinearToCubicIndex - href: api/XRTK.Extensions.MathExtensions.html#XRTK_Extensions_MathExtensions_LinearToCubicIndex_ - commentId: Overload:XRTK.Extensions.MathExtensions.LinearToCubicIndex - isSpec: "True" - fullName: XRTK.Extensions.MathExtensions.LinearToCubicIndex - nameWithType: MathExtensions.LinearToCubicIndex -- uid: XRTK.Extensions.MathExtensions.MostSignificantBit(System.Int32) - name: MostSignificantBit(Int32) - href: api/XRTK.Extensions.MathExtensions.html#XRTK_Extensions_MathExtensions_MostSignificantBit_System_Int32_ - commentId: M:XRTK.Extensions.MathExtensions.MostSignificantBit(System.Int32) - fullName: XRTK.Extensions.MathExtensions.MostSignificantBit(System.Int32) - nameWithType: MathExtensions.MostSignificantBit(Int32) -- uid: XRTK.Extensions.MathExtensions.MostSignificantBit* - name: MostSignificantBit - href: api/XRTK.Extensions.MathExtensions.html#XRTK_Extensions_MathExtensions_MostSignificantBit_ - commentId: Overload:XRTK.Extensions.MathExtensions.MostSignificantBit - isSpec: "True" - fullName: XRTK.Extensions.MathExtensions.MostSignificantBit - nameWithType: MathExtensions.MostSignificantBit -- uid: XRTK.Extensions.MathExtensions.PowerOfTwoGreaterThanOrEqualTo(System.Int32) - name: PowerOfTwoGreaterThanOrEqualTo(Int32) - href: api/XRTK.Extensions.MathExtensions.html#XRTK_Extensions_MathExtensions_PowerOfTwoGreaterThanOrEqualTo_System_Int32_ - commentId: M:XRTK.Extensions.MathExtensions.PowerOfTwoGreaterThanOrEqualTo(System.Int32) - fullName: XRTK.Extensions.MathExtensions.PowerOfTwoGreaterThanOrEqualTo(System.Int32) - nameWithType: MathExtensions.PowerOfTwoGreaterThanOrEqualTo(Int32) -- uid: XRTK.Extensions.MathExtensions.PowerOfTwoGreaterThanOrEqualTo(UnityEngine.Vector3Int) - name: PowerOfTwoGreaterThanOrEqualTo(Vector3Int) - href: api/XRTK.Extensions.MathExtensions.html#XRTK_Extensions_MathExtensions_PowerOfTwoGreaterThanOrEqualTo_UnityEngine_Vector3Int_ - commentId: M:XRTK.Extensions.MathExtensions.PowerOfTwoGreaterThanOrEqualTo(UnityEngine.Vector3Int) - fullName: XRTK.Extensions.MathExtensions.PowerOfTwoGreaterThanOrEqualTo(UnityEngine.Vector3Int) - nameWithType: MathExtensions.PowerOfTwoGreaterThanOrEqualTo(Vector3Int) -- uid: XRTK.Extensions.MathExtensions.PowerOfTwoGreaterThanOrEqualTo* - name: PowerOfTwoGreaterThanOrEqualTo - href: api/XRTK.Extensions.MathExtensions.html#XRTK_Extensions_MathExtensions_PowerOfTwoGreaterThanOrEqualTo_ - commentId: Overload:XRTK.Extensions.MathExtensions.PowerOfTwoGreaterThanOrEqualTo - isSpec: "True" - fullName: XRTK.Extensions.MathExtensions.PowerOfTwoGreaterThanOrEqualTo - nameWithType: MathExtensions.PowerOfTwoGreaterThanOrEqualTo -- uid: XRTK.Extensions.MathExtensions.ResetIfGreaterThan(System.Int32,System.Int32) - name: ResetIfGreaterThan(Int32, Int32) - href: api/XRTK.Extensions.MathExtensions.html#XRTK_Extensions_MathExtensions_ResetIfGreaterThan_System_Int32_System_Int32_ - commentId: M:XRTK.Extensions.MathExtensions.ResetIfGreaterThan(System.Int32,System.Int32) - fullName: XRTK.Extensions.MathExtensions.ResetIfGreaterThan(System.Int32, System.Int32) - nameWithType: MathExtensions.ResetIfGreaterThan(Int32, Int32) -- uid: XRTK.Extensions.MathExtensions.ResetIfGreaterThan* - name: ResetIfGreaterThan - href: api/XRTK.Extensions.MathExtensions.html#XRTK_Extensions_MathExtensions_ResetIfGreaterThan_ - commentId: Overload:XRTK.Extensions.MathExtensions.ResetIfGreaterThan - isSpec: "True" - fullName: XRTK.Extensions.MathExtensions.ResetIfGreaterThan - nameWithType: MathExtensions.ResetIfGreaterThan -- uid: XRTK.Extensions.ProcessExtensions - name: ProcessExtensions - href: api/XRTK.Extensions.ProcessExtensions.html - commentId: T:XRTK.Extensions.ProcessExtensions - fullName: XRTK.Extensions.ProcessExtensions - nameWithType: ProcessExtensions -- uid: XRTK.Extensions.ProcessExtensions.Run(System.Diagnostics.Process,System.String,System.String@,System.String,System.Boolean) - name: Run(Process, String, out String, String, Boolean) - href: api/XRTK.Extensions.ProcessExtensions.html#XRTK_Extensions_ProcessExtensions_Run_System_Diagnostics_Process_System_String_System_String__System_String_System_Boolean_ - commentId: M:XRTK.Extensions.ProcessExtensions.Run(System.Diagnostics.Process,System.String,System.String@,System.String,System.Boolean) - name.vb: Run(Process, String, ByRef String, String, Boolean) - fullName: XRTK.Extensions.ProcessExtensions.Run(System.Diagnostics.Process, System.String, out System.String, System.String, System.Boolean) - fullName.vb: XRTK.Extensions.ProcessExtensions.Run(System.Diagnostics.Process, System.String, ByRef System.String, System.String, System.Boolean) - nameWithType: ProcessExtensions.Run(Process, String, out String, String, Boolean) - nameWithType.vb: ProcessExtensions.Run(Process, String, ByRef String, String, Boolean) -- uid: XRTK.Extensions.ProcessExtensions.Run* - name: Run - href: api/XRTK.Extensions.ProcessExtensions.html#XRTK_Extensions_ProcessExtensions_Run_ - commentId: Overload:XRTK.Extensions.ProcessExtensions.Run - isSpec: "True" - fullName: XRTK.Extensions.ProcessExtensions.Run - nameWithType: ProcessExtensions.Run -- uid: XRTK.Extensions.ProcessExtensions.RunAsync(System.Diagnostics.Process,System.Diagnostics.ProcessStartInfo,System.Boolean,System.Threading.CancellationToken) - name: RunAsync(Process, ProcessStartInfo, Boolean, CancellationToken) - href: api/XRTK.Extensions.ProcessExtensions.html#XRTK_Extensions_ProcessExtensions_RunAsync_System_Diagnostics_Process_System_Diagnostics_ProcessStartInfo_System_Boolean_System_Threading_CancellationToken_ - commentId: M:XRTK.Extensions.ProcessExtensions.RunAsync(System.Diagnostics.Process,System.Diagnostics.ProcessStartInfo,System.Boolean,System.Threading.CancellationToken) - fullName: XRTK.Extensions.ProcessExtensions.RunAsync(System.Diagnostics.Process, System.Diagnostics.ProcessStartInfo, System.Boolean, System.Threading.CancellationToken) - nameWithType: ProcessExtensions.RunAsync(Process, ProcessStartInfo, Boolean, CancellationToken) -- uid: XRTK.Extensions.ProcessExtensions.RunAsync(System.Diagnostics.Process,System.String,System.Boolean,System.Threading.CancellationToken) - name: RunAsync(Process, String, Boolean, CancellationToken) - href: api/XRTK.Extensions.ProcessExtensions.html#XRTK_Extensions_ProcessExtensions_RunAsync_System_Diagnostics_Process_System_String_System_Boolean_System_Threading_CancellationToken_ - commentId: M:XRTK.Extensions.ProcessExtensions.RunAsync(System.Diagnostics.Process,System.String,System.Boolean,System.Threading.CancellationToken) - fullName: XRTK.Extensions.ProcessExtensions.RunAsync(System.Diagnostics.Process, System.String, System.Boolean, System.Threading.CancellationToken) - nameWithType: ProcessExtensions.RunAsync(Process, String, Boolean, CancellationToken) -- uid: XRTK.Extensions.ProcessExtensions.RunAsync(System.Diagnostics.Process,System.String,System.String,System.Boolean,System.Threading.CancellationToken,System.Boolean) - name: RunAsync(Process, String, String, Boolean, CancellationToken, Boolean) - href: api/XRTK.Extensions.ProcessExtensions.html#XRTK_Extensions_ProcessExtensions_RunAsync_System_Diagnostics_Process_System_String_System_String_System_Boolean_System_Threading_CancellationToken_System_Boolean_ - commentId: M:XRTK.Extensions.ProcessExtensions.RunAsync(System.Diagnostics.Process,System.String,System.String,System.Boolean,System.Threading.CancellationToken,System.Boolean) - fullName: XRTK.Extensions.ProcessExtensions.RunAsync(System.Diagnostics.Process, System.String, System.String, System.Boolean, System.Threading.CancellationToken, System.Boolean) - nameWithType: ProcessExtensions.RunAsync(Process, String, String, Boolean, CancellationToken, Boolean) -- uid: XRTK.Extensions.ProcessExtensions.RunAsync* - name: RunAsync - href: api/XRTK.Extensions.ProcessExtensions.html#XRTK_Extensions_ProcessExtensions_RunAsync_ - commentId: Overload:XRTK.Extensions.ProcessExtensions.RunAsync - isSpec: "True" - fullName: XRTK.Extensions.ProcessExtensions.RunAsync - nameWithType: ProcessExtensions.RunAsync -- uid: XRTK.Extensions.QuaternionExtensions - name: QuaternionExtensions - href: api/XRTK.Extensions.QuaternionExtensions.html - commentId: T:XRTK.Extensions.QuaternionExtensions - fullName: XRTK.Extensions.QuaternionExtensions - nameWithType: QuaternionExtensions -- uid: XRTK.Extensions.QuaternionExtensions.Approximately(UnityEngine.Quaternion,UnityEngine.Quaternion,System.Single) - name: Approximately(Quaternion, Quaternion, Single) - href: api/XRTK.Extensions.QuaternionExtensions.html#XRTK_Extensions_QuaternionExtensions_Approximately_UnityEngine_Quaternion_UnityEngine_Quaternion_System_Single_ - commentId: M:XRTK.Extensions.QuaternionExtensions.Approximately(UnityEngine.Quaternion,UnityEngine.Quaternion,System.Single) - fullName: XRTK.Extensions.QuaternionExtensions.Approximately(UnityEngine.Quaternion, UnityEngine.Quaternion, System.Single) - nameWithType: QuaternionExtensions.Approximately(Quaternion, Quaternion, Single) -- uid: XRTK.Extensions.QuaternionExtensions.Approximately* - name: Approximately - href: api/XRTK.Extensions.QuaternionExtensions.html#XRTK_Extensions_QuaternionExtensions_Approximately_ - commentId: Overload:XRTK.Extensions.QuaternionExtensions.Approximately - isSpec: "True" - fullName: XRTK.Extensions.QuaternionExtensions.Approximately - nameWithType: QuaternionExtensions.Approximately -- uid: XRTK.Extensions.QuaternionExtensions.IsValidRotation(UnityEngine.Quaternion) - name: IsValidRotation(Quaternion) - href: api/XRTK.Extensions.QuaternionExtensions.html#XRTK_Extensions_QuaternionExtensions_IsValidRotation_UnityEngine_Quaternion_ - commentId: M:XRTK.Extensions.QuaternionExtensions.IsValidRotation(UnityEngine.Quaternion) - fullName: XRTK.Extensions.QuaternionExtensions.IsValidRotation(UnityEngine.Quaternion) - nameWithType: QuaternionExtensions.IsValidRotation(Quaternion) -- uid: XRTK.Extensions.QuaternionExtensions.IsValidRotation* - name: IsValidRotation - href: api/XRTK.Extensions.QuaternionExtensions.html#XRTK_Extensions_QuaternionExtensions_IsValidRotation_ - commentId: Overload:XRTK.Extensions.QuaternionExtensions.IsValidRotation - isSpec: "True" - fullName: XRTK.Extensions.QuaternionExtensions.IsValidRotation - nameWithType: QuaternionExtensions.IsValidRotation -- uid: XRTK.Extensions.QuaternionExtensions.SmoothTo(UnityEngine.Quaternion,UnityEngine.Quaternion,System.Single,System.Single) - name: SmoothTo(Quaternion, Quaternion, Single, Single) - href: api/XRTK.Extensions.QuaternionExtensions.html#XRTK_Extensions_QuaternionExtensions_SmoothTo_UnityEngine_Quaternion_UnityEngine_Quaternion_System_Single_System_Single_ - commentId: M:XRTK.Extensions.QuaternionExtensions.SmoothTo(UnityEngine.Quaternion,UnityEngine.Quaternion,System.Single,System.Single) - fullName: XRTK.Extensions.QuaternionExtensions.SmoothTo(UnityEngine.Quaternion, UnityEngine.Quaternion, System.Single, System.Single) - nameWithType: QuaternionExtensions.SmoothTo(Quaternion, Quaternion, Single, Single) -- uid: XRTK.Extensions.QuaternionExtensions.SmoothTo* - name: SmoothTo - href: api/XRTK.Extensions.QuaternionExtensions.html#XRTK_Extensions_QuaternionExtensions_SmoothTo_ - commentId: Overload:XRTK.Extensions.QuaternionExtensions.SmoothTo - isSpec: "True" - fullName: XRTK.Extensions.QuaternionExtensions.SmoothTo - nameWithType: QuaternionExtensions.SmoothTo -- uid: XRTK.Extensions.RayExtensions - name: RayExtensions - href: api/XRTK.Extensions.RayExtensions.html - commentId: T:XRTK.Extensions.RayExtensions - fullName: XRTK.Extensions.RayExtensions - nameWithType: RayExtensions -- uid: XRTK.Extensions.RayExtensions.IsValid(UnityEngine.Ray) - name: IsValid(Ray) - href: api/XRTK.Extensions.RayExtensions.html#XRTK_Extensions_RayExtensions_IsValid_UnityEngine_Ray_ - commentId: M:XRTK.Extensions.RayExtensions.IsValid(UnityEngine.Ray) - fullName: XRTK.Extensions.RayExtensions.IsValid(UnityEngine.Ray) - nameWithType: RayExtensions.IsValid(Ray) -- uid: XRTK.Extensions.RayExtensions.IsValid* - name: IsValid - href: api/XRTK.Extensions.RayExtensions.html#XRTK_Extensions_RayExtensions_IsValid_ - commentId: Overload:XRTK.Extensions.RayExtensions.IsValid - isSpec: "True" - fullName: XRTK.Extensions.RayExtensions.IsValid - nameWithType: RayExtensions.IsValid -- uid: XRTK.Extensions.StringExtensions - name: StringExtensions - href: api/XRTK.Extensions.StringExtensions.html - commentId: T:XRTK.Extensions.StringExtensions - fullName: XRTK.Extensions.StringExtensions - nameWithType: StringExtensions -- uid: XRTK.Extensions.StringExtensions.BackSlashes(System.String) - name: BackSlashes(String) - href: api/XRTK.Extensions.StringExtensions.html#XRTK_Extensions_StringExtensions_BackSlashes_System_String_ - commentId: M:XRTK.Extensions.StringExtensions.BackSlashes(System.String) - fullName: XRTK.Extensions.StringExtensions.BackSlashes(System.String) - nameWithType: StringExtensions.BackSlashes(String) -- uid: XRTK.Extensions.StringExtensions.BackSlashes* - name: BackSlashes - href: api/XRTK.Extensions.StringExtensions.html#XRTK_Extensions_StringExtensions_BackSlashes_ - commentId: Overload:XRTK.Extensions.StringExtensions.BackSlashes - isSpec: "True" - fullName: XRTK.Extensions.StringExtensions.BackSlashes - nameWithType: StringExtensions.BackSlashes -- uid: XRTK.Extensions.StringExtensions.DecodeFrom64(System.String) - name: DecodeFrom64(String) - href: api/XRTK.Extensions.StringExtensions.html#XRTK_Extensions_StringExtensions_DecodeFrom64_System_String_ - commentId: M:XRTK.Extensions.StringExtensions.DecodeFrom64(System.String) - fullName: XRTK.Extensions.StringExtensions.DecodeFrom64(System.String) - nameWithType: StringExtensions.DecodeFrom64(String) -- uid: XRTK.Extensions.StringExtensions.DecodeFrom64* - name: DecodeFrom64 - href: api/XRTK.Extensions.StringExtensions.html#XRTK_Extensions_StringExtensions_DecodeFrom64_ - commentId: Overload:XRTK.Extensions.StringExtensions.DecodeFrom64 - isSpec: "True" - fullName: XRTK.Extensions.StringExtensions.DecodeFrom64 - nameWithType: StringExtensions.DecodeFrom64 -- uid: XRTK.Extensions.StringExtensions.EncodeTo64(System.String) - name: EncodeTo64(String) - href: api/XRTK.Extensions.StringExtensions.html#XRTK_Extensions_StringExtensions_EncodeTo64_System_String_ - commentId: M:XRTK.Extensions.StringExtensions.EncodeTo64(System.String) - fullName: XRTK.Extensions.StringExtensions.EncodeTo64(System.String) - nameWithType: StringExtensions.EncodeTo64(String) -- uid: XRTK.Extensions.StringExtensions.EncodeTo64* - name: EncodeTo64 - href: api/XRTK.Extensions.StringExtensions.html#XRTK_Extensions_StringExtensions_EncodeTo64_ - commentId: Overload:XRTK.Extensions.StringExtensions.EncodeTo64 - isSpec: "True" - fullName: XRTK.Extensions.StringExtensions.EncodeTo64 - nameWithType: StringExtensions.EncodeTo64 -- uid: XRTK.Extensions.StringExtensions.FilenameFromURI(System.String) - name: FilenameFromURI(String) - href: api/XRTK.Extensions.StringExtensions.html#XRTK_Extensions_StringExtensions_FilenameFromURI_System_String_ - commentId: M:XRTK.Extensions.StringExtensions.FilenameFromURI(System.String) - fullName: XRTK.Extensions.StringExtensions.FilenameFromURI(System.String) - nameWithType: StringExtensions.FilenameFromURI(String) -- uid: XRTK.Extensions.StringExtensions.FilenameFromURI* - name: FilenameFromURI - href: api/XRTK.Extensions.StringExtensions.html#XRTK_Extensions_StringExtensions_FilenameFromURI_ - commentId: Overload:XRTK.Extensions.StringExtensions.FilenameFromURI - isSpec: "True" - fullName: XRTK.Extensions.StringExtensions.FilenameFromURI - nameWithType: StringExtensions.FilenameFromURI -- uid: XRTK.Extensions.StringExtensions.ForwardSlashes(System.String) - name: ForwardSlashes(String) - href: api/XRTK.Extensions.StringExtensions.html#XRTK_Extensions_StringExtensions_ForwardSlashes_System_String_ - commentId: M:XRTK.Extensions.StringExtensions.ForwardSlashes(System.String) - fullName: XRTK.Extensions.StringExtensions.ForwardSlashes(System.String) - nameWithType: StringExtensions.ForwardSlashes(String) -- uid: XRTK.Extensions.StringExtensions.ForwardSlashes* - name: ForwardSlashes - href: api/XRTK.Extensions.StringExtensions.html#XRTK_Extensions_StringExtensions_ForwardSlashes_ - commentId: Overload:XRTK.Extensions.StringExtensions.ForwardSlashes - isSpec: "True" - fullName: XRTK.Extensions.StringExtensions.ForwardSlashes - nameWithType: StringExtensions.ForwardSlashes -- uid: XRTK.Extensions.StringExtensions.PathFromURI(System.String) - name: PathFromURI(String) - href: api/XRTK.Extensions.StringExtensions.html#XRTK_Extensions_StringExtensions_PathFromURI_System_String_ - commentId: M:XRTK.Extensions.StringExtensions.PathFromURI(System.String) - fullName: XRTK.Extensions.StringExtensions.PathFromURI(System.String) - nameWithType: StringExtensions.PathFromURI(String) -- uid: XRTK.Extensions.StringExtensions.PathFromURI* - name: PathFromURI - href: api/XRTK.Extensions.StringExtensions.html#XRTK_Extensions_StringExtensions_PathFromURI_ - commentId: Overload:XRTK.Extensions.StringExtensions.PathFromURI - isSpec: "True" - fullName: XRTK.Extensions.StringExtensions.PathFromURI - nameWithType: StringExtensions.PathFromURI -- uid: XRTK.Extensions.StringExtensions.ToProperCase(System.String) - name: ToProperCase(String) - href: api/XRTK.Extensions.StringExtensions.html#XRTK_Extensions_StringExtensions_ToProperCase_System_String_ - commentId: M:XRTK.Extensions.StringExtensions.ToProperCase(System.String) - fullName: XRTK.Extensions.StringExtensions.ToProperCase(System.String) - nameWithType: StringExtensions.ToProperCase(String) -- uid: XRTK.Extensions.StringExtensions.ToProperCase* - name: ToProperCase - href: api/XRTK.Extensions.StringExtensions.html#XRTK_Extensions_StringExtensions_ToProperCase_ - commentId: Overload:XRTK.Extensions.StringExtensions.ToProperCase - isSpec: "True" - fullName: XRTK.Extensions.StringExtensions.ToProperCase - nameWithType: StringExtensions.ToProperCase -- uid: XRTK.Extensions.StringExtensions.TryMakeRelativePath(System.String,System.String,System.String@) - name: TryMakeRelativePath(String, String, out String) - href: api/XRTK.Extensions.StringExtensions.html#XRTK_Extensions_StringExtensions_TryMakeRelativePath_System_String_System_String_System_String__ - commentId: M:XRTK.Extensions.StringExtensions.TryMakeRelativePath(System.String,System.String,System.String@) - name.vb: TryMakeRelativePath(String, String, ByRef String) - fullName: XRTK.Extensions.StringExtensions.TryMakeRelativePath(System.String, System.String, out System.String) - fullName.vb: XRTK.Extensions.StringExtensions.TryMakeRelativePath(System.String, System.String, ByRef System.String) - nameWithType: StringExtensions.TryMakeRelativePath(String, String, out String) - nameWithType.vb: StringExtensions.TryMakeRelativePath(String, String, ByRef String) -- uid: XRTK.Extensions.StringExtensions.TryMakeRelativePath* - name: TryMakeRelativePath - href: api/XRTK.Extensions.StringExtensions.html#XRTK_Extensions_StringExtensions_TryMakeRelativePath_ - commentId: Overload:XRTK.Extensions.StringExtensions.TryMakeRelativePath - isSpec: "True" - fullName: XRTK.Extensions.StringExtensions.TryMakeRelativePath - nameWithType: StringExtensions.TryMakeRelativePath -- uid: XRTK.Extensions.StringExtensions.WhiteSpace - name: WhiteSpace - href: api/XRTK.Extensions.StringExtensions.html#XRTK_Extensions_StringExtensions_WhiteSpace - commentId: F:XRTK.Extensions.StringExtensions.WhiteSpace - fullName: XRTK.Extensions.StringExtensions.WhiteSpace - nameWithType: StringExtensions.WhiteSpace -- uid: XRTK.Extensions.SystemNumericsExtensions - name: SystemNumericsExtensions - href: api/XRTK.Extensions.SystemNumericsExtensions.html - commentId: T:XRTK.Extensions.SystemNumericsExtensions - fullName: XRTK.Extensions.SystemNumericsExtensions - nameWithType: SystemNumericsExtensions -- uid: XRTK.Extensions.SystemNumericsExtensions.ToNumericsQuaternion(UnityEngine.Quaternion) - name: ToNumericsQuaternion(Quaternion) - href: api/XRTK.Extensions.SystemNumericsExtensions.html#XRTK_Extensions_SystemNumericsExtensions_ToNumericsQuaternion_UnityEngine_Quaternion_ - commentId: M:XRTK.Extensions.SystemNumericsExtensions.ToNumericsQuaternion(UnityEngine.Quaternion) - fullName: XRTK.Extensions.SystemNumericsExtensions.ToNumericsQuaternion(UnityEngine.Quaternion) - nameWithType: SystemNumericsExtensions.ToNumericsQuaternion(Quaternion) -- uid: XRTK.Extensions.SystemNumericsExtensions.ToNumericsQuaternion* - name: ToNumericsQuaternion - href: api/XRTK.Extensions.SystemNumericsExtensions.html#XRTK_Extensions_SystemNumericsExtensions_ToNumericsQuaternion_ - commentId: Overload:XRTK.Extensions.SystemNumericsExtensions.ToNumericsQuaternion - isSpec: "True" - fullName: XRTK.Extensions.SystemNumericsExtensions.ToNumericsQuaternion - nameWithType: SystemNumericsExtensions.ToNumericsQuaternion -- uid: XRTK.Extensions.SystemNumericsExtensions.ToNumericsVector3(UnityEngine.Vector3) - name: ToNumericsVector3(Vector3) - href: api/XRTK.Extensions.SystemNumericsExtensions.html#XRTK_Extensions_SystemNumericsExtensions_ToNumericsVector3_UnityEngine_Vector3_ - commentId: M:XRTK.Extensions.SystemNumericsExtensions.ToNumericsVector3(UnityEngine.Vector3) - fullName: XRTK.Extensions.SystemNumericsExtensions.ToNumericsVector3(UnityEngine.Vector3) - nameWithType: SystemNumericsExtensions.ToNumericsVector3(Vector3) -- uid: XRTK.Extensions.SystemNumericsExtensions.ToNumericsVector3* - name: ToNumericsVector3 - href: api/XRTK.Extensions.SystemNumericsExtensions.html#XRTK_Extensions_SystemNumericsExtensions_ToNumericsVector3_ - commentId: Overload:XRTK.Extensions.SystemNumericsExtensions.ToNumericsVector3 - isSpec: "True" - fullName: XRTK.Extensions.SystemNumericsExtensions.ToNumericsVector3 - nameWithType: SystemNumericsExtensions.ToNumericsVector3 -- uid: XRTK.Extensions.SystemNumericsExtensions.ToUnity(System.Numerics.Quaternion) - name: ToUnity(Quaternion) - href: api/XRTK.Extensions.SystemNumericsExtensions.html#XRTK_Extensions_SystemNumericsExtensions_ToUnity_System_Numerics_Quaternion_ - commentId: M:XRTK.Extensions.SystemNumericsExtensions.ToUnity(System.Numerics.Quaternion) - fullName: XRTK.Extensions.SystemNumericsExtensions.ToUnity(System.Numerics.Quaternion) - nameWithType: SystemNumericsExtensions.ToUnity(Quaternion) -- uid: XRTK.Extensions.SystemNumericsExtensions.ToUnity(System.Numerics.Vector3) - name: ToUnity(Vector3) - href: api/XRTK.Extensions.SystemNumericsExtensions.html#XRTK_Extensions_SystemNumericsExtensions_ToUnity_System_Numerics_Vector3_ - commentId: M:XRTK.Extensions.SystemNumericsExtensions.ToUnity(System.Numerics.Vector3) - fullName: XRTK.Extensions.SystemNumericsExtensions.ToUnity(System.Numerics.Vector3) - nameWithType: SystemNumericsExtensions.ToUnity(Vector3) -- uid: XRTK.Extensions.SystemNumericsExtensions.ToUnity* - name: ToUnity - href: api/XRTK.Extensions.SystemNumericsExtensions.html#XRTK_Extensions_SystemNumericsExtensions_ToUnity_ - commentId: Overload:XRTK.Extensions.SystemNumericsExtensions.ToUnity - isSpec: "True" - fullName: XRTK.Extensions.SystemNumericsExtensions.ToUnity - nameWithType: SystemNumericsExtensions.ToUnity -- uid: XRTK.Extensions.TextureExtensions - name: TextureExtensions - href: api/XRTK.Extensions.TextureExtensions.html - commentId: T:XRTK.Extensions.TextureExtensions - fullName: XRTK.Extensions.TextureExtensions - nameWithType: TextureExtensions -- uid: XRTK.Extensions.TextureExtensions.LoadTextureAsync(UnityEngine.Texture2D,System.Byte[]) - name: LoadTextureAsync(Texture2D, Byte[]) - href: api/XRTK.Extensions.TextureExtensions.html#XRTK_Extensions_TextureExtensions_LoadTextureAsync_UnityEngine_Texture2D_System_Byte___ - commentId: M:XRTK.Extensions.TextureExtensions.LoadTextureAsync(UnityEngine.Texture2D,System.Byte[]) - name.vb: LoadTextureAsync(Texture2D, Byte()) - fullName: XRTK.Extensions.TextureExtensions.LoadTextureAsync(UnityEngine.Texture2D, System.Byte[]) - fullName.vb: XRTK.Extensions.TextureExtensions.LoadTextureAsync(UnityEngine.Texture2D, System.Byte()) - nameWithType: TextureExtensions.LoadTextureAsync(Texture2D, Byte[]) - nameWithType.vb: TextureExtensions.LoadTextureAsync(Texture2D, Byte()) -- uid: XRTK.Extensions.TextureExtensions.LoadTextureAsync(UnityEngine.Texture2D,System.String) - name: LoadTextureAsync(Texture2D, String) - href: api/XRTK.Extensions.TextureExtensions.html#XRTK_Extensions_TextureExtensions_LoadTextureAsync_UnityEngine_Texture2D_System_String_ - commentId: M:XRTK.Extensions.TextureExtensions.LoadTextureAsync(UnityEngine.Texture2D,System.String) - fullName: XRTK.Extensions.TextureExtensions.LoadTextureAsync(UnityEngine.Texture2D, System.String) - nameWithType: TextureExtensions.LoadTextureAsync(Texture2D, String) -- uid: XRTK.Extensions.TextureExtensions.LoadTextureAsync* - name: LoadTextureAsync - href: api/XRTK.Extensions.TextureExtensions.html#XRTK_Extensions_TextureExtensions_LoadTextureAsync_ - commentId: Overload:XRTK.Extensions.TextureExtensions.LoadTextureAsync - isSpec: "True" - fullName: XRTK.Extensions.TextureExtensions.LoadTextureAsync - nameWithType: TextureExtensions.LoadTextureAsync -- uid: XRTK.Extensions.TransformExtensions - name: TransformExtensions - href: api/XRTK.Extensions.TransformExtensions.html - commentId: T:XRTK.Extensions.TransformExtensions - fullName: XRTK.Extensions.TransformExtensions - nameWithType: TransformExtensions -- uid: XRTK.Extensions.TransformExtensions.EnumerateAncestors(UnityEngine.Transform,System.Boolean) - name: EnumerateAncestors(Transform, Boolean) - href: api/XRTK.Extensions.TransformExtensions.html#XRTK_Extensions_TransformExtensions_EnumerateAncestors_UnityEngine_Transform_System_Boolean_ - commentId: M:XRTK.Extensions.TransformExtensions.EnumerateAncestors(UnityEngine.Transform,System.Boolean) - fullName: XRTK.Extensions.TransformExtensions.EnumerateAncestors(UnityEngine.Transform, System.Boolean) - nameWithType: TransformExtensions.EnumerateAncestors(Transform, Boolean) -- uid: XRTK.Extensions.TransformExtensions.EnumerateAncestors* - name: EnumerateAncestors - href: api/XRTK.Extensions.TransformExtensions.html#XRTK_Extensions_TransformExtensions_EnumerateAncestors_ - commentId: Overload:XRTK.Extensions.TransformExtensions.EnumerateAncestors - isSpec: "True" - fullName: XRTK.Extensions.TransformExtensions.EnumerateAncestors - nameWithType: TransformExtensions.EnumerateAncestors -- uid: XRTK.Extensions.TransformExtensions.EnumerateHierarchy(UnityEngine.Transform) - name: EnumerateHierarchy(Transform) - href: api/XRTK.Extensions.TransformExtensions.html#XRTK_Extensions_TransformExtensions_EnumerateHierarchy_UnityEngine_Transform_ - commentId: M:XRTK.Extensions.TransformExtensions.EnumerateHierarchy(UnityEngine.Transform) - fullName: XRTK.Extensions.TransformExtensions.EnumerateHierarchy(UnityEngine.Transform) - nameWithType: TransformExtensions.EnumerateHierarchy(Transform) -- uid: XRTK.Extensions.TransformExtensions.EnumerateHierarchy(UnityEngine.Transform,System.Collections.Generic.ICollection{UnityEngine.Transform}) - name: EnumerateHierarchy(Transform, ICollection) - href: api/XRTK.Extensions.TransformExtensions.html#XRTK_Extensions_TransformExtensions_EnumerateHierarchy_UnityEngine_Transform_System_Collections_Generic_ICollection_UnityEngine_Transform__ - commentId: M:XRTK.Extensions.TransformExtensions.EnumerateHierarchy(UnityEngine.Transform,System.Collections.Generic.ICollection{UnityEngine.Transform}) - name.vb: EnumerateHierarchy(Transform, ICollection(Of Transform)) - fullName: XRTK.Extensions.TransformExtensions.EnumerateHierarchy(UnityEngine.Transform, System.Collections.Generic.ICollection) - fullName.vb: XRTK.Extensions.TransformExtensions.EnumerateHierarchy(UnityEngine.Transform, System.Collections.Generic.ICollection(Of UnityEngine.Transform)) - nameWithType: TransformExtensions.EnumerateHierarchy(Transform, ICollection) - nameWithType.vb: TransformExtensions.EnumerateHierarchy(Transform, ICollection(Of Transform)) -- uid: XRTK.Extensions.TransformExtensions.EnumerateHierarchy* - name: EnumerateHierarchy - href: api/XRTK.Extensions.TransformExtensions.html#XRTK_Extensions_TransformExtensions_EnumerateHierarchy_ - commentId: Overload:XRTK.Extensions.TransformExtensions.EnumerateHierarchy - isSpec: "True" - fullName: XRTK.Extensions.TransformExtensions.EnumerateHierarchy - nameWithType: TransformExtensions.EnumerateHierarchy -- uid: XRTK.Extensions.TransformExtensions.FindAncestorComponent* - name: FindAncestorComponent - href: api/XRTK.Extensions.TransformExtensions.html#XRTK_Extensions_TransformExtensions_FindAncestorComponent_ - commentId: Overload:XRTK.Extensions.TransformExtensions.FindAncestorComponent - isSpec: "True" - fullName: XRTK.Extensions.TransformExtensions.FindAncestorComponent - nameWithType: TransformExtensions.FindAncestorComponent -- uid: XRTK.Extensions.TransformExtensions.FindAncestorComponent``1(UnityEngine.Transform,System.Boolean) - name: FindAncestorComponent(Transform, Boolean) - href: api/XRTK.Extensions.TransformExtensions.html#XRTK_Extensions_TransformExtensions_FindAncestorComponent__1_UnityEngine_Transform_System_Boolean_ - commentId: M:XRTK.Extensions.TransformExtensions.FindAncestorComponent``1(UnityEngine.Transform,System.Boolean) - name.vb: FindAncestorComponent(Of T)(Transform, Boolean) - fullName: XRTK.Extensions.TransformExtensions.FindAncestorComponent(UnityEngine.Transform, System.Boolean) - fullName.vb: XRTK.Extensions.TransformExtensions.FindAncestorComponent(Of T)(UnityEngine.Transform, System.Boolean) - nameWithType: TransformExtensions.FindAncestorComponent(Transform, Boolean) - nameWithType.vb: TransformExtensions.FindAncestorComponent(Of T)(Transform, Boolean) -- uid: XRTK.Extensions.TransformExtensions.FindCommonRoot(UnityEngine.Transform,UnityEngine.Transform) - name: FindCommonRoot(Transform, Transform) - href: api/XRTK.Extensions.TransformExtensions.html#XRTK_Extensions_TransformExtensions_FindCommonRoot_UnityEngine_Transform_UnityEngine_Transform_ - commentId: M:XRTK.Extensions.TransformExtensions.FindCommonRoot(UnityEngine.Transform,UnityEngine.Transform) - fullName: XRTK.Extensions.TransformExtensions.FindCommonRoot(UnityEngine.Transform, UnityEngine.Transform) - nameWithType: TransformExtensions.FindCommonRoot(Transform, Transform) -- uid: XRTK.Extensions.TransformExtensions.FindCommonRoot* - name: FindCommonRoot - href: api/XRTK.Extensions.TransformExtensions.html#XRTK_Extensions_TransformExtensions_FindCommonRoot_ - commentId: Overload:XRTK.Extensions.TransformExtensions.FindCommonRoot - isSpec: "True" - fullName: XRTK.Extensions.TransformExtensions.FindCommonRoot - nameWithType: TransformExtensions.FindCommonRoot -- uid: XRTK.Extensions.TransformExtensions.GetColliderBounds(UnityEngine.Transform,UnityEngine.Collider[]@,System.Boolean) - name: GetColliderBounds(Transform, ref Collider[], Boolean) - href: api/XRTK.Extensions.TransformExtensions.html#XRTK_Extensions_TransformExtensions_GetColliderBounds_UnityEngine_Transform_UnityEngine_Collider____System_Boolean_ - commentId: M:XRTK.Extensions.TransformExtensions.GetColliderBounds(UnityEngine.Transform,UnityEngine.Collider[]@,System.Boolean) - name.vb: GetColliderBounds(Transform, ByRef Collider(), Boolean) - fullName: XRTK.Extensions.TransformExtensions.GetColliderBounds(UnityEngine.Transform, ref UnityEngine.Collider[], System.Boolean) - fullName.vb: XRTK.Extensions.TransformExtensions.GetColliderBounds(UnityEngine.Transform, ByRef UnityEngine.Collider(), System.Boolean) - nameWithType: TransformExtensions.GetColliderBounds(Transform, ref Collider[], Boolean) - nameWithType.vb: TransformExtensions.GetColliderBounds(Transform, ByRef Collider(), Boolean) -- uid: XRTK.Extensions.TransformExtensions.GetColliderBounds* - name: GetColliderBounds - href: api/XRTK.Extensions.TransformExtensions.html#XRTK_Extensions_TransformExtensions_GetColliderBounds_ - commentId: Overload:XRTK.Extensions.TransformExtensions.GetColliderBounds - isSpec: "True" - fullName: XRTK.Extensions.TransformExtensions.GetColliderBounds - nameWithType: TransformExtensions.GetColliderBounds -- uid: XRTK.Extensions.TransformExtensions.GetDepth(UnityEngine.Transform) - name: GetDepth(Transform) - href: api/XRTK.Extensions.TransformExtensions.html#XRTK_Extensions_TransformExtensions_GetDepth_UnityEngine_Transform_ - commentId: M:XRTK.Extensions.TransformExtensions.GetDepth(UnityEngine.Transform) - fullName: XRTK.Extensions.TransformExtensions.GetDepth(UnityEngine.Transform) - nameWithType: TransformExtensions.GetDepth(Transform) -- uid: XRTK.Extensions.TransformExtensions.GetDepth* - name: GetDepth - href: api/XRTK.Extensions.TransformExtensions.html#XRTK_Extensions_TransformExtensions_GetDepth_ - commentId: Overload:XRTK.Extensions.TransformExtensions.GetDepth - isSpec: "True" - fullName: XRTK.Extensions.TransformExtensions.GetDepth - nameWithType: TransformExtensions.GetDepth -- uid: XRTK.Extensions.TransformExtensions.GetFullPath(UnityEngine.Transform,System.String,System.String) - name: GetFullPath(Transform, String, String) - href: api/XRTK.Extensions.TransformExtensions.html#XRTK_Extensions_TransformExtensions_GetFullPath_UnityEngine_Transform_System_String_System_String_ - commentId: M:XRTK.Extensions.TransformExtensions.GetFullPath(UnityEngine.Transform,System.String,System.String) - fullName: XRTK.Extensions.TransformExtensions.GetFullPath(UnityEngine.Transform, System.String, System.String) - nameWithType: TransformExtensions.GetFullPath(Transform, String, String) -- uid: XRTK.Extensions.TransformExtensions.GetFullPath* - name: GetFullPath - href: api/XRTK.Extensions.TransformExtensions.html#XRTK_Extensions_TransformExtensions_GetFullPath_ - commentId: Overload:XRTK.Extensions.TransformExtensions.GetFullPath - isSpec: "True" - fullName: XRTK.Extensions.TransformExtensions.GetFullPath - nameWithType: TransformExtensions.GetFullPath -- uid: XRTK.Extensions.TransformExtensions.GetPointOnBoundsEdge(UnityEngine.Transform,UnityEngine.Vector3,UnityEngine.Bounds,UnityEngine.Collider[]) - name: GetPointOnBoundsEdge(Transform, Vector3, Bounds, Collider[]) - href: api/XRTK.Extensions.TransformExtensions.html#XRTK_Extensions_TransformExtensions_GetPointOnBoundsEdge_UnityEngine_Transform_UnityEngine_Vector3_UnityEngine_Bounds_UnityEngine_Collider___ - commentId: M:XRTK.Extensions.TransformExtensions.GetPointOnBoundsEdge(UnityEngine.Transform,UnityEngine.Vector3,UnityEngine.Bounds,UnityEngine.Collider[]) - name.vb: GetPointOnBoundsEdge(Transform, Vector3, Bounds, Collider()) - fullName: XRTK.Extensions.TransformExtensions.GetPointOnBoundsEdge(UnityEngine.Transform, UnityEngine.Vector3, UnityEngine.Bounds, UnityEngine.Collider[]) - fullName.vb: XRTK.Extensions.TransformExtensions.GetPointOnBoundsEdge(UnityEngine.Transform, UnityEngine.Vector3, UnityEngine.Bounds, UnityEngine.Collider()) - nameWithType: TransformExtensions.GetPointOnBoundsEdge(Transform, Vector3, Bounds, Collider[]) - nameWithType.vb: TransformExtensions.GetPointOnBoundsEdge(Transform, Vector3, Bounds, Collider()) -- uid: XRTK.Extensions.TransformExtensions.GetPointOnBoundsEdge* - name: GetPointOnBoundsEdge - href: api/XRTK.Extensions.TransformExtensions.html#XRTK_Extensions_TransformExtensions_GetPointOnBoundsEdge_ - commentId: Overload:XRTK.Extensions.TransformExtensions.GetPointOnBoundsEdge - isSpec: "True" - fullName: XRTK.Extensions.TransformExtensions.GetPointOnBoundsEdge - nameWithType: TransformExtensions.GetPointOnBoundsEdge -- uid: XRTK.Extensions.TransformExtensions.GetRenderBounds(UnityEngine.Transform,UnityEngine.Renderer[]@,System.Boolean) - name: GetRenderBounds(Transform, ref Renderer[], Boolean) - href: api/XRTK.Extensions.TransformExtensions.html#XRTK_Extensions_TransformExtensions_GetRenderBounds_UnityEngine_Transform_UnityEngine_Renderer____System_Boolean_ - commentId: M:XRTK.Extensions.TransformExtensions.GetRenderBounds(UnityEngine.Transform,UnityEngine.Renderer[]@,System.Boolean) - name.vb: GetRenderBounds(Transform, ByRef Renderer(), Boolean) - fullName: XRTK.Extensions.TransformExtensions.GetRenderBounds(UnityEngine.Transform, ref UnityEngine.Renderer[], System.Boolean) - fullName.vb: XRTK.Extensions.TransformExtensions.GetRenderBounds(UnityEngine.Transform, ByRef UnityEngine.Renderer(), System.Boolean) - nameWithType: TransformExtensions.GetRenderBounds(Transform, ref Renderer[], Boolean) - nameWithType.vb: TransformExtensions.GetRenderBounds(Transform, ByRef Renderer(), Boolean) -- uid: XRTK.Extensions.TransformExtensions.GetRenderBounds* - name: GetRenderBounds - href: api/XRTK.Extensions.TransformExtensions.html#XRTK_Extensions_TransformExtensions_GetRenderBounds_ - commentId: Overload:XRTK.Extensions.TransformExtensions.GetRenderBounds - isSpec: "True" - fullName: XRTK.Extensions.TransformExtensions.GetRenderBounds - nameWithType: TransformExtensions.GetRenderBounds -- uid: XRTK.Extensions.TransformExtensions.InverseTransformSize(UnityEngine.Transform,UnityEngine.Vector3) - name: InverseTransformSize(Transform, Vector3) - href: api/XRTK.Extensions.TransformExtensions.html#XRTK_Extensions_TransformExtensions_InverseTransformSize_UnityEngine_Transform_UnityEngine_Vector3_ - commentId: M:XRTK.Extensions.TransformExtensions.InverseTransformSize(UnityEngine.Transform,UnityEngine.Vector3) - fullName: XRTK.Extensions.TransformExtensions.InverseTransformSize(UnityEngine.Transform, UnityEngine.Vector3) - nameWithType: TransformExtensions.InverseTransformSize(Transform, Vector3) -- uid: XRTK.Extensions.TransformExtensions.InverseTransformSize* - name: InverseTransformSize - href: api/XRTK.Extensions.TransformExtensions.html#XRTK_Extensions_TransformExtensions_InverseTransformSize_ - commentId: Overload:XRTK.Extensions.TransformExtensions.InverseTransformSize - isSpec: "True" - fullName: XRTK.Extensions.TransformExtensions.InverseTransformSize - nameWithType: TransformExtensions.InverseTransformSize -- uid: XRTK.Extensions.TransformExtensions.IsParentOrChildOf(UnityEngine.Transform,UnityEngine.Transform) - name: IsParentOrChildOf(Transform, Transform) - href: api/XRTK.Extensions.TransformExtensions.html#XRTK_Extensions_TransformExtensions_IsParentOrChildOf_UnityEngine_Transform_UnityEngine_Transform_ - commentId: M:XRTK.Extensions.TransformExtensions.IsParentOrChildOf(UnityEngine.Transform,UnityEngine.Transform) - fullName: XRTK.Extensions.TransformExtensions.IsParentOrChildOf(UnityEngine.Transform, UnityEngine.Transform) - nameWithType: TransformExtensions.IsParentOrChildOf(Transform, Transform) -- uid: XRTK.Extensions.TransformExtensions.IsParentOrChildOf* - name: IsParentOrChildOf - href: api/XRTK.Extensions.TransformExtensions.html#XRTK_Extensions_TransformExtensions_IsParentOrChildOf_ - commentId: Overload:XRTK.Extensions.TransformExtensions.IsParentOrChildOf - isSpec: "True" - fullName: XRTK.Extensions.TransformExtensions.IsParentOrChildOf - nameWithType: TransformExtensions.IsParentOrChildOf -- uid: XRTK.Extensions.TransformExtensions.ScaleAround(UnityEngine.Transform,UnityEngine.Vector3,UnityEngine.Vector3) - name: ScaleAround(Transform, Vector3, Vector3) - href: api/XRTK.Extensions.TransformExtensions.html#XRTK_Extensions_TransformExtensions_ScaleAround_UnityEngine_Transform_UnityEngine_Vector3_UnityEngine_Vector3_ - commentId: M:XRTK.Extensions.TransformExtensions.ScaleAround(UnityEngine.Transform,UnityEngine.Vector3,UnityEngine.Vector3) - fullName: XRTK.Extensions.TransformExtensions.ScaleAround(UnityEngine.Transform, UnityEngine.Vector3, UnityEngine.Vector3) - nameWithType: TransformExtensions.ScaleAround(Transform, Vector3, Vector3) -- uid: XRTK.Extensions.TransformExtensions.ScaleAround* - name: ScaleAround - href: api/XRTK.Extensions.TransformExtensions.html#XRTK_Extensions_TransformExtensions_ScaleAround_ - commentId: Overload:XRTK.Extensions.TransformExtensions.ScaleAround - isSpec: "True" - fullName: XRTK.Extensions.TransformExtensions.ScaleAround - nameWithType: TransformExtensions.ScaleAround -- uid: XRTK.Extensions.TransformExtensions.SetCollidersActive(UnityEngine.Transform,System.Boolean,UnityEngine.Collider[]) - name: SetCollidersActive(Transform, Boolean, Collider[]) - href: api/XRTK.Extensions.TransformExtensions.html#XRTK_Extensions_TransformExtensions_SetCollidersActive_UnityEngine_Transform_System_Boolean_UnityEngine_Collider___ - commentId: M:XRTK.Extensions.TransformExtensions.SetCollidersActive(UnityEngine.Transform,System.Boolean,UnityEngine.Collider[]) - name.vb: SetCollidersActive(Transform, Boolean, Collider()) - fullName: XRTK.Extensions.TransformExtensions.SetCollidersActive(UnityEngine.Transform, System.Boolean, UnityEngine.Collider[]) - fullName.vb: XRTK.Extensions.TransformExtensions.SetCollidersActive(UnityEngine.Transform, System.Boolean, UnityEngine.Collider()) - nameWithType: TransformExtensions.SetCollidersActive(Transform, Boolean, Collider[]) - nameWithType.vb: TransformExtensions.SetCollidersActive(Transform, Boolean, Collider()) -- uid: XRTK.Extensions.TransformExtensions.SetCollidersActive(UnityEngine.Transform,System.Boolean,UnityEngine.Collider[]@) - name: SetCollidersActive(Transform, Boolean, ref Collider[]) - href: api/XRTK.Extensions.TransformExtensions.html#XRTK_Extensions_TransformExtensions_SetCollidersActive_UnityEngine_Transform_System_Boolean_UnityEngine_Collider____ - commentId: M:XRTK.Extensions.TransformExtensions.SetCollidersActive(UnityEngine.Transform,System.Boolean,UnityEngine.Collider[]@) - name.vb: SetCollidersActive(Transform, Boolean, ByRef Collider()) - fullName: XRTK.Extensions.TransformExtensions.SetCollidersActive(UnityEngine.Transform, System.Boolean, ref UnityEngine.Collider[]) - fullName.vb: XRTK.Extensions.TransformExtensions.SetCollidersActive(UnityEngine.Transform, System.Boolean, ByRef UnityEngine.Collider()) - nameWithType: TransformExtensions.SetCollidersActive(Transform, Boolean, ref Collider[]) - nameWithType.vb: TransformExtensions.SetCollidersActive(Transform, Boolean, ByRef Collider()) -- uid: XRTK.Extensions.TransformExtensions.SetCollidersActive* - name: SetCollidersActive - href: api/XRTK.Extensions.TransformExtensions.html#XRTK_Extensions_TransformExtensions_SetCollidersActive_ - commentId: Overload:XRTK.Extensions.TransformExtensions.SetCollidersActive - isSpec: "True" - fullName: XRTK.Extensions.TransformExtensions.SetCollidersActive - nameWithType: TransformExtensions.SetCollidersActive -- uid: XRTK.Extensions.TransformExtensions.SetLayerRecursively(UnityEngine.Transform,System.Int32) - name: SetLayerRecursively(Transform, Int32) - href: api/XRTK.Extensions.TransformExtensions.html#XRTK_Extensions_TransformExtensions_SetLayerRecursively_UnityEngine_Transform_System_Int32_ - commentId: M:XRTK.Extensions.TransformExtensions.SetLayerRecursively(UnityEngine.Transform,System.Int32) - fullName: XRTK.Extensions.TransformExtensions.SetLayerRecursively(UnityEngine.Transform, System.Int32) - nameWithType: TransformExtensions.SetLayerRecursively(Transform, Int32) -- uid: XRTK.Extensions.TransformExtensions.SetLayerRecursively* - name: SetLayerRecursively - href: api/XRTK.Extensions.TransformExtensions.html#XRTK_Extensions_TransformExtensions_SetLayerRecursively_ - commentId: Overload:XRTK.Extensions.TransformExtensions.SetLayerRecursively - isSpec: "True" - fullName: XRTK.Extensions.TransformExtensions.SetLayerRecursively - nameWithType: TransformExtensions.SetLayerRecursively -- uid: XRTK.Extensions.TransformExtensions.TransformSize(UnityEngine.Transform,UnityEngine.Vector3) - name: TransformSize(Transform, Vector3) - href: api/XRTK.Extensions.TransformExtensions.html#XRTK_Extensions_TransformExtensions_TransformSize_UnityEngine_Transform_UnityEngine_Vector3_ - commentId: M:XRTK.Extensions.TransformExtensions.TransformSize(UnityEngine.Transform,UnityEngine.Vector3) - fullName: XRTK.Extensions.TransformExtensions.TransformSize(UnityEngine.Transform, UnityEngine.Vector3) - nameWithType: TransformExtensions.TransformSize(Transform, Vector3) -- uid: XRTK.Extensions.TransformExtensions.TransformSize* - name: TransformSize - href: api/XRTK.Extensions.TransformExtensions.html#XRTK_Extensions_TransformExtensions_TransformSize_ - commentId: Overload:XRTK.Extensions.TransformExtensions.TransformSize - isSpec: "True" - fullName: XRTK.Extensions.TransformExtensions.TransformSize - nameWithType: TransformExtensions.TransformSize -- uid: XRTK.Extensions.TransformExtensions.TryGetDepth(UnityEngine.Transform,UnityEngine.Transform,System.Int32@) - name: TryGetDepth(Transform, Transform, ref Int32) - href: api/XRTK.Extensions.TransformExtensions.html#XRTK_Extensions_TransformExtensions_TryGetDepth_UnityEngine_Transform_UnityEngine_Transform_System_Int32__ - commentId: M:XRTK.Extensions.TransformExtensions.TryGetDepth(UnityEngine.Transform,UnityEngine.Transform,System.Int32@) - name.vb: TryGetDepth(Transform, Transform, ByRef Int32) - fullName: XRTK.Extensions.TransformExtensions.TryGetDepth(UnityEngine.Transform, UnityEngine.Transform, ref System.Int32) - fullName.vb: XRTK.Extensions.TransformExtensions.TryGetDepth(UnityEngine.Transform, UnityEngine.Transform, ByRef System.Int32) - nameWithType: TransformExtensions.TryGetDepth(Transform, Transform, ref Int32) - nameWithType.vb: TransformExtensions.TryGetDepth(Transform, Transform, ByRef Int32) -- uid: XRTK.Extensions.TransformExtensions.TryGetDepth* - name: TryGetDepth - href: api/XRTK.Extensions.TransformExtensions.html#XRTK_Extensions_TransformExtensions_TryGetDepth_ - commentId: Overload:XRTK.Extensions.TransformExtensions.TryGetDepth - isSpec: "True" - fullName: XRTK.Extensions.TransformExtensions.TryGetDepth - nameWithType: TransformExtensions.TryGetDepth -- uid: XRTK.Extensions.TypeExtensions - name: TypeExtensions - href: api/XRTK.Extensions.TypeExtensions.html - commentId: T:XRTK.Extensions.TypeExtensions - fullName: XRTK.Extensions.TypeExtensions - nameWithType: TypeExtensions -- uid: XRTK.Extensions.TypeExtensions.FindTopmostGenericTypeArguments(System.Type,System.Int32) - name: FindTopmostGenericTypeArguments(Type, Int32) - href: api/XRTK.Extensions.TypeExtensions.html#XRTK_Extensions_TypeExtensions_FindTopmostGenericTypeArguments_System_Type_System_Int32_ - commentId: M:XRTK.Extensions.TypeExtensions.FindTopmostGenericTypeArguments(System.Type,System.Int32) - fullName: XRTK.Extensions.TypeExtensions.FindTopmostGenericTypeArguments(System.Type, System.Int32) - nameWithType: TypeExtensions.FindTopmostGenericTypeArguments(Type, Int32) -- uid: XRTK.Extensions.TypeExtensions.FindTopmostGenericTypeArguments* - name: FindTopmostGenericTypeArguments - href: api/XRTK.Extensions.TypeExtensions.html#XRTK_Extensions_TypeExtensions_FindTopmostGenericTypeArguments_ - commentId: Overload:XRTK.Extensions.TypeExtensions.FindTopmostGenericTypeArguments - isSpec: "True" - fullName: XRTK.Extensions.TypeExtensions.FindTopmostGenericTypeArguments - nameWithType: TypeExtensions.FindTopmostGenericTypeArguments -- uid: XRTK.Extensions.TypeExtensions.HasValidImplementations* - name: HasValidImplementations - href: api/XRTK.Extensions.TypeExtensions.html#XRTK_Extensions_TypeExtensions_HasValidImplementations_ - commentId: Overload:XRTK.Extensions.TypeExtensions.HasValidImplementations - isSpec: "True" - fullName: XRTK.Extensions.TypeExtensions.HasValidImplementations - nameWithType: TypeExtensions.HasValidImplementations -- uid: XRTK.Extensions.TypeExtensions.HasValidImplementations``1 - name: HasValidImplementations() - href: api/XRTK.Extensions.TypeExtensions.html#XRTK_Extensions_TypeExtensions_HasValidImplementations__1 - commentId: M:XRTK.Extensions.TypeExtensions.HasValidImplementations``1 - name.vb: HasValidImplementations(Of T)() - fullName: XRTK.Extensions.TypeExtensions.HasValidImplementations() - fullName.vb: XRTK.Extensions.TypeExtensions.HasValidImplementations(Of T)() - nameWithType: TypeExtensions.HasValidImplementations() - nameWithType.vb: TypeExtensions.HasValidImplementations(Of T)() -- uid: XRTK.Extensions.TypeExtensions.TryResolveType(System.Guid,System.Type@) - name: TryResolveType(Guid, out Type) - href: api/XRTK.Extensions.TypeExtensions.html#XRTK_Extensions_TypeExtensions_TryResolveType_System_Guid_System_Type__ - commentId: M:XRTK.Extensions.TypeExtensions.TryResolveType(System.Guid,System.Type@) - name.vb: TryResolveType(Guid, ByRef Type) - fullName: XRTK.Extensions.TypeExtensions.TryResolveType(System.Guid, out System.Type) - fullName.vb: XRTK.Extensions.TypeExtensions.TryResolveType(System.Guid, ByRef System.Type) - nameWithType: TypeExtensions.TryResolveType(Guid, out Type) - nameWithType.vb: TypeExtensions.TryResolveType(Guid, ByRef Type) -- uid: XRTK.Extensions.TypeExtensions.TryResolveType(System.String,System.Type@) - name: TryResolveType(String, out Type) - href: api/XRTK.Extensions.TypeExtensions.html#XRTK_Extensions_TypeExtensions_TryResolveType_System_String_System_Type__ - commentId: M:XRTK.Extensions.TypeExtensions.TryResolveType(System.String,System.Type@) - name.vb: TryResolveType(String, ByRef Type) - fullName: XRTK.Extensions.TypeExtensions.TryResolveType(System.String, out System.Type) - fullName.vb: XRTK.Extensions.TypeExtensions.TryResolveType(System.String, ByRef System.Type) - nameWithType: TypeExtensions.TryResolveType(String, out Type) - nameWithType.vb: TypeExtensions.TryResolveType(String, ByRef Type) -- uid: XRTK.Extensions.TypeExtensions.TryResolveType* - name: TryResolveType - href: api/XRTK.Extensions.TypeExtensions.html#XRTK_Extensions_TypeExtensions_TryResolveType_ - commentId: Overload:XRTK.Extensions.TypeExtensions.TryResolveType - isSpec: "True" - fullName: XRTK.Extensions.TypeExtensions.TryResolveType - nameWithType: TypeExtensions.TryResolveType -- uid: XRTK.Extensions.UnityObjectExtensions - name: UnityObjectExtensions - href: api/XRTK.Extensions.UnityObjectExtensions.html - commentId: T:XRTK.Extensions.UnityObjectExtensions - fullName: XRTK.Extensions.UnityObjectExtensions - nameWithType: UnityObjectExtensions -- uid: XRTK.Extensions.UnityObjectExtensions.Destroy(UnityEngine.Object,System.Single) - name: Destroy(Object, Single) - href: api/XRTK.Extensions.UnityObjectExtensions.html#XRTK_Extensions_UnityObjectExtensions_Destroy_UnityEngine_Object_System_Single_ - commentId: M:XRTK.Extensions.UnityObjectExtensions.Destroy(UnityEngine.Object,System.Single) - fullName: XRTK.Extensions.UnityObjectExtensions.Destroy(UnityEngine.Object, System.Single) - nameWithType: UnityObjectExtensions.Destroy(Object, Single) -- uid: XRTK.Extensions.UnityObjectExtensions.Destroy* - name: Destroy - href: api/XRTK.Extensions.UnityObjectExtensions.html#XRTK_Extensions_UnityObjectExtensions_Destroy_ - commentId: Overload:XRTK.Extensions.UnityObjectExtensions.Destroy - isSpec: "True" - fullName: XRTK.Extensions.UnityObjectExtensions.Destroy - nameWithType: UnityObjectExtensions.Destroy -- uid: XRTK.Extensions.UnityObjectExtensions.DontDestroyOnLoad(UnityEngine.Object) - name: DontDestroyOnLoad(Object) - href: api/XRTK.Extensions.UnityObjectExtensions.html#XRTK_Extensions_UnityObjectExtensions_DontDestroyOnLoad_UnityEngine_Object_ - commentId: M:XRTK.Extensions.UnityObjectExtensions.DontDestroyOnLoad(UnityEngine.Object) - fullName: XRTK.Extensions.UnityObjectExtensions.DontDestroyOnLoad(UnityEngine.Object) - nameWithType: UnityObjectExtensions.DontDestroyOnLoad(Object) -- uid: XRTK.Extensions.UnityObjectExtensions.DontDestroyOnLoad* - name: DontDestroyOnLoad - href: api/XRTK.Extensions.UnityObjectExtensions.html#XRTK_Extensions_UnityObjectExtensions_DontDestroyOnLoad_ - commentId: Overload:XRTK.Extensions.UnityObjectExtensions.DontDestroyOnLoad - isSpec: "True" - fullName: XRTK.Extensions.UnityObjectExtensions.DontDestroyOnLoad - nameWithType: UnityObjectExtensions.DontDestroyOnLoad -- uid: XRTK.Extensions.UnityObjectExtensions.IsNotNull(UnityEngine.Object) - name: IsNotNull(Object) - href: api/XRTK.Extensions.UnityObjectExtensions.html#XRTK_Extensions_UnityObjectExtensions_IsNotNull_UnityEngine_Object_ - commentId: M:XRTK.Extensions.UnityObjectExtensions.IsNotNull(UnityEngine.Object) - fullName: XRTK.Extensions.UnityObjectExtensions.IsNotNull(UnityEngine.Object) - nameWithType: UnityObjectExtensions.IsNotNull(Object) -- uid: XRTK.Extensions.UnityObjectExtensions.IsNotNull* - name: IsNotNull - href: api/XRTK.Extensions.UnityObjectExtensions.html#XRTK_Extensions_UnityObjectExtensions_IsNotNull_ - commentId: Overload:XRTK.Extensions.UnityObjectExtensions.IsNotNull - isSpec: "True" - fullName: XRTK.Extensions.UnityObjectExtensions.IsNotNull - nameWithType: UnityObjectExtensions.IsNotNull -- uid: XRTK.Extensions.UnityObjectExtensions.IsNull(UnityEngine.Object) - name: IsNull(Object) - href: api/XRTK.Extensions.UnityObjectExtensions.html#XRTK_Extensions_UnityObjectExtensions_IsNull_UnityEngine_Object_ - commentId: M:XRTK.Extensions.UnityObjectExtensions.IsNull(UnityEngine.Object) - fullName: XRTK.Extensions.UnityObjectExtensions.IsNull(UnityEngine.Object) - nameWithType: UnityObjectExtensions.IsNull(Object) -- uid: XRTK.Extensions.UnityObjectExtensions.IsNull* - name: IsNull - href: api/XRTK.Extensions.UnityObjectExtensions.html#XRTK_Extensions_UnityObjectExtensions_IsNull_ - commentId: Overload:XRTK.Extensions.UnityObjectExtensions.IsNull - isSpec: "True" - fullName: XRTK.Extensions.UnityObjectExtensions.IsNull - nameWithType: UnityObjectExtensions.IsNull -- uid: XRTK.Extensions.VectorExtensions - name: VectorExtensions - href: api/XRTK.Extensions.VectorExtensions.html - commentId: T:XRTK.Extensions.VectorExtensions - fullName: XRTK.Extensions.VectorExtensions - nameWithType: VectorExtensions -- uid: XRTK.Extensions.VectorExtensions.AngleAroundAxis(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Vector3) - name: AngleAroundAxis(Vector3, Vector3, Vector3) - href: api/XRTK.Extensions.VectorExtensions.html#XRTK_Extensions_VectorExtensions_AngleAroundAxis_UnityEngine_Vector3_UnityEngine_Vector3_UnityEngine_Vector3_ - commentId: M:XRTK.Extensions.VectorExtensions.AngleAroundAxis(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Vector3) - fullName: XRTK.Extensions.VectorExtensions.AngleAroundAxis(UnityEngine.Vector3, UnityEngine.Vector3, UnityEngine.Vector3) - nameWithType: VectorExtensions.AngleAroundAxis(Vector3, Vector3, Vector3) -- uid: XRTK.Extensions.VectorExtensions.AngleAroundAxis* - name: AngleAroundAxis - href: api/XRTK.Extensions.VectorExtensions.html#XRTK_Extensions_VectorExtensions_AngleAroundAxis_ - commentId: Overload:XRTK.Extensions.VectorExtensions.AngleAroundAxis - isSpec: "True" - fullName: XRTK.Extensions.VectorExtensions.AngleAroundAxis - nameWithType: VectorExtensions.AngleAroundAxis -- uid: XRTK.Extensions.VectorExtensions.Average(System.Collections.Generic.ICollection{UnityEngine.Vector2}) - name: Average(ICollection) - href: api/XRTK.Extensions.VectorExtensions.html#XRTK_Extensions_VectorExtensions_Average_System_Collections_Generic_ICollection_UnityEngine_Vector2__ - commentId: M:XRTK.Extensions.VectorExtensions.Average(System.Collections.Generic.ICollection{UnityEngine.Vector2}) - name.vb: Average(ICollection(Of Vector2)) - fullName: XRTK.Extensions.VectorExtensions.Average(System.Collections.Generic.ICollection) - fullName.vb: XRTK.Extensions.VectorExtensions.Average(System.Collections.Generic.ICollection(Of UnityEngine.Vector2)) - nameWithType: VectorExtensions.Average(ICollection) - nameWithType.vb: VectorExtensions.Average(ICollection(Of Vector2)) -- uid: XRTK.Extensions.VectorExtensions.Average(System.Collections.Generic.ICollection{UnityEngine.Vector3}) - name: Average(ICollection) - href: api/XRTK.Extensions.VectorExtensions.html#XRTK_Extensions_VectorExtensions_Average_System_Collections_Generic_ICollection_UnityEngine_Vector3__ - commentId: M:XRTK.Extensions.VectorExtensions.Average(System.Collections.Generic.ICollection{UnityEngine.Vector3}) - name.vb: Average(ICollection(Of Vector3)) - fullName: XRTK.Extensions.VectorExtensions.Average(System.Collections.Generic.ICollection) - fullName.vb: XRTK.Extensions.VectorExtensions.Average(System.Collections.Generic.ICollection(Of UnityEngine.Vector3)) - nameWithType: VectorExtensions.Average(ICollection) - nameWithType.vb: VectorExtensions.Average(ICollection(Of Vector3)) -- uid: XRTK.Extensions.VectorExtensions.Average(System.Collections.Generic.IEnumerable{UnityEngine.Vector2}) - name: Average(IEnumerable) - href: api/XRTK.Extensions.VectorExtensions.html#XRTK_Extensions_VectorExtensions_Average_System_Collections_Generic_IEnumerable_UnityEngine_Vector2__ - commentId: M:XRTK.Extensions.VectorExtensions.Average(System.Collections.Generic.IEnumerable{UnityEngine.Vector2}) - name.vb: Average(IEnumerable(Of Vector2)) - fullName: XRTK.Extensions.VectorExtensions.Average(System.Collections.Generic.IEnumerable) - fullName.vb: XRTK.Extensions.VectorExtensions.Average(System.Collections.Generic.IEnumerable(Of UnityEngine.Vector2)) - nameWithType: VectorExtensions.Average(IEnumerable) - nameWithType.vb: VectorExtensions.Average(IEnumerable(Of Vector2)) -- uid: XRTK.Extensions.VectorExtensions.Average(System.Collections.Generic.IEnumerable{UnityEngine.Vector3}) - name: Average(IEnumerable) - href: api/XRTK.Extensions.VectorExtensions.html#XRTK_Extensions_VectorExtensions_Average_System_Collections_Generic_IEnumerable_UnityEngine_Vector3__ - commentId: M:XRTK.Extensions.VectorExtensions.Average(System.Collections.Generic.IEnumerable{UnityEngine.Vector3}) - name.vb: Average(IEnumerable(Of Vector3)) - fullName: XRTK.Extensions.VectorExtensions.Average(System.Collections.Generic.IEnumerable) - fullName.vb: XRTK.Extensions.VectorExtensions.Average(System.Collections.Generic.IEnumerable(Of UnityEngine.Vector3)) - nameWithType: VectorExtensions.Average(IEnumerable) - nameWithType.vb: VectorExtensions.Average(IEnumerable(Of Vector3)) -- uid: XRTK.Extensions.VectorExtensions.Average* - name: Average - href: api/XRTK.Extensions.VectorExtensions.html#XRTK_Extensions_VectorExtensions_Average_ - commentId: Overload:XRTK.Extensions.VectorExtensions.Average - isSpec: "True" - fullName: XRTK.Extensions.VectorExtensions.Average - nameWithType: VectorExtensions.Average -- uid: XRTK.Extensions.VectorExtensions.CylindricalMapping(UnityEngine.Vector3,System.Single) - name: CylindricalMapping(Vector3, Single) - href: api/XRTK.Extensions.VectorExtensions.html#XRTK_Extensions_VectorExtensions_CylindricalMapping_UnityEngine_Vector3_System_Single_ - commentId: M:XRTK.Extensions.VectorExtensions.CylindricalMapping(UnityEngine.Vector3,System.Single) - fullName: XRTK.Extensions.VectorExtensions.CylindricalMapping(UnityEngine.Vector3, System.Single) - nameWithType: VectorExtensions.CylindricalMapping(Vector3, Single) -- uid: XRTK.Extensions.VectorExtensions.CylindricalMapping* - name: CylindricalMapping - href: api/XRTK.Extensions.VectorExtensions.html#XRTK_Extensions_VectorExtensions_CylindricalMapping_ - commentId: Overload:XRTK.Extensions.VectorExtensions.CylindricalMapping - isSpec: "True" - fullName: XRTK.Extensions.VectorExtensions.CylindricalMapping - nameWithType: VectorExtensions.CylindricalMapping -- uid: XRTK.Extensions.VectorExtensions.DetermineMoveDirection(UnityEngine.Vector2,System.Single) - name: DetermineMoveDirection(Vector2, Single) - href: api/XRTK.Extensions.VectorExtensions.html#XRTK_Extensions_VectorExtensions_DetermineMoveDirection_UnityEngine_Vector2_System_Single_ - commentId: M:XRTK.Extensions.VectorExtensions.DetermineMoveDirection(UnityEngine.Vector2,System.Single) - fullName: XRTK.Extensions.VectorExtensions.DetermineMoveDirection(UnityEngine.Vector2, System.Single) - nameWithType: VectorExtensions.DetermineMoveDirection(Vector2, Single) -- uid: XRTK.Extensions.VectorExtensions.DetermineMoveDirection* - name: DetermineMoveDirection - href: api/XRTK.Extensions.VectorExtensions.html#XRTK_Extensions_VectorExtensions_DetermineMoveDirection_ - commentId: Overload:XRTK.Extensions.VectorExtensions.DetermineMoveDirection - isSpec: "True" - fullName: XRTK.Extensions.VectorExtensions.DetermineMoveDirection - nameWithType: VectorExtensions.DetermineMoveDirection -- uid: XRTK.Extensions.VectorExtensions.Div(UnityEngine.Vector2,UnityEngine.Vector2) - name: Div(Vector2, Vector2) - href: api/XRTK.Extensions.VectorExtensions.html#XRTK_Extensions_VectorExtensions_Div_UnityEngine_Vector2_UnityEngine_Vector2_ - commentId: M:XRTK.Extensions.VectorExtensions.Div(UnityEngine.Vector2,UnityEngine.Vector2) - fullName: XRTK.Extensions.VectorExtensions.Div(UnityEngine.Vector2, UnityEngine.Vector2) - nameWithType: VectorExtensions.Div(Vector2, Vector2) -- uid: XRTK.Extensions.VectorExtensions.Div(UnityEngine.Vector3,UnityEngine.Vector3) - name: Div(Vector3, Vector3) - href: api/XRTK.Extensions.VectorExtensions.html#XRTK_Extensions_VectorExtensions_Div_UnityEngine_Vector3_UnityEngine_Vector3_ - commentId: M:XRTK.Extensions.VectorExtensions.Div(UnityEngine.Vector3,UnityEngine.Vector3) - fullName: XRTK.Extensions.VectorExtensions.Div(UnityEngine.Vector3, UnityEngine.Vector3) - nameWithType: VectorExtensions.Div(Vector3, Vector3) -- uid: XRTK.Extensions.VectorExtensions.Div* - name: Div - href: api/XRTK.Extensions.VectorExtensions.html#XRTK_Extensions_VectorExtensions_Div_ - commentId: Overload:XRTK.Extensions.VectorExtensions.Div - isSpec: "True" - fullName: XRTK.Extensions.VectorExtensions.Div - nameWithType: VectorExtensions.Div -- uid: XRTK.Extensions.VectorExtensions.InverseTransformPoint(UnityEngine.Vector3,UnityEngine.Transform) - name: InverseTransformPoint(Vector3, Transform) - href: api/XRTK.Extensions.VectorExtensions.html#XRTK_Extensions_VectorExtensions_InverseTransformPoint_UnityEngine_Vector3_UnityEngine_Transform_ - commentId: M:XRTK.Extensions.VectorExtensions.InverseTransformPoint(UnityEngine.Vector3,UnityEngine.Transform) - fullName: XRTK.Extensions.VectorExtensions.InverseTransformPoint(UnityEngine.Vector3, UnityEngine.Transform) - nameWithType: VectorExtensions.InverseTransformPoint(Vector3, Transform) -- uid: XRTK.Extensions.VectorExtensions.InverseTransformPoint(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Quaternion,UnityEngine.Vector3) - name: InverseTransformPoint(Vector3, Vector3, Quaternion, Vector3) - href: api/XRTK.Extensions.VectorExtensions.html#XRTK_Extensions_VectorExtensions_InverseTransformPoint_UnityEngine_Vector3_UnityEngine_Vector3_UnityEngine_Quaternion_UnityEngine_Vector3_ - commentId: M:XRTK.Extensions.VectorExtensions.InverseTransformPoint(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Quaternion,UnityEngine.Vector3) - fullName: XRTK.Extensions.VectorExtensions.InverseTransformPoint(UnityEngine.Vector3, UnityEngine.Vector3, UnityEngine.Quaternion, UnityEngine.Vector3) - nameWithType: VectorExtensions.InverseTransformPoint(Vector3, Vector3, Quaternion, Vector3) -- uid: XRTK.Extensions.VectorExtensions.InverseTransformPoint* - name: InverseTransformPoint - href: api/XRTK.Extensions.VectorExtensions.html#XRTK_Extensions_VectorExtensions_InverseTransformPoint_ - commentId: Overload:XRTK.Extensions.VectorExtensions.InverseTransformPoint - isSpec: "True" - fullName: XRTK.Extensions.VectorExtensions.InverseTransformPoint - nameWithType: VectorExtensions.InverseTransformPoint -- uid: XRTK.Extensions.VectorExtensions.IsNormalVertical(UnityEngine.Vector3) - name: IsNormalVertical(Vector3) - href: api/XRTK.Extensions.VectorExtensions.html#XRTK_Extensions_VectorExtensions_IsNormalVertical_UnityEngine_Vector3_ - commentId: M:XRTK.Extensions.VectorExtensions.IsNormalVertical(UnityEngine.Vector3) - fullName: XRTK.Extensions.VectorExtensions.IsNormalVertical(UnityEngine.Vector3) - nameWithType: VectorExtensions.IsNormalVertical(Vector3) -- uid: XRTK.Extensions.VectorExtensions.IsNormalVertical* - name: IsNormalVertical - href: api/XRTK.Extensions.VectorExtensions.html#XRTK_Extensions_VectorExtensions_IsNormalVertical_ - commentId: Overload:XRTK.Extensions.VectorExtensions.IsNormalVertical - isSpec: "True" - fullName: XRTK.Extensions.VectorExtensions.IsNormalVertical - nameWithType: VectorExtensions.IsNormalVertical -- uid: XRTK.Extensions.VectorExtensions.IsValidVector(UnityEngine.Vector3) - name: IsValidVector(Vector3) - href: api/XRTK.Extensions.VectorExtensions.html#XRTK_Extensions_VectorExtensions_IsValidVector_UnityEngine_Vector3_ - commentId: M:XRTK.Extensions.VectorExtensions.IsValidVector(UnityEngine.Vector3) - fullName: XRTK.Extensions.VectorExtensions.IsValidVector(UnityEngine.Vector3) - nameWithType: VectorExtensions.IsValidVector(Vector3) -- uid: XRTK.Extensions.VectorExtensions.IsValidVector* - name: IsValidVector - href: api/XRTK.Extensions.VectorExtensions.html#XRTK_Extensions_VectorExtensions_IsValidVector_ - commentId: Overload:XRTK.Extensions.VectorExtensions.IsValidVector - isSpec: "True" - fullName: XRTK.Extensions.VectorExtensions.IsValidVector - nameWithType: VectorExtensions.IsValidVector -- uid: XRTK.Extensions.VectorExtensions.Median(System.Collections.Generic.ICollection{UnityEngine.Vector2}) - name: Median(ICollection) - href: api/XRTK.Extensions.VectorExtensions.html#XRTK_Extensions_VectorExtensions_Median_System_Collections_Generic_ICollection_UnityEngine_Vector2__ - commentId: M:XRTK.Extensions.VectorExtensions.Median(System.Collections.Generic.ICollection{UnityEngine.Vector2}) - name.vb: Median(ICollection(Of Vector2)) - fullName: XRTK.Extensions.VectorExtensions.Median(System.Collections.Generic.ICollection) - fullName.vb: XRTK.Extensions.VectorExtensions.Median(System.Collections.Generic.ICollection(Of UnityEngine.Vector2)) - nameWithType: VectorExtensions.Median(ICollection) - nameWithType.vb: VectorExtensions.Median(ICollection(Of Vector2)) -- uid: XRTK.Extensions.VectorExtensions.Median(System.Collections.Generic.ICollection{UnityEngine.Vector3}) - name: Median(ICollection) - href: api/XRTK.Extensions.VectorExtensions.html#XRTK_Extensions_VectorExtensions_Median_System_Collections_Generic_ICollection_UnityEngine_Vector3__ - commentId: M:XRTK.Extensions.VectorExtensions.Median(System.Collections.Generic.ICollection{UnityEngine.Vector3}) - name.vb: Median(ICollection(Of Vector3)) - fullName: XRTK.Extensions.VectorExtensions.Median(System.Collections.Generic.ICollection) - fullName.vb: XRTK.Extensions.VectorExtensions.Median(System.Collections.Generic.ICollection(Of UnityEngine.Vector3)) - nameWithType: VectorExtensions.Median(ICollection) - nameWithType.vb: VectorExtensions.Median(ICollection(Of Vector3)) -- uid: XRTK.Extensions.VectorExtensions.Median(System.Collections.Generic.IEnumerable{UnityEngine.Vector2}) - name: Median(IEnumerable) - href: api/XRTK.Extensions.VectorExtensions.html#XRTK_Extensions_VectorExtensions_Median_System_Collections_Generic_IEnumerable_UnityEngine_Vector2__ - commentId: M:XRTK.Extensions.VectorExtensions.Median(System.Collections.Generic.IEnumerable{UnityEngine.Vector2}) - name.vb: Median(IEnumerable(Of Vector2)) - fullName: XRTK.Extensions.VectorExtensions.Median(System.Collections.Generic.IEnumerable) - fullName.vb: XRTK.Extensions.VectorExtensions.Median(System.Collections.Generic.IEnumerable(Of UnityEngine.Vector2)) - nameWithType: VectorExtensions.Median(IEnumerable) - nameWithType.vb: VectorExtensions.Median(IEnumerable(Of Vector2)) -- uid: XRTK.Extensions.VectorExtensions.Median(System.Collections.Generic.IEnumerable{UnityEngine.Vector3}) - name: Median(IEnumerable) - href: api/XRTK.Extensions.VectorExtensions.html#XRTK_Extensions_VectorExtensions_Median_System_Collections_Generic_IEnumerable_UnityEngine_Vector3__ - commentId: M:XRTK.Extensions.VectorExtensions.Median(System.Collections.Generic.IEnumerable{UnityEngine.Vector3}) - name.vb: Median(IEnumerable(Of Vector3)) - fullName: XRTK.Extensions.VectorExtensions.Median(System.Collections.Generic.IEnumerable) - fullName.vb: XRTK.Extensions.VectorExtensions.Median(System.Collections.Generic.IEnumerable(Of UnityEngine.Vector3)) - nameWithType: VectorExtensions.Median(IEnumerable) - nameWithType.vb: VectorExtensions.Median(IEnumerable(Of Vector3)) -- uid: XRTK.Extensions.VectorExtensions.Median* - name: Median - href: api/XRTK.Extensions.VectorExtensions.html#XRTK_Extensions_VectorExtensions_Median_ - commentId: Overload:XRTK.Extensions.VectorExtensions.Median - isSpec: "True" - fullName: XRTK.Extensions.VectorExtensions.Median - nameWithType: VectorExtensions.Median -- uid: XRTK.Extensions.VectorExtensions.MidPoint(UnityEngine.Vector2,UnityEngine.Vector2) - name: MidPoint(Vector2, Vector2) - href: api/XRTK.Extensions.VectorExtensions.html#XRTK_Extensions_VectorExtensions_MidPoint_UnityEngine_Vector2_UnityEngine_Vector2_ - commentId: M:XRTK.Extensions.VectorExtensions.MidPoint(UnityEngine.Vector2,UnityEngine.Vector2) - fullName: XRTK.Extensions.VectorExtensions.MidPoint(UnityEngine.Vector2, UnityEngine.Vector2) - nameWithType: VectorExtensions.MidPoint(Vector2, Vector2) -- uid: XRTK.Extensions.VectorExtensions.MidPoint(UnityEngine.Vector3,UnityEngine.Vector3) - name: MidPoint(Vector3, Vector3) - href: api/XRTK.Extensions.VectorExtensions.html#XRTK_Extensions_VectorExtensions_MidPoint_UnityEngine_Vector3_UnityEngine_Vector3_ - commentId: M:XRTK.Extensions.VectorExtensions.MidPoint(UnityEngine.Vector3,UnityEngine.Vector3) - fullName: XRTK.Extensions.VectorExtensions.MidPoint(UnityEngine.Vector3, UnityEngine.Vector3) - nameWithType: VectorExtensions.MidPoint(Vector3, Vector3) -- uid: XRTK.Extensions.VectorExtensions.MidPoint* - name: MidPoint - href: api/XRTK.Extensions.VectorExtensions.html#XRTK_Extensions_VectorExtensions_MidPoint_ - commentId: Overload:XRTK.Extensions.VectorExtensions.MidPoint - isSpec: "True" - fullName: XRTK.Extensions.VectorExtensions.MidPoint - nameWithType: VectorExtensions.MidPoint -- uid: XRTK.Extensions.VectorExtensions.Mul(UnityEngine.Vector2,UnityEngine.Vector2) - name: Mul(Vector2, Vector2) - href: api/XRTK.Extensions.VectorExtensions.html#XRTK_Extensions_VectorExtensions_Mul_UnityEngine_Vector2_UnityEngine_Vector2_ - commentId: M:XRTK.Extensions.VectorExtensions.Mul(UnityEngine.Vector2,UnityEngine.Vector2) - fullName: XRTK.Extensions.VectorExtensions.Mul(UnityEngine.Vector2, UnityEngine.Vector2) - nameWithType: VectorExtensions.Mul(Vector2, Vector2) -- uid: XRTK.Extensions.VectorExtensions.Mul(UnityEngine.Vector3,UnityEngine.Vector3) - name: Mul(Vector3, Vector3) - href: api/XRTK.Extensions.VectorExtensions.html#XRTK_Extensions_VectorExtensions_Mul_UnityEngine_Vector3_UnityEngine_Vector3_ - commentId: M:XRTK.Extensions.VectorExtensions.Mul(UnityEngine.Vector3,UnityEngine.Vector3) - fullName: XRTK.Extensions.VectorExtensions.Mul(UnityEngine.Vector3, UnityEngine.Vector3) - nameWithType: VectorExtensions.Mul(Vector3, Vector3) -- uid: XRTK.Extensions.VectorExtensions.Mul* - name: Mul - href: api/XRTK.Extensions.VectorExtensions.html#XRTK_Extensions_VectorExtensions_Mul_ - commentId: Overload:XRTK.Extensions.VectorExtensions.Mul - isSpec: "True" - fullName: XRTK.Extensions.VectorExtensions.Mul - nameWithType: VectorExtensions.Mul -- uid: XRTK.Extensions.VectorExtensions.RadialMapping(UnityEngine.Vector3,System.Single,System.Single,System.Int32,System.Int32,System.Int32,System.Int32,System.Single) - name: RadialMapping(Vector3, Single, Single, Int32, Int32, Int32, Int32, Single) - href: api/XRTK.Extensions.VectorExtensions.html#XRTK_Extensions_VectorExtensions_RadialMapping_UnityEngine_Vector3_System_Single_System_Single_System_Int32_System_Int32_System_Int32_System_Int32_System_Single_ - commentId: M:XRTK.Extensions.VectorExtensions.RadialMapping(UnityEngine.Vector3,System.Single,System.Single,System.Int32,System.Int32,System.Int32,System.Int32,System.Single) - fullName: XRTK.Extensions.VectorExtensions.RadialMapping(UnityEngine.Vector3, System.Single, System.Single, System.Int32, System.Int32, System.Int32, System.Int32, System.Single) - nameWithType: VectorExtensions.RadialMapping(Vector3, Single, Single, Int32, Int32, Int32, Int32, Single) -- uid: XRTK.Extensions.VectorExtensions.RadialMapping* - name: RadialMapping - href: api/XRTK.Extensions.VectorExtensions.html#XRTK_Extensions_VectorExtensions_RadialMapping_ - commentId: Overload:XRTK.Extensions.VectorExtensions.RadialMapping - isSpec: "True" - fullName: XRTK.Extensions.VectorExtensions.RadialMapping - nameWithType: VectorExtensions.RadialMapping -- uid: XRTK.Extensions.VectorExtensions.RotateAroundPoint(UnityEngine.Vector2,UnityEngine.Vector2,System.Single) - name: RotateAroundPoint(Vector2, Vector2, Single) - href: api/XRTK.Extensions.VectorExtensions.html#XRTK_Extensions_VectorExtensions_RotateAroundPoint_UnityEngine_Vector2_UnityEngine_Vector2_System_Single_ - commentId: M:XRTK.Extensions.VectorExtensions.RotateAroundPoint(UnityEngine.Vector2,UnityEngine.Vector2,System.Single) - fullName: XRTK.Extensions.VectorExtensions.RotateAroundPoint(UnityEngine.Vector2, UnityEngine.Vector2, System.Single) - nameWithType: VectorExtensions.RotateAroundPoint(Vector2, Vector2, Single) -- uid: XRTK.Extensions.VectorExtensions.RotateAroundPoint(UnityEngine.Vector3,UnityEngine.Vector3,System.Single,UnityEngine.Vector3) - name: RotateAroundPoint(Vector3, Vector3, Single, Vector3) - href: api/XRTK.Extensions.VectorExtensions.html#XRTK_Extensions_VectorExtensions_RotateAroundPoint_UnityEngine_Vector3_UnityEngine_Vector3_System_Single_UnityEngine_Vector3_ - commentId: M:XRTK.Extensions.VectorExtensions.RotateAroundPoint(UnityEngine.Vector3,UnityEngine.Vector3,System.Single,UnityEngine.Vector3) - fullName: XRTK.Extensions.VectorExtensions.RotateAroundPoint(UnityEngine.Vector3, UnityEngine.Vector3, System.Single, UnityEngine.Vector3) - nameWithType: VectorExtensions.RotateAroundPoint(Vector3, Vector3, Single, Vector3) -- uid: XRTK.Extensions.VectorExtensions.RotateAroundPoint(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Quaternion) - name: RotateAroundPoint(Vector3, Vector3, Quaternion) - href: api/XRTK.Extensions.VectorExtensions.html#XRTK_Extensions_VectorExtensions_RotateAroundPoint_UnityEngine_Vector3_UnityEngine_Vector3_UnityEngine_Quaternion_ - commentId: M:XRTK.Extensions.VectorExtensions.RotateAroundPoint(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Quaternion) - fullName: XRTK.Extensions.VectorExtensions.RotateAroundPoint(UnityEngine.Vector3, UnityEngine.Vector3, UnityEngine.Quaternion) - nameWithType: VectorExtensions.RotateAroundPoint(Vector3, Vector3, Quaternion) -- uid: XRTK.Extensions.VectorExtensions.RotateAroundPoint(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Vector3) - name: RotateAroundPoint(Vector3, Vector3, Vector3) - href: api/XRTK.Extensions.VectorExtensions.html#XRTK_Extensions_VectorExtensions_RotateAroundPoint_UnityEngine_Vector3_UnityEngine_Vector3_UnityEngine_Vector3_ - commentId: M:XRTK.Extensions.VectorExtensions.RotateAroundPoint(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Vector3) - fullName: XRTK.Extensions.VectorExtensions.RotateAroundPoint(UnityEngine.Vector3, UnityEngine.Vector3, UnityEngine.Vector3) - nameWithType: VectorExtensions.RotateAroundPoint(Vector3, Vector3, Vector3) -- uid: XRTK.Extensions.VectorExtensions.RotateAroundPoint* - name: RotateAroundPoint - href: api/XRTK.Extensions.VectorExtensions.html#XRTK_Extensions_VectorExtensions_RotateAroundPoint_ - commentId: Overload:XRTK.Extensions.VectorExtensions.RotateAroundPoint - isSpec: "True" - fullName: XRTK.Extensions.VectorExtensions.RotateAroundPoint - nameWithType: VectorExtensions.RotateAroundPoint -- uid: XRTK.Extensions.VectorExtensions.RotatePoint(UnityEngine.Vector2,System.Single) - name: RotatePoint(Vector2, Single) - href: api/XRTK.Extensions.VectorExtensions.html#XRTK_Extensions_VectorExtensions_RotatePoint_UnityEngine_Vector2_System_Single_ - commentId: M:XRTK.Extensions.VectorExtensions.RotatePoint(UnityEngine.Vector2,System.Single) - fullName: XRTK.Extensions.VectorExtensions.RotatePoint(UnityEngine.Vector2, System.Single) - nameWithType: VectorExtensions.RotatePoint(Vector2, Single) -- uid: XRTK.Extensions.VectorExtensions.RotatePoint* - name: RotatePoint - href: api/XRTK.Extensions.VectorExtensions.html#XRTK_Extensions_VectorExtensions_RotatePoint_ - commentId: Overload:XRTK.Extensions.VectorExtensions.RotatePoint - isSpec: "True" - fullName: XRTK.Extensions.VectorExtensions.RotatePoint - nameWithType: VectorExtensions.RotatePoint -- uid: XRTK.Extensions.VectorExtensions.ScatterMapping(UnityEngine.Vector3,System.Single) - name: ScatterMapping(Vector3, Single) - href: api/XRTK.Extensions.VectorExtensions.html#XRTK_Extensions_VectorExtensions_ScatterMapping_UnityEngine_Vector3_System_Single_ - commentId: M:XRTK.Extensions.VectorExtensions.ScatterMapping(UnityEngine.Vector3,System.Single) - fullName: XRTK.Extensions.VectorExtensions.ScatterMapping(UnityEngine.Vector3, System.Single) - nameWithType: VectorExtensions.ScatterMapping(Vector3, Single) -- uid: XRTK.Extensions.VectorExtensions.ScatterMapping* - name: ScatterMapping - href: api/XRTK.Extensions.VectorExtensions.html#XRTK_Extensions_VectorExtensions_ScatterMapping_ - commentId: Overload:XRTK.Extensions.VectorExtensions.ScatterMapping - isSpec: "True" - fullName: XRTK.Extensions.VectorExtensions.ScatterMapping - nameWithType: VectorExtensions.ScatterMapping -- uid: XRTK.Extensions.VectorExtensions.SmoothTo(UnityEngine.Vector3,UnityEngine.Vector3,System.Single,System.Single) - name: SmoothTo(Vector3, Vector3, Single, Single) - href: api/XRTK.Extensions.VectorExtensions.html#XRTK_Extensions_VectorExtensions_SmoothTo_UnityEngine_Vector3_UnityEngine_Vector3_System_Single_System_Single_ - commentId: M:XRTK.Extensions.VectorExtensions.SmoothTo(UnityEngine.Vector3,UnityEngine.Vector3,System.Single,System.Single) - fullName: XRTK.Extensions.VectorExtensions.SmoothTo(UnityEngine.Vector3, UnityEngine.Vector3, System.Single, System.Single) - nameWithType: VectorExtensions.SmoothTo(Vector3, Vector3, Single, Single) -- uid: XRTK.Extensions.VectorExtensions.SmoothTo* - name: SmoothTo - href: api/XRTK.Extensions.VectorExtensions.html#XRTK_Extensions_VectorExtensions_SmoothTo_ - commentId: Overload:XRTK.Extensions.VectorExtensions.SmoothTo - isSpec: "True" - fullName: XRTK.Extensions.VectorExtensions.SmoothTo - nameWithType: VectorExtensions.SmoothTo -- uid: XRTK.Extensions.VectorExtensions.SphericalMapping(UnityEngine.Vector3,System.Single) - name: SphericalMapping(Vector3, Single) - href: api/XRTK.Extensions.VectorExtensions.html#XRTK_Extensions_VectorExtensions_SphericalMapping_UnityEngine_Vector3_System_Single_ - commentId: M:XRTK.Extensions.VectorExtensions.SphericalMapping(UnityEngine.Vector3,System.Single) - fullName: XRTK.Extensions.VectorExtensions.SphericalMapping(UnityEngine.Vector3, System.Single) - nameWithType: VectorExtensions.SphericalMapping(Vector3, Single) -- uid: XRTK.Extensions.VectorExtensions.SphericalMapping* - name: SphericalMapping - href: api/XRTK.Extensions.VectorExtensions.html#XRTK_Extensions_VectorExtensions_SphericalMapping_ - commentId: Overload:XRTK.Extensions.VectorExtensions.SphericalMapping - isSpec: "True" - fullName: XRTK.Extensions.VectorExtensions.SphericalMapping - nameWithType: VectorExtensions.SphericalMapping -- uid: XRTK.Extensions.VectorExtensions.TransformPoint(UnityEngine.Vector3,UnityEngine.Transform) - name: TransformPoint(Vector3, Transform) - href: api/XRTK.Extensions.VectorExtensions.html#XRTK_Extensions_VectorExtensions_TransformPoint_UnityEngine_Vector3_UnityEngine_Transform_ - commentId: M:XRTK.Extensions.VectorExtensions.TransformPoint(UnityEngine.Vector3,UnityEngine.Transform) - fullName: XRTK.Extensions.VectorExtensions.TransformPoint(UnityEngine.Vector3, UnityEngine.Transform) - nameWithType: VectorExtensions.TransformPoint(Vector3, Transform) -- uid: XRTK.Extensions.VectorExtensions.TransformPoint(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Quaternion,UnityEngine.Vector3) - name: TransformPoint(Vector3, Vector3, Quaternion, Vector3) - href: api/XRTK.Extensions.VectorExtensions.html#XRTK_Extensions_VectorExtensions_TransformPoint_UnityEngine_Vector3_UnityEngine_Vector3_UnityEngine_Quaternion_UnityEngine_Vector3_ - commentId: M:XRTK.Extensions.VectorExtensions.TransformPoint(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Quaternion,UnityEngine.Vector3) - fullName: XRTK.Extensions.VectorExtensions.TransformPoint(UnityEngine.Vector3, UnityEngine.Vector3, UnityEngine.Quaternion, UnityEngine.Vector3) - nameWithType: VectorExtensions.TransformPoint(Vector3, Vector3, Quaternion, Vector3) -- uid: XRTK.Extensions.VectorExtensions.TransformPoint* - name: TransformPoint - href: api/XRTK.Extensions.VectorExtensions.html#XRTK_Extensions_VectorExtensions_TransformPoint_ - commentId: Overload:XRTK.Extensions.VectorExtensions.TransformPoint - isSpec: "True" - fullName: XRTK.Extensions.VectorExtensions.TransformPoint - nameWithType: VectorExtensions.TransformPoint -- uid: XRTK.glTF.Editor - name: XRTK.glTF.Editor - href: api/XRTK.glTF.Editor.html - commentId: N:XRTK.glTF.Editor - fullName: XRTK.glTF.Editor - nameWithType: XRTK.glTF.Editor -- uid: XRTK.glTF.Editor.glTFPathFinder - name: glTFPathFinder - href: api/XRTK.glTF.Editor.glTFPathFinder.html - commentId: T:XRTK.glTF.Editor.glTFPathFinder - fullName: XRTK.glTF.Editor.glTFPathFinder - nameWithType: glTFPathFinder -- uid: XRTK.glTF.Editor.glTFPathFinder.Location - name: Location - href: api/XRTK.glTF.Editor.glTFPathFinder.html#XRTK_glTF_Editor_glTFPathFinder_Location - commentId: P:XRTK.glTF.Editor.glTFPathFinder.Location - fullName: XRTK.glTF.Editor.glTFPathFinder.Location - nameWithType: glTFPathFinder.Location -- uid: XRTK.glTF.Editor.glTFPathFinder.Location* - name: Location - href: api/XRTK.glTF.Editor.glTFPathFinder.html#XRTK_glTF_Editor_glTFPathFinder_Location_ - commentId: Overload:XRTK.glTF.Editor.glTFPathFinder.Location - isSpec: "True" - fullName: XRTK.glTF.Editor.glTFPathFinder.Location - nameWithType: glTFPathFinder.Location -- uid: XRTK.Interfaces - name: XRTK.Interfaces - href: api/XRTK.Interfaces.html - commentId: N:XRTK.Interfaces - fullName: XRTK.Interfaces - nameWithType: XRTK.Interfaces -- uid: XRTK.Interfaces.Audio - name: XRTK.Interfaces.Audio - href: api/XRTK.Interfaces.Audio.html - commentId: N:XRTK.Interfaces.Audio - fullName: XRTK.Interfaces.Audio - nameWithType: XRTK.Interfaces.Audio -- uid: XRTK.Interfaces.Audio.IAudioInfluencer - name: IAudioInfluencer - href: api/XRTK.Interfaces.Audio.IAudioInfluencer.html - commentId: T:XRTK.Interfaces.Audio.IAudioInfluencer - fullName: XRTK.Interfaces.Audio.IAudioInfluencer - nameWithType: IAudioInfluencer -- uid: XRTK.Interfaces.Audio.IAudioInfluencer.ApplyEffect(UnityEngine.GameObject) - name: ApplyEffect(GameObject) - href: api/XRTK.Interfaces.Audio.IAudioInfluencer.html#XRTK_Interfaces_Audio_IAudioInfluencer_ApplyEffect_UnityEngine_GameObject_ - commentId: M:XRTK.Interfaces.Audio.IAudioInfluencer.ApplyEffect(UnityEngine.GameObject) - fullName: XRTK.Interfaces.Audio.IAudioInfluencer.ApplyEffect(UnityEngine.GameObject) - nameWithType: IAudioInfluencer.ApplyEffect(GameObject) -- uid: XRTK.Interfaces.Audio.IAudioInfluencer.ApplyEffect* - name: ApplyEffect - href: api/XRTK.Interfaces.Audio.IAudioInfluencer.html#XRTK_Interfaces_Audio_IAudioInfluencer_ApplyEffect_ - commentId: Overload:XRTK.Interfaces.Audio.IAudioInfluencer.ApplyEffect - isSpec: "True" - fullName: XRTK.Interfaces.Audio.IAudioInfluencer.ApplyEffect - nameWithType: IAudioInfluencer.ApplyEffect -- uid: XRTK.Interfaces.Audio.IAudioInfluencer.RemoveEffect(UnityEngine.GameObject) - name: RemoveEffect(GameObject) - href: api/XRTK.Interfaces.Audio.IAudioInfluencer.html#XRTK_Interfaces_Audio_IAudioInfluencer_RemoveEffect_UnityEngine_GameObject_ - commentId: M:XRTK.Interfaces.Audio.IAudioInfluencer.RemoveEffect(UnityEngine.GameObject) - fullName: XRTK.Interfaces.Audio.IAudioInfluencer.RemoveEffect(UnityEngine.GameObject) - nameWithType: IAudioInfluencer.RemoveEffect(GameObject) -- uid: XRTK.Interfaces.Audio.IAudioInfluencer.RemoveEffect* - name: RemoveEffect - href: api/XRTK.Interfaces.Audio.IAudioInfluencer.html#XRTK_Interfaces_Audio_IAudioInfluencer_RemoveEffect_ - commentId: Overload:XRTK.Interfaces.Audio.IAudioInfluencer.RemoveEffect - isSpec: "True" - fullName: XRTK.Interfaces.Audio.IAudioInfluencer.RemoveEffect - nameWithType: IAudioInfluencer.RemoveEffect -- uid: XRTK.Interfaces.BoundarySystem - name: XRTK.Interfaces.BoundarySystem - href: api/XRTK.Interfaces.BoundarySystem.html - commentId: N:XRTK.Interfaces.BoundarySystem - fullName: XRTK.Interfaces.BoundarySystem - nameWithType: XRTK.Interfaces.BoundarySystem -- uid: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundaryDataProvider - name: IMixedRealityBoundaryDataProvider - href: api/XRTK.Interfaces.BoundarySystem.IMixedRealityBoundaryDataProvider.html - commentId: T:XRTK.Interfaces.BoundarySystem.IMixedRealityBoundaryDataProvider - fullName: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundaryDataProvider - nameWithType: IMixedRealityBoundaryDataProvider -- uid: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundaryDataProvider.IsPlatformConfigured - name: IsPlatformConfigured - href: api/XRTK.Interfaces.BoundarySystem.IMixedRealityBoundaryDataProvider.html#XRTK_Interfaces_BoundarySystem_IMixedRealityBoundaryDataProvider_IsPlatformConfigured - commentId: P:XRTK.Interfaces.BoundarySystem.IMixedRealityBoundaryDataProvider.IsPlatformConfigured - fullName: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundaryDataProvider.IsPlatformConfigured - nameWithType: IMixedRealityBoundaryDataProvider.IsPlatformConfigured -- uid: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundaryDataProvider.IsPlatformConfigured* - name: IsPlatformConfigured - href: api/XRTK.Interfaces.BoundarySystem.IMixedRealityBoundaryDataProvider.html#XRTK_Interfaces_BoundarySystem_IMixedRealityBoundaryDataProvider_IsPlatformConfigured_ - commentId: Overload:XRTK.Interfaces.BoundarySystem.IMixedRealityBoundaryDataProvider.IsPlatformConfigured - isSpec: "True" - fullName: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundaryDataProvider.IsPlatformConfigured - nameWithType: IMixedRealityBoundaryDataProvider.IsPlatformConfigured -- uid: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundaryDataProvider.TryGetBoundaryGeometry(System.Collections.Generic.List{UnityEngine.Vector3}@) - name: TryGetBoundaryGeometry(ref List) - href: api/XRTK.Interfaces.BoundarySystem.IMixedRealityBoundaryDataProvider.html#XRTK_Interfaces_BoundarySystem_IMixedRealityBoundaryDataProvider_TryGetBoundaryGeometry_System_Collections_Generic_List_UnityEngine_Vector3___ - commentId: M:XRTK.Interfaces.BoundarySystem.IMixedRealityBoundaryDataProvider.TryGetBoundaryGeometry(System.Collections.Generic.List{UnityEngine.Vector3}@) - name.vb: TryGetBoundaryGeometry(ByRef List(Of Vector3)) - fullName: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundaryDataProvider.TryGetBoundaryGeometry(ref System.Collections.Generic.List) - fullName.vb: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundaryDataProvider.TryGetBoundaryGeometry(ByRef System.Collections.Generic.List(Of UnityEngine.Vector3)) - nameWithType: IMixedRealityBoundaryDataProvider.TryGetBoundaryGeometry(ref List) - nameWithType.vb: IMixedRealityBoundaryDataProvider.TryGetBoundaryGeometry(ByRef List(Of Vector3)) -- uid: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundaryDataProvider.TryGetBoundaryGeometry* - name: TryGetBoundaryGeometry - href: api/XRTK.Interfaces.BoundarySystem.IMixedRealityBoundaryDataProvider.html#XRTK_Interfaces_BoundarySystem_IMixedRealityBoundaryDataProvider_TryGetBoundaryGeometry_ - commentId: Overload:XRTK.Interfaces.BoundarySystem.IMixedRealityBoundaryDataProvider.TryGetBoundaryGeometry - isSpec: "True" - fullName: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundaryDataProvider.TryGetBoundaryGeometry - nameWithType: IMixedRealityBoundaryDataProvider.TryGetBoundaryGeometry -- uid: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundaryDataProvider.Visibility - name: Visibility - href: api/XRTK.Interfaces.BoundarySystem.IMixedRealityBoundaryDataProvider.html#XRTK_Interfaces_BoundarySystem_IMixedRealityBoundaryDataProvider_Visibility - commentId: P:XRTK.Interfaces.BoundarySystem.IMixedRealityBoundaryDataProvider.Visibility - fullName: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundaryDataProvider.Visibility - nameWithType: IMixedRealityBoundaryDataProvider.Visibility -- uid: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundaryDataProvider.Visibility* - name: Visibility - href: api/XRTK.Interfaces.BoundarySystem.IMixedRealityBoundaryDataProvider.html#XRTK_Interfaces_BoundarySystem_IMixedRealityBoundaryDataProvider_Visibility_ - commentId: Overload:XRTK.Interfaces.BoundarySystem.IMixedRealityBoundaryDataProvider.Visibility - isSpec: "True" - fullName: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundaryDataProvider.Visibility - nameWithType: IMixedRealityBoundaryDataProvider.Visibility -- uid: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem - name: IMixedRealityBoundarySystem - href: api/XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.html - commentId: T:XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem - fullName: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem - nameWithType: IMixedRealityBoundarySystem -- uid: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.BoundaryBounds - name: BoundaryBounds - href: api/XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.html#XRTK_Interfaces_BoundarySystem_IMixedRealityBoundarySystem_BoundaryBounds - commentId: P:XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.BoundaryBounds - fullName: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.BoundaryBounds - nameWithType: IMixedRealityBoundarySystem.BoundaryBounds -- uid: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.BoundaryBounds* - name: BoundaryBounds - href: api/XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.html#XRTK_Interfaces_BoundarySystem_IMixedRealityBoundarySystem_BoundaryBounds_ - commentId: Overload:XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.BoundaryBounds - isSpec: "True" - fullName: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.BoundaryBounds - nameWithType: IMixedRealityBoundarySystem.BoundaryBounds -- uid: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.BoundaryDataProvider - name: BoundaryDataProvider - href: api/XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.html#XRTK_Interfaces_BoundarySystem_IMixedRealityBoundarySystem_BoundaryDataProvider - commentId: P:XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.BoundaryDataProvider - fullName: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.BoundaryDataProvider - nameWithType: IMixedRealityBoundarySystem.BoundaryDataProvider -- uid: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.BoundaryDataProvider* - name: BoundaryDataProvider - href: api/XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.html#XRTK_Interfaces_BoundarySystem_IMixedRealityBoundarySystem_BoundaryDataProvider_ - commentId: Overload:XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.BoundaryDataProvider - isSpec: "True" - fullName: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.BoundaryDataProvider - nameWithType: IMixedRealityBoundarySystem.BoundaryDataProvider -- uid: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.BoundaryHeight - name: BoundaryHeight - href: api/XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.html#XRTK_Interfaces_BoundarySystem_IMixedRealityBoundarySystem_BoundaryHeight - commentId: P:XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.BoundaryHeight - fullName: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.BoundaryHeight - nameWithType: IMixedRealityBoundarySystem.BoundaryHeight -- uid: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.BoundaryHeight* - name: BoundaryHeight - href: api/XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.html#XRTK_Interfaces_BoundarySystem_IMixedRealityBoundarySystem_BoundaryHeight_ - commentId: Overload:XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.BoundaryHeight - isSpec: "True" - fullName: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.BoundaryHeight - nameWithType: IMixedRealityBoundarySystem.BoundaryHeight -- uid: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.BoundaryProximityAlert - name: BoundaryProximityAlert - href: api/XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.html#XRTK_Interfaces_BoundarySystem_IMixedRealityBoundarySystem_BoundaryProximityAlert - commentId: E:XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.BoundaryProximityAlert - fullName: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.BoundaryProximityAlert - nameWithType: IMixedRealityBoundarySystem.BoundaryProximityAlert -- uid: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.IsConfigured - name: IsConfigured - href: api/XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.html#XRTK_Interfaces_BoundarySystem_IMixedRealityBoundarySystem_IsConfigured - commentId: P:XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.IsConfigured - fullName: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.IsConfigured - nameWithType: IMixedRealityBoundarySystem.IsConfigured -- uid: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.IsConfigured* - name: IsConfigured - href: api/XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.html#XRTK_Interfaces_BoundarySystem_IMixedRealityBoundarySystem_IsConfigured_ - commentId: Overload:XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.IsConfigured - isSpec: "True" - fullName: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.IsConfigured - nameWithType: IMixedRealityBoundarySystem.IsConfigured -- uid: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.IsInsideBoundary(UnityEngine.Vector3,UnityEngine.Space) - name: IsInsideBoundary(Vector3, Space) - href: api/XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.html#XRTK_Interfaces_BoundarySystem_IMixedRealityBoundarySystem_IsInsideBoundary_UnityEngine_Vector3_UnityEngine_Space_ - commentId: M:XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.IsInsideBoundary(UnityEngine.Vector3,UnityEngine.Space) - fullName: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.IsInsideBoundary(UnityEngine.Vector3, UnityEngine.Space) - nameWithType: IMixedRealityBoundarySystem.IsInsideBoundary(Vector3, Space) -- uid: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.IsInsideBoundary* - name: IsInsideBoundary - href: api/XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.html#XRTK_Interfaces_BoundarySystem_IMixedRealityBoundarySystem_IsInsideBoundary_ - commentId: Overload:XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.IsInsideBoundary - isSpec: "True" - fullName: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.IsInsideBoundary - nameWithType: IMixedRealityBoundarySystem.IsInsideBoundary -- uid: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.IsVisible - name: IsVisible - href: api/XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.html#XRTK_Interfaces_BoundarySystem_IMixedRealityBoundarySystem_IsVisible - commentId: P:XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.IsVisible - fullName: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.IsVisible - nameWithType: IMixedRealityBoundarySystem.IsVisible -- uid: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.IsVisible* - name: IsVisible - href: api/XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.html#XRTK_Interfaces_BoundarySystem_IMixedRealityBoundarySystem_IsVisible_ - commentId: Overload:XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.IsVisible - isSpec: "True" - fullName: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.IsVisible - nameWithType: IMixedRealityBoundarySystem.IsVisible -- uid: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.RegisterTrackedObject(UnityEngine.GameObject) - name: RegisterTrackedObject(GameObject) - href: api/XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.html#XRTK_Interfaces_BoundarySystem_IMixedRealityBoundarySystem_RegisterTrackedObject_UnityEngine_GameObject_ - commentId: M:XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.RegisterTrackedObject(UnityEngine.GameObject) - fullName: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.RegisterTrackedObject(UnityEngine.GameObject) - nameWithType: IMixedRealityBoundarySystem.RegisterTrackedObject(GameObject) -- uid: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.RegisterTrackedObject* - name: RegisterTrackedObject - href: api/XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.html#XRTK_Interfaces_BoundarySystem_IMixedRealityBoundarySystem_RegisterTrackedObject_ - commentId: Overload:XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.RegisterTrackedObject - isSpec: "True" - fullName: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.RegisterTrackedObject - nameWithType: IMixedRealityBoundarySystem.RegisterTrackedObject -- uid: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.SetupBoundary(XRTK.Interfaces.BoundarySystem.IMixedRealityBoundaryDataProvider) - name: SetupBoundary(IMixedRealityBoundaryDataProvider) - href: api/XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.html#XRTK_Interfaces_BoundarySystem_IMixedRealityBoundarySystem_SetupBoundary_XRTK_Interfaces_BoundarySystem_IMixedRealityBoundaryDataProvider_ - commentId: M:XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.SetupBoundary(XRTK.Interfaces.BoundarySystem.IMixedRealityBoundaryDataProvider) - fullName: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.SetupBoundary(XRTK.Interfaces.BoundarySystem.IMixedRealityBoundaryDataProvider) - nameWithType: IMixedRealityBoundarySystem.SetupBoundary(IMixedRealityBoundaryDataProvider) -- uid: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.SetupBoundary* - name: SetupBoundary - href: api/XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.html#XRTK_Interfaces_BoundarySystem_IMixedRealityBoundarySystem_SetupBoundary_ - commentId: Overload:XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.SetupBoundary - isSpec: "True" - fullName: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.SetupBoundary - nameWithType: IMixedRealityBoundarySystem.SetupBoundary -- uid: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.ShowBoundary - name: ShowBoundary - href: api/XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.html#XRTK_Interfaces_BoundarySystem_IMixedRealityBoundarySystem_ShowBoundary - commentId: P:XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.ShowBoundary - fullName: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.ShowBoundary - nameWithType: IMixedRealityBoundarySystem.ShowBoundary -- uid: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.ShowBoundary* - name: ShowBoundary - href: api/XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.html#XRTK_Interfaces_BoundarySystem_IMixedRealityBoundarySystem_ShowBoundary_ - commentId: Overload:XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.ShowBoundary - isSpec: "True" - fullName: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.ShowBoundary - nameWithType: IMixedRealityBoundarySystem.ShowBoundary -- uid: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.ShowCeiling - name: ShowCeiling - href: api/XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.html#XRTK_Interfaces_BoundarySystem_IMixedRealityBoundarySystem_ShowCeiling - commentId: P:XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.ShowCeiling - fullName: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.ShowCeiling - nameWithType: IMixedRealityBoundarySystem.ShowCeiling -- uid: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.ShowCeiling* - name: ShowCeiling - href: api/XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.html#XRTK_Interfaces_BoundarySystem_IMixedRealityBoundarySystem_ShowCeiling_ - commentId: Overload:XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.ShowCeiling - isSpec: "True" - fullName: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.ShowCeiling - nameWithType: IMixedRealityBoundarySystem.ShowCeiling -- uid: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.ShowFloor - name: ShowFloor - href: api/XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.html#XRTK_Interfaces_BoundarySystem_IMixedRealityBoundarySystem_ShowFloor - commentId: P:XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.ShowFloor - fullName: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.ShowFloor - nameWithType: IMixedRealityBoundarySystem.ShowFloor -- uid: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.ShowFloor* - name: ShowFloor - href: api/XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.html#XRTK_Interfaces_BoundarySystem_IMixedRealityBoundarySystem_ShowFloor_ - commentId: Overload:XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.ShowFloor - isSpec: "True" - fullName: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.ShowFloor - nameWithType: IMixedRealityBoundarySystem.ShowFloor -- uid: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.ShowWalls - name: ShowWalls - href: api/XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.html#XRTK_Interfaces_BoundarySystem_IMixedRealityBoundarySystem_ShowWalls - commentId: P:XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.ShowWalls - fullName: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.ShowWalls - nameWithType: IMixedRealityBoundarySystem.ShowWalls -- uid: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.ShowWalls* - name: ShowWalls - href: api/XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.html#XRTK_Interfaces_BoundarySystem_IMixedRealityBoundarySystem_ShowWalls_ - commentId: Overload:XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.ShowWalls - isSpec: "True" - fullName: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.ShowWalls - nameWithType: IMixedRealityBoundarySystem.ShowWalls -- uid: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.TrackedObjects - name: TrackedObjects - href: api/XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.html#XRTK_Interfaces_BoundarySystem_IMixedRealityBoundarySystem_TrackedObjects - commentId: P:XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.TrackedObjects - fullName: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.TrackedObjects - nameWithType: IMixedRealityBoundarySystem.TrackedObjects -- uid: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.TrackedObjects* - name: TrackedObjects - href: api/XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.html#XRTK_Interfaces_BoundarySystem_IMixedRealityBoundarySystem_TrackedObjects_ - commentId: Overload:XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.TrackedObjects - isSpec: "True" - fullName: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.TrackedObjects - nameWithType: IMixedRealityBoundarySystem.TrackedObjects -- uid: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.TryGetRectangularBoundsParams(UnityEngine.Vector2@,System.Single@,System.Single@,System.Single@) - name: TryGetRectangularBoundsParams(out Vector2, out Single, out Single, out Single) - href: api/XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.html#XRTK_Interfaces_BoundarySystem_IMixedRealityBoundarySystem_TryGetRectangularBoundsParams_UnityEngine_Vector2__System_Single__System_Single__System_Single__ - commentId: M:XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.TryGetRectangularBoundsParams(UnityEngine.Vector2@,System.Single@,System.Single@,System.Single@) - name.vb: TryGetRectangularBoundsParams(ByRef Vector2, ByRef Single, ByRef Single, ByRef Single) - fullName: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.TryGetRectangularBoundsParams(out UnityEngine.Vector2, out System.Single, out System.Single, out System.Single) - fullName.vb: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.TryGetRectangularBoundsParams(ByRef UnityEngine.Vector2, ByRef System.Single, ByRef System.Single, ByRef System.Single) - nameWithType: IMixedRealityBoundarySystem.TryGetRectangularBoundsParams(out Vector2, out Single, out Single, out Single) - nameWithType.vb: IMixedRealityBoundarySystem.TryGetRectangularBoundsParams(ByRef Vector2, ByRef Single, ByRef Single, ByRef Single) -- uid: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.TryGetRectangularBoundsParams* - name: TryGetRectangularBoundsParams - href: api/XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.html#XRTK_Interfaces_BoundarySystem_IMixedRealityBoundarySystem_TryGetRectangularBoundsParams_ - commentId: Overload:XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.TryGetRectangularBoundsParams - isSpec: "True" - fullName: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.TryGetRectangularBoundsParams - nameWithType: IMixedRealityBoundarySystem.TryGetRectangularBoundsParams -- uid: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.UnregisterTrackedObject(UnityEngine.GameObject) - name: UnregisterTrackedObject(GameObject) - href: api/XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.html#XRTK_Interfaces_BoundarySystem_IMixedRealityBoundarySystem_UnregisterTrackedObject_UnityEngine_GameObject_ - commentId: M:XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.UnregisterTrackedObject(UnityEngine.GameObject) - fullName: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.UnregisterTrackedObject(UnityEngine.GameObject) - nameWithType: IMixedRealityBoundarySystem.UnregisterTrackedObject(GameObject) -- uid: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.UnregisterTrackedObject* - name: UnregisterTrackedObject - href: api/XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.html#XRTK_Interfaces_BoundarySystem_IMixedRealityBoundarySystem_UnregisterTrackedObject_ - commentId: Overload:XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.UnregisterTrackedObject - isSpec: "True" - fullName: XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem.UnregisterTrackedObject - nameWithType: IMixedRealityBoundarySystem.UnregisterTrackedObject -- uid: XRTK.Interfaces.CameraSystem - name: XRTK.Interfaces.CameraSystem - href: api/XRTK.Interfaces.CameraSystem.html - commentId: N:XRTK.Interfaces.CameraSystem - fullName: XRTK.Interfaces.CameraSystem - nameWithType: XRTK.Interfaces.CameraSystem -- uid: XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider - name: IMixedRealityCameraDataProvider - href: api/XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider.html - commentId: T:XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider - fullName: XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider - nameWithType: IMixedRealityCameraDataProvider -- uid: XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider.CameraRig - name: CameraRig - href: api/XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider.html#XRTK_Interfaces_CameraSystem_IMixedRealityCameraDataProvider_CameraRig - commentId: P:XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider.CameraRig - fullName: XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider.CameraRig - nameWithType: IMixedRealityCameraDataProvider.CameraRig -- uid: XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider.CameraRig* - name: CameraRig - href: api/XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider.html#XRTK_Interfaces_CameraSystem_IMixedRealityCameraDataProvider_CameraRig_ - commentId: Overload:XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider.CameraRig - isSpec: "True" - fullName: XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider.CameraRig - nameWithType: IMixedRealityCameraDataProvider.CameraRig -- uid: XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider.DefaultHeadHeight - name: DefaultHeadHeight - href: api/XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider.html#XRTK_Interfaces_CameraSystem_IMixedRealityCameraDataProvider_DefaultHeadHeight - commentId: P:XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider.DefaultHeadHeight - fullName: XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider.DefaultHeadHeight - nameWithType: IMixedRealityCameraDataProvider.DefaultHeadHeight -- uid: XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider.DefaultHeadHeight* - name: DefaultHeadHeight - href: api/XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider.html#XRTK_Interfaces_CameraSystem_IMixedRealityCameraDataProvider_DefaultHeadHeight_ - commentId: Overload:XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider.DefaultHeadHeight - isSpec: "True" - fullName: XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider.DefaultHeadHeight - nameWithType: IMixedRealityCameraDataProvider.DefaultHeadHeight -- uid: XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider.HeadHeight - name: HeadHeight - href: api/XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider.html#XRTK_Interfaces_CameraSystem_IMixedRealityCameraDataProvider_HeadHeight - commentId: P:XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider.HeadHeight - fullName: XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider.HeadHeight - nameWithType: IMixedRealityCameraDataProvider.HeadHeight -- uid: XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider.HeadHeight* - name: HeadHeight - href: api/XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider.html#XRTK_Interfaces_CameraSystem_IMixedRealityCameraDataProvider_HeadHeight_ - commentId: Overload:XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider.HeadHeight - isSpec: "True" - fullName: XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider.HeadHeight - nameWithType: IMixedRealityCameraDataProvider.HeadHeight -- uid: XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider.HeadHeightIsManagedByDevice - name: HeadHeightIsManagedByDevice - href: api/XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider.html#XRTK_Interfaces_CameraSystem_IMixedRealityCameraDataProvider_HeadHeightIsManagedByDevice - commentId: P:XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider.HeadHeightIsManagedByDevice - fullName: XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider.HeadHeightIsManagedByDevice - nameWithType: IMixedRealityCameraDataProvider.HeadHeightIsManagedByDevice -- uid: XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider.HeadHeightIsManagedByDevice* - name: HeadHeightIsManagedByDevice - href: api/XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider.html#XRTK_Interfaces_CameraSystem_IMixedRealityCameraDataProvider_HeadHeightIsManagedByDevice_ - commentId: Overload:XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider.HeadHeightIsManagedByDevice - isSpec: "True" - fullName: XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider.HeadHeightIsManagedByDevice - nameWithType: IMixedRealityCameraDataProvider.HeadHeightIsManagedByDevice -- uid: XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider.IsOpaque - name: IsOpaque - href: api/XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider.html#XRTK_Interfaces_CameraSystem_IMixedRealityCameraDataProvider_IsOpaque - commentId: P:XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider.IsOpaque - fullName: XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider.IsOpaque - nameWithType: IMixedRealityCameraDataProvider.IsOpaque -- uid: XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider.IsOpaque* - name: IsOpaque - href: api/XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider.html#XRTK_Interfaces_CameraSystem_IMixedRealityCameraDataProvider_IsOpaque_ - commentId: Overload:XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider.IsOpaque - isSpec: "True" - fullName: XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider.IsOpaque - nameWithType: IMixedRealityCameraDataProvider.IsOpaque -- uid: XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider.IsStereoscopic - name: IsStereoscopic - href: api/XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider.html#XRTK_Interfaces_CameraSystem_IMixedRealityCameraDataProvider_IsStereoscopic - commentId: P:XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider.IsStereoscopic - fullName: XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider.IsStereoscopic - nameWithType: IMixedRealityCameraDataProvider.IsStereoscopic -- uid: XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider.IsStereoscopic* - name: IsStereoscopic - href: api/XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider.html#XRTK_Interfaces_CameraSystem_IMixedRealityCameraDataProvider_IsStereoscopic_ - commentId: Overload:XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider.IsStereoscopic - isSpec: "True" - fullName: XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider.IsStereoscopic - nameWithType: IMixedRealityCameraDataProvider.IsStereoscopic -- uid: XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig - name: IMixedRealityCameraRig - href: api/XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig.html - commentId: T:XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig - fullName: XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig - nameWithType: IMixedRealityCameraRig -- uid: XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig.BodyTransform - name: BodyTransform - href: api/XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig.html#XRTK_Interfaces_CameraSystem_IMixedRealityCameraRig_BodyTransform - commentId: P:XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig.BodyTransform - fullName: XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig.BodyTransform - nameWithType: IMixedRealityCameraRig.BodyTransform -- uid: XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig.BodyTransform* - name: BodyTransform - href: api/XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig.html#XRTK_Interfaces_CameraSystem_IMixedRealityCameraRig_BodyTransform_ - commentId: Overload:XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig.BodyTransform - isSpec: "True" - fullName: XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig.BodyTransform - nameWithType: IMixedRealityCameraRig.BodyTransform -- uid: XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig.CameraPoseDriver - name: CameraPoseDriver - href: api/XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig.html#XRTK_Interfaces_CameraSystem_IMixedRealityCameraRig_CameraPoseDriver - commentId: P:XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig.CameraPoseDriver - fullName: XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig.CameraPoseDriver - nameWithType: IMixedRealityCameraRig.CameraPoseDriver -- uid: XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig.CameraPoseDriver* - name: CameraPoseDriver - href: api/XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig.html#XRTK_Interfaces_CameraSystem_IMixedRealityCameraRig_CameraPoseDriver_ - commentId: Overload:XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig.CameraPoseDriver - isSpec: "True" - fullName: XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig.CameraPoseDriver - nameWithType: IMixedRealityCameraRig.CameraPoseDriver -- uid: XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig.CameraTransform - name: CameraTransform - href: api/XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig.html#XRTK_Interfaces_CameraSystem_IMixedRealityCameraRig_CameraTransform - commentId: P:XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig.CameraTransform - fullName: XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig.CameraTransform - nameWithType: IMixedRealityCameraRig.CameraTransform -- uid: XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig.CameraTransform* - name: CameraTransform - href: api/XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig.html#XRTK_Interfaces_CameraSystem_IMixedRealityCameraRig_CameraTransform_ - commentId: Overload:XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig.CameraTransform - isSpec: "True" - fullName: XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig.CameraTransform - nameWithType: IMixedRealityCameraRig.CameraTransform -- uid: XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig.GameObject - name: GameObject - href: api/XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig.html#XRTK_Interfaces_CameraSystem_IMixedRealityCameraRig_GameObject - commentId: P:XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig.GameObject - fullName: XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig.GameObject - nameWithType: IMixedRealityCameraRig.GameObject -- uid: XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig.GameObject* - name: GameObject - href: api/XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig.html#XRTK_Interfaces_CameraSystem_IMixedRealityCameraRig_GameObject_ - commentId: Overload:XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig.GameObject - isSpec: "True" - fullName: XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig.GameObject - nameWithType: IMixedRealityCameraRig.GameObject -- uid: XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig.PlayerCamera - name: PlayerCamera - href: api/XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig.html#XRTK_Interfaces_CameraSystem_IMixedRealityCameraRig_PlayerCamera - commentId: P:XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig.PlayerCamera - fullName: XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig.PlayerCamera - nameWithType: IMixedRealityCameraRig.PlayerCamera -- uid: XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig.PlayerCamera* - name: PlayerCamera - href: api/XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig.html#XRTK_Interfaces_CameraSystem_IMixedRealityCameraRig_PlayerCamera_ - commentId: Overload:XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig.PlayerCamera - isSpec: "True" - fullName: XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig.PlayerCamera - nameWithType: IMixedRealityCameraRig.PlayerCamera -- uid: XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig.PlayspaceTransform - name: PlayspaceTransform - href: api/XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig.html#XRTK_Interfaces_CameraSystem_IMixedRealityCameraRig_PlayspaceTransform - commentId: P:XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig.PlayspaceTransform - fullName: XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig.PlayspaceTransform - nameWithType: IMixedRealityCameraRig.PlayspaceTransform -- uid: XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig.PlayspaceTransform* - name: PlayspaceTransform - href: api/XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig.html#XRTK_Interfaces_CameraSystem_IMixedRealityCameraRig_PlayspaceTransform_ - commentId: Overload:XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig.PlayspaceTransform - isSpec: "True" - fullName: XRTK.Interfaces.CameraSystem.IMixedRealityCameraRig.PlayspaceTransform - nameWithType: IMixedRealityCameraRig.PlayspaceTransform -- uid: XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem - name: IMixedRealityCameraSystem - href: api/XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem.html - commentId: T:XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem - fullName: XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem - nameWithType: IMixedRealityCameraSystem -- uid: XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem.CameraDataProviders - name: CameraDataProviders - href: api/XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem.html#XRTK_Interfaces_CameraSystem_IMixedRealityCameraSystem_CameraDataProviders - commentId: P:XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem.CameraDataProviders - fullName: XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem.CameraDataProviders - nameWithType: IMixedRealityCameraSystem.CameraDataProviders -- uid: XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem.CameraDataProviders* - name: CameraDataProviders - href: api/XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem.html#XRTK_Interfaces_CameraSystem_IMixedRealityCameraSystem_CameraDataProviders_ - commentId: Overload:XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem.CameraDataProviders - isSpec: "True" - fullName: XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem.CameraDataProviders - nameWithType: IMixedRealityCameraSystem.CameraDataProviders -- uid: XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem.MainCameraRig - name: MainCameraRig - href: api/XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem.html#XRTK_Interfaces_CameraSystem_IMixedRealityCameraSystem_MainCameraRig - commentId: P:XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem.MainCameraRig - fullName: XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem.MainCameraRig - nameWithType: IMixedRealityCameraSystem.MainCameraRig -- uid: XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem.MainCameraRig* - name: MainCameraRig - href: api/XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem.html#XRTK_Interfaces_CameraSystem_IMixedRealityCameraSystem_MainCameraRig_ - commentId: Overload:XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem.MainCameraRig - isSpec: "True" - fullName: XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem.MainCameraRig - nameWithType: IMixedRealityCameraSystem.MainCameraRig -- uid: XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem.RegisterCameraDataProvider(XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider) - name: RegisterCameraDataProvider(IMixedRealityCameraDataProvider) - href: api/XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem.html#XRTK_Interfaces_CameraSystem_IMixedRealityCameraSystem_RegisterCameraDataProvider_XRTK_Interfaces_CameraSystem_IMixedRealityCameraDataProvider_ - commentId: M:XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem.RegisterCameraDataProvider(XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider) - fullName: XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem.RegisterCameraDataProvider(XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider) - nameWithType: IMixedRealityCameraSystem.RegisterCameraDataProvider(IMixedRealityCameraDataProvider) -- uid: XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem.RegisterCameraDataProvider* - name: RegisterCameraDataProvider - href: api/XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem.html#XRTK_Interfaces_CameraSystem_IMixedRealityCameraSystem_RegisterCameraDataProvider_ - commentId: Overload:XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem.RegisterCameraDataProvider - isSpec: "True" - fullName: XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem.RegisterCameraDataProvider - nameWithType: IMixedRealityCameraSystem.RegisterCameraDataProvider -- uid: XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem.SetHeadHeight(System.Single,System.Boolean) - name: SetHeadHeight(Single, Boolean) - href: api/XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem.html#XRTK_Interfaces_CameraSystem_IMixedRealityCameraSystem_SetHeadHeight_System_Single_System_Boolean_ - commentId: M:XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem.SetHeadHeight(System.Single,System.Boolean) - fullName: XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem.SetHeadHeight(System.Single, System.Boolean) - nameWithType: IMixedRealityCameraSystem.SetHeadHeight(Single, Boolean) -- uid: XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem.SetHeadHeight* - name: SetHeadHeight - href: api/XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem.html#XRTK_Interfaces_CameraSystem_IMixedRealityCameraSystem_SetHeadHeight_ - commentId: Overload:XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem.SetHeadHeight - isSpec: "True" - fullName: XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem.SetHeadHeight - nameWithType: IMixedRealityCameraSystem.SetHeadHeight -- uid: XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem.UnRegisterCameraDataProvider(XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider) - name: UnRegisterCameraDataProvider(IMixedRealityCameraDataProvider) - href: api/XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem.html#XRTK_Interfaces_CameraSystem_IMixedRealityCameraSystem_UnRegisterCameraDataProvider_XRTK_Interfaces_CameraSystem_IMixedRealityCameraDataProvider_ - commentId: M:XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem.UnRegisterCameraDataProvider(XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider) - fullName: XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem.UnRegisterCameraDataProvider(XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider) - nameWithType: IMixedRealityCameraSystem.UnRegisterCameraDataProvider(IMixedRealityCameraDataProvider) -- uid: XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem.UnRegisterCameraDataProvider* - name: UnRegisterCameraDataProvider - href: api/XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem.html#XRTK_Interfaces_CameraSystem_IMixedRealityCameraSystem_UnRegisterCameraDataProvider_ - commentId: Overload:XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem.UnRegisterCameraDataProvider - isSpec: "True" - fullName: XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem.UnRegisterCameraDataProvider - nameWithType: IMixedRealityCameraSystem.UnRegisterCameraDataProvider -- uid: XRTK.Interfaces.DiagnosticsSystem - name: XRTK.Interfaces.DiagnosticsSystem - href: api/XRTK.Interfaces.DiagnosticsSystem.html - commentId: N:XRTK.Interfaces.DiagnosticsSystem - fullName: XRTK.Interfaces.DiagnosticsSystem - nameWithType: XRTK.Interfaces.DiagnosticsSystem -- uid: XRTK.Interfaces.DiagnosticsSystem.Handlers - name: XRTK.Interfaces.DiagnosticsSystem.Handlers - href: api/XRTK.Interfaces.DiagnosticsSystem.Handlers.html - commentId: N:XRTK.Interfaces.DiagnosticsSystem.Handlers - fullName: XRTK.Interfaces.DiagnosticsSystem.Handlers - nameWithType: XRTK.Interfaces.DiagnosticsSystem.Handlers -- uid: XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityConsoleDiagnosticsHandler - name: IMixedRealityConsoleDiagnosticsHandler - href: api/XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityConsoleDiagnosticsHandler.html - commentId: T:XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityConsoleDiagnosticsHandler - fullName: XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityConsoleDiagnosticsHandler - nameWithType: IMixedRealityConsoleDiagnosticsHandler -- uid: XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityConsoleDiagnosticsHandler.OnLogReceived(XRTK.EventDatum.DiagnosticsSystem.ConsoleEventData) - name: OnLogReceived(ConsoleEventData) - href: api/XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityConsoleDiagnosticsHandler.html#XRTK_Interfaces_DiagnosticsSystem_Handlers_IMixedRealityConsoleDiagnosticsHandler_OnLogReceived_XRTK_EventDatum_DiagnosticsSystem_ConsoleEventData_ - commentId: M:XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityConsoleDiagnosticsHandler.OnLogReceived(XRTK.EventDatum.DiagnosticsSystem.ConsoleEventData) - fullName: XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityConsoleDiagnosticsHandler.OnLogReceived(XRTK.EventDatum.DiagnosticsSystem.ConsoleEventData) - nameWithType: IMixedRealityConsoleDiagnosticsHandler.OnLogReceived(ConsoleEventData) -- uid: XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityConsoleDiagnosticsHandler.OnLogReceived* - name: OnLogReceived - href: api/XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityConsoleDiagnosticsHandler.html#XRTK_Interfaces_DiagnosticsSystem_Handlers_IMixedRealityConsoleDiagnosticsHandler_OnLogReceived_ - commentId: Overload:XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityConsoleDiagnosticsHandler.OnLogReceived - isSpec: "True" - fullName: XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityConsoleDiagnosticsHandler.OnLogReceived - nameWithType: IMixedRealityConsoleDiagnosticsHandler.OnLogReceived -- uid: XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityDiagnosticsHandler - name: IMixedRealityDiagnosticsHandler - href: api/XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityDiagnosticsHandler.html - commentId: T:XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityDiagnosticsHandler - fullName: XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityDiagnosticsHandler - nameWithType: IMixedRealityDiagnosticsHandler -- uid: XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityFrameDiagnosticsHandler - name: IMixedRealityFrameDiagnosticsHandler - href: api/XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityFrameDiagnosticsHandler.html - commentId: T:XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityFrameDiagnosticsHandler - fullName: XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityFrameDiagnosticsHandler - nameWithType: IMixedRealityFrameDiagnosticsHandler -- uid: XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityFrameDiagnosticsHandler.OnFrameMissed(XRTK.EventDatum.DiagnosticsSystem.FrameEventData) - name: OnFrameMissed(FrameEventData) - href: api/XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityFrameDiagnosticsHandler.html#XRTK_Interfaces_DiagnosticsSystem_Handlers_IMixedRealityFrameDiagnosticsHandler_OnFrameMissed_XRTK_EventDatum_DiagnosticsSystem_FrameEventData_ - commentId: M:XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityFrameDiagnosticsHandler.OnFrameMissed(XRTK.EventDatum.DiagnosticsSystem.FrameEventData) - fullName: XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityFrameDiagnosticsHandler.OnFrameMissed(XRTK.EventDatum.DiagnosticsSystem.FrameEventData) - nameWithType: IMixedRealityFrameDiagnosticsHandler.OnFrameMissed(FrameEventData) -- uid: XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityFrameDiagnosticsHandler.OnFrameMissed* - name: OnFrameMissed - href: api/XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityFrameDiagnosticsHandler.html#XRTK_Interfaces_DiagnosticsSystem_Handlers_IMixedRealityFrameDiagnosticsHandler_OnFrameMissed_ - commentId: Overload:XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityFrameDiagnosticsHandler.OnFrameMissed - isSpec: "True" - fullName: XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityFrameDiagnosticsHandler.OnFrameMissed - nameWithType: IMixedRealityFrameDiagnosticsHandler.OnFrameMissed -- uid: XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityFrameDiagnosticsHandler.OnFrameRateChanged(XRTK.EventDatum.DiagnosticsSystem.FrameEventData) - name: OnFrameRateChanged(FrameEventData) - href: api/XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityFrameDiagnosticsHandler.html#XRTK_Interfaces_DiagnosticsSystem_Handlers_IMixedRealityFrameDiagnosticsHandler_OnFrameRateChanged_XRTK_EventDatum_DiagnosticsSystem_FrameEventData_ - commentId: M:XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityFrameDiagnosticsHandler.OnFrameRateChanged(XRTK.EventDatum.DiagnosticsSystem.FrameEventData) - fullName: XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityFrameDiagnosticsHandler.OnFrameRateChanged(XRTK.EventDatum.DiagnosticsSystem.FrameEventData) - nameWithType: IMixedRealityFrameDiagnosticsHandler.OnFrameRateChanged(FrameEventData) -- uid: XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityFrameDiagnosticsHandler.OnFrameRateChanged* - name: OnFrameRateChanged - href: api/XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityFrameDiagnosticsHandler.html#XRTK_Interfaces_DiagnosticsSystem_Handlers_IMixedRealityFrameDiagnosticsHandler_OnFrameRateChanged_ - commentId: Overload:XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityFrameDiagnosticsHandler.OnFrameRateChanged - isSpec: "True" - fullName: XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityFrameDiagnosticsHandler.OnFrameRateChanged - nameWithType: IMixedRealityFrameDiagnosticsHandler.OnFrameRateChanged -- uid: XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityMemoryDiagnosticsHandler - name: IMixedRealityMemoryDiagnosticsHandler - href: api/XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityMemoryDiagnosticsHandler.html - commentId: T:XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityMemoryDiagnosticsHandler - fullName: XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityMemoryDiagnosticsHandler - nameWithType: IMixedRealityMemoryDiagnosticsHandler -- uid: XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityMemoryDiagnosticsHandler.OnMemoryLimitChanged(XRTK.EventDatum.DiagnosticsSystem.MemoryEventData) - name: OnMemoryLimitChanged(MemoryEventData) - href: api/XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityMemoryDiagnosticsHandler.html#XRTK_Interfaces_DiagnosticsSystem_Handlers_IMixedRealityMemoryDiagnosticsHandler_OnMemoryLimitChanged_XRTK_EventDatum_DiagnosticsSystem_MemoryEventData_ - commentId: M:XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityMemoryDiagnosticsHandler.OnMemoryLimitChanged(XRTK.EventDatum.DiagnosticsSystem.MemoryEventData) - fullName: XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityMemoryDiagnosticsHandler.OnMemoryLimitChanged(XRTK.EventDatum.DiagnosticsSystem.MemoryEventData) - nameWithType: IMixedRealityMemoryDiagnosticsHandler.OnMemoryLimitChanged(MemoryEventData) -- uid: XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityMemoryDiagnosticsHandler.OnMemoryLimitChanged* - name: OnMemoryLimitChanged - href: api/XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityMemoryDiagnosticsHandler.html#XRTK_Interfaces_DiagnosticsSystem_Handlers_IMixedRealityMemoryDiagnosticsHandler_OnMemoryLimitChanged_ - commentId: Overload:XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityMemoryDiagnosticsHandler.OnMemoryLimitChanged - isSpec: "True" - fullName: XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityMemoryDiagnosticsHandler.OnMemoryLimitChanged - nameWithType: IMixedRealityMemoryDiagnosticsHandler.OnMemoryLimitChanged -- uid: XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityMemoryDiagnosticsHandler.OnMemoryPeakChanged(XRTK.EventDatum.DiagnosticsSystem.MemoryEventData) - name: OnMemoryPeakChanged(MemoryEventData) - href: api/XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityMemoryDiagnosticsHandler.html#XRTK_Interfaces_DiagnosticsSystem_Handlers_IMixedRealityMemoryDiagnosticsHandler_OnMemoryPeakChanged_XRTK_EventDatum_DiagnosticsSystem_MemoryEventData_ - commentId: M:XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityMemoryDiagnosticsHandler.OnMemoryPeakChanged(XRTK.EventDatum.DiagnosticsSystem.MemoryEventData) - fullName: XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityMemoryDiagnosticsHandler.OnMemoryPeakChanged(XRTK.EventDatum.DiagnosticsSystem.MemoryEventData) - nameWithType: IMixedRealityMemoryDiagnosticsHandler.OnMemoryPeakChanged(MemoryEventData) -- uid: XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityMemoryDiagnosticsHandler.OnMemoryPeakChanged* - name: OnMemoryPeakChanged - href: api/XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityMemoryDiagnosticsHandler.html#XRTK_Interfaces_DiagnosticsSystem_Handlers_IMixedRealityMemoryDiagnosticsHandler_OnMemoryPeakChanged_ - commentId: Overload:XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityMemoryDiagnosticsHandler.OnMemoryPeakChanged - isSpec: "True" - fullName: XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityMemoryDiagnosticsHandler.OnMemoryPeakChanged - nameWithType: IMixedRealityMemoryDiagnosticsHandler.OnMemoryPeakChanged -- uid: XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityMemoryDiagnosticsHandler.OnMemoryUsageChanged(XRTK.EventDatum.DiagnosticsSystem.MemoryEventData) - name: OnMemoryUsageChanged(MemoryEventData) - href: api/XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityMemoryDiagnosticsHandler.html#XRTK_Interfaces_DiagnosticsSystem_Handlers_IMixedRealityMemoryDiagnosticsHandler_OnMemoryUsageChanged_XRTK_EventDatum_DiagnosticsSystem_MemoryEventData_ - commentId: M:XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityMemoryDiagnosticsHandler.OnMemoryUsageChanged(XRTK.EventDatum.DiagnosticsSystem.MemoryEventData) - fullName: XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityMemoryDiagnosticsHandler.OnMemoryUsageChanged(XRTK.EventDatum.DiagnosticsSystem.MemoryEventData) - nameWithType: IMixedRealityMemoryDiagnosticsHandler.OnMemoryUsageChanged(MemoryEventData) -- uid: XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityMemoryDiagnosticsHandler.OnMemoryUsageChanged* - name: OnMemoryUsageChanged - href: api/XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityMemoryDiagnosticsHandler.html#XRTK_Interfaces_DiagnosticsSystem_Handlers_IMixedRealityMemoryDiagnosticsHandler_OnMemoryUsageChanged_ - commentId: Overload:XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityMemoryDiagnosticsHandler.OnMemoryUsageChanged - isSpec: "True" - fullName: XRTK.Interfaces.DiagnosticsSystem.Handlers.IMixedRealityMemoryDiagnosticsHandler.OnMemoryUsageChanged - nameWithType: IMixedRealityMemoryDiagnosticsHandler.OnMemoryUsageChanged -- uid: XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsDataProvider - name: IMixedRealityDiagnosticsDataProvider - href: api/XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsDataProvider.html - commentId: T:XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsDataProvider - fullName: XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsDataProvider - nameWithType: IMixedRealityDiagnosticsDataProvider -- uid: XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem - name: IMixedRealityDiagnosticsSystem - href: api/XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.html - commentId: T:XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem - fullName: XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem - nameWithType: IMixedRealityDiagnosticsSystem -- uid: XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.ApplicationSignature - name: ApplicationSignature - href: api/XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.html#XRTK_Interfaces_DiagnosticsSystem_IMixedRealityDiagnosticsSystem_ApplicationSignature - commentId: P:XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.ApplicationSignature - fullName: XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.ApplicationSignature - nameWithType: IMixedRealityDiagnosticsSystem.ApplicationSignature -- uid: XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.ApplicationSignature* - name: ApplicationSignature - href: api/XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.html#XRTK_Interfaces_DiagnosticsSystem_IMixedRealityDiagnosticsSystem_ApplicationSignature_ - commentId: Overload:XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.ApplicationSignature - isSpec: "True" - fullName: XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.ApplicationSignature - nameWithType: IMixedRealityDiagnosticsSystem.ApplicationSignature -- uid: XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.DiagnosticsRoot - name: DiagnosticsRoot - href: api/XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.html#XRTK_Interfaces_DiagnosticsSystem_IMixedRealityDiagnosticsSystem_DiagnosticsRoot - commentId: P:XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.DiagnosticsRoot - fullName: XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.DiagnosticsRoot - nameWithType: IMixedRealityDiagnosticsSystem.DiagnosticsRoot -- uid: XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.DiagnosticsRoot* - name: DiagnosticsRoot - href: api/XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.html#XRTK_Interfaces_DiagnosticsSystem_IMixedRealityDiagnosticsSystem_DiagnosticsRoot_ - commentId: Overload:XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.DiagnosticsRoot - isSpec: "True" - fullName: XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.DiagnosticsRoot - nameWithType: IMixedRealityDiagnosticsSystem.DiagnosticsRoot -- uid: XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.DiagnosticsWindow - name: DiagnosticsWindow - href: api/XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.html#XRTK_Interfaces_DiagnosticsSystem_IMixedRealityDiagnosticsSystem_DiagnosticsWindow - commentId: P:XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.DiagnosticsWindow - fullName: XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.DiagnosticsWindow - nameWithType: IMixedRealityDiagnosticsSystem.DiagnosticsWindow -- uid: XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.DiagnosticsWindow* - name: DiagnosticsWindow - href: api/XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.html#XRTK_Interfaces_DiagnosticsSystem_IMixedRealityDiagnosticsSystem_DiagnosticsWindow_ - commentId: Overload:XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.DiagnosticsWindow - isSpec: "True" - fullName: XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.DiagnosticsWindow - nameWithType: IMixedRealityDiagnosticsSystem.DiagnosticsWindow -- uid: XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.IsWindowEnabled - name: IsWindowEnabled - href: api/XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.html#XRTK_Interfaces_DiagnosticsSystem_IMixedRealityDiagnosticsSystem_IsWindowEnabled - commentId: P:XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.IsWindowEnabled - fullName: XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.IsWindowEnabled - nameWithType: IMixedRealityDiagnosticsSystem.IsWindowEnabled -- uid: XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.IsWindowEnabled* - name: IsWindowEnabled - href: api/XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.html#XRTK_Interfaces_DiagnosticsSystem_IMixedRealityDiagnosticsSystem_IsWindowEnabled_ - commentId: Overload:XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.IsWindowEnabled - isSpec: "True" - fullName: XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.IsWindowEnabled - nameWithType: IMixedRealityDiagnosticsSystem.IsWindowEnabled -- uid: XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.RaiseFrameRateChanged(System.Int32,System.Boolean) - name: RaiseFrameRateChanged(Int32, Boolean) - href: api/XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.html#XRTK_Interfaces_DiagnosticsSystem_IMixedRealityDiagnosticsSystem_RaiseFrameRateChanged_System_Int32_System_Boolean_ - commentId: M:XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.RaiseFrameRateChanged(System.Int32,System.Boolean) - fullName: XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.RaiseFrameRateChanged(System.Int32, System.Boolean) - nameWithType: IMixedRealityDiagnosticsSystem.RaiseFrameRateChanged(Int32, Boolean) -- uid: XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.RaiseFrameRateChanged* - name: RaiseFrameRateChanged - href: api/XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.html#XRTK_Interfaces_DiagnosticsSystem_IMixedRealityDiagnosticsSystem_RaiseFrameRateChanged_ - commentId: Overload:XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.RaiseFrameRateChanged - isSpec: "True" - fullName: XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.RaiseFrameRateChanged - nameWithType: IMixedRealityDiagnosticsSystem.RaiseFrameRateChanged -- uid: XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.RaiseLogReceived(System.String,System.String,UnityEngine.LogType) - name: RaiseLogReceived(String, String, LogType) - href: api/XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.html#XRTK_Interfaces_DiagnosticsSystem_IMixedRealityDiagnosticsSystem_RaiseLogReceived_System_String_System_String_UnityEngine_LogType_ - commentId: M:XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.RaiseLogReceived(System.String,System.String,UnityEngine.LogType) - fullName: XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.RaiseLogReceived(System.String, System.String, UnityEngine.LogType) - nameWithType: IMixedRealityDiagnosticsSystem.RaiseLogReceived(String, String, LogType) -- uid: XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.RaiseLogReceived* - name: RaiseLogReceived - href: api/XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.html#XRTK_Interfaces_DiagnosticsSystem_IMixedRealityDiagnosticsSystem_RaiseLogReceived_ - commentId: Overload:XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.RaiseLogReceived - isSpec: "True" - fullName: XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.RaiseLogReceived - nameWithType: IMixedRealityDiagnosticsSystem.RaiseLogReceived -- uid: XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.RaiseMemoryLimitChanged(XRTK.Definitions.DiagnosticsSystem.MemoryLimit) - name: RaiseMemoryLimitChanged(MemoryLimit) - href: api/XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.html#XRTK_Interfaces_DiagnosticsSystem_IMixedRealityDiagnosticsSystem_RaiseMemoryLimitChanged_XRTK_Definitions_DiagnosticsSystem_MemoryLimit_ - commentId: M:XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.RaiseMemoryLimitChanged(XRTK.Definitions.DiagnosticsSystem.MemoryLimit) - fullName: XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.RaiseMemoryLimitChanged(XRTK.Definitions.DiagnosticsSystem.MemoryLimit) - nameWithType: IMixedRealityDiagnosticsSystem.RaiseMemoryLimitChanged(MemoryLimit) -- uid: XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.RaiseMemoryLimitChanged* - name: RaiseMemoryLimitChanged - href: api/XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.html#XRTK_Interfaces_DiagnosticsSystem_IMixedRealityDiagnosticsSystem_RaiseMemoryLimitChanged_ - commentId: Overload:XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.RaiseMemoryLimitChanged - isSpec: "True" - fullName: XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.RaiseMemoryLimitChanged - nameWithType: IMixedRealityDiagnosticsSystem.RaiseMemoryLimitChanged -- uid: XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.RaiseMemoryPeakChanged(XRTK.Definitions.DiagnosticsSystem.MemoryPeak) - name: RaiseMemoryPeakChanged(MemoryPeak) - href: api/XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.html#XRTK_Interfaces_DiagnosticsSystem_IMixedRealityDiagnosticsSystem_RaiseMemoryPeakChanged_XRTK_Definitions_DiagnosticsSystem_MemoryPeak_ - commentId: M:XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.RaiseMemoryPeakChanged(XRTK.Definitions.DiagnosticsSystem.MemoryPeak) - fullName: XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.RaiseMemoryPeakChanged(XRTK.Definitions.DiagnosticsSystem.MemoryPeak) - nameWithType: IMixedRealityDiagnosticsSystem.RaiseMemoryPeakChanged(MemoryPeak) -- uid: XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.RaiseMemoryPeakChanged* - name: RaiseMemoryPeakChanged - href: api/XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.html#XRTK_Interfaces_DiagnosticsSystem_IMixedRealityDiagnosticsSystem_RaiseMemoryPeakChanged_ - commentId: Overload:XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.RaiseMemoryPeakChanged - isSpec: "True" - fullName: XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.RaiseMemoryPeakChanged - nameWithType: IMixedRealityDiagnosticsSystem.RaiseMemoryPeakChanged -- uid: XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.RaiseMemoryUsageChanged(XRTK.Definitions.DiagnosticsSystem.MemoryUsage) - name: RaiseMemoryUsageChanged(MemoryUsage) - href: api/XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.html#XRTK_Interfaces_DiagnosticsSystem_IMixedRealityDiagnosticsSystem_RaiseMemoryUsageChanged_XRTK_Definitions_DiagnosticsSystem_MemoryUsage_ - commentId: M:XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.RaiseMemoryUsageChanged(XRTK.Definitions.DiagnosticsSystem.MemoryUsage) - fullName: XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.RaiseMemoryUsageChanged(XRTK.Definitions.DiagnosticsSystem.MemoryUsage) - nameWithType: IMixedRealityDiagnosticsSystem.RaiseMemoryUsageChanged(MemoryUsage) -- uid: XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.RaiseMemoryUsageChanged* - name: RaiseMemoryUsageChanged - href: api/XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.html#XRTK_Interfaces_DiagnosticsSystem_IMixedRealityDiagnosticsSystem_RaiseMemoryUsageChanged_ - commentId: Overload:XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.RaiseMemoryUsageChanged - isSpec: "True" - fullName: XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.RaiseMemoryUsageChanged - nameWithType: IMixedRealityDiagnosticsSystem.RaiseMemoryUsageChanged -- uid: XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.RaiseMissedFramesChanged(System.Boolean[]) - name: RaiseMissedFramesChanged(Boolean[]) - href: api/XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.html#XRTK_Interfaces_DiagnosticsSystem_IMixedRealityDiagnosticsSystem_RaiseMissedFramesChanged_System_Boolean___ - commentId: M:XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.RaiseMissedFramesChanged(System.Boolean[]) - name.vb: RaiseMissedFramesChanged(Boolean()) - fullName: XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.RaiseMissedFramesChanged(System.Boolean[]) - fullName.vb: XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.RaiseMissedFramesChanged(System.Boolean()) - nameWithType: IMixedRealityDiagnosticsSystem.RaiseMissedFramesChanged(Boolean[]) - nameWithType.vb: IMixedRealityDiagnosticsSystem.RaiseMissedFramesChanged(Boolean()) -- uid: XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.RaiseMissedFramesChanged* - name: RaiseMissedFramesChanged - href: api/XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.html#XRTK_Interfaces_DiagnosticsSystem_IMixedRealityDiagnosticsSystem_RaiseMissedFramesChanged_ - commentId: Overload:XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.RaiseMissedFramesChanged - isSpec: "True" - fullName: XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem.RaiseMissedFramesChanged - nameWithType: IMixedRealityDiagnosticsSystem.RaiseMissedFramesChanged -- uid: XRTK.Interfaces.Events - name: XRTK.Interfaces.Events - href: api/XRTK.Interfaces.Events.html - commentId: N:XRTK.Interfaces.Events - fullName: XRTK.Interfaces.Events - nameWithType: XRTK.Interfaces.Events -- uid: XRTK.Interfaces.Events.Handlers - name: XRTK.Interfaces.Events.Handlers - href: api/XRTK.Interfaces.Events.Handlers.html - commentId: N:XRTK.Interfaces.Events.Handlers - fullName: XRTK.Interfaces.Events.Handlers - nameWithType: XRTK.Interfaces.Events.Handlers -- uid: XRTK.Interfaces.Events.Handlers.IMixedRealityEventHandler - name: IMixedRealityEventHandler - href: api/XRTK.Interfaces.Events.Handlers.IMixedRealityEventHandler.html - commentId: T:XRTK.Interfaces.Events.Handlers.IMixedRealityEventHandler - fullName: XRTK.Interfaces.Events.Handlers.IMixedRealityEventHandler - nameWithType: IMixedRealityEventHandler -- uid: XRTK.Interfaces.Events.Handlers.IMixedRealityEventHandler.OnEventRaised(XRTK.EventDatum.GenericBaseEventData) - name: OnEventRaised(GenericBaseEventData) - href: api/XRTK.Interfaces.Events.Handlers.IMixedRealityEventHandler.html#XRTK_Interfaces_Events_Handlers_IMixedRealityEventHandler_OnEventRaised_XRTK_EventDatum_GenericBaseEventData_ - commentId: M:XRTK.Interfaces.Events.Handlers.IMixedRealityEventHandler.OnEventRaised(XRTK.EventDatum.GenericBaseEventData) - fullName: XRTK.Interfaces.Events.Handlers.IMixedRealityEventHandler.OnEventRaised(XRTK.EventDatum.GenericBaseEventData) - nameWithType: IMixedRealityEventHandler.OnEventRaised(GenericBaseEventData) -- uid: XRTK.Interfaces.Events.Handlers.IMixedRealityEventHandler.OnEventRaised* - name: OnEventRaised - href: api/XRTK.Interfaces.Events.Handlers.IMixedRealityEventHandler.html#XRTK_Interfaces_Events_Handlers_IMixedRealityEventHandler_OnEventRaised_ - commentId: Overload:XRTK.Interfaces.Events.Handlers.IMixedRealityEventHandler.OnEventRaised - isSpec: "True" - fullName: XRTK.Interfaces.Events.Handlers.IMixedRealityEventHandler.OnEventRaised - nameWithType: IMixedRealityEventHandler.OnEventRaised -- uid: XRTK.Interfaces.Events.Handlers.IMixedRealityPlacementHandler - name: IMixedRealityPlacementHandler - href: api/XRTK.Interfaces.Events.Handlers.IMixedRealityPlacementHandler.html - commentId: T:XRTK.Interfaces.Events.Handlers.IMixedRealityPlacementHandler - fullName: XRTK.Interfaces.Events.Handlers.IMixedRealityPlacementHandler - nameWithType: IMixedRealityPlacementHandler -- uid: XRTK.Interfaces.Events.Handlers.IMixedRealityPlacementHandler.OnPlacingCompleted(XRTK.EventDatum.PlacementEventData) - name: OnPlacingCompleted(PlacementEventData) - href: api/XRTK.Interfaces.Events.Handlers.IMixedRealityPlacementHandler.html#XRTK_Interfaces_Events_Handlers_IMixedRealityPlacementHandler_OnPlacingCompleted_XRTK_EventDatum_PlacementEventData_ - commentId: M:XRTK.Interfaces.Events.Handlers.IMixedRealityPlacementHandler.OnPlacingCompleted(XRTK.EventDatum.PlacementEventData) - fullName: XRTK.Interfaces.Events.Handlers.IMixedRealityPlacementHandler.OnPlacingCompleted(XRTK.EventDatum.PlacementEventData) - nameWithType: IMixedRealityPlacementHandler.OnPlacingCompleted(PlacementEventData) -- uid: XRTK.Interfaces.Events.Handlers.IMixedRealityPlacementHandler.OnPlacingCompleted* - name: OnPlacingCompleted - href: api/XRTK.Interfaces.Events.Handlers.IMixedRealityPlacementHandler.html#XRTK_Interfaces_Events_Handlers_IMixedRealityPlacementHandler_OnPlacingCompleted_ - commentId: Overload:XRTK.Interfaces.Events.Handlers.IMixedRealityPlacementHandler.OnPlacingCompleted - isSpec: "True" - fullName: XRTK.Interfaces.Events.Handlers.IMixedRealityPlacementHandler.OnPlacingCompleted - nameWithType: IMixedRealityPlacementHandler.OnPlacingCompleted -- uid: XRTK.Interfaces.Events.Handlers.IMixedRealityPlacementHandler.OnPlacingStarted(XRTK.EventDatum.PlacementEventData) - name: OnPlacingStarted(PlacementEventData) - href: api/XRTK.Interfaces.Events.Handlers.IMixedRealityPlacementHandler.html#XRTK_Interfaces_Events_Handlers_IMixedRealityPlacementHandler_OnPlacingStarted_XRTK_EventDatum_PlacementEventData_ - commentId: M:XRTK.Interfaces.Events.Handlers.IMixedRealityPlacementHandler.OnPlacingStarted(XRTK.EventDatum.PlacementEventData) - fullName: XRTK.Interfaces.Events.Handlers.IMixedRealityPlacementHandler.OnPlacingStarted(XRTK.EventDatum.PlacementEventData) - nameWithType: IMixedRealityPlacementHandler.OnPlacingStarted(PlacementEventData) -- uid: XRTK.Interfaces.Events.Handlers.IMixedRealityPlacementHandler.OnPlacingStarted* - name: OnPlacingStarted - href: api/XRTK.Interfaces.Events.Handlers.IMixedRealityPlacementHandler.html#XRTK_Interfaces_Events_Handlers_IMixedRealityPlacementHandler_OnPlacingStarted_ - commentId: Overload:XRTK.Interfaces.Events.Handlers.IMixedRealityPlacementHandler.OnPlacingStarted - isSpec: "True" - fullName: XRTK.Interfaces.Events.Handlers.IMixedRealityPlacementHandler.OnPlacingStarted - nameWithType: IMixedRealityPlacementHandler.OnPlacingStarted -- uid: XRTK.Interfaces.Events.IMixedRealityEventSource - name: IMixedRealityEventSource - href: api/XRTK.Interfaces.Events.IMixedRealityEventSource.html - commentId: T:XRTK.Interfaces.Events.IMixedRealityEventSource - fullName: XRTK.Interfaces.Events.IMixedRealityEventSource - nameWithType: IMixedRealityEventSource -- uid: XRTK.Interfaces.Events.IMixedRealityEventSource.SourceId - name: SourceId - href: api/XRTK.Interfaces.Events.IMixedRealityEventSource.html#XRTK_Interfaces_Events_IMixedRealityEventSource_SourceId - commentId: P:XRTK.Interfaces.Events.IMixedRealityEventSource.SourceId - fullName: XRTK.Interfaces.Events.IMixedRealityEventSource.SourceId - nameWithType: IMixedRealityEventSource.SourceId -- uid: XRTK.Interfaces.Events.IMixedRealityEventSource.SourceId* - name: SourceId - href: api/XRTK.Interfaces.Events.IMixedRealityEventSource.html#XRTK_Interfaces_Events_IMixedRealityEventSource_SourceId_ - commentId: Overload:XRTK.Interfaces.Events.IMixedRealityEventSource.SourceId - isSpec: "True" - fullName: XRTK.Interfaces.Events.IMixedRealityEventSource.SourceId - nameWithType: IMixedRealityEventSource.SourceId -- uid: XRTK.Interfaces.Events.IMixedRealityEventSource.SourceName - name: SourceName - href: api/XRTK.Interfaces.Events.IMixedRealityEventSource.html#XRTK_Interfaces_Events_IMixedRealityEventSource_SourceName - commentId: P:XRTK.Interfaces.Events.IMixedRealityEventSource.SourceName - fullName: XRTK.Interfaces.Events.IMixedRealityEventSource.SourceName - nameWithType: IMixedRealityEventSource.SourceName -- uid: XRTK.Interfaces.Events.IMixedRealityEventSource.SourceName* - name: SourceName - href: api/XRTK.Interfaces.Events.IMixedRealityEventSource.html#XRTK_Interfaces_Events_IMixedRealityEventSource_SourceName_ - commentId: Overload:XRTK.Interfaces.Events.IMixedRealityEventSource.SourceName - isSpec: "True" - fullName: XRTK.Interfaces.Events.IMixedRealityEventSource.SourceName - nameWithType: IMixedRealityEventSource.SourceName -- uid: XRTK.Interfaces.Events.IMixedRealityEventSystem - name: IMixedRealityEventSystem - href: api/XRTK.Interfaces.Events.IMixedRealityEventSystem.html - commentId: T:XRTK.Interfaces.Events.IMixedRealityEventSystem - fullName: XRTK.Interfaces.Events.IMixedRealityEventSystem - nameWithType: IMixedRealityEventSystem -- uid: XRTK.Interfaces.Events.IMixedRealityEventSystem.EventListeners - name: EventListeners - href: api/XRTK.Interfaces.Events.IMixedRealityEventSystem.html#XRTK_Interfaces_Events_IMixedRealityEventSystem_EventListeners - commentId: P:XRTK.Interfaces.Events.IMixedRealityEventSystem.EventListeners - fullName: XRTK.Interfaces.Events.IMixedRealityEventSystem.EventListeners - nameWithType: IMixedRealityEventSystem.EventListeners -- uid: XRTK.Interfaces.Events.IMixedRealityEventSystem.EventListeners* - name: EventListeners - href: api/XRTK.Interfaces.Events.IMixedRealityEventSystem.html#XRTK_Interfaces_Events_IMixedRealityEventSystem_EventListeners_ - commentId: Overload:XRTK.Interfaces.Events.IMixedRealityEventSystem.EventListeners - isSpec: "True" - fullName: XRTK.Interfaces.Events.IMixedRealityEventSystem.EventListeners - nameWithType: IMixedRealityEventSystem.EventListeners -- uid: XRTK.Interfaces.Events.IMixedRealityEventSystem.HandleEvent* - name: HandleEvent - href: api/XRTK.Interfaces.Events.IMixedRealityEventSystem.html#XRTK_Interfaces_Events_IMixedRealityEventSystem_HandleEvent_ - commentId: Overload:XRTK.Interfaces.Events.IMixedRealityEventSystem.HandleEvent - isSpec: "True" - fullName: XRTK.Interfaces.Events.IMixedRealityEventSystem.HandleEvent - nameWithType: IMixedRealityEventSystem.HandleEvent -- uid: XRTK.Interfaces.Events.IMixedRealityEventSystem.HandleEvent``1(BaseEventData,ExecuteEvents.EventFunction{``0}) - name: HandleEvent(BaseEventData, ExecuteEvents.EventFunction) - href: api/XRTK.Interfaces.Events.IMixedRealityEventSystem.html#XRTK_Interfaces_Events_IMixedRealityEventSystem_HandleEvent__1_BaseEventData_ExecuteEvents_EventFunction___0__ - commentId: M:XRTK.Interfaces.Events.IMixedRealityEventSystem.HandleEvent``1(BaseEventData,ExecuteEvents.EventFunction{``0}) - name.vb: HandleEvent(Of T)(BaseEventData, ExecuteEvents.EventFunction(Of T)) - fullName: XRTK.Interfaces.Events.IMixedRealityEventSystem.HandleEvent(BaseEventData, ExecuteEvents.EventFunction) - fullName.vb: XRTK.Interfaces.Events.IMixedRealityEventSystem.HandleEvent(Of T)(BaseEventData, ExecuteEvents.EventFunction(Of T)) - nameWithType: IMixedRealityEventSystem.HandleEvent(BaseEventData, ExecuteEvents.EventFunction) - nameWithType.vb: IMixedRealityEventSystem.HandleEvent(Of T)(BaseEventData, ExecuteEvents.EventFunction(Of T)) -- uid: XRTK.Interfaces.Events.IMixedRealityEventSystem.Register(UnityEngine.GameObject) - name: Register(GameObject) - href: api/XRTK.Interfaces.Events.IMixedRealityEventSystem.html#XRTK_Interfaces_Events_IMixedRealityEventSystem_Register_UnityEngine_GameObject_ - commentId: M:XRTK.Interfaces.Events.IMixedRealityEventSystem.Register(UnityEngine.GameObject) - fullName: XRTK.Interfaces.Events.IMixedRealityEventSystem.Register(UnityEngine.GameObject) - nameWithType: IMixedRealityEventSystem.Register(GameObject) -- uid: XRTK.Interfaces.Events.IMixedRealityEventSystem.Register* - name: Register - href: api/XRTK.Interfaces.Events.IMixedRealityEventSystem.html#XRTK_Interfaces_Events_IMixedRealityEventSystem_Register_ - commentId: Overload:XRTK.Interfaces.Events.IMixedRealityEventSystem.Register - isSpec: "True" - fullName: XRTK.Interfaces.Events.IMixedRealityEventSystem.Register - nameWithType: IMixedRealityEventSystem.Register -- uid: XRTK.Interfaces.Events.IMixedRealityEventSystem.Unregister(UnityEngine.GameObject) - name: Unregister(GameObject) - href: api/XRTK.Interfaces.Events.IMixedRealityEventSystem.html#XRTK_Interfaces_Events_IMixedRealityEventSystem_Unregister_UnityEngine_GameObject_ - commentId: M:XRTK.Interfaces.Events.IMixedRealityEventSystem.Unregister(UnityEngine.GameObject) - fullName: XRTK.Interfaces.Events.IMixedRealityEventSystem.Unregister(UnityEngine.GameObject) - nameWithType: IMixedRealityEventSystem.Unregister(GameObject) -- uid: XRTK.Interfaces.Events.IMixedRealityEventSystem.Unregister* - name: Unregister - href: api/XRTK.Interfaces.Events.IMixedRealityEventSystem.html#XRTK_Interfaces_Events_IMixedRealityEventSystem_Unregister_ - commentId: Overload:XRTK.Interfaces.Events.IMixedRealityEventSystem.Unregister - isSpec: "True" - fullName: XRTK.Interfaces.Events.IMixedRealityEventSystem.Unregister - nameWithType: IMixedRealityEventSystem.Unregister -- uid: XRTK.Interfaces.IMixedRealityDataProvider - name: IMixedRealityDataProvider - href: api/XRTK.Interfaces.IMixedRealityDataProvider.html - commentId: T:XRTK.Interfaces.IMixedRealityDataProvider - fullName: XRTK.Interfaces.IMixedRealityDataProvider - nameWithType: IMixedRealityDataProvider -- uid: XRTK.Interfaces.IMixedRealityDataProvider.ParentService - name: ParentService - href: api/XRTK.Interfaces.IMixedRealityDataProvider.html#XRTK_Interfaces_IMixedRealityDataProvider_ParentService - commentId: P:XRTK.Interfaces.IMixedRealityDataProvider.ParentService - fullName: XRTK.Interfaces.IMixedRealityDataProvider.ParentService - nameWithType: IMixedRealityDataProvider.ParentService -- uid: XRTK.Interfaces.IMixedRealityDataProvider.ParentService* - name: ParentService - href: api/XRTK.Interfaces.IMixedRealityDataProvider.html#XRTK_Interfaces_IMixedRealityDataProvider_ParentService_ - commentId: Overload:XRTK.Interfaces.IMixedRealityDataProvider.ParentService - isSpec: "True" - fullName: XRTK.Interfaces.IMixedRealityDataProvider.ParentService - nameWithType: IMixedRealityDataProvider.ParentService -- uid: XRTK.Interfaces.IMixedRealityExtensionDataProvider - name: IMixedRealityExtensionDataProvider - href: api/XRTK.Interfaces.IMixedRealityExtensionDataProvider.html - commentId: T:XRTK.Interfaces.IMixedRealityExtensionDataProvider - fullName: XRTK.Interfaces.IMixedRealityExtensionDataProvider - nameWithType: IMixedRealityExtensionDataProvider -- uid: XRTK.Interfaces.IMixedRealityExtensionService - name: IMixedRealityExtensionService - href: api/XRTK.Interfaces.IMixedRealityExtensionService.html - commentId: T:XRTK.Interfaces.IMixedRealityExtensionService - fullName: XRTK.Interfaces.IMixedRealityExtensionService - nameWithType: IMixedRealityExtensionService -- uid: XRTK.Interfaces.IMixedRealityPlatform - name: IMixedRealityPlatform - href: api/XRTK.Interfaces.IMixedRealityPlatform.html - commentId: T:XRTK.Interfaces.IMixedRealityPlatform - fullName: XRTK.Interfaces.IMixedRealityPlatform - nameWithType: IMixedRealityPlatform -- uid: XRTK.Interfaces.IMixedRealityPlatform.IsAvailable - name: IsAvailable - href: api/XRTK.Interfaces.IMixedRealityPlatform.html#XRTK_Interfaces_IMixedRealityPlatform_IsAvailable - commentId: P:XRTK.Interfaces.IMixedRealityPlatform.IsAvailable - fullName: XRTK.Interfaces.IMixedRealityPlatform.IsAvailable - nameWithType: IMixedRealityPlatform.IsAvailable -- uid: XRTK.Interfaces.IMixedRealityPlatform.IsAvailable* - name: IsAvailable - href: api/XRTK.Interfaces.IMixedRealityPlatform.html#XRTK_Interfaces_IMixedRealityPlatform_IsAvailable_ - commentId: Overload:XRTK.Interfaces.IMixedRealityPlatform.IsAvailable - isSpec: "True" - fullName: XRTK.Interfaces.IMixedRealityPlatform.IsAvailable - nameWithType: IMixedRealityPlatform.IsAvailable -- uid: XRTK.Interfaces.IMixedRealityPlatform.Name - name: Name - href: api/XRTK.Interfaces.IMixedRealityPlatform.html#XRTK_Interfaces_IMixedRealityPlatform_Name - commentId: P:XRTK.Interfaces.IMixedRealityPlatform.Name - fullName: XRTK.Interfaces.IMixedRealityPlatform.Name - nameWithType: IMixedRealityPlatform.Name -- uid: XRTK.Interfaces.IMixedRealityPlatform.Name* - name: Name - href: api/XRTK.Interfaces.IMixedRealityPlatform.html#XRTK_Interfaces_IMixedRealityPlatform_Name_ - commentId: Overload:XRTK.Interfaces.IMixedRealityPlatform.Name - isSpec: "True" - fullName: XRTK.Interfaces.IMixedRealityPlatform.Name - nameWithType: IMixedRealityPlatform.Name -- uid: XRTK.Interfaces.IMixedRealityPlatform.PlatformOverrides - name: PlatformOverrides - href: api/XRTK.Interfaces.IMixedRealityPlatform.html#XRTK_Interfaces_IMixedRealityPlatform_PlatformOverrides - commentId: P:XRTK.Interfaces.IMixedRealityPlatform.PlatformOverrides - fullName: XRTK.Interfaces.IMixedRealityPlatform.PlatformOverrides - nameWithType: IMixedRealityPlatform.PlatformOverrides -- uid: XRTK.Interfaces.IMixedRealityPlatform.PlatformOverrides* - name: PlatformOverrides - href: api/XRTK.Interfaces.IMixedRealityPlatform.html#XRTK_Interfaces_IMixedRealityPlatform_PlatformOverrides_ - commentId: Overload:XRTK.Interfaces.IMixedRealityPlatform.PlatformOverrides - isSpec: "True" - fullName: XRTK.Interfaces.IMixedRealityPlatform.PlatformOverrides - nameWithType: IMixedRealityPlatform.PlatformOverrides -- uid: XRTK.Interfaces.IMixedRealityService - name: IMixedRealityService - href: api/XRTK.Interfaces.IMixedRealityService.html - commentId: T:XRTK.Interfaces.IMixedRealityService - fullName: XRTK.Interfaces.IMixedRealityService - nameWithType: IMixedRealityService -- uid: XRTK.Interfaces.IMixedRealityService.Destroy - name: Destroy() - href: api/XRTK.Interfaces.IMixedRealityService.html#XRTK_Interfaces_IMixedRealityService_Destroy - commentId: M:XRTK.Interfaces.IMixedRealityService.Destroy - fullName: XRTK.Interfaces.IMixedRealityService.Destroy() - nameWithType: IMixedRealityService.Destroy() -- uid: XRTK.Interfaces.IMixedRealityService.Destroy* - name: Destroy - href: api/XRTK.Interfaces.IMixedRealityService.html#XRTK_Interfaces_IMixedRealityService_Destroy_ - commentId: Overload:XRTK.Interfaces.IMixedRealityService.Destroy - isSpec: "True" - fullName: XRTK.Interfaces.IMixedRealityService.Destroy - nameWithType: IMixedRealityService.Destroy -- uid: XRTK.Interfaces.IMixedRealityService.Disable - name: Disable() - href: api/XRTK.Interfaces.IMixedRealityService.html#XRTK_Interfaces_IMixedRealityService_Disable - commentId: M:XRTK.Interfaces.IMixedRealityService.Disable - fullName: XRTK.Interfaces.IMixedRealityService.Disable() - nameWithType: IMixedRealityService.Disable() -- uid: XRTK.Interfaces.IMixedRealityService.Disable* - name: Disable - href: api/XRTK.Interfaces.IMixedRealityService.html#XRTK_Interfaces_IMixedRealityService_Disable_ - commentId: Overload:XRTK.Interfaces.IMixedRealityService.Disable - isSpec: "True" - fullName: XRTK.Interfaces.IMixedRealityService.Disable - nameWithType: IMixedRealityService.Disable -- uid: XRTK.Interfaces.IMixedRealityService.Enable - name: Enable() - href: api/XRTK.Interfaces.IMixedRealityService.html#XRTK_Interfaces_IMixedRealityService_Enable - commentId: M:XRTK.Interfaces.IMixedRealityService.Enable - fullName: XRTK.Interfaces.IMixedRealityService.Enable() - nameWithType: IMixedRealityService.Enable() -- uid: XRTK.Interfaces.IMixedRealityService.Enable* - name: Enable - href: api/XRTK.Interfaces.IMixedRealityService.html#XRTK_Interfaces_IMixedRealityService_Enable_ - commentId: Overload:XRTK.Interfaces.IMixedRealityService.Enable - isSpec: "True" - fullName: XRTK.Interfaces.IMixedRealityService.Enable - nameWithType: IMixedRealityService.Enable -- uid: XRTK.Interfaces.IMixedRealityService.FixedUpdate - name: FixedUpdate() - href: api/XRTK.Interfaces.IMixedRealityService.html#XRTK_Interfaces_IMixedRealityService_FixedUpdate - commentId: M:XRTK.Interfaces.IMixedRealityService.FixedUpdate - fullName: XRTK.Interfaces.IMixedRealityService.FixedUpdate() - nameWithType: IMixedRealityService.FixedUpdate() -- uid: XRTK.Interfaces.IMixedRealityService.FixedUpdate* - name: FixedUpdate - href: api/XRTK.Interfaces.IMixedRealityService.html#XRTK_Interfaces_IMixedRealityService_FixedUpdate_ - commentId: Overload:XRTK.Interfaces.IMixedRealityService.FixedUpdate - isSpec: "True" - fullName: XRTK.Interfaces.IMixedRealityService.FixedUpdate - nameWithType: IMixedRealityService.FixedUpdate -- uid: XRTK.Interfaces.IMixedRealityService.Initialize - name: Initialize() - href: api/XRTK.Interfaces.IMixedRealityService.html#XRTK_Interfaces_IMixedRealityService_Initialize - commentId: M:XRTK.Interfaces.IMixedRealityService.Initialize - fullName: XRTK.Interfaces.IMixedRealityService.Initialize() - nameWithType: IMixedRealityService.Initialize() -- uid: XRTK.Interfaces.IMixedRealityService.Initialize* - name: Initialize - href: api/XRTK.Interfaces.IMixedRealityService.html#XRTK_Interfaces_IMixedRealityService_Initialize_ - commentId: Overload:XRTK.Interfaces.IMixedRealityService.Initialize - isSpec: "True" - fullName: XRTK.Interfaces.IMixedRealityService.Initialize - nameWithType: IMixedRealityService.Initialize -- uid: XRTK.Interfaces.IMixedRealityService.LateUpdate - name: LateUpdate() - href: api/XRTK.Interfaces.IMixedRealityService.html#XRTK_Interfaces_IMixedRealityService_LateUpdate - commentId: M:XRTK.Interfaces.IMixedRealityService.LateUpdate - fullName: XRTK.Interfaces.IMixedRealityService.LateUpdate() - nameWithType: IMixedRealityService.LateUpdate() -- uid: XRTK.Interfaces.IMixedRealityService.LateUpdate* - name: LateUpdate - href: api/XRTK.Interfaces.IMixedRealityService.html#XRTK_Interfaces_IMixedRealityService_LateUpdate_ - commentId: Overload:XRTK.Interfaces.IMixedRealityService.LateUpdate - isSpec: "True" - fullName: XRTK.Interfaces.IMixedRealityService.LateUpdate - nameWithType: IMixedRealityService.LateUpdate -- uid: XRTK.Interfaces.IMixedRealityService.Name - name: Name - href: api/XRTK.Interfaces.IMixedRealityService.html#XRTK_Interfaces_IMixedRealityService_Name - commentId: P:XRTK.Interfaces.IMixedRealityService.Name - fullName: XRTK.Interfaces.IMixedRealityService.Name - nameWithType: IMixedRealityService.Name -- uid: XRTK.Interfaces.IMixedRealityService.Name* - name: Name - href: api/XRTK.Interfaces.IMixedRealityService.html#XRTK_Interfaces_IMixedRealityService_Name_ - commentId: Overload:XRTK.Interfaces.IMixedRealityService.Name - isSpec: "True" - fullName: XRTK.Interfaces.IMixedRealityService.Name - nameWithType: IMixedRealityService.Name -- uid: XRTK.Interfaces.IMixedRealityService.OnApplicationFocus(System.Boolean) - name: OnApplicationFocus(Boolean) - href: api/XRTK.Interfaces.IMixedRealityService.html#XRTK_Interfaces_IMixedRealityService_OnApplicationFocus_System_Boolean_ - commentId: M:XRTK.Interfaces.IMixedRealityService.OnApplicationFocus(System.Boolean) - fullName: XRTK.Interfaces.IMixedRealityService.OnApplicationFocus(System.Boolean) - nameWithType: IMixedRealityService.OnApplicationFocus(Boolean) -- uid: XRTK.Interfaces.IMixedRealityService.OnApplicationFocus* - name: OnApplicationFocus - href: api/XRTK.Interfaces.IMixedRealityService.html#XRTK_Interfaces_IMixedRealityService_OnApplicationFocus_ - commentId: Overload:XRTK.Interfaces.IMixedRealityService.OnApplicationFocus - isSpec: "True" - fullName: XRTK.Interfaces.IMixedRealityService.OnApplicationFocus - nameWithType: IMixedRealityService.OnApplicationFocus -- uid: XRTK.Interfaces.IMixedRealityService.OnApplicationPause(System.Boolean) - name: OnApplicationPause(Boolean) - href: api/XRTK.Interfaces.IMixedRealityService.html#XRTK_Interfaces_IMixedRealityService_OnApplicationPause_System_Boolean_ - commentId: M:XRTK.Interfaces.IMixedRealityService.OnApplicationPause(System.Boolean) - fullName: XRTK.Interfaces.IMixedRealityService.OnApplicationPause(System.Boolean) - nameWithType: IMixedRealityService.OnApplicationPause(Boolean) -- uid: XRTK.Interfaces.IMixedRealityService.OnApplicationPause* - name: OnApplicationPause - href: api/XRTK.Interfaces.IMixedRealityService.html#XRTK_Interfaces_IMixedRealityService_OnApplicationPause_ - commentId: Overload:XRTK.Interfaces.IMixedRealityService.OnApplicationPause - isSpec: "True" - fullName: XRTK.Interfaces.IMixedRealityService.OnApplicationPause - nameWithType: IMixedRealityService.OnApplicationPause -- uid: XRTK.Interfaces.IMixedRealityService.Priority - name: Priority - href: api/XRTK.Interfaces.IMixedRealityService.html#XRTK_Interfaces_IMixedRealityService_Priority - commentId: P:XRTK.Interfaces.IMixedRealityService.Priority - fullName: XRTK.Interfaces.IMixedRealityService.Priority - nameWithType: IMixedRealityService.Priority -- uid: XRTK.Interfaces.IMixedRealityService.Priority* - name: Priority - href: api/XRTK.Interfaces.IMixedRealityService.html#XRTK_Interfaces_IMixedRealityService_Priority_ - commentId: Overload:XRTK.Interfaces.IMixedRealityService.Priority - isSpec: "True" - fullName: XRTK.Interfaces.IMixedRealityService.Priority - nameWithType: IMixedRealityService.Priority -- uid: XRTK.Interfaces.IMixedRealityService.Reset - name: Reset() - href: api/XRTK.Interfaces.IMixedRealityService.html#XRTK_Interfaces_IMixedRealityService_Reset - commentId: M:XRTK.Interfaces.IMixedRealityService.Reset - fullName: XRTK.Interfaces.IMixedRealityService.Reset() - nameWithType: IMixedRealityService.Reset() -- uid: XRTK.Interfaces.IMixedRealityService.Reset* - name: Reset - href: api/XRTK.Interfaces.IMixedRealityService.html#XRTK_Interfaces_IMixedRealityService_Reset_ - commentId: Overload:XRTK.Interfaces.IMixedRealityService.Reset - isSpec: "True" - fullName: XRTK.Interfaces.IMixedRealityService.Reset - nameWithType: IMixedRealityService.Reset -- uid: XRTK.Interfaces.IMixedRealityService.Update - name: Update() - href: api/XRTK.Interfaces.IMixedRealityService.html#XRTK_Interfaces_IMixedRealityService_Update - commentId: M:XRTK.Interfaces.IMixedRealityService.Update - fullName: XRTK.Interfaces.IMixedRealityService.Update() - nameWithType: IMixedRealityService.Update() -- uid: XRTK.Interfaces.IMixedRealityService.Update* - name: Update - href: api/XRTK.Interfaces.IMixedRealityService.html#XRTK_Interfaces_IMixedRealityService_Update_ - commentId: Overload:XRTK.Interfaces.IMixedRealityService.Update - isSpec: "True" - fullName: XRTK.Interfaces.IMixedRealityService.Update - nameWithType: IMixedRealityService.Update -- uid: XRTK.Interfaces.IMixedRealityServiceConfiguration - name: IMixedRealityServiceConfiguration - href: api/XRTK.Interfaces.IMixedRealityServiceConfiguration.html - commentId: T:XRTK.Interfaces.IMixedRealityServiceConfiguration - fullName: XRTK.Interfaces.IMixedRealityServiceConfiguration - nameWithType: IMixedRealityServiceConfiguration -- uid: XRTK.Interfaces.IMixedRealityServiceConfiguration.Enabled - name: Enabled - href: api/XRTK.Interfaces.IMixedRealityServiceConfiguration.html#XRTK_Interfaces_IMixedRealityServiceConfiguration_Enabled - commentId: P:XRTK.Interfaces.IMixedRealityServiceConfiguration.Enabled - fullName: XRTK.Interfaces.IMixedRealityServiceConfiguration.Enabled - nameWithType: IMixedRealityServiceConfiguration.Enabled -- uid: XRTK.Interfaces.IMixedRealityServiceConfiguration.Enabled* - name: Enabled - href: api/XRTK.Interfaces.IMixedRealityServiceConfiguration.html#XRTK_Interfaces_IMixedRealityServiceConfiguration_Enabled_ - commentId: Overload:XRTK.Interfaces.IMixedRealityServiceConfiguration.Enabled - isSpec: "True" - fullName: XRTK.Interfaces.IMixedRealityServiceConfiguration.Enabled - nameWithType: IMixedRealityServiceConfiguration.Enabled -- uid: XRTK.Interfaces.IMixedRealityServiceConfiguration.InstancedType - name: InstancedType - href: api/XRTK.Interfaces.IMixedRealityServiceConfiguration.html#XRTK_Interfaces_IMixedRealityServiceConfiguration_InstancedType - commentId: P:XRTK.Interfaces.IMixedRealityServiceConfiguration.InstancedType - fullName: XRTK.Interfaces.IMixedRealityServiceConfiguration.InstancedType - nameWithType: IMixedRealityServiceConfiguration.InstancedType -- uid: XRTK.Interfaces.IMixedRealityServiceConfiguration.InstancedType* - name: InstancedType - href: api/XRTK.Interfaces.IMixedRealityServiceConfiguration.html#XRTK_Interfaces_IMixedRealityServiceConfiguration_InstancedType_ - commentId: Overload:XRTK.Interfaces.IMixedRealityServiceConfiguration.InstancedType - isSpec: "True" - fullName: XRTK.Interfaces.IMixedRealityServiceConfiguration.InstancedType - nameWithType: IMixedRealityServiceConfiguration.InstancedType -- uid: XRTK.Interfaces.IMixedRealityServiceConfiguration.Name - name: Name - href: api/XRTK.Interfaces.IMixedRealityServiceConfiguration.html#XRTK_Interfaces_IMixedRealityServiceConfiguration_Name - commentId: P:XRTK.Interfaces.IMixedRealityServiceConfiguration.Name - fullName: XRTK.Interfaces.IMixedRealityServiceConfiguration.Name - nameWithType: IMixedRealityServiceConfiguration.Name -- uid: XRTK.Interfaces.IMixedRealityServiceConfiguration.Name* - name: Name - href: api/XRTK.Interfaces.IMixedRealityServiceConfiguration.html#XRTK_Interfaces_IMixedRealityServiceConfiguration_Name_ - commentId: Overload:XRTK.Interfaces.IMixedRealityServiceConfiguration.Name - isSpec: "True" - fullName: XRTK.Interfaces.IMixedRealityServiceConfiguration.Name - nameWithType: IMixedRealityServiceConfiguration.Name -- uid: XRTK.Interfaces.IMixedRealityServiceConfiguration.Priority - name: Priority - href: api/XRTK.Interfaces.IMixedRealityServiceConfiguration.html#XRTK_Interfaces_IMixedRealityServiceConfiguration_Priority - commentId: P:XRTK.Interfaces.IMixedRealityServiceConfiguration.Priority - fullName: XRTK.Interfaces.IMixedRealityServiceConfiguration.Priority - nameWithType: IMixedRealityServiceConfiguration.Priority -- uid: XRTK.Interfaces.IMixedRealityServiceConfiguration.Priority* - name: Priority - href: api/XRTK.Interfaces.IMixedRealityServiceConfiguration.html#XRTK_Interfaces_IMixedRealityServiceConfiguration_Priority_ - commentId: Overload:XRTK.Interfaces.IMixedRealityServiceConfiguration.Priority - isSpec: "True" - fullName: XRTK.Interfaces.IMixedRealityServiceConfiguration.Priority - nameWithType: IMixedRealityServiceConfiguration.Priority -- uid: XRTK.Interfaces.IMixedRealityServiceConfiguration.Profile - name: Profile - href: api/XRTK.Interfaces.IMixedRealityServiceConfiguration.html#XRTK_Interfaces_IMixedRealityServiceConfiguration_Profile - commentId: P:XRTK.Interfaces.IMixedRealityServiceConfiguration.Profile - fullName: XRTK.Interfaces.IMixedRealityServiceConfiguration.Profile - nameWithType: IMixedRealityServiceConfiguration.Profile -- uid: XRTK.Interfaces.IMixedRealityServiceConfiguration.Profile* - name: Profile - href: api/XRTK.Interfaces.IMixedRealityServiceConfiguration.html#XRTK_Interfaces_IMixedRealityServiceConfiguration_Profile_ - commentId: Overload:XRTK.Interfaces.IMixedRealityServiceConfiguration.Profile - isSpec: "True" - fullName: XRTK.Interfaces.IMixedRealityServiceConfiguration.Profile - nameWithType: IMixedRealityServiceConfiguration.Profile -- uid: XRTK.Interfaces.IMixedRealityServiceConfiguration.RuntimePlatforms - name: RuntimePlatforms - href: api/XRTK.Interfaces.IMixedRealityServiceConfiguration.html#XRTK_Interfaces_IMixedRealityServiceConfiguration_RuntimePlatforms - commentId: P:XRTK.Interfaces.IMixedRealityServiceConfiguration.RuntimePlatforms - fullName: XRTK.Interfaces.IMixedRealityServiceConfiguration.RuntimePlatforms - nameWithType: IMixedRealityServiceConfiguration.RuntimePlatforms -- uid: XRTK.Interfaces.IMixedRealityServiceConfiguration.RuntimePlatforms* - name: RuntimePlatforms - href: api/XRTK.Interfaces.IMixedRealityServiceConfiguration.html#XRTK_Interfaces_IMixedRealityServiceConfiguration_RuntimePlatforms_ - commentId: Overload:XRTK.Interfaces.IMixedRealityServiceConfiguration.RuntimePlatforms - isSpec: "True" - fullName: XRTK.Interfaces.IMixedRealityServiceConfiguration.RuntimePlatforms - nameWithType: IMixedRealityServiceConfiguration.RuntimePlatforms -- uid: XRTK.Interfaces.IMixedRealityServiceConfiguration`1 - name: IMixedRealityServiceConfiguration - href: api/XRTK.Interfaces.IMixedRealityServiceConfiguration-1.html - commentId: T:XRTK.Interfaces.IMixedRealityServiceConfiguration`1 - name.vb: IMixedRealityServiceConfiguration(Of T) - fullName: XRTK.Interfaces.IMixedRealityServiceConfiguration - fullName.vb: XRTK.Interfaces.IMixedRealityServiceConfiguration(Of T) - nameWithType: IMixedRealityServiceConfiguration - nameWithType.vb: IMixedRealityServiceConfiguration(Of T) -- uid: XRTK.Interfaces.IMixedRealitySystem - name: IMixedRealitySystem - href: api/XRTK.Interfaces.IMixedRealitySystem.html - commentId: T:XRTK.Interfaces.IMixedRealitySystem - fullName: XRTK.Interfaces.IMixedRealitySystem - nameWithType: IMixedRealitySystem -- uid: XRTK.Interfaces.InputSystem - name: XRTK.Interfaces.InputSystem - href: api/XRTK.Interfaces.InputSystem.html - commentId: N:XRTK.Interfaces.InputSystem - fullName: XRTK.Interfaces.InputSystem - nameWithType: XRTK.Interfaces.InputSystem -- uid: XRTK.Interfaces.InputSystem.Handlers - name: XRTK.Interfaces.InputSystem.Handlers - href: api/XRTK.Interfaces.InputSystem.Handlers.html - commentId: N:XRTK.Interfaces.InputSystem.Handlers - fullName: XRTK.Interfaces.InputSystem.Handlers - nameWithType: XRTK.Interfaces.InputSystem.Handlers -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer - name: IMixedRealityControllerPoseSynchronizer - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer.html - commentId: T:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer - nameWithType: IMixedRealityControllerPoseSynchronizer -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer.Controller - name: Controller - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityControllerPoseSynchronizer_Controller - commentId: P:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer.Controller - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer.Controller - nameWithType: IMixedRealityControllerPoseSynchronizer.Controller -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer.Controller* - name: Controller - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityControllerPoseSynchronizer_Controller_ - commentId: Overload:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer.Controller - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer.Controller - nameWithType: IMixedRealityControllerPoseSynchronizer.Controller -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer.DestroyOnSourceLost - name: DestroyOnSourceLost - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityControllerPoseSynchronizer_DestroyOnSourceLost - commentId: P:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer.DestroyOnSourceLost - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer.DestroyOnSourceLost - nameWithType: IMixedRealityControllerPoseSynchronizer.DestroyOnSourceLost -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer.DestroyOnSourceLost* - name: DestroyOnSourceLost - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityControllerPoseSynchronizer_DestroyOnSourceLost_ - commentId: Overload:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer.DestroyOnSourceLost - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer.DestroyOnSourceLost - nameWithType: IMixedRealityControllerPoseSynchronizer.DestroyOnSourceLost -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer.Handedness - name: Handedness - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityControllerPoseSynchronizer_Handedness - commentId: P:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer.Handedness - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer.Handedness - nameWithType: IMixedRealityControllerPoseSynchronizer.Handedness -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer.Handedness* - name: Handedness - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityControllerPoseSynchronizer_Handedness_ - commentId: Overload:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer.Handedness - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer.Handedness - nameWithType: IMixedRealityControllerPoseSynchronizer.Handedness -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer.PoseAction - name: PoseAction - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityControllerPoseSynchronizer_PoseAction - commentId: P:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer.PoseAction - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer.PoseAction - nameWithType: IMixedRealityControllerPoseSynchronizer.PoseAction -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer.PoseAction* - name: PoseAction - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityControllerPoseSynchronizer_PoseAction_ - commentId: Overload:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer.PoseAction - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer.PoseAction - nameWithType: IMixedRealityControllerPoseSynchronizer.PoseAction -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer.PoseDriver - name: PoseDriver - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityControllerPoseSynchronizer_PoseDriver - commentId: P:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer.PoseDriver - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer.PoseDriver - nameWithType: IMixedRealityControllerPoseSynchronizer.PoseDriver -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer.PoseDriver* - name: PoseDriver - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityControllerPoseSynchronizer_PoseDriver_ - commentId: Overload:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer.PoseDriver - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer.PoseDriver - nameWithType: IMixedRealityControllerPoseSynchronizer.PoseDriver -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer.UseSourcePoseData - name: UseSourcePoseData - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityControllerPoseSynchronizer_UseSourcePoseData - commentId: P:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer.UseSourcePoseData - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer.UseSourcePoseData - nameWithType: IMixedRealityControllerPoseSynchronizer.UseSourcePoseData -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer.UseSourcePoseData* - name: UseSourcePoseData - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityControllerPoseSynchronizer_UseSourcePoseData_ - commentId: Overload:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer.UseSourcePoseData - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerPoseSynchronizer.UseSourcePoseData - nameWithType: IMixedRealityControllerPoseSynchronizer.UseSourcePoseData -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerVisualizer - name: IMixedRealityControllerVisualizer - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerVisualizer.html - commentId: T:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerVisualizer - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerVisualizer - nameWithType: IMixedRealityControllerVisualizer -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerVisualizer.GameObject - name: GameObject - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerVisualizer.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityControllerVisualizer_GameObject - commentId: P:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerVisualizer.GameObject - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerVisualizer.GameObject - nameWithType: IMixedRealityControllerVisualizer.GameObject -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerVisualizer.GameObject* - name: GameObject - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerVisualizer.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityControllerVisualizer_GameObject_ - commentId: Overload:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerVisualizer.GameObject - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityControllerVisualizer.GameObject - nameWithType: IMixedRealityControllerVisualizer.GameObject -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityDictationHandler - name: IMixedRealityDictationHandler - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityDictationHandler.html - commentId: T:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityDictationHandler - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityDictationHandler - nameWithType: IMixedRealityDictationHandler -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityDictationHandler.OnDictationComplete(XRTK.EventDatum.Input.DictationEventData) - name: OnDictationComplete(DictationEventData) - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityDictationHandler.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityDictationHandler_OnDictationComplete_XRTK_EventDatum_Input_DictationEventData_ - commentId: M:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityDictationHandler.OnDictationComplete(XRTK.EventDatum.Input.DictationEventData) - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityDictationHandler.OnDictationComplete(XRTK.EventDatum.Input.DictationEventData) - nameWithType: IMixedRealityDictationHandler.OnDictationComplete(DictationEventData) -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityDictationHandler.OnDictationComplete* - name: OnDictationComplete - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityDictationHandler.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityDictationHandler_OnDictationComplete_ - commentId: Overload:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityDictationHandler.OnDictationComplete - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityDictationHandler.OnDictationComplete - nameWithType: IMixedRealityDictationHandler.OnDictationComplete -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityDictationHandler.OnDictationError(XRTK.EventDatum.Input.DictationEventData) - name: OnDictationError(DictationEventData) - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityDictationHandler.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityDictationHandler_OnDictationError_XRTK_EventDatum_Input_DictationEventData_ - commentId: M:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityDictationHandler.OnDictationError(XRTK.EventDatum.Input.DictationEventData) - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityDictationHandler.OnDictationError(XRTK.EventDatum.Input.DictationEventData) - nameWithType: IMixedRealityDictationHandler.OnDictationError(DictationEventData) -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityDictationHandler.OnDictationError* - name: OnDictationError - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityDictationHandler.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityDictationHandler_OnDictationError_ - commentId: Overload:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityDictationHandler.OnDictationError - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityDictationHandler.OnDictationError - nameWithType: IMixedRealityDictationHandler.OnDictationError -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityDictationHandler.OnDictationHypothesis(XRTK.EventDatum.Input.DictationEventData) - name: OnDictationHypothesis(DictationEventData) - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityDictationHandler.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityDictationHandler_OnDictationHypothesis_XRTK_EventDatum_Input_DictationEventData_ - commentId: M:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityDictationHandler.OnDictationHypothesis(XRTK.EventDatum.Input.DictationEventData) - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityDictationHandler.OnDictationHypothesis(XRTK.EventDatum.Input.DictationEventData) - nameWithType: IMixedRealityDictationHandler.OnDictationHypothesis(DictationEventData) -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityDictationHandler.OnDictationHypothesis* - name: OnDictationHypothesis - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityDictationHandler.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityDictationHandler_OnDictationHypothesis_ - commentId: Overload:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityDictationHandler.OnDictationHypothesis - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityDictationHandler.OnDictationHypothesis - nameWithType: IMixedRealityDictationHandler.OnDictationHypothesis -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityDictationHandler.OnDictationResult(XRTK.EventDatum.Input.DictationEventData) - name: OnDictationResult(DictationEventData) - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityDictationHandler.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityDictationHandler_OnDictationResult_XRTK_EventDatum_Input_DictationEventData_ - commentId: M:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityDictationHandler.OnDictationResult(XRTK.EventDatum.Input.DictationEventData) - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityDictationHandler.OnDictationResult(XRTK.EventDatum.Input.DictationEventData) - nameWithType: IMixedRealityDictationHandler.OnDictationResult(DictationEventData) -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityDictationHandler.OnDictationResult* - name: OnDictationResult - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityDictationHandler.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityDictationHandler_OnDictationResult_ - commentId: Overload:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityDictationHandler.OnDictationResult - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityDictationHandler.OnDictationResult - nameWithType: IMixedRealityDictationHandler.OnDictationResult -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusChangedHandler - name: IMixedRealityFocusChangedHandler - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusChangedHandler.html - commentId: T:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusChangedHandler - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusChangedHandler - nameWithType: IMixedRealityFocusChangedHandler -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusChangedHandler.OnBeforeFocusChange(XRTK.EventDatum.Input.FocusEventData) - name: OnBeforeFocusChange(FocusEventData) - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusChangedHandler.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityFocusChangedHandler_OnBeforeFocusChange_XRTK_EventDatum_Input_FocusEventData_ - commentId: M:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusChangedHandler.OnBeforeFocusChange(XRTK.EventDatum.Input.FocusEventData) - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusChangedHandler.OnBeforeFocusChange(XRTK.EventDatum.Input.FocusEventData) - nameWithType: IMixedRealityFocusChangedHandler.OnBeforeFocusChange(FocusEventData) -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusChangedHandler.OnBeforeFocusChange* - name: OnBeforeFocusChange - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusChangedHandler.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityFocusChangedHandler_OnBeforeFocusChange_ - commentId: Overload:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusChangedHandler.OnBeforeFocusChange - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusChangedHandler.OnBeforeFocusChange - nameWithType: IMixedRealityFocusChangedHandler.OnBeforeFocusChange -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusChangedHandler.OnFocusChanged(XRTK.EventDatum.Input.FocusEventData) - name: OnFocusChanged(FocusEventData) - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusChangedHandler.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityFocusChangedHandler_OnFocusChanged_XRTK_EventDatum_Input_FocusEventData_ - commentId: M:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusChangedHandler.OnFocusChanged(XRTK.EventDatum.Input.FocusEventData) - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusChangedHandler.OnFocusChanged(XRTK.EventDatum.Input.FocusEventData) - nameWithType: IMixedRealityFocusChangedHandler.OnFocusChanged(FocusEventData) -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusChangedHandler.OnFocusChanged* - name: OnFocusChanged - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusChangedHandler.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityFocusChangedHandler_OnFocusChanged_ - commentId: Overload:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusChangedHandler.OnFocusChanged - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusChangedHandler.OnFocusChanged - nameWithType: IMixedRealityFocusChangedHandler.OnFocusChanged -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusHandler - name: IMixedRealityFocusHandler - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusHandler.html - commentId: T:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusHandler - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusHandler - nameWithType: IMixedRealityFocusHandler -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusHandler.OnFocusEnter(XRTK.EventDatum.Input.FocusEventData) - name: OnFocusEnter(FocusEventData) - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusHandler.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityFocusHandler_OnFocusEnter_XRTK_EventDatum_Input_FocusEventData_ - commentId: M:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusHandler.OnFocusEnter(XRTK.EventDatum.Input.FocusEventData) - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusHandler.OnFocusEnter(XRTK.EventDatum.Input.FocusEventData) - nameWithType: IMixedRealityFocusHandler.OnFocusEnter(FocusEventData) -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusHandler.OnFocusEnter* - name: OnFocusEnter - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusHandler.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityFocusHandler_OnFocusEnter_ - commentId: Overload:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusHandler.OnFocusEnter - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusHandler.OnFocusEnter - nameWithType: IMixedRealityFocusHandler.OnFocusEnter -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusHandler.OnFocusExit(XRTK.EventDatum.Input.FocusEventData) - name: OnFocusExit(FocusEventData) - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusHandler.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityFocusHandler_OnFocusExit_XRTK_EventDatum_Input_FocusEventData_ - commentId: M:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusHandler.OnFocusExit(XRTK.EventDatum.Input.FocusEventData) - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusHandler.OnFocusExit(XRTK.EventDatum.Input.FocusEventData) - nameWithType: IMixedRealityFocusHandler.OnFocusExit(FocusEventData) -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusHandler.OnFocusExit* - name: OnFocusExit - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusHandler.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityFocusHandler_OnFocusExit_ - commentId: Overload:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusHandler.OnFocusExit - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusHandler.OnFocusExit - nameWithType: IMixedRealityFocusHandler.OnFocusExit -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler - name: IMixedRealityGestureHandler - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.html - commentId: T:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler - nameWithType: IMixedRealityGestureHandler -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCanceled(XRTK.EventDatum.Input.InputEventData) - name: OnGestureCanceled(InputEventData) - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityGestureHandler_OnGestureCanceled_XRTK_EventDatum_Input_InputEventData_ - commentId: M:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCanceled(XRTK.EventDatum.Input.InputEventData) - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCanceled(XRTK.EventDatum.Input.InputEventData) - nameWithType: IMixedRealityGestureHandler.OnGestureCanceled(InputEventData) -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCanceled* - name: OnGestureCanceled - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityGestureHandler_OnGestureCanceled_ - commentId: Overload:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCanceled - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCanceled - nameWithType: IMixedRealityGestureHandler.OnGestureCanceled -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted(XRTK.EventDatum.Input.InputEventData) - name: OnGestureCompleted(InputEventData) - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityGestureHandler_OnGestureCompleted_XRTK_EventDatum_Input_InputEventData_ - commentId: M:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted(XRTK.EventDatum.Input.InputEventData) - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted(XRTK.EventDatum.Input.InputEventData) - nameWithType: IMixedRealityGestureHandler.OnGestureCompleted(InputEventData) -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted* - name: OnGestureCompleted - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityGestureHandler_OnGestureCompleted_ - commentId: Overload:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted - nameWithType: IMixedRealityGestureHandler.OnGestureCompleted -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureStarted(XRTK.EventDatum.Input.InputEventData) - name: OnGestureStarted(InputEventData) - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityGestureHandler_OnGestureStarted_XRTK_EventDatum_Input_InputEventData_ - commentId: M:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureStarted(XRTK.EventDatum.Input.InputEventData) - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureStarted(XRTK.EventDatum.Input.InputEventData) - nameWithType: IMixedRealityGestureHandler.OnGestureStarted(InputEventData) -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureStarted* - name: OnGestureStarted - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityGestureHandler_OnGestureStarted_ - commentId: Overload:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureStarted - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureStarted - nameWithType: IMixedRealityGestureHandler.OnGestureStarted -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated(XRTK.EventDatum.Input.InputEventData) - name: OnGestureUpdated(InputEventData) - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityGestureHandler_OnGestureUpdated_XRTK_EventDatum_Input_InputEventData_ - commentId: M:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated(XRTK.EventDatum.Input.InputEventData) - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated(XRTK.EventDatum.Input.InputEventData) - nameWithType: IMixedRealityGestureHandler.OnGestureUpdated(InputEventData) -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated* - name: OnGestureUpdated - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityGestureHandler_OnGestureUpdated_ - commentId: Overload:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated - nameWithType: IMixedRealityGestureHandler.OnGestureUpdated -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler`1 - name: IMixedRealityGestureHandler - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler-1.html - commentId: T:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler`1 - name.vb: IMixedRealityGestureHandler(Of T) - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler - fullName.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler(Of T) - nameWithType: IMixedRealityGestureHandler - nameWithType.vb: IMixedRealityGestureHandler(Of T) -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler`1.OnGestureCompleted(XRTK.EventDatum.Input.InputEventData{`0}) - name: OnGestureCompleted(InputEventData) - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler-1.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityGestureHandler_1_OnGestureCompleted_XRTK_EventDatum_Input_InputEventData__0__ - commentId: M:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler`1.OnGestureCompleted(XRTK.EventDatum.Input.InputEventData{`0}) - name.vb: OnGestureCompleted(InputEventData(Of T)) - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted(XRTK.EventDatum.Input.InputEventData) - fullName.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler(Of T).OnGestureCompleted(XRTK.EventDatum.Input.InputEventData(Of T)) - nameWithType: IMixedRealityGestureHandler.OnGestureCompleted(InputEventData) - nameWithType.vb: IMixedRealityGestureHandler(Of T).OnGestureCompleted(InputEventData(Of T)) -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler`1.OnGestureCompleted* - name: OnGestureCompleted - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler-1.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityGestureHandler_1_OnGestureCompleted_ - commentId: Overload:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler`1.OnGestureCompleted - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted - fullName.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler(Of T).OnGestureCompleted - nameWithType: IMixedRealityGestureHandler.OnGestureCompleted - nameWithType.vb: IMixedRealityGestureHandler(Of T).OnGestureCompleted -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler`1.OnGestureUpdated(XRTK.EventDatum.Input.InputEventData{`0}) - name: OnGestureUpdated(InputEventData) - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler-1.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityGestureHandler_1_OnGestureUpdated_XRTK_EventDatum_Input_InputEventData__0__ - commentId: M:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler`1.OnGestureUpdated(XRTK.EventDatum.Input.InputEventData{`0}) - name.vb: OnGestureUpdated(InputEventData(Of T)) - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated(XRTK.EventDatum.Input.InputEventData) - fullName.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler(Of T).OnGestureUpdated(XRTK.EventDatum.Input.InputEventData(Of T)) - nameWithType: IMixedRealityGestureHandler.OnGestureUpdated(InputEventData) - nameWithType.vb: IMixedRealityGestureHandler(Of T).OnGestureUpdated(InputEventData(Of T)) -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler`1.OnGestureUpdated* - name: OnGestureUpdated - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler-1.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityGestureHandler_1_OnGestureUpdated_ - commentId: Overload:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler`1.OnGestureUpdated - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated - fullName.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler(Of T).OnGestureUpdated - nameWithType: IMixedRealityGestureHandler.OnGestureUpdated - nameWithType.vb: IMixedRealityGestureHandler(Of T).OnGestureUpdated -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler - name: IMixedRealityInputHandler - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.html - commentId: T:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler - nameWithType: IMixedRealityInputHandler -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputDown(XRTK.EventDatum.Input.InputEventData) - name: OnInputDown(InputEventData) - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityInputHandler_OnInputDown_XRTK_EventDatum_Input_InputEventData_ - commentId: M:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputDown(XRTK.EventDatum.Input.InputEventData) - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputDown(XRTK.EventDatum.Input.InputEventData) - nameWithType: IMixedRealityInputHandler.OnInputDown(InputEventData) -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputDown* - name: OnInputDown - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityInputHandler_OnInputDown_ - commentId: Overload:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputDown - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputDown - nameWithType: IMixedRealityInputHandler.OnInputDown -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputUp(XRTK.EventDatum.Input.InputEventData) - name: OnInputUp(InputEventData) - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityInputHandler_OnInputUp_XRTK_EventDatum_Input_InputEventData_ - commentId: M:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputUp(XRTK.EventDatum.Input.InputEventData) - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputUp(XRTK.EventDatum.Input.InputEventData) - nameWithType: IMixedRealityInputHandler.OnInputUp(InputEventData) -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputUp* - name: OnInputUp - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityInputHandler_OnInputUp_ - commentId: Overload:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputUp - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputUp - nameWithType: IMixedRealityInputHandler.OnInputUp -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler`1 - name: IMixedRealityInputHandler - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler-1.html - commentId: T:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler`1 - name.vb: IMixedRealityInputHandler(Of T) - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler - fullName.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler(Of T) - nameWithType: IMixedRealityInputHandler - nameWithType.vb: IMixedRealityInputHandler(Of T) -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler`1.OnInputChanged(XRTK.EventDatum.Input.InputEventData{`0}) - name: OnInputChanged(InputEventData) - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler-1.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityInputHandler_1_OnInputChanged_XRTK_EventDatum_Input_InputEventData__0__ - commentId: M:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler`1.OnInputChanged(XRTK.EventDatum.Input.InputEventData{`0}) - name.vb: OnInputChanged(InputEventData(Of T)) - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputChanged(XRTK.EventDatum.Input.InputEventData) - fullName.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler(Of T).OnInputChanged(XRTK.EventDatum.Input.InputEventData(Of T)) - nameWithType: IMixedRealityInputHandler.OnInputChanged(InputEventData) - nameWithType.vb: IMixedRealityInputHandler(Of T).OnInputChanged(InputEventData(Of T)) -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler`1.OnInputChanged* - name: OnInputChanged - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler-1.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityInputHandler_1_OnInputChanged_ - commentId: Overload:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler`1.OnInputChanged - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputChanged - fullName.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler(Of T).OnInputChanged - nameWithType: IMixedRealityInputHandler.OnInputChanged - nameWithType.vb: IMixedRealityInputHandler(Of T).OnInputChanged -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerDragHandler - name: IMixedRealityPointerDragHandler - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerDragHandler.html - commentId: T:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerDragHandler - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerDragHandler - nameWithType: IMixedRealityPointerDragHandler -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerDragHandler.OnPointerDrag(XRTK.EventDatum.Input.MixedRealityPointerDragEventData) - name: OnPointerDrag(MixedRealityPointerDragEventData) - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerDragHandler.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityPointerDragHandler_OnPointerDrag_XRTK_EventDatum_Input_MixedRealityPointerDragEventData_ - commentId: M:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerDragHandler.OnPointerDrag(XRTK.EventDatum.Input.MixedRealityPointerDragEventData) - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerDragHandler.OnPointerDrag(XRTK.EventDatum.Input.MixedRealityPointerDragEventData) - nameWithType: IMixedRealityPointerDragHandler.OnPointerDrag(MixedRealityPointerDragEventData) -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerDragHandler.OnPointerDrag* - name: OnPointerDrag - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerDragHandler.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityPointerDragHandler_OnPointerDrag_ - commentId: Overload:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerDragHandler.OnPointerDrag - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerDragHandler.OnPointerDrag - nameWithType: IMixedRealityPointerDragHandler.OnPointerDrag -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerDragHandler.OnPointerDragBegin(XRTK.EventDatum.Input.MixedRealityPointerDragEventData) - name: OnPointerDragBegin(MixedRealityPointerDragEventData) - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerDragHandler.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityPointerDragHandler_OnPointerDragBegin_XRTK_EventDatum_Input_MixedRealityPointerDragEventData_ - commentId: M:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerDragHandler.OnPointerDragBegin(XRTK.EventDatum.Input.MixedRealityPointerDragEventData) - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerDragHandler.OnPointerDragBegin(XRTK.EventDatum.Input.MixedRealityPointerDragEventData) - nameWithType: IMixedRealityPointerDragHandler.OnPointerDragBegin(MixedRealityPointerDragEventData) -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerDragHandler.OnPointerDragBegin* - name: OnPointerDragBegin - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerDragHandler.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityPointerDragHandler_OnPointerDragBegin_ - commentId: Overload:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerDragHandler.OnPointerDragBegin - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerDragHandler.OnPointerDragBegin - nameWithType: IMixedRealityPointerDragHandler.OnPointerDragBegin -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerDragHandler.OnPointerDragEnd(XRTK.EventDatum.Input.MixedRealityPointerDragEventData) - name: OnPointerDragEnd(MixedRealityPointerDragEventData) - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerDragHandler.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityPointerDragHandler_OnPointerDragEnd_XRTK_EventDatum_Input_MixedRealityPointerDragEventData_ - commentId: M:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerDragHandler.OnPointerDragEnd(XRTK.EventDatum.Input.MixedRealityPointerDragEventData) - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerDragHandler.OnPointerDragEnd(XRTK.EventDatum.Input.MixedRealityPointerDragEventData) - nameWithType: IMixedRealityPointerDragHandler.OnPointerDragEnd(MixedRealityPointerDragEventData) -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerDragHandler.OnPointerDragEnd* - name: OnPointerDragEnd - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerDragHandler.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityPointerDragHandler_OnPointerDragEnd_ - commentId: Overload:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerDragHandler.OnPointerDragEnd - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerDragHandler.OnPointerDragEnd - nameWithType: IMixedRealityPointerDragHandler.OnPointerDragEnd -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerHandler - name: IMixedRealityPointerHandler - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerHandler.html - commentId: T:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerHandler - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerHandler - nameWithType: IMixedRealityPointerHandler -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerHandler.OnPointerClicked(XRTK.EventDatum.Input.MixedRealityPointerEventData) - name: OnPointerClicked(MixedRealityPointerEventData) - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerHandler.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityPointerHandler_OnPointerClicked_XRTK_EventDatum_Input_MixedRealityPointerEventData_ - commentId: M:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerHandler.OnPointerClicked(XRTK.EventDatum.Input.MixedRealityPointerEventData) - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerHandler.OnPointerClicked(XRTK.EventDatum.Input.MixedRealityPointerEventData) - nameWithType: IMixedRealityPointerHandler.OnPointerClicked(MixedRealityPointerEventData) -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerHandler.OnPointerClicked* - name: OnPointerClicked - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerHandler.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityPointerHandler_OnPointerClicked_ - commentId: Overload:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerHandler.OnPointerClicked - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerHandler.OnPointerClicked - nameWithType: IMixedRealityPointerHandler.OnPointerClicked -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerHandler.OnPointerDown(XRTK.EventDatum.Input.MixedRealityPointerEventData) - name: OnPointerDown(MixedRealityPointerEventData) - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerHandler.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityPointerHandler_OnPointerDown_XRTK_EventDatum_Input_MixedRealityPointerEventData_ - commentId: M:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerHandler.OnPointerDown(XRTK.EventDatum.Input.MixedRealityPointerEventData) - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerHandler.OnPointerDown(XRTK.EventDatum.Input.MixedRealityPointerEventData) - nameWithType: IMixedRealityPointerHandler.OnPointerDown(MixedRealityPointerEventData) -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerHandler.OnPointerDown* - name: OnPointerDown - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerHandler.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityPointerHandler_OnPointerDown_ - commentId: Overload:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerHandler.OnPointerDown - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerHandler.OnPointerDown - nameWithType: IMixedRealityPointerHandler.OnPointerDown -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerHandler.OnPointerUp(XRTK.EventDatum.Input.MixedRealityPointerEventData) - name: OnPointerUp(MixedRealityPointerEventData) - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerHandler.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityPointerHandler_OnPointerUp_XRTK_EventDatum_Input_MixedRealityPointerEventData_ - commentId: M:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerHandler.OnPointerUp(XRTK.EventDatum.Input.MixedRealityPointerEventData) - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerHandler.OnPointerUp(XRTK.EventDatum.Input.MixedRealityPointerEventData) - nameWithType: IMixedRealityPointerHandler.OnPointerUp(MixedRealityPointerEventData) -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerHandler.OnPointerUp* - name: OnPointerUp - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerHandler.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityPointerHandler_OnPointerUp_ - commentId: Overload:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerHandler.OnPointerUp - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerHandler.OnPointerUp - nameWithType: IMixedRealityPointerHandler.OnPointerUp -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerScrollHandler - name: IMixedRealityPointerScrollHandler - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerScrollHandler.html - commentId: T:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerScrollHandler - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerScrollHandler - nameWithType: IMixedRealityPointerScrollHandler -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerScrollHandler.OnPointerScroll(XRTK.EventDatum.Input.MixedRealityPointerScrollEventData) - name: OnPointerScroll(MixedRealityPointerScrollEventData) - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerScrollHandler.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityPointerScrollHandler_OnPointerScroll_XRTK_EventDatum_Input_MixedRealityPointerScrollEventData_ - commentId: M:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerScrollHandler.OnPointerScroll(XRTK.EventDatum.Input.MixedRealityPointerScrollEventData) - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerScrollHandler.OnPointerScroll(XRTK.EventDatum.Input.MixedRealityPointerScrollEventData) - nameWithType: IMixedRealityPointerScrollHandler.OnPointerScroll(MixedRealityPointerScrollEventData) -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerScrollHandler.OnPointerScroll* - name: OnPointerScroll - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerScrollHandler.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealityPointerScrollHandler_OnPointerScroll_ - commentId: Overload:XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerScrollHandler.OnPointerScroll - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerScrollHandler.OnPointerScroll - nameWithType: IMixedRealityPointerScrollHandler.OnPointerScroll -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourcePoseHandler - name: IMixedRealitySourcePoseHandler - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourcePoseHandler.html - commentId: T:XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourcePoseHandler - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourcePoseHandler - nameWithType: IMixedRealitySourcePoseHandler -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourcePoseHandler.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData{UnityEngine.Quaternion}) - name: OnSourcePoseChanged(SourcePoseEventData) - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourcePoseHandler.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealitySourcePoseHandler_OnSourcePoseChanged_XRTK_EventDatum_Input_SourcePoseEventData_UnityEngine_Quaternion__ - commentId: M:XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourcePoseHandler.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData{UnityEngine.Quaternion}) - name.vb: OnSourcePoseChanged(SourcePoseEventData(Of Quaternion)) - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourcePoseHandler.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData) - fullName.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourcePoseHandler.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData(Of UnityEngine.Quaternion)) - nameWithType: IMixedRealitySourcePoseHandler.OnSourcePoseChanged(SourcePoseEventData) - nameWithType.vb: IMixedRealitySourcePoseHandler.OnSourcePoseChanged(SourcePoseEventData(Of Quaternion)) -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourcePoseHandler.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData{UnityEngine.Vector2}) - name: OnSourcePoseChanged(SourcePoseEventData) - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourcePoseHandler.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealitySourcePoseHandler_OnSourcePoseChanged_XRTK_EventDatum_Input_SourcePoseEventData_UnityEngine_Vector2__ - commentId: M:XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourcePoseHandler.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData{UnityEngine.Vector2}) - name.vb: OnSourcePoseChanged(SourcePoseEventData(Of Vector2)) - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourcePoseHandler.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData) - fullName.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourcePoseHandler.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData(Of UnityEngine.Vector2)) - nameWithType: IMixedRealitySourcePoseHandler.OnSourcePoseChanged(SourcePoseEventData) - nameWithType.vb: IMixedRealitySourcePoseHandler.OnSourcePoseChanged(SourcePoseEventData(Of Vector2)) -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourcePoseHandler.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData{UnityEngine.Vector3}) - name: OnSourcePoseChanged(SourcePoseEventData) - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourcePoseHandler.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealitySourcePoseHandler_OnSourcePoseChanged_XRTK_EventDatum_Input_SourcePoseEventData_UnityEngine_Vector3__ - commentId: M:XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourcePoseHandler.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData{UnityEngine.Vector3}) - name.vb: OnSourcePoseChanged(SourcePoseEventData(Of Vector3)) - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourcePoseHandler.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData) - fullName.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourcePoseHandler.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData(Of UnityEngine.Vector3)) - nameWithType: IMixedRealitySourcePoseHandler.OnSourcePoseChanged(SourcePoseEventData) - nameWithType.vb: IMixedRealitySourcePoseHandler.OnSourcePoseChanged(SourcePoseEventData(Of Vector3)) -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourcePoseHandler.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData{XRTK.Definitions.Devices.TrackingState}) - name: OnSourcePoseChanged(SourcePoseEventData) - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourcePoseHandler.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealitySourcePoseHandler_OnSourcePoseChanged_XRTK_EventDatum_Input_SourcePoseEventData_XRTK_Definitions_Devices_TrackingState__ - commentId: M:XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourcePoseHandler.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData{XRTK.Definitions.Devices.TrackingState}) - name.vb: OnSourcePoseChanged(SourcePoseEventData(Of TrackingState)) - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourcePoseHandler.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData) - fullName.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourcePoseHandler.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData(Of XRTK.Definitions.Devices.TrackingState)) - nameWithType: IMixedRealitySourcePoseHandler.OnSourcePoseChanged(SourcePoseEventData) - nameWithType.vb: IMixedRealitySourcePoseHandler.OnSourcePoseChanged(SourcePoseEventData(Of TrackingState)) -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourcePoseHandler.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData{XRTK.Definitions.Utilities.MixedRealityPose}) - name: OnSourcePoseChanged(SourcePoseEventData) - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourcePoseHandler.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealitySourcePoseHandler_OnSourcePoseChanged_XRTK_EventDatum_Input_SourcePoseEventData_XRTK_Definitions_Utilities_MixedRealityPose__ - commentId: M:XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourcePoseHandler.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData{XRTK.Definitions.Utilities.MixedRealityPose}) - name.vb: OnSourcePoseChanged(SourcePoseEventData(Of MixedRealityPose)) - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourcePoseHandler.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData) - fullName.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourcePoseHandler.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData(Of XRTK.Definitions.Utilities.MixedRealityPose)) - nameWithType: IMixedRealitySourcePoseHandler.OnSourcePoseChanged(SourcePoseEventData) - nameWithType.vb: IMixedRealitySourcePoseHandler.OnSourcePoseChanged(SourcePoseEventData(Of MixedRealityPose)) -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourcePoseHandler.OnSourcePoseChanged* - name: OnSourcePoseChanged - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourcePoseHandler.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealitySourcePoseHandler_OnSourcePoseChanged_ - commentId: Overload:XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourcePoseHandler.OnSourcePoseChanged - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourcePoseHandler.OnSourcePoseChanged - nameWithType: IMixedRealitySourcePoseHandler.OnSourcePoseChanged -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourceStateHandler - name: IMixedRealitySourceStateHandler - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourceStateHandler.html - commentId: T:XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourceStateHandler - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourceStateHandler - nameWithType: IMixedRealitySourceStateHandler -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourceStateHandler.OnSourceDetected(XRTK.EventDatum.Input.SourceStateEventData) - name: OnSourceDetected(SourceStateEventData) - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourceStateHandler.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealitySourceStateHandler_OnSourceDetected_XRTK_EventDatum_Input_SourceStateEventData_ - commentId: M:XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourceStateHandler.OnSourceDetected(XRTK.EventDatum.Input.SourceStateEventData) - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourceStateHandler.OnSourceDetected(XRTK.EventDatum.Input.SourceStateEventData) - nameWithType: IMixedRealitySourceStateHandler.OnSourceDetected(SourceStateEventData) -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourceStateHandler.OnSourceDetected* - name: OnSourceDetected - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourceStateHandler.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealitySourceStateHandler_OnSourceDetected_ - commentId: Overload:XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourceStateHandler.OnSourceDetected - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourceStateHandler.OnSourceDetected - nameWithType: IMixedRealitySourceStateHandler.OnSourceDetected -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourceStateHandler.OnSourceLost(XRTK.EventDatum.Input.SourceStateEventData) - name: OnSourceLost(SourceStateEventData) - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourceStateHandler.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealitySourceStateHandler_OnSourceLost_XRTK_EventDatum_Input_SourceStateEventData_ - commentId: M:XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourceStateHandler.OnSourceLost(XRTK.EventDatum.Input.SourceStateEventData) - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourceStateHandler.OnSourceLost(XRTK.EventDatum.Input.SourceStateEventData) - nameWithType: IMixedRealitySourceStateHandler.OnSourceLost(SourceStateEventData) -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourceStateHandler.OnSourceLost* - name: OnSourceLost - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourceStateHandler.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealitySourceStateHandler_OnSourceLost_ - commentId: Overload:XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourceStateHandler.OnSourceLost - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourceStateHandler.OnSourceLost - nameWithType: IMixedRealitySourceStateHandler.OnSourceLost -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySpeechHandler - name: IMixedRealitySpeechHandler - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySpeechHandler.html - commentId: T:XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySpeechHandler - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySpeechHandler - nameWithType: IMixedRealitySpeechHandler -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySpeechHandler.OnSpeechKeywordRecognized(XRTK.EventDatum.Input.SpeechEventData) - name: OnSpeechKeywordRecognized(SpeechEventData) - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySpeechHandler.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealitySpeechHandler_OnSpeechKeywordRecognized_XRTK_EventDatum_Input_SpeechEventData_ - commentId: M:XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySpeechHandler.OnSpeechKeywordRecognized(XRTK.EventDatum.Input.SpeechEventData) - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySpeechHandler.OnSpeechKeywordRecognized(XRTK.EventDatum.Input.SpeechEventData) - nameWithType: IMixedRealitySpeechHandler.OnSpeechKeywordRecognized(SpeechEventData) -- uid: XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySpeechHandler.OnSpeechKeywordRecognized* - name: OnSpeechKeywordRecognized - href: api/XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySpeechHandler.html#XRTK_Interfaces_InputSystem_Handlers_IMixedRealitySpeechHandler_OnSpeechKeywordRecognized_ - commentId: Overload:XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySpeechHandler.OnSpeechKeywordRecognized - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySpeechHandler.OnSpeechKeywordRecognized - nameWithType: IMixedRealitySpeechHandler.OnSpeechKeywordRecognized -- uid: XRTK.Interfaces.InputSystem.ICursorModifier - name: ICursorModifier - href: api/XRTK.Interfaces.InputSystem.ICursorModifier.html - commentId: T:XRTK.Interfaces.InputSystem.ICursorModifier - fullName: XRTK.Interfaces.InputSystem.ICursorModifier - nameWithType: ICursorModifier -- uid: XRTK.Interfaces.InputSystem.ICursorModifier.CursorNormalOffset - name: CursorNormalOffset - href: api/XRTK.Interfaces.InputSystem.ICursorModifier.html#XRTK_Interfaces_InputSystem_ICursorModifier_CursorNormalOffset - commentId: P:XRTK.Interfaces.InputSystem.ICursorModifier.CursorNormalOffset - fullName: XRTK.Interfaces.InputSystem.ICursorModifier.CursorNormalOffset - nameWithType: ICursorModifier.CursorNormalOffset -- uid: XRTK.Interfaces.InputSystem.ICursorModifier.CursorNormalOffset* - name: CursorNormalOffset - href: api/XRTK.Interfaces.InputSystem.ICursorModifier.html#XRTK_Interfaces_InputSystem_ICursorModifier_CursorNormalOffset_ - commentId: Overload:XRTK.Interfaces.InputSystem.ICursorModifier.CursorNormalOffset - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.ICursorModifier.CursorNormalOffset - nameWithType: ICursorModifier.CursorNormalOffset -- uid: XRTK.Interfaces.InputSystem.ICursorModifier.CursorParameters - name: CursorParameters - href: api/XRTK.Interfaces.InputSystem.ICursorModifier.html#XRTK_Interfaces_InputSystem_ICursorModifier_CursorParameters - commentId: P:XRTK.Interfaces.InputSystem.ICursorModifier.CursorParameters - fullName: XRTK.Interfaces.InputSystem.ICursorModifier.CursorParameters - nameWithType: ICursorModifier.CursorParameters -- uid: XRTK.Interfaces.InputSystem.ICursorModifier.CursorParameters* - name: CursorParameters - href: api/XRTK.Interfaces.InputSystem.ICursorModifier.html#XRTK_Interfaces_InputSystem_ICursorModifier_CursorParameters_ - commentId: Overload:XRTK.Interfaces.InputSystem.ICursorModifier.CursorParameters - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.ICursorModifier.CursorParameters - nameWithType: ICursorModifier.CursorParameters -- uid: XRTK.Interfaces.InputSystem.ICursorModifier.CursorPositionOffset - name: CursorPositionOffset - href: api/XRTK.Interfaces.InputSystem.ICursorModifier.html#XRTK_Interfaces_InputSystem_ICursorModifier_CursorPositionOffset - commentId: P:XRTK.Interfaces.InputSystem.ICursorModifier.CursorPositionOffset - fullName: XRTK.Interfaces.InputSystem.ICursorModifier.CursorPositionOffset - nameWithType: ICursorModifier.CursorPositionOffset -- uid: XRTK.Interfaces.InputSystem.ICursorModifier.CursorPositionOffset* - name: CursorPositionOffset - href: api/XRTK.Interfaces.InputSystem.ICursorModifier.html#XRTK_Interfaces_InputSystem_ICursorModifier_CursorPositionOffset_ - commentId: Overload:XRTK.Interfaces.InputSystem.ICursorModifier.CursorPositionOffset - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.ICursorModifier.CursorPositionOffset - nameWithType: ICursorModifier.CursorPositionOffset -- uid: XRTK.Interfaces.InputSystem.ICursorModifier.CursorScaleOffset - name: CursorScaleOffset - href: api/XRTK.Interfaces.InputSystem.ICursorModifier.html#XRTK_Interfaces_InputSystem_ICursorModifier_CursorScaleOffset - commentId: P:XRTK.Interfaces.InputSystem.ICursorModifier.CursorScaleOffset - fullName: XRTK.Interfaces.InputSystem.ICursorModifier.CursorScaleOffset - nameWithType: ICursorModifier.CursorScaleOffset -- uid: XRTK.Interfaces.InputSystem.ICursorModifier.CursorScaleOffset* - name: CursorScaleOffset - href: api/XRTK.Interfaces.InputSystem.ICursorModifier.html#XRTK_Interfaces_InputSystem_ICursorModifier_CursorScaleOffset_ - commentId: Overload:XRTK.Interfaces.InputSystem.ICursorModifier.CursorScaleOffset - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.ICursorModifier.CursorScaleOffset - nameWithType: ICursorModifier.CursorScaleOffset -- uid: XRTK.Interfaces.InputSystem.ICursorModifier.GetCursorVisibility - name: GetCursorVisibility() - href: api/XRTK.Interfaces.InputSystem.ICursorModifier.html#XRTK_Interfaces_InputSystem_ICursorModifier_GetCursorVisibility - commentId: M:XRTK.Interfaces.InputSystem.ICursorModifier.GetCursorVisibility - fullName: XRTK.Interfaces.InputSystem.ICursorModifier.GetCursorVisibility() - nameWithType: ICursorModifier.GetCursorVisibility() -- uid: XRTK.Interfaces.InputSystem.ICursorModifier.GetCursorVisibility* - name: GetCursorVisibility - href: api/XRTK.Interfaces.InputSystem.ICursorModifier.html#XRTK_Interfaces_InputSystem_ICursorModifier_GetCursorVisibility_ - commentId: Overload:XRTK.Interfaces.InputSystem.ICursorModifier.GetCursorVisibility - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.ICursorModifier.GetCursorVisibility - nameWithType: ICursorModifier.GetCursorVisibility -- uid: XRTK.Interfaces.InputSystem.ICursorModifier.GetModifiedPosition(XRTK.Interfaces.InputSystem.IMixedRealityCursor) - name: GetModifiedPosition(IMixedRealityCursor) - href: api/XRTK.Interfaces.InputSystem.ICursorModifier.html#XRTK_Interfaces_InputSystem_ICursorModifier_GetModifiedPosition_XRTK_Interfaces_InputSystem_IMixedRealityCursor_ - commentId: M:XRTK.Interfaces.InputSystem.ICursorModifier.GetModifiedPosition(XRTK.Interfaces.InputSystem.IMixedRealityCursor) - fullName: XRTK.Interfaces.InputSystem.ICursorModifier.GetModifiedPosition(XRTK.Interfaces.InputSystem.IMixedRealityCursor) - nameWithType: ICursorModifier.GetModifiedPosition(IMixedRealityCursor) -- uid: XRTK.Interfaces.InputSystem.ICursorModifier.GetModifiedPosition* - name: GetModifiedPosition - href: api/XRTK.Interfaces.InputSystem.ICursorModifier.html#XRTK_Interfaces_InputSystem_ICursorModifier_GetModifiedPosition_ - commentId: Overload:XRTK.Interfaces.InputSystem.ICursorModifier.GetModifiedPosition - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.ICursorModifier.GetModifiedPosition - nameWithType: ICursorModifier.GetModifiedPosition -- uid: XRTK.Interfaces.InputSystem.ICursorModifier.GetModifiedRotation(XRTK.Interfaces.InputSystem.IMixedRealityCursor) - name: GetModifiedRotation(IMixedRealityCursor) - href: api/XRTK.Interfaces.InputSystem.ICursorModifier.html#XRTK_Interfaces_InputSystem_ICursorModifier_GetModifiedRotation_XRTK_Interfaces_InputSystem_IMixedRealityCursor_ - commentId: M:XRTK.Interfaces.InputSystem.ICursorModifier.GetModifiedRotation(XRTK.Interfaces.InputSystem.IMixedRealityCursor) - fullName: XRTK.Interfaces.InputSystem.ICursorModifier.GetModifiedRotation(XRTK.Interfaces.InputSystem.IMixedRealityCursor) - nameWithType: ICursorModifier.GetModifiedRotation(IMixedRealityCursor) -- uid: XRTK.Interfaces.InputSystem.ICursorModifier.GetModifiedRotation* - name: GetModifiedRotation - href: api/XRTK.Interfaces.InputSystem.ICursorModifier.html#XRTK_Interfaces_InputSystem_ICursorModifier_GetModifiedRotation_ - commentId: Overload:XRTK.Interfaces.InputSystem.ICursorModifier.GetModifiedRotation - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.ICursorModifier.GetModifiedRotation - nameWithType: ICursorModifier.GetModifiedRotation -- uid: XRTK.Interfaces.InputSystem.ICursorModifier.GetModifiedScale(XRTK.Interfaces.InputSystem.IMixedRealityCursor) - name: GetModifiedScale(IMixedRealityCursor) - href: api/XRTK.Interfaces.InputSystem.ICursorModifier.html#XRTK_Interfaces_InputSystem_ICursorModifier_GetModifiedScale_XRTK_Interfaces_InputSystem_IMixedRealityCursor_ - commentId: M:XRTK.Interfaces.InputSystem.ICursorModifier.GetModifiedScale(XRTK.Interfaces.InputSystem.IMixedRealityCursor) - fullName: XRTK.Interfaces.InputSystem.ICursorModifier.GetModifiedScale(XRTK.Interfaces.InputSystem.IMixedRealityCursor) - nameWithType: ICursorModifier.GetModifiedScale(IMixedRealityCursor) -- uid: XRTK.Interfaces.InputSystem.ICursorModifier.GetModifiedScale* - name: GetModifiedScale - href: api/XRTK.Interfaces.InputSystem.ICursorModifier.html#XRTK_Interfaces_InputSystem_ICursorModifier_GetModifiedScale_ - commentId: Overload:XRTK.Interfaces.InputSystem.ICursorModifier.GetModifiedScale - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.ICursorModifier.GetModifiedScale - nameWithType: ICursorModifier.GetModifiedScale -- uid: XRTK.Interfaces.InputSystem.ICursorModifier.GetModifiedTransform(XRTK.Interfaces.InputSystem.IMixedRealityCursor,UnityEngine.Vector3@,UnityEngine.Quaternion@,UnityEngine.Vector3@) - name: GetModifiedTransform(IMixedRealityCursor, out Vector3, out Quaternion, out Vector3) - href: api/XRTK.Interfaces.InputSystem.ICursorModifier.html#XRTK_Interfaces_InputSystem_ICursorModifier_GetModifiedTransform_XRTK_Interfaces_InputSystem_IMixedRealityCursor_UnityEngine_Vector3__UnityEngine_Quaternion__UnityEngine_Vector3__ - commentId: M:XRTK.Interfaces.InputSystem.ICursorModifier.GetModifiedTransform(XRTK.Interfaces.InputSystem.IMixedRealityCursor,UnityEngine.Vector3@,UnityEngine.Quaternion@,UnityEngine.Vector3@) - name.vb: GetModifiedTransform(IMixedRealityCursor, ByRef Vector3, ByRef Quaternion, ByRef Vector3) - fullName: XRTK.Interfaces.InputSystem.ICursorModifier.GetModifiedTransform(XRTK.Interfaces.InputSystem.IMixedRealityCursor, out UnityEngine.Vector3, out UnityEngine.Quaternion, out UnityEngine.Vector3) - fullName.vb: XRTK.Interfaces.InputSystem.ICursorModifier.GetModifiedTransform(XRTK.Interfaces.InputSystem.IMixedRealityCursor, ByRef UnityEngine.Vector3, ByRef UnityEngine.Quaternion, ByRef UnityEngine.Vector3) - nameWithType: ICursorModifier.GetModifiedTransform(IMixedRealityCursor, out Vector3, out Quaternion, out Vector3) - nameWithType.vb: ICursorModifier.GetModifiedTransform(IMixedRealityCursor, ByRef Vector3, ByRef Quaternion, ByRef Vector3) -- uid: XRTK.Interfaces.InputSystem.ICursorModifier.GetModifiedTransform* - name: GetModifiedTransform - href: api/XRTK.Interfaces.InputSystem.ICursorModifier.html#XRTK_Interfaces_InputSystem_ICursorModifier_GetModifiedTransform_ - commentId: Overload:XRTK.Interfaces.InputSystem.ICursorModifier.GetModifiedTransform - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.ICursorModifier.GetModifiedTransform - nameWithType: ICursorModifier.GetModifiedTransform -- uid: XRTK.Interfaces.InputSystem.ICursorModifier.HideCursorOnFocus - name: HideCursorOnFocus - href: api/XRTK.Interfaces.InputSystem.ICursorModifier.html#XRTK_Interfaces_InputSystem_ICursorModifier_HideCursorOnFocus - commentId: P:XRTK.Interfaces.InputSystem.ICursorModifier.HideCursorOnFocus - fullName: XRTK.Interfaces.InputSystem.ICursorModifier.HideCursorOnFocus - nameWithType: ICursorModifier.HideCursorOnFocus -- uid: XRTK.Interfaces.InputSystem.ICursorModifier.HideCursorOnFocus* - name: HideCursorOnFocus - href: api/XRTK.Interfaces.InputSystem.ICursorModifier.html#XRTK_Interfaces_InputSystem_ICursorModifier_HideCursorOnFocus_ - commentId: Overload:XRTK.Interfaces.InputSystem.ICursorModifier.HideCursorOnFocus - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.ICursorModifier.HideCursorOnFocus - nameWithType: ICursorModifier.HideCursorOnFocus -- uid: XRTK.Interfaces.InputSystem.ICursorModifier.HostTransform - name: HostTransform - href: api/XRTK.Interfaces.InputSystem.ICursorModifier.html#XRTK_Interfaces_InputSystem_ICursorModifier_HostTransform - commentId: P:XRTK.Interfaces.InputSystem.ICursorModifier.HostTransform - fullName: XRTK.Interfaces.InputSystem.ICursorModifier.HostTransform - nameWithType: ICursorModifier.HostTransform -- uid: XRTK.Interfaces.InputSystem.ICursorModifier.HostTransform* - name: HostTransform - href: api/XRTK.Interfaces.InputSystem.ICursorModifier.html#XRTK_Interfaces_InputSystem_ICursorModifier_HostTransform_ - commentId: Overload:XRTK.Interfaces.InputSystem.ICursorModifier.HostTransform - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.ICursorModifier.HostTransform - nameWithType: ICursorModifier.HostTransform -- uid: XRTK.Interfaces.InputSystem.ICursorModifier.SnapCursorPosition - name: SnapCursorPosition - href: api/XRTK.Interfaces.InputSystem.ICursorModifier.html#XRTK_Interfaces_InputSystem_ICursorModifier_SnapCursorPosition - commentId: P:XRTK.Interfaces.InputSystem.ICursorModifier.SnapCursorPosition - fullName: XRTK.Interfaces.InputSystem.ICursorModifier.SnapCursorPosition - nameWithType: ICursorModifier.SnapCursorPosition -- uid: XRTK.Interfaces.InputSystem.ICursorModifier.SnapCursorPosition* - name: SnapCursorPosition - href: api/XRTK.Interfaces.InputSystem.ICursorModifier.html#XRTK_Interfaces_InputSystem_ICursorModifier_SnapCursorPosition_ - commentId: Overload:XRTK.Interfaces.InputSystem.ICursorModifier.SnapCursorPosition - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.ICursorModifier.SnapCursorPosition - nameWithType: ICursorModifier.SnapCursorPosition -- uid: XRTK.Interfaces.InputSystem.ICursorModifier.UseGazeBasedNormal - name: UseGazeBasedNormal - href: api/XRTK.Interfaces.InputSystem.ICursorModifier.html#XRTK_Interfaces_InputSystem_ICursorModifier_UseGazeBasedNormal - commentId: P:XRTK.Interfaces.InputSystem.ICursorModifier.UseGazeBasedNormal - fullName: XRTK.Interfaces.InputSystem.ICursorModifier.UseGazeBasedNormal - nameWithType: ICursorModifier.UseGazeBasedNormal -- uid: XRTK.Interfaces.InputSystem.ICursorModifier.UseGazeBasedNormal* - name: UseGazeBasedNormal - href: api/XRTK.Interfaces.InputSystem.ICursorModifier.html#XRTK_Interfaces_InputSystem_ICursorModifier_UseGazeBasedNormal_ - commentId: Overload:XRTK.Interfaces.InputSystem.ICursorModifier.UseGazeBasedNormal - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.ICursorModifier.UseGazeBasedNormal - nameWithType: ICursorModifier.UseGazeBasedNormal -- uid: XRTK.Interfaces.InputSystem.IMixedRealityCursor - name: IMixedRealityCursor - href: api/XRTK.Interfaces.InputSystem.IMixedRealityCursor.html - commentId: T:XRTK.Interfaces.InputSystem.IMixedRealityCursor - fullName: XRTK.Interfaces.InputSystem.IMixedRealityCursor - nameWithType: IMixedRealityCursor -- uid: XRTK.Interfaces.InputSystem.IMixedRealityCursor.GameObjectReference - name: GameObjectReference - href: api/XRTK.Interfaces.InputSystem.IMixedRealityCursor.html#XRTK_Interfaces_InputSystem_IMixedRealityCursor_GameObjectReference - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityCursor.GameObjectReference - fullName: XRTK.Interfaces.InputSystem.IMixedRealityCursor.GameObjectReference - nameWithType: IMixedRealityCursor.GameObjectReference -- uid: XRTK.Interfaces.InputSystem.IMixedRealityCursor.GameObjectReference* - name: GameObjectReference - href: api/XRTK.Interfaces.InputSystem.IMixedRealityCursor.html#XRTK_Interfaces_InputSystem_IMixedRealityCursor_GameObjectReference_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityCursor.GameObjectReference - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityCursor.GameObjectReference - nameWithType: IMixedRealityCursor.GameObjectReference -- uid: XRTK.Interfaces.InputSystem.IMixedRealityCursor.IsVisible - name: IsVisible - href: api/XRTK.Interfaces.InputSystem.IMixedRealityCursor.html#XRTK_Interfaces_InputSystem_IMixedRealityCursor_IsVisible - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityCursor.IsVisible - fullName: XRTK.Interfaces.InputSystem.IMixedRealityCursor.IsVisible - nameWithType: IMixedRealityCursor.IsVisible -- uid: XRTK.Interfaces.InputSystem.IMixedRealityCursor.IsVisible* - name: IsVisible - href: api/XRTK.Interfaces.InputSystem.IMixedRealityCursor.html#XRTK_Interfaces_InputSystem_IMixedRealityCursor_IsVisible_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityCursor.IsVisible - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityCursor.IsVisible - nameWithType: IMixedRealityCursor.IsVisible -- uid: XRTK.Interfaces.InputSystem.IMixedRealityCursor.LocalScale - name: LocalScale - href: api/XRTK.Interfaces.InputSystem.IMixedRealityCursor.html#XRTK_Interfaces_InputSystem_IMixedRealityCursor_LocalScale - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityCursor.LocalScale - fullName: XRTK.Interfaces.InputSystem.IMixedRealityCursor.LocalScale - nameWithType: IMixedRealityCursor.LocalScale -- uid: XRTK.Interfaces.InputSystem.IMixedRealityCursor.LocalScale* - name: LocalScale - href: api/XRTK.Interfaces.InputSystem.IMixedRealityCursor.html#XRTK_Interfaces_InputSystem_IMixedRealityCursor_LocalScale_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityCursor.LocalScale - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityCursor.LocalScale - nameWithType: IMixedRealityCursor.LocalScale -- uid: XRTK.Interfaces.InputSystem.IMixedRealityCursor.Pointer - name: Pointer - href: api/XRTK.Interfaces.InputSystem.IMixedRealityCursor.html#XRTK_Interfaces_InputSystem_IMixedRealityCursor_Pointer - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityCursor.Pointer - fullName: XRTK.Interfaces.InputSystem.IMixedRealityCursor.Pointer - nameWithType: IMixedRealityCursor.Pointer -- uid: XRTK.Interfaces.InputSystem.IMixedRealityCursor.Pointer* - name: Pointer - href: api/XRTK.Interfaces.InputSystem.IMixedRealityCursor.html#XRTK_Interfaces_InputSystem_IMixedRealityCursor_Pointer_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityCursor.Pointer - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityCursor.Pointer - nameWithType: IMixedRealityCursor.Pointer -- uid: XRTK.Interfaces.InputSystem.IMixedRealityCursor.Position - name: Position - href: api/XRTK.Interfaces.InputSystem.IMixedRealityCursor.html#XRTK_Interfaces_InputSystem_IMixedRealityCursor_Position - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityCursor.Position - fullName: XRTK.Interfaces.InputSystem.IMixedRealityCursor.Position - nameWithType: IMixedRealityCursor.Position -- uid: XRTK.Interfaces.InputSystem.IMixedRealityCursor.Position* - name: Position - href: api/XRTK.Interfaces.InputSystem.IMixedRealityCursor.html#XRTK_Interfaces_InputSystem_IMixedRealityCursor_Position_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityCursor.Position - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityCursor.Position - nameWithType: IMixedRealityCursor.Position -- uid: XRTK.Interfaces.InputSystem.IMixedRealityCursor.Rotation - name: Rotation - href: api/XRTK.Interfaces.InputSystem.IMixedRealityCursor.html#XRTK_Interfaces_InputSystem_IMixedRealityCursor_Rotation - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityCursor.Rotation - fullName: XRTK.Interfaces.InputSystem.IMixedRealityCursor.Rotation - nameWithType: IMixedRealityCursor.Rotation -- uid: XRTK.Interfaces.InputSystem.IMixedRealityCursor.Rotation* - name: Rotation - href: api/XRTK.Interfaces.InputSystem.IMixedRealityCursor.html#XRTK_Interfaces_InputSystem_IMixedRealityCursor_Rotation_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityCursor.Rotation - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityCursor.Rotation - nameWithType: IMixedRealityCursor.Rotation -- uid: XRTK.Interfaces.InputSystem.IMixedRealityCursor.SetVisibility(System.Boolean) - name: SetVisibility(Boolean) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityCursor.html#XRTK_Interfaces_InputSystem_IMixedRealityCursor_SetVisibility_System_Boolean_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityCursor.SetVisibility(System.Boolean) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityCursor.SetVisibility(System.Boolean) - nameWithType: IMixedRealityCursor.SetVisibility(Boolean) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityCursor.SetVisibility* - name: SetVisibility - href: api/XRTK.Interfaces.InputSystem.IMixedRealityCursor.html#XRTK_Interfaces_InputSystem_IMixedRealityCursor_SetVisibility_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityCursor.SetVisibility - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityCursor.SetVisibility - nameWithType: IMixedRealityCursor.SetVisibility -- uid: XRTK.Interfaces.InputSystem.IMixedRealityCursor.SetVisibilityOnSourceDetected - name: SetVisibilityOnSourceDetected - href: api/XRTK.Interfaces.InputSystem.IMixedRealityCursor.html#XRTK_Interfaces_InputSystem_IMixedRealityCursor_SetVisibilityOnSourceDetected - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityCursor.SetVisibilityOnSourceDetected - fullName: XRTK.Interfaces.InputSystem.IMixedRealityCursor.SetVisibilityOnSourceDetected - nameWithType: IMixedRealityCursor.SetVisibilityOnSourceDetected -- uid: XRTK.Interfaces.InputSystem.IMixedRealityCursor.SetVisibilityOnSourceDetected* - name: SetVisibilityOnSourceDetected - href: api/XRTK.Interfaces.InputSystem.IMixedRealityCursor.html#XRTK_Interfaces_InputSystem_IMixedRealityCursor_SetVisibilityOnSourceDetected_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityCursor.SetVisibilityOnSourceDetected - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityCursor.SetVisibilityOnSourceDetected - nameWithType: IMixedRealityCursor.SetVisibilityOnSourceDetected -- uid: XRTK.Interfaces.InputSystem.IMixedRealityCursor.SurfaceCursorDistance - name: SurfaceCursorDistance - href: api/XRTK.Interfaces.InputSystem.IMixedRealityCursor.html#XRTK_Interfaces_InputSystem_IMixedRealityCursor_SurfaceCursorDistance - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityCursor.SurfaceCursorDistance - fullName: XRTK.Interfaces.InputSystem.IMixedRealityCursor.SurfaceCursorDistance - nameWithType: IMixedRealityCursor.SurfaceCursorDistance -- uid: XRTK.Interfaces.InputSystem.IMixedRealityCursor.SurfaceCursorDistance* - name: SurfaceCursorDistance - href: api/XRTK.Interfaces.InputSystem.IMixedRealityCursor.html#XRTK_Interfaces_InputSystem_IMixedRealityCursor_SurfaceCursorDistance_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityCursor.SurfaceCursorDistance - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityCursor.SurfaceCursorDistance - nameWithType: IMixedRealityCursor.SurfaceCursorDistance -- uid: XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider - name: IMixedRealityFocusProvider - href: api/XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.html - commentId: T:XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider - fullName: XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider - nameWithType: IMixedRealityFocusProvider -- uid: XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.GenerateNewPointerId - name: GenerateNewPointerId() - href: api/XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.html#XRTK_Interfaces_InputSystem_IMixedRealityFocusProvider_GenerateNewPointerId - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.GenerateNewPointerId - fullName: XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.GenerateNewPointerId() - nameWithType: IMixedRealityFocusProvider.GenerateNewPointerId() -- uid: XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.GenerateNewPointerId* - name: GenerateNewPointerId - href: api/XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.html#XRTK_Interfaces_InputSystem_IMixedRealityFocusProvider_GenerateNewPointerId_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.GenerateNewPointerId - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.GenerateNewPointerId - nameWithType: IMixedRealityFocusProvider.GenerateNewPointerId -- uid: XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.GetFocusedObject(XRTK.Interfaces.InputSystem.IMixedRealityPointer) - name: GetFocusedObject(IMixedRealityPointer) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.html#XRTK_Interfaces_InputSystem_IMixedRealityFocusProvider_GetFocusedObject_XRTK_Interfaces_InputSystem_IMixedRealityPointer_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.GetFocusedObject(XRTK.Interfaces.InputSystem.IMixedRealityPointer) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.GetFocusedObject(XRTK.Interfaces.InputSystem.IMixedRealityPointer) - nameWithType: IMixedRealityFocusProvider.GetFocusedObject(IMixedRealityPointer) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.GetFocusedObject* - name: GetFocusedObject - href: api/XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.html#XRTK_Interfaces_InputSystem_IMixedRealityFocusProvider_GetFocusedObject_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.GetFocusedObject - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.GetFocusedObject - nameWithType: IMixedRealityFocusProvider.GetFocusedObject -- uid: XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.GlobalPointerRaycastLayerMasks - name: GlobalPointerRaycastLayerMasks - href: api/XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.html#XRTK_Interfaces_InputSystem_IMixedRealityFocusProvider_GlobalPointerRaycastLayerMasks - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.GlobalPointerRaycastLayerMasks - fullName: XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.GlobalPointerRaycastLayerMasks - nameWithType: IMixedRealityFocusProvider.GlobalPointerRaycastLayerMasks -- uid: XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.GlobalPointerRaycastLayerMasks* - name: GlobalPointerRaycastLayerMasks - href: api/XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.html#XRTK_Interfaces_InputSystem_IMixedRealityFocusProvider_GlobalPointerRaycastLayerMasks_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.GlobalPointerRaycastLayerMasks - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.GlobalPointerRaycastLayerMasks - nameWithType: IMixedRealityFocusProvider.GlobalPointerRaycastLayerMasks -- uid: XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.GlobalPointingExtent - name: GlobalPointingExtent - href: api/XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.html#XRTK_Interfaces_InputSystem_IMixedRealityFocusProvider_GlobalPointingExtent - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.GlobalPointingExtent - fullName: XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.GlobalPointingExtent - nameWithType: IMixedRealityFocusProvider.GlobalPointingExtent -- uid: XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.GlobalPointingExtent* - name: GlobalPointingExtent - href: api/XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.html#XRTK_Interfaces_InputSystem_IMixedRealityFocusProvider_GlobalPointingExtent_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.GlobalPointingExtent - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.GlobalPointingExtent - nameWithType: IMixedRealityFocusProvider.GlobalPointingExtent -- uid: XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.IsPointerRegistered(XRTK.Interfaces.InputSystem.IMixedRealityPointer) - name: IsPointerRegistered(IMixedRealityPointer) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.html#XRTK_Interfaces_InputSystem_IMixedRealityFocusProvider_IsPointerRegistered_XRTK_Interfaces_InputSystem_IMixedRealityPointer_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.IsPointerRegistered(XRTK.Interfaces.InputSystem.IMixedRealityPointer) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.IsPointerRegistered(XRTK.Interfaces.InputSystem.IMixedRealityPointer) - nameWithType: IMixedRealityFocusProvider.IsPointerRegistered(IMixedRealityPointer) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.IsPointerRegistered* - name: IsPointerRegistered - href: api/XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.html#XRTK_Interfaces_InputSystem_IMixedRealityFocusProvider_IsPointerRegistered_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.IsPointerRegistered - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.IsPointerRegistered - nameWithType: IMixedRealityFocusProvider.IsPointerRegistered -- uid: XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.RegisterPointer(XRTK.Interfaces.InputSystem.IMixedRealityPointer) - name: RegisterPointer(IMixedRealityPointer) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.html#XRTK_Interfaces_InputSystem_IMixedRealityFocusProvider_RegisterPointer_XRTK_Interfaces_InputSystem_IMixedRealityPointer_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.RegisterPointer(XRTK.Interfaces.InputSystem.IMixedRealityPointer) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.RegisterPointer(XRTK.Interfaces.InputSystem.IMixedRealityPointer) - nameWithType: IMixedRealityFocusProvider.RegisterPointer(IMixedRealityPointer) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.RegisterPointer* - name: RegisterPointer - href: api/XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.html#XRTK_Interfaces_InputSystem_IMixedRealityFocusProvider_RegisterPointer_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.RegisterPointer - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.RegisterPointer - nameWithType: IMixedRealityFocusProvider.RegisterPointer -- uid: XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.TryGetFocusDetails(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Interfaces.InputSystem.IPointerResult@) - name: TryGetFocusDetails(IMixedRealityPointer, out IPointerResult) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.html#XRTK_Interfaces_InputSystem_IMixedRealityFocusProvider_TryGetFocusDetails_XRTK_Interfaces_InputSystem_IMixedRealityPointer_XRTK_Interfaces_InputSystem_IPointerResult__ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.TryGetFocusDetails(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Interfaces.InputSystem.IPointerResult@) - name.vb: TryGetFocusDetails(IMixedRealityPointer, ByRef IPointerResult) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.TryGetFocusDetails(XRTK.Interfaces.InputSystem.IMixedRealityPointer, out XRTK.Interfaces.InputSystem.IPointerResult) - fullName.vb: XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.TryGetFocusDetails(XRTK.Interfaces.InputSystem.IMixedRealityPointer, ByRef XRTK.Interfaces.InputSystem.IPointerResult) - nameWithType: IMixedRealityFocusProvider.TryGetFocusDetails(IMixedRealityPointer, out IPointerResult) - nameWithType.vb: IMixedRealityFocusProvider.TryGetFocusDetails(IMixedRealityPointer, ByRef IPointerResult) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.TryGetFocusDetails* - name: TryGetFocusDetails - href: api/XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.html#XRTK_Interfaces_InputSystem_IMixedRealityFocusProvider_TryGetFocusDetails_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.TryGetFocusDetails - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.TryGetFocusDetails - nameWithType: IMixedRealityFocusProvider.TryGetFocusDetails -- uid: XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.TryGetSpecificPointerGraphicEventData(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.EventDatum.Input.GraphicInputEventData@) - name: TryGetSpecificPointerGraphicEventData(IMixedRealityPointer, out GraphicInputEventData) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.html#XRTK_Interfaces_InputSystem_IMixedRealityFocusProvider_TryGetSpecificPointerGraphicEventData_XRTK_Interfaces_InputSystem_IMixedRealityPointer_XRTK_EventDatum_Input_GraphicInputEventData__ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.TryGetSpecificPointerGraphicEventData(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.EventDatum.Input.GraphicInputEventData@) - name.vb: TryGetSpecificPointerGraphicEventData(IMixedRealityPointer, ByRef GraphicInputEventData) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.TryGetSpecificPointerGraphicEventData(XRTK.Interfaces.InputSystem.IMixedRealityPointer, out XRTK.EventDatum.Input.GraphicInputEventData) - fullName.vb: XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.TryGetSpecificPointerGraphicEventData(XRTK.Interfaces.InputSystem.IMixedRealityPointer, ByRef XRTK.EventDatum.Input.GraphicInputEventData) - nameWithType: IMixedRealityFocusProvider.TryGetSpecificPointerGraphicEventData(IMixedRealityPointer, out GraphicInputEventData) - nameWithType.vb: IMixedRealityFocusProvider.TryGetSpecificPointerGraphicEventData(IMixedRealityPointer, ByRef GraphicInputEventData) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.TryGetSpecificPointerGraphicEventData* - name: TryGetSpecificPointerGraphicEventData - href: api/XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.html#XRTK_Interfaces_InputSystem_IMixedRealityFocusProvider_TryGetSpecificPointerGraphicEventData_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.TryGetSpecificPointerGraphicEventData - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.TryGetSpecificPointerGraphicEventData - nameWithType: IMixedRealityFocusProvider.TryGetSpecificPointerGraphicEventData -- uid: XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.UIRaycastCamera - name: UIRaycastCamera - href: api/XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.html#XRTK_Interfaces_InputSystem_IMixedRealityFocusProvider_UIRaycastCamera - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.UIRaycastCamera - fullName: XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.UIRaycastCamera - nameWithType: IMixedRealityFocusProvider.UIRaycastCamera -- uid: XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.UIRaycastCamera* - name: UIRaycastCamera - href: api/XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.html#XRTK_Interfaces_InputSystem_IMixedRealityFocusProvider_UIRaycastCamera_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.UIRaycastCamera - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.UIRaycastCamera - nameWithType: IMixedRealityFocusProvider.UIRaycastCamera -- uid: XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.UnregisterPointer(XRTK.Interfaces.InputSystem.IMixedRealityPointer) - name: UnregisterPointer(IMixedRealityPointer) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.html#XRTK_Interfaces_InputSystem_IMixedRealityFocusProvider_UnregisterPointer_XRTK_Interfaces_InputSystem_IMixedRealityPointer_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.UnregisterPointer(XRTK.Interfaces.InputSystem.IMixedRealityPointer) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.UnregisterPointer(XRTK.Interfaces.InputSystem.IMixedRealityPointer) - nameWithType: IMixedRealityFocusProvider.UnregisterPointer(IMixedRealityPointer) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.UnregisterPointer* - name: UnregisterPointer - href: api/XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.html#XRTK_Interfaces_InputSystem_IMixedRealityFocusProvider_UnregisterPointer_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.UnregisterPointer - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.UnregisterPointer - nameWithType: IMixedRealityFocusProvider.UnregisterPointer -- uid: XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider - name: IMixedRealityGazeProvider - href: api/XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.html - commentId: T:XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider - fullName: XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider - nameWithType: IMixedRealityGazeProvider -- uid: XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.Enabled - name: Enabled - href: api/XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.html#XRTK_Interfaces_InputSystem_IMixedRealityGazeProvider_Enabled - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.Enabled - fullName: XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.Enabled - nameWithType: IMixedRealityGazeProvider.Enabled -- uid: XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.Enabled* - name: Enabled - href: api/XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.html#XRTK_Interfaces_InputSystem_IMixedRealityGazeProvider_Enabled_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.Enabled - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.Enabled - nameWithType: IMixedRealityGazeProvider.Enabled -- uid: XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.GameObject - name: GameObject - href: api/XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.html#XRTK_Interfaces_InputSystem_IMixedRealityGazeProvider_GameObject - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.GameObject - fullName: XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.GameObject - nameWithType: IMixedRealityGazeProvider.GameObject -- uid: XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.GameObject* - name: GameObject - href: api/XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.html#XRTK_Interfaces_InputSystem_IMixedRealityGazeProvider_GameObject_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.GameObject - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.GameObject - nameWithType: IMixedRealityGazeProvider.GameObject -- uid: XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.GazeCursor - name: GazeCursor - href: api/XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.html#XRTK_Interfaces_InputSystem_IMixedRealityGazeProvider_GazeCursor - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.GazeCursor - fullName: XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.GazeCursor - nameWithType: IMixedRealityGazeProvider.GazeCursor -- uid: XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.GazeCursor* - name: GazeCursor - href: api/XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.html#XRTK_Interfaces_InputSystem_IMixedRealityGazeProvider_GazeCursor_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.GazeCursor - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.GazeCursor - nameWithType: IMixedRealityGazeProvider.GazeCursor -- uid: XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.GazeDirection - name: GazeDirection - href: api/XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.html#XRTK_Interfaces_InputSystem_IMixedRealityGazeProvider_GazeDirection - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.GazeDirection - fullName: XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.GazeDirection - nameWithType: IMixedRealityGazeProvider.GazeDirection -- uid: XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.GazeDirection* - name: GazeDirection - href: api/XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.html#XRTK_Interfaces_InputSystem_IMixedRealityGazeProvider_GazeDirection_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.GazeDirection - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.GazeDirection - nameWithType: IMixedRealityGazeProvider.GazeDirection -- uid: XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.GazeInputSource - name: GazeInputSource - href: api/XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.html#XRTK_Interfaces_InputSystem_IMixedRealityGazeProvider_GazeInputSource - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.GazeInputSource - fullName: XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.GazeInputSource - nameWithType: IMixedRealityGazeProvider.GazeInputSource -- uid: XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.GazeInputSource* - name: GazeInputSource - href: api/XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.html#XRTK_Interfaces_InputSystem_IMixedRealityGazeProvider_GazeInputSource_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.GazeInputSource - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.GazeInputSource - nameWithType: IMixedRealityGazeProvider.GazeInputSource -- uid: XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.GazeOrigin - name: GazeOrigin - href: api/XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.html#XRTK_Interfaces_InputSystem_IMixedRealityGazeProvider_GazeOrigin - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.GazeOrigin - fullName: XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.GazeOrigin - nameWithType: IMixedRealityGazeProvider.GazeOrigin -- uid: XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.GazeOrigin* - name: GazeOrigin - href: api/XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.html#XRTK_Interfaces_InputSystem_IMixedRealityGazeProvider_GazeOrigin_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.GazeOrigin - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.GazeOrigin - nameWithType: IMixedRealityGazeProvider.GazeOrigin -- uid: XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.GazePointer - name: GazePointer - href: api/XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.html#XRTK_Interfaces_InputSystem_IMixedRealityGazeProvider_GazePointer - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.GazePointer - fullName: XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.GazePointer - nameWithType: IMixedRealityGazeProvider.GazePointer -- uid: XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.GazePointer* - name: GazePointer - href: api/XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.html#XRTK_Interfaces_InputSystem_IMixedRealityGazeProvider_GazePointer_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.GazePointer - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.GazePointer - nameWithType: IMixedRealityGazeProvider.GazePointer -- uid: XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.GazeTarget - name: GazeTarget - href: api/XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.html#XRTK_Interfaces_InputSystem_IMixedRealityGazeProvider_GazeTarget - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.GazeTarget - fullName: XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.GazeTarget - nameWithType: IMixedRealityGazeProvider.GazeTarget -- uid: XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.GazeTarget* - name: GazeTarget - href: api/XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.html#XRTK_Interfaces_InputSystem_IMixedRealityGazeProvider_GazeTarget_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.GazeTarget - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.GazeTarget - nameWithType: IMixedRealityGazeProvider.GazeTarget -- uid: XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.HeadMovementDirection - name: HeadMovementDirection - href: api/XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.html#XRTK_Interfaces_InputSystem_IMixedRealityGazeProvider_HeadMovementDirection - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.HeadMovementDirection - fullName: XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.HeadMovementDirection - nameWithType: IMixedRealityGazeProvider.HeadMovementDirection -- uid: XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.HeadMovementDirection* - name: HeadMovementDirection - href: api/XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.html#XRTK_Interfaces_InputSystem_IMixedRealityGazeProvider_HeadMovementDirection_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.HeadMovementDirection - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.HeadMovementDirection - nameWithType: IMixedRealityGazeProvider.HeadMovementDirection -- uid: XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.HeadVelocity - name: HeadVelocity - href: api/XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.html#XRTK_Interfaces_InputSystem_IMixedRealityGazeProvider_HeadVelocity - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.HeadVelocity - fullName: XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.HeadVelocity - nameWithType: IMixedRealityGazeProvider.HeadVelocity -- uid: XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.HeadVelocity* - name: HeadVelocity - href: api/XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.html#XRTK_Interfaces_InputSystem_IMixedRealityGazeProvider_HeadVelocity_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.HeadVelocity - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.HeadVelocity - nameWithType: IMixedRealityGazeProvider.HeadVelocity -- uid: XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.HitInfo - name: HitInfo - href: api/XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.html#XRTK_Interfaces_InputSystem_IMixedRealityGazeProvider_HitInfo - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.HitInfo - fullName: XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.HitInfo - nameWithType: IMixedRealityGazeProvider.HitInfo -- uid: XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.HitInfo* - name: HitInfo - href: api/XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.html#XRTK_Interfaces_InputSystem_IMixedRealityGazeProvider_HitInfo_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.HitInfo - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.HitInfo - nameWithType: IMixedRealityGazeProvider.HitInfo -- uid: XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.HitNormal - name: HitNormal - href: api/XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.html#XRTK_Interfaces_InputSystem_IMixedRealityGazeProvider_HitNormal - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.HitNormal - fullName: XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.HitNormal - nameWithType: IMixedRealityGazeProvider.HitNormal -- uid: XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.HitNormal* - name: HitNormal - href: api/XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.html#XRTK_Interfaces_InputSystem_IMixedRealityGazeProvider_HitNormal_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.HitNormal - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.HitNormal - nameWithType: IMixedRealityGazeProvider.HitNormal -- uid: XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.HitPosition - name: HitPosition - href: api/XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.html#XRTK_Interfaces_InputSystem_IMixedRealityGazeProvider_HitPosition - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.HitPosition - fullName: XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.HitPosition - nameWithType: IMixedRealityGazeProvider.HitPosition -- uid: XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.HitPosition* - name: HitPosition - href: api/XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.html#XRTK_Interfaces_InputSystem_IMixedRealityGazeProvider_HitPosition_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.HitPosition - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityGazeProvider.HitPosition - nameWithType: IMixedRealityGazeProvider.HitPosition -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSource - name: IMixedRealityInputSource - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSource.html - commentId: T:XRTK.Interfaces.InputSystem.IMixedRealityInputSource - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSource - nameWithType: IMixedRealityInputSource -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSource.Pointers - name: Pointers - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSource.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSource_Pointers - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityInputSource.Pointers - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSource.Pointers - nameWithType: IMixedRealityInputSource.Pointers -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSource.Pointers* - name: Pointers - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSource.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSource_Pointers_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityInputSource.Pointers - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSource.Pointers - nameWithType: IMixedRealityInputSource.Pointers -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem - name: IMixedRealityInputSystem - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html - commentId: T:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem - nameWithType: IMixedRealityInputSystem -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.ClearFallbackInputStack - name: ClearFallbackInputStack() - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_ClearFallbackInputStack - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.ClearFallbackInputStack - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.ClearFallbackInputStack() - nameWithType: IMixedRealityInputSystem.ClearFallbackInputStack() -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.ClearFallbackInputStack* - name: ClearFallbackInputStack - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_ClearFallbackInputStack_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.ClearFallbackInputStack - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.ClearFallbackInputStack - nameWithType: IMixedRealityInputSystem.ClearFallbackInputStack -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.ClearInputDisableStack - name: ClearInputDisableStack() - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_ClearInputDisableStack - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.ClearInputDisableStack - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.ClearInputDisableStack() - nameWithType: IMixedRealityInputSystem.ClearInputDisableStack() -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.ClearInputDisableStack* - name: ClearInputDisableStack - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_ClearInputDisableStack_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.ClearInputDisableStack - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.ClearInputDisableStack - nameWithType: IMixedRealityInputSystem.ClearInputDisableStack -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.ClearModalInputStack - name: ClearModalInputStack() - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_ClearModalInputStack - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.ClearModalInputStack - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.ClearModalInputStack() - nameWithType: IMixedRealityInputSystem.ClearModalInputStack() -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.ClearModalInputStack* - name: ClearModalInputStack - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_ClearModalInputStack_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.ClearModalInputStack - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.ClearModalInputStack - nameWithType: IMixedRealityInputSystem.ClearModalInputStack -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.DetectedControllers - name: DetectedControllers - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_DetectedControllers - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.DetectedControllers - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.DetectedControllers - nameWithType: IMixedRealityInputSystem.DetectedControllers -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.DetectedControllers* - name: DetectedControllers - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_DetectedControllers_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.DetectedControllers - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.DetectedControllers - nameWithType: IMixedRealityInputSystem.DetectedControllers -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.DetectedInputSources - name: DetectedInputSources - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_DetectedInputSources - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.DetectedInputSources - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.DetectedInputSources - nameWithType: IMixedRealityInputSystem.DetectedInputSources -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.DetectedInputSources* - name: DetectedInputSources - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_DetectedInputSources_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.DetectedInputSources - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.DetectedInputSources - nameWithType: IMixedRealityInputSystem.DetectedInputSources -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.FocusProvider - name: FocusProvider - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_FocusProvider - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.FocusProvider - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.FocusProvider - nameWithType: IMixedRealityInputSystem.FocusProvider -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.FocusProvider* - name: FocusProvider - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_FocusProvider_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.FocusProvider - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.FocusProvider - nameWithType: IMixedRealityInputSystem.FocusProvider -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.GazeProvider - name: GazeProvider - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_GazeProvider - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.GazeProvider - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.GazeProvider - nameWithType: IMixedRealityInputSystem.GazeProvider -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.GazeProvider* - name: GazeProvider - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_GazeProvider_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.GazeProvider - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.GazeProvider - nameWithType: IMixedRealityInputSystem.GazeProvider -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.GenerateNewSourceId - name: GenerateNewSourceId() - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_GenerateNewSourceId - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.GenerateNewSourceId - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.GenerateNewSourceId() - nameWithType: IMixedRealityInputSystem.GenerateNewSourceId() -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.GenerateNewSourceId* - name: GenerateNewSourceId - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_GenerateNewSourceId_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.GenerateNewSourceId - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.GenerateNewSourceId - nameWithType: IMixedRealityInputSystem.GenerateNewSourceId -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.InputDisabled - name: InputDisabled - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_InputDisabled - commentId: E:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.InputDisabled - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.InputDisabled - nameWithType: IMixedRealityInputSystem.InputDisabled -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.InputEnabled - name: InputEnabled - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_InputEnabled - commentId: E:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.InputEnabled - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.InputEnabled - nameWithType: IMixedRealityInputSystem.InputEnabled -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.IsInputEnabled - name: IsInputEnabled - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_IsInputEnabled - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.IsInputEnabled - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.IsInputEnabled - nameWithType: IMixedRealityInputSystem.IsInputEnabled -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.IsInputEnabled* - name: IsInputEnabled - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_IsInputEnabled_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.IsInputEnabled - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.IsInputEnabled - nameWithType: IMixedRealityInputSystem.IsInputEnabled -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.OnInputEvent - name: OnInputEvent - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_OnInputEvent - commentId: E:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.OnInputEvent - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.OnInputEvent - nameWithType: IMixedRealityInputSystem.OnInputEvent -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.PopFallbackInputHandler - name: PopFallbackInputHandler() - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_PopFallbackInputHandler - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.PopFallbackInputHandler - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.PopFallbackInputHandler() - nameWithType: IMixedRealityInputSystem.PopFallbackInputHandler() -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.PopFallbackInputHandler* - name: PopFallbackInputHandler - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_PopFallbackInputHandler_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.PopFallbackInputHandler - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.PopFallbackInputHandler - nameWithType: IMixedRealityInputSystem.PopFallbackInputHandler -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.PopInputDisable - name: PopInputDisable() - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_PopInputDisable - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.PopInputDisable - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.PopInputDisable() - nameWithType: IMixedRealityInputSystem.PopInputDisable() -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.PopInputDisable* - name: PopInputDisable - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_PopInputDisable_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.PopInputDisable - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.PopInputDisable - nameWithType: IMixedRealityInputSystem.PopInputDisable -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.PopModalInputHandler - name: PopModalInputHandler() - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_PopModalInputHandler - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.PopModalInputHandler - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.PopModalInputHandler() - nameWithType: IMixedRealityInputSystem.PopModalInputHandler() -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.PopModalInputHandler* - name: PopModalInputHandler - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_PopModalInputHandler_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.PopModalInputHandler - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.PopModalInputHandler - nameWithType: IMixedRealityInputSystem.PopModalInputHandler -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.PushFallbackInputHandler(UnityEngine.GameObject) - name: PushFallbackInputHandler(GameObject) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_PushFallbackInputHandler_UnityEngine_GameObject_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.PushFallbackInputHandler(UnityEngine.GameObject) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.PushFallbackInputHandler(UnityEngine.GameObject) - nameWithType: IMixedRealityInputSystem.PushFallbackInputHandler(GameObject) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.PushFallbackInputHandler* - name: PushFallbackInputHandler - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_PushFallbackInputHandler_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.PushFallbackInputHandler - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.PushFallbackInputHandler - nameWithType: IMixedRealityInputSystem.PushFallbackInputHandler -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.PushInputDisable - name: PushInputDisable() - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_PushInputDisable - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.PushInputDisable - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.PushInputDisable() - nameWithType: IMixedRealityInputSystem.PushInputDisable() -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.PushInputDisable* - name: PushInputDisable - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_PushInputDisable_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.PushInputDisable - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.PushInputDisable - nameWithType: IMixedRealityInputSystem.PushInputDisable -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.PushModalInputHandler(UnityEngine.GameObject) - name: PushModalInputHandler(GameObject) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_PushModalInputHandler_UnityEngine_GameObject_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.PushModalInputHandler(UnityEngine.GameObject) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.PushModalInputHandler(UnityEngine.GameObject) - nameWithType: IMixedRealityInputSystem.PushModalInputHandler(GameObject) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.PushModalInputHandler* - name: PushModalInputHandler - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_PushModalInputHandler_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.PushModalInputHandler - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.PushModalInputHandler - nameWithType: IMixedRealityInputSystem.PushModalInputHandler -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseDictationComplete(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,System.String,UnityEngine.AudioClip) - name: RaiseDictationComplete(IMixedRealityInputSource, String, AudioClip) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseDictationComplete_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_System_String_UnityEngine_AudioClip_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseDictationComplete(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,System.String,UnityEngine.AudioClip) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseDictationComplete(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, System.String, UnityEngine.AudioClip) - nameWithType: IMixedRealityInputSystem.RaiseDictationComplete(IMixedRealityInputSource, String, AudioClip) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseDictationComplete* - name: RaiseDictationComplete - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseDictationComplete_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseDictationComplete - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseDictationComplete - nameWithType: IMixedRealityInputSystem.RaiseDictationComplete -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseDictationError(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,System.String,UnityEngine.AudioClip) - name: RaiseDictationError(IMixedRealityInputSource, String, AudioClip) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseDictationError_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_System_String_UnityEngine_AudioClip_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseDictationError(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,System.String,UnityEngine.AudioClip) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseDictationError(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, System.String, UnityEngine.AudioClip) - nameWithType: IMixedRealityInputSystem.RaiseDictationError(IMixedRealityInputSource, String, AudioClip) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseDictationError* - name: RaiseDictationError - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseDictationError_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseDictationError - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseDictationError - nameWithType: IMixedRealityInputSystem.RaiseDictationError -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseDictationHypothesis(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,System.String,UnityEngine.AudioClip) - name: RaiseDictationHypothesis(IMixedRealityInputSource, String, AudioClip) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseDictationHypothesis_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_System_String_UnityEngine_AudioClip_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseDictationHypothesis(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,System.String,UnityEngine.AudioClip) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseDictationHypothesis(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, System.String, UnityEngine.AudioClip) - nameWithType: IMixedRealityInputSystem.RaiseDictationHypothesis(IMixedRealityInputSource, String, AudioClip) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseDictationHypothesis* - name: RaiseDictationHypothesis - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseDictationHypothesis_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseDictationHypothesis - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseDictationHypothesis - nameWithType: IMixedRealityInputSystem.RaiseDictationHypothesis -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseDictationResult(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,System.String,UnityEngine.AudioClip) - name: RaiseDictationResult(IMixedRealityInputSource, String, AudioClip) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseDictationResult_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_System_String_UnityEngine_AudioClip_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseDictationResult(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,System.String,UnityEngine.AudioClip) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseDictationResult(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, System.String, UnityEngine.AudioClip) - nameWithType: IMixedRealityInputSystem.RaiseDictationResult(IMixedRealityInputSource, String, AudioClip) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseDictationResult* - name: RaiseDictationResult - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseDictationResult_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseDictationResult - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseDictationResult - nameWithType: IMixedRealityInputSystem.RaiseDictationResult -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseFocusChanged(XRTK.Interfaces.InputSystem.IMixedRealityPointer,UnityEngine.GameObject,UnityEngine.GameObject) - name: RaiseFocusChanged(IMixedRealityPointer, GameObject, GameObject) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseFocusChanged_XRTK_Interfaces_InputSystem_IMixedRealityPointer_UnityEngine_GameObject_UnityEngine_GameObject_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseFocusChanged(XRTK.Interfaces.InputSystem.IMixedRealityPointer,UnityEngine.GameObject,UnityEngine.GameObject) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseFocusChanged(XRTK.Interfaces.InputSystem.IMixedRealityPointer, UnityEngine.GameObject, UnityEngine.GameObject) - nameWithType: IMixedRealityInputSystem.RaiseFocusChanged(IMixedRealityPointer, GameObject, GameObject) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseFocusChanged* - name: RaiseFocusChanged - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseFocusChanged_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseFocusChanged - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseFocusChanged - nameWithType: IMixedRealityInputSystem.RaiseFocusChanged -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseFocusEnter(XRTK.Interfaces.InputSystem.IMixedRealityPointer,UnityEngine.GameObject) - name: RaiseFocusEnter(IMixedRealityPointer, GameObject) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseFocusEnter_XRTK_Interfaces_InputSystem_IMixedRealityPointer_UnityEngine_GameObject_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseFocusEnter(XRTK.Interfaces.InputSystem.IMixedRealityPointer,UnityEngine.GameObject) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseFocusEnter(XRTK.Interfaces.InputSystem.IMixedRealityPointer, UnityEngine.GameObject) - nameWithType: IMixedRealityInputSystem.RaiseFocusEnter(IMixedRealityPointer, GameObject) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseFocusEnter* - name: RaiseFocusEnter - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseFocusEnter_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseFocusEnter - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseFocusEnter - nameWithType: IMixedRealityInputSystem.RaiseFocusEnter -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseFocusExit(XRTK.Interfaces.InputSystem.IMixedRealityPointer,UnityEngine.GameObject) - name: RaiseFocusExit(IMixedRealityPointer, GameObject) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseFocusExit_XRTK_Interfaces_InputSystem_IMixedRealityPointer_UnityEngine_GameObject_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseFocusExit(XRTK.Interfaces.InputSystem.IMixedRealityPointer,UnityEngine.GameObject) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseFocusExit(XRTK.Interfaces.InputSystem.IMixedRealityPointer, UnityEngine.GameObject) - nameWithType: IMixedRealityInputSystem.RaiseFocusExit(IMixedRealityPointer, GameObject) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseFocusExit* - name: RaiseFocusExit - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseFocusExit_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseFocusExit - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseFocusExit - nameWithType: IMixedRealityInputSystem.RaiseFocusExit -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseGestureCanceled(XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.InputSystem.MixedRealityInputAction) - name: RaiseGestureCanceled(IMixedRealityController, MixedRealityInputAction) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseGestureCanceled_XRTK_Interfaces_Providers_Controllers_IMixedRealityController_XRTK_Definitions_InputSystem_MixedRealityInputAction_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseGestureCanceled(XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.InputSystem.MixedRealityInputAction) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseGestureCanceled(XRTK.Interfaces.Providers.Controllers.IMixedRealityController, XRTK.Definitions.InputSystem.MixedRealityInputAction) - nameWithType: IMixedRealityInputSystem.RaiseGestureCanceled(IMixedRealityController, MixedRealityInputAction) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseGestureCanceled* - name: RaiseGestureCanceled - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseGestureCanceled_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseGestureCanceled - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseGestureCanceled - nameWithType: IMixedRealityInputSystem.RaiseGestureCanceled -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseGestureCompleted(XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.InputSystem.MixedRealityInputAction) - name: RaiseGestureCompleted(IMixedRealityController, MixedRealityInputAction) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseGestureCompleted_XRTK_Interfaces_Providers_Controllers_IMixedRealityController_XRTK_Definitions_InputSystem_MixedRealityInputAction_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseGestureCompleted(XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.InputSystem.MixedRealityInputAction) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseGestureCompleted(XRTK.Interfaces.Providers.Controllers.IMixedRealityController, XRTK.Definitions.InputSystem.MixedRealityInputAction) - nameWithType: IMixedRealityInputSystem.RaiseGestureCompleted(IMixedRealityController, MixedRealityInputAction) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseGestureCompleted(XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Quaternion) - name: RaiseGestureCompleted(IMixedRealityController, MixedRealityInputAction, Quaternion) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseGestureCompleted_XRTK_Interfaces_Providers_Controllers_IMixedRealityController_XRTK_Definitions_InputSystem_MixedRealityInputAction_UnityEngine_Quaternion_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseGestureCompleted(XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Quaternion) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseGestureCompleted(XRTK.Interfaces.Providers.Controllers.IMixedRealityController, XRTK.Definitions.InputSystem.MixedRealityInputAction, UnityEngine.Quaternion) - nameWithType: IMixedRealityInputSystem.RaiseGestureCompleted(IMixedRealityController, MixedRealityInputAction, Quaternion) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseGestureCompleted(XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Vector2) - name: RaiseGestureCompleted(IMixedRealityController, MixedRealityInputAction, Vector2) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseGestureCompleted_XRTK_Interfaces_Providers_Controllers_IMixedRealityController_XRTK_Definitions_InputSystem_MixedRealityInputAction_UnityEngine_Vector2_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseGestureCompleted(XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Vector2) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseGestureCompleted(XRTK.Interfaces.Providers.Controllers.IMixedRealityController, XRTK.Definitions.InputSystem.MixedRealityInputAction, UnityEngine.Vector2) - nameWithType: IMixedRealityInputSystem.RaiseGestureCompleted(IMixedRealityController, MixedRealityInputAction, Vector2) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseGestureCompleted(XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Vector3) - name: RaiseGestureCompleted(IMixedRealityController, MixedRealityInputAction, Vector3) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseGestureCompleted_XRTK_Interfaces_Providers_Controllers_IMixedRealityController_XRTK_Definitions_InputSystem_MixedRealityInputAction_UnityEngine_Vector3_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseGestureCompleted(XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Vector3) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseGestureCompleted(XRTK.Interfaces.Providers.Controllers.IMixedRealityController, XRTK.Definitions.InputSystem.MixedRealityInputAction, UnityEngine.Vector3) - nameWithType: IMixedRealityInputSystem.RaiseGestureCompleted(IMixedRealityController, MixedRealityInputAction, Vector3) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseGestureCompleted(XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.InputSystem.MixedRealityInputAction,XRTK.Definitions.Utilities.MixedRealityPose) - name: RaiseGestureCompleted(IMixedRealityController, MixedRealityInputAction, MixedRealityPose) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseGestureCompleted_XRTK_Interfaces_Providers_Controllers_IMixedRealityController_XRTK_Definitions_InputSystem_MixedRealityInputAction_XRTK_Definitions_Utilities_MixedRealityPose_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseGestureCompleted(XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.InputSystem.MixedRealityInputAction,XRTK.Definitions.Utilities.MixedRealityPose) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseGestureCompleted(XRTK.Interfaces.Providers.Controllers.IMixedRealityController, XRTK.Definitions.InputSystem.MixedRealityInputAction, XRTK.Definitions.Utilities.MixedRealityPose) - nameWithType: IMixedRealityInputSystem.RaiseGestureCompleted(IMixedRealityController, MixedRealityInputAction, MixedRealityPose) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseGestureCompleted* - name: RaiseGestureCompleted - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseGestureCompleted_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseGestureCompleted - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseGestureCompleted - nameWithType: IMixedRealityInputSystem.RaiseGestureCompleted -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseGestureStarted(XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.InputSystem.MixedRealityInputAction) - name: RaiseGestureStarted(IMixedRealityController, MixedRealityInputAction) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseGestureStarted_XRTK_Interfaces_Providers_Controllers_IMixedRealityController_XRTK_Definitions_InputSystem_MixedRealityInputAction_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseGestureStarted(XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.InputSystem.MixedRealityInputAction) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseGestureStarted(XRTK.Interfaces.Providers.Controllers.IMixedRealityController, XRTK.Definitions.InputSystem.MixedRealityInputAction) - nameWithType: IMixedRealityInputSystem.RaiseGestureStarted(IMixedRealityController, MixedRealityInputAction) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseGestureStarted* - name: RaiseGestureStarted - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseGestureStarted_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseGestureStarted - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseGestureStarted - nameWithType: IMixedRealityInputSystem.RaiseGestureStarted -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseGestureUpdated(XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.InputSystem.MixedRealityInputAction) - name: RaiseGestureUpdated(IMixedRealityController, MixedRealityInputAction) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseGestureUpdated_XRTK_Interfaces_Providers_Controllers_IMixedRealityController_XRTK_Definitions_InputSystem_MixedRealityInputAction_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseGestureUpdated(XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.InputSystem.MixedRealityInputAction) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseGestureUpdated(XRTK.Interfaces.Providers.Controllers.IMixedRealityController, XRTK.Definitions.InputSystem.MixedRealityInputAction) - nameWithType: IMixedRealityInputSystem.RaiseGestureUpdated(IMixedRealityController, MixedRealityInputAction) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseGestureUpdated(XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Quaternion) - name: RaiseGestureUpdated(IMixedRealityController, MixedRealityInputAction, Quaternion) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseGestureUpdated_XRTK_Interfaces_Providers_Controllers_IMixedRealityController_XRTK_Definitions_InputSystem_MixedRealityInputAction_UnityEngine_Quaternion_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseGestureUpdated(XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Quaternion) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseGestureUpdated(XRTK.Interfaces.Providers.Controllers.IMixedRealityController, XRTK.Definitions.InputSystem.MixedRealityInputAction, UnityEngine.Quaternion) - nameWithType: IMixedRealityInputSystem.RaiseGestureUpdated(IMixedRealityController, MixedRealityInputAction, Quaternion) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseGestureUpdated(XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Vector2) - name: RaiseGestureUpdated(IMixedRealityController, MixedRealityInputAction, Vector2) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseGestureUpdated_XRTK_Interfaces_Providers_Controllers_IMixedRealityController_XRTK_Definitions_InputSystem_MixedRealityInputAction_UnityEngine_Vector2_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseGestureUpdated(XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Vector2) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseGestureUpdated(XRTK.Interfaces.Providers.Controllers.IMixedRealityController, XRTK.Definitions.InputSystem.MixedRealityInputAction, UnityEngine.Vector2) - nameWithType: IMixedRealityInputSystem.RaiseGestureUpdated(IMixedRealityController, MixedRealityInputAction, Vector2) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseGestureUpdated(XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Vector3) - name: RaiseGestureUpdated(IMixedRealityController, MixedRealityInputAction, Vector3) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseGestureUpdated_XRTK_Interfaces_Providers_Controllers_IMixedRealityController_XRTK_Definitions_InputSystem_MixedRealityInputAction_UnityEngine_Vector3_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseGestureUpdated(XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Vector3) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseGestureUpdated(XRTK.Interfaces.Providers.Controllers.IMixedRealityController, XRTK.Definitions.InputSystem.MixedRealityInputAction, UnityEngine.Vector3) - nameWithType: IMixedRealityInputSystem.RaiseGestureUpdated(IMixedRealityController, MixedRealityInputAction, Vector3) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseGestureUpdated(XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.InputSystem.MixedRealityInputAction,XRTK.Definitions.Utilities.MixedRealityPose) - name: RaiseGestureUpdated(IMixedRealityController, MixedRealityInputAction, MixedRealityPose) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseGestureUpdated_XRTK_Interfaces_Providers_Controllers_IMixedRealityController_XRTK_Definitions_InputSystem_MixedRealityInputAction_XRTK_Definitions_Utilities_MixedRealityPose_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseGestureUpdated(XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.InputSystem.MixedRealityInputAction,XRTK.Definitions.Utilities.MixedRealityPose) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseGestureUpdated(XRTK.Interfaces.Providers.Controllers.IMixedRealityController, XRTK.Definitions.InputSystem.MixedRealityInputAction, XRTK.Definitions.Utilities.MixedRealityPose) - nameWithType: IMixedRealityInputSystem.RaiseGestureUpdated(IMixedRealityController, MixedRealityInputAction, MixedRealityPose) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseGestureUpdated* - name: RaiseGestureUpdated - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseGestureUpdated_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseGestureUpdated - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseGestureUpdated - nameWithType: IMixedRealityInputSystem.RaiseGestureUpdated -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseOnInputDown(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.InputSystem.MixedRealityInputAction) - name: RaiseOnInputDown(IMixedRealityInputSource, MixedRealityInputAction) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseOnInputDown_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Definitions_InputSystem_MixedRealityInputAction_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseOnInputDown(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.InputSystem.MixedRealityInputAction) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseOnInputDown(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Definitions.InputSystem.MixedRealityInputAction) - nameWithType: IMixedRealityInputSystem.RaiseOnInputDown(IMixedRealityInputSource, MixedRealityInputAction) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseOnInputDown(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.InputSystem.MixedRealityInputAction) - name: RaiseOnInputDown(IMixedRealityInputSource, Handedness, MixedRealityInputAction) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseOnInputDown_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Definitions_Utilities_Handedness_XRTK_Definitions_InputSystem_MixedRealityInputAction_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseOnInputDown(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.InputSystem.MixedRealityInputAction) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseOnInputDown(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Definitions.Utilities.Handedness, XRTK.Definitions.InputSystem.MixedRealityInputAction) - nameWithType: IMixedRealityInputSystem.RaiseOnInputDown(IMixedRealityInputSource, Handedness, MixedRealityInputAction) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseOnInputDown* - name: RaiseOnInputDown - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseOnInputDown_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseOnInputDown - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseOnInputDown - nameWithType: IMixedRealityInputSystem.RaiseOnInputDown -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseOnInputPressed(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.InputSystem.MixedRealityInputAction) - name: RaiseOnInputPressed(IMixedRealityInputSource, MixedRealityInputAction) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseOnInputPressed_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Definitions_InputSystem_MixedRealityInputAction_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseOnInputPressed(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.InputSystem.MixedRealityInputAction) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseOnInputPressed(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Definitions.InputSystem.MixedRealityInputAction) - nameWithType: IMixedRealityInputSystem.RaiseOnInputPressed(IMixedRealityInputSource, MixedRealityInputAction) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseOnInputPressed(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.InputSystem.MixedRealityInputAction,System.Single) - name: RaiseOnInputPressed(IMixedRealityInputSource, MixedRealityInputAction, Single) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseOnInputPressed_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Definitions_InputSystem_MixedRealityInputAction_System_Single_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseOnInputPressed(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.InputSystem.MixedRealityInputAction,System.Single) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseOnInputPressed(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Definitions.InputSystem.MixedRealityInputAction, System.Single) - nameWithType: IMixedRealityInputSystem.RaiseOnInputPressed(IMixedRealityInputSource, MixedRealityInputAction, Single) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseOnInputPressed(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.InputSystem.MixedRealityInputAction) - name: RaiseOnInputPressed(IMixedRealityInputSource, Handedness, MixedRealityInputAction) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseOnInputPressed_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Definitions_Utilities_Handedness_XRTK_Definitions_InputSystem_MixedRealityInputAction_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseOnInputPressed(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.InputSystem.MixedRealityInputAction) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseOnInputPressed(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Definitions.Utilities.Handedness, XRTK.Definitions.InputSystem.MixedRealityInputAction) - nameWithType: IMixedRealityInputSystem.RaiseOnInputPressed(IMixedRealityInputSource, Handedness, MixedRealityInputAction) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseOnInputPressed(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.InputSystem.MixedRealityInputAction,System.Single) - name: RaiseOnInputPressed(IMixedRealityInputSource, Handedness, MixedRealityInputAction, Single) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseOnInputPressed_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Definitions_Utilities_Handedness_XRTK_Definitions_InputSystem_MixedRealityInputAction_System_Single_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseOnInputPressed(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.InputSystem.MixedRealityInputAction,System.Single) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseOnInputPressed(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Definitions.Utilities.Handedness, XRTK.Definitions.InputSystem.MixedRealityInputAction, System.Single) - nameWithType: IMixedRealityInputSystem.RaiseOnInputPressed(IMixedRealityInputSource, Handedness, MixedRealityInputAction, Single) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseOnInputPressed* - name: RaiseOnInputPressed - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseOnInputPressed_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseOnInputPressed - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseOnInputPressed - nameWithType: IMixedRealityInputSystem.RaiseOnInputPressed -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseOnInputUp(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.InputSystem.MixedRealityInputAction) - name: RaiseOnInputUp(IMixedRealityInputSource, MixedRealityInputAction) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseOnInputUp_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Definitions_InputSystem_MixedRealityInputAction_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseOnInputUp(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.InputSystem.MixedRealityInputAction) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseOnInputUp(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Definitions.InputSystem.MixedRealityInputAction) - nameWithType: IMixedRealityInputSystem.RaiseOnInputUp(IMixedRealityInputSource, MixedRealityInputAction) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseOnInputUp(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.InputSystem.MixedRealityInputAction) - name: RaiseOnInputUp(IMixedRealityInputSource, Handedness, MixedRealityInputAction) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseOnInputUp_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Definitions_Utilities_Handedness_XRTK_Definitions_InputSystem_MixedRealityInputAction_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseOnInputUp(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.InputSystem.MixedRealityInputAction) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseOnInputUp(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Definitions.Utilities.Handedness, XRTK.Definitions.InputSystem.MixedRealityInputAction) - nameWithType: IMixedRealityInputSystem.RaiseOnInputUp(IMixedRealityInputSource, Handedness, MixedRealityInputAction) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseOnInputUp* - name: RaiseOnInputUp - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseOnInputUp_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseOnInputUp - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseOnInputUp - nameWithType: IMixedRealityInputSystem.RaiseOnInputUp -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePointerClicked(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Definitions.InputSystem.MixedRealityInputAction,XRTK.Interfaces.InputSystem.IMixedRealityInputSource) - name: RaisePointerClicked(IMixedRealityPointer, MixedRealityInputAction, IMixedRealityInputSource) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaisePointerClicked_XRTK_Interfaces_InputSystem_IMixedRealityPointer_XRTK_Definitions_InputSystem_MixedRealityInputAction_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePointerClicked(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Definitions.InputSystem.MixedRealityInputAction,XRTK.Interfaces.InputSystem.IMixedRealityInputSource) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePointerClicked(XRTK.Interfaces.InputSystem.IMixedRealityPointer, XRTK.Definitions.InputSystem.MixedRealityInputAction, XRTK.Interfaces.InputSystem.IMixedRealityInputSource) - nameWithType: IMixedRealityInputSystem.RaisePointerClicked(IMixedRealityPointer, MixedRealityInputAction, IMixedRealityInputSource) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePointerClicked* - name: RaisePointerClicked - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaisePointerClicked_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePointerClicked - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePointerClicked - nameWithType: IMixedRealityInputSystem.RaisePointerClicked -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePointerDown(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Definitions.InputSystem.MixedRealityInputAction,XRTK.Interfaces.InputSystem.IMixedRealityInputSource) - name: RaisePointerDown(IMixedRealityPointer, MixedRealityInputAction, IMixedRealityInputSource) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaisePointerDown_XRTK_Interfaces_InputSystem_IMixedRealityPointer_XRTK_Definitions_InputSystem_MixedRealityInputAction_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePointerDown(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Definitions.InputSystem.MixedRealityInputAction,XRTK.Interfaces.InputSystem.IMixedRealityInputSource) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePointerDown(XRTK.Interfaces.InputSystem.IMixedRealityPointer, XRTK.Definitions.InputSystem.MixedRealityInputAction, XRTK.Interfaces.InputSystem.IMixedRealityInputSource) - nameWithType: IMixedRealityInputSystem.RaisePointerDown(IMixedRealityPointer, MixedRealityInputAction, IMixedRealityInputSource) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePointerDown* - name: RaisePointerDown - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaisePointerDown_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePointerDown - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePointerDown - nameWithType: IMixedRealityInputSystem.RaisePointerDown -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePointerDrag(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Vector3,XRTK.Interfaces.InputSystem.IMixedRealityInputSource) - name: RaisePointerDrag(IMixedRealityPointer, MixedRealityInputAction, Vector3, IMixedRealityInputSource) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaisePointerDrag_XRTK_Interfaces_InputSystem_IMixedRealityPointer_XRTK_Definitions_InputSystem_MixedRealityInputAction_UnityEngine_Vector3_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePointerDrag(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Vector3,XRTK.Interfaces.InputSystem.IMixedRealityInputSource) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePointerDrag(XRTK.Interfaces.InputSystem.IMixedRealityPointer, XRTK.Definitions.InputSystem.MixedRealityInputAction, UnityEngine.Vector3, XRTK.Interfaces.InputSystem.IMixedRealityInputSource) - nameWithType: IMixedRealityInputSystem.RaisePointerDrag(IMixedRealityPointer, MixedRealityInputAction, Vector3, IMixedRealityInputSource) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePointerDrag* - name: RaisePointerDrag - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaisePointerDrag_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePointerDrag - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePointerDrag - nameWithType: IMixedRealityInputSystem.RaisePointerDrag -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePointerDragBegin(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Vector3,XRTK.Interfaces.InputSystem.IMixedRealityInputSource) - name: RaisePointerDragBegin(IMixedRealityPointer, MixedRealityInputAction, Vector3, IMixedRealityInputSource) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaisePointerDragBegin_XRTK_Interfaces_InputSystem_IMixedRealityPointer_XRTK_Definitions_InputSystem_MixedRealityInputAction_UnityEngine_Vector3_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePointerDragBegin(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Vector3,XRTK.Interfaces.InputSystem.IMixedRealityInputSource) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePointerDragBegin(XRTK.Interfaces.InputSystem.IMixedRealityPointer, XRTK.Definitions.InputSystem.MixedRealityInputAction, UnityEngine.Vector3, XRTK.Interfaces.InputSystem.IMixedRealityInputSource) - nameWithType: IMixedRealityInputSystem.RaisePointerDragBegin(IMixedRealityPointer, MixedRealityInputAction, Vector3, IMixedRealityInputSource) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePointerDragBegin* - name: RaisePointerDragBegin - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaisePointerDragBegin_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePointerDragBegin - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePointerDragBegin - nameWithType: IMixedRealityInputSystem.RaisePointerDragBegin -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePointerDragEnd(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Vector3,XRTK.Interfaces.InputSystem.IMixedRealityInputSource) - name: RaisePointerDragEnd(IMixedRealityPointer, MixedRealityInputAction, Vector3, IMixedRealityInputSource) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaisePointerDragEnd_XRTK_Interfaces_InputSystem_IMixedRealityPointer_XRTK_Definitions_InputSystem_MixedRealityInputAction_UnityEngine_Vector3_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePointerDragEnd(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Vector3,XRTK.Interfaces.InputSystem.IMixedRealityInputSource) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePointerDragEnd(XRTK.Interfaces.InputSystem.IMixedRealityPointer, XRTK.Definitions.InputSystem.MixedRealityInputAction, UnityEngine.Vector3, XRTK.Interfaces.InputSystem.IMixedRealityInputSource) - nameWithType: IMixedRealityInputSystem.RaisePointerDragEnd(IMixedRealityPointer, MixedRealityInputAction, Vector3, IMixedRealityInputSource) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePointerDragEnd* - name: RaisePointerDragEnd - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaisePointerDragEnd_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePointerDragEnd - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePointerDragEnd - nameWithType: IMixedRealityInputSystem.RaisePointerDragEnd -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePointerScroll(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Vector2,XRTK.Interfaces.InputSystem.IMixedRealityInputSource) - name: RaisePointerScroll(IMixedRealityPointer, MixedRealityInputAction, Vector2, IMixedRealityInputSource) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaisePointerScroll_XRTK_Interfaces_InputSystem_IMixedRealityPointer_XRTK_Definitions_InputSystem_MixedRealityInputAction_UnityEngine_Vector2_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePointerScroll(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Vector2,XRTK.Interfaces.InputSystem.IMixedRealityInputSource) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePointerScroll(XRTK.Interfaces.InputSystem.IMixedRealityPointer, XRTK.Definitions.InputSystem.MixedRealityInputAction, UnityEngine.Vector2, XRTK.Interfaces.InputSystem.IMixedRealityInputSource) - nameWithType: IMixedRealityInputSystem.RaisePointerScroll(IMixedRealityPointer, MixedRealityInputAction, Vector2, IMixedRealityInputSource) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePointerScroll* - name: RaisePointerScroll - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaisePointerScroll_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePointerScroll - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePointerScroll - nameWithType: IMixedRealityInputSystem.RaisePointerScroll -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePointerUp(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Definitions.InputSystem.MixedRealityInputAction,XRTK.Interfaces.InputSystem.IMixedRealityInputSource) - name: RaisePointerUp(IMixedRealityPointer, MixedRealityInputAction, IMixedRealityInputSource) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaisePointerUp_XRTK_Interfaces_InputSystem_IMixedRealityPointer_XRTK_Definitions_InputSystem_MixedRealityInputAction_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePointerUp(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Definitions.InputSystem.MixedRealityInputAction,XRTK.Interfaces.InputSystem.IMixedRealityInputSource) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePointerUp(XRTK.Interfaces.InputSystem.IMixedRealityPointer, XRTK.Definitions.InputSystem.MixedRealityInputAction, XRTK.Interfaces.InputSystem.IMixedRealityInputSource) - nameWithType: IMixedRealityInputSystem.RaisePointerUp(IMixedRealityPointer, MixedRealityInputAction, IMixedRealityInputSource) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePointerUp* - name: RaisePointerUp - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaisePointerUp_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePointerUp - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePointerUp - nameWithType: IMixedRealityInputSystem.RaisePointerUp -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePoseInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.InputSystem.MixedRealityInputAction,XRTK.Definitions.Utilities.MixedRealityPose) - name: RaisePoseInputChanged(IMixedRealityInputSource, MixedRealityInputAction, MixedRealityPose) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaisePoseInputChanged_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Definitions_InputSystem_MixedRealityInputAction_XRTK_Definitions_Utilities_MixedRealityPose_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePoseInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.InputSystem.MixedRealityInputAction,XRTK.Definitions.Utilities.MixedRealityPose) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePoseInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Definitions.InputSystem.MixedRealityInputAction, XRTK.Definitions.Utilities.MixedRealityPose) - nameWithType: IMixedRealityInputSystem.RaisePoseInputChanged(IMixedRealityInputSource, MixedRealityInputAction, MixedRealityPose) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePoseInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.InputSystem.MixedRealityInputAction,XRTK.Definitions.Utilities.MixedRealityPose) - name: RaisePoseInputChanged(IMixedRealityInputSource, Handedness, MixedRealityInputAction, MixedRealityPose) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaisePoseInputChanged_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Definitions_Utilities_Handedness_XRTK_Definitions_InputSystem_MixedRealityInputAction_XRTK_Definitions_Utilities_MixedRealityPose_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePoseInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.InputSystem.MixedRealityInputAction,XRTK.Definitions.Utilities.MixedRealityPose) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePoseInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Definitions.Utilities.Handedness, XRTK.Definitions.InputSystem.MixedRealityInputAction, XRTK.Definitions.Utilities.MixedRealityPose) - nameWithType: IMixedRealityInputSystem.RaisePoseInputChanged(IMixedRealityInputSource, Handedness, MixedRealityInputAction, MixedRealityPose) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePoseInputChanged* - name: RaisePoseInputChanged - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaisePoseInputChanged_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePoseInputChanged - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePoseInputChanged - nameWithType: IMixedRealityInputSystem.RaisePoseInputChanged -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePositionInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.InputSystem.MixedRealityInputAction,System.Single) - name: RaisePositionInputChanged(IMixedRealityInputSource, MixedRealityInputAction, Single) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaisePositionInputChanged_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Definitions_InputSystem_MixedRealityInputAction_System_Single_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePositionInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.InputSystem.MixedRealityInputAction,System.Single) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePositionInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Definitions.InputSystem.MixedRealityInputAction, System.Single) - nameWithType: IMixedRealityInputSystem.RaisePositionInputChanged(IMixedRealityInputSource, MixedRealityInputAction, Single) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePositionInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Vector2) - name: RaisePositionInputChanged(IMixedRealityInputSource, MixedRealityInputAction, Vector2) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaisePositionInputChanged_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Definitions_InputSystem_MixedRealityInputAction_UnityEngine_Vector2_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePositionInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Vector2) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePositionInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Definitions.InputSystem.MixedRealityInputAction, UnityEngine.Vector2) - nameWithType: IMixedRealityInputSystem.RaisePositionInputChanged(IMixedRealityInputSource, MixedRealityInputAction, Vector2) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePositionInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Vector3) - name: RaisePositionInputChanged(IMixedRealityInputSource, MixedRealityInputAction, Vector3) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaisePositionInputChanged_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Definitions_InputSystem_MixedRealityInputAction_UnityEngine_Vector3_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePositionInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Vector3) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePositionInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Definitions.InputSystem.MixedRealityInputAction, UnityEngine.Vector3) - nameWithType: IMixedRealityInputSystem.RaisePositionInputChanged(IMixedRealityInputSource, MixedRealityInputAction, Vector3) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePositionInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.InputSystem.MixedRealityInputAction,System.Single) - name: RaisePositionInputChanged(IMixedRealityInputSource, Handedness, MixedRealityInputAction, Single) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaisePositionInputChanged_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Definitions_Utilities_Handedness_XRTK_Definitions_InputSystem_MixedRealityInputAction_System_Single_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePositionInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.InputSystem.MixedRealityInputAction,System.Single) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePositionInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Definitions.Utilities.Handedness, XRTK.Definitions.InputSystem.MixedRealityInputAction, System.Single) - nameWithType: IMixedRealityInputSystem.RaisePositionInputChanged(IMixedRealityInputSource, Handedness, MixedRealityInputAction, Single) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePositionInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Vector2) - name: RaisePositionInputChanged(IMixedRealityInputSource, Handedness, MixedRealityInputAction, Vector2) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaisePositionInputChanged_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Definitions_Utilities_Handedness_XRTK_Definitions_InputSystem_MixedRealityInputAction_UnityEngine_Vector2_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePositionInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Vector2) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePositionInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Definitions.Utilities.Handedness, XRTK.Definitions.InputSystem.MixedRealityInputAction, UnityEngine.Vector2) - nameWithType: IMixedRealityInputSystem.RaisePositionInputChanged(IMixedRealityInputSource, Handedness, MixedRealityInputAction, Vector2) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePositionInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Vector3) - name: RaisePositionInputChanged(IMixedRealityInputSource, Handedness, MixedRealityInputAction, Vector3) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaisePositionInputChanged_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Definitions_Utilities_Handedness_XRTK_Definitions_InputSystem_MixedRealityInputAction_UnityEngine_Vector3_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePositionInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Vector3) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePositionInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Definitions.Utilities.Handedness, XRTK.Definitions.InputSystem.MixedRealityInputAction, UnityEngine.Vector3) - nameWithType: IMixedRealityInputSystem.RaisePositionInputChanged(IMixedRealityInputSource, Handedness, MixedRealityInputAction, Vector3) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePositionInputChanged* - name: RaisePositionInputChanged - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaisePositionInputChanged_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePositionInputChanged - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePositionInputChanged - nameWithType: IMixedRealityInputSystem.RaisePositionInputChanged -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePreFocusChanged(XRTK.Interfaces.InputSystem.IMixedRealityPointer,UnityEngine.GameObject,UnityEngine.GameObject) - name: RaisePreFocusChanged(IMixedRealityPointer, GameObject, GameObject) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaisePreFocusChanged_XRTK_Interfaces_InputSystem_IMixedRealityPointer_UnityEngine_GameObject_UnityEngine_GameObject_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePreFocusChanged(XRTK.Interfaces.InputSystem.IMixedRealityPointer,UnityEngine.GameObject,UnityEngine.GameObject) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePreFocusChanged(XRTK.Interfaces.InputSystem.IMixedRealityPointer, UnityEngine.GameObject, UnityEngine.GameObject) - nameWithType: IMixedRealityInputSystem.RaisePreFocusChanged(IMixedRealityPointer, GameObject, GameObject) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePreFocusChanged* - name: RaisePreFocusChanged - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaisePreFocusChanged_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePreFocusChanged - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaisePreFocusChanged - nameWithType: IMixedRealityInputSystem.RaisePreFocusChanged -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseRotationInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Quaternion) - name: RaiseRotationInputChanged(IMixedRealityInputSource, MixedRealityInputAction, Quaternion) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseRotationInputChanged_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Definitions_InputSystem_MixedRealityInputAction_UnityEngine_Quaternion_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseRotationInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Quaternion) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseRotationInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Definitions.InputSystem.MixedRealityInputAction, UnityEngine.Quaternion) - nameWithType: IMixedRealityInputSystem.RaiseRotationInputChanged(IMixedRealityInputSource, MixedRealityInputAction, Quaternion) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseRotationInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Quaternion) - name: RaiseRotationInputChanged(IMixedRealityInputSource, Handedness, MixedRealityInputAction, Quaternion) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseRotationInputChanged_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Definitions_Utilities_Handedness_XRTK_Definitions_InputSystem_MixedRealityInputAction_UnityEngine_Quaternion_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseRotationInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Quaternion) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseRotationInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Definitions.Utilities.Handedness, XRTK.Definitions.InputSystem.MixedRealityInputAction, UnityEngine.Quaternion) - nameWithType: IMixedRealityInputSystem.RaiseRotationInputChanged(IMixedRealityInputSource, Handedness, MixedRealityInputAction, Quaternion) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseRotationInputChanged* - name: RaiseRotationInputChanged - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseRotationInputChanged_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseRotationInputChanged - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseRotationInputChanged - nameWithType: IMixedRealityInputSystem.RaiseRotationInputChanged -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseSourceDetected(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Interfaces.Providers.Controllers.IMixedRealityController) - name: RaiseSourceDetected(IMixedRealityInputSource, IMixedRealityController) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseSourceDetected_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Interfaces_Providers_Controllers_IMixedRealityController_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseSourceDetected(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Interfaces.Providers.Controllers.IMixedRealityController) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseSourceDetected(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Interfaces.Providers.Controllers.IMixedRealityController) - nameWithType: IMixedRealityInputSystem.RaiseSourceDetected(IMixedRealityInputSource, IMixedRealityController) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseSourceDetected* - name: RaiseSourceDetected - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseSourceDetected_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseSourceDetected - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseSourceDetected - nameWithType: IMixedRealityInputSystem.RaiseSourceDetected -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseSourceLost(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Interfaces.Providers.Controllers.IMixedRealityController) - name: RaiseSourceLost(IMixedRealityInputSource, IMixedRealityController) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseSourceLost_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Interfaces_Providers_Controllers_IMixedRealityController_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseSourceLost(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Interfaces.Providers.Controllers.IMixedRealityController) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseSourceLost(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Interfaces.Providers.Controllers.IMixedRealityController) - nameWithType: IMixedRealityInputSystem.RaiseSourceLost(IMixedRealityInputSource, IMixedRealityController) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseSourceLost* - name: RaiseSourceLost - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseSourceLost_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseSourceLost - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseSourceLost - nameWithType: IMixedRealityInputSystem.RaiseSourceLost -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseSourcePoseChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.Utilities.MixedRealityPose) - name: RaiseSourcePoseChanged(IMixedRealityInputSource, IMixedRealityController, MixedRealityPose) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseSourcePoseChanged_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Interfaces_Providers_Controllers_IMixedRealityController_XRTK_Definitions_Utilities_MixedRealityPose_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseSourcePoseChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.Utilities.MixedRealityPose) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseSourcePoseChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Interfaces.Providers.Controllers.IMixedRealityController, XRTK.Definitions.Utilities.MixedRealityPose) - nameWithType: IMixedRealityInputSystem.RaiseSourcePoseChanged(IMixedRealityInputSource, IMixedRealityController, MixedRealityPose) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseSourcePoseChanged* - name: RaiseSourcePoseChanged - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseSourcePoseChanged_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseSourcePoseChanged - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseSourcePoseChanged - nameWithType: IMixedRealityInputSystem.RaiseSourcePoseChanged -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseSourcePositionChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Interfaces.Providers.Controllers.IMixedRealityController,UnityEngine.Vector2) - name: RaiseSourcePositionChanged(IMixedRealityInputSource, IMixedRealityController, Vector2) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseSourcePositionChanged_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Interfaces_Providers_Controllers_IMixedRealityController_UnityEngine_Vector2_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseSourcePositionChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Interfaces.Providers.Controllers.IMixedRealityController,UnityEngine.Vector2) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseSourcePositionChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Interfaces.Providers.Controllers.IMixedRealityController, UnityEngine.Vector2) - nameWithType: IMixedRealityInputSystem.RaiseSourcePositionChanged(IMixedRealityInputSource, IMixedRealityController, Vector2) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseSourcePositionChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Interfaces.Providers.Controllers.IMixedRealityController,UnityEngine.Vector3) - name: RaiseSourcePositionChanged(IMixedRealityInputSource, IMixedRealityController, Vector3) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseSourcePositionChanged_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Interfaces_Providers_Controllers_IMixedRealityController_UnityEngine_Vector3_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseSourcePositionChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Interfaces.Providers.Controllers.IMixedRealityController,UnityEngine.Vector3) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseSourcePositionChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Interfaces.Providers.Controllers.IMixedRealityController, UnityEngine.Vector3) - nameWithType: IMixedRealityInputSystem.RaiseSourcePositionChanged(IMixedRealityInputSource, IMixedRealityController, Vector3) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseSourcePositionChanged* - name: RaiseSourcePositionChanged - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseSourcePositionChanged_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseSourcePositionChanged - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseSourcePositionChanged - nameWithType: IMixedRealityInputSystem.RaiseSourcePositionChanged -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseSourceRotationChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Interfaces.Providers.Controllers.IMixedRealityController,UnityEngine.Quaternion) - name: RaiseSourceRotationChanged(IMixedRealityInputSource, IMixedRealityController, Quaternion) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseSourceRotationChanged_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Interfaces_Providers_Controllers_IMixedRealityController_UnityEngine_Quaternion_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseSourceRotationChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Interfaces.Providers.Controllers.IMixedRealityController,UnityEngine.Quaternion) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseSourceRotationChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Interfaces.Providers.Controllers.IMixedRealityController, UnityEngine.Quaternion) - nameWithType: IMixedRealityInputSystem.RaiseSourceRotationChanged(IMixedRealityInputSource, IMixedRealityController, Quaternion) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseSourceRotationChanged* - name: RaiseSourceRotationChanged - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseSourceRotationChanged_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseSourceRotationChanged - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseSourceRotationChanged - nameWithType: IMixedRealityInputSystem.RaiseSourceRotationChanged -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseSourceTrackingStateChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.Devices.TrackingState) - name: RaiseSourceTrackingStateChanged(IMixedRealityInputSource, IMixedRealityController, TrackingState) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseSourceTrackingStateChanged_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Interfaces_Providers_Controllers_IMixedRealityController_XRTK_Definitions_Devices_TrackingState_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseSourceTrackingStateChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.Devices.TrackingState) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseSourceTrackingStateChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Interfaces.Providers.Controllers.IMixedRealityController, XRTK.Definitions.Devices.TrackingState) - nameWithType: IMixedRealityInputSystem.RaiseSourceTrackingStateChanged(IMixedRealityInputSource, IMixedRealityController, TrackingState) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseSourceTrackingStateChanged* - name: RaiseSourceTrackingStateChanged - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseSourceTrackingStateChanged_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseSourceTrackingStateChanged - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseSourceTrackingStateChanged - nameWithType: IMixedRealityInputSystem.RaiseSourceTrackingStateChanged -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseSpeechCommandRecognized(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.InputSystem.MixedRealityInputAction,XRTK.Definitions.Utilities.RecognitionConfidenceLevel,System.TimeSpan,System.DateTime,System.String) - name: RaiseSpeechCommandRecognized(IMixedRealityInputSource, MixedRealityInputAction, RecognitionConfidenceLevel, TimeSpan, DateTime, String) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseSpeechCommandRecognized_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Definitions_InputSystem_MixedRealityInputAction_XRTK_Definitions_Utilities_RecognitionConfidenceLevel_System_TimeSpan_System_DateTime_System_String_ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseSpeechCommandRecognized(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.InputSystem.MixedRealityInputAction,XRTK.Definitions.Utilities.RecognitionConfidenceLevel,System.TimeSpan,System.DateTime,System.String) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseSpeechCommandRecognized(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Definitions.InputSystem.MixedRealityInputAction, XRTK.Definitions.Utilities.RecognitionConfidenceLevel, System.TimeSpan, System.DateTime, System.String) - nameWithType: IMixedRealityInputSystem.RaiseSpeechCommandRecognized(IMixedRealityInputSource, MixedRealityInputAction, RecognitionConfidenceLevel, TimeSpan, DateTime, String) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseSpeechCommandRecognized* - name: RaiseSpeechCommandRecognized - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RaiseSpeechCommandRecognized_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseSpeechCommandRecognized - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RaiseSpeechCommandRecognized - nameWithType: IMixedRealityInputSystem.RaiseSpeechCommandRecognized -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RequestNewGenericInputSource(System.String,XRTK.Interfaces.InputSystem.IMixedRealityPointer[]) - name: RequestNewGenericInputSource(String, IMixedRealityPointer[]) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RequestNewGenericInputSource_System_String_XRTK_Interfaces_InputSystem_IMixedRealityPointer___ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RequestNewGenericInputSource(System.String,XRTK.Interfaces.InputSystem.IMixedRealityPointer[]) - name.vb: RequestNewGenericInputSource(String, IMixedRealityPointer()) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RequestNewGenericInputSource(System.String, XRTK.Interfaces.InputSystem.IMixedRealityPointer[]) - fullName.vb: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RequestNewGenericInputSource(System.String, XRTK.Interfaces.InputSystem.IMixedRealityPointer()) - nameWithType: IMixedRealityInputSystem.RequestNewGenericInputSource(String, IMixedRealityPointer[]) - nameWithType.vb: IMixedRealityInputSystem.RequestNewGenericInputSource(String, IMixedRealityPointer()) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RequestNewGenericInputSource* - name: RequestNewGenericInputSource - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_RequestNewGenericInputSource_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RequestNewGenericInputSource - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.RequestNewGenericInputSource - nameWithType: IMixedRealityInputSystem.RequestNewGenericInputSource -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.TryGetController(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Interfaces.Providers.Controllers.IMixedRealityController@) - name: TryGetController(IMixedRealityInputSource, out IMixedRealityController) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_TryGetController_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Interfaces_Providers_Controllers_IMixedRealityController__ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.TryGetController(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Interfaces.Providers.Controllers.IMixedRealityController@) - name.vb: TryGetController(IMixedRealityInputSource, ByRef IMixedRealityController) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.TryGetController(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, out XRTK.Interfaces.Providers.Controllers.IMixedRealityController) - fullName.vb: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.TryGetController(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, ByRef XRTK.Interfaces.Providers.Controllers.IMixedRealityController) - nameWithType: IMixedRealityInputSystem.TryGetController(IMixedRealityInputSource, out IMixedRealityController) - nameWithType.vb: IMixedRealityInputSystem.TryGetController(IMixedRealityInputSource, ByRef IMixedRealityController) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.TryGetController* - name: TryGetController - href: api/XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.html#XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_TryGetController_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.TryGetController - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityInputSystem.TryGetController - nameWithType: IMixedRealityInputSystem.TryGetController -- uid: XRTK.Interfaces.InputSystem.IMixedRealityMousePointer - name: IMixedRealityMousePointer - href: api/XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.html - commentId: T:XRTK.Interfaces.InputSystem.IMixedRealityMousePointer - fullName: XRTK.Interfaces.InputSystem.IMixedRealityMousePointer - nameWithType: IMixedRealityMousePointer -- uid: XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.HideCursorWhenInactive - name: HideCursorWhenInactive - href: api/XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.html#XRTK_Interfaces_InputSystem_IMixedRealityMousePointer_HideCursorWhenInactive - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.HideCursorWhenInactive - fullName: XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.HideCursorWhenInactive - nameWithType: IMixedRealityMousePointer.HideCursorWhenInactive -- uid: XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.HideCursorWhenInactive* - name: HideCursorWhenInactive - href: api/XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.html#XRTK_Interfaces_InputSystem_IMixedRealityMousePointer_HideCursorWhenInactive_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.HideCursorWhenInactive - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.HideCursorWhenInactive - nameWithType: IMixedRealityMousePointer.HideCursorWhenInactive -- uid: XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.HideTimeout - name: HideTimeout - href: api/XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.html#XRTK_Interfaces_InputSystem_IMixedRealityMousePointer_HideTimeout - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.HideTimeout - fullName: XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.HideTimeout - nameWithType: IMixedRealityMousePointer.HideTimeout -- uid: XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.HideTimeout* - name: HideTimeout - href: api/XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.html#XRTK_Interfaces_InputSystem_IMixedRealityMousePointer_HideTimeout_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.HideTimeout - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.HideTimeout - nameWithType: IMixedRealityMousePointer.HideTimeout -- uid: XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.MovementThresholdToUnHide - name: MovementThresholdToUnHide - href: api/XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.html#XRTK_Interfaces_InputSystem_IMixedRealityMousePointer_MovementThresholdToUnHide - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.MovementThresholdToUnHide - fullName: XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.MovementThresholdToUnHide - nameWithType: IMixedRealityMousePointer.MovementThresholdToUnHide -- uid: XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.MovementThresholdToUnHide* - name: MovementThresholdToUnHide - href: api/XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.html#XRTK_Interfaces_InputSystem_IMixedRealityMousePointer_MovementThresholdToUnHide_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.MovementThresholdToUnHide - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.MovementThresholdToUnHide - nameWithType: IMixedRealityMousePointer.MovementThresholdToUnHide -- uid: XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.Speed - name: Speed - href: api/XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.html#XRTK_Interfaces_InputSystem_IMixedRealityMousePointer_Speed - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.Speed - fullName: XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.Speed - nameWithType: IMixedRealityMousePointer.Speed -- uid: XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.Speed* - name: Speed - href: api/XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.html#XRTK_Interfaces_InputSystem_IMixedRealityMousePointer_Speed_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.Speed - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.Speed - nameWithType: IMixedRealityMousePointer.Speed -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer - name: IMixedRealityPointer - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html - commentId: T:XRTK.Interfaces.InputSystem.IMixedRealityPointer - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer - nameWithType: IMixedRealityPointer -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.BaseCursor - name: BaseCursor - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_BaseCursor - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityPointer.BaseCursor - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.BaseCursor - nameWithType: IMixedRealityPointer.BaseCursor -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.BaseCursor* - name: BaseCursor - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_BaseCursor_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityPointer.BaseCursor - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.BaseCursor - nameWithType: IMixedRealityPointer.BaseCursor -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.Controller - name: Controller - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_Controller - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityPointer.Controller - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.Controller - nameWithType: IMixedRealityPointer.Controller -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.Controller* - name: Controller - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_Controller_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityPointer.Controller - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.Controller - nameWithType: IMixedRealityPointer.Controller -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.CursorModifier - name: CursorModifier - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_CursorModifier - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityPointer.CursorModifier - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.CursorModifier - nameWithType: IMixedRealityPointer.CursorModifier -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.CursorModifier* - name: CursorModifier - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_CursorModifier_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityPointer.CursorModifier - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.CursorModifier - nameWithType: IMixedRealityPointer.CursorModifier -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.DefaultPointerExtent - name: DefaultPointerExtent - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_DefaultPointerExtent - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityPointer.DefaultPointerExtent - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.DefaultPointerExtent - nameWithType: IMixedRealityPointer.DefaultPointerExtent -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.DefaultPointerExtent* - name: DefaultPointerExtent - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_DefaultPointerExtent_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityPointer.DefaultPointerExtent - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.DefaultPointerExtent - nameWithType: IMixedRealityPointer.DefaultPointerExtent -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.FocusHandler - name: FocusHandler - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_FocusHandler - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityPointer.FocusHandler - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.FocusHandler - nameWithType: IMixedRealityPointer.FocusHandler -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.FocusHandler* - name: FocusHandler - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_FocusHandler_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityPointer.FocusHandler - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.FocusHandler - nameWithType: IMixedRealityPointer.FocusHandler -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.InputHandler - name: InputHandler - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_InputHandler - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityPointer.InputHandler - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.InputHandler - nameWithType: IMixedRealityPointer.InputHandler -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.InputHandler* - name: InputHandler - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_InputHandler_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityPointer.InputHandler - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.InputHandler - nameWithType: IMixedRealityPointer.InputHandler -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.InputSourceParent - name: InputSourceParent - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_InputSourceParent - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityPointer.InputSourceParent - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.InputSourceParent - nameWithType: IMixedRealityPointer.InputSourceParent -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.InputSourceParent* - name: InputSourceParent - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_InputSourceParent_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityPointer.InputSourceParent - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.InputSourceParent - nameWithType: IMixedRealityPointer.InputSourceParent -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.InteractionMode - name: InteractionMode - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_InteractionMode - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityPointer.InteractionMode - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.InteractionMode - nameWithType: IMixedRealityPointer.InteractionMode -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.InteractionMode* - name: InteractionMode - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_InteractionMode_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityPointer.InteractionMode - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.InteractionMode - nameWithType: IMixedRealityPointer.InteractionMode -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.IsFocusLocked - name: IsFocusLocked - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_IsFocusLocked - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityPointer.IsFocusLocked - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.IsFocusLocked - nameWithType: IMixedRealityPointer.IsFocusLocked -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.IsFocusLocked* - name: IsFocusLocked - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_IsFocusLocked_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityPointer.IsFocusLocked - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.IsFocusLocked - nameWithType: IMixedRealityPointer.IsFocusLocked -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.IsInteractionEnabled - name: IsInteractionEnabled - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_IsInteractionEnabled - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityPointer.IsInteractionEnabled - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.IsInteractionEnabled - nameWithType: IMixedRealityPointer.IsInteractionEnabled -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.IsInteractionEnabled* - name: IsInteractionEnabled - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_IsInteractionEnabled_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityPointer.IsInteractionEnabled - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.IsInteractionEnabled - nameWithType: IMixedRealityPointer.IsInteractionEnabled -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.NearInteractionCollider - name: NearInteractionCollider - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_NearInteractionCollider - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityPointer.NearInteractionCollider - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.NearInteractionCollider - nameWithType: IMixedRealityPointer.NearInteractionCollider -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.NearInteractionCollider* - name: NearInteractionCollider - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_NearInteractionCollider_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityPointer.NearInteractionCollider - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.NearInteractionCollider - nameWithType: IMixedRealityPointer.NearInteractionCollider -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.OnPostRaycast - name: OnPostRaycast() - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_OnPostRaycast - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityPointer.OnPostRaycast - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.OnPostRaycast() - nameWithType: IMixedRealityPointer.OnPostRaycast() -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.OnPostRaycast* - name: OnPostRaycast - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_OnPostRaycast_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityPointer.OnPostRaycast - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.OnPostRaycast - nameWithType: IMixedRealityPointer.OnPostRaycast -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.OnPreRaycast - name: OnPreRaycast() - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_OnPreRaycast - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityPointer.OnPreRaycast - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.OnPreRaycast() - nameWithType: IMixedRealityPointer.OnPreRaycast() -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.OnPreRaycast* - name: OnPreRaycast - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_OnPreRaycast_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityPointer.OnPreRaycast - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.OnPreRaycast - nameWithType: IMixedRealityPointer.OnPreRaycast -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.OverrideGrabPoint - name: OverrideGrabPoint - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_OverrideGrabPoint - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityPointer.OverrideGrabPoint - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.OverrideGrabPoint - nameWithType: IMixedRealityPointer.OverrideGrabPoint -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.OverrideGrabPoint* - name: OverrideGrabPoint - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_OverrideGrabPoint_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityPointer.OverrideGrabPoint - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.OverrideGrabPoint - nameWithType: IMixedRealityPointer.OverrideGrabPoint -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.PointerExtent - name: PointerExtent - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_PointerExtent - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityPointer.PointerExtent - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.PointerExtent - nameWithType: IMixedRealityPointer.PointerExtent -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.PointerExtent* - name: PointerExtent - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_PointerExtent_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityPointer.PointerExtent - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.PointerExtent - nameWithType: IMixedRealityPointer.PointerExtent -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.PointerId - name: PointerId - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_PointerId - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityPointer.PointerId - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.PointerId - nameWithType: IMixedRealityPointer.PointerId -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.PointerId* - name: PointerId - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_PointerId_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityPointer.PointerId - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.PointerId - nameWithType: IMixedRealityPointer.PointerId -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.PointerName - name: PointerName - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_PointerName - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityPointer.PointerName - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.PointerName - nameWithType: IMixedRealityPointer.PointerName -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.PointerName* - name: PointerName - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_PointerName_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityPointer.PointerName - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.PointerName - nameWithType: IMixedRealityPointer.PointerName -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.PointerOrientation - name: PointerOrientation - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_PointerOrientation - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityPointer.PointerOrientation - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.PointerOrientation - nameWithType: IMixedRealityPointer.PointerOrientation -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.PointerOrientation* - name: PointerOrientation - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_PointerOrientation_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityPointer.PointerOrientation - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.PointerOrientation - nameWithType: IMixedRealityPointer.PointerOrientation -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.PointerRaycastLayerMasksOverride - name: PointerRaycastLayerMasksOverride - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_PointerRaycastLayerMasksOverride - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityPointer.PointerRaycastLayerMasksOverride - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.PointerRaycastLayerMasksOverride - nameWithType: IMixedRealityPointer.PointerRaycastLayerMasksOverride -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.PointerRaycastLayerMasksOverride* - name: PointerRaycastLayerMasksOverride - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_PointerRaycastLayerMasksOverride_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityPointer.PointerRaycastLayerMasksOverride - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.PointerRaycastLayerMasksOverride - nameWithType: IMixedRealityPointer.PointerRaycastLayerMasksOverride -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.RaycastMode - name: RaycastMode - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_RaycastMode - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityPointer.RaycastMode - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.RaycastMode - nameWithType: IMixedRealityPointer.RaycastMode -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.RaycastMode* - name: RaycastMode - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_RaycastMode_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityPointer.RaycastMode - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.RaycastMode - nameWithType: IMixedRealityPointer.RaycastMode -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.Rays - name: Rays - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_Rays - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityPointer.Rays - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.Rays - nameWithType: IMixedRealityPointer.Rays -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.Rays* - name: Rays - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_Rays_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityPointer.Rays - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.Rays - nameWithType: IMixedRealityPointer.Rays -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.RayStabilizer - name: RayStabilizer - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_RayStabilizer - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityPointer.RayStabilizer - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.RayStabilizer - nameWithType: IMixedRealityPointer.RayStabilizer -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.RayStabilizer* - name: RayStabilizer - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_RayStabilizer_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityPointer.RayStabilizer - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.RayStabilizer - nameWithType: IMixedRealityPointer.RayStabilizer -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.Result - name: Result - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_Result - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityPointer.Result - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.Result - nameWithType: IMixedRealityPointer.Result -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.Result* - name: Result - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_Result_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityPointer.Result - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.Result - nameWithType: IMixedRealityPointer.Result -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.SphereCastRadius - name: SphereCastRadius - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_SphereCastRadius - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityPointer.SphereCastRadius - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.SphereCastRadius - nameWithType: IMixedRealityPointer.SphereCastRadius -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.SphereCastRadius* - name: SphereCastRadius - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_SphereCastRadius_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityPointer.SphereCastRadius - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.SphereCastRadius - nameWithType: IMixedRealityPointer.SphereCastRadius -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.SyncedTarget - name: SyncedTarget - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_SyncedTarget - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityPointer.SyncedTarget - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.SyncedTarget - nameWithType: IMixedRealityPointer.SyncedTarget -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.SyncedTarget* - name: SyncedTarget - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_SyncedTarget_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityPointer.SyncedTarget - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.SyncedTarget - nameWithType: IMixedRealityPointer.SyncedTarget -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.TeleportHotSpot - name: TeleportHotSpot - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_TeleportHotSpot - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityPointer.TeleportHotSpot - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.TeleportHotSpot - nameWithType: IMixedRealityPointer.TeleportHotSpot -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.TeleportHotSpot* - name: TeleportHotSpot - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_TeleportHotSpot_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityPointer.TeleportHotSpot - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.TeleportHotSpot - nameWithType: IMixedRealityPointer.TeleportHotSpot -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.TryGetPointerPosition(UnityEngine.Vector3@) - name: TryGetPointerPosition(out Vector3) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_TryGetPointerPosition_UnityEngine_Vector3__ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityPointer.TryGetPointerPosition(UnityEngine.Vector3@) - name.vb: TryGetPointerPosition(ByRef Vector3) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.TryGetPointerPosition(out UnityEngine.Vector3) - fullName.vb: XRTK.Interfaces.InputSystem.IMixedRealityPointer.TryGetPointerPosition(ByRef UnityEngine.Vector3) - nameWithType: IMixedRealityPointer.TryGetPointerPosition(out Vector3) - nameWithType.vb: IMixedRealityPointer.TryGetPointerPosition(ByRef Vector3) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.TryGetPointerPosition* - name: TryGetPointerPosition - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_TryGetPointerPosition_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityPointer.TryGetPointerPosition - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.TryGetPointerPosition - nameWithType: IMixedRealityPointer.TryGetPointerPosition -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.TryGetPointerRotation(UnityEngine.Quaternion@) - name: TryGetPointerRotation(out Quaternion) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_TryGetPointerRotation_UnityEngine_Quaternion__ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityPointer.TryGetPointerRotation(UnityEngine.Quaternion@) - name.vb: TryGetPointerRotation(ByRef Quaternion) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.TryGetPointerRotation(out UnityEngine.Quaternion) - fullName.vb: XRTK.Interfaces.InputSystem.IMixedRealityPointer.TryGetPointerRotation(ByRef UnityEngine.Quaternion) - nameWithType: IMixedRealityPointer.TryGetPointerRotation(out Quaternion) - nameWithType.vb: IMixedRealityPointer.TryGetPointerRotation(ByRef Quaternion) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.TryGetPointerRotation* - name: TryGetPointerRotation - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_TryGetPointerRotation_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityPointer.TryGetPointerRotation - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.TryGetPointerRotation - nameWithType: IMixedRealityPointer.TryGetPointerRotation -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.TryGetPointingRay(UnityEngine.Ray@) - name: TryGetPointingRay(out Ray) - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_TryGetPointingRay_UnityEngine_Ray__ - commentId: M:XRTK.Interfaces.InputSystem.IMixedRealityPointer.TryGetPointingRay(UnityEngine.Ray@) - name.vb: TryGetPointingRay(ByRef Ray) - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.TryGetPointingRay(out UnityEngine.Ray) - fullName.vb: XRTK.Interfaces.InputSystem.IMixedRealityPointer.TryGetPointingRay(ByRef UnityEngine.Ray) - nameWithType: IMixedRealityPointer.TryGetPointingRay(out Ray) - nameWithType.vb: IMixedRealityPointer.TryGetPointingRay(ByRef Ray) -- uid: XRTK.Interfaces.InputSystem.IMixedRealityPointer.TryGetPointingRay* - name: TryGetPointingRay - href: api/XRTK.Interfaces.InputSystem.IMixedRealityPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityPointer_TryGetPointingRay_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityPointer.TryGetPointingRay - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityPointer.TryGetPointingRay - nameWithType: IMixedRealityPointer.TryGetPointingRay -- uid: XRTK.Interfaces.InputSystem.IMixedRealityTouchPointer - name: IMixedRealityTouchPointer - href: api/XRTK.Interfaces.InputSystem.IMixedRealityTouchPointer.html - commentId: T:XRTK.Interfaces.InputSystem.IMixedRealityTouchPointer - fullName: XRTK.Interfaces.InputSystem.IMixedRealityTouchPointer - nameWithType: IMixedRealityTouchPointer -- uid: XRTK.Interfaces.InputSystem.IMixedRealityTouchPointer.FingerId - name: FingerId - href: api/XRTK.Interfaces.InputSystem.IMixedRealityTouchPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityTouchPointer_FingerId - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityTouchPointer.FingerId - fullName: XRTK.Interfaces.InputSystem.IMixedRealityTouchPointer.FingerId - nameWithType: IMixedRealityTouchPointer.FingerId -- uid: XRTK.Interfaces.InputSystem.IMixedRealityTouchPointer.FingerId* - name: FingerId - href: api/XRTK.Interfaces.InputSystem.IMixedRealityTouchPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityTouchPointer_FingerId_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityTouchPointer.FingerId - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityTouchPointer.FingerId - nameWithType: IMixedRealityTouchPointer.FingerId -- uid: XRTK.Interfaces.InputSystem.IMixedRealityTouchPointer.TouchRay - name: TouchRay - href: api/XRTK.Interfaces.InputSystem.IMixedRealityTouchPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityTouchPointer_TouchRay - commentId: P:XRTK.Interfaces.InputSystem.IMixedRealityTouchPointer.TouchRay - fullName: XRTK.Interfaces.InputSystem.IMixedRealityTouchPointer.TouchRay - nameWithType: IMixedRealityTouchPointer.TouchRay -- uid: XRTK.Interfaces.InputSystem.IMixedRealityTouchPointer.TouchRay* - name: TouchRay - href: api/XRTK.Interfaces.InputSystem.IMixedRealityTouchPointer.html#XRTK_Interfaces_InputSystem_IMixedRealityTouchPointer_TouchRay_ - commentId: Overload:XRTK.Interfaces.InputSystem.IMixedRealityTouchPointer.TouchRay - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IMixedRealityTouchPointer.TouchRay - nameWithType: IMixedRealityTouchPointer.TouchRay -- uid: XRTK.Interfaces.InputSystem.IPointerResult - name: IPointerResult - href: api/XRTK.Interfaces.InputSystem.IPointerResult.html - commentId: T:XRTK.Interfaces.InputSystem.IPointerResult - fullName: XRTK.Interfaces.InputSystem.IPointerResult - nameWithType: IPointerResult -- uid: XRTK.Interfaces.InputSystem.IPointerResult.CurrentPointerTarget - name: CurrentPointerTarget - href: api/XRTK.Interfaces.InputSystem.IPointerResult.html#XRTK_Interfaces_InputSystem_IPointerResult_CurrentPointerTarget - commentId: P:XRTK.Interfaces.InputSystem.IPointerResult.CurrentPointerTarget - fullName: XRTK.Interfaces.InputSystem.IPointerResult.CurrentPointerTarget - nameWithType: IPointerResult.CurrentPointerTarget -- uid: XRTK.Interfaces.InputSystem.IPointerResult.CurrentPointerTarget* - name: CurrentPointerTarget - href: api/XRTK.Interfaces.InputSystem.IPointerResult.html#XRTK_Interfaces_InputSystem_IPointerResult_CurrentPointerTarget_ - commentId: Overload:XRTK.Interfaces.InputSystem.IPointerResult.CurrentPointerTarget - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IPointerResult.CurrentPointerTarget - nameWithType: IPointerResult.CurrentPointerTarget -- uid: XRTK.Interfaces.InputSystem.IPointerResult.Direction - name: Direction - href: api/XRTK.Interfaces.InputSystem.IPointerResult.html#XRTK_Interfaces_InputSystem_IPointerResult_Direction - commentId: P:XRTK.Interfaces.InputSystem.IPointerResult.Direction - fullName: XRTK.Interfaces.InputSystem.IPointerResult.Direction - nameWithType: IPointerResult.Direction -- uid: XRTK.Interfaces.InputSystem.IPointerResult.Direction* - name: Direction - href: api/XRTK.Interfaces.InputSystem.IPointerResult.html#XRTK_Interfaces_InputSystem_IPointerResult_Direction_ - commentId: Overload:XRTK.Interfaces.InputSystem.IPointerResult.Direction - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IPointerResult.Direction - nameWithType: IPointerResult.Direction -- uid: XRTK.Interfaces.InputSystem.IPointerResult.EndPoint - name: EndPoint - href: api/XRTK.Interfaces.InputSystem.IPointerResult.html#XRTK_Interfaces_InputSystem_IPointerResult_EndPoint - commentId: P:XRTK.Interfaces.InputSystem.IPointerResult.EndPoint - fullName: XRTK.Interfaces.InputSystem.IPointerResult.EndPoint - nameWithType: IPointerResult.EndPoint -- uid: XRTK.Interfaces.InputSystem.IPointerResult.EndPoint* - name: EndPoint - href: api/XRTK.Interfaces.InputSystem.IPointerResult.html#XRTK_Interfaces_InputSystem_IPointerResult_EndPoint_ - commentId: Overload:XRTK.Interfaces.InputSystem.IPointerResult.EndPoint - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IPointerResult.EndPoint - nameWithType: IPointerResult.EndPoint -- uid: XRTK.Interfaces.InputSystem.IPointerResult.EndPointLocalSpace - name: EndPointLocalSpace - href: api/XRTK.Interfaces.InputSystem.IPointerResult.html#XRTK_Interfaces_InputSystem_IPointerResult_EndPointLocalSpace - commentId: P:XRTK.Interfaces.InputSystem.IPointerResult.EndPointLocalSpace - fullName: XRTK.Interfaces.InputSystem.IPointerResult.EndPointLocalSpace - nameWithType: IPointerResult.EndPointLocalSpace -- uid: XRTK.Interfaces.InputSystem.IPointerResult.EndPointLocalSpace* - name: EndPointLocalSpace - href: api/XRTK.Interfaces.InputSystem.IPointerResult.html#XRTK_Interfaces_InputSystem_IPointerResult_EndPointLocalSpace_ - commentId: Overload:XRTK.Interfaces.InputSystem.IPointerResult.EndPointLocalSpace - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IPointerResult.EndPointLocalSpace - nameWithType: IPointerResult.EndPointLocalSpace -- uid: XRTK.Interfaces.InputSystem.IPointerResult.GrabPoint - name: GrabPoint - href: api/XRTK.Interfaces.InputSystem.IPointerResult.html#XRTK_Interfaces_InputSystem_IPointerResult_GrabPoint - commentId: P:XRTK.Interfaces.InputSystem.IPointerResult.GrabPoint - fullName: XRTK.Interfaces.InputSystem.IPointerResult.GrabPoint - nameWithType: IPointerResult.GrabPoint -- uid: XRTK.Interfaces.InputSystem.IPointerResult.GrabPoint* - name: GrabPoint - href: api/XRTK.Interfaces.InputSystem.IPointerResult.html#XRTK_Interfaces_InputSystem_IPointerResult_GrabPoint_ - commentId: Overload:XRTK.Interfaces.InputSystem.IPointerResult.GrabPoint - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IPointerResult.GrabPoint - nameWithType: IPointerResult.GrabPoint -- uid: XRTK.Interfaces.InputSystem.IPointerResult.GrabPointLocalSpace - name: GrabPointLocalSpace - href: api/XRTK.Interfaces.InputSystem.IPointerResult.html#XRTK_Interfaces_InputSystem_IPointerResult_GrabPointLocalSpace - commentId: P:XRTK.Interfaces.InputSystem.IPointerResult.GrabPointLocalSpace - fullName: XRTK.Interfaces.InputSystem.IPointerResult.GrabPointLocalSpace - nameWithType: IPointerResult.GrabPointLocalSpace -- uid: XRTK.Interfaces.InputSystem.IPointerResult.GrabPointLocalSpace* - name: GrabPointLocalSpace - href: api/XRTK.Interfaces.InputSystem.IPointerResult.html#XRTK_Interfaces_InputSystem_IPointerResult_GrabPointLocalSpace_ - commentId: Overload:XRTK.Interfaces.InputSystem.IPointerResult.GrabPointLocalSpace - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IPointerResult.GrabPointLocalSpace - nameWithType: IPointerResult.GrabPointLocalSpace -- uid: XRTK.Interfaces.InputSystem.IPointerResult.LastGraphicsRaycastResult - name: LastGraphicsRaycastResult - href: api/XRTK.Interfaces.InputSystem.IPointerResult.html#XRTK_Interfaces_InputSystem_IPointerResult_LastGraphicsRaycastResult - commentId: P:XRTK.Interfaces.InputSystem.IPointerResult.LastGraphicsRaycastResult - fullName: XRTK.Interfaces.InputSystem.IPointerResult.LastGraphicsRaycastResult - nameWithType: IPointerResult.LastGraphicsRaycastResult -- uid: XRTK.Interfaces.InputSystem.IPointerResult.LastGraphicsRaycastResult* - name: LastGraphicsRaycastResult - href: api/XRTK.Interfaces.InputSystem.IPointerResult.html#XRTK_Interfaces_InputSystem_IPointerResult_LastGraphicsRaycastResult_ - commentId: Overload:XRTK.Interfaces.InputSystem.IPointerResult.LastGraphicsRaycastResult - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IPointerResult.LastGraphicsRaycastResult - nameWithType: IPointerResult.LastGraphicsRaycastResult -- uid: XRTK.Interfaces.InputSystem.IPointerResult.LastHitObject - name: LastHitObject - href: api/XRTK.Interfaces.InputSystem.IPointerResult.html#XRTK_Interfaces_InputSystem_IPointerResult_LastHitObject - commentId: P:XRTK.Interfaces.InputSystem.IPointerResult.LastHitObject - fullName: XRTK.Interfaces.InputSystem.IPointerResult.LastHitObject - nameWithType: IPointerResult.LastHitObject -- uid: XRTK.Interfaces.InputSystem.IPointerResult.LastHitObject* - name: LastHitObject - href: api/XRTK.Interfaces.InputSystem.IPointerResult.html#XRTK_Interfaces_InputSystem_IPointerResult_LastHitObject_ - commentId: Overload:XRTK.Interfaces.InputSystem.IPointerResult.LastHitObject - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IPointerResult.LastHitObject - nameWithType: IPointerResult.LastHitObject -- uid: XRTK.Interfaces.InputSystem.IPointerResult.LastRaycastHit - name: LastRaycastHit - href: api/XRTK.Interfaces.InputSystem.IPointerResult.html#XRTK_Interfaces_InputSystem_IPointerResult_LastRaycastHit - commentId: P:XRTK.Interfaces.InputSystem.IPointerResult.LastRaycastHit - fullName: XRTK.Interfaces.InputSystem.IPointerResult.LastRaycastHit - nameWithType: IPointerResult.LastRaycastHit -- uid: XRTK.Interfaces.InputSystem.IPointerResult.LastRaycastHit* - name: LastRaycastHit - href: api/XRTK.Interfaces.InputSystem.IPointerResult.html#XRTK_Interfaces_InputSystem_IPointerResult_LastRaycastHit_ - commentId: Overload:XRTK.Interfaces.InputSystem.IPointerResult.LastRaycastHit - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IPointerResult.LastRaycastHit - nameWithType: IPointerResult.LastRaycastHit -- uid: XRTK.Interfaces.InputSystem.IPointerResult.Normal - name: Normal - href: api/XRTK.Interfaces.InputSystem.IPointerResult.html#XRTK_Interfaces_InputSystem_IPointerResult_Normal - commentId: P:XRTK.Interfaces.InputSystem.IPointerResult.Normal - fullName: XRTK.Interfaces.InputSystem.IPointerResult.Normal - nameWithType: IPointerResult.Normal -- uid: XRTK.Interfaces.InputSystem.IPointerResult.Normal* - name: Normal - href: api/XRTK.Interfaces.InputSystem.IPointerResult.html#XRTK_Interfaces_InputSystem_IPointerResult_Normal_ - commentId: Overload:XRTK.Interfaces.InputSystem.IPointerResult.Normal - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IPointerResult.Normal - nameWithType: IPointerResult.Normal -- uid: XRTK.Interfaces.InputSystem.IPointerResult.NormalLocalSpace - name: NormalLocalSpace - href: api/XRTK.Interfaces.InputSystem.IPointerResult.html#XRTK_Interfaces_InputSystem_IPointerResult_NormalLocalSpace - commentId: P:XRTK.Interfaces.InputSystem.IPointerResult.NormalLocalSpace - fullName: XRTK.Interfaces.InputSystem.IPointerResult.NormalLocalSpace - nameWithType: IPointerResult.NormalLocalSpace -- uid: XRTK.Interfaces.InputSystem.IPointerResult.NormalLocalSpace* - name: NormalLocalSpace - href: api/XRTK.Interfaces.InputSystem.IPointerResult.html#XRTK_Interfaces_InputSystem_IPointerResult_NormalLocalSpace_ - commentId: Overload:XRTK.Interfaces.InputSystem.IPointerResult.NormalLocalSpace - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IPointerResult.NormalLocalSpace - nameWithType: IPointerResult.NormalLocalSpace -- uid: XRTK.Interfaces.InputSystem.IPointerResult.PreviousPointerTarget - name: PreviousPointerTarget - href: api/XRTK.Interfaces.InputSystem.IPointerResult.html#XRTK_Interfaces_InputSystem_IPointerResult_PreviousPointerTarget - commentId: P:XRTK.Interfaces.InputSystem.IPointerResult.PreviousPointerTarget - fullName: XRTK.Interfaces.InputSystem.IPointerResult.PreviousPointerTarget - nameWithType: IPointerResult.PreviousPointerTarget -- uid: XRTK.Interfaces.InputSystem.IPointerResult.PreviousPointerTarget* - name: PreviousPointerTarget - href: api/XRTK.Interfaces.InputSystem.IPointerResult.html#XRTK_Interfaces_InputSystem_IPointerResult_PreviousPointerTarget_ - commentId: Overload:XRTK.Interfaces.InputSystem.IPointerResult.PreviousPointerTarget - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IPointerResult.PreviousPointerTarget - nameWithType: IPointerResult.PreviousPointerTarget -- uid: XRTK.Interfaces.InputSystem.IPointerResult.RayDistance - name: RayDistance - href: api/XRTK.Interfaces.InputSystem.IPointerResult.html#XRTK_Interfaces_InputSystem_IPointerResult_RayDistance - commentId: P:XRTK.Interfaces.InputSystem.IPointerResult.RayDistance - fullName: XRTK.Interfaces.InputSystem.IPointerResult.RayDistance - nameWithType: IPointerResult.RayDistance -- uid: XRTK.Interfaces.InputSystem.IPointerResult.RayDistance* - name: RayDistance - href: api/XRTK.Interfaces.InputSystem.IPointerResult.html#XRTK_Interfaces_InputSystem_IPointerResult_RayDistance_ - commentId: Overload:XRTK.Interfaces.InputSystem.IPointerResult.RayDistance - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IPointerResult.RayDistance - nameWithType: IPointerResult.RayDistance -- uid: XRTK.Interfaces.InputSystem.IPointerResult.RayStepIndex - name: RayStepIndex - href: api/XRTK.Interfaces.InputSystem.IPointerResult.html#XRTK_Interfaces_InputSystem_IPointerResult_RayStepIndex - commentId: P:XRTK.Interfaces.InputSystem.IPointerResult.RayStepIndex - fullName: XRTK.Interfaces.InputSystem.IPointerResult.RayStepIndex - nameWithType: IPointerResult.RayStepIndex -- uid: XRTK.Interfaces.InputSystem.IPointerResult.RayStepIndex* - name: RayStepIndex - href: api/XRTK.Interfaces.InputSystem.IPointerResult.html#XRTK_Interfaces_InputSystem_IPointerResult_RayStepIndex_ - commentId: Overload:XRTK.Interfaces.InputSystem.IPointerResult.RayStepIndex - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IPointerResult.RayStepIndex - nameWithType: IPointerResult.RayStepIndex -- uid: XRTK.Interfaces.InputSystem.IPointerResult.StartPoint - name: StartPoint - href: api/XRTK.Interfaces.InputSystem.IPointerResult.html#XRTK_Interfaces_InputSystem_IPointerResult_StartPoint - commentId: P:XRTK.Interfaces.InputSystem.IPointerResult.StartPoint - fullName: XRTK.Interfaces.InputSystem.IPointerResult.StartPoint - nameWithType: IPointerResult.StartPoint -- uid: XRTK.Interfaces.InputSystem.IPointerResult.StartPoint* - name: StartPoint - href: api/XRTK.Interfaces.InputSystem.IPointerResult.html#XRTK_Interfaces_InputSystem_IPointerResult_StartPoint_ - commentId: Overload:XRTK.Interfaces.InputSystem.IPointerResult.StartPoint - isSpec: "True" - fullName: XRTK.Interfaces.InputSystem.IPointerResult.StartPoint - nameWithType: IPointerResult.StartPoint -- uid: XRTK.Interfaces.NetworkingSystem - name: XRTK.Interfaces.NetworkingSystem - href: api/XRTK.Interfaces.NetworkingSystem.html - commentId: N:XRTK.Interfaces.NetworkingSystem - fullName: XRTK.Interfaces.NetworkingSystem - nameWithType: XRTK.Interfaces.NetworkingSystem -- uid: XRTK.Interfaces.NetworkingSystem.Handlers - name: XRTK.Interfaces.NetworkingSystem.Handlers - href: api/XRTK.Interfaces.NetworkingSystem.Handlers.html - commentId: N:XRTK.Interfaces.NetworkingSystem.Handlers - fullName: XRTK.Interfaces.NetworkingSystem.Handlers - nameWithType: XRTK.Interfaces.NetworkingSystem.Handlers -- uid: XRTK.Interfaces.NetworkingSystem.Handlers.IMixedRealityNetworkingHandler`1 - name: IMixedRealityNetworkingHandler - href: api/XRTK.Interfaces.NetworkingSystem.Handlers.IMixedRealityNetworkingHandler-1.html - commentId: T:XRTK.Interfaces.NetworkingSystem.Handlers.IMixedRealityNetworkingHandler`1 - name.vb: IMixedRealityNetworkingHandler(Of T) - fullName: XRTK.Interfaces.NetworkingSystem.Handlers.IMixedRealityNetworkingHandler - fullName.vb: XRTK.Interfaces.NetworkingSystem.Handlers.IMixedRealityNetworkingHandler(Of T) - nameWithType: IMixedRealityNetworkingHandler - nameWithType.vb: IMixedRealityNetworkingHandler(Of T) -- uid: XRTK.Interfaces.NetworkingSystem.Handlers.IMixedRealityNetworkingHandler`1.OnDataReceived(XRTK.EventDatum.Networking.BaseNetworkingEventData{`0}) - name: OnDataReceived(BaseNetworkingEventData) - href: api/XRTK.Interfaces.NetworkingSystem.Handlers.IMixedRealityNetworkingHandler-1.html#XRTK_Interfaces_NetworkingSystem_Handlers_IMixedRealityNetworkingHandler_1_OnDataReceived_XRTK_EventDatum_Networking_BaseNetworkingEventData__0__ - commentId: M:XRTK.Interfaces.NetworkingSystem.Handlers.IMixedRealityNetworkingHandler`1.OnDataReceived(XRTK.EventDatum.Networking.BaseNetworkingEventData{`0}) - name.vb: OnDataReceived(BaseNetworkingEventData(Of T)) - fullName: XRTK.Interfaces.NetworkingSystem.Handlers.IMixedRealityNetworkingHandler.OnDataReceived(XRTK.EventDatum.Networking.BaseNetworkingEventData) - fullName.vb: XRTK.Interfaces.NetworkingSystem.Handlers.IMixedRealityNetworkingHandler(Of T).OnDataReceived(XRTK.EventDatum.Networking.BaseNetworkingEventData(Of T)) - nameWithType: IMixedRealityNetworkingHandler.OnDataReceived(BaseNetworkingEventData) - nameWithType.vb: IMixedRealityNetworkingHandler(Of T).OnDataReceived(BaseNetworkingEventData(Of T)) -- uid: XRTK.Interfaces.NetworkingSystem.Handlers.IMixedRealityNetworkingHandler`1.OnDataReceived* - name: OnDataReceived - href: api/XRTK.Interfaces.NetworkingSystem.Handlers.IMixedRealityNetworkingHandler-1.html#XRTK_Interfaces_NetworkingSystem_Handlers_IMixedRealityNetworkingHandler_1_OnDataReceived_ - commentId: Overload:XRTK.Interfaces.NetworkingSystem.Handlers.IMixedRealityNetworkingHandler`1.OnDataReceived - isSpec: "True" - fullName: XRTK.Interfaces.NetworkingSystem.Handlers.IMixedRealityNetworkingHandler.OnDataReceived - fullName.vb: XRTK.Interfaces.NetworkingSystem.Handlers.IMixedRealityNetworkingHandler(Of T).OnDataReceived - nameWithType: IMixedRealityNetworkingHandler.OnDataReceived - nameWithType.vb: IMixedRealityNetworkingHandler(Of T).OnDataReceived -- uid: XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider - name: IMixedRealityNetworkDataProvider - href: api/XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider.html - commentId: T:XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider - fullName: XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider - nameWithType: IMixedRealityNetworkDataProvider -- uid: XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider.SendData* - name: SendData - href: api/XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider.html#XRTK_Interfaces_NetworkingSystem_IMixedRealityNetworkDataProvider_SendData_ - commentId: Overload:XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider.SendData - isSpec: "True" - fullName: XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider.SendData - nameWithType: IMixedRealityNetworkDataProvider.SendData -- uid: XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider.SendData``1(``0) - name: SendData(T) - href: api/XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider.html#XRTK_Interfaces_NetworkingSystem_IMixedRealityNetworkDataProvider_SendData__1___0_ - commentId: M:XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider.SendData``1(``0) - name.vb: SendData(Of T)(T) - fullName: XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider.SendData(T) - fullName.vb: XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider.SendData(Of T)(T) - nameWithType: IMixedRealityNetworkDataProvider.SendData(T) - nameWithType.vb: IMixedRealityNetworkDataProvider.SendData(Of T)(T) -- uid: XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider`2 - name: IMixedRealityNetworkDataProvider - href: api/XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider-2.html - commentId: T:XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider`2 - name.vb: IMixedRealityNetworkDataProvider(Of TKey, TConnection) - fullName: XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider - fullName.vb: XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider(Of TKey, TConnection) - nameWithType: IMixedRealityNetworkDataProvider - nameWithType.vb: IMixedRealityNetworkDataProvider(Of TKey, TConnection) -- uid: XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider`2.Connections - name: Connections - href: api/XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider-2.html#XRTK_Interfaces_NetworkingSystem_IMixedRealityNetworkDataProvider_2_Connections - commentId: P:XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider`2.Connections - fullName: XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider.Connections - fullName.vb: XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider(Of TKey, TConnection).Connections - nameWithType: IMixedRealityNetworkDataProvider.Connections - nameWithType.vb: IMixedRealityNetworkDataProvider(Of TKey, TConnection).Connections -- uid: XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider`2.Connections* - name: Connections - href: api/XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider-2.html#XRTK_Interfaces_NetworkingSystem_IMixedRealityNetworkDataProvider_2_Connections_ - commentId: Overload:XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider`2.Connections - isSpec: "True" - fullName: XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider.Connections - fullName.vb: XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider(Of TKey, TConnection).Connections - nameWithType: IMixedRealityNetworkDataProvider.Connections - nameWithType.vb: IMixedRealityNetworkDataProvider(Of TKey, TConnection).Connections -- uid: XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem - name: IMixedRealityNetworkingSystem - href: api/XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.html - commentId: T:XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem - fullName: XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem - nameWithType: IMixedRealityNetworkingSystem -- uid: XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.HasInternetConnection - name: HasInternetConnection - href: api/XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.html#XRTK_Interfaces_NetworkingSystem_IMixedRealityNetworkingSystem_HasInternetConnection - commentId: P:XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.HasInternetConnection - fullName: XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.HasInternetConnection - nameWithType: IMixedRealityNetworkingSystem.HasInternetConnection -- uid: XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.HasInternetConnection* - name: HasInternetConnection - href: api/XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.html#XRTK_Interfaces_NetworkingSystem_IMixedRealityNetworkingSystem_HasInternetConnection_ - commentId: Overload:XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.HasInternetConnection - isSpec: "True" - fullName: XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.HasInternetConnection - nameWithType: IMixedRealityNetworkingSystem.HasInternetConnection -- uid: XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.NetworkDataProviders - name: NetworkDataProviders - href: api/XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.html#XRTK_Interfaces_NetworkingSystem_IMixedRealityNetworkingSystem_NetworkDataProviders - commentId: P:XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.NetworkDataProviders - fullName: XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.NetworkDataProviders - nameWithType: IMixedRealityNetworkingSystem.NetworkDataProviders -- uid: XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.NetworkDataProviders* - name: NetworkDataProviders - href: api/XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.html#XRTK_Interfaces_NetworkingSystem_IMixedRealityNetworkingSystem_NetworkDataProviders_ - commentId: Overload:XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.NetworkDataProviders - isSpec: "True" - fullName: XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.NetworkDataProviders - nameWithType: IMixedRealityNetworkingSystem.NetworkDataProviders -- uid: XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.RaiseDataReceived* - name: RaiseDataReceived - href: api/XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.html#XRTK_Interfaces_NetworkingSystem_IMixedRealityNetworkingSystem_RaiseDataReceived_ - commentId: Overload:XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.RaiseDataReceived - isSpec: "True" - fullName: XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.RaiseDataReceived - nameWithType: IMixedRealityNetworkingSystem.RaiseDataReceived -- uid: XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.RaiseDataReceived``1(``0) - name: RaiseDataReceived(T) - href: api/XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.html#XRTK_Interfaces_NetworkingSystem_IMixedRealityNetworkingSystem_RaiseDataReceived__1___0_ - commentId: M:XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.RaiseDataReceived``1(``0) - name.vb: RaiseDataReceived(Of T)(T) - fullName: XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.RaiseDataReceived(T) - fullName.vb: XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.RaiseDataReceived(Of T)(T) - nameWithType: IMixedRealityNetworkingSystem.RaiseDataReceived(T) - nameWithType.vb: IMixedRealityNetworkingSystem.RaiseDataReceived(Of T)(T) -- uid: XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.RaiseNetworkDataProviderDetected(XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider) - name: RaiseNetworkDataProviderDetected(IMixedRealityNetworkDataProvider) - href: api/XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.html#XRTK_Interfaces_NetworkingSystem_IMixedRealityNetworkingSystem_RaiseNetworkDataProviderDetected_XRTK_Interfaces_NetworkingSystem_IMixedRealityNetworkDataProvider_ - commentId: M:XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.RaiseNetworkDataProviderDetected(XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider) - fullName: XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.RaiseNetworkDataProviderDetected(XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider) - nameWithType: IMixedRealityNetworkingSystem.RaiseNetworkDataProviderDetected(IMixedRealityNetworkDataProvider) -- uid: XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.RaiseNetworkDataProviderDetected* - name: RaiseNetworkDataProviderDetected - href: api/XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.html#XRTK_Interfaces_NetworkingSystem_IMixedRealityNetworkingSystem_RaiseNetworkDataProviderDetected_ - commentId: Overload:XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.RaiseNetworkDataProviderDetected - isSpec: "True" - fullName: XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.RaiseNetworkDataProviderDetected - nameWithType: IMixedRealityNetworkingSystem.RaiseNetworkDataProviderDetected -- uid: XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.RaiseNetworkDataProviderLost(XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider) - name: RaiseNetworkDataProviderLost(IMixedRealityNetworkDataProvider) - href: api/XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.html#XRTK_Interfaces_NetworkingSystem_IMixedRealityNetworkingSystem_RaiseNetworkDataProviderLost_XRTK_Interfaces_NetworkingSystem_IMixedRealityNetworkDataProvider_ - commentId: M:XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.RaiseNetworkDataProviderLost(XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider) - fullName: XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.RaiseNetworkDataProviderLost(XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider) - nameWithType: IMixedRealityNetworkingSystem.RaiseNetworkDataProviderLost(IMixedRealityNetworkDataProvider) -- uid: XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.RaiseNetworkDataProviderLost* - name: RaiseNetworkDataProviderLost - href: api/XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.html#XRTK_Interfaces_NetworkingSystem_IMixedRealityNetworkingSystem_RaiseNetworkDataProviderLost_ - commentId: Overload:XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.RaiseNetworkDataProviderLost - isSpec: "True" - fullName: XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.RaiseNetworkDataProviderLost - nameWithType: IMixedRealityNetworkingSystem.RaiseNetworkDataProviderLost -- uid: XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.RequestNetworkDataProviderSourceId - name: RequestNetworkDataProviderSourceId() - href: api/XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.html#XRTK_Interfaces_NetworkingSystem_IMixedRealityNetworkingSystem_RequestNetworkDataProviderSourceId - commentId: M:XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.RequestNetworkDataProviderSourceId - fullName: XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.RequestNetworkDataProviderSourceId() - nameWithType: IMixedRealityNetworkingSystem.RequestNetworkDataProviderSourceId() -- uid: XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.RequestNetworkDataProviderSourceId* - name: RequestNetworkDataProviderSourceId - href: api/XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.html#XRTK_Interfaces_NetworkingSystem_IMixedRealityNetworkingSystem_RequestNetworkDataProviderSourceId_ - commentId: Overload:XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.RequestNetworkDataProviderSourceId - isSpec: "True" - fullName: XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.RequestNetworkDataProviderSourceId - nameWithType: IMixedRealityNetworkingSystem.RequestNetworkDataProviderSourceId -- uid: XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.SendData* - name: SendData - href: api/XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.html#XRTK_Interfaces_NetworkingSystem_IMixedRealityNetworkingSystem_SendData_ - commentId: Overload:XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.SendData - isSpec: "True" - fullName: XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.SendData - nameWithType: IMixedRealityNetworkingSystem.SendData -- uid: XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.SendData``1(``0) - name: SendData(T) - href: api/XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.html#XRTK_Interfaces_NetworkingSystem_IMixedRealityNetworkingSystem_SendData__1___0_ - commentId: M:XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.SendData``1(``0) - name.vb: SendData(Of T)(T) - fullName: XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.SendData(T) - fullName.vb: XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem.SendData(Of T)(T) - nameWithType: IMixedRealityNetworkingSystem.SendData(T) - nameWithType.vb: IMixedRealityNetworkingSystem.SendData(Of T)(T) -- uid: XRTK.Interfaces.Physics - name: XRTK.Interfaces.Physics - href: api/XRTK.Interfaces.Physics.html - commentId: N:XRTK.Interfaces.Physics - fullName: XRTK.Interfaces.Physics - nameWithType: XRTK.Interfaces.Physics -- uid: XRTK.Interfaces.Physics.IBaseRayStabilizer - name: IBaseRayStabilizer - href: api/XRTK.Interfaces.Physics.IBaseRayStabilizer.html - commentId: T:XRTK.Interfaces.Physics.IBaseRayStabilizer - fullName: XRTK.Interfaces.Physics.IBaseRayStabilizer - nameWithType: IBaseRayStabilizer -- uid: XRTK.Interfaces.Physics.IBaseRayStabilizer.StablePosition - name: StablePosition - href: api/XRTK.Interfaces.Physics.IBaseRayStabilizer.html#XRTK_Interfaces_Physics_IBaseRayStabilizer_StablePosition - commentId: P:XRTK.Interfaces.Physics.IBaseRayStabilizer.StablePosition - fullName: XRTK.Interfaces.Physics.IBaseRayStabilizer.StablePosition - nameWithType: IBaseRayStabilizer.StablePosition -- uid: XRTK.Interfaces.Physics.IBaseRayStabilizer.StablePosition* - name: StablePosition - href: api/XRTK.Interfaces.Physics.IBaseRayStabilizer.html#XRTK_Interfaces_Physics_IBaseRayStabilizer_StablePosition_ - commentId: Overload:XRTK.Interfaces.Physics.IBaseRayStabilizer.StablePosition - isSpec: "True" - fullName: XRTK.Interfaces.Physics.IBaseRayStabilizer.StablePosition - nameWithType: IBaseRayStabilizer.StablePosition -- uid: XRTK.Interfaces.Physics.IBaseRayStabilizer.StableRay - name: StableRay - href: api/XRTK.Interfaces.Physics.IBaseRayStabilizer.html#XRTK_Interfaces_Physics_IBaseRayStabilizer_StableRay - commentId: P:XRTK.Interfaces.Physics.IBaseRayStabilizer.StableRay - fullName: XRTK.Interfaces.Physics.IBaseRayStabilizer.StableRay - nameWithType: IBaseRayStabilizer.StableRay -- uid: XRTK.Interfaces.Physics.IBaseRayStabilizer.StableRay* - name: StableRay - href: api/XRTK.Interfaces.Physics.IBaseRayStabilizer.html#XRTK_Interfaces_Physics_IBaseRayStabilizer_StableRay_ - commentId: Overload:XRTK.Interfaces.Physics.IBaseRayStabilizer.StableRay - isSpec: "True" - fullName: XRTK.Interfaces.Physics.IBaseRayStabilizer.StableRay - nameWithType: IBaseRayStabilizer.StableRay -- uid: XRTK.Interfaces.Physics.IBaseRayStabilizer.StableRotation - name: StableRotation - href: api/XRTK.Interfaces.Physics.IBaseRayStabilizer.html#XRTK_Interfaces_Physics_IBaseRayStabilizer_StableRotation - commentId: P:XRTK.Interfaces.Physics.IBaseRayStabilizer.StableRotation - fullName: XRTK.Interfaces.Physics.IBaseRayStabilizer.StableRotation - nameWithType: IBaseRayStabilizer.StableRotation -- uid: XRTK.Interfaces.Physics.IBaseRayStabilizer.StableRotation* - name: StableRotation - href: api/XRTK.Interfaces.Physics.IBaseRayStabilizer.html#XRTK_Interfaces_Physics_IBaseRayStabilizer_StableRotation_ - commentId: Overload:XRTK.Interfaces.Physics.IBaseRayStabilizer.StableRotation - isSpec: "True" - fullName: XRTK.Interfaces.Physics.IBaseRayStabilizer.StableRotation - nameWithType: IBaseRayStabilizer.StableRotation -- uid: XRTK.Interfaces.Physics.IBaseRayStabilizer.UpdateStability(UnityEngine.Vector3,UnityEngine.Quaternion) - name: UpdateStability(Vector3, Quaternion) - href: api/XRTK.Interfaces.Physics.IBaseRayStabilizer.html#XRTK_Interfaces_Physics_IBaseRayStabilizer_UpdateStability_UnityEngine_Vector3_UnityEngine_Quaternion_ - commentId: M:XRTK.Interfaces.Physics.IBaseRayStabilizer.UpdateStability(UnityEngine.Vector3,UnityEngine.Quaternion) - fullName: XRTK.Interfaces.Physics.IBaseRayStabilizer.UpdateStability(UnityEngine.Vector3, UnityEngine.Quaternion) - nameWithType: IBaseRayStabilizer.UpdateStability(Vector3, Quaternion) -- uid: XRTK.Interfaces.Physics.IBaseRayStabilizer.UpdateStability(UnityEngine.Vector3,UnityEngine.Vector3) - name: UpdateStability(Vector3, Vector3) - href: api/XRTK.Interfaces.Physics.IBaseRayStabilizer.html#XRTK_Interfaces_Physics_IBaseRayStabilizer_UpdateStability_UnityEngine_Vector3_UnityEngine_Vector3_ - commentId: M:XRTK.Interfaces.Physics.IBaseRayStabilizer.UpdateStability(UnityEngine.Vector3,UnityEngine.Vector3) - fullName: XRTK.Interfaces.Physics.IBaseRayStabilizer.UpdateStability(UnityEngine.Vector3, UnityEngine.Vector3) - nameWithType: IBaseRayStabilizer.UpdateStability(Vector3, Vector3) -- uid: XRTK.Interfaces.Physics.IBaseRayStabilizer.UpdateStability* - name: UpdateStability - href: api/XRTK.Interfaces.Physics.IBaseRayStabilizer.html#XRTK_Interfaces_Physics_IBaseRayStabilizer_UpdateStability_ - commentId: Overload:XRTK.Interfaces.Physics.IBaseRayStabilizer.UpdateStability - isSpec: "True" - fullName: XRTK.Interfaces.Physics.IBaseRayStabilizer.UpdateStability - nameWithType: IBaseRayStabilizer.UpdateStability -- uid: XRTK.Interfaces.Providers - name: XRTK.Interfaces.Providers - href: api/XRTK.Interfaces.Providers.html - commentId: N:XRTK.Interfaces.Providers - fullName: XRTK.Interfaces.Providers - nameWithType: XRTK.Interfaces.Providers -- uid: XRTK.Interfaces.Providers.Controllers - name: XRTK.Interfaces.Providers.Controllers - href: api/XRTK.Interfaces.Providers.Controllers.html - commentId: N:XRTK.Interfaces.Providers.Controllers - fullName: XRTK.Interfaces.Providers.Controllers - nameWithType: XRTK.Interfaces.Providers.Controllers -- uid: XRTK.Interfaces.Providers.Controllers.Hands - name: XRTK.Interfaces.Providers.Controllers.Hands - href: api/XRTK.Interfaces.Providers.Controllers.Hands.html - commentId: N:XRTK.Interfaces.Providers.Controllers.Hands - fullName: XRTK.Interfaces.Providers.Controllers.Hands - nameWithType: XRTK.Interfaces.Providers.Controllers.Hands -- uid: XRTK.Interfaces.Providers.Controllers.Hands.IHandDataPostProcessor - name: IHandDataPostProcessor - href: api/XRTK.Interfaces.Providers.Controllers.Hands.IHandDataPostProcessor.html - commentId: T:XRTK.Interfaces.Providers.Controllers.Hands.IHandDataPostProcessor - fullName: XRTK.Interfaces.Providers.Controllers.Hands.IHandDataPostProcessor - nameWithType: IHandDataPostProcessor -- uid: XRTK.Interfaces.Providers.Controllers.Hands.IHandDataPostProcessor.PostProcess(XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.Controllers.Hands.HandData) - name: PostProcess(Handedness, HandData) - href: api/XRTK.Interfaces.Providers.Controllers.Hands.IHandDataPostProcessor.html#XRTK_Interfaces_Providers_Controllers_Hands_IHandDataPostProcessor_PostProcess_XRTK_Definitions_Utilities_Handedness_XRTK_Definitions_Controllers_Hands_HandData_ - commentId: M:XRTK.Interfaces.Providers.Controllers.Hands.IHandDataPostProcessor.PostProcess(XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.Controllers.Hands.HandData) - fullName: XRTK.Interfaces.Providers.Controllers.Hands.IHandDataPostProcessor.PostProcess(XRTK.Definitions.Utilities.Handedness, XRTK.Definitions.Controllers.Hands.HandData) - nameWithType: IHandDataPostProcessor.PostProcess(Handedness, HandData) -- uid: XRTK.Interfaces.Providers.Controllers.Hands.IHandDataPostProcessor.PostProcess* - name: PostProcess - href: api/XRTK.Interfaces.Providers.Controllers.Hands.IHandDataPostProcessor.html#XRTK_Interfaces_Providers_Controllers_Hands_IHandDataPostProcessor_PostProcess_ - commentId: Overload:XRTK.Interfaces.Providers.Controllers.Hands.IHandDataPostProcessor.PostProcess - isSpec: "True" - fullName: XRTK.Interfaces.Providers.Controllers.Hands.IHandDataPostProcessor.PostProcess - nameWithType: IHandDataPostProcessor.PostProcess -- uid: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController - name: IMixedRealityHandController - href: api/XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.html - commentId: T:XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController - fullName: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController - nameWithType: IMixedRealityHandController -- uid: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.FingerCurlStrengths - name: FingerCurlStrengths - href: api/XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.html#XRTK_Interfaces_Providers_Controllers_Hands_IMixedRealityHandController_FingerCurlStrengths - commentId: P:XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.FingerCurlStrengths - fullName: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.FingerCurlStrengths - nameWithType: IMixedRealityHandController.FingerCurlStrengths -- uid: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.FingerCurlStrengths* - name: FingerCurlStrengths - href: api/XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.html#XRTK_Interfaces_Providers_Controllers_Hands_IMixedRealityHandController_FingerCurlStrengths_ - commentId: Overload:XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.FingerCurlStrengths - isSpec: "True" - fullName: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.FingerCurlStrengths - nameWithType: IMixedRealityHandController.FingerCurlStrengths -- uid: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.GripStrength - name: GripStrength - href: api/XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.html#XRTK_Interfaces_Providers_Controllers_Hands_IMixedRealityHandController_GripStrength - commentId: P:XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.GripStrength - fullName: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.GripStrength - nameWithType: IMixedRealityHandController.GripStrength -- uid: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.GripStrength* - name: GripStrength - href: api/XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.html#XRTK_Interfaces_Providers_Controllers_Hands_IMixedRealityHandController_GripStrength_ - commentId: Overload:XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.GripStrength - isSpec: "True" - fullName: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.GripStrength - nameWithType: IMixedRealityHandController.GripStrength -- uid: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.IsGripping - name: IsGripping - href: api/XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.html#XRTK_Interfaces_Providers_Controllers_Hands_IMixedRealityHandController_IsGripping - commentId: P:XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.IsGripping - fullName: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.IsGripping - nameWithType: IMixedRealityHandController.IsGripping -- uid: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.IsGripping* - name: IsGripping - href: api/XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.html#XRTK_Interfaces_Providers_Controllers_Hands_IMixedRealityHandController_IsGripping_ - commentId: Overload:XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.IsGripping - isSpec: "True" - fullName: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.IsGripping - nameWithType: IMixedRealityHandController.IsGripping -- uid: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.IsPinching - name: IsPinching - href: api/XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.html#XRTK_Interfaces_Providers_Controllers_Hands_IMixedRealityHandController_IsPinching - commentId: P:XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.IsPinching - fullName: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.IsPinching - nameWithType: IMixedRealityHandController.IsPinching -- uid: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.IsPinching* - name: IsPinching - href: api/XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.html#XRTK_Interfaces_Providers_Controllers_Hands_IMixedRealityHandController_IsPinching_ - commentId: Overload:XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.IsPinching - isSpec: "True" - fullName: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.IsPinching - nameWithType: IMixedRealityHandController.IsPinching -- uid: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.IsPointing - name: IsPointing - href: api/XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.html#XRTK_Interfaces_Providers_Controllers_Hands_IMixedRealityHandController_IsPointing - commentId: P:XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.IsPointing - fullName: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.IsPointing - nameWithType: IMixedRealityHandController.IsPointing -- uid: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.IsPointing* - name: IsPointing - href: api/XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.html#XRTK_Interfaces_Providers_Controllers_Hands_IMixedRealityHandController_IsPointing_ - commentId: Overload:XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.IsPointing - isSpec: "True" - fullName: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.IsPointing - nameWithType: IMixedRealityHandController.IsPointing -- uid: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.PinchStrength - name: PinchStrength - href: api/XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.html#XRTK_Interfaces_Providers_Controllers_Hands_IMixedRealityHandController_PinchStrength - commentId: P:XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.PinchStrength - fullName: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.PinchStrength - nameWithType: IMixedRealityHandController.PinchStrength -- uid: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.PinchStrength* - name: PinchStrength - href: api/XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.html#XRTK_Interfaces_Providers_Controllers_Hands_IMixedRealityHandController_PinchStrength_ - commentId: Overload:XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.PinchStrength - isSpec: "True" - fullName: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.PinchStrength - nameWithType: IMixedRealityHandController.PinchStrength -- uid: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.TrackedPoseId - name: TrackedPoseId - href: api/XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.html#XRTK_Interfaces_Providers_Controllers_Hands_IMixedRealityHandController_TrackedPoseId - commentId: P:XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.TrackedPoseId - fullName: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.TrackedPoseId - nameWithType: IMixedRealityHandController.TrackedPoseId -- uid: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.TrackedPoseId* - name: TrackedPoseId - href: api/XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.html#XRTK_Interfaces_Providers_Controllers_Hands_IMixedRealityHandController_TrackedPoseId_ - commentId: Overload:XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.TrackedPoseId - isSpec: "True" - fullName: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.TrackedPoseId - nameWithType: IMixedRealityHandController.TrackedPoseId -- uid: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.TryGetBounds(XRTK.Definitions.Controllers.Hands.TrackedHandBounds,UnityEngine.Bounds[]@) - name: TryGetBounds(TrackedHandBounds, out Bounds[]) - href: api/XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.html#XRTK_Interfaces_Providers_Controllers_Hands_IMixedRealityHandController_TryGetBounds_XRTK_Definitions_Controllers_Hands_TrackedHandBounds_UnityEngine_Bounds____ - commentId: M:XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.TryGetBounds(XRTK.Definitions.Controllers.Hands.TrackedHandBounds,UnityEngine.Bounds[]@) - name.vb: TryGetBounds(TrackedHandBounds, ByRef Bounds()) - fullName: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.TryGetBounds(XRTK.Definitions.Controllers.Hands.TrackedHandBounds, out UnityEngine.Bounds[]) - fullName.vb: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.TryGetBounds(XRTK.Definitions.Controllers.Hands.TrackedHandBounds, ByRef UnityEngine.Bounds()) - nameWithType: IMixedRealityHandController.TryGetBounds(TrackedHandBounds, out Bounds[]) - nameWithType.vb: IMixedRealityHandController.TryGetBounds(TrackedHandBounds, ByRef Bounds()) -- uid: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.TryGetBounds* - name: TryGetBounds - href: api/XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.html#XRTK_Interfaces_Providers_Controllers_Hands_IMixedRealityHandController_TryGetBounds_ - commentId: Overload:XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.TryGetBounds - isSpec: "True" - fullName: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.TryGetBounds - nameWithType: IMixedRealityHandController.TryGetBounds -- uid: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.TryGetFingerCurlStrength(XRTK.Definitions.Controllers.Hands.HandFinger,System.Single@) - name: TryGetFingerCurlStrength(HandFinger, out Single) - href: api/XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.html#XRTK_Interfaces_Providers_Controllers_Hands_IMixedRealityHandController_TryGetFingerCurlStrength_XRTK_Definitions_Controllers_Hands_HandFinger_System_Single__ - commentId: M:XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.TryGetFingerCurlStrength(XRTK.Definitions.Controllers.Hands.HandFinger,System.Single@) - name.vb: TryGetFingerCurlStrength(HandFinger, ByRef Single) - fullName: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.TryGetFingerCurlStrength(XRTK.Definitions.Controllers.Hands.HandFinger, out System.Single) - fullName.vb: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.TryGetFingerCurlStrength(XRTK.Definitions.Controllers.Hands.HandFinger, ByRef System.Single) - nameWithType: IMixedRealityHandController.TryGetFingerCurlStrength(HandFinger, out Single) - nameWithType.vb: IMixedRealityHandController.TryGetFingerCurlStrength(HandFinger, ByRef Single) -- uid: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.TryGetFingerCurlStrength* - name: TryGetFingerCurlStrength - href: api/XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.html#XRTK_Interfaces_Providers_Controllers_Hands_IMixedRealityHandController_TryGetFingerCurlStrength_ - commentId: Overload:XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.TryGetFingerCurlStrength - isSpec: "True" - fullName: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.TryGetFingerCurlStrength - nameWithType: IMixedRealityHandController.TryGetFingerCurlStrength -- uid: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.TryGetHandMeshData(XRTK.Definitions.Controllers.Hands.HandMeshData@) - name: TryGetHandMeshData(out HandMeshData) - href: api/XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.html#XRTK_Interfaces_Providers_Controllers_Hands_IMixedRealityHandController_TryGetHandMeshData_XRTK_Definitions_Controllers_Hands_HandMeshData__ - commentId: M:XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.TryGetHandMeshData(XRTK.Definitions.Controllers.Hands.HandMeshData@) - name.vb: TryGetHandMeshData(ByRef HandMeshData) - fullName: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.TryGetHandMeshData(out XRTK.Definitions.Controllers.Hands.HandMeshData) - fullName.vb: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.TryGetHandMeshData(ByRef XRTK.Definitions.Controllers.Hands.HandMeshData) - nameWithType: IMixedRealityHandController.TryGetHandMeshData(out HandMeshData) - nameWithType.vb: IMixedRealityHandController.TryGetHandMeshData(ByRef HandMeshData) -- uid: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.TryGetHandMeshData* - name: TryGetHandMeshData - href: api/XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.html#XRTK_Interfaces_Providers_Controllers_Hands_IMixedRealityHandController_TryGetHandMeshData_ - commentId: Overload:XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.TryGetHandMeshData - isSpec: "True" - fullName: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.TryGetHandMeshData - nameWithType: IMixedRealityHandController.TryGetHandMeshData -- uid: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.TryGetJointPose(XRTK.Definitions.Controllers.Hands.TrackedHandJoint,XRTK.Definitions.Utilities.MixedRealityPose@,UnityEngine.Space) - name: TryGetJointPose(TrackedHandJoint, out MixedRealityPose, Space) - href: api/XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.html#XRTK_Interfaces_Providers_Controllers_Hands_IMixedRealityHandController_TryGetJointPose_XRTK_Definitions_Controllers_Hands_TrackedHandJoint_XRTK_Definitions_Utilities_MixedRealityPose__UnityEngine_Space_ - commentId: M:XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.TryGetJointPose(XRTK.Definitions.Controllers.Hands.TrackedHandJoint,XRTK.Definitions.Utilities.MixedRealityPose@,UnityEngine.Space) - name.vb: TryGetJointPose(TrackedHandJoint, ByRef MixedRealityPose, Space) - fullName: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.TryGetJointPose(XRTK.Definitions.Controllers.Hands.TrackedHandJoint, out XRTK.Definitions.Utilities.MixedRealityPose, UnityEngine.Space) - fullName.vb: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.TryGetJointPose(XRTK.Definitions.Controllers.Hands.TrackedHandJoint, ByRef XRTK.Definitions.Utilities.MixedRealityPose, UnityEngine.Space) - nameWithType: IMixedRealityHandController.TryGetJointPose(TrackedHandJoint, out MixedRealityPose, Space) - nameWithType.vb: IMixedRealityHandController.TryGetJointPose(TrackedHandJoint, ByRef MixedRealityPose, Space) -- uid: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.TryGetJointPose* - name: TryGetJointPose - href: api/XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.html#XRTK_Interfaces_Providers_Controllers_Hands_IMixedRealityHandController_TryGetJointPose_ - commentId: Overload:XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.TryGetJointPose - isSpec: "True" - fullName: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandController.TryGetJointPose - nameWithType: IMixedRealityHandController.TryGetJointPose -- uid: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandControllerDataProvider - name: IMixedRealityHandControllerDataProvider - href: api/XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandControllerDataProvider.html - commentId: T:XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandControllerDataProvider - fullName: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandControllerDataProvider - nameWithType: IMixedRealityHandControllerDataProvider -- uid: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandControllerDataProvider.BoundsMode - name: BoundsMode - href: api/XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandControllerDataProvider.html#XRTK_Interfaces_Providers_Controllers_Hands_IMixedRealityHandControllerDataProvider_BoundsMode - commentId: P:XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandControllerDataProvider.BoundsMode - fullName: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandControllerDataProvider.BoundsMode - nameWithType: IMixedRealityHandControllerDataProvider.BoundsMode -- uid: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandControllerDataProvider.BoundsMode* - name: BoundsMode - href: api/XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandControllerDataProvider.html#XRTK_Interfaces_Providers_Controllers_Hands_IMixedRealityHandControllerDataProvider_BoundsMode_ - commentId: Overload:XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandControllerDataProvider.BoundsMode - isSpec: "True" - fullName: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandControllerDataProvider.BoundsMode - nameWithType: IMixedRealityHandControllerDataProvider.BoundsMode -- uid: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandControllerDataProvider.HandPhysicsEnabled - name: HandPhysicsEnabled - href: api/XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandControllerDataProvider.html#XRTK_Interfaces_Providers_Controllers_Hands_IMixedRealityHandControllerDataProvider_HandPhysicsEnabled - commentId: P:XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandControllerDataProvider.HandPhysicsEnabled - fullName: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandControllerDataProvider.HandPhysicsEnabled - nameWithType: IMixedRealityHandControllerDataProvider.HandPhysicsEnabled -- uid: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandControllerDataProvider.HandPhysicsEnabled* - name: HandPhysicsEnabled - href: api/XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandControllerDataProvider.html#XRTK_Interfaces_Providers_Controllers_Hands_IMixedRealityHandControllerDataProvider_HandPhysicsEnabled_ - commentId: Overload:XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandControllerDataProvider.HandPhysicsEnabled - isSpec: "True" - fullName: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandControllerDataProvider.HandPhysicsEnabled - nameWithType: IMixedRealityHandControllerDataProvider.HandPhysicsEnabled -- uid: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandControllerDataProvider.RenderingMode - name: RenderingMode - href: api/XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandControllerDataProvider.html#XRTK_Interfaces_Providers_Controllers_Hands_IMixedRealityHandControllerDataProvider_RenderingMode - commentId: P:XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandControllerDataProvider.RenderingMode - fullName: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandControllerDataProvider.RenderingMode - nameWithType: IMixedRealityHandControllerDataProvider.RenderingMode -- uid: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandControllerDataProvider.RenderingMode* - name: RenderingMode - href: api/XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandControllerDataProvider.html#XRTK_Interfaces_Providers_Controllers_Hands_IMixedRealityHandControllerDataProvider_RenderingMode_ - commentId: Overload:XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandControllerDataProvider.RenderingMode - isSpec: "True" - fullName: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandControllerDataProvider.RenderingMode - nameWithType: IMixedRealityHandControllerDataProvider.RenderingMode -- uid: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandControllerDataProvider.UseTriggers - name: UseTriggers - href: api/XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandControllerDataProvider.html#XRTK_Interfaces_Providers_Controllers_Hands_IMixedRealityHandControllerDataProvider_UseTriggers - commentId: P:XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandControllerDataProvider.UseTriggers - fullName: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandControllerDataProvider.UseTriggers - nameWithType: IMixedRealityHandControllerDataProvider.UseTriggers -- uid: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandControllerDataProvider.UseTriggers* - name: UseTriggers - href: api/XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandControllerDataProvider.html#XRTK_Interfaces_Providers_Controllers_Hands_IMixedRealityHandControllerDataProvider_UseTriggers_ - commentId: Overload:XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandControllerDataProvider.UseTriggers - isSpec: "True" - fullName: XRTK.Interfaces.Providers.Controllers.Hands.IMixedRealityHandControllerDataProvider.UseTriggers - nameWithType: IMixedRealityHandControllerDataProvider.UseTriggers -- uid: XRTK.Interfaces.Providers.Controllers.Hands.ISimulatedHandControllerDataProvider - name: ISimulatedHandControllerDataProvider - href: api/XRTK.Interfaces.Providers.Controllers.Hands.ISimulatedHandControllerDataProvider.html - commentId: T:XRTK.Interfaces.Providers.Controllers.Hands.ISimulatedHandControllerDataProvider - fullName: XRTK.Interfaces.Providers.Controllers.Hands.ISimulatedHandControllerDataProvider - nameWithType: ISimulatedHandControllerDataProvider -- uid: XRTK.Interfaces.Providers.Controllers.Hands.ISimulatedHandControllerDataProvider.HandPoseAnimationSpeed - name: HandPoseAnimationSpeed - href: api/XRTK.Interfaces.Providers.Controllers.Hands.ISimulatedHandControllerDataProvider.html#XRTK_Interfaces_Providers_Controllers_Hands_ISimulatedHandControllerDataProvider_HandPoseAnimationSpeed - commentId: P:XRTK.Interfaces.Providers.Controllers.Hands.ISimulatedHandControllerDataProvider.HandPoseAnimationSpeed - fullName: XRTK.Interfaces.Providers.Controllers.Hands.ISimulatedHandControllerDataProvider.HandPoseAnimationSpeed - nameWithType: ISimulatedHandControllerDataProvider.HandPoseAnimationSpeed -- uid: XRTK.Interfaces.Providers.Controllers.Hands.ISimulatedHandControllerDataProvider.HandPoseAnimationSpeed* - name: HandPoseAnimationSpeed - href: api/XRTK.Interfaces.Providers.Controllers.Hands.ISimulatedHandControllerDataProvider.html#XRTK_Interfaces_Providers_Controllers_Hands_ISimulatedHandControllerDataProvider_HandPoseAnimationSpeed_ - commentId: Overload:XRTK.Interfaces.Providers.Controllers.Hands.ISimulatedHandControllerDataProvider.HandPoseAnimationSpeed - isSpec: "True" - fullName: XRTK.Interfaces.Providers.Controllers.Hands.ISimulatedHandControllerDataProvider.HandPoseAnimationSpeed - nameWithType: ISimulatedHandControllerDataProvider.HandPoseAnimationSpeed -- uid: XRTK.Interfaces.Providers.Controllers.IMixedRealityController - name: IMixedRealityController - href: api/XRTK.Interfaces.Providers.Controllers.IMixedRealityController.html - commentId: T:XRTK.Interfaces.Providers.Controllers.IMixedRealityController - fullName: XRTK.Interfaces.Providers.Controllers.IMixedRealityController - nameWithType: IMixedRealityController -- uid: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.AngularVelocity - name: AngularVelocity - href: api/XRTK.Interfaces.Providers.Controllers.IMixedRealityController.html#XRTK_Interfaces_Providers_Controllers_IMixedRealityController_AngularVelocity - commentId: P:XRTK.Interfaces.Providers.Controllers.IMixedRealityController.AngularVelocity - fullName: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.AngularVelocity - nameWithType: IMixedRealityController.AngularVelocity -- uid: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.AngularVelocity* - name: AngularVelocity - href: api/XRTK.Interfaces.Providers.Controllers.IMixedRealityController.html#XRTK_Interfaces_Providers_Controllers_IMixedRealityController_AngularVelocity_ - commentId: Overload:XRTK.Interfaces.Providers.Controllers.IMixedRealityController.AngularVelocity - isSpec: "True" - fullName: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.AngularVelocity - nameWithType: IMixedRealityController.AngularVelocity -- uid: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.ControllerDataProvider - name: ControllerDataProvider - href: api/XRTK.Interfaces.Providers.Controllers.IMixedRealityController.html#XRTK_Interfaces_Providers_Controllers_IMixedRealityController_ControllerDataProvider - commentId: P:XRTK.Interfaces.Providers.Controllers.IMixedRealityController.ControllerDataProvider - fullName: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.ControllerDataProvider - nameWithType: IMixedRealityController.ControllerDataProvider -- uid: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.ControllerDataProvider* - name: ControllerDataProvider - href: api/XRTK.Interfaces.Providers.Controllers.IMixedRealityController.html#XRTK_Interfaces_Providers_Controllers_IMixedRealityController_ControllerDataProvider_ - commentId: Overload:XRTK.Interfaces.Providers.Controllers.IMixedRealityController.ControllerDataProvider - isSpec: "True" - fullName: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.ControllerDataProvider - nameWithType: IMixedRealityController.ControllerDataProvider -- uid: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.ControllerHandedness - name: ControllerHandedness - href: api/XRTK.Interfaces.Providers.Controllers.IMixedRealityController.html#XRTK_Interfaces_Providers_Controllers_IMixedRealityController_ControllerHandedness - commentId: P:XRTK.Interfaces.Providers.Controllers.IMixedRealityController.ControllerHandedness - fullName: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.ControllerHandedness - nameWithType: IMixedRealityController.ControllerHandedness -- uid: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.ControllerHandedness* - name: ControllerHandedness - href: api/XRTK.Interfaces.Providers.Controllers.IMixedRealityController.html#XRTK_Interfaces_Providers_Controllers_IMixedRealityController_ControllerHandedness_ - commentId: Overload:XRTK.Interfaces.Providers.Controllers.IMixedRealityController.ControllerHandedness - isSpec: "True" - fullName: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.ControllerHandedness - nameWithType: IMixedRealityController.ControllerHandedness -- uid: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.Enabled - name: Enabled - href: api/XRTK.Interfaces.Providers.Controllers.IMixedRealityController.html#XRTK_Interfaces_Providers_Controllers_IMixedRealityController_Enabled - commentId: P:XRTK.Interfaces.Providers.Controllers.IMixedRealityController.Enabled - fullName: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.Enabled - nameWithType: IMixedRealityController.Enabled -- uid: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.Enabled* - name: Enabled - href: api/XRTK.Interfaces.Providers.Controllers.IMixedRealityController.html#XRTK_Interfaces_Providers_Controllers_IMixedRealityController_Enabled_ - commentId: Overload:XRTK.Interfaces.Providers.Controllers.IMixedRealityController.Enabled - isSpec: "True" - fullName: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.Enabled - nameWithType: IMixedRealityController.Enabled -- uid: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.InputSource - name: InputSource - href: api/XRTK.Interfaces.Providers.Controllers.IMixedRealityController.html#XRTK_Interfaces_Providers_Controllers_IMixedRealityController_InputSource - commentId: P:XRTK.Interfaces.Providers.Controllers.IMixedRealityController.InputSource - fullName: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.InputSource - nameWithType: IMixedRealityController.InputSource -- uid: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.InputSource* - name: InputSource - href: api/XRTK.Interfaces.Providers.Controllers.IMixedRealityController.html#XRTK_Interfaces_Providers_Controllers_IMixedRealityController_InputSource_ - commentId: Overload:XRTK.Interfaces.Providers.Controllers.IMixedRealityController.InputSource - isSpec: "True" - fullName: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.InputSource - nameWithType: IMixedRealityController.InputSource -- uid: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.Interactions - name: Interactions - href: api/XRTK.Interfaces.Providers.Controllers.IMixedRealityController.html#XRTK_Interfaces_Providers_Controllers_IMixedRealityController_Interactions - commentId: P:XRTK.Interfaces.Providers.Controllers.IMixedRealityController.Interactions - fullName: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.Interactions - nameWithType: IMixedRealityController.Interactions -- uid: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.Interactions* - name: Interactions - href: api/XRTK.Interfaces.Providers.Controllers.IMixedRealityController.html#XRTK_Interfaces_Providers_Controllers_IMixedRealityController_Interactions_ - commentId: Overload:XRTK.Interfaces.Providers.Controllers.IMixedRealityController.Interactions - isSpec: "True" - fullName: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.Interactions - nameWithType: IMixedRealityController.Interactions -- uid: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.IsPositionApproximate - name: IsPositionApproximate - href: api/XRTK.Interfaces.Providers.Controllers.IMixedRealityController.html#XRTK_Interfaces_Providers_Controllers_IMixedRealityController_IsPositionApproximate - commentId: P:XRTK.Interfaces.Providers.Controllers.IMixedRealityController.IsPositionApproximate - fullName: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.IsPositionApproximate - nameWithType: IMixedRealityController.IsPositionApproximate -- uid: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.IsPositionApproximate* - name: IsPositionApproximate - href: api/XRTK.Interfaces.Providers.Controllers.IMixedRealityController.html#XRTK_Interfaces_Providers_Controllers_IMixedRealityController_IsPositionApproximate_ - commentId: Overload:XRTK.Interfaces.Providers.Controllers.IMixedRealityController.IsPositionApproximate - isSpec: "True" - fullName: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.IsPositionApproximate - nameWithType: IMixedRealityController.IsPositionApproximate -- uid: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.IsPositionAvailable - name: IsPositionAvailable - href: api/XRTK.Interfaces.Providers.Controllers.IMixedRealityController.html#XRTK_Interfaces_Providers_Controllers_IMixedRealityController_IsPositionAvailable - commentId: P:XRTK.Interfaces.Providers.Controllers.IMixedRealityController.IsPositionAvailable - fullName: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.IsPositionAvailable - nameWithType: IMixedRealityController.IsPositionAvailable -- uid: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.IsPositionAvailable* - name: IsPositionAvailable - href: api/XRTK.Interfaces.Providers.Controllers.IMixedRealityController.html#XRTK_Interfaces_Providers_Controllers_IMixedRealityController_IsPositionAvailable_ - commentId: Overload:XRTK.Interfaces.Providers.Controllers.IMixedRealityController.IsPositionAvailable - isSpec: "True" - fullName: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.IsPositionAvailable - nameWithType: IMixedRealityController.IsPositionAvailable -- uid: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.IsRotationAvailable - name: IsRotationAvailable - href: api/XRTK.Interfaces.Providers.Controllers.IMixedRealityController.html#XRTK_Interfaces_Providers_Controllers_IMixedRealityController_IsRotationAvailable - commentId: P:XRTK.Interfaces.Providers.Controllers.IMixedRealityController.IsRotationAvailable - fullName: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.IsRotationAvailable - nameWithType: IMixedRealityController.IsRotationAvailable -- uid: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.IsRotationAvailable* - name: IsRotationAvailable - href: api/XRTK.Interfaces.Providers.Controllers.IMixedRealityController.html#XRTK_Interfaces_Providers_Controllers_IMixedRealityController_IsRotationAvailable_ - commentId: Overload:XRTK.Interfaces.Providers.Controllers.IMixedRealityController.IsRotationAvailable - isSpec: "True" - fullName: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.IsRotationAvailable - nameWithType: IMixedRealityController.IsRotationAvailable -- uid: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.Name - name: Name - href: api/XRTK.Interfaces.Providers.Controllers.IMixedRealityController.html#XRTK_Interfaces_Providers_Controllers_IMixedRealityController_Name - commentId: P:XRTK.Interfaces.Providers.Controllers.IMixedRealityController.Name - fullName: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.Name - nameWithType: IMixedRealityController.Name -- uid: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.Name* - name: Name - href: api/XRTK.Interfaces.Providers.Controllers.IMixedRealityController.html#XRTK_Interfaces_Providers_Controllers_IMixedRealityController_Name_ - commentId: Overload:XRTK.Interfaces.Providers.Controllers.IMixedRealityController.Name - isSpec: "True" - fullName: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.Name - nameWithType: IMixedRealityController.Name -- uid: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.TrackingState - name: TrackingState - href: api/XRTK.Interfaces.Providers.Controllers.IMixedRealityController.html#XRTK_Interfaces_Providers_Controllers_IMixedRealityController_TrackingState - commentId: P:XRTK.Interfaces.Providers.Controllers.IMixedRealityController.TrackingState - fullName: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.TrackingState - nameWithType: IMixedRealityController.TrackingState -- uid: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.TrackingState* - name: TrackingState - href: api/XRTK.Interfaces.Providers.Controllers.IMixedRealityController.html#XRTK_Interfaces_Providers_Controllers_IMixedRealityController_TrackingState_ - commentId: Overload:XRTK.Interfaces.Providers.Controllers.IMixedRealityController.TrackingState - isSpec: "True" - fullName: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.TrackingState - nameWithType: IMixedRealityController.TrackingState -- uid: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.TryRenderControllerModel(System.Boolean) - name: TryRenderControllerModel(Boolean) - href: api/XRTK.Interfaces.Providers.Controllers.IMixedRealityController.html#XRTK_Interfaces_Providers_Controllers_IMixedRealityController_TryRenderControllerModel_System_Boolean_ - commentId: M:XRTK.Interfaces.Providers.Controllers.IMixedRealityController.TryRenderControllerModel(System.Boolean) - fullName: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.TryRenderControllerModel(System.Boolean) - nameWithType: IMixedRealityController.TryRenderControllerModel(Boolean) -- uid: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.TryRenderControllerModel* - name: TryRenderControllerModel - href: api/XRTK.Interfaces.Providers.Controllers.IMixedRealityController.html#XRTK_Interfaces_Providers_Controllers_IMixedRealityController_TryRenderControllerModel_ - commentId: Overload:XRTK.Interfaces.Providers.Controllers.IMixedRealityController.TryRenderControllerModel - isSpec: "True" - fullName: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.TryRenderControllerModel - nameWithType: IMixedRealityController.TryRenderControllerModel -- uid: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.UpdateController - name: UpdateController() - href: api/XRTK.Interfaces.Providers.Controllers.IMixedRealityController.html#XRTK_Interfaces_Providers_Controllers_IMixedRealityController_UpdateController - commentId: M:XRTK.Interfaces.Providers.Controllers.IMixedRealityController.UpdateController - fullName: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.UpdateController() - nameWithType: IMixedRealityController.UpdateController() -- uid: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.UpdateController* - name: UpdateController - href: api/XRTK.Interfaces.Providers.Controllers.IMixedRealityController.html#XRTK_Interfaces_Providers_Controllers_IMixedRealityController_UpdateController_ - commentId: Overload:XRTK.Interfaces.Providers.Controllers.IMixedRealityController.UpdateController - isSpec: "True" - fullName: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.UpdateController - nameWithType: IMixedRealityController.UpdateController -- uid: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.Velocity - name: Velocity - href: api/XRTK.Interfaces.Providers.Controllers.IMixedRealityController.html#XRTK_Interfaces_Providers_Controllers_IMixedRealityController_Velocity - commentId: P:XRTK.Interfaces.Providers.Controllers.IMixedRealityController.Velocity - fullName: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.Velocity - nameWithType: IMixedRealityController.Velocity -- uid: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.Velocity* - name: Velocity - href: api/XRTK.Interfaces.Providers.Controllers.IMixedRealityController.html#XRTK_Interfaces_Providers_Controllers_IMixedRealityController_Velocity_ - commentId: Overload:XRTK.Interfaces.Providers.Controllers.IMixedRealityController.Velocity - isSpec: "True" - fullName: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.Velocity - nameWithType: IMixedRealityController.Velocity -- uid: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.Visualizer - name: Visualizer - href: api/XRTK.Interfaces.Providers.Controllers.IMixedRealityController.html#XRTK_Interfaces_Providers_Controllers_IMixedRealityController_Visualizer - commentId: P:XRTK.Interfaces.Providers.Controllers.IMixedRealityController.Visualizer - fullName: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.Visualizer - nameWithType: IMixedRealityController.Visualizer -- uid: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.Visualizer* - name: Visualizer - href: api/XRTK.Interfaces.Providers.Controllers.IMixedRealityController.html#XRTK_Interfaces_Providers_Controllers_IMixedRealityController_Visualizer_ - commentId: Overload:XRTK.Interfaces.Providers.Controllers.IMixedRealityController.Visualizer - isSpec: "True" - fullName: XRTK.Interfaces.Providers.Controllers.IMixedRealityController.Visualizer - nameWithType: IMixedRealityController.Visualizer -- uid: XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider - name: IMixedRealityControllerDataProvider - href: api/XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider.html - commentId: T:XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider - fullName: XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider - nameWithType: IMixedRealityControllerDataProvider -- uid: XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider.ActiveControllers - name: ActiveControllers - href: api/XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider.html#XRTK_Interfaces_Providers_Controllers_IMixedRealityControllerDataProvider_ActiveControllers - commentId: P:XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider.ActiveControllers - fullName: XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider.ActiveControllers - nameWithType: IMixedRealityControllerDataProvider.ActiveControllers -- uid: XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider.ActiveControllers* - name: ActiveControllers - href: api/XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider.html#XRTK_Interfaces_Providers_Controllers_IMixedRealityControllerDataProvider_ActiveControllers_ - commentId: Overload:XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider.ActiveControllers - isSpec: "True" - fullName: XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider.ActiveControllers - nameWithType: IMixedRealityControllerDataProvider.ActiveControllers -- uid: XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider.GetControllerMappingProfile(System.Type,XRTK.Definitions.Utilities.Handedness) - name: GetControllerMappingProfile(Type, Handedness) - href: api/XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider.html#XRTK_Interfaces_Providers_Controllers_IMixedRealityControllerDataProvider_GetControllerMappingProfile_System_Type_XRTK_Definitions_Utilities_Handedness_ - commentId: M:XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider.GetControllerMappingProfile(System.Type,XRTK.Definitions.Utilities.Handedness) - fullName: XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider.GetControllerMappingProfile(System.Type, XRTK.Definitions.Utilities.Handedness) - nameWithType: IMixedRealityControllerDataProvider.GetControllerMappingProfile(Type, Handedness) -- uid: XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider.GetControllerMappingProfile* - name: GetControllerMappingProfile - href: api/XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider.html#XRTK_Interfaces_Providers_Controllers_IMixedRealityControllerDataProvider_GetControllerMappingProfile_ - commentId: Overload:XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider.GetControllerMappingProfile - isSpec: "True" - fullName: XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider.GetControllerMappingProfile - nameWithType: IMixedRealityControllerDataProvider.GetControllerMappingProfile -- uid: XRTK.Interfaces.Providers.Controllers.IMixedRealitySimulatedController - name: IMixedRealitySimulatedController - href: api/XRTK.Interfaces.Providers.Controllers.IMixedRealitySimulatedController.html - commentId: T:XRTK.Interfaces.Providers.Controllers.IMixedRealitySimulatedController - fullName: XRTK.Interfaces.Providers.Controllers.IMixedRealitySimulatedController - nameWithType: IMixedRealitySimulatedController -- uid: XRTK.Interfaces.Providers.Controllers.IMixedRealitySimulatedController.GetDeltaRotation(System.Single) - name: GetDeltaRotation(Single) - href: api/XRTK.Interfaces.Providers.Controllers.IMixedRealitySimulatedController.html#XRTK_Interfaces_Providers_Controllers_IMixedRealitySimulatedController_GetDeltaRotation_System_Single_ - commentId: M:XRTK.Interfaces.Providers.Controllers.IMixedRealitySimulatedController.GetDeltaRotation(System.Single) - fullName: XRTK.Interfaces.Providers.Controllers.IMixedRealitySimulatedController.GetDeltaRotation(System.Single) - nameWithType: IMixedRealitySimulatedController.GetDeltaRotation(Single) -- uid: XRTK.Interfaces.Providers.Controllers.IMixedRealitySimulatedController.GetDeltaRotation* - name: GetDeltaRotation - href: api/XRTK.Interfaces.Providers.Controllers.IMixedRealitySimulatedController.html#XRTK_Interfaces_Providers_Controllers_IMixedRealitySimulatedController_GetDeltaRotation_ - commentId: Overload:XRTK.Interfaces.Providers.Controllers.IMixedRealitySimulatedController.GetDeltaRotation - isSpec: "True" - fullName: XRTK.Interfaces.Providers.Controllers.IMixedRealitySimulatedController.GetDeltaRotation - nameWithType: IMixedRealitySimulatedController.GetDeltaRotation -- uid: XRTK.Interfaces.Providers.Controllers.IMixedRealitySimulatedController.GetPosition(System.Single) - name: GetPosition(Single) - href: api/XRTK.Interfaces.Providers.Controllers.IMixedRealitySimulatedController.html#XRTK_Interfaces_Providers_Controllers_IMixedRealitySimulatedController_GetPosition_System_Single_ - commentId: M:XRTK.Interfaces.Providers.Controllers.IMixedRealitySimulatedController.GetPosition(System.Single) - fullName: XRTK.Interfaces.Providers.Controllers.IMixedRealitySimulatedController.GetPosition(System.Single) - nameWithType: IMixedRealitySimulatedController.GetPosition(Single) -- uid: XRTK.Interfaces.Providers.Controllers.IMixedRealitySimulatedController.GetPosition* - name: GetPosition - href: api/XRTK.Interfaces.Providers.Controllers.IMixedRealitySimulatedController.html#XRTK_Interfaces_Providers_Controllers_IMixedRealitySimulatedController_GetPosition_ - commentId: Overload:XRTK.Interfaces.Providers.Controllers.IMixedRealitySimulatedController.GetPosition - isSpec: "True" - fullName: XRTK.Interfaces.Providers.Controllers.IMixedRealitySimulatedController.GetPosition - nameWithType: IMixedRealitySimulatedController.GetPosition -- uid: XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider - name: ISimulatedControllerDataProvider - href: api/XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.html - commentId: T:XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider - fullName: XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider - nameWithType: ISimulatedControllerDataProvider -- uid: XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.ControllerHideTimeout - name: ControllerHideTimeout - href: api/XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.html#XRTK_Interfaces_Providers_Controllers_ISimulatedControllerDataProvider_ControllerHideTimeout - commentId: P:XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.ControllerHideTimeout - fullName: XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.ControllerHideTimeout - nameWithType: ISimulatedControllerDataProvider.ControllerHideTimeout -- uid: XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.ControllerHideTimeout* - name: ControllerHideTimeout - href: api/XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.html#XRTK_Interfaces_Providers_Controllers_ISimulatedControllerDataProvider_ControllerHideTimeout_ - commentId: Overload:XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.ControllerHideTimeout - isSpec: "True" - fullName: XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.ControllerHideTimeout - nameWithType: ISimulatedControllerDataProvider.ControllerHideTimeout -- uid: XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.DefaultDistance - name: DefaultDistance - href: api/XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.html#XRTK_Interfaces_Providers_Controllers_ISimulatedControllerDataProvider_DefaultDistance - commentId: P:XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.DefaultDistance - fullName: XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.DefaultDistance - nameWithType: ISimulatedControllerDataProvider.DefaultDistance -- uid: XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.DefaultDistance* - name: DefaultDistance - href: api/XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.html#XRTK_Interfaces_Providers_Controllers_ISimulatedControllerDataProvider_DefaultDistance_ - commentId: Overload:XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.DefaultDistance - isSpec: "True" - fullName: XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.DefaultDistance - nameWithType: ISimulatedControllerDataProvider.DefaultDistance -- uid: XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.DepthMultiplier - name: DepthMultiplier - href: api/XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.html#XRTK_Interfaces_Providers_Controllers_ISimulatedControllerDataProvider_DepthMultiplier - commentId: P:XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.DepthMultiplier - fullName: XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.DepthMultiplier - nameWithType: ISimulatedControllerDataProvider.DepthMultiplier -- uid: XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.DepthMultiplier* - name: DepthMultiplier - href: api/XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.html#XRTK_Interfaces_Providers_Controllers_ISimulatedControllerDataProvider_DepthMultiplier_ - commentId: Overload:XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.DepthMultiplier - isSpec: "True" - fullName: XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.DepthMultiplier - nameWithType: ISimulatedControllerDataProvider.DepthMultiplier -- uid: XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.JitterAmount - name: JitterAmount - href: api/XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.html#XRTK_Interfaces_Providers_Controllers_ISimulatedControllerDataProvider_JitterAmount - commentId: P:XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.JitterAmount - fullName: XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.JitterAmount - nameWithType: ISimulatedControllerDataProvider.JitterAmount -- uid: XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.JitterAmount* - name: JitterAmount - href: api/XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.html#XRTK_Interfaces_Providers_Controllers_ISimulatedControllerDataProvider_JitterAmount_ - commentId: Overload:XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.JitterAmount - isSpec: "True" - fullName: XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.JitterAmount - nameWithType: ISimulatedControllerDataProvider.JitterAmount -- uid: XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.LeftControllerTrackedKey - name: LeftControllerTrackedKey - href: api/XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.html#XRTK_Interfaces_Providers_Controllers_ISimulatedControllerDataProvider_LeftControllerTrackedKey - commentId: P:XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.LeftControllerTrackedKey - fullName: XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.LeftControllerTrackedKey - nameWithType: ISimulatedControllerDataProvider.LeftControllerTrackedKey -- uid: XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.LeftControllerTrackedKey* - name: LeftControllerTrackedKey - href: api/XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.html#XRTK_Interfaces_Providers_Controllers_ISimulatedControllerDataProvider_LeftControllerTrackedKey_ - commentId: Overload:XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.LeftControllerTrackedKey - isSpec: "True" - fullName: XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.LeftControllerTrackedKey - nameWithType: ISimulatedControllerDataProvider.LeftControllerTrackedKey -- uid: XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.RightControllerTrackedKey - name: RightControllerTrackedKey - href: api/XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.html#XRTK_Interfaces_Providers_Controllers_ISimulatedControllerDataProvider_RightControllerTrackedKey - commentId: P:XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.RightControllerTrackedKey - fullName: XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.RightControllerTrackedKey - nameWithType: ISimulatedControllerDataProvider.RightControllerTrackedKey -- uid: XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.RightControllerTrackedKey* - name: RightControllerTrackedKey - href: api/XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.html#XRTK_Interfaces_Providers_Controllers_ISimulatedControllerDataProvider_RightControllerTrackedKey_ - commentId: Overload:XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.RightControllerTrackedKey - isSpec: "True" - fullName: XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.RightControllerTrackedKey - nameWithType: ISimulatedControllerDataProvider.RightControllerTrackedKey -- uid: XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.RotationSpeed - name: RotationSpeed - href: api/XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.html#XRTK_Interfaces_Providers_Controllers_ISimulatedControllerDataProvider_RotationSpeed - commentId: P:XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.RotationSpeed - fullName: XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.RotationSpeed - nameWithType: ISimulatedControllerDataProvider.RotationSpeed -- uid: XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.RotationSpeed* - name: RotationSpeed - href: api/XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.html#XRTK_Interfaces_Providers_Controllers_ISimulatedControllerDataProvider_RotationSpeed_ - commentId: Overload:XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.RotationSpeed - isSpec: "True" - fullName: XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.RotationSpeed - nameWithType: ISimulatedControllerDataProvider.RotationSpeed -- uid: XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.SimulatedUpdateFrequency - name: SimulatedUpdateFrequency - href: api/XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.html#XRTK_Interfaces_Providers_Controllers_ISimulatedControllerDataProvider_SimulatedUpdateFrequency - commentId: P:XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.SimulatedUpdateFrequency - fullName: XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.SimulatedUpdateFrequency - nameWithType: ISimulatedControllerDataProvider.SimulatedUpdateFrequency -- uid: XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.SimulatedUpdateFrequency* - name: SimulatedUpdateFrequency - href: api/XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.html#XRTK_Interfaces_Providers_Controllers_ISimulatedControllerDataProvider_SimulatedUpdateFrequency_ - commentId: Overload:XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.SimulatedUpdateFrequency - isSpec: "True" - fullName: XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.SimulatedUpdateFrequency - nameWithType: ISimulatedControllerDataProvider.SimulatedUpdateFrequency -- uid: XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.ToggleLeftPersistentKey - name: ToggleLeftPersistentKey - href: api/XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.html#XRTK_Interfaces_Providers_Controllers_ISimulatedControllerDataProvider_ToggleLeftPersistentKey - commentId: P:XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.ToggleLeftPersistentKey - fullName: XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.ToggleLeftPersistentKey - nameWithType: ISimulatedControllerDataProvider.ToggleLeftPersistentKey -- uid: XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.ToggleLeftPersistentKey* - name: ToggleLeftPersistentKey - href: api/XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.html#XRTK_Interfaces_Providers_Controllers_ISimulatedControllerDataProvider_ToggleLeftPersistentKey_ - commentId: Overload:XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.ToggleLeftPersistentKey - isSpec: "True" - fullName: XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.ToggleLeftPersistentKey - nameWithType: ISimulatedControllerDataProvider.ToggleLeftPersistentKey -- uid: XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.ToggleRightPersistentKey - name: ToggleRightPersistentKey - href: api/XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.html#XRTK_Interfaces_Providers_Controllers_ISimulatedControllerDataProvider_ToggleRightPersistentKey - commentId: P:XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.ToggleRightPersistentKey - fullName: XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.ToggleRightPersistentKey - nameWithType: ISimulatedControllerDataProvider.ToggleRightPersistentKey -- uid: XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.ToggleRightPersistentKey* - name: ToggleRightPersistentKey - href: api/XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.html#XRTK_Interfaces_Providers_Controllers_ISimulatedControllerDataProvider_ToggleRightPersistentKey_ - commentId: Overload:XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.ToggleRightPersistentKey - isSpec: "True" - fullName: XRTK.Interfaces.Providers.Controllers.ISimulatedControllerDataProvider.ToggleRightPersistentKey - nameWithType: ISimulatedControllerDataProvider.ToggleRightPersistentKey -- uid: XRTK.Interfaces.Providers.IMixedRealityInputDataProvider - name: IMixedRealityInputDataProvider - href: api/XRTK.Interfaces.Providers.IMixedRealityInputDataProvider.html - commentId: T:XRTK.Interfaces.Providers.IMixedRealityInputDataProvider - fullName: XRTK.Interfaces.Providers.IMixedRealityInputDataProvider - nameWithType: IMixedRealityInputDataProvider -- uid: XRTK.Interfaces.Providers.SpatialObservers - name: XRTK.Interfaces.Providers.SpatialObservers - href: api/XRTK.Interfaces.Providers.SpatialObservers.html - commentId: N:XRTK.Interfaces.Providers.SpatialObservers - fullName: XRTK.Interfaces.Providers.SpatialObservers - nameWithType: XRTK.Interfaces.Providers.SpatialObservers -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider - name: IMixedRealitySpatialAwarenessDataProvider - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider.html - commentId: T:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider - nameWithType: IMixedRealitySpatialAwarenessDataProvider -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider.IsRunning - name: IsRunning - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialAwarenessDataProvider_IsRunning - commentId: P:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider.IsRunning - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider.IsRunning - nameWithType: IMixedRealitySpatialAwarenessDataProvider.IsRunning -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider.IsRunning* - name: IsRunning - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialAwarenessDataProvider_IsRunning_ - commentId: Overload:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider.IsRunning - isSpec: "True" - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider.IsRunning - nameWithType: IMixedRealitySpatialAwarenessDataProvider.IsRunning -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider.PhysicsLayer - name: PhysicsLayer - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialAwarenessDataProvider_PhysicsLayer - commentId: P:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider.PhysicsLayer - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider.PhysicsLayer - nameWithType: IMixedRealitySpatialAwarenessDataProvider.PhysicsLayer -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider.PhysicsLayer* - name: PhysicsLayer - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialAwarenessDataProvider_PhysicsLayer_ - commentId: Overload:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider.PhysicsLayer - isSpec: "True" - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider.PhysicsLayer - nameWithType: IMixedRealitySpatialAwarenessDataProvider.PhysicsLayer -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider.StartObserving - name: StartObserving() - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialAwarenessDataProvider_StartObserving - commentId: M:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider.StartObserving - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider.StartObserving() - nameWithType: IMixedRealitySpatialAwarenessDataProvider.StartObserving() -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider.StartObserving* - name: StartObserving - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialAwarenessDataProvider_StartObserving_ - commentId: Overload:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider.StartObserving - isSpec: "True" - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider.StartObserving - nameWithType: IMixedRealitySpatialAwarenessDataProvider.StartObserving -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider.StartupBehavior - name: StartupBehavior - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialAwarenessDataProvider_StartupBehavior - commentId: P:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider.StartupBehavior - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider.StartupBehavior - nameWithType: IMixedRealitySpatialAwarenessDataProvider.StartupBehavior -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider.StartupBehavior* - name: StartupBehavior - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialAwarenessDataProvider_StartupBehavior_ - commentId: Overload:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider.StartupBehavior - isSpec: "True" - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider.StartupBehavior - nameWithType: IMixedRealitySpatialAwarenessDataProvider.StartupBehavior -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider.StopObserving - name: StopObserving() - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialAwarenessDataProvider_StopObserving - commentId: M:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider.StopObserving - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider.StopObserving() - nameWithType: IMixedRealitySpatialAwarenessDataProvider.StopObserving() -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider.StopObserving* - name: StopObserving - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialAwarenessDataProvider_StopObserving_ - commentId: Overload:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider.StopObserving - isSpec: "True" - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider.StopObserving - nameWithType: IMixedRealitySpatialAwarenessDataProvider.StopObserving -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider.UpdateInterval - name: UpdateInterval - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialAwarenessDataProvider_UpdateInterval - commentId: P:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider.UpdateInterval - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider.UpdateInterval - nameWithType: IMixedRealitySpatialAwarenessDataProvider.UpdateInterval -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider.UpdateInterval* - name: UpdateInterval - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialAwarenessDataProvider_UpdateInterval_ - commentId: Overload:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider.UpdateInterval - isSpec: "True" - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider.UpdateInterval - nameWithType: IMixedRealitySpatialAwarenessDataProvider.UpdateInterval -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver - name: IMixedRealitySpatialMeshObserver - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.html - commentId: T:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver - nameWithType: IMixedRealitySpatialMeshObserver -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.IsStationaryObserver - name: IsStationaryObserver - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialMeshObserver_IsStationaryObserver - commentId: P:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.IsStationaryObserver - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.IsStationaryObserver - nameWithType: IMixedRealitySpatialMeshObserver.IsStationaryObserver -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.IsStationaryObserver* - name: IsStationaryObserver - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialMeshObserver_IsStationaryObserver_ - commentId: Overload:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.IsStationaryObserver - isSpec: "True" - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.IsStationaryObserver - nameWithType: IMixedRealitySpatialMeshObserver.IsStationaryObserver -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.MeshDisplayOption - name: MeshDisplayOption - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialMeshObserver_MeshDisplayOption - commentId: P:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.MeshDisplayOption - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.MeshDisplayOption - nameWithType: IMixedRealitySpatialMeshObserver.MeshDisplayOption -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.MeshDisplayOption* - name: MeshDisplayOption - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialMeshObserver_MeshDisplayOption_ - commentId: Overload:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.MeshDisplayOption - isSpec: "True" - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.MeshDisplayOption - nameWithType: IMixedRealitySpatialMeshObserver.MeshDisplayOption -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.MeshLevelOfDetail - name: MeshLevelOfDetail - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialMeshObserver_MeshLevelOfDetail - commentId: P:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.MeshLevelOfDetail - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.MeshLevelOfDetail - nameWithType: IMixedRealitySpatialMeshObserver.MeshLevelOfDetail -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.MeshLevelOfDetail* - name: MeshLevelOfDetail - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialMeshObserver_MeshLevelOfDetail_ - commentId: Overload:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.MeshLevelOfDetail - isSpec: "True" - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.MeshLevelOfDetail - nameWithType: IMixedRealitySpatialMeshObserver.MeshLevelOfDetail -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.MeshOcclusionMaterial - name: MeshOcclusionMaterial - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialMeshObserver_MeshOcclusionMaterial - commentId: P:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.MeshOcclusionMaterial - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.MeshOcclusionMaterial - nameWithType: IMixedRealitySpatialMeshObserver.MeshOcclusionMaterial -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.MeshOcclusionMaterial* - name: MeshOcclusionMaterial - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialMeshObserver_MeshOcclusionMaterial_ - commentId: Overload:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.MeshOcclusionMaterial - isSpec: "True" - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.MeshOcclusionMaterial - nameWithType: IMixedRealitySpatialMeshObserver.MeshOcclusionMaterial -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.MeshRecalculateNormals - name: MeshRecalculateNormals - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialMeshObserver_MeshRecalculateNormals - commentId: P:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.MeshRecalculateNormals - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.MeshRecalculateNormals - nameWithType: IMixedRealitySpatialMeshObserver.MeshRecalculateNormals -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.MeshRecalculateNormals* - name: MeshRecalculateNormals - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialMeshObserver_MeshRecalculateNormals_ - commentId: Overload:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.MeshRecalculateNormals - isSpec: "True" - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.MeshRecalculateNormals - nameWithType: IMixedRealitySpatialMeshObserver.MeshRecalculateNormals -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.MeshVisibleMaterial - name: MeshVisibleMaterial - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialMeshObserver_MeshVisibleMaterial - commentId: P:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.MeshVisibleMaterial - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.MeshVisibleMaterial - nameWithType: IMixedRealitySpatialMeshObserver.MeshVisibleMaterial -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.MeshVisibleMaterial* - name: MeshVisibleMaterial - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialMeshObserver_MeshVisibleMaterial_ - commentId: Overload:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.MeshVisibleMaterial - isSpec: "True" - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.MeshVisibleMaterial - nameWithType: IMixedRealitySpatialMeshObserver.MeshVisibleMaterial -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.ObservationExtents - name: ObservationExtents - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialMeshObserver_ObservationExtents - commentId: P:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.ObservationExtents - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.ObservationExtents - nameWithType: IMixedRealitySpatialMeshObserver.ObservationExtents -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.ObservationExtents* - name: ObservationExtents - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialMeshObserver_ObservationExtents_ - commentId: Overload:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.ObservationExtents - isSpec: "True" - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.ObservationExtents - nameWithType: IMixedRealitySpatialMeshObserver.ObservationExtents -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.ObserverOrientation - name: ObserverOrientation - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialMeshObserver_ObserverOrientation - commentId: P:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.ObserverOrientation - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.ObserverOrientation - nameWithType: IMixedRealitySpatialMeshObserver.ObserverOrientation -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.ObserverOrientation* - name: ObserverOrientation - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialMeshObserver_ObserverOrientation_ - commentId: Overload:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.ObserverOrientation - isSpec: "True" - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.ObserverOrientation - nameWithType: IMixedRealitySpatialMeshObserver.ObserverOrientation -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.ObserverOrigin - name: ObserverOrigin - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialMeshObserver_ObserverOrigin - commentId: P:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.ObserverOrigin - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.ObserverOrigin - nameWithType: IMixedRealitySpatialMeshObserver.ObserverOrigin -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.ObserverOrigin* - name: ObserverOrigin - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialMeshObserver_ObserverOrigin_ - commentId: Overload:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.ObserverOrigin - isSpec: "True" - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.ObserverOrigin - nameWithType: IMixedRealitySpatialMeshObserver.ObserverOrigin -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.RaiseMeshAdded(XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject) - name: RaiseMeshAdded(SpatialMeshObject) - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialMeshObserver_RaiseMeshAdded_XRTK_Definitions_SpatialAwarenessSystem_SpatialMeshObject_ - commentId: M:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.RaiseMeshAdded(XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject) - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.RaiseMeshAdded(XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject) - nameWithType: IMixedRealitySpatialMeshObserver.RaiseMeshAdded(SpatialMeshObject) -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.RaiseMeshAdded* - name: RaiseMeshAdded - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialMeshObserver_RaiseMeshAdded_ - commentId: Overload:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.RaiseMeshAdded - isSpec: "True" - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.RaiseMeshAdded - nameWithType: IMixedRealitySpatialMeshObserver.RaiseMeshAdded -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.RaiseMeshRemoved(XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject) - name: RaiseMeshRemoved(SpatialMeshObject) - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialMeshObserver_RaiseMeshRemoved_XRTK_Definitions_SpatialAwarenessSystem_SpatialMeshObject_ - commentId: M:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.RaiseMeshRemoved(XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject) - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.RaiseMeshRemoved(XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject) - nameWithType: IMixedRealitySpatialMeshObserver.RaiseMeshRemoved(SpatialMeshObject) -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.RaiseMeshRemoved* - name: RaiseMeshRemoved - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialMeshObserver_RaiseMeshRemoved_ - commentId: Overload:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.RaiseMeshRemoved - isSpec: "True" - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.RaiseMeshRemoved - nameWithType: IMixedRealitySpatialMeshObserver.RaiseMeshRemoved -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.RaiseMeshUpdated(XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject) - name: RaiseMeshUpdated(SpatialMeshObject) - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialMeshObserver_RaiseMeshUpdated_XRTK_Definitions_SpatialAwarenessSystem_SpatialMeshObject_ - commentId: M:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.RaiseMeshUpdated(XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject) - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.RaiseMeshUpdated(XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject) - nameWithType: IMixedRealitySpatialMeshObserver.RaiseMeshUpdated(SpatialMeshObject) -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.RaiseMeshUpdated* - name: RaiseMeshUpdated - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialMeshObserver_RaiseMeshUpdated_ - commentId: Overload:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.RaiseMeshUpdated - isSpec: "True" - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.RaiseMeshUpdated - nameWithType: IMixedRealitySpatialMeshObserver.RaiseMeshUpdated -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.SpatialMeshObjects - name: SpatialMeshObjects - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialMeshObserver_SpatialMeshObjects - commentId: P:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.SpatialMeshObjects - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.SpatialMeshObjects - nameWithType: IMixedRealitySpatialMeshObserver.SpatialMeshObjects -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.SpatialMeshObjects* - name: SpatialMeshObjects - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialMeshObserver_SpatialMeshObjects_ - commentId: Overload:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.SpatialMeshObjects - isSpec: "True" - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver.SpatialMeshObjects - nameWithType: IMixedRealitySpatialMeshObserver.SpatialMeshObjects -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver - name: IMixedRealitySpatialSurfaceObserver - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.html - commentId: T:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver - nameWithType: IMixedRealitySpatialSurfaceObserver -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.CeilingSurfaceMaterial - name: CeilingSurfaceMaterial - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialSurfaceObserver_CeilingSurfaceMaterial - commentId: P:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.CeilingSurfaceMaterial - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.CeilingSurfaceMaterial - nameWithType: IMixedRealitySpatialSurfaceObserver.CeilingSurfaceMaterial -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.CeilingSurfaceMaterial* - name: CeilingSurfaceMaterial - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialSurfaceObserver_CeilingSurfaceMaterial_ - commentId: Overload:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.CeilingSurfaceMaterial - isSpec: "True" - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.CeilingSurfaceMaterial - nameWithType: IMixedRealitySpatialSurfaceObserver.CeilingSurfaceMaterial -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.DisplayCeilingSurfaces - name: DisplayCeilingSurfaces - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialSurfaceObserver_DisplayCeilingSurfaces - commentId: P:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.DisplayCeilingSurfaces - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.DisplayCeilingSurfaces - nameWithType: IMixedRealitySpatialSurfaceObserver.DisplayCeilingSurfaces -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.DisplayCeilingSurfaces* - name: DisplayCeilingSurfaces - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialSurfaceObserver_DisplayCeilingSurfaces_ - commentId: Overload:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.DisplayCeilingSurfaces - isSpec: "True" - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.DisplayCeilingSurfaces - nameWithType: IMixedRealitySpatialSurfaceObserver.DisplayCeilingSurfaces -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.DisplayFloorSurfaces - name: DisplayFloorSurfaces - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialSurfaceObserver_DisplayFloorSurfaces - commentId: P:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.DisplayFloorSurfaces - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.DisplayFloorSurfaces - nameWithType: IMixedRealitySpatialSurfaceObserver.DisplayFloorSurfaces -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.DisplayFloorSurfaces* - name: DisplayFloorSurfaces - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialSurfaceObserver_DisplayFloorSurfaces_ - commentId: Overload:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.DisplayFloorSurfaces - isSpec: "True" - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.DisplayFloorSurfaces - nameWithType: IMixedRealitySpatialSurfaceObserver.DisplayFloorSurfaces -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.DisplayPlatformSurfaces - name: DisplayPlatformSurfaces - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialSurfaceObserver_DisplayPlatformSurfaces - commentId: P:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.DisplayPlatformSurfaces - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.DisplayPlatformSurfaces - nameWithType: IMixedRealitySpatialSurfaceObserver.DisplayPlatformSurfaces -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.DisplayPlatformSurfaces* - name: DisplayPlatformSurfaces - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialSurfaceObserver_DisplayPlatformSurfaces_ - commentId: Overload:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.DisplayPlatformSurfaces - isSpec: "True" - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.DisplayPlatformSurfaces - nameWithType: IMixedRealitySpatialSurfaceObserver.DisplayPlatformSurfaces -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.DisplayWallSurfaces - name: DisplayWallSurfaces - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialSurfaceObserver_DisplayWallSurfaces - commentId: P:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.DisplayWallSurfaces - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.DisplayWallSurfaces - nameWithType: IMixedRealitySpatialSurfaceObserver.DisplayWallSurfaces -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.DisplayWallSurfaces* - name: DisplayWallSurfaces - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialSurfaceObserver_DisplayWallSurfaces_ - commentId: Overload:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.DisplayWallSurfaces - isSpec: "True" - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.DisplayWallSurfaces - nameWithType: IMixedRealitySpatialSurfaceObserver.DisplayWallSurfaces -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.FloorSurfaceMaterial - name: FloorSurfaceMaterial - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialSurfaceObserver_FloorSurfaceMaterial - commentId: P:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.FloorSurfaceMaterial - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.FloorSurfaceMaterial - nameWithType: IMixedRealitySpatialSurfaceObserver.FloorSurfaceMaterial -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.FloorSurfaceMaterial* - name: FloorSurfaceMaterial - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialSurfaceObserver_FloorSurfaceMaterial_ - commentId: Overload:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.FloorSurfaceMaterial - isSpec: "True" - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.FloorSurfaceMaterial - nameWithType: IMixedRealitySpatialSurfaceObserver.FloorSurfaceMaterial -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.PlanarSurfaces - name: PlanarSurfaces - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialSurfaceObserver_PlanarSurfaces - commentId: P:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.PlanarSurfaces - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.PlanarSurfaces - nameWithType: IMixedRealitySpatialSurfaceObserver.PlanarSurfaces -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.PlanarSurfaces* - name: PlanarSurfaces - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialSurfaceObserver_PlanarSurfaces_ - commentId: Overload:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.PlanarSurfaces - isSpec: "True" - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.PlanarSurfaces - nameWithType: IMixedRealitySpatialSurfaceObserver.PlanarSurfaces -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.PlatformSurfaceMaterial - name: PlatformSurfaceMaterial - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialSurfaceObserver_PlatformSurfaceMaterial - commentId: P:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.PlatformSurfaceMaterial - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.PlatformSurfaceMaterial - nameWithType: IMixedRealitySpatialSurfaceObserver.PlatformSurfaceMaterial -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.PlatformSurfaceMaterial* - name: PlatformSurfaceMaterial - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialSurfaceObserver_PlatformSurfaceMaterial_ - commentId: Overload:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.PlatformSurfaceMaterial - isSpec: "True" - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.PlatformSurfaceMaterial - nameWithType: IMixedRealitySpatialSurfaceObserver.PlatformSurfaceMaterial -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.SurfaceFindingMinimumArea - name: SurfaceFindingMinimumArea - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialSurfaceObserver_SurfaceFindingMinimumArea - commentId: P:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.SurfaceFindingMinimumArea - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.SurfaceFindingMinimumArea - nameWithType: IMixedRealitySpatialSurfaceObserver.SurfaceFindingMinimumArea -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.SurfaceFindingMinimumArea* - name: SurfaceFindingMinimumArea - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialSurfaceObserver_SurfaceFindingMinimumArea_ - commentId: Overload:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.SurfaceFindingMinimumArea - isSpec: "True" - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.SurfaceFindingMinimumArea - nameWithType: IMixedRealitySpatialSurfaceObserver.SurfaceFindingMinimumArea -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.WallSurfaceMaterial - name: WallSurfaceMaterial - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialSurfaceObserver_WallSurfaceMaterial - commentId: P:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.WallSurfaceMaterial - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.WallSurfaceMaterial - nameWithType: IMixedRealitySpatialSurfaceObserver.WallSurfaceMaterial -- uid: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.WallSurfaceMaterial* - name: WallSurfaceMaterial - href: api/XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.html#XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialSurfaceObserver_WallSurfaceMaterial_ - commentId: Overload:XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.WallSurfaceMaterial - isSpec: "True" - fullName: XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver.WallSurfaceMaterial - nameWithType: IMixedRealitySpatialSurfaceObserver.WallSurfaceMaterial -- uid: XRTK.Interfaces.Providers.Speech - name: XRTK.Interfaces.Providers.Speech - href: api/XRTK.Interfaces.Providers.Speech.html - commentId: N:XRTK.Interfaces.Providers.Speech - fullName: XRTK.Interfaces.Providers.Speech - nameWithType: XRTK.Interfaces.Providers.Speech -- uid: XRTK.Interfaces.Providers.Speech.IMixedRealityDictationDataProvider - name: IMixedRealityDictationDataProvider - href: api/XRTK.Interfaces.Providers.Speech.IMixedRealityDictationDataProvider.html - commentId: T:XRTK.Interfaces.Providers.Speech.IMixedRealityDictationDataProvider - fullName: XRTK.Interfaces.Providers.Speech.IMixedRealityDictationDataProvider - nameWithType: IMixedRealityDictationDataProvider -- uid: XRTK.Interfaces.Providers.Speech.IMixedRealityDictationDataProvider.IsListening - name: IsListening - href: api/XRTK.Interfaces.Providers.Speech.IMixedRealityDictationDataProvider.html#XRTK_Interfaces_Providers_Speech_IMixedRealityDictationDataProvider_IsListening - commentId: P:XRTK.Interfaces.Providers.Speech.IMixedRealityDictationDataProvider.IsListening - fullName: XRTK.Interfaces.Providers.Speech.IMixedRealityDictationDataProvider.IsListening - nameWithType: IMixedRealityDictationDataProvider.IsListening -- uid: XRTK.Interfaces.Providers.Speech.IMixedRealityDictationDataProvider.IsListening* - name: IsListening - href: api/XRTK.Interfaces.Providers.Speech.IMixedRealityDictationDataProvider.html#XRTK_Interfaces_Providers_Speech_IMixedRealityDictationDataProvider_IsListening_ - commentId: Overload:XRTK.Interfaces.Providers.Speech.IMixedRealityDictationDataProvider.IsListening - isSpec: "True" - fullName: XRTK.Interfaces.Providers.Speech.IMixedRealityDictationDataProvider.IsListening - nameWithType: IMixedRealityDictationDataProvider.IsListening -- uid: XRTK.Interfaces.Providers.Speech.IMixedRealityDictationDataProvider.StartRecording(UnityEngine.GameObject,System.Single,System.Single,System.Int32,System.String) - name: StartRecording(GameObject, Single, Single, Int32, String) - href: api/XRTK.Interfaces.Providers.Speech.IMixedRealityDictationDataProvider.html#XRTK_Interfaces_Providers_Speech_IMixedRealityDictationDataProvider_StartRecording_UnityEngine_GameObject_System_Single_System_Single_System_Int32_System_String_ - commentId: M:XRTK.Interfaces.Providers.Speech.IMixedRealityDictationDataProvider.StartRecording(UnityEngine.GameObject,System.Single,System.Single,System.Int32,System.String) - fullName: XRTK.Interfaces.Providers.Speech.IMixedRealityDictationDataProvider.StartRecording(UnityEngine.GameObject, System.Single, System.Single, System.Int32, System.String) - nameWithType: IMixedRealityDictationDataProvider.StartRecording(GameObject, Single, Single, Int32, String) -- uid: XRTK.Interfaces.Providers.Speech.IMixedRealityDictationDataProvider.StartRecording* - name: StartRecording - href: api/XRTK.Interfaces.Providers.Speech.IMixedRealityDictationDataProvider.html#XRTK_Interfaces_Providers_Speech_IMixedRealityDictationDataProvider_StartRecording_ - commentId: Overload:XRTK.Interfaces.Providers.Speech.IMixedRealityDictationDataProvider.StartRecording - isSpec: "True" - fullName: XRTK.Interfaces.Providers.Speech.IMixedRealityDictationDataProvider.StartRecording - nameWithType: IMixedRealityDictationDataProvider.StartRecording -- uid: XRTK.Interfaces.Providers.Speech.IMixedRealityDictationDataProvider.StartRecordingAsync(UnityEngine.GameObject,System.Single,System.Single,System.Int32,System.String) - name: StartRecordingAsync(GameObject, Single, Single, Int32, String) - href: api/XRTK.Interfaces.Providers.Speech.IMixedRealityDictationDataProvider.html#XRTK_Interfaces_Providers_Speech_IMixedRealityDictationDataProvider_StartRecordingAsync_UnityEngine_GameObject_System_Single_System_Single_System_Int32_System_String_ - commentId: M:XRTK.Interfaces.Providers.Speech.IMixedRealityDictationDataProvider.StartRecordingAsync(UnityEngine.GameObject,System.Single,System.Single,System.Int32,System.String) - fullName: XRTK.Interfaces.Providers.Speech.IMixedRealityDictationDataProvider.StartRecordingAsync(UnityEngine.GameObject, System.Single, System.Single, System.Int32, System.String) - nameWithType: IMixedRealityDictationDataProvider.StartRecordingAsync(GameObject, Single, Single, Int32, String) -- uid: XRTK.Interfaces.Providers.Speech.IMixedRealityDictationDataProvider.StartRecordingAsync* - name: StartRecordingAsync - href: api/XRTK.Interfaces.Providers.Speech.IMixedRealityDictationDataProvider.html#XRTK_Interfaces_Providers_Speech_IMixedRealityDictationDataProvider_StartRecordingAsync_ - commentId: Overload:XRTK.Interfaces.Providers.Speech.IMixedRealityDictationDataProvider.StartRecordingAsync - isSpec: "True" - fullName: XRTK.Interfaces.Providers.Speech.IMixedRealityDictationDataProvider.StartRecordingAsync - nameWithType: IMixedRealityDictationDataProvider.StartRecordingAsync -- uid: XRTK.Interfaces.Providers.Speech.IMixedRealityDictationDataProvider.StopRecording - name: StopRecording() - href: api/XRTK.Interfaces.Providers.Speech.IMixedRealityDictationDataProvider.html#XRTK_Interfaces_Providers_Speech_IMixedRealityDictationDataProvider_StopRecording - commentId: M:XRTK.Interfaces.Providers.Speech.IMixedRealityDictationDataProvider.StopRecording - fullName: XRTK.Interfaces.Providers.Speech.IMixedRealityDictationDataProvider.StopRecording() - nameWithType: IMixedRealityDictationDataProvider.StopRecording() -- uid: XRTK.Interfaces.Providers.Speech.IMixedRealityDictationDataProvider.StopRecording* - name: StopRecording - href: api/XRTK.Interfaces.Providers.Speech.IMixedRealityDictationDataProvider.html#XRTK_Interfaces_Providers_Speech_IMixedRealityDictationDataProvider_StopRecording_ - commentId: Overload:XRTK.Interfaces.Providers.Speech.IMixedRealityDictationDataProvider.StopRecording - isSpec: "True" - fullName: XRTK.Interfaces.Providers.Speech.IMixedRealityDictationDataProvider.StopRecording - nameWithType: IMixedRealityDictationDataProvider.StopRecording -- uid: XRTK.Interfaces.Providers.Speech.IMixedRealityDictationDataProvider.StopRecordingAsync - name: StopRecordingAsync() - href: api/XRTK.Interfaces.Providers.Speech.IMixedRealityDictationDataProvider.html#XRTK_Interfaces_Providers_Speech_IMixedRealityDictationDataProvider_StopRecordingAsync - commentId: M:XRTK.Interfaces.Providers.Speech.IMixedRealityDictationDataProvider.StopRecordingAsync - fullName: XRTK.Interfaces.Providers.Speech.IMixedRealityDictationDataProvider.StopRecordingAsync() - nameWithType: IMixedRealityDictationDataProvider.StopRecordingAsync() -- uid: XRTK.Interfaces.Providers.Speech.IMixedRealityDictationDataProvider.StopRecordingAsync* - name: StopRecordingAsync - href: api/XRTK.Interfaces.Providers.Speech.IMixedRealityDictationDataProvider.html#XRTK_Interfaces_Providers_Speech_IMixedRealityDictationDataProvider_StopRecordingAsync_ - commentId: Overload:XRTK.Interfaces.Providers.Speech.IMixedRealityDictationDataProvider.StopRecordingAsync - isSpec: "True" - fullName: XRTK.Interfaces.Providers.Speech.IMixedRealityDictationDataProvider.StopRecordingAsync - nameWithType: IMixedRealityDictationDataProvider.StopRecordingAsync -- uid: XRTK.Interfaces.Providers.Speech.IMixedRealitySpeechDataProvider - name: IMixedRealitySpeechDataProvider - href: api/XRTK.Interfaces.Providers.Speech.IMixedRealitySpeechDataProvider.html - commentId: T:XRTK.Interfaces.Providers.Speech.IMixedRealitySpeechDataProvider - fullName: XRTK.Interfaces.Providers.Speech.IMixedRealitySpeechDataProvider - nameWithType: IMixedRealitySpeechDataProvider -- uid: XRTK.Interfaces.Providers.Speech.IMixedRealitySpeechDataProvider.IsRecognitionActive - name: IsRecognitionActive - href: api/XRTK.Interfaces.Providers.Speech.IMixedRealitySpeechDataProvider.html#XRTK_Interfaces_Providers_Speech_IMixedRealitySpeechDataProvider_IsRecognitionActive - commentId: P:XRTK.Interfaces.Providers.Speech.IMixedRealitySpeechDataProvider.IsRecognitionActive - fullName: XRTK.Interfaces.Providers.Speech.IMixedRealitySpeechDataProvider.IsRecognitionActive - nameWithType: IMixedRealitySpeechDataProvider.IsRecognitionActive -- uid: XRTK.Interfaces.Providers.Speech.IMixedRealitySpeechDataProvider.IsRecognitionActive* - name: IsRecognitionActive - href: api/XRTK.Interfaces.Providers.Speech.IMixedRealitySpeechDataProvider.html#XRTK_Interfaces_Providers_Speech_IMixedRealitySpeechDataProvider_IsRecognitionActive_ - commentId: Overload:XRTK.Interfaces.Providers.Speech.IMixedRealitySpeechDataProvider.IsRecognitionActive - isSpec: "True" - fullName: XRTK.Interfaces.Providers.Speech.IMixedRealitySpeechDataProvider.IsRecognitionActive - nameWithType: IMixedRealitySpeechDataProvider.IsRecognitionActive -- uid: XRTK.Interfaces.Providers.Speech.IMixedRealitySpeechDataProvider.StartRecognition - name: StartRecognition() - href: api/XRTK.Interfaces.Providers.Speech.IMixedRealitySpeechDataProvider.html#XRTK_Interfaces_Providers_Speech_IMixedRealitySpeechDataProvider_StartRecognition - commentId: M:XRTK.Interfaces.Providers.Speech.IMixedRealitySpeechDataProvider.StartRecognition - fullName: XRTK.Interfaces.Providers.Speech.IMixedRealitySpeechDataProvider.StartRecognition() - nameWithType: IMixedRealitySpeechDataProvider.StartRecognition() -- uid: XRTK.Interfaces.Providers.Speech.IMixedRealitySpeechDataProvider.StartRecognition* - name: StartRecognition - href: api/XRTK.Interfaces.Providers.Speech.IMixedRealitySpeechDataProvider.html#XRTK_Interfaces_Providers_Speech_IMixedRealitySpeechDataProvider_StartRecognition_ - commentId: Overload:XRTK.Interfaces.Providers.Speech.IMixedRealitySpeechDataProvider.StartRecognition - isSpec: "True" - fullName: XRTK.Interfaces.Providers.Speech.IMixedRealitySpeechDataProvider.StartRecognition - nameWithType: IMixedRealitySpeechDataProvider.StartRecognition -- uid: XRTK.Interfaces.Providers.Speech.IMixedRealitySpeechDataProvider.StopRecognition - name: StopRecognition() - href: api/XRTK.Interfaces.Providers.Speech.IMixedRealitySpeechDataProvider.html#XRTK_Interfaces_Providers_Speech_IMixedRealitySpeechDataProvider_StopRecognition - commentId: M:XRTK.Interfaces.Providers.Speech.IMixedRealitySpeechDataProvider.StopRecognition - fullName: XRTK.Interfaces.Providers.Speech.IMixedRealitySpeechDataProvider.StopRecognition() - nameWithType: IMixedRealitySpeechDataProvider.StopRecognition() -- uid: XRTK.Interfaces.Providers.Speech.IMixedRealitySpeechDataProvider.StopRecognition* - name: StopRecognition - href: api/XRTK.Interfaces.Providers.Speech.IMixedRealitySpeechDataProvider.html#XRTK_Interfaces_Providers_Speech_IMixedRealitySpeechDataProvider_StopRecognition_ - commentId: Overload:XRTK.Interfaces.Providers.Speech.IMixedRealitySpeechDataProvider.StopRecognition - isSpec: "True" - fullName: XRTK.Interfaces.Providers.Speech.IMixedRealitySpeechDataProvider.StopRecognition - nameWithType: IMixedRealitySpeechDataProvider.StopRecognition -- uid: XRTK.Interfaces.SpatialAwarenessSystem - name: XRTK.Interfaces.SpatialAwarenessSystem - href: api/XRTK.Interfaces.SpatialAwarenessSystem.html - commentId: N:XRTK.Interfaces.SpatialAwarenessSystem - fullName: XRTK.Interfaces.SpatialAwarenessSystem - nameWithType: XRTK.Interfaces.SpatialAwarenessSystem -- uid: XRTK.Interfaces.SpatialAwarenessSystem.Handlers - name: XRTK.Interfaces.SpatialAwarenessSystem.Handlers - href: api/XRTK.Interfaces.SpatialAwarenessSystem.Handlers.html - commentId: N:XRTK.Interfaces.SpatialAwarenessSystem.Handlers - fullName: XRTK.Interfaces.SpatialAwarenessSystem.Handlers - nameWithType: XRTK.Interfaces.SpatialAwarenessSystem.Handlers -- uid: XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessMeshHandler`1 - name: IMixedRealitySpatialAwarenessMeshHandler - href: api/XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessMeshHandler-1.html - commentId: T:XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessMeshHandler`1 - name.vb: IMixedRealitySpatialAwarenessMeshHandler(Of T) - fullName: XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessMeshHandler - fullName.vb: XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessMeshHandler(Of T) - nameWithType: IMixedRealitySpatialAwarenessMeshHandler - nameWithType.vb: IMixedRealitySpatialAwarenessMeshHandler(Of T) -- uid: XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessMeshHandler`1.OnMeshAdded(XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData{`0}) - name: OnMeshAdded(MixedRealitySpatialAwarenessEventData) - href: api/XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessMeshHandler-1.html#XRTK_Interfaces_SpatialAwarenessSystem_Handlers_IMixedRealitySpatialAwarenessMeshHandler_1_OnMeshAdded_XRTK_EventDatum_SpatialAwarenessSystem_MixedRealitySpatialAwarenessEventData__0__ - commentId: M:XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessMeshHandler`1.OnMeshAdded(XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData{`0}) - name.vb: OnMeshAdded(MixedRealitySpatialAwarenessEventData(Of T)) - fullName: XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessMeshHandler.OnMeshAdded(XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData) - fullName.vb: XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessMeshHandler(Of T).OnMeshAdded(XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData(Of T)) - nameWithType: IMixedRealitySpatialAwarenessMeshHandler.OnMeshAdded(MixedRealitySpatialAwarenessEventData) - nameWithType.vb: IMixedRealitySpatialAwarenessMeshHandler(Of T).OnMeshAdded(MixedRealitySpatialAwarenessEventData(Of T)) -- uid: XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessMeshHandler`1.OnMeshAdded* - name: OnMeshAdded - href: api/XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessMeshHandler-1.html#XRTK_Interfaces_SpatialAwarenessSystem_Handlers_IMixedRealitySpatialAwarenessMeshHandler_1_OnMeshAdded_ - commentId: Overload:XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessMeshHandler`1.OnMeshAdded - isSpec: "True" - fullName: XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessMeshHandler.OnMeshAdded - fullName.vb: XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessMeshHandler(Of T).OnMeshAdded - nameWithType: IMixedRealitySpatialAwarenessMeshHandler.OnMeshAdded - nameWithType.vb: IMixedRealitySpatialAwarenessMeshHandler(Of T).OnMeshAdded -- uid: XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessMeshHandler`1.OnMeshRemoved(XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData{`0}) - name: OnMeshRemoved(MixedRealitySpatialAwarenessEventData) - href: api/XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessMeshHandler-1.html#XRTK_Interfaces_SpatialAwarenessSystem_Handlers_IMixedRealitySpatialAwarenessMeshHandler_1_OnMeshRemoved_XRTK_EventDatum_SpatialAwarenessSystem_MixedRealitySpatialAwarenessEventData__0__ - commentId: M:XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessMeshHandler`1.OnMeshRemoved(XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData{`0}) - name.vb: OnMeshRemoved(MixedRealitySpatialAwarenessEventData(Of T)) - fullName: XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessMeshHandler.OnMeshRemoved(XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData) - fullName.vb: XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessMeshHandler(Of T).OnMeshRemoved(XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData(Of T)) - nameWithType: IMixedRealitySpatialAwarenessMeshHandler.OnMeshRemoved(MixedRealitySpatialAwarenessEventData) - nameWithType.vb: IMixedRealitySpatialAwarenessMeshHandler(Of T).OnMeshRemoved(MixedRealitySpatialAwarenessEventData(Of T)) -- uid: XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessMeshHandler`1.OnMeshRemoved* - name: OnMeshRemoved - href: api/XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessMeshHandler-1.html#XRTK_Interfaces_SpatialAwarenessSystem_Handlers_IMixedRealitySpatialAwarenessMeshHandler_1_OnMeshRemoved_ - commentId: Overload:XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessMeshHandler`1.OnMeshRemoved - isSpec: "True" - fullName: XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessMeshHandler.OnMeshRemoved - fullName.vb: XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessMeshHandler(Of T).OnMeshRemoved - nameWithType: IMixedRealitySpatialAwarenessMeshHandler.OnMeshRemoved - nameWithType.vb: IMixedRealitySpatialAwarenessMeshHandler(Of T).OnMeshRemoved -- uid: XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessMeshHandler`1.OnMeshUpdated(XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData{`0}) - name: OnMeshUpdated(MixedRealitySpatialAwarenessEventData) - href: api/XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessMeshHandler-1.html#XRTK_Interfaces_SpatialAwarenessSystem_Handlers_IMixedRealitySpatialAwarenessMeshHandler_1_OnMeshUpdated_XRTK_EventDatum_SpatialAwarenessSystem_MixedRealitySpatialAwarenessEventData__0__ - commentId: M:XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessMeshHandler`1.OnMeshUpdated(XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData{`0}) - name.vb: OnMeshUpdated(MixedRealitySpatialAwarenessEventData(Of T)) - fullName: XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessMeshHandler.OnMeshUpdated(XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData) - fullName.vb: XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessMeshHandler(Of T).OnMeshUpdated(XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData(Of T)) - nameWithType: IMixedRealitySpatialAwarenessMeshHandler.OnMeshUpdated(MixedRealitySpatialAwarenessEventData) - nameWithType.vb: IMixedRealitySpatialAwarenessMeshHandler(Of T).OnMeshUpdated(MixedRealitySpatialAwarenessEventData(Of T)) -- uid: XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessMeshHandler`1.OnMeshUpdated* - name: OnMeshUpdated - href: api/XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessMeshHandler-1.html#XRTK_Interfaces_SpatialAwarenessSystem_Handlers_IMixedRealitySpatialAwarenessMeshHandler_1_OnMeshUpdated_ - commentId: Overload:XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessMeshHandler`1.OnMeshUpdated - isSpec: "True" - fullName: XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessMeshHandler.OnMeshUpdated - fullName.vb: XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessMeshHandler(Of T).OnMeshUpdated - nameWithType: IMixedRealitySpatialAwarenessMeshHandler.OnMeshUpdated - nameWithType.vb: IMixedRealitySpatialAwarenessMeshHandler(Of T).OnMeshUpdated -- uid: XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessSurfaceFindingHandler`1 - name: IMixedRealitySpatialAwarenessSurfaceFindingHandler - href: api/XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessSurfaceFindingHandler-1.html - commentId: T:XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessSurfaceFindingHandler`1 - name.vb: IMixedRealitySpatialAwarenessSurfaceFindingHandler(Of T) - fullName: XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessSurfaceFindingHandler - fullName.vb: XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessSurfaceFindingHandler(Of T) - nameWithType: IMixedRealitySpatialAwarenessSurfaceFindingHandler - nameWithType.vb: IMixedRealitySpatialAwarenessSurfaceFindingHandler(Of T) -- uid: XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessSurfaceFindingHandler`1.OnSurfaceAdded(XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData{`0}) - name: OnSurfaceAdded(MixedRealitySpatialAwarenessEventData) - href: api/XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessSurfaceFindingHandler-1.html#XRTK_Interfaces_SpatialAwarenessSystem_Handlers_IMixedRealitySpatialAwarenessSurfaceFindingHandler_1_OnSurfaceAdded_XRTK_EventDatum_SpatialAwarenessSystem_MixedRealitySpatialAwarenessEventData__0__ - commentId: M:XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessSurfaceFindingHandler`1.OnSurfaceAdded(XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData{`0}) - name.vb: OnSurfaceAdded(MixedRealitySpatialAwarenessEventData(Of T)) - fullName: XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessSurfaceFindingHandler.OnSurfaceAdded(XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData) - fullName.vb: XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessSurfaceFindingHandler(Of T).OnSurfaceAdded(XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData(Of T)) - nameWithType: IMixedRealitySpatialAwarenessSurfaceFindingHandler.OnSurfaceAdded(MixedRealitySpatialAwarenessEventData) - nameWithType.vb: IMixedRealitySpatialAwarenessSurfaceFindingHandler(Of T).OnSurfaceAdded(MixedRealitySpatialAwarenessEventData(Of T)) -- uid: XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessSurfaceFindingHandler`1.OnSurfaceAdded* - name: OnSurfaceAdded - href: api/XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessSurfaceFindingHandler-1.html#XRTK_Interfaces_SpatialAwarenessSystem_Handlers_IMixedRealitySpatialAwarenessSurfaceFindingHandler_1_OnSurfaceAdded_ - commentId: Overload:XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessSurfaceFindingHandler`1.OnSurfaceAdded - isSpec: "True" - fullName: XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessSurfaceFindingHandler.OnSurfaceAdded - fullName.vb: XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessSurfaceFindingHandler(Of T).OnSurfaceAdded - nameWithType: IMixedRealitySpatialAwarenessSurfaceFindingHandler.OnSurfaceAdded - nameWithType.vb: IMixedRealitySpatialAwarenessSurfaceFindingHandler(Of T).OnSurfaceAdded -- uid: XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessSurfaceFindingHandler`1.OnSurfaceRemoved(XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData{`0}) - name: OnSurfaceRemoved(MixedRealitySpatialAwarenessEventData) - href: api/XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessSurfaceFindingHandler-1.html#XRTK_Interfaces_SpatialAwarenessSystem_Handlers_IMixedRealitySpatialAwarenessSurfaceFindingHandler_1_OnSurfaceRemoved_XRTK_EventDatum_SpatialAwarenessSystem_MixedRealitySpatialAwarenessEventData__0__ - commentId: M:XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessSurfaceFindingHandler`1.OnSurfaceRemoved(XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData{`0}) - name.vb: OnSurfaceRemoved(MixedRealitySpatialAwarenessEventData(Of T)) - fullName: XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessSurfaceFindingHandler.OnSurfaceRemoved(XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData) - fullName.vb: XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessSurfaceFindingHandler(Of T).OnSurfaceRemoved(XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData(Of T)) - nameWithType: IMixedRealitySpatialAwarenessSurfaceFindingHandler.OnSurfaceRemoved(MixedRealitySpatialAwarenessEventData) - nameWithType.vb: IMixedRealitySpatialAwarenessSurfaceFindingHandler(Of T).OnSurfaceRemoved(MixedRealitySpatialAwarenessEventData(Of T)) -- uid: XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessSurfaceFindingHandler`1.OnSurfaceRemoved* - name: OnSurfaceRemoved - href: api/XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessSurfaceFindingHandler-1.html#XRTK_Interfaces_SpatialAwarenessSystem_Handlers_IMixedRealitySpatialAwarenessSurfaceFindingHandler_1_OnSurfaceRemoved_ - commentId: Overload:XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessSurfaceFindingHandler`1.OnSurfaceRemoved - isSpec: "True" - fullName: XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessSurfaceFindingHandler.OnSurfaceRemoved - fullName.vb: XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessSurfaceFindingHandler(Of T).OnSurfaceRemoved - nameWithType: IMixedRealitySpatialAwarenessSurfaceFindingHandler.OnSurfaceRemoved - nameWithType.vb: IMixedRealitySpatialAwarenessSurfaceFindingHandler(Of T).OnSurfaceRemoved -- uid: XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessSurfaceFindingHandler`1.OnSurfaceUpdated(XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData{`0}) - name: OnSurfaceUpdated(MixedRealitySpatialAwarenessEventData) - href: api/XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessSurfaceFindingHandler-1.html#XRTK_Interfaces_SpatialAwarenessSystem_Handlers_IMixedRealitySpatialAwarenessSurfaceFindingHandler_1_OnSurfaceUpdated_XRTK_EventDatum_SpatialAwarenessSystem_MixedRealitySpatialAwarenessEventData__0__ - commentId: M:XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessSurfaceFindingHandler`1.OnSurfaceUpdated(XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData{`0}) - name.vb: OnSurfaceUpdated(MixedRealitySpatialAwarenessEventData(Of T)) - fullName: XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessSurfaceFindingHandler.OnSurfaceUpdated(XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData) - fullName.vb: XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessSurfaceFindingHandler(Of T).OnSurfaceUpdated(XRTK.EventDatum.SpatialAwarenessSystem.MixedRealitySpatialAwarenessEventData(Of T)) - nameWithType: IMixedRealitySpatialAwarenessSurfaceFindingHandler.OnSurfaceUpdated(MixedRealitySpatialAwarenessEventData) - nameWithType.vb: IMixedRealitySpatialAwarenessSurfaceFindingHandler(Of T).OnSurfaceUpdated(MixedRealitySpatialAwarenessEventData(Of T)) -- uid: XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessSurfaceFindingHandler`1.OnSurfaceUpdated* - name: OnSurfaceUpdated - href: api/XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessSurfaceFindingHandler-1.html#XRTK_Interfaces_SpatialAwarenessSystem_Handlers_IMixedRealitySpatialAwarenessSurfaceFindingHandler_1_OnSurfaceUpdated_ - commentId: Overload:XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessSurfaceFindingHandler`1.OnSurfaceUpdated - isSpec: "True" - fullName: XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessSurfaceFindingHandler.OnSurfaceUpdated - fullName.vb: XRTK.Interfaces.SpatialAwarenessSystem.Handlers.IMixedRealitySpatialAwarenessSurfaceFindingHandler(Of T).OnSurfaceUpdated - nameWithType: IMixedRealitySpatialAwarenessSurfaceFindingHandler.OnSurfaceUpdated - nameWithType.vb: IMixedRealitySpatialAwarenessSurfaceFindingHandler(Of T).OnSurfaceUpdated -- uid: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem - name: IMixedRealitySpatialAwarenessSystem - href: api/XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.html - commentId: T:XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem - fullName: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem - nameWithType: IMixedRealitySpatialAwarenessSystem -- uid: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.DetectedSpatialObservers - name: DetectedSpatialObservers - href: api/XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.html#XRTK_Interfaces_SpatialAwarenessSystem_IMixedRealitySpatialAwarenessSystem_DetectedSpatialObservers - commentId: P:XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.DetectedSpatialObservers - fullName: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.DetectedSpatialObservers - nameWithType: IMixedRealitySpatialAwarenessSystem.DetectedSpatialObservers -- uid: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.DetectedSpatialObservers* - name: DetectedSpatialObservers - href: api/XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.html#XRTK_Interfaces_SpatialAwarenessSystem_IMixedRealitySpatialAwarenessSystem_DetectedSpatialObservers_ - commentId: Overload:XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.DetectedSpatialObservers - isSpec: "True" - fullName: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.DetectedSpatialObservers - nameWithType: IMixedRealitySpatialAwarenessSystem.DetectedSpatialObservers -- uid: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.GenerateNewObserverId - name: GenerateNewObserverId() - href: api/XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.html#XRTK_Interfaces_SpatialAwarenessSystem_IMixedRealitySpatialAwarenessSystem_GenerateNewObserverId - commentId: M:XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.GenerateNewObserverId - fullName: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.GenerateNewObserverId() - nameWithType: IMixedRealitySpatialAwarenessSystem.GenerateNewObserverId() -- uid: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.GenerateNewObserverId* - name: GenerateNewObserverId - href: api/XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.html#XRTK_Interfaces_SpatialAwarenessSystem_IMixedRealitySpatialAwarenessSystem_GenerateNewObserverId_ - commentId: Overload:XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.GenerateNewObserverId - isSpec: "True" - fullName: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.GenerateNewObserverId - nameWithType: IMixedRealitySpatialAwarenessSystem.GenerateNewObserverId -- uid: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.IsObserverRunning(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider) - name: IsObserverRunning(IMixedRealitySpatialAwarenessDataProvider) - href: api/XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.html#XRTK_Interfaces_SpatialAwarenessSystem_IMixedRealitySpatialAwarenessSystem_IsObserverRunning_XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialAwarenessDataProvider_ - commentId: M:XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.IsObserverRunning(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider) - fullName: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.IsObserverRunning(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider) - nameWithType: IMixedRealitySpatialAwarenessSystem.IsObserverRunning(IMixedRealitySpatialAwarenessDataProvider) -- uid: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.IsObserverRunning* - name: IsObserverRunning - href: api/XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.html#XRTK_Interfaces_SpatialAwarenessSystem_IMixedRealitySpatialAwarenessSystem_IsObserverRunning_ - commentId: Overload:XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.IsObserverRunning - isSpec: "True" - fullName: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.IsObserverRunning - nameWithType: IMixedRealitySpatialAwarenessSystem.IsObserverRunning -- uid: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.RaiseMeshAdded(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver,XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject) - name: RaiseMeshAdded(IMixedRealitySpatialMeshObserver, SpatialMeshObject) - href: api/XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.html#XRTK_Interfaces_SpatialAwarenessSystem_IMixedRealitySpatialAwarenessSystem_RaiseMeshAdded_XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialMeshObserver_XRTK_Definitions_SpatialAwarenessSystem_SpatialMeshObject_ - commentId: M:XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.RaiseMeshAdded(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver,XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject) - fullName: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.RaiseMeshAdded(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver, XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject) - nameWithType: IMixedRealitySpatialAwarenessSystem.RaiseMeshAdded(IMixedRealitySpatialMeshObserver, SpatialMeshObject) -- uid: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.RaiseMeshAdded* - name: RaiseMeshAdded - href: api/XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.html#XRTK_Interfaces_SpatialAwarenessSystem_IMixedRealitySpatialAwarenessSystem_RaiseMeshAdded_ - commentId: Overload:XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.RaiseMeshAdded - isSpec: "True" - fullName: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.RaiseMeshAdded - nameWithType: IMixedRealitySpatialAwarenessSystem.RaiseMeshAdded -- uid: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.RaiseMeshRemoved(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver,XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject) - name: RaiseMeshRemoved(IMixedRealitySpatialMeshObserver, SpatialMeshObject) - href: api/XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.html#XRTK_Interfaces_SpatialAwarenessSystem_IMixedRealitySpatialAwarenessSystem_RaiseMeshRemoved_XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialMeshObserver_XRTK_Definitions_SpatialAwarenessSystem_SpatialMeshObject_ - commentId: M:XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.RaiseMeshRemoved(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver,XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject) - fullName: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.RaiseMeshRemoved(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver, XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject) - nameWithType: IMixedRealitySpatialAwarenessSystem.RaiseMeshRemoved(IMixedRealitySpatialMeshObserver, SpatialMeshObject) -- uid: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.RaiseMeshRemoved* - name: RaiseMeshRemoved - href: api/XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.html#XRTK_Interfaces_SpatialAwarenessSystem_IMixedRealitySpatialAwarenessSystem_RaiseMeshRemoved_ - commentId: Overload:XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.RaiseMeshRemoved - isSpec: "True" - fullName: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.RaiseMeshRemoved - nameWithType: IMixedRealitySpatialAwarenessSystem.RaiseMeshRemoved -- uid: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.RaiseMeshUpdated(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver,XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject) - name: RaiseMeshUpdated(IMixedRealitySpatialMeshObserver, SpatialMeshObject) - href: api/XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.html#XRTK_Interfaces_SpatialAwarenessSystem_IMixedRealitySpatialAwarenessSystem_RaiseMeshUpdated_XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialMeshObserver_XRTK_Definitions_SpatialAwarenessSystem_SpatialMeshObject_ - commentId: M:XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.RaiseMeshUpdated(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver,XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject) - fullName: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.RaiseMeshUpdated(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver, XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject) - nameWithType: IMixedRealitySpatialAwarenessSystem.RaiseMeshUpdated(IMixedRealitySpatialMeshObserver, SpatialMeshObject) -- uid: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.RaiseMeshUpdated* - name: RaiseMeshUpdated - href: api/XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.html#XRTK_Interfaces_SpatialAwarenessSystem_IMixedRealitySpatialAwarenessSystem_RaiseMeshUpdated_ - commentId: Overload:XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.RaiseMeshUpdated - isSpec: "True" - fullName: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.RaiseMeshUpdated - nameWithType: IMixedRealitySpatialAwarenessSystem.RaiseMeshUpdated -- uid: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.RaiseSpatialAwarenessObserverDetected(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider) - name: RaiseSpatialAwarenessObserverDetected(IMixedRealitySpatialAwarenessDataProvider) - href: api/XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.html#XRTK_Interfaces_SpatialAwarenessSystem_IMixedRealitySpatialAwarenessSystem_RaiseSpatialAwarenessObserverDetected_XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialAwarenessDataProvider_ - commentId: M:XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.RaiseSpatialAwarenessObserverDetected(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider) - fullName: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.RaiseSpatialAwarenessObserverDetected(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider) - nameWithType: IMixedRealitySpatialAwarenessSystem.RaiseSpatialAwarenessObserverDetected(IMixedRealitySpatialAwarenessDataProvider) -- uid: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.RaiseSpatialAwarenessObserverDetected* - name: RaiseSpatialAwarenessObserverDetected - href: api/XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.html#XRTK_Interfaces_SpatialAwarenessSystem_IMixedRealitySpatialAwarenessSystem_RaiseSpatialAwarenessObserverDetected_ - commentId: Overload:XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.RaiseSpatialAwarenessObserverDetected - isSpec: "True" - fullName: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.RaiseSpatialAwarenessObserverDetected - nameWithType: IMixedRealitySpatialAwarenessSystem.RaiseSpatialAwarenessObserverDetected -- uid: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.RaiseSpatialAwarenessObserverLost(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider) - name: RaiseSpatialAwarenessObserverLost(IMixedRealitySpatialAwarenessDataProvider) - href: api/XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.html#XRTK_Interfaces_SpatialAwarenessSystem_IMixedRealitySpatialAwarenessSystem_RaiseSpatialAwarenessObserverLost_XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialAwarenessDataProvider_ - commentId: M:XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.RaiseSpatialAwarenessObserverLost(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider) - fullName: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.RaiseSpatialAwarenessObserverLost(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider) - nameWithType: IMixedRealitySpatialAwarenessSystem.RaiseSpatialAwarenessObserverLost(IMixedRealitySpatialAwarenessDataProvider) -- uid: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.RaiseSpatialAwarenessObserverLost* - name: RaiseSpatialAwarenessObserverLost - href: api/XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.html#XRTK_Interfaces_SpatialAwarenessSystem_IMixedRealitySpatialAwarenessSystem_RaiseSpatialAwarenessObserverLost_ - commentId: Overload:XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.RaiseSpatialAwarenessObserverLost - isSpec: "True" - fullName: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.RaiseSpatialAwarenessObserverLost - nameWithType: IMixedRealitySpatialAwarenessSystem.RaiseSpatialAwarenessObserverLost -- uid: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.RaiseSurfaceAdded(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver,System.Guid,UnityEngine.GameObject) - name: RaiseSurfaceAdded(IMixedRealitySpatialSurfaceObserver, Guid, GameObject) - href: api/XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.html#XRTK_Interfaces_SpatialAwarenessSystem_IMixedRealitySpatialAwarenessSystem_RaiseSurfaceAdded_XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialSurfaceObserver_System_Guid_UnityEngine_GameObject_ - commentId: M:XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.RaiseSurfaceAdded(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver,System.Guid,UnityEngine.GameObject) - fullName: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.RaiseSurfaceAdded(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver, System.Guid, UnityEngine.GameObject) - nameWithType: IMixedRealitySpatialAwarenessSystem.RaiseSurfaceAdded(IMixedRealitySpatialSurfaceObserver, Guid, GameObject) -- uid: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.RaiseSurfaceAdded* - name: RaiseSurfaceAdded - href: api/XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.html#XRTK_Interfaces_SpatialAwarenessSystem_IMixedRealitySpatialAwarenessSystem_RaiseSurfaceAdded_ - commentId: Overload:XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.RaiseSurfaceAdded - isSpec: "True" - fullName: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.RaiseSurfaceAdded - nameWithType: IMixedRealitySpatialAwarenessSystem.RaiseSurfaceAdded -- uid: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.RaiseSurfaceRemoved(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver,System.Guid) - name: RaiseSurfaceRemoved(IMixedRealitySpatialSurfaceObserver, Guid) - href: api/XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.html#XRTK_Interfaces_SpatialAwarenessSystem_IMixedRealitySpatialAwarenessSystem_RaiseSurfaceRemoved_XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialSurfaceObserver_System_Guid_ - commentId: M:XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.RaiseSurfaceRemoved(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver,System.Guid) - fullName: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.RaiseSurfaceRemoved(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver, System.Guid) - nameWithType: IMixedRealitySpatialAwarenessSystem.RaiseSurfaceRemoved(IMixedRealitySpatialSurfaceObserver, Guid) -- uid: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.RaiseSurfaceRemoved* - name: RaiseSurfaceRemoved - href: api/XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.html#XRTK_Interfaces_SpatialAwarenessSystem_IMixedRealitySpatialAwarenessSystem_RaiseSurfaceRemoved_ - commentId: Overload:XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.RaiseSurfaceRemoved - isSpec: "True" - fullName: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.RaiseSurfaceRemoved - nameWithType: IMixedRealitySpatialAwarenessSystem.RaiseSurfaceRemoved -- uid: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.RaiseSurfaceUpdated(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver,System.Guid,UnityEngine.GameObject) - name: RaiseSurfaceUpdated(IMixedRealitySpatialSurfaceObserver, Guid, GameObject) - href: api/XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.html#XRTK_Interfaces_SpatialAwarenessSystem_IMixedRealitySpatialAwarenessSystem_RaiseSurfaceUpdated_XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialSurfaceObserver_System_Guid_UnityEngine_GameObject_ - commentId: M:XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.RaiseSurfaceUpdated(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver,System.Guid,UnityEngine.GameObject) - fullName: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.RaiseSurfaceUpdated(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver, System.Guid, UnityEngine.GameObject) - nameWithType: IMixedRealitySpatialAwarenessSystem.RaiseSurfaceUpdated(IMixedRealitySpatialSurfaceObserver, Guid, GameObject) -- uid: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.RaiseSurfaceUpdated* - name: RaiseSurfaceUpdated - href: api/XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.html#XRTK_Interfaces_SpatialAwarenessSystem_IMixedRealitySpatialAwarenessSystem_RaiseSurfaceUpdated_ - commentId: Overload:XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.RaiseSurfaceUpdated - isSpec: "True" - fullName: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.RaiseSurfaceUpdated - nameWithType: IMixedRealitySpatialAwarenessSystem.RaiseSurfaceUpdated -- uid: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.SpatialAwarenessRootParent - name: SpatialAwarenessRootParent - href: api/XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.html#XRTK_Interfaces_SpatialAwarenessSystem_IMixedRealitySpatialAwarenessSystem_SpatialAwarenessRootParent - commentId: P:XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.SpatialAwarenessRootParent - fullName: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.SpatialAwarenessRootParent - nameWithType: IMixedRealitySpatialAwarenessSystem.SpatialAwarenessRootParent -- uid: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.SpatialAwarenessRootParent* - name: SpatialAwarenessRootParent - href: api/XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.html#XRTK_Interfaces_SpatialAwarenessSystem_IMixedRealitySpatialAwarenessSystem_SpatialAwarenessRootParent_ - commentId: Overload:XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.SpatialAwarenessRootParent - isSpec: "True" - fullName: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.SpatialAwarenessRootParent - nameWithType: IMixedRealitySpatialAwarenessSystem.SpatialAwarenessRootParent -- uid: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.SpatialMeshesParent - name: SpatialMeshesParent - href: api/XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.html#XRTK_Interfaces_SpatialAwarenessSystem_IMixedRealitySpatialAwarenessSystem_SpatialMeshesParent - commentId: P:XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.SpatialMeshesParent - fullName: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.SpatialMeshesParent - nameWithType: IMixedRealitySpatialAwarenessSystem.SpatialMeshesParent -- uid: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.SpatialMeshesParent* - name: SpatialMeshesParent - href: api/XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.html#XRTK_Interfaces_SpatialAwarenessSystem_IMixedRealitySpatialAwarenessSystem_SpatialMeshesParent_ - commentId: Overload:XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.SpatialMeshesParent - isSpec: "True" - fullName: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.SpatialMeshesParent - nameWithType: IMixedRealitySpatialAwarenessSystem.SpatialMeshesParent -- uid: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.SpatialMeshVisibility - name: SpatialMeshVisibility - href: api/XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.html#XRTK_Interfaces_SpatialAwarenessSystem_IMixedRealitySpatialAwarenessSystem_SpatialMeshVisibility - commentId: P:XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.SpatialMeshVisibility - fullName: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.SpatialMeshVisibility - nameWithType: IMixedRealitySpatialAwarenessSystem.SpatialMeshVisibility -- uid: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.SpatialMeshVisibility* - name: SpatialMeshVisibility - href: api/XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.html#XRTK_Interfaces_SpatialAwarenessSystem_IMixedRealitySpatialAwarenessSystem_SpatialMeshVisibility_ - commentId: Overload:XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.SpatialMeshVisibility - isSpec: "True" - fullName: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.SpatialMeshVisibility - nameWithType: IMixedRealitySpatialAwarenessSystem.SpatialMeshVisibility -- uid: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.StartObserver(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider) - name: StartObserver(IMixedRealitySpatialAwarenessDataProvider) - href: api/XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.html#XRTK_Interfaces_SpatialAwarenessSystem_IMixedRealitySpatialAwarenessSystem_StartObserver_XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialAwarenessDataProvider_ - commentId: M:XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.StartObserver(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider) - fullName: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.StartObserver(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider) - nameWithType: IMixedRealitySpatialAwarenessSystem.StartObserver(IMixedRealitySpatialAwarenessDataProvider) -- uid: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.StartObserver* - name: StartObserver - href: api/XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.html#XRTK_Interfaces_SpatialAwarenessSystem_IMixedRealitySpatialAwarenessSystem_StartObserver_ - commentId: Overload:XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.StartObserver - isSpec: "True" - fullName: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.StartObserver - nameWithType: IMixedRealitySpatialAwarenessSystem.StartObserver -- uid: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.SurfacesParent - name: SurfacesParent - href: api/XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.html#XRTK_Interfaces_SpatialAwarenessSystem_IMixedRealitySpatialAwarenessSystem_SurfacesParent - commentId: P:XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.SurfacesParent - fullName: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.SurfacesParent - nameWithType: IMixedRealitySpatialAwarenessSystem.SurfacesParent -- uid: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.SurfacesParent* - name: SurfacesParent - href: api/XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.html#XRTK_Interfaces_SpatialAwarenessSystem_IMixedRealitySpatialAwarenessSystem_SurfacesParent_ - commentId: Overload:XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.SurfacesParent - isSpec: "True" - fullName: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.SurfacesParent - nameWithType: IMixedRealitySpatialAwarenessSystem.SurfacesParent -- uid: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.SuspendObserver(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider) - name: SuspendObserver(IMixedRealitySpatialAwarenessDataProvider) - href: api/XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.html#XRTK_Interfaces_SpatialAwarenessSystem_IMixedRealitySpatialAwarenessSystem_SuspendObserver_XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialAwarenessDataProvider_ - commentId: M:XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.SuspendObserver(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider) - fullName: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.SuspendObserver(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider) - nameWithType: IMixedRealitySpatialAwarenessSystem.SuspendObserver(IMixedRealitySpatialAwarenessDataProvider) -- uid: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.SuspendObserver* - name: SuspendObserver - href: api/XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.html#XRTK_Interfaces_SpatialAwarenessSystem_IMixedRealitySpatialAwarenessSystem_SuspendObserver_ - commentId: Overload:XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.SuspendObserver - isSpec: "True" - fullName: XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem.SuspendObserver - nameWithType: IMixedRealitySpatialAwarenessSystem.SuspendObserver -- uid: XRTK.Interfaces.TeleportSystem - name: XRTK.Interfaces.TeleportSystem - href: api/XRTK.Interfaces.TeleportSystem.html - commentId: N:XRTK.Interfaces.TeleportSystem - fullName: XRTK.Interfaces.TeleportSystem - nameWithType: XRTK.Interfaces.TeleportSystem -- uid: XRTK.Interfaces.TeleportSystem.Handlers - name: XRTK.Interfaces.TeleportSystem.Handlers - href: api/XRTK.Interfaces.TeleportSystem.Handlers.html - commentId: N:XRTK.Interfaces.TeleportSystem.Handlers - fullName: XRTK.Interfaces.TeleportSystem.Handlers - nameWithType: XRTK.Interfaces.TeleportSystem.Handlers -- uid: XRTK.Interfaces.TeleportSystem.Handlers.IMixedRealityTeleportHandler - name: IMixedRealityTeleportHandler - href: api/XRTK.Interfaces.TeleportSystem.Handlers.IMixedRealityTeleportHandler.html - commentId: T:XRTK.Interfaces.TeleportSystem.Handlers.IMixedRealityTeleportHandler - fullName: XRTK.Interfaces.TeleportSystem.Handlers.IMixedRealityTeleportHandler - nameWithType: IMixedRealityTeleportHandler -- uid: XRTK.Interfaces.TeleportSystem.Handlers.IMixedRealityTeleportHandler.OnTeleportCanceled(XRTK.EventDatum.Teleport.TeleportEventData) - name: OnTeleportCanceled(TeleportEventData) - href: api/XRTK.Interfaces.TeleportSystem.Handlers.IMixedRealityTeleportHandler.html#XRTK_Interfaces_TeleportSystem_Handlers_IMixedRealityTeleportHandler_OnTeleportCanceled_XRTK_EventDatum_Teleport_TeleportEventData_ - commentId: M:XRTK.Interfaces.TeleportSystem.Handlers.IMixedRealityTeleportHandler.OnTeleportCanceled(XRTK.EventDatum.Teleport.TeleportEventData) - fullName: XRTK.Interfaces.TeleportSystem.Handlers.IMixedRealityTeleportHandler.OnTeleportCanceled(XRTK.EventDatum.Teleport.TeleportEventData) - nameWithType: IMixedRealityTeleportHandler.OnTeleportCanceled(TeleportEventData) -- uid: XRTK.Interfaces.TeleportSystem.Handlers.IMixedRealityTeleportHandler.OnTeleportCanceled* - name: OnTeleportCanceled - href: api/XRTK.Interfaces.TeleportSystem.Handlers.IMixedRealityTeleportHandler.html#XRTK_Interfaces_TeleportSystem_Handlers_IMixedRealityTeleportHandler_OnTeleportCanceled_ - commentId: Overload:XRTK.Interfaces.TeleportSystem.Handlers.IMixedRealityTeleportHandler.OnTeleportCanceled - isSpec: "True" - fullName: XRTK.Interfaces.TeleportSystem.Handlers.IMixedRealityTeleportHandler.OnTeleportCanceled - nameWithType: IMixedRealityTeleportHandler.OnTeleportCanceled -- uid: XRTK.Interfaces.TeleportSystem.Handlers.IMixedRealityTeleportHandler.OnTeleportCompleted(XRTK.EventDatum.Teleport.TeleportEventData) - name: OnTeleportCompleted(TeleportEventData) - href: api/XRTK.Interfaces.TeleportSystem.Handlers.IMixedRealityTeleportHandler.html#XRTK_Interfaces_TeleportSystem_Handlers_IMixedRealityTeleportHandler_OnTeleportCompleted_XRTK_EventDatum_Teleport_TeleportEventData_ - commentId: M:XRTK.Interfaces.TeleportSystem.Handlers.IMixedRealityTeleportHandler.OnTeleportCompleted(XRTK.EventDatum.Teleport.TeleportEventData) - fullName: XRTK.Interfaces.TeleportSystem.Handlers.IMixedRealityTeleportHandler.OnTeleportCompleted(XRTK.EventDatum.Teleport.TeleportEventData) - nameWithType: IMixedRealityTeleportHandler.OnTeleportCompleted(TeleportEventData) -- uid: XRTK.Interfaces.TeleportSystem.Handlers.IMixedRealityTeleportHandler.OnTeleportCompleted* - name: OnTeleportCompleted - href: api/XRTK.Interfaces.TeleportSystem.Handlers.IMixedRealityTeleportHandler.html#XRTK_Interfaces_TeleportSystem_Handlers_IMixedRealityTeleportHandler_OnTeleportCompleted_ - commentId: Overload:XRTK.Interfaces.TeleportSystem.Handlers.IMixedRealityTeleportHandler.OnTeleportCompleted - isSpec: "True" - fullName: XRTK.Interfaces.TeleportSystem.Handlers.IMixedRealityTeleportHandler.OnTeleportCompleted - nameWithType: IMixedRealityTeleportHandler.OnTeleportCompleted -- uid: XRTK.Interfaces.TeleportSystem.Handlers.IMixedRealityTeleportHandler.OnTeleportRequest(XRTK.EventDatum.Teleport.TeleportEventData) - name: OnTeleportRequest(TeleportEventData) - href: api/XRTK.Interfaces.TeleportSystem.Handlers.IMixedRealityTeleportHandler.html#XRTK_Interfaces_TeleportSystem_Handlers_IMixedRealityTeleportHandler_OnTeleportRequest_XRTK_EventDatum_Teleport_TeleportEventData_ - commentId: M:XRTK.Interfaces.TeleportSystem.Handlers.IMixedRealityTeleportHandler.OnTeleportRequest(XRTK.EventDatum.Teleport.TeleportEventData) - fullName: XRTK.Interfaces.TeleportSystem.Handlers.IMixedRealityTeleportHandler.OnTeleportRequest(XRTK.EventDatum.Teleport.TeleportEventData) - nameWithType: IMixedRealityTeleportHandler.OnTeleportRequest(TeleportEventData) -- uid: XRTK.Interfaces.TeleportSystem.Handlers.IMixedRealityTeleportHandler.OnTeleportRequest* - name: OnTeleportRequest - href: api/XRTK.Interfaces.TeleportSystem.Handlers.IMixedRealityTeleportHandler.html#XRTK_Interfaces_TeleportSystem_Handlers_IMixedRealityTeleportHandler_OnTeleportRequest_ - commentId: Overload:XRTK.Interfaces.TeleportSystem.Handlers.IMixedRealityTeleportHandler.OnTeleportRequest - isSpec: "True" - fullName: XRTK.Interfaces.TeleportSystem.Handlers.IMixedRealityTeleportHandler.OnTeleportRequest - nameWithType: IMixedRealityTeleportHandler.OnTeleportRequest -- uid: XRTK.Interfaces.TeleportSystem.Handlers.IMixedRealityTeleportHandler.OnTeleportStarted(XRTK.EventDatum.Teleport.TeleportEventData) - name: OnTeleportStarted(TeleportEventData) - href: api/XRTK.Interfaces.TeleportSystem.Handlers.IMixedRealityTeleportHandler.html#XRTK_Interfaces_TeleportSystem_Handlers_IMixedRealityTeleportHandler_OnTeleportStarted_XRTK_EventDatum_Teleport_TeleportEventData_ - commentId: M:XRTK.Interfaces.TeleportSystem.Handlers.IMixedRealityTeleportHandler.OnTeleportStarted(XRTK.EventDatum.Teleport.TeleportEventData) - fullName: XRTK.Interfaces.TeleportSystem.Handlers.IMixedRealityTeleportHandler.OnTeleportStarted(XRTK.EventDatum.Teleport.TeleportEventData) - nameWithType: IMixedRealityTeleportHandler.OnTeleportStarted(TeleportEventData) -- uid: XRTK.Interfaces.TeleportSystem.Handlers.IMixedRealityTeleportHandler.OnTeleportStarted* - name: OnTeleportStarted - href: api/XRTK.Interfaces.TeleportSystem.Handlers.IMixedRealityTeleportHandler.html#XRTK_Interfaces_TeleportSystem_Handlers_IMixedRealityTeleportHandler_OnTeleportStarted_ - commentId: Overload:XRTK.Interfaces.TeleportSystem.Handlers.IMixedRealityTeleportHandler.OnTeleportStarted - isSpec: "True" - fullName: XRTK.Interfaces.TeleportSystem.Handlers.IMixedRealityTeleportHandler.OnTeleportStarted - nameWithType: IMixedRealityTeleportHandler.OnTeleportStarted -- uid: XRTK.Interfaces.TeleportSystem.Handlers.IMixedRealityTeleportProvider - name: IMixedRealityTeleportProvider - href: api/XRTK.Interfaces.TeleportSystem.Handlers.IMixedRealityTeleportProvider.html - commentId: T:XRTK.Interfaces.TeleportSystem.Handlers.IMixedRealityTeleportProvider - fullName: XRTK.Interfaces.TeleportSystem.Handlers.IMixedRealityTeleportProvider - nameWithType: IMixedRealityTeleportProvider -- uid: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportDataProvider - name: IMixedRealityTeleportDataProvider - href: api/XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportDataProvider.html - commentId: T:XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportDataProvider - fullName: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportDataProvider - nameWithType: IMixedRealityTeleportDataProvider -- uid: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot - name: IMixedRealityTeleportHotSpot - href: api/XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot.html - commentId: T:XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot - fullName: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot - nameWithType: IMixedRealityTeleportHotSpot -- uid: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot.GameObjectReference - name: GameObjectReference - href: api/XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot.html#XRTK_Interfaces_TeleportSystem_IMixedRealityTeleportHotSpot_GameObjectReference - commentId: P:XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot.GameObjectReference - fullName: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot.GameObjectReference - nameWithType: IMixedRealityTeleportHotSpot.GameObjectReference -- uid: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot.GameObjectReference* - name: GameObjectReference - href: api/XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot.html#XRTK_Interfaces_TeleportSystem_IMixedRealityTeleportHotSpot_GameObjectReference_ - commentId: Overload:XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot.GameObjectReference - isSpec: "True" - fullName: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot.GameObjectReference - nameWithType: IMixedRealityTeleportHotSpot.GameObjectReference -- uid: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot.IsActive - name: IsActive - href: api/XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot.html#XRTK_Interfaces_TeleportSystem_IMixedRealityTeleportHotSpot_IsActive - commentId: P:XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot.IsActive - fullName: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot.IsActive - nameWithType: IMixedRealityTeleportHotSpot.IsActive -- uid: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot.IsActive* - name: IsActive - href: api/XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot.html#XRTK_Interfaces_TeleportSystem_IMixedRealityTeleportHotSpot_IsActive_ - commentId: Overload:XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot.IsActive - isSpec: "True" - fullName: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot.IsActive - nameWithType: IMixedRealityTeleportHotSpot.IsActive -- uid: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot.Normal - name: Normal - href: api/XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot.html#XRTK_Interfaces_TeleportSystem_IMixedRealityTeleportHotSpot_Normal - commentId: P:XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot.Normal - fullName: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot.Normal - nameWithType: IMixedRealityTeleportHotSpot.Normal -- uid: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot.Normal* - name: Normal - href: api/XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot.html#XRTK_Interfaces_TeleportSystem_IMixedRealityTeleportHotSpot_Normal_ - commentId: Overload:XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot.Normal - isSpec: "True" - fullName: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot.Normal - nameWithType: IMixedRealityTeleportHotSpot.Normal -- uid: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot.OverrideTargetOrientation - name: OverrideTargetOrientation - href: api/XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot.html#XRTK_Interfaces_TeleportSystem_IMixedRealityTeleportHotSpot_OverrideTargetOrientation - commentId: P:XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot.OverrideTargetOrientation - fullName: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot.OverrideTargetOrientation - nameWithType: IMixedRealityTeleportHotSpot.OverrideTargetOrientation -- uid: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot.OverrideTargetOrientation* - name: OverrideTargetOrientation - href: api/XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot.html#XRTK_Interfaces_TeleportSystem_IMixedRealityTeleportHotSpot_OverrideTargetOrientation_ - commentId: Overload:XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot.OverrideTargetOrientation - isSpec: "True" - fullName: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot.OverrideTargetOrientation - nameWithType: IMixedRealityTeleportHotSpot.OverrideTargetOrientation -- uid: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot.Position - name: Position - href: api/XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot.html#XRTK_Interfaces_TeleportSystem_IMixedRealityTeleportHotSpot_Position - commentId: P:XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot.Position - fullName: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot.Position - nameWithType: IMixedRealityTeleportHotSpot.Position -- uid: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot.Position* - name: Position - href: api/XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot.html#XRTK_Interfaces_TeleportSystem_IMixedRealityTeleportHotSpot_Position_ - commentId: Overload:XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot.Position - isSpec: "True" - fullName: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot.Position - nameWithType: IMixedRealityTeleportHotSpot.Position -- uid: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot.TargetOrientation - name: TargetOrientation - href: api/XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot.html#XRTK_Interfaces_TeleportSystem_IMixedRealityTeleportHotSpot_TargetOrientation - commentId: P:XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot.TargetOrientation - fullName: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot.TargetOrientation - nameWithType: IMixedRealityTeleportHotSpot.TargetOrientation -- uid: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot.TargetOrientation* - name: TargetOrientation - href: api/XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot.html#XRTK_Interfaces_TeleportSystem_IMixedRealityTeleportHotSpot_TargetOrientation_ - commentId: Overload:XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot.TargetOrientation - isSpec: "True" - fullName: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot.TargetOrientation - nameWithType: IMixedRealityTeleportHotSpot.TargetOrientation -- uid: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportSystem - name: IMixedRealityTeleportSystem - href: api/XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportSystem.html - commentId: T:XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportSystem - fullName: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportSystem - nameWithType: IMixedRealityTeleportSystem -- uid: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportSystem.RaiseTeleportCanceled(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot) - name: RaiseTeleportCanceled(IMixedRealityPointer, IMixedRealityTeleportHotSpot) - href: api/XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportSystem.html#XRTK_Interfaces_TeleportSystem_IMixedRealityTeleportSystem_RaiseTeleportCanceled_XRTK_Interfaces_InputSystem_IMixedRealityPointer_XRTK_Interfaces_TeleportSystem_IMixedRealityTeleportHotSpot_ - commentId: M:XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportSystem.RaiseTeleportCanceled(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot) - fullName: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportSystem.RaiseTeleportCanceled(XRTK.Interfaces.InputSystem.IMixedRealityPointer, XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot) - nameWithType: IMixedRealityTeleportSystem.RaiseTeleportCanceled(IMixedRealityPointer, IMixedRealityTeleportHotSpot) -- uid: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportSystem.RaiseTeleportCanceled* - name: RaiseTeleportCanceled - href: api/XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportSystem.html#XRTK_Interfaces_TeleportSystem_IMixedRealityTeleportSystem_RaiseTeleportCanceled_ - commentId: Overload:XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportSystem.RaiseTeleportCanceled - isSpec: "True" - fullName: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportSystem.RaiseTeleportCanceled - nameWithType: IMixedRealityTeleportSystem.RaiseTeleportCanceled -- uid: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportSystem.RaiseTeleportComplete(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot) - name: RaiseTeleportComplete(IMixedRealityPointer, IMixedRealityTeleportHotSpot) - href: api/XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportSystem.html#XRTK_Interfaces_TeleportSystem_IMixedRealityTeleportSystem_RaiseTeleportComplete_XRTK_Interfaces_InputSystem_IMixedRealityPointer_XRTK_Interfaces_TeleportSystem_IMixedRealityTeleportHotSpot_ - commentId: M:XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportSystem.RaiseTeleportComplete(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot) - fullName: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportSystem.RaiseTeleportComplete(XRTK.Interfaces.InputSystem.IMixedRealityPointer, XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot) - nameWithType: IMixedRealityTeleportSystem.RaiseTeleportComplete(IMixedRealityPointer, IMixedRealityTeleportHotSpot) -- uid: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportSystem.RaiseTeleportComplete* - name: RaiseTeleportComplete - href: api/XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportSystem.html#XRTK_Interfaces_TeleportSystem_IMixedRealityTeleportSystem_RaiseTeleportComplete_ - commentId: Overload:XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportSystem.RaiseTeleportComplete - isSpec: "True" - fullName: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportSystem.RaiseTeleportComplete - nameWithType: IMixedRealityTeleportSystem.RaiseTeleportComplete -- uid: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportSystem.RaiseTeleportRequest(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot) - name: RaiseTeleportRequest(IMixedRealityPointer, IMixedRealityTeleportHotSpot) - href: api/XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportSystem.html#XRTK_Interfaces_TeleportSystem_IMixedRealityTeleportSystem_RaiseTeleportRequest_XRTK_Interfaces_InputSystem_IMixedRealityPointer_XRTK_Interfaces_TeleportSystem_IMixedRealityTeleportHotSpot_ - commentId: M:XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportSystem.RaiseTeleportRequest(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot) - fullName: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportSystem.RaiseTeleportRequest(XRTK.Interfaces.InputSystem.IMixedRealityPointer, XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot) - nameWithType: IMixedRealityTeleportSystem.RaiseTeleportRequest(IMixedRealityPointer, IMixedRealityTeleportHotSpot) -- uid: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportSystem.RaiseTeleportRequest* - name: RaiseTeleportRequest - href: api/XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportSystem.html#XRTK_Interfaces_TeleportSystem_IMixedRealityTeleportSystem_RaiseTeleportRequest_ - commentId: Overload:XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportSystem.RaiseTeleportRequest - isSpec: "True" - fullName: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportSystem.RaiseTeleportRequest - nameWithType: IMixedRealityTeleportSystem.RaiseTeleportRequest -- uid: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportSystem.RaiseTeleportStarted(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot) - name: RaiseTeleportStarted(IMixedRealityPointer, IMixedRealityTeleportHotSpot) - href: api/XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportSystem.html#XRTK_Interfaces_TeleportSystem_IMixedRealityTeleportSystem_RaiseTeleportStarted_XRTK_Interfaces_InputSystem_IMixedRealityPointer_XRTK_Interfaces_TeleportSystem_IMixedRealityTeleportHotSpot_ - commentId: M:XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportSystem.RaiseTeleportStarted(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot) - fullName: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportSystem.RaiseTeleportStarted(XRTK.Interfaces.InputSystem.IMixedRealityPointer, XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot) - nameWithType: IMixedRealityTeleportSystem.RaiseTeleportStarted(IMixedRealityPointer, IMixedRealityTeleportHotSpot) -- uid: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportSystem.RaiseTeleportStarted* - name: RaiseTeleportStarted - href: api/XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportSystem.html#XRTK_Interfaces_TeleportSystem_IMixedRealityTeleportSystem_RaiseTeleportStarted_ - commentId: Overload:XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportSystem.RaiseTeleportStarted - isSpec: "True" - fullName: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportSystem.RaiseTeleportStarted - nameWithType: IMixedRealityTeleportSystem.RaiseTeleportStarted -- uid: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportSystem.TeleportAction - name: TeleportAction - href: api/XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportSystem.html#XRTK_Interfaces_TeleportSystem_IMixedRealityTeleportSystem_TeleportAction - commentId: P:XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportSystem.TeleportAction - fullName: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportSystem.TeleportAction - nameWithType: IMixedRealityTeleportSystem.TeleportAction -- uid: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportSystem.TeleportAction* - name: TeleportAction - href: api/XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportSystem.html#XRTK_Interfaces_TeleportSystem_IMixedRealityTeleportSystem_TeleportAction_ - commentId: Overload:XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportSystem.TeleportAction - isSpec: "True" - fullName: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportSystem.TeleportAction - nameWithType: IMixedRealityTeleportSystem.TeleportAction -- uid: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportValidationDataProvider - name: IMixedRealityTeleportValidationDataProvider - href: api/XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportValidationDataProvider.html - commentId: T:XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportValidationDataProvider - fullName: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportValidationDataProvider - nameWithType: IMixedRealityTeleportValidationDataProvider -- uid: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportValidationDataProvider.IsValid(XRTK.Interfaces.InputSystem.IPointerResult,XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot) - name: IsValid(IPointerResult, IMixedRealityTeleportHotSpot) - href: api/XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportValidationDataProvider.html#XRTK_Interfaces_TeleportSystem_IMixedRealityTeleportValidationDataProvider_IsValid_XRTK_Interfaces_InputSystem_IPointerResult_XRTK_Interfaces_TeleportSystem_IMixedRealityTeleportHotSpot_ - commentId: M:XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportValidationDataProvider.IsValid(XRTK.Interfaces.InputSystem.IPointerResult,XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot) - fullName: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportValidationDataProvider.IsValid(XRTK.Interfaces.InputSystem.IPointerResult, XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot) - nameWithType: IMixedRealityTeleportValidationDataProvider.IsValid(IPointerResult, IMixedRealityTeleportHotSpot) -- uid: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportValidationDataProvider.IsValid* - name: IsValid - href: api/XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportValidationDataProvider.html#XRTK_Interfaces_TeleportSystem_IMixedRealityTeleportValidationDataProvider_IsValid_ - commentId: Overload:XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportValidationDataProvider.IsValid - isSpec: "True" - fullName: XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportValidationDataProvider.IsValid - nameWithType: IMixedRealityTeleportValidationDataProvider.IsValid -- uid: XRTK.Lumin - name: XRTK.Lumin - href: api/XRTK.Lumin.html - commentId: N:XRTK.Lumin - fullName: XRTK.Lumin - nameWithType: XRTK.Lumin -- uid: XRTK.Lumin.Editor - name: XRTK.Lumin.Editor - href: api/XRTK.Lumin.Editor.html - commentId: N:XRTK.Lumin.Editor - fullName: XRTK.Lumin.Editor - nameWithType: XRTK.Lumin.Editor -- uid: XRTK.Lumin.Editor.LabDriver - name: LabDriver - href: api/XRTK.Lumin.Editor.LabDriver.html - commentId: T:XRTK.Lumin.Editor.LabDriver - fullName: XRTK.Lumin.Editor.LabDriver - nameWithType: LabDriver -- uid: XRTK.Lumin.Editor.LabDriver.GetLuminRemoteSupportLibrariesAsync(System.String) - name: GetLuminRemoteSupportLibrariesAsync(String) - href: api/XRTK.Lumin.Editor.LabDriver.html#XRTK_Lumin_Editor_LabDriver_GetLuminRemoteSupportLibrariesAsync_System_String_ - commentId: M:XRTK.Lumin.Editor.LabDriver.GetLuminRemoteSupportLibrariesAsync(System.String) - fullName: XRTK.Lumin.Editor.LabDriver.GetLuminRemoteSupportLibrariesAsync(System.String) - nameWithType: LabDriver.GetLuminRemoteSupportLibrariesAsync(String) -- uid: XRTK.Lumin.Editor.LabDriver.GetLuminRemoteSupportLibrariesAsync* - name: GetLuminRemoteSupportLibrariesAsync - href: api/XRTK.Lumin.Editor.LabDriver.html#XRTK_Lumin_Editor_LabDriver_GetLuminRemoteSupportLibrariesAsync_ - commentId: Overload:XRTK.Lumin.Editor.LabDriver.GetLuminRemoteSupportLibrariesAsync - isSpec: "True" - fullName: XRTK.Lumin.Editor.LabDriver.GetLuminRemoteSupportLibrariesAsync - nameWithType: LabDriver.GetLuminRemoteSupportLibrariesAsync -- uid: XRTK.Lumin.Editor.LabDriver.LabDriverQuery - name: LabDriver.LabDriverQuery - href: api/XRTK.Lumin.Editor.LabDriver.LabDriverQuery.html - commentId: T:XRTK.Lumin.Editor.LabDriver.LabDriverQuery - fullName: XRTK.Lumin.Editor.LabDriver.LabDriverQuery - nameWithType: LabDriver.LabDriverQuery -- uid: XRTK.Lumin.Editor.LabDriver.LabDriverQuery.Result - name: LabDriver.LabDriverQuery.Result - href: api/XRTK.Lumin.Editor.LabDriver.LabDriverQuery.Result.html - commentId: T:XRTK.Lumin.Editor.LabDriver.LabDriverQuery.Result - fullName: XRTK.Lumin.Editor.LabDriver.LabDriverQuery.Result - nameWithType: LabDriver.LabDriverQuery.Result -- uid: XRTK.Lumin.Editor.LabDriver.LabDriverQuery.Result.commandArgs - name: commandArgs - href: api/XRTK.Lumin.Editor.LabDriver.LabDriverQuery.Result.html#XRTK_Lumin_Editor_LabDriver_LabDriverQuery_Result_commandArgs - commentId: F:XRTK.Lumin.Editor.LabDriver.LabDriverQuery.Result.commandArgs - fullName: XRTK.Lumin.Editor.LabDriver.LabDriverQuery.Result.commandArgs - nameWithType: LabDriver.LabDriverQuery.Result.commandArgs -- uid: XRTK.Lumin.Editor.LabDriver.LabDriverQuery.Result.commandName - name: commandName - href: api/XRTK.Lumin.Editor.LabDriver.LabDriverQuery.Result.html#XRTK_Lumin_Editor_LabDriver_LabDriverQuery_Result_commandName - commentId: F:XRTK.Lumin.Editor.LabDriver.LabDriverQuery.Result.commandName - fullName: XRTK.Lumin.Editor.LabDriver.LabDriverQuery.Result.commandName - nameWithType: LabDriver.LabDriverQuery.Result.commandName -- uid: XRTK.Lumin.Editor.LabDriver.LabDriverQuery.Result.endTime - name: endTime - href: api/XRTK.Lumin.Editor.LabDriver.LabDriverQuery.Result.html#XRTK_Lumin_Editor_LabDriver_LabDriverQuery_Result_endTime - commentId: F:XRTK.Lumin.Editor.LabDriver.LabDriverQuery.Result.endTime - fullName: XRTK.Lumin.Editor.LabDriver.LabDriverQuery.Result.endTime - nameWithType: LabDriver.LabDriverQuery.Result.endTime -- uid: XRTK.Lumin.Editor.LabDriver.LabDriverQuery.Result.error - name: error - href: api/XRTK.Lumin.Editor.LabDriver.LabDriverQuery.Result.html#XRTK_Lumin_Editor_LabDriver_LabDriverQuery_Result_error - commentId: F:XRTK.Lumin.Editor.LabDriver.LabDriverQuery.Result.error - fullName: XRTK.Lumin.Editor.LabDriver.LabDriverQuery.Result.error - nameWithType: LabDriver.LabDriverQuery.Result.error -- uid: XRTK.Lumin.Editor.LabDriver.LabDriverQuery.Result.moduleName - name: moduleName - href: api/XRTK.Lumin.Editor.LabDriver.LabDriverQuery.Result.html#XRTK_Lumin_Editor_LabDriver_LabDriverQuery_Result_moduleName - commentId: F:XRTK.Lumin.Editor.LabDriver.LabDriverQuery.Result.moduleName - fullName: XRTK.Lumin.Editor.LabDriver.LabDriverQuery.Result.moduleName - nameWithType: LabDriver.LabDriverQuery.Result.moduleName -- uid: XRTK.Lumin.Editor.LabDriver.LabDriverQuery.Result.output - name: output - href: api/XRTK.Lumin.Editor.LabDriver.LabDriverQuery.Result.html#XRTK_Lumin_Editor_LabDriver_LabDriverQuery_Result_output - commentId: F:XRTK.Lumin.Editor.LabDriver.LabDriverQuery.Result.output - fullName: XRTK.Lumin.Editor.LabDriver.LabDriverQuery.Result.output - nameWithType: LabDriver.LabDriverQuery.Result.output -- uid: XRTK.Lumin.Editor.LabDriver.LabDriverQuery.Result.startTime - name: startTime - href: api/XRTK.Lumin.Editor.LabDriver.LabDriverQuery.Result.html#XRTK_Lumin_Editor_LabDriver_LabDriverQuery_Result_startTime - commentId: F:XRTK.Lumin.Editor.LabDriver.LabDriverQuery.Result.startTime - fullName: XRTK.Lumin.Editor.LabDriver.LabDriverQuery.Result.startTime - nameWithType: LabDriver.LabDriverQuery.Result.startTime -- uid: XRTK.Lumin.Editor.LabDriver.LabDriverQuery.Result.state - name: state - href: api/XRTK.Lumin.Editor.LabDriver.LabDriverQuery.Result.html#XRTK_Lumin_Editor_LabDriver_LabDriverQuery_Result_state - commentId: F:XRTK.Lumin.Editor.LabDriver.LabDriverQuery.Result.state - fullName: XRTK.Lumin.Editor.LabDriver.LabDriverQuery.Result.state - nameWithType: LabDriver.LabDriverQuery.Result.state -- uid: XRTK.Lumin.Editor.LabDriver.LabDriverQuery.Result.token - name: token - href: api/XRTK.Lumin.Editor.LabDriver.LabDriverQuery.Result.html#XRTK_Lumin_Editor_LabDriver_LabDriverQuery_Result_token - commentId: F:XRTK.Lumin.Editor.LabDriver.LabDriverQuery.Result.token - fullName: XRTK.Lumin.Editor.LabDriver.LabDriverQuery.Result.token - nameWithType: LabDriver.LabDriverQuery.Result.token -- uid: XRTK.Lumin.Editor.LabDriver.LabDriverQuery.results - name: results - href: api/XRTK.Lumin.Editor.LabDriver.LabDriverQuery.html#XRTK_Lumin_Editor_LabDriver_LabDriverQuery_results - commentId: F:XRTK.Lumin.Editor.LabDriver.LabDriverQuery.results - fullName: XRTK.Lumin.Editor.LabDriver.LabDriverQuery.results - nameWithType: LabDriver.LabDriverQuery.results -- uid: XRTK.Lumin.Editor.LabDriver.LabDriverQuery.root - name: root - href: api/XRTK.Lumin.Editor.LabDriver.LabDriverQuery.html#XRTK_Lumin_Editor_LabDriver_LabDriverQuery_root - commentId: F:XRTK.Lumin.Editor.LabDriver.LabDriverQuery.root - fullName: XRTK.Lumin.Editor.LabDriver.LabDriverQuery.root - nameWithType: LabDriver.LabDriverQuery.root -- uid: XRTK.Lumin.Editor.LabDriver.LabDriverQuery.success - name: success - href: api/XRTK.Lumin.Editor.LabDriver.LabDriverQuery.html#XRTK_Lumin_Editor_LabDriver_LabDriverQuery_success - commentId: F:XRTK.Lumin.Editor.LabDriver.LabDriverQuery.success - fullName: XRTK.Lumin.Editor.LabDriver.LabDriverQuery.success - nameWithType: LabDriver.LabDriverQuery.success -- uid: XRTK.Lumin.Editor.LabDriver.LabDriverQuery.version - name: version - href: api/XRTK.Lumin.Editor.LabDriver.LabDriverQuery.html#XRTK_Lumin_Editor_LabDriver_LabDriverQuery_version - commentId: F:XRTK.Lumin.Editor.LabDriver.LabDriverQuery.version - fullName: XRTK.Lumin.Editor.LabDriver.LabDriverQuery.version - nameWithType: LabDriver.LabDriverQuery.version -- uid: XRTK.Lumin.Editor.LuminHandControllerDataProviderProfileInspector - name: LuminHandControllerDataProviderProfileInspector - href: api/XRTK.Lumin.Editor.LuminHandControllerDataProviderProfileInspector.html - commentId: T:XRTK.Lumin.Editor.LuminHandControllerDataProviderProfileInspector - fullName: XRTK.Lumin.Editor.LuminHandControllerDataProviderProfileInspector - nameWithType: LuminHandControllerDataProviderProfileInspector -- uid: XRTK.Lumin.Editor.LuminHandControllerDataProviderProfileInspector.OnEnable - name: OnEnable() - href: api/XRTK.Lumin.Editor.LuminHandControllerDataProviderProfileInspector.html#XRTK_Lumin_Editor_LuminHandControllerDataProviderProfileInspector_OnEnable - commentId: M:XRTK.Lumin.Editor.LuminHandControllerDataProviderProfileInspector.OnEnable - fullName: XRTK.Lumin.Editor.LuminHandControllerDataProviderProfileInspector.OnEnable() - nameWithType: LuminHandControllerDataProviderProfileInspector.OnEnable() -- uid: XRTK.Lumin.Editor.LuminHandControllerDataProviderProfileInspector.OnEnable* - name: OnEnable - href: api/XRTK.Lumin.Editor.LuminHandControllerDataProviderProfileInspector.html#XRTK_Lumin_Editor_LuminHandControllerDataProviderProfileInspector_OnEnable_ - commentId: Overload:XRTK.Lumin.Editor.LuminHandControllerDataProviderProfileInspector.OnEnable - isSpec: "True" - fullName: XRTK.Lumin.Editor.LuminHandControllerDataProviderProfileInspector.OnEnable - nameWithType: LuminHandControllerDataProviderProfileInspector.OnEnable -- uid: XRTK.Lumin.Editor.LuminHandControllerDataProviderProfileInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.Lumin.Editor.LuminHandControllerDataProviderProfileInspector.html#XRTK_Lumin_Editor_LuminHandControllerDataProviderProfileInspector_OnInspectorGUI - commentId: M:XRTK.Lumin.Editor.LuminHandControllerDataProviderProfileInspector.OnInspectorGUI - fullName: XRTK.Lumin.Editor.LuminHandControllerDataProviderProfileInspector.OnInspectorGUI() - nameWithType: LuminHandControllerDataProviderProfileInspector.OnInspectorGUI() -- uid: XRTK.Lumin.Editor.LuminHandControllerDataProviderProfileInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.Lumin.Editor.LuminHandControllerDataProviderProfileInspector.html#XRTK_Lumin_Editor_LuminHandControllerDataProviderProfileInspector_OnInspectorGUI_ - commentId: Overload:XRTK.Lumin.Editor.LuminHandControllerDataProviderProfileInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.Lumin.Editor.LuminHandControllerDataProviderProfileInspector.OnInspectorGUI - nameWithType: LuminHandControllerDataProviderProfileInspector.OnInspectorGUI -- uid: XRTK.Lumin.Editor.LuminPathFinder - name: LuminPathFinder - href: api/XRTK.Lumin.Editor.LuminPathFinder.html - commentId: T:XRTK.Lumin.Editor.LuminPathFinder - fullName: XRTK.Lumin.Editor.LuminPathFinder - nameWithType: LuminPathFinder -- uid: XRTK.Lumin.Editor.LuminPathFinder.Location - name: Location - href: api/XRTK.Lumin.Editor.LuminPathFinder.html#XRTK_Lumin_Editor_LuminPathFinder_Location - commentId: P:XRTK.Lumin.Editor.LuminPathFinder.Location - fullName: XRTK.Lumin.Editor.LuminPathFinder.Location - nameWithType: LuminPathFinder.Location -- uid: XRTK.Lumin.Editor.LuminPathFinder.Location* - name: Location - href: api/XRTK.Lumin.Editor.LuminPathFinder.html#XRTK_Lumin_Editor_LuminPathFinder_Location_ - commentId: Overload:XRTK.Lumin.Editor.LuminPathFinder.Location - isSpec: "True" - fullName: XRTK.Lumin.Editor.LuminPathFinder.Location - nameWithType: LuminPathFinder.Location -- uid: XRTK.Lumin.Editor.LuminRemote - name: LuminRemote - href: api/XRTK.Lumin.Editor.LuminRemote.html - commentId: T:XRTK.Lumin.Editor.LuminRemote - fullName: XRTK.Lumin.Editor.LuminRemote - nameWithType: LuminRemote -- uid: XRTK.Lumin.MLKeyPointFilterLevel - name: MLKeyPointFilterLevel - href: api/XRTK.Lumin.MLKeyPointFilterLevel.html - commentId: T:XRTK.Lumin.MLKeyPointFilterLevel - fullName: XRTK.Lumin.MLKeyPointFilterLevel - nameWithType: MLKeyPointFilterLevel -- uid: XRTK.Lumin.MLKeyPointFilterLevel.MLKeypointFilterLevel_0 - name: MLKeypointFilterLevel_0 - href: api/XRTK.Lumin.MLKeyPointFilterLevel.html#XRTK_Lumin_MLKeyPointFilterLevel_MLKeypointFilterLevel_0 - commentId: F:XRTK.Lumin.MLKeyPointFilterLevel.MLKeypointFilterLevel_0 - fullName: XRTK.Lumin.MLKeyPointFilterLevel.MLKeypointFilterLevel_0 - nameWithType: MLKeyPointFilterLevel.MLKeypointFilterLevel_0 -- uid: XRTK.Lumin.MLKeyPointFilterLevel.MLKeypointFilterLevel_1 - name: MLKeypointFilterLevel_1 - href: api/XRTK.Lumin.MLKeyPointFilterLevel.html#XRTK_Lumin_MLKeyPointFilterLevel_MLKeypointFilterLevel_1 - commentId: F:XRTK.Lumin.MLKeyPointFilterLevel.MLKeypointFilterLevel_1 - fullName: XRTK.Lumin.MLKeyPointFilterLevel.MLKeypointFilterLevel_1 - nameWithType: MLKeyPointFilterLevel.MLKeypointFilterLevel_1 -- uid: XRTK.Lumin.MLKeyPointFilterLevel.MLKeypointFilterLevel_2 - name: MLKeypointFilterLevel_2 - href: api/XRTK.Lumin.MLKeyPointFilterLevel.html#XRTK_Lumin_MLKeyPointFilterLevel_MLKeypointFilterLevel_2 - commentId: F:XRTK.Lumin.MLKeyPointFilterLevel.MLKeypointFilterLevel_2 - fullName: XRTK.Lumin.MLKeyPointFilterLevel.MLKeypointFilterLevel_2 - nameWithType: MLKeyPointFilterLevel.MLKeypointFilterLevel_2 -- uid: XRTK.Lumin.MLKeyPointFilterLevel.MLKeypointFilterLevel_Ensure32Bits - name: MLKeypointFilterLevel_Ensure32Bits - href: api/XRTK.Lumin.MLKeyPointFilterLevel.html#XRTK_Lumin_MLKeyPointFilterLevel_MLKeypointFilterLevel_Ensure32Bits - commentId: F:XRTK.Lumin.MLKeyPointFilterLevel.MLKeypointFilterLevel_Ensure32Bits - fullName: XRTK.Lumin.MLKeyPointFilterLevel.MLKeypointFilterLevel_Ensure32Bits - nameWithType: MLKeyPointFilterLevel.MLKeypointFilterLevel_Ensure32Bits -- uid: XRTK.Lumin.MLPoseFilterLevel - name: MLPoseFilterLevel - href: api/XRTK.Lumin.MLPoseFilterLevel.html - commentId: T:XRTK.Lumin.MLPoseFilterLevel - fullName: XRTK.Lumin.MLPoseFilterLevel - nameWithType: MLPoseFilterLevel -- uid: XRTK.Lumin.MLPoseFilterLevel.MLPoseFilterLevel_0 - name: MLPoseFilterLevel_0 - href: api/XRTK.Lumin.MLPoseFilterLevel.html#XRTK_Lumin_MLPoseFilterLevel_MLPoseFilterLevel_0 - commentId: F:XRTK.Lumin.MLPoseFilterLevel.MLPoseFilterLevel_0 - fullName: XRTK.Lumin.MLPoseFilterLevel.MLPoseFilterLevel_0 - nameWithType: MLPoseFilterLevel.MLPoseFilterLevel_0 -- uid: XRTK.Lumin.MLPoseFilterLevel.MLPoseFilterLevel_1 - name: MLPoseFilterLevel_1 - href: api/XRTK.Lumin.MLPoseFilterLevel.html#XRTK_Lumin_MLPoseFilterLevel_MLPoseFilterLevel_1 - commentId: F:XRTK.Lumin.MLPoseFilterLevel.MLPoseFilterLevel_1 - fullName: XRTK.Lumin.MLPoseFilterLevel.MLPoseFilterLevel_1 - nameWithType: MLPoseFilterLevel.MLPoseFilterLevel_1 -- uid: XRTK.Lumin.MLPoseFilterLevel.MLPoseFilterLevel_2 - name: MLPoseFilterLevel_2 - href: api/XRTK.Lumin.MLPoseFilterLevel.html#XRTK_Lumin_MLPoseFilterLevel_MLPoseFilterLevel_2 - commentId: F:XRTK.Lumin.MLPoseFilterLevel.MLPoseFilterLevel_2 - fullName: XRTK.Lumin.MLPoseFilterLevel.MLPoseFilterLevel_2 - nameWithType: MLPoseFilterLevel.MLPoseFilterLevel_2 -- uid: XRTK.Lumin.MLPoseFilterLevel.MLPoseFilterLevel_Ensure32Bits - name: MLPoseFilterLevel_Ensure32Bits - href: api/XRTK.Lumin.MLPoseFilterLevel.html#XRTK_Lumin_MLPoseFilterLevel_MLPoseFilterLevel_Ensure32Bits - commentId: F:XRTK.Lumin.MLPoseFilterLevel.MLPoseFilterLevel_Ensure32Bits - fullName: XRTK.Lumin.MLPoseFilterLevel.MLPoseFilterLevel_Ensure32Bits - nameWithType: MLPoseFilterLevel.MLPoseFilterLevel_Ensure32Bits -- uid: XRTK.Lumin.Profiles - name: XRTK.Lumin.Profiles - href: api/XRTK.Lumin.Profiles.html - commentId: N:XRTK.Lumin.Profiles - fullName: XRTK.Lumin.Profiles - nameWithType: XRTK.Lumin.Profiles -- uid: XRTK.Lumin.Profiles.LuminControllerDataProviderProfile - name: LuminControllerDataProviderProfile - href: api/XRTK.Lumin.Profiles.LuminControllerDataProviderProfile.html - commentId: T:XRTK.Lumin.Profiles.LuminControllerDataProviderProfile - fullName: XRTK.Lumin.Profiles.LuminControllerDataProviderProfile - nameWithType: LuminControllerDataProviderProfile -- uid: XRTK.Lumin.Profiles.LuminControllerDataProviderProfile.GetDefaultControllerOptions - name: GetDefaultControllerOptions() - href: api/XRTK.Lumin.Profiles.LuminControllerDataProviderProfile.html#XRTK_Lumin_Profiles_LuminControllerDataProviderProfile_GetDefaultControllerOptions - commentId: M:XRTK.Lumin.Profiles.LuminControllerDataProviderProfile.GetDefaultControllerOptions - fullName: XRTK.Lumin.Profiles.LuminControllerDataProviderProfile.GetDefaultControllerOptions() - nameWithType: LuminControllerDataProviderProfile.GetDefaultControllerOptions() -- uid: XRTK.Lumin.Profiles.LuminControllerDataProviderProfile.GetDefaultControllerOptions* - name: GetDefaultControllerOptions - href: api/XRTK.Lumin.Profiles.LuminControllerDataProviderProfile.html#XRTK_Lumin_Profiles_LuminControllerDataProviderProfile_GetDefaultControllerOptions_ - commentId: Overload:XRTK.Lumin.Profiles.LuminControllerDataProviderProfile.GetDefaultControllerOptions - isSpec: "True" - fullName: XRTK.Lumin.Profiles.LuminControllerDataProviderProfile.GetDefaultControllerOptions - nameWithType: LuminControllerDataProviderProfile.GetDefaultControllerOptions -- uid: XRTK.Lumin.Profiles.LuminHandControllerDataProviderProfile - name: LuminHandControllerDataProviderProfile - href: api/XRTK.Lumin.Profiles.LuminHandControllerDataProviderProfile.html - commentId: T:XRTK.Lumin.Profiles.LuminHandControllerDataProviderProfile - fullName: XRTK.Lumin.Profiles.LuminHandControllerDataProviderProfile - nameWithType: LuminHandControllerDataProviderProfile -- uid: XRTK.Lumin.Profiles.LuminHandControllerDataProviderProfile.KeyPointFilterLevel - name: KeyPointFilterLevel - href: api/XRTK.Lumin.Profiles.LuminHandControllerDataProviderProfile.html#XRTK_Lumin_Profiles_LuminHandControllerDataProviderProfile_KeyPointFilterLevel - commentId: P:XRTK.Lumin.Profiles.LuminHandControllerDataProviderProfile.KeyPointFilterLevel - fullName: XRTK.Lumin.Profiles.LuminHandControllerDataProviderProfile.KeyPointFilterLevel - nameWithType: LuminHandControllerDataProviderProfile.KeyPointFilterLevel -- uid: XRTK.Lumin.Profiles.LuminHandControllerDataProviderProfile.KeyPointFilterLevel* - name: KeyPointFilterLevel - href: api/XRTK.Lumin.Profiles.LuminHandControllerDataProviderProfile.html#XRTK_Lumin_Profiles_LuminHandControllerDataProviderProfile_KeyPointFilterLevel_ - commentId: Overload:XRTK.Lumin.Profiles.LuminHandControllerDataProviderProfile.KeyPointFilterLevel - isSpec: "True" - fullName: XRTK.Lumin.Profiles.LuminHandControllerDataProviderProfile.KeyPointFilterLevel - nameWithType: LuminHandControllerDataProviderProfile.KeyPointFilterLevel -- uid: XRTK.Lumin.Profiles.LuminHandControllerDataProviderProfile.PoseFilterLevel - name: PoseFilterLevel - href: api/XRTK.Lumin.Profiles.LuminHandControllerDataProviderProfile.html#XRTK_Lumin_Profiles_LuminHandControllerDataProviderProfile_PoseFilterLevel - commentId: P:XRTK.Lumin.Profiles.LuminHandControllerDataProviderProfile.PoseFilterLevel - fullName: XRTK.Lumin.Profiles.LuminHandControllerDataProviderProfile.PoseFilterLevel - nameWithType: LuminHandControllerDataProviderProfile.PoseFilterLevel -- uid: XRTK.Lumin.Profiles.LuminHandControllerDataProviderProfile.PoseFilterLevel* - name: PoseFilterLevel - href: api/XRTK.Lumin.Profiles.LuminHandControllerDataProviderProfile.html#XRTK_Lumin_Profiles_LuminHandControllerDataProviderProfile_PoseFilterLevel_ - commentId: Overload:XRTK.Lumin.Profiles.LuminHandControllerDataProviderProfile.PoseFilterLevel - isSpec: "True" - fullName: XRTK.Lumin.Profiles.LuminHandControllerDataProviderProfile.PoseFilterLevel - nameWithType: LuminHandControllerDataProviderProfile.PoseFilterLevel -- uid: XRTK.Lumin.Profiles.LuminSpatialMeshObserverProfile - name: LuminSpatialMeshObserverProfile - href: api/XRTK.Lumin.Profiles.LuminSpatialMeshObserverProfile.html - commentId: T:XRTK.Lumin.Profiles.LuminSpatialMeshObserverProfile - fullName: XRTK.Lumin.Profiles.LuminSpatialMeshObserverProfile - nameWithType: LuminSpatialMeshObserverProfile -- uid: XRTK.Lumin.Providers.CameraSystem - name: XRTK.Lumin.Providers.CameraSystem - href: api/XRTK.Lumin.Providers.CameraSystem.html - commentId: N:XRTK.Lumin.Providers.CameraSystem - fullName: XRTK.Lumin.Providers.CameraSystem - nameWithType: XRTK.Lumin.Providers.CameraSystem -- uid: XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider - name: LuminCameraDataProvider - href: api/XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.html - commentId: T:XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider - fullName: XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider - nameWithType: LuminCameraDataProvider -- uid: XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.#ctor(System.String,System.UInt32,XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile,XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem) - name: LuminCameraDataProvider(String, UInt32, BaseMixedRealityCameraDataProviderProfile, IMixedRealityCameraSystem) - href: api/XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.html#XRTK_Lumin_Providers_CameraSystem_LuminCameraDataProvider__ctor_System_String_System_UInt32_XRTK_Definitions_CameraSystem_BaseMixedRealityCameraDataProviderProfile_XRTK_Interfaces_CameraSystem_IMixedRealityCameraSystem_ - commentId: M:XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.#ctor(System.String,System.UInt32,XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile,XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem) - fullName: XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.LuminCameraDataProvider(System.String, System.UInt32, XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile, XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem) - nameWithType: LuminCameraDataProvider.LuminCameraDataProvider(String, UInt32, BaseMixedRealityCameraDataProviderProfile, IMixedRealityCameraSystem) -- uid: XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.#ctor* - name: LuminCameraDataProvider - href: api/XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.html#XRTK_Lumin_Providers_CameraSystem_LuminCameraDataProvider__ctor_ - commentId: Overload:XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.#ctor - isSpec: "True" - fullName: XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.LuminCameraDataProvider - nameWithType: LuminCameraDataProvider.LuminCameraDataProvider -- uid: XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.Destroy - name: Destroy() - href: api/XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.html#XRTK_Lumin_Providers_CameraSystem_LuminCameraDataProvider_Destroy - commentId: M:XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.Destroy - fullName: XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.Destroy() - nameWithType: LuminCameraDataProvider.Destroy() -- uid: XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.Destroy* - name: Destroy - href: api/XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.html#XRTK_Lumin_Providers_CameraSystem_LuminCameraDataProvider_Destroy_ - commentId: Overload:XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.Destroy - isSpec: "True" - fullName: XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.Destroy - nameWithType: LuminCameraDataProvider.Destroy -- uid: XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.HeadHeight - name: HeadHeight - href: api/XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.html#XRTK_Lumin_Providers_CameraSystem_LuminCameraDataProvider_HeadHeight - commentId: P:XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.HeadHeight - fullName: XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.HeadHeight - nameWithType: LuminCameraDataProvider.HeadHeight -- uid: XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.HeadHeight* - name: HeadHeight - href: api/XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.html#XRTK_Lumin_Providers_CameraSystem_LuminCameraDataProvider_HeadHeight_ - commentId: Overload:XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.HeadHeight - isSpec: "True" - fullName: XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.HeadHeight - nameWithType: LuminCameraDataProvider.HeadHeight -- uid: XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.Initialize - name: Initialize() - href: api/XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.html#XRTK_Lumin_Providers_CameraSystem_LuminCameraDataProvider_Initialize - commentId: M:XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.Initialize - fullName: XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.Initialize() - nameWithType: LuminCameraDataProvider.Initialize() -- uid: XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.Initialize* - name: Initialize - href: api/XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.html#XRTK_Lumin_Providers_CameraSystem_LuminCameraDataProvider_Initialize_ - commentId: Overload:XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.Initialize - isSpec: "True" - fullName: XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.Initialize - nameWithType: LuminCameraDataProvider.Initialize -- uid: XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.IsOpaque - name: IsOpaque - href: api/XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.html#XRTK_Lumin_Providers_CameraSystem_LuminCameraDataProvider_IsOpaque - commentId: P:XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.IsOpaque - fullName: XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.IsOpaque - nameWithType: LuminCameraDataProvider.IsOpaque -- uid: XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.IsOpaque* - name: IsOpaque - href: api/XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.html#XRTK_Lumin_Providers_CameraSystem_LuminCameraDataProvider_IsOpaque_ - commentId: Overload:XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.IsOpaque - isSpec: "True" - fullName: XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.IsOpaque - nameWithType: LuminCameraDataProvider.IsOpaque -- uid: XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.ResetRigTransforms - name: ResetRigTransforms() - href: api/XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.html#XRTK_Lumin_Providers_CameraSystem_LuminCameraDataProvider_ResetRigTransforms - commentId: M:XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.ResetRigTransforms - fullName: XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.ResetRigTransforms() - nameWithType: LuminCameraDataProvider.ResetRigTransforms() -- uid: XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.ResetRigTransforms* - name: ResetRigTransforms - href: api/XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.html#XRTK_Lumin_Providers_CameraSystem_LuminCameraDataProvider_ResetRigTransforms_ - commentId: Overload:XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.ResetRigTransforms - isSpec: "True" - fullName: XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.ResetRigTransforms - nameWithType: LuminCameraDataProvider.ResetRigTransforms -- uid: XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.Update - name: Update() - href: api/XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.html#XRTK_Lumin_Providers_CameraSystem_LuminCameraDataProvider_Update - commentId: M:XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.Update - fullName: XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.Update() - nameWithType: LuminCameraDataProvider.Update() -- uid: XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.Update* - name: Update - href: api/XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.html#XRTK_Lumin_Providers_CameraSystem_LuminCameraDataProvider_Update_ - commentId: Overload:XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.Update - isSpec: "True" - fullName: XRTK.Lumin.Providers.CameraSystem.LuminCameraDataProvider.Update - nameWithType: LuminCameraDataProvider.Update -- uid: XRTK.Lumin.Providers.Controllers - name: XRTK.Lumin.Providers.Controllers - href: api/XRTK.Lumin.Providers.Controllers.html - commentId: N:XRTK.Lumin.Providers.Controllers - fullName: XRTK.Lumin.Providers.Controllers - nameWithType: XRTK.Lumin.Providers.Controllers -- uid: XRTK.Lumin.Providers.Controllers.LuminController - name: LuminController - href: api/XRTK.Lumin.Providers.Controllers.LuminController.html - commentId: T:XRTK.Lumin.Providers.Controllers.LuminController - fullName: XRTK.Lumin.Providers.Controllers.LuminController - nameWithType: LuminController -- uid: XRTK.Lumin.Providers.Controllers.LuminController.#ctor - name: LuminController() - href: api/XRTK.Lumin.Providers.Controllers.LuminController.html#XRTK_Lumin_Providers_Controllers_LuminController__ctor - commentId: M:XRTK.Lumin.Providers.Controllers.LuminController.#ctor - fullName: XRTK.Lumin.Providers.Controllers.LuminController.LuminController() - nameWithType: LuminController.LuminController() -- uid: XRTK.Lumin.Providers.Controllers.LuminController.#ctor(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider,XRTK.Definitions.Devices.TrackingState,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - name: LuminController(IMixedRealityControllerDataProvider, TrackingState, Handedness, MixedRealityControllerMappingProfile) - href: api/XRTK.Lumin.Providers.Controllers.LuminController.html#XRTK_Lumin_Providers_Controllers_LuminController__ctor_XRTK_Interfaces_Providers_Controllers_IMixedRealityControllerDataProvider_XRTK_Definitions_Devices_TrackingState_XRTK_Definitions_Utilities_Handedness_XRTK_Definitions_Controllers_MixedRealityControllerMappingProfile_ - commentId: M:XRTK.Lumin.Providers.Controllers.LuminController.#ctor(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider,XRTK.Definitions.Devices.TrackingState,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - fullName: XRTK.Lumin.Providers.Controllers.LuminController.LuminController(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider, XRTK.Definitions.Devices.TrackingState, XRTK.Definitions.Utilities.Handedness, XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - nameWithType: LuminController.LuminController(IMixedRealityControllerDataProvider, TrackingState, Handedness, MixedRealityControllerMappingProfile) -- uid: XRTK.Lumin.Providers.Controllers.LuminController.#ctor* - name: LuminController - href: api/XRTK.Lumin.Providers.Controllers.LuminController.html#XRTK_Lumin_Providers_Controllers_LuminController__ctor_ - commentId: Overload:XRTK.Lumin.Providers.Controllers.LuminController.#ctor - isSpec: "True" - fullName: XRTK.Lumin.Providers.Controllers.LuminController.LuminController - nameWithType: LuminController.LuminController -- uid: XRTK.Lumin.Providers.Controllers.LuminController.DefaultInteractions - name: DefaultInteractions - href: api/XRTK.Lumin.Providers.Controllers.LuminController.html#XRTK_Lumin_Providers_Controllers_LuminController_DefaultInteractions - commentId: P:XRTK.Lumin.Providers.Controllers.LuminController.DefaultInteractions - fullName: XRTK.Lumin.Providers.Controllers.LuminController.DefaultInteractions - nameWithType: LuminController.DefaultInteractions -- uid: XRTK.Lumin.Providers.Controllers.LuminController.DefaultInteractions* - name: DefaultInteractions - href: api/XRTK.Lumin.Providers.Controllers.LuminController.html#XRTK_Lumin_Providers_Controllers_LuminController_DefaultInteractions_ - commentId: Overload:XRTK.Lumin.Providers.Controllers.LuminController.DefaultInteractions - isSpec: "True" - fullName: XRTK.Lumin.Providers.Controllers.LuminController.DefaultInteractions - nameWithType: LuminController.DefaultInteractions -- uid: XRTK.Lumin.Providers.Controllers.LuminController.DefaultLeftHandedInteractions - name: DefaultLeftHandedInteractions - href: api/XRTK.Lumin.Providers.Controllers.LuminController.html#XRTK_Lumin_Providers_Controllers_LuminController_DefaultLeftHandedInteractions - commentId: P:XRTK.Lumin.Providers.Controllers.LuminController.DefaultLeftHandedInteractions - fullName: XRTK.Lumin.Providers.Controllers.LuminController.DefaultLeftHandedInteractions - nameWithType: LuminController.DefaultLeftHandedInteractions -- uid: XRTK.Lumin.Providers.Controllers.LuminController.DefaultLeftHandedInteractions* - name: DefaultLeftHandedInteractions - href: api/XRTK.Lumin.Providers.Controllers.LuminController.html#XRTK_Lumin_Providers_Controllers_LuminController_DefaultLeftHandedInteractions_ - commentId: Overload:XRTK.Lumin.Providers.Controllers.LuminController.DefaultLeftHandedInteractions - isSpec: "True" - fullName: XRTK.Lumin.Providers.Controllers.LuminController.DefaultLeftHandedInteractions - nameWithType: LuminController.DefaultLeftHandedInteractions -- uid: XRTK.Lumin.Providers.Controllers.LuminController.DefaultRightHandedInteractions - name: DefaultRightHandedInteractions - href: api/XRTK.Lumin.Providers.Controllers.LuminController.html#XRTK_Lumin_Providers_Controllers_LuminController_DefaultRightHandedInteractions - commentId: P:XRTK.Lumin.Providers.Controllers.LuminController.DefaultRightHandedInteractions - fullName: XRTK.Lumin.Providers.Controllers.LuminController.DefaultRightHandedInteractions - nameWithType: LuminController.DefaultRightHandedInteractions -- uid: XRTK.Lumin.Providers.Controllers.LuminController.DefaultRightHandedInteractions* - name: DefaultRightHandedInteractions - href: api/XRTK.Lumin.Providers.Controllers.LuminController.html#XRTK_Lumin_Providers_Controllers_LuminController_DefaultRightHandedInteractions_ - commentId: Overload:XRTK.Lumin.Providers.Controllers.LuminController.DefaultRightHandedInteractions - isSpec: "True" - fullName: XRTK.Lumin.Providers.Controllers.LuminController.DefaultRightHandedInteractions - nameWithType: LuminController.DefaultRightHandedInteractions -- uid: XRTK.Lumin.Providers.Controllers.LuminControllerDataProvider - name: LuminControllerDataProvider - href: api/XRTK.Lumin.Providers.Controllers.LuminControllerDataProvider.html - commentId: T:XRTK.Lumin.Providers.Controllers.LuminControllerDataProvider - fullName: XRTK.Lumin.Providers.Controllers.LuminControllerDataProvider - nameWithType: LuminControllerDataProvider -- uid: XRTK.Lumin.Providers.Controllers.LuminControllerDataProvider.#ctor(System.String,System.UInt32,XRTK.Lumin.Profiles.LuminControllerDataProviderProfile,XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - name: LuminControllerDataProvider(String, UInt32, LuminControllerDataProviderProfile, IMixedRealityInputSystem) - href: api/XRTK.Lumin.Providers.Controllers.LuminControllerDataProvider.html#XRTK_Lumin_Providers_Controllers_LuminControllerDataProvider__ctor_System_String_System_UInt32_XRTK_Lumin_Profiles_LuminControllerDataProviderProfile_XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_ - commentId: M:XRTK.Lumin.Providers.Controllers.LuminControllerDataProvider.#ctor(System.String,System.UInt32,XRTK.Lumin.Profiles.LuminControllerDataProviderProfile,XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - fullName: XRTK.Lumin.Providers.Controllers.LuminControllerDataProvider.LuminControllerDataProvider(System.String, System.UInt32, XRTK.Lumin.Profiles.LuminControllerDataProviderProfile, XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - nameWithType: LuminControllerDataProvider.LuminControllerDataProvider(String, UInt32, LuminControllerDataProviderProfile, IMixedRealityInputSystem) -- uid: XRTK.Lumin.Providers.Controllers.LuminControllerDataProvider.#ctor* - name: LuminControllerDataProvider - href: api/XRTK.Lumin.Providers.Controllers.LuminControllerDataProvider.html#XRTK_Lumin_Providers_Controllers_LuminControllerDataProvider__ctor_ - commentId: Overload:XRTK.Lumin.Providers.Controllers.LuminControllerDataProvider.#ctor - isSpec: "True" - fullName: XRTK.Lumin.Providers.Controllers.LuminControllerDataProvider.LuminControllerDataProvider - nameWithType: LuminControllerDataProvider.LuminControllerDataProvider -- uid: XRTK.Lumin.Providers.Controllers.LuminControllerDataProvider.Disable - name: Disable() - href: api/XRTK.Lumin.Providers.Controllers.LuminControllerDataProvider.html#XRTK_Lumin_Providers_Controllers_LuminControllerDataProvider_Disable - commentId: M:XRTK.Lumin.Providers.Controllers.LuminControllerDataProvider.Disable - fullName: XRTK.Lumin.Providers.Controllers.LuminControllerDataProvider.Disable() - nameWithType: LuminControllerDataProvider.Disable() -- uid: XRTK.Lumin.Providers.Controllers.LuminControllerDataProvider.Disable* - name: Disable - href: api/XRTK.Lumin.Providers.Controllers.LuminControllerDataProvider.html#XRTK_Lumin_Providers_Controllers_LuminControllerDataProvider_Disable_ - commentId: Overload:XRTK.Lumin.Providers.Controllers.LuminControllerDataProvider.Disable - isSpec: "True" - fullName: XRTK.Lumin.Providers.Controllers.LuminControllerDataProvider.Disable - nameWithType: LuminControllerDataProvider.Disable -- uid: XRTK.Lumin.Providers.Controllers.LuminControllerDataProvider.Enable - name: Enable() - href: api/XRTK.Lumin.Providers.Controllers.LuminControllerDataProvider.html#XRTK_Lumin_Providers_Controllers_LuminControllerDataProvider_Enable - commentId: M:XRTK.Lumin.Providers.Controllers.LuminControllerDataProvider.Enable - fullName: XRTK.Lumin.Providers.Controllers.LuminControllerDataProvider.Enable() - nameWithType: LuminControllerDataProvider.Enable() -- uid: XRTK.Lumin.Providers.Controllers.LuminControllerDataProvider.Enable* - name: Enable - href: api/XRTK.Lumin.Providers.Controllers.LuminControllerDataProvider.html#XRTK_Lumin_Providers_Controllers_LuminControllerDataProvider_Enable_ - commentId: Overload:XRTK.Lumin.Providers.Controllers.LuminControllerDataProvider.Enable - isSpec: "True" - fullName: XRTK.Lumin.Providers.Controllers.LuminControllerDataProvider.Enable - nameWithType: LuminControllerDataProvider.Enable -- uid: XRTK.Lumin.Providers.Controllers.LuminControllerDataProvider.OnDispose(System.Boolean) - name: OnDispose(Boolean) - href: api/XRTK.Lumin.Providers.Controllers.LuminControllerDataProvider.html#XRTK_Lumin_Providers_Controllers_LuminControllerDataProvider_OnDispose_System_Boolean_ - commentId: M:XRTK.Lumin.Providers.Controllers.LuminControllerDataProvider.OnDispose(System.Boolean) - fullName: XRTK.Lumin.Providers.Controllers.LuminControllerDataProvider.OnDispose(System.Boolean) - nameWithType: LuminControllerDataProvider.OnDispose(Boolean) -- uid: XRTK.Lumin.Providers.Controllers.LuminControllerDataProvider.OnDispose* - name: OnDispose - href: api/XRTK.Lumin.Providers.Controllers.LuminControllerDataProvider.html#XRTK_Lumin_Providers_Controllers_LuminControllerDataProvider_OnDispose_ - commentId: Overload:XRTK.Lumin.Providers.Controllers.LuminControllerDataProvider.OnDispose - isSpec: "True" - fullName: XRTK.Lumin.Providers.Controllers.LuminControllerDataProvider.OnDispose - nameWithType: LuminControllerDataProvider.OnDispose -- uid: XRTK.Lumin.Providers.Controllers.LuminControllerDataProvider.Update - name: Update() - href: api/XRTK.Lumin.Providers.Controllers.LuminControllerDataProvider.html#XRTK_Lumin_Providers_Controllers_LuminControllerDataProvider_Update - commentId: M:XRTK.Lumin.Providers.Controllers.LuminControllerDataProvider.Update - fullName: XRTK.Lumin.Providers.Controllers.LuminControllerDataProvider.Update() - nameWithType: LuminControllerDataProvider.Update() -- uid: XRTK.Lumin.Providers.Controllers.LuminControllerDataProvider.Update* - name: Update - href: api/XRTK.Lumin.Providers.Controllers.LuminControllerDataProvider.html#XRTK_Lumin_Providers_Controllers_LuminControllerDataProvider_Update_ - commentId: Overload:XRTK.Lumin.Providers.Controllers.LuminControllerDataProvider.Update - isSpec: "True" - fullName: XRTK.Lumin.Providers.Controllers.LuminControllerDataProvider.Update - nameWithType: LuminControllerDataProvider.Update -- uid: XRTK.Lumin.Providers.Controllers.LuminHandControllerDataProvider - name: LuminHandControllerDataProvider - href: api/XRTK.Lumin.Providers.Controllers.LuminHandControllerDataProvider.html - commentId: T:XRTK.Lumin.Providers.Controllers.LuminHandControllerDataProvider - fullName: XRTK.Lumin.Providers.Controllers.LuminHandControllerDataProvider - nameWithType: LuminHandControllerDataProvider -- uid: XRTK.Lumin.Providers.Controllers.LuminHandControllerDataProvider.#ctor(System.String,System.UInt32,XRTK.Lumin.Profiles.LuminHandControllerDataProviderProfile,XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - name: LuminHandControllerDataProvider(String, UInt32, LuminHandControllerDataProviderProfile, IMixedRealityInputSystem) - href: api/XRTK.Lumin.Providers.Controllers.LuminHandControllerDataProvider.html#XRTK_Lumin_Providers_Controllers_LuminHandControllerDataProvider__ctor_System_String_System_UInt32_XRTK_Lumin_Profiles_LuminHandControllerDataProviderProfile_XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_ - commentId: M:XRTK.Lumin.Providers.Controllers.LuminHandControllerDataProvider.#ctor(System.String,System.UInt32,XRTK.Lumin.Profiles.LuminHandControllerDataProviderProfile,XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - fullName: XRTK.Lumin.Providers.Controllers.LuminHandControllerDataProvider.LuminHandControllerDataProvider(System.String, System.UInt32, XRTK.Lumin.Profiles.LuminHandControllerDataProviderProfile, XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - nameWithType: LuminHandControllerDataProvider.LuminHandControllerDataProvider(String, UInt32, LuminHandControllerDataProviderProfile, IMixedRealityInputSystem) -- uid: XRTK.Lumin.Providers.Controllers.LuminHandControllerDataProvider.#ctor* - name: LuminHandControllerDataProvider - href: api/XRTK.Lumin.Providers.Controllers.LuminHandControllerDataProvider.html#XRTK_Lumin_Providers_Controllers_LuminHandControllerDataProvider__ctor_ - commentId: Overload:XRTK.Lumin.Providers.Controllers.LuminHandControllerDataProvider.#ctor - isSpec: "True" - fullName: XRTK.Lumin.Providers.Controllers.LuminHandControllerDataProvider.LuminHandControllerDataProvider - nameWithType: LuminHandControllerDataProvider.LuminHandControllerDataProvider -- uid: XRTK.Lumin.Providers.Controllers.LuminHandControllerDataProvider.Destroy - name: Destroy() - href: api/XRTK.Lumin.Providers.Controllers.LuminHandControllerDataProvider.html#XRTK_Lumin_Providers_Controllers_LuminHandControllerDataProvider_Destroy - commentId: M:XRTK.Lumin.Providers.Controllers.LuminHandControllerDataProvider.Destroy - fullName: XRTK.Lumin.Providers.Controllers.LuminHandControllerDataProvider.Destroy() - nameWithType: LuminHandControllerDataProvider.Destroy() -- uid: XRTK.Lumin.Providers.Controllers.LuminHandControllerDataProvider.Destroy* - name: Destroy - href: api/XRTK.Lumin.Providers.Controllers.LuminHandControllerDataProvider.html#XRTK_Lumin_Providers_Controllers_LuminHandControllerDataProvider_Destroy_ - commentId: Overload:XRTK.Lumin.Providers.Controllers.LuminHandControllerDataProvider.Destroy - isSpec: "True" - fullName: XRTK.Lumin.Providers.Controllers.LuminHandControllerDataProvider.Destroy - nameWithType: LuminHandControllerDataProvider.Destroy -- uid: XRTK.Lumin.Providers.Controllers.LuminHandControllerDataProvider.Initialize - name: Initialize() - href: api/XRTK.Lumin.Providers.Controllers.LuminHandControllerDataProvider.html#XRTK_Lumin_Providers_Controllers_LuminHandControllerDataProvider_Initialize - commentId: M:XRTK.Lumin.Providers.Controllers.LuminHandControllerDataProvider.Initialize - fullName: XRTK.Lumin.Providers.Controllers.LuminHandControllerDataProvider.Initialize() - nameWithType: LuminHandControllerDataProvider.Initialize() -- uid: XRTK.Lumin.Providers.Controllers.LuminHandControllerDataProvider.Initialize* - name: Initialize - href: api/XRTK.Lumin.Providers.Controllers.LuminHandControllerDataProvider.html#XRTK_Lumin_Providers_Controllers_LuminHandControllerDataProvider_Initialize_ - commentId: Overload:XRTK.Lumin.Providers.Controllers.LuminHandControllerDataProvider.Initialize - isSpec: "True" - fullName: XRTK.Lumin.Providers.Controllers.LuminHandControllerDataProvider.Initialize - nameWithType: LuminHandControllerDataProvider.Initialize -- uid: XRTK.Lumin.Providers.Controllers.LuminHandControllerDataProvider.Update - name: Update() - href: api/XRTK.Lumin.Providers.Controllers.LuminHandControllerDataProvider.html#XRTK_Lumin_Providers_Controllers_LuminHandControllerDataProvider_Update - commentId: M:XRTK.Lumin.Providers.Controllers.LuminHandControllerDataProvider.Update - fullName: XRTK.Lumin.Providers.Controllers.LuminHandControllerDataProvider.Update() - nameWithType: LuminHandControllerDataProvider.Update() -- uid: XRTK.Lumin.Providers.Controllers.LuminHandControllerDataProvider.Update* - name: Update - href: api/XRTK.Lumin.Providers.Controllers.LuminHandControllerDataProvider.html#XRTK_Lumin_Providers_Controllers_LuminHandControllerDataProvider_Update_ - commentId: Overload:XRTK.Lumin.Providers.Controllers.LuminHandControllerDataProvider.Update - isSpec: "True" - fullName: XRTK.Lumin.Providers.Controllers.LuminHandControllerDataProvider.Update - nameWithType: LuminHandControllerDataProvider.Update -- uid: XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers - name: XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers - href: api/XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.html - commentId: N:XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers - fullName: XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers - nameWithType: XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers -- uid: XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver - name: LuminSpatialMeshObserver - href: api/XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver.html - commentId: T:XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver - fullName: XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver - nameWithType: LuminSpatialMeshObserver -- uid: XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver.#ctor(System.String,System.UInt32,XRTK.Lumin.Profiles.LuminSpatialMeshObserverProfile,XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem) - name: LuminSpatialMeshObserver(String, UInt32, LuminSpatialMeshObserverProfile, IMixedRealitySpatialAwarenessSystem) - href: api/XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver.html#XRTK_Lumin_Providers_SpatialAwareness_SpatialObservers_LuminSpatialMeshObserver__ctor_System_String_System_UInt32_XRTK_Lumin_Profiles_LuminSpatialMeshObserverProfile_XRTK_Interfaces_SpatialAwarenessSystem_IMixedRealitySpatialAwarenessSystem_ - commentId: M:XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver.#ctor(System.String,System.UInt32,XRTK.Lumin.Profiles.LuminSpatialMeshObserverProfile,XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem) - fullName: XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver.LuminSpatialMeshObserver(System.String, System.UInt32, XRTK.Lumin.Profiles.LuminSpatialMeshObserverProfile, XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem) - nameWithType: LuminSpatialMeshObserver.LuminSpatialMeshObserver(String, UInt32, LuminSpatialMeshObserverProfile, IMixedRealitySpatialAwarenessSystem) -- uid: XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver.#ctor* - name: LuminSpatialMeshObserver - href: api/XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver.html#XRTK_Lumin_Providers_SpatialAwareness_SpatialObservers_LuminSpatialMeshObserver__ctor_ - commentId: Overload:XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver.#ctor - isSpec: "True" - fullName: XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver.LuminSpatialMeshObserver - nameWithType: LuminSpatialMeshObserver.LuminSpatialMeshObserver -- uid: XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver.Destroy - name: Destroy() - href: api/XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver.html#XRTK_Lumin_Providers_SpatialAwareness_SpatialObservers_LuminSpatialMeshObserver_Destroy - commentId: M:XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver.Destroy - fullName: XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver.Destroy() - nameWithType: LuminSpatialMeshObserver.Destroy() -- uid: XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver.Destroy* - name: Destroy - href: api/XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver.html#XRTK_Lumin_Providers_SpatialAwareness_SpatialObservers_LuminSpatialMeshObserver_Destroy_ - commentId: Overload:XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver.Destroy - isSpec: "True" - fullName: XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver.Destroy - nameWithType: LuminSpatialMeshObserver.Destroy -- uid: XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver.Initialize - name: Initialize() - href: api/XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver.html#XRTK_Lumin_Providers_SpatialAwareness_SpatialObservers_LuminSpatialMeshObserver_Initialize - commentId: M:XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver.Initialize - fullName: XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver.Initialize() - nameWithType: LuminSpatialMeshObserver.Initialize() -- uid: XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver.Initialize* - name: Initialize - href: api/XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver.html#XRTK_Lumin_Providers_SpatialAwareness_SpatialObservers_LuminSpatialMeshObserver_Initialize_ - commentId: Overload:XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver.Initialize - isSpec: "True" - fullName: XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver.Initialize - nameWithType: LuminSpatialMeshObserver.Initialize -- uid: XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver.StartObserving - name: StartObserving() - href: api/XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver.html#XRTK_Lumin_Providers_SpatialAwareness_SpatialObservers_LuminSpatialMeshObserver_StartObserving - commentId: M:XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver.StartObserving - fullName: XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver.StartObserving() - nameWithType: LuminSpatialMeshObserver.StartObserving() -- uid: XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver.StartObserving* - name: StartObserving - href: api/XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver.html#XRTK_Lumin_Providers_SpatialAwareness_SpatialObservers_LuminSpatialMeshObserver_StartObserving_ - commentId: Overload:XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver.StartObserving - isSpec: "True" - fullName: XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver.StartObserving - nameWithType: LuminSpatialMeshObserver.StartObserving -- uid: XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver.StopObserving - name: StopObserving() - href: api/XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver.html#XRTK_Lumin_Providers_SpatialAwareness_SpatialObservers_LuminSpatialMeshObserver_StopObserving - commentId: M:XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver.StopObserving - fullName: XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver.StopObserving() - nameWithType: LuminSpatialMeshObserver.StopObserving() -- uid: XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver.StopObserving* - name: StopObserving - href: api/XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver.html#XRTK_Lumin_Providers_SpatialAwareness_SpatialObservers_LuminSpatialMeshObserver_StopObserving_ - commentId: Overload:XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver.StopObserving - isSpec: "True" - fullName: XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver.StopObserving - nameWithType: LuminSpatialMeshObserver.StopObserving -- uid: XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver.Update - name: Update() - href: api/XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver.html#XRTK_Lumin_Providers_SpatialAwareness_SpatialObservers_LuminSpatialMeshObserver_Update - commentId: M:XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver.Update - fullName: XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver.Update() - nameWithType: LuminSpatialMeshObserver.Update() -- uid: XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver.Update* - name: Update - href: api/XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver.html#XRTK_Lumin_Providers_SpatialAwareness_SpatialObservers_LuminSpatialMeshObserver_Update_ - commentId: Overload:XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver.Update - isSpec: "True" - fullName: XRTK.Lumin.Providers.SpatialAwareness.SpatialObservers.LuminSpatialMeshObserver.Update - nameWithType: LuminSpatialMeshObserver.Update -- uid: XRTK.Oculus - name: XRTK.Oculus - href: api/XRTK.Oculus.html - commentId: N:XRTK.Oculus - fullName: XRTK.Oculus - nameWithType: XRTK.Oculus -- uid: XRTK.Oculus.Editor - name: XRTK.Oculus.Editor - href: api/XRTK.Oculus.Editor.html - commentId: N:XRTK.Oculus.Editor - fullName: XRTK.Oculus.Editor - nameWithType: XRTK.Oculus.Editor -- uid: XRTK.Oculus.Editor.Build - name: XRTK.Oculus.Editor.Build - href: api/XRTK.Oculus.Editor.Build.html - commentId: N:XRTK.Oculus.Editor.Build - fullName: XRTK.Oculus.Editor.Build - nameWithType: XRTK.Oculus.Editor.Build -- uid: XRTK.Oculus.Editor.Build.OculusManifestPreprocessor - name: OculusManifestPreprocessor - href: api/XRTK.Oculus.Editor.Build.OculusManifestPreprocessor.html - commentId: T:XRTK.Oculus.Editor.Build.OculusManifestPreprocessor - fullName: XRTK.Oculus.Editor.Build.OculusManifestPreprocessor - nameWithType: OculusManifestPreprocessor -- uid: XRTK.Oculus.Editor.Build.OculusManifestPreprocessor.GenerateManifestForSubmission - name: GenerateManifestForSubmission() - href: api/XRTK.Oculus.Editor.Build.OculusManifestPreprocessor.html#XRTK_Oculus_Editor_Build_OculusManifestPreprocessor_GenerateManifestForSubmission - commentId: M:XRTK.Oculus.Editor.Build.OculusManifestPreprocessor.GenerateManifestForSubmission - fullName: XRTK.Oculus.Editor.Build.OculusManifestPreprocessor.GenerateManifestForSubmission() - nameWithType: OculusManifestPreprocessor.GenerateManifestForSubmission() -- uid: XRTK.Oculus.Editor.Build.OculusManifestPreprocessor.GenerateManifestForSubmission* - name: GenerateManifestForSubmission - href: api/XRTK.Oculus.Editor.Build.OculusManifestPreprocessor.html#XRTK_Oculus_Editor_Build_OculusManifestPreprocessor_GenerateManifestForSubmission_ - commentId: Overload:XRTK.Oculus.Editor.Build.OculusManifestPreprocessor.GenerateManifestForSubmission - isSpec: "True" - fullName: XRTK.Oculus.Editor.Build.OculusManifestPreprocessor.GenerateManifestForSubmission - nameWithType: OculusManifestPreprocessor.GenerateManifestForSubmission -- uid: XRTK.Oculus.Editor.Build.OculusManifestPreprocessor.RemoveAndroidManifest - name: RemoveAndroidManifest() - href: api/XRTK.Oculus.Editor.Build.OculusManifestPreprocessor.html#XRTK_Oculus_Editor_Build_OculusManifestPreprocessor_RemoveAndroidManifest - commentId: M:XRTK.Oculus.Editor.Build.OculusManifestPreprocessor.RemoveAndroidManifest - fullName: XRTK.Oculus.Editor.Build.OculusManifestPreprocessor.RemoveAndroidManifest() - nameWithType: OculusManifestPreprocessor.RemoveAndroidManifest() -- uid: XRTK.Oculus.Editor.Build.OculusManifestPreprocessor.RemoveAndroidManifest* - name: RemoveAndroidManifest - href: api/XRTK.Oculus.Editor.Build.OculusManifestPreprocessor.html#XRTK_Oculus_Editor_Build_OculusManifestPreprocessor_RemoveAndroidManifest_ - commentId: Overload:XRTK.Oculus.Editor.Build.OculusManifestPreprocessor.RemoveAndroidManifest - isSpec: "True" - fullName: XRTK.Oculus.Editor.Build.OculusManifestPreprocessor.RemoveAndroidManifest - nameWithType: OculusManifestPreprocessor.RemoveAndroidManifest -- uid: XRTK.Oculus.Editor.OculusHandControllerDataProviderProfileInspector - name: OculusHandControllerDataProviderProfileInspector - href: api/XRTK.Oculus.Editor.OculusHandControllerDataProviderProfileInspector.html - commentId: T:XRTK.Oculus.Editor.OculusHandControllerDataProviderProfileInspector - fullName: XRTK.Oculus.Editor.OculusHandControllerDataProviderProfileInspector - nameWithType: OculusHandControllerDataProviderProfileInspector -- uid: XRTK.Oculus.Editor.OculusHandControllerDataProviderProfileInspector.OnEnable - name: OnEnable() - href: api/XRTK.Oculus.Editor.OculusHandControllerDataProviderProfileInspector.html#XRTK_Oculus_Editor_OculusHandControllerDataProviderProfileInspector_OnEnable - commentId: M:XRTK.Oculus.Editor.OculusHandControllerDataProviderProfileInspector.OnEnable - fullName: XRTK.Oculus.Editor.OculusHandControllerDataProviderProfileInspector.OnEnable() - nameWithType: OculusHandControllerDataProviderProfileInspector.OnEnable() -- uid: XRTK.Oculus.Editor.OculusHandControllerDataProviderProfileInspector.OnEnable* - name: OnEnable - href: api/XRTK.Oculus.Editor.OculusHandControllerDataProviderProfileInspector.html#XRTK_Oculus_Editor_OculusHandControllerDataProviderProfileInspector_OnEnable_ - commentId: Overload:XRTK.Oculus.Editor.OculusHandControllerDataProviderProfileInspector.OnEnable - isSpec: "True" - fullName: XRTK.Oculus.Editor.OculusHandControllerDataProviderProfileInspector.OnEnable - nameWithType: OculusHandControllerDataProviderProfileInspector.OnEnable -- uid: XRTK.Oculus.Editor.OculusHandControllerDataProviderProfileInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.Oculus.Editor.OculusHandControllerDataProviderProfileInspector.html#XRTK_Oculus_Editor_OculusHandControllerDataProviderProfileInspector_OnInspectorGUI - commentId: M:XRTK.Oculus.Editor.OculusHandControllerDataProviderProfileInspector.OnInspectorGUI - fullName: XRTK.Oculus.Editor.OculusHandControllerDataProviderProfileInspector.OnInspectorGUI() - nameWithType: OculusHandControllerDataProviderProfileInspector.OnInspectorGUI() -- uid: XRTK.Oculus.Editor.OculusHandControllerDataProviderProfileInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.Oculus.Editor.OculusHandControllerDataProviderProfileInspector.html#XRTK_Oculus_Editor_OculusHandControllerDataProviderProfileInspector_OnInspectorGUI_ - commentId: Overload:XRTK.Oculus.Editor.OculusHandControllerDataProviderProfileInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.Oculus.Editor.OculusHandControllerDataProviderProfileInspector.OnInspectorGUI - nameWithType: OculusHandControllerDataProviderProfileInspector.OnInspectorGUI -- uid: XRTK.Oculus.Editor.OculusPathFinder - name: OculusPathFinder - href: api/XRTK.Oculus.Editor.OculusPathFinder.html - commentId: T:XRTK.Oculus.Editor.OculusPathFinder - fullName: XRTK.Oculus.Editor.OculusPathFinder - nameWithType: OculusPathFinder -- uid: XRTK.Oculus.Editor.OculusPathFinder.Location - name: Location - href: api/XRTK.Oculus.Editor.OculusPathFinder.html#XRTK_Oculus_Editor_OculusPathFinder_Location - commentId: P:XRTK.Oculus.Editor.OculusPathFinder.Location - fullName: XRTK.Oculus.Editor.OculusPathFinder.Location - nameWithType: OculusPathFinder.Location -- uid: XRTK.Oculus.Editor.OculusPathFinder.Location* - name: Location - href: api/XRTK.Oculus.Editor.OculusPathFinder.html#XRTK_Oculus_Editor_OculusPathFinder_Location_ - commentId: Overload:XRTK.Oculus.Editor.OculusPathFinder.Location - isSpec: "True" - fullName: XRTK.Oculus.Editor.OculusPathFinder.Location - nameWithType: OculusPathFinder.Location -- uid: XRTK.Oculus.Extensions - name: XRTK.Oculus.Extensions - href: api/XRTK.Oculus.Extensions.html - commentId: N:XRTK.Oculus.Extensions - fullName: XRTK.Oculus.Extensions - nameWithType: XRTK.Oculus.Extensions -- uid: XRTK.Oculus.Extensions.HandednessExtensions - name: HandednessExtensions - href: api/XRTK.Oculus.Extensions.HandednessExtensions.html - commentId: T:XRTK.Oculus.Extensions.HandednessExtensions - fullName: XRTK.Oculus.Extensions.HandednessExtensions - nameWithType: HandednessExtensions -- uid: XRTK.Oculus.Extensions.HandednessExtensions.ToHand(XRTK.Definitions.Utilities.Handedness) - name: ToHand(Handedness) - href: api/XRTK.Oculus.Extensions.HandednessExtensions.html#XRTK_Oculus_Extensions_HandednessExtensions_ToHand_XRTK_Definitions_Utilities_Handedness_ - commentId: M:XRTK.Oculus.Extensions.HandednessExtensions.ToHand(XRTK.Definitions.Utilities.Handedness) - fullName: XRTK.Oculus.Extensions.HandednessExtensions.ToHand(XRTK.Definitions.Utilities.Handedness) - nameWithType: HandednessExtensions.ToHand(Handedness) -- uid: XRTK.Oculus.Extensions.HandednessExtensions.ToHand* - name: ToHand - href: api/XRTK.Oculus.Extensions.HandednessExtensions.html#XRTK_Oculus_Extensions_HandednessExtensions_ToHand_ - commentId: Overload:XRTK.Oculus.Extensions.HandednessExtensions.ToHand - isSpec: "True" - fullName: XRTK.Oculus.Extensions.HandednessExtensions.ToHand - nameWithType: HandednessExtensions.ToHand -- uid: XRTK.Oculus.Extensions.HandednessExtensions.ToHandedness(XRTK.Oculus.Plugins.OculusApi.Controller) - name: ToHandedness(OculusApi.Controller) - href: api/XRTK.Oculus.Extensions.HandednessExtensions.html#XRTK_Oculus_Extensions_HandednessExtensions_ToHandedness_XRTK_Oculus_Plugins_OculusApi_Controller_ - commentId: M:XRTK.Oculus.Extensions.HandednessExtensions.ToHandedness(XRTK.Oculus.Plugins.OculusApi.Controller) - fullName: XRTK.Oculus.Extensions.HandednessExtensions.ToHandedness(XRTK.Oculus.Plugins.OculusApi.Controller) - nameWithType: HandednessExtensions.ToHandedness(OculusApi.Controller) -- uid: XRTK.Oculus.Extensions.HandednessExtensions.ToHandedness* - name: ToHandedness - href: api/XRTK.Oculus.Extensions.HandednessExtensions.html#XRTK_Oculus_Extensions_HandednessExtensions_ToHandedness_ - commentId: Overload:XRTK.Oculus.Extensions.HandednessExtensions.ToHandedness - isSpec: "True" - fullName: XRTK.Oculus.Extensions.HandednessExtensions.ToHandedness - nameWithType: HandednessExtensions.ToHandedness -- uid: XRTK.Oculus.Extensions.HandednessExtensions.ToMeshType(XRTK.Definitions.Utilities.Handedness) - name: ToMeshType(Handedness) - href: api/XRTK.Oculus.Extensions.HandednessExtensions.html#XRTK_Oculus_Extensions_HandednessExtensions_ToMeshType_XRTK_Definitions_Utilities_Handedness_ - commentId: M:XRTK.Oculus.Extensions.HandednessExtensions.ToMeshType(XRTK.Definitions.Utilities.Handedness) - fullName: XRTK.Oculus.Extensions.HandednessExtensions.ToMeshType(XRTK.Definitions.Utilities.Handedness) - nameWithType: HandednessExtensions.ToMeshType(Handedness) -- uid: XRTK.Oculus.Extensions.HandednessExtensions.ToMeshType* - name: ToMeshType - href: api/XRTK.Oculus.Extensions.HandednessExtensions.html#XRTK_Oculus_Extensions_HandednessExtensions_ToMeshType_ - commentId: Overload:XRTK.Oculus.Extensions.HandednessExtensions.ToMeshType - isSpec: "True" - fullName: XRTK.Oculus.Extensions.HandednessExtensions.ToMeshType - nameWithType: HandednessExtensions.ToMeshType -- uid: XRTK.Oculus.Extensions.HandednessExtensions.ToNode(XRTK.Definitions.Utilities.Handedness) - name: ToNode(Handedness) - href: api/XRTK.Oculus.Extensions.HandednessExtensions.html#XRTK_Oculus_Extensions_HandednessExtensions_ToNode_XRTK_Definitions_Utilities_Handedness_ - commentId: M:XRTK.Oculus.Extensions.HandednessExtensions.ToNode(XRTK.Definitions.Utilities.Handedness) - fullName: XRTK.Oculus.Extensions.HandednessExtensions.ToNode(XRTK.Definitions.Utilities.Handedness) - nameWithType: HandednessExtensions.ToNode(Handedness) -- uid: XRTK.Oculus.Extensions.HandednessExtensions.ToNode* - name: ToNode - href: api/XRTK.Oculus.Extensions.HandednessExtensions.html#XRTK_Oculus_Extensions_HandednessExtensions_ToNode_ - commentId: Overload:XRTK.Oculus.Extensions.HandednessExtensions.ToNode - isSpec: "True" - fullName: XRTK.Oculus.Extensions.HandednessExtensions.ToNode - nameWithType: HandednessExtensions.ToNode -- uid: XRTK.Oculus.Extensions.HandednessExtensions.ToSkeletonType(XRTK.Definitions.Utilities.Handedness) - name: ToSkeletonType(Handedness) - href: api/XRTK.Oculus.Extensions.HandednessExtensions.html#XRTK_Oculus_Extensions_HandednessExtensions_ToSkeletonType_XRTK_Definitions_Utilities_Handedness_ - commentId: M:XRTK.Oculus.Extensions.HandednessExtensions.ToSkeletonType(XRTK.Definitions.Utilities.Handedness) - fullName: XRTK.Oculus.Extensions.HandednessExtensions.ToSkeletonType(XRTK.Definitions.Utilities.Handedness) - nameWithType: HandednessExtensions.ToSkeletonType(Handedness) -- uid: XRTK.Oculus.Extensions.HandednessExtensions.ToSkeletonType* - name: ToSkeletonType - href: api/XRTK.Oculus.Extensions.HandednessExtensions.html#XRTK_Oculus_Extensions_HandednessExtensions_ToSkeletonType_ - commentId: Overload:XRTK.Oculus.Extensions.HandednessExtensions.ToSkeletonType - isSpec: "True" - fullName: XRTK.Oculus.Extensions.HandednessExtensions.ToSkeletonType - nameWithType: HandednessExtensions.ToSkeletonType -- uid: XRTK.Oculus.OculusPlatform - name: OculusPlatform - href: api/XRTK.Oculus.OculusPlatform.html - commentId: T:XRTK.Oculus.OculusPlatform - fullName: XRTK.Oculus.OculusPlatform - nameWithType: OculusPlatform -- uid: XRTK.Oculus.OculusPlatform.IsAvailable - name: IsAvailable - href: api/XRTK.Oculus.OculusPlatform.html#XRTK_Oculus_OculusPlatform_IsAvailable - commentId: P:XRTK.Oculus.OculusPlatform.IsAvailable - fullName: XRTK.Oculus.OculusPlatform.IsAvailable - nameWithType: OculusPlatform.IsAvailable -- uid: XRTK.Oculus.OculusPlatform.IsAvailable* - name: IsAvailable - href: api/XRTK.Oculus.OculusPlatform.html#XRTK_Oculus_OculusPlatform_IsAvailable_ - commentId: Overload:XRTK.Oculus.OculusPlatform.IsAvailable - isSpec: "True" - fullName: XRTK.Oculus.OculusPlatform.IsAvailable - nameWithType: OculusPlatform.IsAvailable -- uid: XRTK.Oculus.OculusPlatform.PlatformOverrides - name: PlatformOverrides - href: api/XRTK.Oculus.OculusPlatform.html#XRTK_Oculus_OculusPlatform_PlatformOverrides - commentId: P:XRTK.Oculus.OculusPlatform.PlatformOverrides - fullName: XRTK.Oculus.OculusPlatform.PlatformOverrides - nameWithType: OculusPlatform.PlatformOverrides -- uid: XRTK.Oculus.OculusPlatform.PlatformOverrides* - name: PlatformOverrides - href: api/XRTK.Oculus.OculusPlatform.html#XRTK_Oculus_OculusPlatform_PlatformOverrides_ - commentId: Overload:XRTK.Oculus.OculusPlatform.PlatformOverrides - isSpec: "True" - fullName: XRTK.Oculus.OculusPlatform.PlatformOverrides - nameWithType: OculusPlatform.PlatformOverrides -- uid: XRTK.Oculus.Plugins - name: XRTK.Oculus.Plugins - href: api/XRTK.Oculus.Plugins.html - commentId: N:XRTK.Oculus.Plugins - fullName: XRTK.Oculus.Plugins - nameWithType: XRTK.Oculus.Plugins -- uid: XRTK.Oculus.Plugins.OculusApi - name: OculusApi - href: api/XRTK.Oculus.Plugins.OculusApi.html - commentId: T:XRTK.Oculus.Plugins.OculusApi - fullName: XRTK.Oculus.Plugins.OculusApi - nameWithType: OculusApi -- uid: XRTK.Oculus.Plugins.OculusApi.BatteryLevel - name: BatteryLevel - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_BatteryLevel - commentId: P:XRTK.Oculus.Plugins.OculusApi.BatteryLevel - fullName: XRTK.Oculus.Plugins.OculusApi.BatteryLevel - nameWithType: OculusApi.BatteryLevel -- uid: XRTK.Oculus.Plugins.OculusApi.BatteryLevel* - name: BatteryLevel - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_BatteryLevel_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.BatteryLevel - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.BatteryLevel - nameWithType: OculusApi.BatteryLevel -- uid: XRTK.Oculus.Plugins.OculusApi.batteryStatus - name: batteryStatus - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_batteryStatus - commentId: P:XRTK.Oculus.Plugins.OculusApi.batteryStatus - fullName: XRTK.Oculus.Plugins.OculusApi.batteryStatus - nameWithType: OculusApi.batteryStatus -- uid: XRTK.Oculus.Plugins.OculusApi.BatteryStatus - name: OculusApi.BatteryStatus - href: api/XRTK.Oculus.Plugins.OculusApi.BatteryStatus.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.BatteryStatus - fullName: XRTK.Oculus.Plugins.OculusApi.BatteryStatus - nameWithType: OculusApi.BatteryStatus -- uid: XRTK.Oculus.Plugins.OculusApi.batteryStatus* - name: batteryStatus - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_batteryStatus_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.batteryStatus - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.batteryStatus - nameWithType: OculusApi.batteryStatus -- uid: XRTK.Oculus.Plugins.OculusApi.BatteryStatus.Charging - name: Charging - href: api/XRTK.Oculus.Plugins.OculusApi.BatteryStatus.html#XRTK_Oculus_Plugins_OculusApi_BatteryStatus_Charging - commentId: F:XRTK.Oculus.Plugins.OculusApi.BatteryStatus.Charging - fullName: XRTK.Oculus.Plugins.OculusApi.BatteryStatus.Charging - nameWithType: OculusApi.BatteryStatus.Charging -- uid: XRTK.Oculus.Plugins.OculusApi.BatteryStatus.Discharging - name: Discharging - href: api/XRTK.Oculus.Plugins.OculusApi.BatteryStatus.html#XRTK_Oculus_Plugins_OculusApi_BatteryStatus_Discharging - commentId: F:XRTK.Oculus.Plugins.OculusApi.BatteryStatus.Discharging - fullName: XRTK.Oculus.Plugins.OculusApi.BatteryStatus.Discharging - nameWithType: OculusApi.BatteryStatus.Discharging -- uid: XRTK.Oculus.Plugins.OculusApi.BatteryStatus.Full - name: Full - href: api/XRTK.Oculus.Plugins.OculusApi.BatteryStatus.html#XRTK_Oculus_Plugins_OculusApi_BatteryStatus_Full - commentId: F:XRTK.Oculus.Plugins.OculusApi.BatteryStatus.Full - fullName: XRTK.Oculus.Plugins.OculusApi.BatteryStatus.Full - nameWithType: OculusApi.BatteryStatus.Full -- uid: XRTK.Oculus.Plugins.OculusApi.BatteryStatus.NotCharging - name: NotCharging - href: api/XRTK.Oculus.Plugins.OculusApi.BatteryStatus.html#XRTK_Oculus_Plugins_OculusApi_BatteryStatus_NotCharging - commentId: F:XRTK.Oculus.Plugins.OculusApi.BatteryStatus.NotCharging - fullName: XRTK.Oculus.Plugins.OculusApi.BatteryStatus.NotCharging - nameWithType: OculusApi.BatteryStatus.NotCharging -- uid: XRTK.Oculus.Plugins.OculusApi.BatteryStatus.Unknown - name: Unknown - href: api/XRTK.Oculus.Plugins.OculusApi.BatteryStatus.html#XRTK_Oculus_Plugins_OculusApi_BatteryStatus_Unknown - commentId: F:XRTK.Oculus.Plugins.OculusApi.BatteryStatus.Unknown - fullName: XRTK.Oculus.Plugins.OculusApi.BatteryStatus.Unknown - nameWithType: OculusApi.BatteryStatus.Unknown -- uid: XRTK.Oculus.Plugins.OculusApi.BatteryTemperature - name: BatteryTemperature - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_BatteryTemperature - commentId: P:XRTK.Oculus.Plugins.OculusApi.BatteryTemperature - fullName: XRTK.Oculus.Plugins.OculusApi.BatteryTemperature - nameWithType: OculusApi.BatteryTemperature -- uid: XRTK.Oculus.Plugins.OculusApi.BatteryTemperature* - name: BatteryTemperature - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_BatteryTemperature_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.BatteryTemperature - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.BatteryTemperature - nameWithType: OculusApi.BatteryTemperature -- uid: XRTK.Oculus.Plugins.OculusApi.Bone - name: OculusApi.Bone - href: api/XRTK.Oculus.Plugins.OculusApi.Bone.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.Bone - fullName: XRTK.Oculus.Plugins.OculusApi.Bone - nameWithType: OculusApi.Bone -- uid: XRTK.Oculus.Plugins.OculusApi.Bone.Id - name: Id - href: api/XRTK.Oculus.Plugins.OculusApi.Bone.html#XRTK_Oculus_Plugins_OculusApi_Bone_Id - commentId: F:XRTK.Oculus.Plugins.OculusApi.Bone.Id - fullName: XRTK.Oculus.Plugins.OculusApi.Bone.Id - nameWithType: OculusApi.Bone.Id -- uid: XRTK.Oculus.Plugins.OculusApi.Bone.ParentBoneIndex - name: ParentBoneIndex - href: api/XRTK.Oculus.Plugins.OculusApi.Bone.html#XRTK_Oculus_Plugins_OculusApi_Bone_ParentBoneIndex - commentId: F:XRTK.Oculus.Plugins.OculusApi.Bone.ParentBoneIndex - fullName: XRTK.Oculus.Plugins.OculusApi.Bone.ParentBoneIndex - nameWithType: OculusApi.Bone.ParentBoneIndex -- uid: XRTK.Oculus.Plugins.OculusApi.Bone.Pose - name: Pose - href: api/XRTK.Oculus.Plugins.OculusApi.Bone.html#XRTK_Oculus_Plugins_OculusApi_Bone_Pose - commentId: F:XRTK.Oculus.Plugins.OculusApi.Bone.Pose - fullName: XRTK.Oculus.Plugins.OculusApi.Bone.Pose - nameWithType: OculusApi.Bone.Pose -- uid: XRTK.Oculus.Plugins.OculusApi.BoneCapsule - name: OculusApi.BoneCapsule - href: api/XRTK.Oculus.Plugins.OculusApi.BoneCapsule.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.BoneCapsule - fullName: XRTK.Oculus.Plugins.OculusApi.BoneCapsule - nameWithType: OculusApi.BoneCapsule -- uid: XRTK.Oculus.Plugins.OculusApi.BoneCapsule.BoneIndex - name: BoneIndex - href: api/XRTK.Oculus.Plugins.OculusApi.BoneCapsule.html#XRTK_Oculus_Plugins_OculusApi_BoneCapsule_BoneIndex - commentId: F:XRTK.Oculus.Plugins.OculusApi.BoneCapsule.BoneIndex - fullName: XRTK.Oculus.Plugins.OculusApi.BoneCapsule.BoneIndex - nameWithType: OculusApi.BoneCapsule.BoneIndex -- uid: XRTK.Oculus.Plugins.OculusApi.BoneCapsule.Points - name: Points - href: api/XRTK.Oculus.Plugins.OculusApi.BoneCapsule.html#XRTK_Oculus_Plugins_OculusApi_BoneCapsule_Points - commentId: F:XRTK.Oculus.Plugins.OculusApi.BoneCapsule.Points - fullName: XRTK.Oculus.Plugins.OculusApi.BoneCapsule.Points - nameWithType: OculusApi.BoneCapsule.Points -- uid: XRTK.Oculus.Plugins.OculusApi.BoneCapsule.Radius - name: Radius - href: api/XRTK.Oculus.Plugins.OculusApi.BoneCapsule.html#XRTK_Oculus_Plugins_OculusApi_BoneCapsule_Radius - commentId: F:XRTK.Oculus.Plugins.OculusApi.BoneCapsule.Radius - fullName: XRTK.Oculus.Plugins.OculusApi.BoneCapsule.Radius - nameWithType: OculusApi.BoneCapsule.Radius -- uid: XRTK.Oculus.Plugins.OculusApi.BoneId - name: OculusApi.BoneId - href: api/XRTK.Oculus.Plugins.OculusApi.BoneId.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.BoneId - fullName: XRTK.Oculus.Plugins.OculusApi.BoneId - nameWithType: OculusApi.BoneId -- uid: XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_End - name: Hand_End - href: api/XRTK.Oculus.Plugins.OculusApi.BoneId.html#XRTK_Oculus_Plugins_OculusApi_BoneId_Hand_End - commentId: F:XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_End - fullName: XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_End - nameWithType: OculusApi.BoneId.Hand_End -- uid: XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_ForearmStub - name: Hand_ForearmStub - href: api/XRTK.Oculus.Plugins.OculusApi.BoneId.html#XRTK_Oculus_Plugins_OculusApi_BoneId_Hand_ForearmStub - commentId: F:XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_ForearmStub - fullName: XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_ForearmStub - nameWithType: OculusApi.BoneId.Hand_ForearmStub -- uid: XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_Index1 - name: Hand_Index1 - href: api/XRTK.Oculus.Plugins.OculusApi.BoneId.html#XRTK_Oculus_Plugins_OculusApi_BoneId_Hand_Index1 - commentId: F:XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_Index1 - fullName: XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_Index1 - nameWithType: OculusApi.BoneId.Hand_Index1 -- uid: XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_Index2 - name: Hand_Index2 - href: api/XRTK.Oculus.Plugins.OculusApi.BoneId.html#XRTK_Oculus_Plugins_OculusApi_BoneId_Hand_Index2 - commentId: F:XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_Index2 - fullName: XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_Index2 - nameWithType: OculusApi.BoneId.Hand_Index2 -- uid: XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_Index3 - name: Hand_Index3 - href: api/XRTK.Oculus.Plugins.OculusApi.BoneId.html#XRTK_Oculus_Plugins_OculusApi_BoneId_Hand_Index3 - commentId: F:XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_Index3 - fullName: XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_Index3 - nameWithType: OculusApi.BoneId.Hand_Index3 -- uid: XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_IndexTip - name: Hand_IndexTip - href: api/XRTK.Oculus.Plugins.OculusApi.BoneId.html#XRTK_Oculus_Plugins_OculusApi_BoneId_Hand_IndexTip - commentId: F:XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_IndexTip - fullName: XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_IndexTip - nameWithType: OculusApi.BoneId.Hand_IndexTip -- uid: XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_MaxSkinnable - name: Hand_MaxSkinnable - href: api/XRTK.Oculus.Plugins.OculusApi.BoneId.html#XRTK_Oculus_Plugins_OculusApi_BoneId_Hand_MaxSkinnable - commentId: F:XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_MaxSkinnable - fullName: XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_MaxSkinnable - nameWithType: OculusApi.BoneId.Hand_MaxSkinnable -- uid: XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_Middle1 - name: Hand_Middle1 - href: api/XRTK.Oculus.Plugins.OculusApi.BoneId.html#XRTK_Oculus_Plugins_OculusApi_BoneId_Hand_Middle1 - commentId: F:XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_Middle1 - fullName: XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_Middle1 - nameWithType: OculusApi.BoneId.Hand_Middle1 -- uid: XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_Middle2 - name: Hand_Middle2 - href: api/XRTK.Oculus.Plugins.OculusApi.BoneId.html#XRTK_Oculus_Plugins_OculusApi_BoneId_Hand_Middle2 - commentId: F:XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_Middle2 - fullName: XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_Middle2 - nameWithType: OculusApi.BoneId.Hand_Middle2 -- uid: XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_Middle3 - name: Hand_Middle3 - href: api/XRTK.Oculus.Plugins.OculusApi.BoneId.html#XRTK_Oculus_Plugins_OculusApi_BoneId_Hand_Middle3 - commentId: F:XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_Middle3 - fullName: XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_Middle3 - nameWithType: OculusApi.BoneId.Hand_Middle3 -- uid: XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_MiddleTip - name: Hand_MiddleTip - href: api/XRTK.Oculus.Plugins.OculusApi.BoneId.html#XRTK_Oculus_Plugins_OculusApi_BoneId_Hand_MiddleTip - commentId: F:XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_MiddleTip - fullName: XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_MiddleTip - nameWithType: OculusApi.BoneId.Hand_MiddleTip -- uid: XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_Pinky0 - name: Hand_Pinky0 - href: api/XRTK.Oculus.Plugins.OculusApi.BoneId.html#XRTK_Oculus_Plugins_OculusApi_BoneId_Hand_Pinky0 - commentId: F:XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_Pinky0 - fullName: XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_Pinky0 - nameWithType: OculusApi.BoneId.Hand_Pinky0 -- uid: XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_Pinky1 - name: Hand_Pinky1 - href: api/XRTK.Oculus.Plugins.OculusApi.BoneId.html#XRTK_Oculus_Plugins_OculusApi_BoneId_Hand_Pinky1 - commentId: F:XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_Pinky1 - fullName: XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_Pinky1 - nameWithType: OculusApi.BoneId.Hand_Pinky1 -- uid: XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_Pinky2 - name: Hand_Pinky2 - href: api/XRTK.Oculus.Plugins.OculusApi.BoneId.html#XRTK_Oculus_Plugins_OculusApi_BoneId_Hand_Pinky2 - commentId: F:XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_Pinky2 - fullName: XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_Pinky2 - nameWithType: OculusApi.BoneId.Hand_Pinky2 -- uid: XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_Pinky3 - name: Hand_Pinky3 - href: api/XRTK.Oculus.Plugins.OculusApi.BoneId.html#XRTK_Oculus_Plugins_OculusApi_BoneId_Hand_Pinky3 - commentId: F:XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_Pinky3 - fullName: XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_Pinky3 - nameWithType: OculusApi.BoneId.Hand_Pinky3 -- uid: XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_PinkyTip - name: Hand_PinkyTip - href: api/XRTK.Oculus.Plugins.OculusApi.BoneId.html#XRTK_Oculus_Plugins_OculusApi_BoneId_Hand_PinkyTip - commentId: F:XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_PinkyTip - fullName: XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_PinkyTip - nameWithType: OculusApi.BoneId.Hand_PinkyTip -- uid: XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_Ring1 - name: Hand_Ring1 - href: api/XRTK.Oculus.Plugins.OculusApi.BoneId.html#XRTK_Oculus_Plugins_OculusApi_BoneId_Hand_Ring1 - commentId: F:XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_Ring1 - fullName: XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_Ring1 - nameWithType: OculusApi.BoneId.Hand_Ring1 -- uid: XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_Ring2 - name: Hand_Ring2 - href: api/XRTK.Oculus.Plugins.OculusApi.BoneId.html#XRTK_Oculus_Plugins_OculusApi_BoneId_Hand_Ring2 - commentId: F:XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_Ring2 - fullName: XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_Ring2 - nameWithType: OculusApi.BoneId.Hand_Ring2 -- uid: XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_Ring3 - name: Hand_Ring3 - href: api/XRTK.Oculus.Plugins.OculusApi.BoneId.html#XRTK_Oculus_Plugins_OculusApi_BoneId_Hand_Ring3 - commentId: F:XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_Ring3 - fullName: XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_Ring3 - nameWithType: OculusApi.BoneId.Hand_Ring3 -- uid: XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_RingTip - name: Hand_RingTip - href: api/XRTK.Oculus.Plugins.OculusApi.BoneId.html#XRTK_Oculus_Plugins_OculusApi_BoneId_Hand_RingTip - commentId: F:XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_RingTip - fullName: XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_RingTip - nameWithType: OculusApi.BoneId.Hand_RingTip -- uid: XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_Start - name: Hand_Start - href: api/XRTK.Oculus.Plugins.OculusApi.BoneId.html#XRTK_Oculus_Plugins_OculusApi_BoneId_Hand_Start - commentId: F:XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_Start - fullName: XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_Start - nameWithType: OculusApi.BoneId.Hand_Start -- uid: XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_Thumb0 - name: Hand_Thumb0 - href: api/XRTK.Oculus.Plugins.OculusApi.BoneId.html#XRTK_Oculus_Plugins_OculusApi_BoneId_Hand_Thumb0 - commentId: F:XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_Thumb0 - fullName: XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_Thumb0 - nameWithType: OculusApi.BoneId.Hand_Thumb0 -- uid: XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_Thumb1 - name: Hand_Thumb1 - href: api/XRTK.Oculus.Plugins.OculusApi.BoneId.html#XRTK_Oculus_Plugins_OculusApi_BoneId_Hand_Thumb1 - commentId: F:XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_Thumb1 - fullName: XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_Thumb1 - nameWithType: OculusApi.BoneId.Hand_Thumb1 -- uid: XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_Thumb2 - name: Hand_Thumb2 - href: api/XRTK.Oculus.Plugins.OculusApi.BoneId.html#XRTK_Oculus_Plugins_OculusApi_BoneId_Hand_Thumb2 - commentId: F:XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_Thumb2 - fullName: XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_Thumb2 - nameWithType: OculusApi.BoneId.Hand_Thumb2 -- uid: XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_Thumb3 - name: Hand_Thumb3 - href: api/XRTK.Oculus.Plugins.OculusApi.BoneId.html#XRTK_Oculus_Plugins_OculusApi_BoneId_Hand_Thumb3 - commentId: F:XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_Thumb3 - fullName: XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_Thumb3 - nameWithType: OculusApi.BoneId.Hand_Thumb3 -- uid: XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_ThumbTip - name: Hand_ThumbTip - href: api/XRTK.Oculus.Plugins.OculusApi.BoneId.html#XRTK_Oculus_Plugins_OculusApi_BoneId_Hand_ThumbTip - commentId: F:XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_ThumbTip - fullName: XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_ThumbTip - nameWithType: OculusApi.BoneId.Hand_ThumbTip -- uid: XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_WristRoot - name: Hand_WristRoot - href: api/XRTK.Oculus.Plugins.OculusApi.BoneId.html#XRTK_Oculus_Plugins_OculusApi_BoneId_Hand_WristRoot - commentId: F:XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_WristRoot - fullName: XRTK.Oculus.Plugins.OculusApi.BoneId.Hand_WristRoot - nameWithType: OculusApi.BoneId.Hand_WristRoot -- uid: XRTK.Oculus.Plugins.OculusApi.BoneId.Invalid - name: Invalid - href: api/XRTK.Oculus.Plugins.OculusApi.BoneId.html#XRTK_Oculus_Plugins_OculusApi_BoneId_Invalid - commentId: F:XRTK.Oculus.Plugins.OculusApi.BoneId.Invalid - fullName: XRTK.Oculus.Plugins.OculusApi.BoneId.Invalid - nameWithType: OculusApi.BoneId.Invalid -- uid: XRTK.Oculus.Plugins.OculusApi.BoneId.Max - name: Max - href: api/XRTK.Oculus.Plugins.OculusApi.BoneId.html#XRTK_Oculus_Plugins_OculusApi_BoneId_Max - commentId: F:XRTK.Oculus.Plugins.OculusApi.BoneId.Max - fullName: XRTK.Oculus.Plugins.OculusApi.BoneId.Max - nameWithType: OculusApi.BoneId.Max -- uid: XRTK.Oculus.Plugins.OculusApi.Bool - name: OculusApi.Bool - href: api/XRTK.Oculus.Plugins.OculusApi.Bool.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.Bool - fullName: XRTK.Oculus.Plugins.OculusApi.Bool - nameWithType: OculusApi.Bool -- uid: XRTK.Oculus.Plugins.OculusApi.Bool.False - name: "False" - href: api/XRTK.Oculus.Plugins.OculusApi.Bool.html#XRTK_Oculus_Plugins_OculusApi_Bool_False - commentId: F:XRTK.Oculus.Plugins.OculusApi.Bool.False - fullName: XRTK.Oculus.Plugins.OculusApi.Bool.False - nameWithType: OculusApi.Bool.False -- uid: XRTK.Oculus.Plugins.OculusApi.Bool.True - name: "True" - href: api/XRTK.Oculus.Plugins.OculusApi.Bool.html#XRTK_Oculus_Plugins_OculusApi_Bool_True - commentId: F:XRTK.Oculus.Plugins.OculusApi.Bool.True - fullName: XRTK.Oculus.Plugins.OculusApi.Bool.True - nameWithType: OculusApi.Bool.True -- uid: XRTK.Oculus.Plugins.OculusApi.BoundaryGeometry - name: OculusApi.BoundaryGeometry - href: api/XRTK.Oculus.Plugins.OculusApi.BoundaryGeometry.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.BoundaryGeometry - fullName: XRTK.Oculus.Plugins.OculusApi.BoundaryGeometry - nameWithType: OculusApi.BoundaryGeometry -- uid: XRTK.Oculus.Plugins.OculusApi.BoundaryGeometry.BoundaryType - name: BoundaryType - href: api/XRTK.Oculus.Plugins.OculusApi.BoundaryGeometry.html#XRTK_Oculus_Plugins_OculusApi_BoundaryGeometry_BoundaryType - commentId: F:XRTK.Oculus.Plugins.OculusApi.BoundaryGeometry.BoundaryType - fullName: XRTK.Oculus.Plugins.OculusApi.BoundaryGeometry.BoundaryType - nameWithType: OculusApi.BoundaryGeometry.BoundaryType -- uid: XRTK.Oculus.Plugins.OculusApi.BoundaryGeometry.Points - name: Points - href: api/XRTK.Oculus.Plugins.OculusApi.BoundaryGeometry.html#XRTK_Oculus_Plugins_OculusApi_BoundaryGeometry_Points - commentId: F:XRTK.Oculus.Plugins.OculusApi.BoundaryGeometry.Points - fullName: XRTK.Oculus.Plugins.OculusApi.BoundaryGeometry.Points - nameWithType: OculusApi.BoundaryGeometry.Points -- uid: XRTK.Oculus.Plugins.OculusApi.BoundaryGeometry.PointsCount - name: PointsCount - href: api/XRTK.Oculus.Plugins.OculusApi.BoundaryGeometry.html#XRTK_Oculus_Plugins_OculusApi_BoundaryGeometry_PointsCount - commentId: F:XRTK.Oculus.Plugins.OculusApi.BoundaryGeometry.PointsCount - fullName: XRTK.Oculus.Plugins.OculusApi.BoundaryGeometry.PointsCount - nameWithType: OculusApi.BoundaryGeometry.PointsCount -- uid: XRTK.Oculus.Plugins.OculusApi.BoundaryTestResult - name: OculusApi.BoundaryTestResult - href: api/XRTK.Oculus.Plugins.OculusApi.BoundaryTestResult.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.BoundaryTestResult - fullName: XRTK.Oculus.Plugins.OculusApi.BoundaryTestResult - nameWithType: OculusApi.BoundaryTestResult -- uid: XRTK.Oculus.Plugins.OculusApi.BoundaryTestResult.ClosestDistance - name: ClosestDistance - href: api/XRTK.Oculus.Plugins.OculusApi.BoundaryTestResult.html#XRTK_Oculus_Plugins_OculusApi_BoundaryTestResult_ClosestDistance - commentId: F:XRTK.Oculus.Plugins.OculusApi.BoundaryTestResult.ClosestDistance - fullName: XRTK.Oculus.Plugins.OculusApi.BoundaryTestResult.ClosestDistance - nameWithType: OculusApi.BoundaryTestResult.ClosestDistance -- uid: XRTK.Oculus.Plugins.OculusApi.BoundaryTestResult.ClosestPoint - name: ClosestPoint - href: api/XRTK.Oculus.Plugins.OculusApi.BoundaryTestResult.html#XRTK_Oculus_Plugins_OculusApi_BoundaryTestResult_ClosestPoint - commentId: F:XRTK.Oculus.Plugins.OculusApi.BoundaryTestResult.ClosestPoint - fullName: XRTK.Oculus.Plugins.OculusApi.BoundaryTestResult.ClosestPoint - nameWithType: OculusApi.BoundaryTestResult.ClosestPoint -- uid: XRTK.Oculus.Plugins.OculusApi.BoundaryTestResult.ClosestPointNormal - name: ClosestPointNormal - href: api/XRTK.Oculus.Plugins.OculusApi.BoundaryTestResult.html#XRTK_Oculus_Plugins_OculusApi_BoundaryTestResult_ClosestPointNormal - commentId: F:XRTK.Oculus.Plugins.OculusApi.BoundaryTestResult.ClosestPointNormal - fullName: XRTK.Oculus.Plugins.OculusApi.BoundaryTestResult.ClosestPointNormal - nameWithType: OculusApi.BoundaryTestResult.ClosestPointNormal -- uid: XRTK.Oculus.Plugins.OculusApi.BoundaryTestResult.IsTriggering - name: IsTriggering - href: api/XRTK.Oculus.Plugins.OculusApi.BoundaryTestResult.html#XRTK_Oculus_Plugins_OculusApi_BoundaryTestResult_IsTriggering - commentId: F:XRTK.Oculus.Plugins.OculusApi.BoundaryTestResult.IsTriggering - fullName: XRTK.Oculus.Plugins.OculusApi.BoundaryTestResult.IsTriggering - nameWithType: OculusApi.BoundaryTestResult.IsTriggering -- uid: XRTK.Oculus.Plugins.OculusApi.BoundaryType - name: OculusApi.BoundaryType - href: api/XRTK.Oculus.Plugins.OculusApi.BoundaryType.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.BoundaryType - fullName: XRTK.Oculus.Plugins.OculusApi.BoundaryType - nameWithType: OculusApi.BoundaryType -- uid: XRTK.Oculus.Plugins.OculusApi.BoundaryType.OuterBoundary - name: OuterBoundary - href: api/XRTK.Oculus.Plugins.OculusApi.BoundaryType.html#XRTK_Oculus_Plugins_OculusApi_BoundaryType_OuterBoundary - commentId: F:XRTK.Oculus.Plugins.OculusApi.BoundaryType.OuterBoundary - fullName: XRTK.Oculus.Plugins.OculusApi.BoundaryType.OuterBoundary - nameWithType: OculusApi.BoundaryType.OuterBoundary -- uid: XRTK.Oculus.Plugins.OculusApi.BoundaryType.PlayArea - name: PlayArea - href: api/XRTK.Oculus.Plugins.OculusApi.BoundaryType.html#XRTK_Oculus_Plugins_OculusApi_BoundaryType_PlayArea - commentId: F:XRTK.Oculus.Plugins.OculusApi.BoundaryType.PlayArea - fullName: XRTK.Oculus.Plugins.OculusApi.BoundaryType.PlayArea - nameWithType: OculusApi.BoundaryType.PlayArea -- uid: XRTK.Oculus.Plugins.OculusApi.CameraAnchorType - name: OculusApi.CameraAnchorType - href: api/XRTK.Oculus.Plugins.OculusApi.CameraAnchorType.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.CameraAnchorType - fullName: XRTK.Oculus.Plugins.OculusApi.CameraAnchorType - nameWithType: OculusApi.CameraAnchorType -- uid: XRTK.Oculus.Plugins.OculusApi.CameraAnchorType.CameraAnchorType_Count - name: CameraAnchorType_Count - href: api/XRTK.Oculus.Plugins.OculusApi.CameraAnchorType.html#XRTK_Oculus_Plugins_OculusApi_CameraAnchorType_CameraAnchorType_Count - commentId: F:XRTK.Oculus.Plugins.OculusApi.CameraAnchorType.CameraAnchorType_Count - fullName: XRTK.Oculus.Plugins.OculusApi.CameraAnchorType.CameraAnchorType_Count - nameWithType: OculusApi.CameraAnchorType.CameraAnchorType_Count -- uid: XRTK.Oculus.Plugins.OculusApi.CameraAnchorType.CameraAnchorType_Custom - name: CameraAnchorType_Custom - href: api/XRTK.Oculus.Plugins.OculusApi.CameraAnchorType.html#XRTK_Oculus_Plugins_OculusApi_CameraAnchorType_CameraAnchorType_Custom - commentId: F:XRTK.Oculus.Plugins.OculusApi.CameraAnchorType.CameraAnchorType_Custom - fullName: XRTK.Oculus.Plugins.OculusApi.CameraAnchorType.CameraAnchorType_Custom - nameWithType: OculusApi.CameraAnchorType.CameraAnchorType_Custom -- uid: XRTK.Oculus.Plugins.OculusApi.CameraAnchorType.CameraAnchorType_EnumSize - name: CameraAnchorType_EnumSize - href: api/XRTK.Oculus.Plugins.OculusApi.CameraAnchorType.html#XRTK_Oculus_Plugins_OculusApi_CameraAnchorType_CameraAnchorType_EnumSize - commentId: F:XRTK.Oculus.Plugins.OculusApi.CameraAnchorType.CameraAnchorType_EnumSize - fullName: XRTK.Oculus.Plugins.OculusApi.CameraAnchorType.CameraAnchorType_EnumSize - nameWithType: OculusApi.CameraAnchorType.CameraAnchorType_EnumSize -- uid: XRTK.Oculus.Plugins.OculusApi.CameraAnchorType.CameraAnchorType_PreDefined - name: CameraAnchorType_PreDefined - href: api/XRTK.Oculus.Plugins.OculusApi.CameraAnchorType.html#XRTK_Oculus_Plugins_OculusApi_CameraAnchorType_CameraAnchorType_PreDefined - commentId: F:XRTK.Oculus.Plugins.OculusApi.CameraAnchorType.CameraAnchorType_PreDefined - fullName: XRTK.Oculus.Plugins.OculusApi.CameraAnchorType.CameraAnchorType_PreDefined - nameWithType: OculusApi.CameraAnchorType.CameraAnchorType_PreDefined -- uid: XRTK.Oculus.Plugins.OculusApi.CameraExtrinsics - name: OculusApi.CameraExtrinsics - href: api/XRTK.Oculus.Plugins.OculusApi.CameraExtrinsics.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.CameraExtrinsics - fullName: XRTK.Oculus.Plugins.OculusApi.CameraExtrinsics - nameWithType: OculusApi.CameraExtrinsics -- uid: XRTK.Oculus.Plugins.OculusApi.CameraExtrinsics.AttachedToNode - name: AttachedToNode - href: api/XRTK.Oculus.Plugins.OculusApi.CameraExtrinsics.html#XRTK_Oculus_Plugins_OculusApi_CameraExtrinsics_AttachedToNode - commentId: F:XRTK.Oculus.Plugins.OculusApi.CameraExtrinsics.AttachedToNode - fullName: XRTK.Oculus.Plugins.OculusApi.CameraExtrinsics.AttachedToNode - nameWithType: OculusApi.CameraExtrinsics.AttachedToNode -- uid: XRTK.Oculus.Plugins.OculusApi.CameraExtrinsics.CameraStatusData - name: CameraStatusData - href: api/XRTK.Oculus.Plugins.OculusApi.CameraExtrinsics.html#XRTK_Oculus_Plugins_OculusApi_CameraExtrinsics_CameraStatusData - commentId: F:XRTK.Oculus.Plugins.OculusApi.CameraExtrinsics.CameraStatusData - fullName: XRTK.Oculus.Plugins.OculusApi.CameraExtrinsics.CameraStatusData - nameWithType: OculusApi.CameraExtrinsics.CameraStatusData -- uid: XRTK.Oculus.Plugins.OculusApi.CameraExtrinsics.IsValid - name: IsValid - href: api/XRTK.Oculus.Plugins.OculusApi.CameraExtrinsics.html#XRTK_Oculus_Plugins_OculusApi_CameraExtrinsics_IsValid - commentId: F:XRTK.Oculus.Plugins.OculusApi.CameraExtrinsics.IsValid - fullName: XRTK.Oculus.Plugins.OculusApi.CameraExtrinsics.IsValid - nameWithType: OculusApi.CameraExtrinsics.IsValid -- uid: XRTK.Oculus.Plugins.OculusApi.CameraExtrinsics.LastChangedTimeSeconds - name: LastChangedTimeSeconds - href: api/XRTK.Oculus.Plugins.OculusApi.CameraExtrinsics.html#XRTK_Oculus_Plugins_OculusApi_CameraExtrinsics_LastChangedTimeSeconds - commentId: F:XRTK.Oculus.Plugins.OculusApi.CameraExtrinsics.LastChangedTimeSeconds - fullName: XRTK.Oculus.Plugins.OculusApi.CameraExtrinsics.LastChangedTimeSeconds - nameWithType: OculusApi.CameraExtrinsics.LastChangedTimeSeconds -- uid: XRTK.Oculus.Plugins.OculusApi.CameraExtrinsics.RelativePose - name: RelativePose - href: api/XRTK.Oculus.Plugins.OculusApi.CameraExtrinsics.html#XRTK_Oculus_Plugins_OculusApi_CameraExtrinsics_RelativePose - commentId: F:XRTK.Oculus.Plugins.OculusApi.CameraExtrinsics.RelativePose - fullName: XRTK.Oculus.Plugins.OculusApi.CameraExtrinsics.RelativePose - nameWithType: OculusApi.CameraExtrinsics.RelativePose -- uid: XRTK.Oculus.Plugins.OculusApi.CameraIntrinsics - name: OculusApi.CameraIntrinsics - href: api/XRTK.Oculus.Plugins.OculusApi.CameraIntrinsics.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.CameraIntrinsics - fullName: XRTK.Oculus.Plugins.OculusApi.CameraIntrinsics - nameWithType: OculusApi.CameraIntrinsics -- uid: XRTK.Oculus.Plugins.OculusApi.CameraIntrinsics.FOVPort - name: FOVPort - href: api/XRTK.Oculus.Plugins.OculusApi.CameraIntrinsics.html#XRTK_Oculus_Plugins_OculusApi_CameraIntrinsics_FOVPort - commentId: F:XRTK.Oculus.Plugins.OculusApi.CameraIntrinsics.FOVPort - fullName: XRTK.Oculus.Plugins.OculusApi.CameraIntrinsics.FOVPort - nameWithType: OculusApi.CameraIntrinsics.FOVPort -- uid: XRTK.Oculus.Plugins.OculusApi.CameraIntrinsics.ImageSensorPixelResolution - name: ImageSensorPixelResolution - href: api/XRTK.Oculus.Plugins.OculusApi.CameraIntrinsics.html#XRTK_Oculus_Plugins_OculusApi_CameraIntrinsics_ImageSensorPixelResolution - commentId: F:XRTK.Oculus.Plugins.OculusApi.CameraIntrinsics.ImageSensorPixelResolution - fullName: XRTK.Oculus.Plugins.OculusApi.CameraIntrinsics.ImageSensorPixelResolution - nameWithType: OculusApi.CameraIntrinsics.ImageSensorPixelResolution -- uid: XRTK.Oculus.Plugins.OculusApi.CameraIntrinsics.IsValid - name: IsValid - href: api/XRTK.Oculus.Plugins.OculusApi.CameraIntrinsics.html#XRTK_Oculus_Plugins_OculusApi_CameraIntrinsics_IsValid - commentId: F:XRTK.Oculus.Plugins.OculusApi.CameraIntrinsics.IsValid - fullName: XRTK.Oculus.Plugins.OculusApi.CameraIntrinsics.IsValid - nameWithType: OculusApi.CameraIntrinsics.IsValid -- uid: XRTK.Oculus.Plugins.OculusApi.CameraIntrinsics.LastChangedTimeSeconds - name: LastChangedTimeSeconds - href: api/XRTK.Oculus.Plugins.OculusApi.CameraIntrinsics.html#XRTK_Oculus_Plugins_OculusApi_CameraIntrinsics_LastChangedTimeSeconds - commentId: F:XRTK.Oculus.Plugins.OculusApi.CameraIntrinsics.LastChangedTimeSeconds - fullName: XRTK.Oculus.Plugins.OculusApi.CameraIntrinsics.LastChangedTimeSeconds - nameWithType: OculusApi.CameraIntrinsics.LastChangedTimeSeconds -- uid: XRTK.Oculus.Plugins.OculusApi.CameraIntrinsics.VirtualFarPlaneDistanceMeters - name: VirtualFarPlaneDistanceMeters - href: api/XRTK.Oculus.Plugins.OculusApi.CameraIntrinsics.html#XRTK_Oculus_Plugins_OculusApi_CameraIntrinsics_VirtualFarPlaneDistanceMeters - commentId: F:XRTK.Oculus.Plugins.OculusApi.CameraIntrinsics.VirtualFarPlaneDistanceMeters - fullName: XRTK.Oculus.Plugins.OculusApi.CameraIntrinsics.VirtualFarPlaneDistanceMeters - nameWithType: OculusApi.CameraIntrinsics.VirtualFarPlaneDistanceMeters -- uid: XRTK.Oculus.Plugins.OculusApi.CameraIntrinsics.VirtualNearPlaneDistanceMeters - name: VirtualNearPlaneDistanceMeters - href: api/XRTK.Oculus.Plugins.OculusApi.CameraIntrinsics.html#XRTK_Oculus_Plugins_OculusApi_CameraIntrinsics_VirtualNearPlaneDistanceMeters - commentId: F:XRTK.Oculus.Plugins.OculusApi.CameraIntrinsics.VirtualNearPlaneDistanceMeters - fullName: XRTK.Oculus.Plugins.OculusApi.CameraIntrinsics.VirtualNearPlaneDistanceMeters - nameWithType: OculusApi.CameraIntrinsics.VirtualNearPlaneDistanceMeters -- uid: XRTK.Oculus.Plugins.OculusApi.CameraStatus - name: OculusApi.CameraStatus - href: api/XRTK.Oculus.Plugins.OculusApi.CameraStatus.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.CameraStatus - fullName: XRTK.Oculus.Plugins.OculusApi.CameraStatus - nameWithType: OculusApi.CameraStatus -- uid: XRTK.Oculus.Plugins.OculusApi.CameraStatus.CameraStatus_Calibrated - name: CameraStatus_Calibrated - href: api/XRTK.Oculus.Plugins.OculusApi.CameraStatus.html#XRTK_Oculus_Plugins_OculusApi_CameraStatus_CameraStatus_Calibrated - commentId: F:XRTK.Oculus.Plugins.OculusApi.CameraStatus.CameraStatus_Calibrated - fullName: XRTK.Oculus.Plugins.OculusApi.CameraStatus.CameraStatus_Calibrated - nameWithType: OculusApi.CameraStatus.CameraStatus_Calibrated -- uid: XRTK.Oculus.Plugins.OculusApi.CameraStatus.CameraStatus_Calibrating - name: CameraStatus_Calibrating - href: api/XRTK.Oculus.Plugins.OculusApi.CameraStatus.html#XRTK_Oculus_Plugins_OculusApi_CameraStatus_CameraStatus_Calibrating - commentId: F:XRTK.Oculus.Plugins.OculusApi.CameraStatus.CameraStatus_Calibrating - fullName: XRTK.Oculus.Plugins.OculusApi.CameraStatus.CameraStatus_Calibrating - nameWithType: OculusApi.CameraStatus.CameraStatus_Calibrating -- uid: XRTK.Oculus.Plugins.OculusApi.CameraStatus.CameraStatus_CalibrationFailed - name: CameraStatus_CalibrationFailed - href: api/XRTK.Oculus.Plugins.OculusApi.CameraStatus.html#XRTK_Oculus_Plugins_OculusApi_CameraStatus_CameraStatus_CalibrationFailed - commentId: F:XRTK.Oculus.Plugins.OculusApi.CameraStatus.CameraStatus_CalibrationFailed - fullName: XRTK.Oculus.Plugins.OculusApi.CameraStatus.CameraStatus_CalibrationFailed - nameWithType: OculusApi.CameraStatus.CameraStatus_CalibrationFailed -- uid: XRTK.Oculus.Plugins.OculusApi.CameraStatus.CameraStatus_Connected - name: CameraStatus_Connected - href: api/XRTK.Oculus.Plugins.OculusApi.CameraStatus.html#XRTK_Oculus_Plugins_OculusApi_CameraStatus_CameraStatus_Connected - commentId: F:XRTK.Oculus.Plugins.OculusApi.CameraStatus.CameraStatus_Connected - fullName: XRTK.Oculus.Plugins.OculusApi.CameraStatus.CameraStatus_Connected - nameWithType: OculusApi.CameraStatus.CameraStatus_Connected -- uid: XRTK.Oculus.Plugins.OculusApi.CameraStatus.CameraStatus_EnumSize - name: CameraStatus_EnumSize - href: api/XRTK.Oculus.Plugins.OculusApi.CameraStatus.html#XRTK_Oculus_Plugins_OculusApi_CameraStatus_CameraStatus_EnumSize - commentId: F:XRTK.Oculus.Plugins.OculusApi.CameraStatus.CameraStatus_EnumSize - fullName: XRTK.Oculus.Plugins.OculusApi.CameraStatus.CameraStatus_EnumSize - nameWithType: OculusApi.CameraStatus.CameraStatus_EnumSize -- uid: XRTK.Oculus.Plugins.OculusApi.CameraStatus.CameraStatus_None - name: CameraStatus_None - href: api/XRTK.Oculus.Plugins.OculusApi.CameraStatus.html#XRTK_Oculus_Plugins_OculusApi_CameraStatus_CameraStatus_None - commentId: F:XRTK.Oculus.Plugins.OculusApi.CameraStatus.CameraStatus_None - fullName: XRTK.Oculus.Plugins.OculusApi.CameraStatus.CameraStatus_None - nameWithType: OculusApi.CameraStatus.CameraStatus_None -- uid: XRTK.Oculus.Plugins.OculusApi.CameraStatus.CameraStatus_ThirdPerson - name: CameraStatus_ThirdPerson - href: api/XRTK.Oculus.Plugins.OculusApi.CameraStatus.html#XRTK_Oculus_Plugins_OculusApi_CameraStatus_CameraStatus_ThirdPerson - commentId: F:XRTK.Oculus.Plugins.OculusApi.CameraStatus.CameraStatus_ThirdPerson - fullName: XRTK.Oculus.Plugins.OculusApi.CameraStatus.CameraStatus_ThirdPerson - nameWithType: OculusApi.CameraStatus.CameraStatus_ThirdPerson -- uid: XRTK.Oculus.Plugins.OculusApi.Colorf - name: OculusApi.Colorf - href: api/XRTK.Oculus.Plugins.OculusApi.Colorf.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.Colorf - fullName: XRTK.Oculus.Plugins.OculusApi.Colorf - nameWithType: OculusApi.Colorf -- uid: XRTK.Oculus.Plugins.OculusApi.Colorf.a - name: a - href: api/XRTK.Oculus.Plugins.OculusApi.Colorf.html#XRTK_Oculus_Plugins_OculusApi_Colorf_a - commentId: F:XRTK.Oculus.Plugins.OculusApi.Colorf.a - fullName: XRTK.Oculus.Plugins.OculusApi.Colorf.a - nameWithType: OculusApi.Colorf.a -- uid: XRTK.Oculus.Plugins.OculusApi.Colorf.b - name: b - href: api/XRTK.Oculus.Plugins.OculusApi.Colorf.html#XRTK_Oculus_Plugins_OculusApi_Colorf_b - commentId: F:XRTK.Oculus.Plugins.OculusApi.Colorf.b - fullName: XRTK.Oculus.Plugins.OculusApi.Colorf.b - nameWithType: OculusApi.Colorf.b -- uid: XRTK.Oculus.Plugins.OculusApi.Colorf.g - name: g - href: api/XRTK.Oculus.Plugins.OculusApi.Colorf.html#XRTK_Oculus_Plugins_OculusApi_Colorf_g - commentId: F:XRTK.Oculus.Plugins.OculusApi.Colorf.g - fullName: XRTK.Oculus.Plugins.OculusApi.Colorf.g - nameWithType: OculusApi.Colorf.g -- uid: XRTK.Oculus.Plugins.OculusApi.Colorf.r - name: r - href: api/XRTK.Oculus.Plugins.OculusApi.Colorf.html#XRTK_Oculus_Plugins_OculusApi_Colorf_r - commentId: F:XRTK.Oculus.Plugins.OculusApi.Colorf.r - fullName: XRTK.Oculus.Plugins.OculusApi.Colorf.r - nameWithType: OculusApi.Colorf.r -- uid: XRTK.Oculus.Plugins.OculusApi.ColorSpace - name: OculusApi.ColorSpace - href: api/XRTK.Oculus.Plugins.OculusApi.ColorSpace.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.ColorSpace - fullName: XRTK.Oculus.Plugins.OculusApi.ColorSpace - nameWithType: OculusApi.ColorSpace -- uid: XRTK.Oculus.Plugins.OculusApi.ColorSpace.Adobe_RGB - name: Adobe_RGB - href: api/XRTK.Oculus.Plugins.OculusApi.ColorSpace.html#XRTK_Oculus_Plugins_OculusApi_ColorSpace_Adobe_RGB - commentId: F:XRTK.Oculus.Plugins.OculusApi.ColorSpace.Adobe_RGB - fullName: XRTK.Oculus.Plugins.OculusApi.ColorSpace.Adobe_RGB - nameWithType: OculusApi.ColorSpace.Adobe_RGB -- uid: XRTK.Oculus.Plugins.OculusApi.ColorSpace.P3 - name: P3 - href: api/XRTK.Oculus.Plugins.OculusApi.ColorSpace.html#XRTK_Oculus_Plugins_OculusApi_ColorSpace_P3 - commentId: F:XRTK.Oculus.Plugins.OculusApi.ColorSpace.P3 - fullName: XRTK.Oculus.Plugins.OculusApi.ColorSpace.P3 - nameWithType: OculusApi.ColorSpace.P3 -- uid: XRTK.Oculus.Plugins.OculusApi.ColorSpace.Quest - name: Quest - href: api/XRTK.Oculus.Plugins.OculusApi.ColorSpace.html#XRTK_Oculus_Plugins_OculusApi_ColorSpace_Quest - commentId: F:XRTK.Oculus.Plugins.OculusApi.ColorSpace.Quest - fullName: XRTK.Oculus.Plugins.OculusApi.ColorSpace.Quest - nameWithType: OculusApi.ColorSpace.Quest -- uid: XRTK.Oculus.Plugins.OculusApi.ColorSpace.Rec_2020 - name: Rec_2020 - href: api/XRTK.Oculus.Plugins.OculusApi.ColorSpace.html#XRTK_Oculus_Plugins_OculusApi_ColorSpace_Rec_2020 - commentId: F:XRTK.Oculus.Plugins.OculusApi.ColorSpace.Rec_2020 - fullName: XRTK.Oculus.Plugins.OculusApi.ColorSpace.Rec_2020 - nameWithType: OculusApi.ColorSpace.Rec_2020 -- uid: XRTK.Oculus.Plugins.OculusApi.ColorSpace.Rec_709 - name: Rec_709 - href: api/XRTK.Oculus.Plugins.OculusApi.ColorSpace.html#XRTK_Oculus_Plugins_OculusApi_ColorSpace_Rec_709 - commentId: F:XRTK.Oculus.Plugins.OculusApi.ColorSpace.Rec_709 - fullName: XRTK.Oculus.Plugins.OculusApi.ColorSpace.Rec_709 - nameWithType: OculusApi.ColorSpace.Rec_709 -- uid: XRTK.Oculus.Plugins.OculusApi.ColorSpace.Rift_CV1 - name: Rift_CV1 - href: api/XRTK.Oculus.Plugins.OculusApi.ColorSpace.html#XRTK_Oculus_Plugins_OculusApi_ColorSpace_Rift_CV1 - commentId: F:XRTK.Oculus.Plugins.OculusApi.ColorSpace.Rift_CV1 - fullName: XRTK.Oculus.Plugins.OculusApi.ColorSpace.Rift_CV1 - nameWithType: OculusApi.ColorSpace.Rift_CV1 -- uid: XRTK.Oculus.Plugins.OculusApi.ColorSpace.Rift_S - name: Rift_S - href: api/XRTK.Oculus.Plugins.OculusApi.ColorSpace.html#XRTK_Oculus_Plugins_OculusApi_ColorSpace_Rift_S - commentId: F:XRTK.Oculus.Plugins.OculusApi.ColorSpace.Rift_S - fullName: XRTK.Oculus.Plugins.OculusApi.ColorSpace.Rift_S - nameWithType: OculusApi.ColorSpace.Rift_S -- uid: XRTK.Oculus.Plugins.OculusApi.ColorSpace.Unknown - name: Unknown - href: api/XRTK.Oculus.Plugins.OculusApi.ColorSpace.html#XRTK_Oculus_Plugins_OculusApi_ColorSpace_Unknown - commentId: F:XRTK.Oculus.Plugins.OculusApi.ColorSpace.Unknown - fullName: XRTK.Oculus.Plugins.OculusApi.ColorSpace.Unknown - nameWithType: OculusApi.ColorSpace.Unknown -- uid: XRTK.Oculus.Plugins.OculusApi.ColorSpace.Unmanaged - name: Unmanaged - href: api/XRTK.Oculus.Plugins.OculusApi.ColorSpace.html#XRTK_Oculus_Plugins_OculusApi_ColorSpace_Unmanaged - commentId: F:XRTK.Oculus.Plugins.OculusApi.ColorSpace.Unmanaged - fullName: XRTK.Oculus.Plugins.OculusApi.ColorSpace.Unmanaged - nameWithType: OculusApi.ColorSpace.Unmanaged -- uid: XRTK.Oculus.Plugins.OculusApi.Controller - name: OculusApi.Controller - href: api/XRTK.Oculus.Plugins.OculusApi.Controller.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.Controller - fullName: XRTK.Oculus.Plugins.OculusApi.Controller - nameWithType: OculusApi.Controller -- uid: XRTK.Oculus.Plugins.OculusApi.Controller.Active - name: Active - href: api/XRTK.Oculus.Plugins.OculusApi.Controller.html#XRTK_Oculus_Plugins_OculusApi_Controller_Active - commentId: F:XRTK.Oculus.Plugins.OculusApi.Controller.Active - fullName: XRTK.Oculus.Plugins.OculusApi.Controller.Active - nameWithType: OculusApi.Controller.Active -- uid: XRTK.Oculus.Plugins.OculusApi.Controller.All - name: All - href: api/XRTK.Oculus.Plugins.OculusApi.Controller.html#XRTK_Oculus_Plugins_OculusApi_Controller_All - commentId: F:XRTK.Oculus.Plugins.OculusApi.Controller.All - fullName: XRTK.Oculus.Plugins.OculusApi.Controller.All - nameWithType: OculusApi.Controller.All -- uid: XRTK.Oculus.Plugins.OculusApi.Controller.Gamepad - name: Gamepad - href: api/XRTK.Oculus.Plugins.OculusApi.Controller.html#XRTK_Oculus_Plugins_OculusApi_Controller_Gamepad - commentId: F:XRTK.Oculus.Plugins.OculusApi.Controller.Gamepad - fullName: XRTK.Oculus.Plugins.OculusApi.Controller.Gamepad - nameWithType: OculusApi.Controller.Gamepad -- uid: XRTK.Oculus.Plugins.OculusApi.Controller.Hands - name: Hands - href: api/XRTK.Oculus.Plugins.OculusApi.Controller.html#XRTK_Oculus_Plugins_OculusApi_Controller_Hands - commentId: F:XRTK.Oculus.Plugins.OculusApi.Controller.Hands - fullName: XRTK.Oculus.Plugins.OculusApi.Controller.Hands - nameWithType: OculusApi.Controller.Hands -- uid: XRTK.Oculus.Plugins.OculusApi.Controller.LHand - name: LHand - href: api/XRTK.Oculus.Plugins.OculusApi.Controller.html#XRTK_Oculus_Plugins_OculusApi_Controller_LHand - commentId: F:XRTK.Oculus.Plugins.OculusApi.Controller.LHand - fullName: XRTK.Oculus.Plugins.OculusApi.Controller.LHand - nameWithType: OculusApi.Controller.LHand -- uid: XRTK.Oculus.Plugins.OculusApi.Controller.LTouch - name: LTouch - href: api/XRTK.Oculus.Plugins.OculusApi.Controller.html#XRTK_Oculus_Plugins_OculusApi_Controller_LTouch - commentId: F:XRTK.Oculus.Plugins.OculusApi.Controller.LTouch - fullName: XRTK.Oculus.Plugins.OculusApi.Controller.LTouch - nameWithType: OculusApi.Controller.LTouch -- uid: XRTK.Oculus.Plugins.OculusApi.Controller.None - name: None - href: api/XRTK.Oculus.Plugins.OculusApi.Controller.html#XRTK_Oculus_Plugins_OculusApi_Controller_None - commentId: F:XRTK.Oculus.Plugins.OculusApi.Controller.None - fullName: XRTK.Oculus.Plugins.OculusApi.Controller.None - nameWithType: OculusApi.Controller.None -- uid: XRTK.Oculus.Plugins.OculusApi.Controller.Remote - name: Remote - href: api/XRTK.Oculus.Plugins.OculusApi.Controller.html#XRTK_Oculus_Plugins_OculusApi_Controller_Remote - commentId: F:XRTK.Oculus.Plugins.OculusApi.Controller.Remote - fullName: XRTK.Oculus.Plugins.OculusApi.Controller.Remote - nameWithType: OculusApi.Controller.Remote -- uid: XRTK.Oculus.Plugins.OculusApi.Controller.RHand - name: RHand - href: api/XRTK.Oculus.Plugins.OculusApi.Controller.html#XRTK_Oculus_Plugins_OculusApi_Controller_RHand - commentId: F:XRTK.Oculus.Plugins.OculusApi.Controller.RHand - fullName: XRTK.Oculus.Plugins.OculusApi.Controller.RHand - nameWithType: OculusApi.Controller.RHand -- uid: XRTK.Oculus.Plugins.OculusApi.Controller.RTouch - name: RTouch - href: api/XRTK.Oculus.Plugins.OculusApi.Controller.html#XRTK_Oculus_Plugins_OculusApi_Controller_RTouch - commentId: F:XRTK.Oculus.Plugins.OculusApi.Controller.RTouch - fullName: XRTK.Oculus.Plugins.OculusApi.Controller.RTouch - nameWithType: OculusApi.Controller.RTouch -- uid: XRTK.Oculus.Plugins.OculusApi.Controller.Touch - name: Touch - href: api/XRTK.Oculus.Plugins.OculusApi.Controller.html#XRTK_Oculus_Plugins_OculusApi_Controller_Touch - commentId: F:XRTK.Oculus.Plugins.OculusApi.Controller.Touch - fullName: XRTK.Oculus.Plugins.OculusApi.Controller.Touch - nameWithType: OculusApi.Controller.Touch -- uid: XRTK.Oculus.Plugins.OculusApi.ControllerState4 - name: OculusApi.ControllerState4 - href: api/XRTK.Oculus.Plugins.OculusApi.ControllerState4.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.ControllerState4 - fullName: XRTK.Oculus.Plugins.OculusApi.ControllerState4 - nameWithType: OculusApi.ControllerState4 -- uid: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Buttons - name: Buttons - href: api/XRTK.Oculus.Plugins.OculusApi.ControllerState4.html#XRTK_Oculus_Plugins_OculusApi_ControllerState4_Buttons - commentId: F:XRTK.Oculus.Plugins.OculusApi.ControllerState4.Buttons - fullName: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Buttons - nameWithType: OculusApi.ControllerState4.Buttons -- uid: XRTK.Oculus.Plugins.OculusApi.ControllerState4.ConnectedControllers - name: ConnectedControllers - href: api/XRTK.Oculus.Plugins.OculusApi.ControllerState4.html#XRTK_Oculus_Plugins_OculusApi_ControllerState4_ConnectedControllers - commentId: F:XRTK.Oculus.Plugins.OculusApi.ControllerState4.ConnectedControllers - fullName: XRTK.Oculus.Plugins.OculusApi.ControllerState4.ConnectedControllers - nameWithType: OculusApi.ControllerState4.ConnectedControllers -- uid: XRTK.Oculus.Plugins.OculusApi.ControllerState4.LBatteryPercentRemaining - name: LBatteryPercentRemaining - href: api/XRTK.Oculus.Plugins.OculusApi.ControllerState4.html#XRTK_Oculus_Plugins_OculusApi_ControllerState4_LBatteryPercentRemaining - commentId: F:XRTK.Oculus.Plugins.OculusApi.ControllerState4.LBatteryPercentRemaining - fullName: XRTK.Oculus.Plugins.OculusApi.ControllerState4.LBatteryPercentRemaining - nameWithType: OculusApi.ControllerState4.LBatteryPercentRemaining -- uid: XRTK.Oculus.Plugins.OculusApi.ControllerState4.LHandTrigger - name: LHandTrigger - href: api/XRTK.Oculus.Plugins.OculusApi.ControllerState4.html#XRTK_Oculus_Plugins_OculusApi_ControllerState4_LHandTrigger - commentId: F:XRTK.Oculus.Plugins.OculusApi.ControllerState4.LHandTrigger - fullName: XRTK.Oculus.Plugins.OculusApi.ControllerState4.LHandTrigger - nameWithType: OculusApi.ControllerState4.LHandTrigger -- uid: XRTK.Oculus.Plugins.OculusApi.ControllerState4.LIndexTrigger - name: LIndexTrigger - href: api/XRTK.Oculus.Plugins.OculusApi.ControllerState4.html#XRTK_Oculus_Plugins_OculusApi_ControllerState4_LIndexTrigger - commentId: F:XRTK.Oculus.Plugins.OculusApi.ControllerState4.LIndexTrigger - fullName: XRTK.Oculus.Plugins.OculusApi.ControllerState4.LIndexTrigger - nameWithType: OculusApi.ControllerState4.LIndexTrigger -- uid: XRTK.Oculus.Plugins.OculusApi.ControllerState4.LRecenterCount - name: LRecenterCount - href: api/XRTK.Oculus.Plugins.OculusApi.ControllerState4.html#XRTK_Oculus_Plugins_OculusApi_ControllerState4_LRecenterCount - commentId: F:XRTK.Oculus.Plugins.OculusApi.ControllerState4.LRecenterCount - fullName: XRTK.Oculus.Plugins.OculusApi.ControllerState4.LRecenterCount - nameWithType: OculusApi.ControllerState4.LRecenterCount -- uid: XRTK.Oculus.Plugins.OculusApi.ControllerState4.LThumbstick - name: LThumbstick - href: api/XRTK.Oculus.Plugins.OculusApi.ControllerState4.html#XRTK_Oculus_Plugins_OculusApi_ControllerState4_LThumbstick - commentId: F:XRTK.Oculus.Plugins.OculusApi.ControllerState4.LThumbstick - fullName: XRTK.Oculus.Plugins.OculusApi.ControllerState4.LThumbstick - nameWithType: OculusApi.ControllerState4.LThumbstick -- uid: XRTK.Oculus.Plugins.OculusApi.ControllerState4.LTouchpad - name: LTouchpad - href: api/XRTK.Oculus.Plugins.OculusApi.ControllerState4.html#XRTK_Oculus_Plugins_OculusApi_ControllerState4_LTouchpad - commentId: F:XRTK.Oculus.Plugins.OculusApi.ControllerState4.LTouchpad - fullName: XRTK.Oculus.Plugins.OculusApi.ControllerState4.LTouchpad - nameWithType: OculusApi.ControllerState4.LTouchpad -- uid: XRTK.Oculus.Plugins.OculusApi.ControllerState4.NearTouches - name: NearTouches - href: api/XRTK.Oculus.Plugins.OculusApi.ControllerState4.html#XRTK_Oculus_Plugins_OculusApi_ControllerState4_NearTouches - commentId: F:XRTK.Oculus.Plugins.OculusApi.ControllerState4.NearTouches - fullName: XRTK.Oculus.Plugins.OculusApi.ControllerState4.NearTouches - nameWithType: OculusApi.ControllerState4.NearTouches -- uid: XRTK.Oculus.Plugins.OculusApi.ControllerState4.RBatteryPercentRemaining - name: RBatteryPercentRemaining - href: api/XRTK.Oculus.Plugins.OculusApi.ControllerState4.html#XRTK_Oculus_Plugins_OculusApi_ControllerState4_RBatteryPercentRemaining - commentId: F:XRTK.Oculus.Plugins.OculusApi.ControllerState4.RBatteryPercentRemaining - fullName: XRTK.Oculus.Plugins.OculusApi.ControllerState4.RBatteryPercentRemaining - nameWithType: OculusApi.ControllerState4.RBatteryPercentRemaining -- uid: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_00 - name: Reserved_00 - href: api/XRTK.Oculus.Plugins.OculusApi.ControllerState4.html#XRTK_Oculus_Plugins_OculusApi_ControllerState4_Reserved_00 - commentId: F:XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_00 - fullName: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_00 - nameWithType: OculusApi.ControllerState4.Reserved_00 -- uid: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_01 - name: Reserved_01 - href: api/XRTK.Oculus.Plugins.OculusApi.ControllerState4.html#XRTK_Oculus_Plugins_OculusApi_ControllerState4_Reserved_01 - commentId: F:XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_01 - fullName: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_01 - nameWithType: OculusApi.ControllerState4.Reserved_01 -- uid: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_02 - name: Reserved_02 - href: api/XRTK.Oculus.Plugins.OculusApi.ControllerState4.html#XRTK_Oculus_Plugins_OculusApi_ControllerState4_Reserved_02 - commentId: F:XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_02 - fullName: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_02 - nameWithType: OculusApi.ControllerState4.Reserved_02 -- uid: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_03 - name: Reserved_03 - href: api/XRTK.Oculus.Plugins.OculusApi.ControllerState4.html#XRTK_Oculus_Plugins_OculusApi_ControllerState4_Reserved_03 - commentId: F:XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_03 - fullName: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_03 - nameWithType: OculusApi.ControllerState4.Reserved_03 -- uid: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_04 - name: Reserved_04 - href: api/XRTK.Oculus.Plugins.OculusApi.ControllerState4.html#XRTK_Oculus_Plugins_OculusApi_ControllerState4_Reserved_04 - commentId: F:XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_04 - fullName: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_04 - nameWithType: OculusApi.ControllerState4.Reserved_04 -- uid: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_05 - name: Reserved_05 - href: api/XRTK.Oculus.Plugins.OculusApi.ControllerState4.html#XRTK_Oculus_Plugins_OculusApi_ControllerState4_Reserved_05 - commentId: F:XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_05 - fullName: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_05 - nameWithType: OculusApi.ControllerState4.Reserved_05 -- uid: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_06 - name: Reserved_06 - href: api/XRTK.Oculus.Plugins.OculusApi.ControllerState4.html#XRTK_Oculus_Plugins_OculusApi_ControllerState4_Reserved_06 - commentId: F:XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_06 - fullName: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_06 - nameWithType: OculusApi.ControllerState4.Reserved_06 -- uid: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_07 - name: Reserved_07 - href: api/XRTK.Oculus.Plugins.OculusApi.ControllerState4.html#XRTK_Oculus_Plugins_OculusApi_ControllerState4_Reserved_07 - commentId: F:XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_07 - fullName: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_07 - nameWithType: OculusApi.ControllerState4.Reserved_07 -- uid: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_08 - name: Reserved_08 - href: api/XRTK.Oculus.Plugins.OculusApi.ControllerState4.html#XRTK_Oculus_Plugins_OculusApi_ControllerState4_Reserved_08 - commentId: F:XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_08 - fullName: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_08 - nameWithType: OculusApi.ControllerState4.Reserved_08 -- uid: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_09 - name: Reserved_09 - href: api/XRTK.Oculus.Plugins.OculusApi.ControllerState4.html#XRTK_Oculus_Plugins_OculusApi_ControllerState4_Reserved_09 - commentId: F:XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_09 - fullName: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_09 - nameWithType: OculusApi.ControllerState4.Reserved_09 -- uid: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_10 - name: Reserved_10 - href: api/XRTK.Oculus.Plugins.OculusApi.ControllerState4.html#XRTK_Oculus_Plugins_OculusApi_ControllerState4_Reserved_10 - commentId: F:XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_10 - fullName: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_10 - nameWithType: OculusApi.ControllerState4.Reserved_10 -- uid: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_11 - name: Reserved_11 - href: api/XRTK.Oculus.Plugins.OculusApi.ControllerState4.html#XRTK_Oculus_Plugins_OculusApi_ControllerState4_Reserved_11 - commentId: F:XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_11 - fullName: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_11 - nameWithType: OculusApi.ControllerState4.Reserved_11 -- uid: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_12 - name: Reserved_12 - href: api/XRTK.Oculus.Plugins.OculusApi.ControllerState4.html#XRTK_Oculus_Plugins_OculusApi_ControllerState4_Reserved_12 - commentId: F:XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_12 - fullName: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_12 - nameWithType: OculusApi.ControllerState4.Reserved_12 -- uid: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_13 - name: Reserved_13 - href: api/XRTK.Oculus.Plugins.OculusApi.ControllerState4.html#XRTK_Oculus_Plugins_OculusApi_ControllerState4_Reserved_13 - commentId: F:XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_13 - fullName: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_13 - nameWithType: OculusApi.ControllerState4.Reserved_13 -- uid: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_14 - name: Reserved_14 - href: api/XRTK.Oculus.Plugins.OculusApi.ControllerState4.html#XRTK_Oculus_Plugins_OculusApi_ControllerState4_Reserved_14 - commentId: F:XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_14 - fullName: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_14 - nameWithType: OculusApi.ControllerState4.Reserved_14 -- uid: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_15 - name: Reserved_15 - href: api/XRTK.Oculus.Plugins.OculusApi.ControllerState4.html#XRTK_Oculus_Plugins_OculusApi_ControllerState4_Reserved_15 - commentId: F:XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_15 - fullName: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_15 - nameWithType: OculusApi.ControllerState4.Reserved_15 -- uid: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_16 - name: Reserved_16 - href: api/XRTK.Oculus.Plugins.OculusApi.ControllerState4.html#XRTK_Oculus_Plugins_OculusApi_ControllerState4_Reserved_16 - commentId: F:XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_16 - fullName: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_16 - nameWithType: OculusApi.ControllerState4.Reserved_16 -- uid: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_17 - name: Reserved_17 - href: api/XRTK.Oculus.Plugins.OculusApi.ControllerState4.html#XRTK_Oculus_Plugins_OculusApi_ControllerState4_Reserved_17 - commentId: F:XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_17 - fullName: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_17 - nameWithType: OculusApi.ControllerState4.Reserved_17 -- uid: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_18 - name: Reserved_18 - href: api/XRTK.Oculus.Plugins.OculusApi.ControllerState4.html#XRTK_Oculus_Plugins_OculusApi_ControllerState4_Reserved_18 - commentId: F:XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_18 - fullName: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_18 - nameWithType: OculusApi.ControllerState4.Reserved_18 -- uid: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_19 - name: Reserved_19 - href: api/XRTK.Oculus.Plugins.OculusApi.ControllerState4.html#XRTK_Oculus_Plugins_OculusApi_ControllerState4_Reserved_19 - commentId: F:XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_19 - fullName: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_19 - nameWithType: OculusApi.ControllerState4.Reserved_19 -- uid: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_20 - name: Reserved_20 - href: api/XRTK.Oculus.Plugins.OculusApi.ControllerState4.html#XRTK_Oculus_Plugins_OculusApi_ControllerState4_Reserved_20 - commentId: F:XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_20 - fullName: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_20 - nameWithType: OculusApi.ControllerState4.Reserved_20 -- uid: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_21 - name: Reserved_21 - href: api/XRTK.Oculus.Plugins.OculusApi.ControllerState4.html#XRTK_Oculus_Plugins_OculusApi_ControllerState4_Reserved_21 - commentId: F:XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_21 - fullName: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_21 - nameWithType: OculusApi.ControllerState4.Reserved_21 -- uid: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_22 - name: Reserved_22 - href: api/XRTK.Oculus.Plugins.OculusApi.ControllerState4.html#XRTK_Oculus_Plugins_OculusApi_ControllerState4_Reserved_22 - commentId: F:XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_22 - fullName: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_22 - nameWithType: OculusApi.ControllerState4.Reserved_22 -- uid: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_23 - name: Reserved_23 - href: api/XRTK.Oculus.Plugins.OculusApi.ControllerState4.html#XRTK_Oculus_Plugins_OculusApi_ControllerState4_Reserved_23 - commentId: F:XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_23 - fullName: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_23 - nameWithType: OculusApi.ControllerState4.Reserved_23 -- uid: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_24 - name: Reserved_24 - href: api/XRTK.Oculus.Plugins.OculusApi.ControllerState4.html#XRTK_Oculus_Plugins_OculusApi_ControllerState4_Reserved_24 - commentId: F:XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_24 - fullName: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_24 - nameWithType: OculusApi.ControllerState4.Reserved_24 -- uid: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_25 - name: Reserved_25 - href: api/XRTK.Oculus.Plugins.OculusApi.ControllerState4.html#XRTK_Oculus_Plugins_OculusApi_ControllerState4_Reserved_25 - commentId: F:XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_25 - fullName: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_25 - nameWithType: OculusApi.ControllerState4.Reserved_25 -- uid: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_26 - name: Reserved_26 - href: api/XRTK.Oculus.Plugins.OculusApi.ControllerState4.html#XRTK_Oculus_Plugins_OculusApi_ControllerState4_Reserved_26 - commentId: F:XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_26 - fullName: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_26 - nameWithType: OculusApi.ControllerState4.Reserved_26 -- uid: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_27 - name: Reserved_27 - href: api/XRTK.Oculus.Plugins.OculusApi.ControllerState4.html#XRTK_Oculus_Plugins_OculusApi_ControllerState4_Reserved_27 - commentId: F:XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_27 - fullName: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Reserved_27 - nameWithType: OculusApi.ControllerState4.Reserved_27 -- uid: XRTK.Oculus.Plugins.OculusApi.ControllerState4.RHandTrigger - name: RHandTrigger - href: api/XRTK.Oculus.Plugins.OculusApi.ControllerState4.html#XRTK_Oculus_Plugins_OculusApi_ControllerState4_RHandTrigger - commentId: F:XRTK.Oculus.Plugins.OculusApi.ControllerState4.RHandTrigger - fullName: XRTK.Oculus.Plugins.OculusApi.ControllerState4.RHandTrigger - nameWithType: OculusApi.ControllerState4.RHandTrigger -- uid: XRTK.Oculus.Plugins.OculusApi.ControllerState4.RIndexTrigger - name: RIndexTrigger - href: api/XRTK.Oculus.Plugins.OculusApi.ControllerState4.html#XRTK_Oculus_Plugins_OculusApi_ControllerState4_RIndexTrigger - commentId: F:XRTK.Oculus.Plugins.OculusApi.ControllerState4.RIndexTrigger - fullName: XRTK.Oculus.Plugins.OculusApi.ControllerState4.RIndexTrigger - nameWithType: OculusApi.ControllerState4.RIndexTrigger -- uid: XRTK.Oculus.Plugins.OculusApi.ControllerState4.RRecenterCount - name: RRecenterCount - href: api/XRTK.Oculus.Plugins.OculusApi.ControllerState4.html#XRTK_Oculus_Plugins_OculusApi_ControllerState4_RRecenterCount - commentId: F:XRTK.Oculus.Plugins.OculusApi.ControllerState4.RRecenterCount - fullName: XRTK.Oculus.Plugins.OculusApi.ControllerState4.RRecenterCount - nameWithType: OculusApi.ControllerState4.RRecenterCount -- uid: XRTK.Oculus.Plugins.OculusApi.ControllerState4.RThumbstick - name: RThumbstick - href: api/XRTK.Oculus.Plugins.OculusApi.ControllerState4.html#XRTK_Oculus_Plugins_OculusApi_ControllerState4_RThumbstick - commentId: F:XRTK.Oculus.Plugins.OculusApi.ControllerState4.RThumbstick - fullName: XRTK.Oculus.Plugins.OculusApi.ControllerState4.RThumbstick - nameWithType: OculusApi.ControllerState4.RThumbstick -- uid: XRTK.Oculus.Plugins.OculusApi.ControllerState4.RTouchpad - name: RTouchpad - href: api/XRTK.Oculus.Plugins.OculusApi.ControllerState4.html#XRTK_Oculus_Plugins_OculusApi_ControllerState4_RTouchpad - commentId: F:XRTK.Oculus.Plugins.OculusApi.ControllerState4.RTouchpad - fullName: XRTK.Oculus.Plugins.OculusApi.ControllerState4.RTouchpad - nameWithType: OculusApi.ControllerState4.RTouchpad -- uid: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Touches - name: Touches - href: api/XRTK.Oculus.Plugins.OculusApi.ControllerState4.html#XRTK_Oculus_Plugins_OculusApi_ControllerState4_Touches - commentId: F:XRTK.Oculus.Plugins.OculusApi.ControllerState4.Touches - fullName: XRTK.Oculus.Plugins.OculusApi.ControllerState4.Touches - nameWithType: OculusApi.ControllerState4.Touches -- uid: XRTK.Oculus.Plugins.OculusApi.cpuLevel - name: cpuLevel - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_cpuLevel - commentId: P:XRTK.Oculus.Plugins.OculusApi.cpuLevel - fullName: XRTK.Oculus.Plugins.OculusApi.cpuLevel - nameWithType: OculusApi.cpuLevel -- uid: XRTK.Oculus.Plugins.OculusApi.cpuLevel* - name: cpuLevel - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_cpuLevel_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.cpuLevel - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.cpuLevel - nameWithType: OculusApi.cpuLevel -- uid: XRTK.Oculus.Plugins.OculusApi.DisplayRefreshRateChanged - name: DisplayRefreshRateChanged - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_DisplayRefreshRateChanged - commentId: E:XRTK.Oculus.Plugins.OculusApi.DisplayRefreshRateChanged - fullName: XRTK.Oculus.Plugins.OculusApi.DisplayRefreshRateChanged - nameWithType: OculusApi.DisplayRefreshRateChanged -- uid: XRTK.Oculus.Plugins.OculusApi.EventDataBuffer - name: OculusApi.EventDataBuffer - href: api/XRTK.Oculus.Plugins.OculusApi.EventDataBuffer.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.EventDataBuffer - fullName: XRTK.Oculus.Plugins.OculusApi.EventDataBuffer - nameWithType: OculusApi.EventDataBuffer -- uid: XRTK.Oculus.Plugins.OculusApi.EventDataBuffer.EventData - name: EventData - href: api/XRTK.Oculus.Plugins.OculusApi.EventDataBuffer.html#XRTK_Oculus_Plugins_OculusApi_EventDataBuffer_EventData - commentId: F:XRTK.Oculus.Plugins.OculusApi.EventDataBuffer.EventData - fullName: XRTK.Oculus.Plugins.OculusApi.EventDataBuffer.EventData - nameWithType: OculusApi.EventDataBuffer.EventData -- uid: XRTK.Oculus.Plugins.OculusApi.EventDataBuffer.EventType - name: EventType - href: api/XRTK.Oculus.Plugins.OculusApi.EventDataBuffer.html#XRTK_Oculus_Plugins_OculusApi_EventDataBuffer_EventType - commentId: F:XRTK.Oculus.Plugins.OculusApi.EventDataBuffer.EventType - fullName: XRTK.Oculus.Plugins.OculusApi.EventDataBuffer.EventType - nameWithType: OculusApi.EventDataBuffer.EventType -- uid: XRTK.Oculus.Plugins.OculusApi.EventType - name: OculusApi.EventType - href: api/XRTK.Oculus.Plugins.OculusApi.EventType.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.EventType - fullName: XRTK.Oculus.Plugins.OculusApi.EventType - nameWithType: OculusApi.EventType -- uid: XRTK.Oculus.Plugins.OculusApi.EventType.DisplayRefreshRateChanged - name: DisplayRefreshRateChanged - href: api/XRTK.Oculus.Plugins.OculusApi.EventType.html#XRTK_Oculus_Plugins_OculusApi_EventType_DisplayRefreshRateChanged - commentId: F:XRTK.Oculus.Plugins.OculusApi.EventType.DisplayRefreshRateChanged - fullName: XRTK.Oculus.Plugins.OculusApi.EventType.DisplayRefreshRateChanged - nameWithType: OculusApi.EventType.DisplayRefreshRateChanged -- uid: XRTK.Oculus.Plugins.OculusApi.EventType.Unknown - name: Unknown - href: api/XRTK.Oculus.Plugins.OculusApi.EventType.html#XRTK_Oculus_Plugins_OculusApi_EventType_Unknown - commentId: F:XRTK.Oculus.Plugins.OculusApi.EventType.Unknown - fullName: XRTK.Oculus.Plugins.OculusApi.EventType.Unknown - nameWithType: OculusApi.EventType.Unknown -- uid: XRTK.Oculus.Plugins.OculusApi.EyeDepth - name: EyeDepth - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_EyeDepth - commentId: P:XRTK.Oculus.Plugins.OculusApi.EyeDepth - fullName: XRTK.Oculus.Plugins.OculusApi.EyeDepth - nameWithType: OculusApi.EyeDepth -- uid: XRTK.Oculus.Plugins.OculusApi.EyeDepth* - name: EyeDepth - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_EyeDepth_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.EyeDepth - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.EyeDepth - nameWithType: OculusApi.EyeDepth -- uid: XRTK.Oculus.Plugins.OculusApi.EyeHeight - name: EyeHeight - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_EyeHeight - commentId: P:XRTK.Oculus.Plugins.OculusApi.EyeHeight - fullName: XRTK.Oculus.Plugins.OculusApi.EyeHeight - nameWithType: OculusApi.EyeHeight -- uid: XRTK.Oculus.Plugins.OculusApi.EyeHeight* - name: EyeHeight - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_EyeHeight_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.EyeHeight - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.EyeHeight - nameWithType: OculusApi.EyeHeight -- uid: XRTK.Oculus.Plugins.OculusApi.fixedFoveatedRenderingLevel - name: fixedFoveatedRenderingLevel - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_fixedFoveatedRenderingLevel - commentId: P:XRTK.Oculus.Plugins.OculusApi.fixedFoveatedRenderingLevel - fullName: XRTK.Oculus.Plugins.OculusApi.fixedFoveatedRenderingLevel - nameWithType: OculusApi.fixedFoveatedRenderingLevel -- uid: XRTK.Oculus.Plugins.OculusApi.FixedFoveatedRenderingLevel - name: OculusApi.FixedFoveatedRenderingLevel - href: api/XRTK.Oculus.Plugins.OculusApi.FixedFoveatedRenderingLevel.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.FixedFoveatedRenderingLevel - fullName: XRTK.Oculus.Plugins.OculusApi.FixedFoveatedRenderingLevel - nameWithType: OculusApi.FixedFoveatedRenderingLevel -- uid: XRTK.Oculus.Plugins.OculusApi.fixedFoveatedRenderingLevel* - name: fixedFoveatedRenderingLevel - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_fixedFoveatedRenderingLevel_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.fixedFoveatedRenderingLevel - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.fixedFoveatedRenderingLevel - nameWithType: OculusApi.fixedFoveatedRenderingLevel -- uid: XRTK.Oculus.Plugins.OculusApi.FixedFoveatedRenderingLevel.EnumSize - name: EnumSize - href: api/XRTK.Oculus.Plugins.OculusApi.FixedFoveatedRenderingLevel.html#XRTK_Oculus_Plugins_OculusApi_FixedFoveatedRenderingLevel_EnumSize - commentId: F:XRTK.Oculus.Plugins.OculusApi.FixedFoveatedRenderingLevel.EnumSize - fullName: XRTK.Oculus.Plugins.OculusApi.FixedFoveatedRenderingLevel.EnumSize - nameWithType: OculusApi.FixedFoveatedRenderingLevel.EnumSize -- uid: XRTK.Oculus.Plugins.OculusApi.FixedFoveatedRenderingLevel.High - name: High - href: api/XRTK.Oculus.Plugins.OculusApi.FixedFoveatedRenderingLevel.html#XRTK_Oculus_Plugins_OculusApi_FixedFoveatedRenderingLevel_High - commentId: F:XRTK.Oculus.Plugins.OculusApi.FixedFoveatedRenderingLevel.High - fullName: XRTK.Oculus.Plugins.OculusApi.FixedFoveatedRenderingLevel.High - nameWithType: OculusApi.FixedFoveatedRenderingLevel.High -- uid: XRTK.Oculus.Plugins.OculusApi.FixedFoveatedRenderingLevel.HighTop - name: HighTop - href: api/XRTK.Oculus.Plugins.OculusApi.FixedFoveatedRenderingLevel.html#XRTK_Oculus_Plugins_OculusApi_FixedFoveatedRenderingLevel_HighTop - commentId: F:XRTK.Oculus.Plugins.OculusApi.FixedFoveatedRenderingLevel.HighTop - fullName: XRTK.Oculus.Plugins.OculusApi.FixedFoveatedRenderingLevel.HighTop - nameWithType: OculusApi.FixedFoveatedRenderingLevel.HighTop -- uid: XRTK.Oculus.Plugins.OculusApi.FixedFoveatedRenderingLevel.Low - name: Low - href: api/XRTK.Oculus.Plugins.OculusApi.FixedFoveatedRenderingLevel.html#XRTK_Oculus_Plugins_OculusApi_FixedFoveatedRenderingLevel_Low - commentId: F:XRTK.Oculus.Plugins.OculusApi.FixedFoveatedRenderingLevel.Low - fullName: XRTK.Oculus.Plugins.OculusApi.FixedFoveatedRenderingLevel.Low - nameWithType: OculusApi.FixedFoveatedRenderingLevel.Low -- uid: XRTK.Oculus.Plugins.OculusApi.FixedFoveatedRenderingLevel.Medium - name: Medium - href: api/XRTK.Oculus.Plugins.OculusApi.FixedFoveatedRenderingLevel.html#XRTK_Oculus_Plugins_OculusApi_FixedFoveatedRenderingLevel_Medium - commentId: F:XRTK.Oculus.Plugins.OculusApi.FixedFoveatedRenderingLevel.Medium - fullName: XRTK.Oculus.Plugins.OculusApi.FixedFoveatedRenderingLevel.Medium - nameWithType: OculusApi.FixedFoveatedRenderingLevel.Medium -- uid: XRTK.Oculus.Plugins.OculusApi.FixedFoveatedRenderingLevel.Off - name: Off - href: api/XRTK.Oculus.Plugins.OculusApi.FixedFoveatedRenderingLevel.html#XRTK_Oculus_Plugins_OculusApi_FixedFoveatedRenderingLevel_Off - commentId: F:XRTK.Oculus.Plugins.OculusApi.FixedFoveatedRenderingLevel.Off - fullName: XRTK.Oculus.Plugins.OculusApi.FixedFoveatedRenderingLevel.Off - nameWithType: OculusApi.FixedFoveatedRenderingLevel.Off -- uid: XRTK.Oculus.Plugins.OculusApi.fixedFoveatedRenderingSupported - name: fixedFoveatedRenderingSupported - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_fixedFoveatedRenderingSupported - commentId: P:XRTK.Oculus.Plugins.OculusApi.fixedFoveatedRenderingSupported - fullName: XRTK.Oculus.Plugins.OculusApi.fixedFoveatedRenderingSupported - nameWithType: OculusApi.fixedFoveatedRenderingSupported -- uid: XRTK.Oculus.Plugins.OculusApi.fixedFoveatedRenderingSupported* - name: fixedFoveatedRenderingSupported - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_fixedFoveatedRenderingSupported_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.fixedFoveatedRenderingSupported - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.fixedFoveatedRenderingSupported - nameWithType: OculusApi.fixedFoveatedRenderingSupported -- uid: XRTK.Oculus.Plugins.OculusApi.Fovf - name: OculusApi.Fovf - href: api/XRTK.Oculus.Plugins.OculusApi.Fovf.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.Fovf - fullName: XRTK.Oculus.Plugins.OculusApi.Fovf - nameWithType: OculusApi.Fovf -- uid: XRTK.Oculus.Plugins.OculusApi.Fovf.DownTan - name: DownTan - href: api/XRTK.Oculus.Plugins.OculusApi.Fovf.html#XRTK_Oculus_Plugins_OculusApi_Fovf_DownTan - commentId: F:XRTK.Oculus.Plugins.OculusApi.Fovf.DownTan - fullName: XRTK.Oculus.Plugins.OculusApi.Fovf.DownTan - nameWithType: OculusApi.Fovf.DownTan -- uid: XRTK.Oculus.Plugins.OculusApi.Fovf.LeftTan - name: LeftTan - href: api/XRTK.Oculus.Plugins.OculusApi.Fovf.html#XRTK_Oculus_Plugins_OculusApi_Fovf_LeftTan - commentId: F:XRTK.Oculus.Plugins.OculusApi.Fovf.LeftTan - fullName: XRTK.Oculus.Plugins.OculusApi.Fovf.LeftTan - nameWithType: OculusApi.Fovf.LeftTan -- uid: XRTK.Oculus.Plugins.OculusApi.Fovf.RightTan - name: RightTan - href: api/XRTK.Oculus.Plugins.OculusApi.Fovf.html#XRTK_Oculus_Plugins_OculusApi_Fovf_RightTan - commentId: F:XRTK.Oculus.Plugins.OculusApi.Fovf.RightTan - fullName: XRTK.Oculus.Plugins.OculusApi.Fovf.RightTan - nameWithType: OculusApi.Fovf.RightTan -- uid: XRTK.Oculus.Plugins.OculusApi.Fovf.UpTan - name: UpTan - href: api/XRTK.Oculus.Plugins.OculusApi.Fovf.html#XRTK_Oculus_Plugins_OculusApi_Fovf_UpTan - commentId: F:XRTK.Oculus.Plugins.OculusApi.Fovf.UpTan - fullName: XRTK.Oculus.Plugins.OculusApi.Fovf.UpTan - nameWithType: OculusApi.Fovf.UpTan -- uid: XRTK.Oculus.Plugins.OculusApi.Frustumf - name: OculusApi.Frustumf - href: api/XRTK.Oculus.Plugins.OculusApi.Frustumf.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.Frustumf - fullName: XRTK.Oculus.Plugins.OculusApi.Frustumf - nameWithType: OculusApi.Frustumf -- uid: XRTK.Oculus.Plugins.OculusApi.Frustumf.fovX - name: fovX - href: api/XRTK.Oculus.Plugins.OculusApi.Frustumf.html#XRTK_Oculus_Plugins_OculusApi_Frustumf_fovX - commentId: F:XRTK.Oculus.Plugins.OculusApi.Frustumf.fovX - fullName: XRTK.Oculus.Plugins.OculusApi.Frustumf.fovX - nameWithType: OculusApi.Frustumf.fovX -- uid: XRTK.Oculus.Plugins.OculusApi.Frustumf.fovY - name: fovY - href: api/XRTK.Oculus.Plugins.OculusApi.Frustumf.html#XRTK_Oculus_Plugins_OculusApi_Frustumf_fovY - commentId: F:XRTK.Oculus.Plugins.OculusApi.Frustumf.fovY - fullName: XRTK.Oculus.Plugins.OculusApi.Frustumf.fovY - nameWithType: OculusApi.Frustumf.fovY -- uid: XRTK.Oculus.Plugins.OculusApi.Frustumf.zFar - name: zFar - href: api/XRTK.Oculus.Plugins.OculusApi.Frustumf.html#XRTK_Oculus_Plugins_OculusApi_Frustumf_zFar - commentId: F:XRTK.Oculus.Plugins.OculusApi.Frustumf.zFar - fullName: XRTK.Oculus.Plugins.OculusApi.Frustumf.zFar - nameWithType: OculusApi.Frustumf.zFar -- uid: XRTK.Oculus.Plugins.OculusApi.Frustumf.zNear - name: zNear - href: api/XRTK.Oculus.Plugins.OculusApi.Frustumf.html#XRTK_Oculus_Plugins_OculusApi_Frustumf_zNear - commentId: F:XRTK.Oculus.Plugins.OculusApi.Frustumf.zNear - fullName: XRTK.Oculus.Plugins.OculusApi.Frustumf.zNear - nameWithType: OculusApi.Frustumf.zNear -- uid: XRTK.Oculus.Plugins.OculusApi.Frustumf2 - name: OculusApi.Frustumf2 - href: api/XRTK.Oculus.Plugins.OculusApi.Frustumf2.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.Frustumf2 - fullName: XRTK.Oculus.Plugins.OculusApi.Frustumf2 - nameWithType: OculusApi.Frustumf2 -- uid: XRTK.Oculus.Plugins.OculusApi.Frustumf2.Fov - name: Fov - href: api/XRTK.Oculus.Plugins.OculusApi.Frustumf2.html#XRTK_Oculus_Plugins_OculusApi_Frustumf2_Fov - commentId: F:XRTK.Oculus.Plugins.OculusApi.Frustumf2.Fov - fullName: XRTK.Oculus.Plugins.OculusApi.Frustumf2.Fov - nameWithType: OculusApi.Frustumf2.Fov -- uid: XRTK.Oculus.Plugins.OculusApi.Frustumf2.zFar - name: zFar - href: api/XRTK.Oculus.Plugins.OculusApi.Frustumf2.html#XRTK_Oculus_Plugins_OculusApi_Frustumf2_zFar - commentId: F:XRTK.Oculus.Plugins.OculusApi.Frustumf2.zFar - fullName: XRTK.Oculus.Plugins.OculusApi.Frustumf2.zFar - nameWithType: OculusApi.Frustumf2.zFar -- uid: XRTK.Oculus.Plugins.OculusApi.Frustumf2.zNear - name: zNear - href: api/XRTK.Oculus.Plugins.OculusApi.Frustumf2.html#XRTK_Oculus_Plugins_OculusApi_Frustumf2_zNear - commentId: F:XRTK.Oculus.Plugins.OculusApi.Frustumf2.zNear - fullName: XRTK.Oculus.Plugins.OculusApi.Frustumf2.zNear - nameWithType: OculusApi.Frustumf2.zNear -- uid: XRTK.Oculus.Plugins.OculusApi.GetActiveController - name: GetActiveController() - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetActiveController - commentId: M:XRTK.Oculus.Plugins.OculusApi.GetActiveController - fullName: XRTK.Oculus.Plugins.OculusApi.GetActiveController() - nameWithType: OculusApi.GetActiveController() -- uid: XRTK.Oculus.Plugins.OculusApi.GetActiveController* - name: GetActiveController - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetActiveController_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.GetActiveController - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.GetActiveController - nameWithType: OculusApi.GetActiveController -- uid: XRTK.Oculus.Plugins.OculusApi.GetAdaptiveGPUPerformanceScale - name: GetAdaptiveGPUPerformanceScale() - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetAdaptiveGPUPerformanceScale - commentId: M:XRTK.Oculus.Plugins.OculusApi.GetAdaptiveGPUPerformanceScale - fullName: XRTK.Oculus.Plugins.OculusApi.GetAdaptiveGPUPerformanceScale() - nameWithType: OculusApi.GetAdaptiveGPUPerformanceScale() -- uid: XRTK.Oculus.Plugins.OculusApi.GetAdaptiveGPUPerformanceScale* - name: GetAdaptiveGPUPerformanceScale - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetAdaptiveGPUPerformanceScale_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.GetAdaptiveGPUPerformanceScale - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.GetAdaptiveGPUPerformanceScale - nameWithType: OculusApi.GetAdaptiveGPUPerformanceScale -- uid: XRTK.Oculus.Plugins.OculusApi.GetBoundaryConfigured - name: GetBoundaryConfigured() - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetBoundaryConfigured - commentId: M:XRTK.Oculus.Plugins.OculusApi.GetBoundaryConfigured - fullName: XRTK.Oculus.Plugins.OculusApi.GetBoundaryConfigured() - nameWithType: OculusApi.GetBoundaryConfigured() -- uid: XRTK.Oculus.Plugins.OculusApi.GetBoundaryConfigured* - name: GetBoundaryConfigured - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetBoundaryConfigured_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.GetBoundaryConfigured - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.GetBoundaryConfigured - nameWithType: OculusApi.GetBoundaryConfigured -- uid: XRTK.Oculus.Plugins.OculusApi.GetBoundaryDimensions(XRTK.Oculus.Plugins.OculusApi.BoundaryType) - name: GetBoundaryDimensions(OculusApi.BoundaryType) - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetBoundaryDimensions_XRTK_Oculus_Plugins_OculusApi_BoundaryType_ - commentId: M:XRTK.Oculus.Plugins.OculusApi.GetBoundaryDimensions(XRTK.Oculus.Plugins.OculusApi.BoundaryType) - fullName: XRTK.Oculus.Plugins.OculusApi.GetBoundaryDimensions(XRTK.Oculus.Plugins.OculusApi.BoundaryType) - nameWithType: OculusApi.GetBoundaryDimensions(OculusApi.BoundaryType) -- uid: XRTK.Oculus.Plugins.OculusApi.GetBoundaryDimensions* - name: GetBoundaryDimensions - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetBoundaryDimensions_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.GetBoundaryDimensions - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.GetBoundaryDimensions - nameWithType: OculusApi.GetBoundaryDimensions -- uid: XRTK.Oculus.Plugins.OculusApi.GetBoundaryGeometry(XRTK.Oculus.Plugins.OculusApi.BoundaryType,System.IntPtr,System.Int32@) - name: GetBoundaryGeometry(OculusApi.BoundaryType, IntPtr, ref Int32) - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetBoundaryGeometry_XRTK_Oculus_Plugins_OculusApi_BoundaryType_System_IntPtr_System_Int32__ - commentId: M:XRTK.Oculus.Plugins.OculusApi.GetBoundaryGeometry(XRTK.Oculus.Plugins.OculusApi.BoundaryType,System.IntPtr,System.Int32@) - name.vb: GetBoundaryGeometry(OculusApi.BoundaryType, IntPtr, ByRef Int32) - fullName: XRTK.Oculus.Plugins.OculusApi.GetBoundaryGeometry(XRTK.Oculus.Plugins.OculusApi.BoundaryType, System.IntPtr, ref System.Int32) - fullName.vb: XRTK.Oculus.Plugins.OculusApi.GetBoundaryGeometry(XRTK.Oculus.Plugins.OculusApi.BoundaryType, System.IntPtr, ByRef System.Int32) - nameWithType: OculusApi.GetBoundaryGeometry(OculusApi.BoundaryType, IntPtr, ref Int32) - nameWithType.vb: OculusApi.GetBoundaryGeometry(OculusApi.BoundaryType, IntPtr, ByRef Int32) -- uid: XRTK.Oculus.Plugins.OculusApi.GetBoundaryGeometry* - name: GetBoundaryGeometry - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetBoundaryGeometry_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.GetBoundaryGeometry - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.GetBoundaryGeometry - nameWithType: OculusApi.GetBoundaryGeometry -- uid: XRTK.Oculus.Plugins.OculusApi.GetBoundaryVisible - name: GetBoundaryVisible() - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetBoundaryVisible - commentId: M:XRTK.Oculus.Plugins.OculusApi.GetBoundaryVisible - fullName: XRTK.Oculus.Plugins.OculusApi.GetBoundaryVisible() - nameWithType: OculusApi.GetBoundaryVisible() -- uid: XRTK.Oculus.Plugins.OculusApi.GetBoundaryVisible* - name: GetBoundaryVisible - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetBoundaryVisible_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.GetBoundaryVisible - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.GetBoundaryVisible - nameWithType: OculusApi.GetBoundaryVisible -- uid: XRTK.Oculus.Plugins.OculusApi.GetConnectedControllers - name: GetConnectedControllers() - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetConnectedControllers - commentId: M:XRTK.Oculus.Plugins.OculusApi.GetConnectedControllers - fullName: XRTK.Oculus.Plugins.OculusApi.GetConnectedControllers() - nameWithType: OculusApi.GetConnectedControllers() -- uid: XRTK.Oculus.Plugins.OculusApi.GetConnectedControllers* - name: GetConnectedControllers - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetConnectedControllers_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.GetConnectedControllers - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.GetConnectedControllers - nameWithType: OculusApi.GetConnectedControllers -- uid: XRTK.Oculus.Plugins.OculusApi.GetControllerHapticsDesc(System.UInt32) - name: GetControllerHapticsDesc(UInt32) - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetControllerHapticsDesc_System_UInt32_ - commentId: M:XRTK.Oculus.Plugins.OculusApi.GetControllerHapticsDesc(System.UInt32) - fullName: XRTK.Oculus.Plugins.OculusApi.GetControllerHapticsDesc(System.UInt32) - nameWithType: OculusApi.GetControllerHapticsDesc(UInt32) -- uid: XRTK.Oculus.Plugins.OculusApi.GetControllerHapticsDesc* - name: GetControllerHapticsDesc - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetControllerHapticsDesc_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.GetControllerHapticsDesc - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.GetControllerHapticsDesc - nameWithType: OculusApi.GetControllerHapticsDesc -- uid: XRTK.Oculus.Plugins.OculusApi.GetControllerHapticsState(System.UInt32) - name: GetControllerHapticsState(UInt32) - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetControllerHapticsState_System_UInt32_ - commentId: M:XRTK.Oculus.Plugins.OculusApi.GetControllerHapticsState(System.UInt32) - fullName: XRTK.Oculus.Plugins.OculusApi.GetControllerHapticsState(System.UInt32) - nameWithType: OculusApi.GetControllerHapticsState(UInt32) -- uid: XRTK.Oculus.Plugins.OculusApi.GetControllerHapticsState* - name: GetControllerHapticsState - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetControllerHapticsState_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.GetControllerHapticsState - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.GetControllerHapticsState - nameWithType: OculusApi.GetControllerHapticsState -- uid: XRTK.Oculus.Plugins.OculusApi.GetControllerState4(System.UInt32) - name: GetControllerState4(UInt32) - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetControllerState4_System_UInt32_ - commentId: M:XRTK.Oculus.Plugins.OculusApi.GetControllerState4(System.UInt32) - fullName: XRTK.Oculus.Plugins.OculusApi.GetControllerState4(System.UInt32) - nameWithType: OculusApi.GetControllerState4(UInt32) -- uid: XRTK.Oculus.Plugins.OculusApi.GetControllerState4* - name: GetControllerState4 - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetControllerState4_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.GetControllerState4 - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.GetControllerState4 - nameWithType: OculusApi.GetControllerState4 -- uid: XRTK.Oculus.Plugins.OculusApi.GetDominantHand - name: GetDominantHand() - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetDominantHand - commentId: M:XRTK.Oculus.Plugins.OculusApi.GetDominantHand - fullName: XRTK.Oculus.Plugins.OculusApi.GetDominantHand() - nameWithType: OculusApi.GetDominantHand() -- uid: XRTK.Oculus.Plugins.OculusApi.GetDominantHand* - name: GetDominantHand - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetDominantHand_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.GetDominantHand - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.GetDominantHand - nameWithType: OculusApi.GetDominantHand -- uid: XRTK.Oculus.Plugins.OculusApi.GetHandState(XRTK.Oculus.Plugins.OculusApi.Step,XRTK.Oculus.Plugins.OculusApi.Hand,XRTK.Oculus.Plugins.OculusApi.HandState@) - name: GetHandState(OculusApi.Step, OculusApi.Hand, ref OculusApi.HandState) - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetHandState_XRTK_Oculus_Plugins_OculusApi_Step_XRTK_Oculus_Plugins_OculusApi_Hand_XRTK_Oculus_Plugins_OculusApi_HandState__ - commentId: M:XRTK.Oculus.Plugins.OculusApi.GetHandState(XRTK.Oculus.Plugins.OculusApi.Step,XRTK.Oculus.Plugins.OculusApi.Hand,XRTK.Oculus.Plugins.OculusApi.HandState@) - name.vb: GetHandState(OculusApi.Step, OculusApi.Hand, ByRef OculusApi.HandState) - fullName: XRTK.Oculus.Plugins.OculusApi.GetHandState(XRTK.Oculus.Plugins.OculusApi.Step, XRTK.Oculus.Plugins.OculusApi.Hand, ref XRTK.Oculus.Plugins.OculusApi.HandState) - fullName.vb: XRTK.Oculus.Plugins.OculusApi.GetHandState(XRTK.Oculus.Plugins.OculusApi.Step, XRTK.Oculus.Plugins.OculusApi.Hand, ByRef XRTK.Oculus.Plugins.OculusApi.HandState) - nameWithType: OculusApi.GetHandState(OculusApi.Step, OculusApi.Hand, ref OculusApi.HandState) - nameWithType.vb: OculusApi.GetHandState(OculusApi.Step, OculusApi.Hand, ByRef OculusApi.HandState) -- uid: XRTK.Oculus.Plugins.OculusApi.GetHandState* - name: GetHandState - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetHandState_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.GetHandState - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.GetHandState - nameWithType: OculusApi.GetHandState -- uid: XRTK.Oculus.Plugins.OculusApi.GetHandTrackingEnabled - name: GetHandTrackingEnabled() - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetHandTrackingEnabled - commentId: M:XRTK.Oculus.Plugins.OculusApi.GetHandTrackingEnabled - fullName: XRTK.Oculus.Plugins.OculusApi.GetHandTrackingEnabled() - nameWithType: OculusApi.GetHandTrackingEnabled() -- uid: XRTK.Oculus.Plugins.OculusApi.GetHandTrackingEnabled* - name: GetHandTrackingEnabled - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetHandTrackingEnabled_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.GetHandTrackingEnabled - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.GetHandTrackingEnabled - nameWithType: OculusApi.GetHandTrackingEnabled -- uid: XRTK.Oculus.Plugins.OculusApi.GetHmdColorDesc - name: GetHmdColorDesc() - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetHmdColorDesc - commentId: M:XRTK.Oculus.Plugins.OculusApi.GetHmdColorDesc - fullName: XRTK.Oculus.Plugins.OculusApi.GetHmdColorDesc() - nameWithType: OculusApi.GetHmdColorDesc() -- uid: XRTK.Oculus.Plugins.OculusApi.GetHmdColorDesc* - name: GetHmdColorDesc - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetHmdColorDesc_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.GetHmdColorDesc - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.GetHmdColorDesc - nameWithType: OculusApi.GetHmdColorDesc -- uid: XRTK.Oculus.Plugins.OculusApi.GetLocalControllerPosition(XRTK.Oculus.Plugins.OculusApi.Controller) - name: GetLocalControllerPosition(OculusApi.Controller) - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetLocalControllerPosition_XRTK_Oculus_Plugins_OculusApi_Controller_ - commentId: M:XRTK.Oculus.Plugins.OculusApi.GetLocalControllerPosition(XRTK.Oculus.Plugins.OculusApi.Controller) - fullName: XRTK.Oculus.Plugins.OculusApi.GetLocalControllerPosition(XRTK.Oculus.Plugins.OculusApi.Controller) - nameWithType: OculusApi.GetLocalControllerPosition(OculusApi.Controller) -- uid: XRTK.Oculus.Plugins.OculusApi.GetLocalControllerPosition* - name: GetLocalControllerPosition - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetLocalControllerPosition_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.GetLocalControllerPosition - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.GetLocalControllerPosition - nameWithType: OculusApi.GetLocalControllerPosition -- uid: XRTK.Oculus.Plugins.OculusApi.GetMesh(XRTK.Oculus.Plugins.OculusApi.MeshType,XRTK.Oculus.Plugins.OculusApi.Mesh@) - name: GetMesh(OculusApi.MeshType, out OculusApi.Mesh) - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetMesh_XRTK_Oculus_Plugins_OculusApi_MeshType_XRTK_Oculus_Plugins_OculusApi_Mesh__ - commentId: M:XRTK.Oculus.Plugins.OculusApi.GetMesh(XRTK.Oculus.Plugins.OculusApi.MeshType,XRTK.Oculus.Plugins.OculusApi.Mesh@) - name.vb: GetMesh(OculusApi.MeshType, ByRef OculusApi.Mesh) - fullName: XRTK.Oculus.Plugins.OculusApi.GetMesh(XRTK.Oculus.Plugins.OculusApi.MeshType, out XRTK.Oculus.Plugins.OculusApi.Mesh) - fullName.vb: XRTK.Oculus.Plugins.OculusApi.GetMesh(XRTK.Oculus.Plugins.OculusApi.MeshType, ByRef XRTK.Oculus.Plugins.OculusApi.Mesh) - nameWithType: OculusApi.GetMesh(OculusApi.MeshType, out OculusApi.Mesh) - nameWithType.vb: OculusApi.GetMesh(OculusApi.MeshType, ByRef OculusApi.Mesh) -- uid: XRTK.Oculus.Plugins.OculusApi.GetMesh* - name: GetMesh - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetMesh_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.GetMesh - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.GetMesh - nameWithType: OculusApi.GetMesh -- uid: XRTK.Oculus.Plugins.OculusApi.GetMixedRealityCameraInfo(System.Int32,XRTK.Oculus.Plugins.OculusApi.CameraExtrinsics@,XRTK.Oculus.Plugins.OculusApi.CameraIntrinsics@,XRTK.Oculus.Plugins.OculusApi.Posef@) - name: GetMixedRealityCameraInfo(Int32, out OculusApi.CameraExtrinsics, out OculusApi.CameraIntrinsics, out OculusApi.Posef) - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetMixedRealityCameraInfo_System_Int32_XRTK_Oculus_Plugins_OculusApi_CameraExtrinsics__XRTK_Oculus_Plugins_OculusApi_CameraIntrinsics__XRTK_Oculus_Plugins_OculusApi_Posef__ - commentId: M:XRTK.Oculus.Plugins.OculusApi.GetMixedRealityCameraInfo(System.Int32,XRTK.Oculus.Plugins.OculusApi.CameraExtrinsics@,XRTK.Oculus.Plugins.OculusApi.CameraIntrinsics@,XRTK.Oculus.Plugins.OculusApi.Posef@) - name.vb: GetMixedRealityCameraInfo(Int32, ByRef OculusApi.CameraExtrinsics, ByRef OculusApi.CameraIntrinsics, ByRef OculusApi.Posef) - fullName: XRTK.Oculus.Plugins.OculusApi.GetMixedRealityCameraInfo(System.Int32, out XRTK.Oculus.Plugins.OculusApi.CameraExtrinsics, out XRTK.Oculus.Plugins.OculusApi.CameraIntrinsics, out XRTK.Oculus.Plugins.OculusApi.Posef) - fullName.vb: XRTK.Oculus.Plugins.OculusApi.GetMixedRealityCameraInfo(System.Int32, ByRef XRTK.Oculus.Plugins.OculusApi.CameraExtrinsics, ByRef XRTK.Oculus.Plugins.OculusApi.CameraIntrinsics, ByRef XRTK.Oculus.Plugins.OculusApi.Posef) - nameWithType: OculusApi.GetMixedRealityCameraInfo(Int32, out OculusApi.CameraExtrinsics, out OculusApi.CameraIntrinsics, out OculusApi.Posef) - nameWithType.vb: OculusApi.GetMixedRealityCameraInfo(Int32, ByRef OculusApi.CameraExtrinsics, ByRef OculusApi.CameraIntrinsics, ByRef OculusApi.Posef) -- uid: XRTK.Oculus.Plugins.OculusApi.GetMixedRealityCameraInfo* - name: GetMixedRealityCameraInfo - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetMixedRealityCameraInfo_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.GetMixedRealityCameraInfo - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.GetMixedRealityCameraInfo - nameWithType: OculusApi.GetMixedRealityCameraInfo -- uid: XRTK.Oculus.Plugins.OculusApi.GetNativeOpenXRInstance - name: GetNativeOpenXRInstance() - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetNativeOpenXRInstance - commentId: M:XRTK.Oculus.Plugins.OculusApi.GetNativeOpenXRInstance - fullName: XRTK.Oculus.Plugins.OculusApi.GetNativeOpenXRInstance() - nameWithType: OculusApi.GetNativeOpenXRInstance() -- uid: XRTK.Oculus.Plugins.OculusApi.GetNativeOpenXRInstance* - name: GetNativeOpenXRInstance - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetNativeOpenXRInstance_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.GetNativeOpenXRInstance - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.GetNativeOpenXRInstance - nameWithType: OculusApi.GetNativeOpenXRInstance -- uid: XRTK.Oculus.Plugins.OculusApi.GetNativeOpenXRSession - name: GetNativeOpenXRSession() - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetNativeOpenXRSession - commentId: M:XRTK.Oculus.Plugins.OculusApi.GetNativeOpenXRSession - fullName: XRTK.Oculus.Plugins.OculusApi.GetNativeOpenXRSession() - nameWithType: OculusApi.GetNativeOpenXRSession() -- uid: XRTK.Oculus.Plugins.OculusApi.GetNativeOpenXRSession* - name: GetNativeOpenXRSession - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetNativeOpenXRSession_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.GetNativeOpenXRSession - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.GetNativeOpenXRSession - nameWithType: OculusApi.GetNativeOpenXRSession -- uid: XRTK.Oculus.Plugins.OculusApi.GetNodeOrientationTracked(XRTK.Oculus.Plugins.OculusApi.Node) - name: GetNodeOrientationTracked(OculusApi.Node) - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetNodeOrientationTracked_XRTK_Oculus_Plugins_OculusApi_Node_ - commentId: M:XRTK.Oculus.Plugins.OculusApi.GetNodeOrientationTracked(XRTK.Oculus.Plugins.OculusApi.Node) - fullName: XRTK.Oculus.Plugins.OculusApi.GetNodeOrientationTracked(XRTK.Oculus.Plugins.OculusApi.Node) - nameWithType: OculusApi.GetNodeOrientationTracked(OculusApi.Node) -- uid: XRTK.Oculus.Plugins.OculusApi.GetNodeOrientationTracked* - name: GetNodeOrientationTracked - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetNodeOrientationTracked_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.GetNodeOrientationTracked - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.GetNodeOrientationTracked - nameWithType: OculusApi.GetNodeOrientationTracked -- uid: XRTK.Oculus.Plugins.OculusApi.GetNodeOrientationValid(XRTK.Oculus.Plugins.OculusApi.Node) - name: GetNodeOrientationValid(OculusApi.Node) - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetNodeOrientationValid_XRTK_Oculus_Plugins_OculusApi_Node_ - commentId: M:XRTK.Oculus.Plugins.OculusApi.GetNodeOrientationValid(XRTK.Oculus.Plugins.OculusApi.Node) - fullName: XRTK.Oculus.Plugins.OculusApi.GetNodeOrientationValid(XRTK.Oculus.Plugins.OculusApi.Node) - nameWithType: OculusApi.GetNodeOrientationValid(OculusApi.Node) -- uid: XRTK.Oculus.Plugins.OculusApi.GetNodeOrientationValid* - name: GetNodeOrientationValid - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetNodeOrientationValid_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.GetNodeOrientationValid - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.GetNodeOrientationValid - nameWithType: OculusApi.GetNodeOrientationValid -- uid: XRTK.Oculus.Plugins.OculusApi.GetNodePose(XRTK.Oculus.Plugins.OculusApi.Node,XRTK.Oculus.Plugins.OculusApi.Step) - name: GetNodePose(OculusApi.Node, OculusApi.Step) - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetNodePose_XRTK_Oculus_Plugins_OculusApi_Node_XRTK_Oculus_Plugins_OculusApi_Step_ - commentId: M:XRTK.Oculus.Plugins.OculusApi.GetNodePose(XRTK.Oculus.Plugins.OculusApi.Node,XRTK.Oculus.Plugins.OculusApi.Step) - fullName: XRTK.Oculus.Plugins.OculusApi.GetNodePose(XRTK.Oculus.Plugins.OculusApi.Node, XRTK.Oculus.Plugins.OculusApi.Step) - nameWithType: OculusApi.GetNodePose(OculusApi.Node, OculusApi.Step) -- uid: XRTK.Oculus.Plugins.OculusApi.GetNodePose* - name: GetNodePose - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetNodePose_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.GetNodePose - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.GetNodePose - nameWithType: OculusApi.GetNodePose -- uid: XRTK.Oculus.Plugins.OculusApi.GetNodePositionTracked(XRTK.Oculus.Plugins.OculusApi.Node) - name: GetNodePositionTracked(OculusApi.Node) - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetNodePositionTracked_XRTK_Oculus_Plugins_OculusApi_Node_ - commentId: M:XRTK.Oculus.Plugins.OculusApi.GetNodePositionTracked(XRTK.Oculus.Plugins.OculusApi.Node) - fullName: XRTK.Oculus.Plugins.OculusApi.GetNodePositionTracked(XRTK.Oculus.Plugins.OculusApi.Node) - nameWithType: OculusApi.GetNodePositionTracked(OculusApi.Node) -- uid: XRTK.Oculus.Plugins.OculusApi.GetNodePositionTracked* - name: GetNodePositionTracked - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetNodePositionTracked_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.GetNodePositionTracked - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.GetNodePositionTracked - nameWithType: OculusApi.GetNodePositionTracked -- uid: XRTK.Oculus.Plugins.OculusApi.GetNodePositionValid(XRTK.Oculus.Plugins.OculusApi.Node) - name: GetNodePositionValid(OculusApi.Node) - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetNodePositionValid_XRTK_Oculus_Plugins_OculusApi_Node_ - commentId: M:XRTK.Oculus.Plugins.OculusApi.GetNodePositionValid(XRTK.Oculus.Plugins.OculusApi.Node) - fullName: XRTK.Oculus.Plugins.OculusApi.GetNodePositionValid(XRTK.Oculus.Plugins.OculusApi.Node) - nameWithType: OculusApi.GetNodePositionValid(OculusApi.Node) -- uid: XRTK.Oculus.Plugins.OculusApi.GetNodePositionValid* - name: GetNodePositionValid - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetNodePositionValid_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.GetNodePositionValid - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.GetNodePositionValid - nameWithType: OculusApi.GetNodePositionValid -- uid: XRTK.Oculus.Plugins.OculusApi.GetNodePresent(XRTK.Oculus.Plugins.OculusApi.Node) - name: GetNodePresent(OculusApi.Node) - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetNodePresent_XRTK_Oculus_Plugins_OculusApi_Node_ - commentId: M:XRTK.Oculus.Plugins.OculusApi.GetNodePresent(XRTK.Oculus.Plugins.OculusApi.Node) - fullName: XRTK.Oculus.Plugins.OculusApi.GetNodePresent(XRTK.Oculus.Plugins.OculusApi.Node) - nameWithType: OculusApi.GetNodePresent(OculusApi.Node) -- uid: XRTK.Oculus.Plugins.OculusApi.GetNodePresent* - name: GetNodePresent - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetNodePresent_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.GetNodePresent - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.GetNodePresent - nameWithType: OculusApi.GetNodePresent -- uid: XRTK.Oculus.Plugins.OculusApi.GetNodeState(XRTK.Oculus.Plugins.OculusApi.Node,XRTK.Oculus.Plugins.OculusApi.Step) - name: GetNodeState(OculusApi.Node, OculusApi.Step) - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetNodeState_XRTK_Oculus_Plugins_OculusApi_Node_XRTK_Oculus_Plugins_OculusApi_Step_ - commentId: M:XRTK.Oculus.Plugins.OculusApi.GetNodeState(XRTK.Oculus.Plugins.OculusApi.Node,XRTK.Oculus.Plugins.OculusApi.Step) - fullName: XRTK.Oculus.Plugins.OculusApi.GetNodeState(XRTK.Oculus.Plugins.OculusApi.Node, XRTK.Oculus.Plugins.OculusApi.Step) - nameWithType: OculusApi.GetNodeState(OculusApi.Node, OculusApi.Step) -- uid: XRTK.Oculus.Plugins.OculusApi.GetNodeState* - name: GetNodeState - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetNodeState_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.GetNodeState - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.GetNodeState - nameWithType: OculusApi.GetNodeState -- uid: XRTK.Oculus.Plugins.OculusApi.GetNodeVelocity(XRTK.Oculus.Plugins.OculusApi.Node,XRTK.Oculus.Plugins.OculusApi.Step) - name: GetNodeVelocity(OculusApi.Node, OculusApi.Step) - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetNodeVelocity_XRTK_Oculus_Plugins_OculusApi_Node_XRTK_Oculus_Plugins_OculusApi_Step_ - commentId: M:XRTK.Oculus.Plugins.OculusApi.GetNodeVelocity(XRTK.Oculus.Plugins.OculusApi.Node,XRTK.Oculus.Plugins.OculusApi.Step) - fullName: XRTK.Oculus.Plugins.OculusApi.GetNodeVelocity(XRTK.Oculus.Plugins.OculusApi.Node, XRTK.Oculus.Plugins.OculusApi.Step) - nameWithType: OculusApi.GetNodeVelocity(OculusApi.Node, OculusApi.Step) -- uid: XRTK.Oculus.Plugins.OculusApi.GetNodeVelocity* - name: GetNodeVelocity - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetNodeVelocity_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.GetNodeVelocity - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.GetNodeVelocity - nameWithType: OculusApi.GetNodeVelocity -- uid: XRTK.Oculus.Plugins.OculusApi.GetSkeleton(XRTK.Oculus.Plugins.OculusApi.SkeletonType,XRTK.Oculus.Plugins.OculusApi.Skeleton@) - name: GetSkeleton(OculusApi.SkeletonType, out OculusApi.Skeleton) - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetSkeleton_XRTK_Oculus_Plugins_OculusApi_SkeletonType_XRTK_Oculus_Plugins_OculusApi_Skeleton__ - commentId: M:XRTK.Oculus.Plugins.OculusApi.GetSkeleton(XRTK.Oculus.Plugins.OculusApi.SkeletonType,XRTK.Oculus.Plugins.OculusApi.Skeleton@) - name.vb: GetSkeleton(OculusApi.SkeletonType, ByRef OculusApi.Skeleton) - fullName: XRTK.Oculus.Plugins.OculusApi.GetSkeleton(XRTK.Oculus.Plugins.OculusApi.SkeletonType, out XRTK.Oculus.Plugins.OculusApi.Skeleton) - fullName.vb: XRTK.Oculus.Plugins.OculusApi.GetSkeleton(XRTK.Oculus.Plugins.OculusApi.SkeletonType, ByRef XRTK.Oculus.Plugins.OculusApi.Skeleton) - nameWithType: OculusApi.GetSkeleton(OculusApi.SkeletonType, out OculusApi.Skeleton) - nameWithType.vb: OculusApi.GetSkeleton(OculusApi.SkeletonType, ByRef OculusApi.Skeleton) -- uid: XRTK.Oculus.Plugins.OculusApi.GetSkeleton* - name: GetSkeleton - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetSkeleton_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.GetSkeleton - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.GetSkeleton - nameWithType: OculusApi.GetSkeleton -- uid: XRTK.Oculus.Plugins.OculusApi.GetSkeleton2(XRTK.Oculus.Plugins.OculusApi.SkeletonType,XRTK.Oculus.Plugins.OculusApi.Skeleton2@) - name: GetSkeleton2(OculusApi.SkeletonType, ref OculusApi.Skeleton2) - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetSkeleton2_XRTK_Oculus_Plugins_OculusApi_SkeletonType_XRTK_Oculus_Plugins_OculusApi_Skeleton2__ - commentId: M:XRTK.Oculus.Plugins.OculusApi.GetSkeleton2(XRTK.Oculus.Plugins.OculusApi.SkeletonType,XRTK.Oculus.Plugins.OculusApi.Skeleton2@) - name.vb: GetSkeleton2(OculusApi.SkeletonType, ByRef OculusApi.Skeleton2) - fullName: XRTK.Oculus.Plugins.OculusApi.GetSkeleton2(XRTK.Oculus.Plugins.OculusApi.SkeletonType, ref XRTK.Oculus.Plugins.OculusApi.Skeleton2) - fullName.vb: XRTK.Oculus.Plugins.OculusApi.GetSkeleton2(XRTK.Oculus.Plugins.OculusApi.SkeletonType, ByRef XRTK.Oculus.Plugins.OculusApi.Skeleton2) - nameWithType: OculusApi.GetSkeleton2(OculusApi.SkeletonType, ref OculusApi.Skeleton2) - nameWithType.vb: OculusApi.GetSkeleton2(OculusApi.SkeletonType, ByRef OculusApi.Skeleton2) -- uid: XRTK.Oculus.Plugins.OculusApi.GetSkeleton2* - name: GetSkeleton2 - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetSkeleton2_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.GetSkeleton2 - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.GetSkeleton2 - nameWithType: OculusApi.GetSkeleton2 -- uid: XRTK.Oculus.Plugins.OculusApi.GetSystemHeadsetType - name: GetSystemHeadsetType() - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetSystemHeadsetType - commentId: M:XRTK.Oculus.Plugins.OculusApi.GetSystemHeadsetType - fullName: XRTK.Oculus.Plugins.OculusApi.GetSystemHeadsetType() - nameWithType: OculusApi.GetSystemHeadsetType() -- uid: XRTK.Oculus.Plugins.OculusApi.GetSystemHeadsetType* - name: GetSystemHeadsetType - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetSystemHeadsetType_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.GetSystemHeadsetType - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.GetSystemHeadsetType - nameWithType: OculusApi.GetSystemHeadsetType -- uid: XRTK.Oculus.Plugins.OculusApi.GetSystemHmd3DofModeEnabled - name: GetSystemHmd3DofModeEnabled() - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetSystemHmd3DofModeEnabled - commentId: M:XRTK.Oculus.Plugins.OculusApi.GetSystemHmd3DofModeEnabled - fullName: XRTK.Oculus.Plugins.OculusApi.GetSystemHmd3DofModeEnabled() - nameWithType: OculusApi.GetSystemHmd3DofModeEnabled() -- uid: XRTK.Oculus.Plugins.OculusApi.GetSystemHmd3DofModeEnabled* - name: GetSystemHmd3DofModeEnabled - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetSystemHmd3DofModeEnabled_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.GetSystemHmd3DofModeEnabled - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.GetSystemHmd3DofModeEnabled - nameWithType: OculusApi.GetSystemHmd3DofModeEnabled -- uid: XRTK.Oculus.Plugins.OculusApi.GetTrackingCalibratedOrigin - name: GetTrackingCalibratedOrigin() - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetTrackingCalibratedOrigin - commentId: M:XRTK.Oculus.Plugins.OculusApi.GetTrackingCalibratedOrigin - fullName: XRTK.Oculus.Plugins.OculusApi.GetTrackingCalibratedOrigin() - nameWithType: OculusApi.GetTrackingCalibratedOrigin() -- uid: XRTK.Oculus.Plugins.OculusApi.GetTrackingCalibratedOrigin* - name: GetTrackingCalibratedOrigin - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetTrackingCalibratedOrigin_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.GetTrackingCalibratedOrigin - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.GetTrackingCalibratedOrigin - nameWithType: OculusApi.GetTrackingCalibratedOrigin -- uid: XRTK.Oculus.Plugins.OculusApi.GetTrackingOriginType - name: GetTrackingOriginType() - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetTrackingOriginType - commentId: M:XRTK.Oculus.Plugins.OculusApi.GetTrackingOriginType - fullName: XRTK.Oculus.Plugins.OculusApi.GetTrackingOriginType() - nameWithType: OculusApi.GetTrackingOriginType() -- uid: XRTK.Oculus.Plugins.OculusApi.GetTrackingOriginType* - name: GetTrackingOriginType - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetTrackingOriginType_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.GetTrackingOriginType - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.GetTrackingOriginType - nameWithType: OculusApi.GetTrackingOriginType -- uid: XRTK.Oculus.Plugins.OculusApi.GetUseOverriddenExternalCameraFov(System.Int32) - name: GetUseOverriddenExternalCameraFov(Int32) - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetUseOverriddenExternalCameraFov_System_Int32_ - commentId: M:XRTK.Oculus.Plugins.OculusApi.GetUseOverriddenExternalCameraFov(System.Int32) - fullName: XRTK.Oculus.Plugins.OculusApi.GetUseOverriddenExternalCameraFov(System.Int32) - nameWithType: OculusApi.GetUseOverriddenExternalCameraFov(Int32) -- uid: XRTK.Oculus.Plugins.OculusApi.GetUseOverriddenExternalCameraFov* - name: GetUseOverriddenExternalCameraFov - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetUseOverriddenExternalCameraFov_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.GetUseOverriddenExternalCameraFov - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.GetUseOverriddenExternalCameraFov - nameWithType: OculusApi.GetUseOverriddenExternalCameraFov -- uid: XRTK.Oculus.Plugins.OculusApi.GetUseOverriddenExternalCameraStaticPose(System.Int32) - name: GetUseOverriddenExternalCameraStaticPose(Int32) - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetUseOverriddenExternalCameraStaticPose_System_Int32_ - commentId: M:XRTK.Oculus.Plugins.OculusApi.GetUseOverriddenExternalCameraStaticPose(System.Int32) - fullName: XRTK.Oculus.Plugins.OculusApi.GetUseOverriddenExternalCameraStaticPose(System.Int32) - nameWithType: OculusApi.GetUseOverriddenExternalCameraStaticPose(Int32) -- uid: XRTK.Oculus.Plugins.OculusApi.GetUseOverriddenExternalCameraStaticPose* - name: GetUseOverriddenExternalCameraStaticPose - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_GetUseOverriddenExternalCameraStaticPose_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.GetUseOverriddenExternalCameraStaticPose - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.GetUseOverriddenExternalCameraStaticPose - nameWithType: OculusApi.GetUseOverriddenExternalCameraStaticPose -- uid: XRTK.Oculus.Plugins.OculusApi.gpuLevel - name: gpuLevel - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_gpuLevel - commentId: P:XRTK.Oculus.Plugins.OculusApi.gpuLevel - fullName: XRTK.Oculus.Plugins.OculusApi.gpuLevel - nameWithType: OculusApi.gpuLevel -- uid: XRTK.Oculus.Plugins.OculusApi.gpuLevel* - name: gpuLevel - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_gpuLevel_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.gpuLevel - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.gpuLevel - nameWithType: OculusApi.gpuLevel -- uid: XRTK.Oculus.Plugins.OculusApi.Hand - name: OculusApi.Hand - href: api/XRTK.Oculus.Plugins.OculusApi.Hand.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.Hand - fullName: XRTK.Oculus.Plugins.OculusApi.Hand - nameWithType: OculusApi.Hand -- uid: XRTK.Oculus.Plugins.OculusApi.Hand.HandLeft - name: HandLeft - href: api/XRTK.Oculus.Plugins.OculusApi.Hand.html#XRTK_Oculus_Plugins_OculusApi_Hand_HandLeft - commentId: F:XRTK.Oculus.Plugins.OculusApi.Hand.HandLeft - fullName: XRTK.Oculus.Plugins.OculusApi.Hand.HandLeft - nameWithType: OculusApi.Hand.HandLeft -- uid: XRTK.Oculus.Plugins.OculusApi.Hand.HandRight - name: HandRight - href: api/XRTK.Oculus.Plugins.OculusApi.Hand.html#XRTK_Oculus_Plugins_OculusApi_Hand_HandRight - commentId: F:XRTK.Oculus.Plugins.OculusApi.Hand.HandRight - fullName: XRTK.Oculus.Plugins.OculusApi.Hand.HandRight - nameWithType: OculusApi.Hand.HandRight -- uid: XRTK.Oculus.Plugins.OculusApi.Hand.None - name: None - href: api/XRTK.Oculus.Plugins.OculusApi.Hand.html#XRTK_Oculus_Plugins_OculusApi_Hand_None - commentId: F:XRTK.Oculus.Plugins.OculusApi.Hand.None - fullName: XRTK.Oculus.Plugins.OculusApi.Hand.None - nameWithType: OculusApi.Hand.None -- uid: XRTK.Oculus.Plugins.OculusApi.Handedness - name: OculusApi.Handedness - href: api/XRTK.Oculus.Plugins.OculusApi.Handedness.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.Handedness - fullName: XRTK.Oculus.Plugins.OculusApi.Handedness - nameWithType: OculusApi.Handedness -- uid: XRTK.Oculus.Plugins.OculusApi.Handedness.LeftHanded - name: LeftHanded - href: api/XRTK.Oculus.Plugins.OculusApi.Handedness.html#XRTK_Oculus_Plugins_OculusApi_Handedness_LeftHanded - commentId: F:XRTK.Oculus.Plugins.OculusApi.Handedness.LeftHanded - fullName: XRTK.Oculus.Plugins.OculusApi.Handedness.LeftHanded - nameWithType: OculusApi.Handedness.LeftHanded -- uid: XRTK.Oculus.Plugins.OculusApi.Handedness.RightHanded - name: RightHanded - href: api/XRTK.Oculus.Plugins.OculusApi.Handedness.html#XRTK_Oculus_Plugins_OculusApi_Handedness_RightHanded - commentId: F:XRTK.Oculus.Plugins.OculusApi.Handedness.RightHanded - fullName: XRTK.Oculus.Plugins.OculusApi.Handedness.RightHanded - nameWithType: OculusApi.Handedness.RightHanded -- uid: XRTK.Oculus.Plugins.OculusApi.Handedness.Unsupported - name: Unsupported - href: api/XRTK.Oculus.Plugins.OculusApi.Handedness.html#XRTK_Oculus_Plugins_OculusApi_Handedness_Unsupported - commentId: F:XRTK.Oculus.Plugins.OculusApi.Handedness.Unsupported - fullName: XRTK.Oculus.Plugins.OculusApi.Handedness.Unsupported - nameWithType: OculusApi.Handedness.Unsupported -- uid: XRTK.Oculus.Plugins.OculusApi.HandFinger - name: OculusApi.HandFinger - href: api/XRTK.Oculus.Plugins.OculusApi.HandFinger.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.HandFinger - fullName: XRTK.Oculus.Plugins.OculusApi.HandFinger - nameWithType: OculusApi.HandFinger -- uid: XRTK.Oculus.Plugins.OculusApi.HandFinger.Index - name: Index - href: api/XRTK.Oculus.Plugins.OculusApi.HandFinger.html#XRTK_Oculus_Plugins_OculusApi_HandFinger_Index - commentId: F:XRTK.Oculus.Plugins.OculusApi.HandFinger.Index - fullName: XRTK.Oculus.Plugins.OculusApi.HandFinger.Index - nameWithType: OculusApi.HandFinger.Index -- uid: XRTK.Oculus.Plugins.OculusApi.HandFinger.Max - name: Max - href: api/XRTK.Oculus.Plugins.OculusApi.HandFinger.html#XRTK_Oculus_Plugins_OculusApi_HandFinger_Max - commentId: F:XRTK.Oculus.Plugins.OculusApi.HandFinger.Max - fullName: XRTK.Oculus.Plugins.OculusApi.HandFinger.Max - nameWithType: OculusApi.HandFinger.Max -- uid: XRTK.Oculus.Plugins.OculusApi.HandFinger.Middle - name: Middle - href: api/XRTK.Oculus.Plugins.OculusApi.HandFinger.html#XRTK_Oculus_Plugins_OculusApi_HandFinger_Middle - commentId: F:XRTK.Oculus.Plugins.OculusApi.HandFinger.Middle - fullName: XRTK.Oculus.Plugins.OculusApi.HandFinger.Middle - nameWithType: OculusApi.HandFinger.Middle -- uid: XRTK.Oculus.Plugins.OculusApi.HandFinger.Pinky - name: Pinky - href: api/XRTK.Oculus.Plugins.OculusApi.HandFinger.html#XRTK_Oculus_Plugins_OculusApi_HandFinger_Pinky - commentId: F:XRTK.Oculus.Plugins.OculusApi.HandFinger.Pinky - fullName: XRTK.Oculus.Plugins.OculusApi.HandFinger.Pinky - nameWithType: OculusApi.HandFinger.Pinky -- uid: XRTK.Oculus.Plugins.OculusApi.HandFinger.Ring - name: Ring - href: api/XRTK.Oculus.Plugins.OculusApi.HandFinger.html#XRTK_Oculus_Plugins_OculusApi_HandFinger_Ring - commentId: F:XRTK.Oculus.Plugins.OculusApi.HandFinger.Ring - fullName: XRTK.Oculus.Plugins.OculusApi.HandFinger.Ring - nameWithType: OculusApi.HandFinger.Ring -- uid: XRTK.Oculus.Plugins.OculusApi.HandFinger.Thumb - name: Thumb - href: api/XRTK.Oculus.Plugins.OculusApi.HandFinger.html#XRTK_Oculus_Plugins_OculusApi_HandFinger_Thumb - commentId: F:XRTK.Oculus.Plugins.OculusApi.HandFinger.Thumb - fullName: XRTK.Oculus.Plugins.OculusApi.HandFinger.Thumb - nameWithType: OculusApi.HandFinger.Thumb -- uid: XRTK.Oculus.Plugins.OculusApi.HandFingerPinch - name: OculusApi.HandFingerPinch - href: api/XRTK.Oculus.Plugins.OculusApi.HandFingerPinch.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.HandFingerPinch - fullName: XRTK.Oculus.Plugins.OculusApi.HandFingerPinch - nameWithType: OculusApi.HandFingerPinch -- uid: XRTK.Oculus.Plugins.OculusApi.HandFingerPinch.Index - name: Index - href: api/XRTK.Oculus.Plugins.OculusApi.HandFingerPinch.html#XRTK_Oculus_Plugins_OculusApi_HandFingerPinch_Index - commentId: F:XRTK.Oculus.Plugins.OculusApi.HandFingerPinch.Index - fullName: XRTK.Oculus.Plugins.OculusApi.HandFingerPinch.Index - nameWithType: OculusApi.HandFingerPinch.Index -- uid: XRTK.Oculus.Plugins.OculusApi.HandFingerPinch.Middle - name: Middle - href: api/XRTK.Oculus.Plugins.OculusApi.HandFingerPinch.html#XRTK_Oculus_Plugins_OculusApi_HandFingerPinch_Middle - commentId: F:XRTK.Oculus.Plugins.OculusApi.HandFingerPinch.Middle - fullName: XRTK.Oculus.Plugins.OculusApi.HandFingerPinch.Middle - nameWithType: OculusApi.HandFingerPinch.Middle -- uid: XRTK.Oculus.Plugins.OculusApi.HandFingerPinch.Pinky - name: Pinky - href: api/XRTK.Oculus.Plugins.OculusApi.HandFingerPinch.html#XRTK_Oculus_Plugins_OculusApi_HandFingerPinch_Pinky - commentId: F:XRTK.Oculus.Plugins.OculusApi.HandFingerPinch.Pinky - fullName: XRTK.Oculus.Plugins.OculusApi.HandFingerPinch.Pinky - nameWithType: OculusApi.HandFingerPinch.Pinky -- uid: XRTK.Oculus.Plugins.OculusApi.HandFingerPinch.Ring - name: Ring - href: api/XRTK.Oculus.Plugins.OculusApi.HandFingerPinch.html#XRTK_Oculus_Plugins_OculusApi_HandFingerPinch_Ring - commentId: F:XRTK.Oculus.Plugins.OculusApi.HandFingerPinch.Ring - fullName: XRTK.Oculus.Plugins.OculusApi.HandFingerPinch.Ring - nameWithType: OculusApi.HandFingerPinch.Ring -- uid: XRTK.Oculus.Plugins.OculusApi.HandFingerPinch.Thumb - name: Thumb - href: api/XRTK.Oculus.Plugins.OculusApi.HandFingerPinch.html#XRTK_Oculus_Plugins_OculusApi_HandFingerPinch_Thumb - commentId: F:XRTK.Oculus.Plugins.OculusApi.HandFingerPinch.Thumb - fullName: XRTK.Oculus.Plugins.OculusApi.HandFingerPinch.Thumb - nameWithType: OculusApi.HandFingerPinch.Thumb -- uid: XRTK.Oculus.Plugins.OculusApi.HandState - name: OculusApi.HandState - href: api/XRTK.Oculus.Plugins.OculusApi.HandState.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.HandState - fullName: XRTK.Oculus.Plugins.OculusApi.HandState - nameWithType: OculusApi.HandState -- uid: XRTK.Oculus.Plugins.OculusApi.HandState.BoneRotations - name: BoneRotations - href: api/XRTK.Oculus.Plugins.OculusApi.HandState.html#XRTK_Oculus_Plugins_OculusApi_HandState_BoneRotations - commentId: F:XRTK.Oculus.Plugins.OculusApi.HandState.BoneRotations - fullName: XRTK.Oculus.Plugins.OculusApi.HandState.BoneRotations - nameWithType: OculusApi.HandState.BoneRotations -- uid: XRTK.Oculus.Plugins.OculusApi.HandState.FingerConfidences - name: FingerConfidences - href: api/XRTK.Oculus.Plugins.OculusApi.HandState.html#XRTK_Oculus_Plugins_OculusApi_HandState_FingerConfidences - commentId: F:XRTK.Oculus.Plugins.OculusApi.HandState.FingerConfidences - fullName: XRTK.Oculus.Plugins.OculusApi.HandState.FingerConfidences - nameWithType: OculusApi.HandState.FingerConfidences -- uid: XRTK.Oculus.Plugins.OculusApi.HandState.HandConfidence - name: HandConfidence - href: api/XRTK.Oculus.Plugins.OculusApi.HandState.html#XRTK_Oculus_Plugins_OculusApi_HandState_HandConfidence - commentId: F:XRTK.Oculus.Plugins.OculusApi.HandState.HandConfidence - fullName: XRTK.Oculus.Plugins.OculusApi.HandState.HandConfidence - nameWithType: OculusApi.HandState.HandConfidence -- uid: XRTK.Oculus.Plugins.OculusApi.HandState.HandScale - name: HandScale - href: api/XRTK.Oculus.Plugins.OculusApi.HandState.html#XRTK_Oculus_Plugins_OculusApi_HandState_HandScale - commentId: F:XRTK.Oculus.Plugins.OculusApi.HandState.HandScale - fullName: XRTK.Oculus.Plugins.OculusApi.HandState.HandScale - nameWithType: OculusApi.HandState.HandScale -- uid: XRTK.Oculus.Plugins.OculusApi.HandState.Pinches - name: Pinches - href: api/XRTK.Oculus.Plugins.OculusApi.HandState.html#XRTK_Oculus_Plugins_OculusApi_HandState_Pinches - commentId: F:XRTK.Oculus.Plugins.OculusApi.HandState.Pinches - fullName: XRTK.Oculus.Plugins.OculusApi.HandState.Pinches - nameWithType: OculusApi.HandState.Pinches -- uid: XRTK.Oculus.Plugins.OculusApi.HandState.PinchStrength - name: PinchStrength - href: api/XRTK.Oculus.Plugins.OculusApi.HandState.html#XRTK_Oculus_Plugins_OculusApi_HandState_PinchStrength - commentId: F:XRTK.Oculus.Plugins.OculusApi.HandState.PinchStrength - fullName: XRTK.Oculus.Plugins.OculusApi.HandState.PinchStrength - nameWithType: OculusApi.HandState.PinchStrength -- uid: XRTK.Oculus.Plugins.OculusApi.HandState.PointerPose - name: PointerPose - href: api/XRTK.Oculus.Plugins.OculusApi.HandState.html#XRTK_Oculus_Plugins_OculusApi_HandState_PointerPose - commentId: F:XRTK.Oculus.Plugins.OculusApi.HandState.PointerPose - fullName: XRTK.Oculus.Plugins.OculusApi.HandState.PointerPose - nameWithType: OculusApi.HandState.PointerPose -- uid: XRTK.Oculus.Plugins.OculusApi.HandState.RequestedTimeStamp - name: RequestedTimeStamp - href: api/XRTK.Oculus.Plugins.OculusApi.HandState.html#XRTK_Oculus_Plugins_OculusApi_HandState_RequestedTimeStamp - commentId: F:XRTK.Oculus.Plugins.OculusApi.HandState.RequestedTimeStamp - fullName: XRTK.Oculus.Plugins.OculusApi.HandState.RequestedTimeStamp - nameWithType: OculusApi.HandState.RequestedTimeStamp -- uid: XRTK.Oculus.Plugins.OculusApi.HandState.RootPose - name: RootPose - href: api/XRTK.Oculus.Plugins.OculusApi.HandState.html#XRTK_Oculus_Plugins_OculusApi_HandState_RootPose - commentId: F:XRTK.Oculus.Plugins.OculusApi.HandState.RootPose - fullName: XRTK.Oculus.Plugins.OculusApi.HandState.RootPose - nameWithType: OculusApi.HandState.RootPose -- uid: XRTK.Oculus.Plugins.OculusApi.HandState.SampleTimeStamp - name: SampleTimeStamp - href: api/XRTK.Oculus.Plugins.OculusApi.HandState.html#XRTK_Oculus_Plugins_OculusApi_HandState_SampleTimeStamp - commentId: F:XRTK.Oculus.Plugins.OculusApi.HandState.SampleTimeStamp - fullName: XRTK.Oculus.Plugins.OculusApi.HandState.SampleTimeStamp - nameWithType: OculusApi.HandState.SampleTimeStamp -- uid: XRTK.Oculus.Plugins.OculusApi.HandState.Status - name: Status - href: api/XRTK.Oculus.Plugins.OculusApi.HandState.html#XRTK_Oculus_Plugins_OculusApi_HandState_Status - commentId: F:XRTK.Oculus.Plugins.OculusApi.HandState.Status - fullName: XRTK.Oculus.Plugins.OculusApi.HandState.Status - nameWithType: OculusApi.HandState.Status -- uid: XRTK.Oculus.Plugins.OculusApi.HandStatus - name: OculusApi.HandStatus - href: api/XRTK.Oculus.Plugins.OculusApi.HandStatus.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.HandStatus - fullName: XRTK.Oculus.Plugins.OculusApi.HandStatus - nameWithType: OculusApi.HandStatus -- uid: XRTK.Oculus.Plugins.OculusApi.HandStatus.DominantHand - name: DominantHand - href: api/XRTK.Oculus.Plugins.OculusApi.HandStatus.html#XRTK_Oculus_Plugins_OculusApi_HandStatus_DominantHand - commentId: F:XRTK.Oculus.Plugins.OculusApi.HandStatus.DominantHand - fullName: XRTK.Oculus.Plugins.OculusApi.HandStatus.DominantHand - nameWithType: OculusApi.HandStatus.DominantHand -- uid: XRTK.Oculus.Plugins.OculusApi.HandStatus.HandTracked - name: HandTracked - href: api/XRTK.Oculus.Plugins.OculusApi.HandStatus.html#XRTK_Oculus_Plugins_OculusApi_HandStatus_HandTracked - commentId: F:XRTK.Oculus.Plugins.OculusApi.HandStatus.HandTracked - fullName: XRTK.Oculus.Plugins.OculusApi.HandStatus.HandTracked - nameWithType: OculusApi.HandStatus.HandTracked -- uid: XRTK.Oculus.Plugins.OculusApi.HandStatus.InputStateValid - name: InputStateValid - href: api/XRTK.Oculus.Plugins.OculusApi.HandStatus.html#XRTK_Oculus_Plugins_OculusApi_HandStatus_InputStateValid - commentId: F:XRTK.Oculus.Plugins.OculusApi.HandStatus.InputStateValid - fullName: XRTK.Oculus.Plugins.OculusApi.HandStatus.InputStateValid - nameWithType: OculusApi.HandStatus.InputStateValid -- uid: XRTK.Oculus.Plugins.OculusApi.HandStatus.MenuPressed - name: MenuPressed - href: api/XRTK.Oculus.Plugins.OculusApi.HandStatus.html#XRTK_Oculus_Plugins_OculusApi_HandStatus_MenuPressed - commentId: F:XRTK.Oculus.Plugins.OculusApi.HandStatus.MenuPressed - fullName: XRTK.Oculus.Plugins.OculusApi.HandStatus.MenuPressed - nameWithType: OculusApi.HandStatus.MenuPressed -- uid: XRTK.Oculus.Plugins.OculusApi.HandStatus.SystemGestureInProgress - name: SystemGestureInProgress - href: api/XRTK.Oculus.Plugins.OculusApi.HandStatus.html#XRTK_Oculus_Plugins_OculusApi_HandStatus_SystemGestureInProgress - commentId: F:XRTK.Oculus.Plugins.OculusApi.HandStatus.SystemGestureInProgress - fullName: XRTK.Oculus.Plugins.OculusApi.HandStatus.SystemGestureInProgress - nameWithType: OculusApi.HandStatus.SystemGestureInProgress -- uid: XRTK.Oculus.Plugins.OculusApi.HapticsBuffer - name: OculusApi.HapticsBuffer - href: api/XRTK.Oculus.Plugins.OculusApi.HapticsBuffer.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.HapticsBuffer - fullName: XRTK.Oculus.Plugins.OculusApi.HapticsBuffer - nameWithType: OculusApi.HapticsBuffer -- uid: XRTK.Oculus.Plugins.OculusApi.HapticsBuffer.Samples - name: Samples - href: api/XRTK.Oculus.Plugins.OculusApi.HapticsBuffer.html#XRTK_Oculus_Plugins_OculusApi_HapticsBuffer_Samples - commentId: F:XRTK.Oculus.Plugins.OculusApi.HapticsBuffer.Samples - fullName: XRTK.Oculus.Plugins.OculusApi.HapticsBuffer.Samples - nameWithType: OculusApi.HapticsBuffer.Samples -- uid: XRTK.Oculus.Plugins.OculusApi.HapticsBuffer.SamplesCount - name: SamplesCount - href: api/XRTK.Oculus.Plugins.OculusApi.HapticsBuffer.html#XRTK_Oculus_Plugins_OculusApi_HapticsBuffer_SamplesCount - commentId: F:XRTK.Oculus.Plugins.OculusApi.HapticsBuffer.SamplesCount - fullName: XRTK.Oculus.Plugins.OculusApi.HapticsBuffer.SamplesCount - nameWithType: OculusApi.HapticsBuffer.SamplesCount -- uid: XRTK.Oculus.Plugins.OculusApi.HapticsDesc - name: OculusApi.HapticsDesc - href: api/XRTK.Oculus.Plugins.OculusApi.HapticsDesc.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.HapticsDesc - fullName: XRTK.Oculus.Plugins.OculusApi.HapticsDesc - nameWithType: OculusApi.HapticsDesc -- uid: XRTK.Oculus.Plugins.OculusApi.HapticsDesc.MaximumBufferSamplesCount - name: MaximumBufferSamplesCount - href: api/XRTK.Oculus.Plugins.OculusApi.HapticsDesc.html#XRTK_Oculus_Plugins_OculusApi_HapticsDesc_MaximumBufferSamplesCount - commentId: F:XRTK.Oculus.Plugins.OculusApi.HapticsDesc.MaximumBufferSamplesCount - fullName: XRTK.Oculus.Plugins.OculusApi.HapticsDesc.MaximumBufferSamplesCount - nameWithType: OculusApi.HapticsDesc.MaximumBufferSamplesCount -- uid: XRTK.Oculus.Plugins.OculusApi.HapticsDesc.MinimumBufferSamplesCount - name: MinimumBufferSamplesCount - href: api/XRTK.Oculus.Plugins.OculusApi.HapticsDesc.html#XRTK_Oculus_Plugins_OculusApi_HapticsDesc_MinimumBufferSamplesCount - commentId: F:XRTK.Oculus.Plugins.OculusApi.HapticsDesc.MinimumBufferSamplesCount - fullName: XRTK.Oculus.Plugins.OculusApi.HapticsDesc.MinimumBufferSamplesCount - nameWithType: OculusApi.HapticsDesc.MinimumBufferSamplesCount -- uid: XRTK.Oculus.Plugins.OculusApi.HapticsDesc.MinimumSafeSamplesQueued - name: MinimumSafeSamplesQueued - href: api/XRTK.Oculus.Plugins.OculusApi.HapticsDesc.html#XRTK_Oculus_Plugins_OculusApi_HapticsDesc_MinimumSafeSamplesQueued - commentId: F:XRTK.Oculus.Plugins.OculusApi.HapticsDesc.MinimumSafeSamplesQueued - fullName: XRTK.Oculus.Plugins.OculusApi.HapticsDesc.MinimumSafeSamplesQueued - nameWithType: OculusApi.HapticsDesc.MinimumSafeSamplesQueued -- uid: XRTK.Oculus.Plugins.OculusApi.HapticsDesc.OptimalBufferSamplesCount - name: OptimalBufferSamplesCount - href: api/XRTK.Oculus.Plugins.OculusApi.HapticsDesc.html#XRTK_Oculus_Plugins_OculusApi_HapticsDesc_OptimalBufferSamplesCount - commentId: F:XRTK.Oculus.Plugins.OculusApi.HapticsDesc.OptimalBufferSamplesCount - fullName: XRTK.Oculus.Plugins.OculusApi.HapticsDesc.OptimalBufferSamplesCount - nameWithType: OculusApi.HapticsDesc.OptimalBufferSamplesCount -- uid: XRTK.Oculus.Plugins.OculusApi.HapticsDesc.SampleRateHz - name: SampleRateHz - href: api/XRTK.Oculus.Plugins.OculusApi.HapticsDesc.html#XRTK_Oculus_Plugins_OculusApi_HapticsDesc_SampleRateHz - commentId: F:XRTK.Oculus.Plugins.OculusApi.HapticsDesc.SampleRateHz - fullName: XRTK.Oculus.Plugins.OculusApi.HapticsDesc.SampleRateHz - nameWithType: OculusApi.HapticsDesc.SampleRateHz -- uid: XRTK.Oculus.Plugins.OculusApi.HapticsDesc.SampleSizeInBytes - name: SampleSizeInBytes - href: api/XRTK.Oculus.Plugins.OculusApi.HapticsDesc.html#XRTK_Oculus_Plugins_OculusApi_HapticsDesc_SampleSizeInBytes - commentId: F:XRTK.Oculus.Plugins.OculusApi.HapticsDesc.SampleSizeInBytes - fullName: XRTK.Oculus.Plugins.OculusApi.HapticsDesc.SampleSizeInBytes - nameWithType: OculusApi.HapticsDesc.SampleSizeInBytes -- uid: XRTK.Oculus.Plugins.OculusApi.HapticsState - name: OculusApi.HapticsState - href: api/XRTK.Oculus.Plugins.OculusApi.HapticsState.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.HapticsState - fullName: XRTK.Oculus.Plugins.OculusApi.HapticsState - nameWithType: OculusApi.HapticsState -- uid: XRTK.Oculus.Plugins.OculusApi.HapticsState.SamplesAvailable - name: SamplesAvailable - href: api/XRTK.Oculus.Plugins.OculusApi.HapticsState.html#XRTK_Oculus_Plugins_OculusApi_HapticsState_SamplesAvailable - commentId: F:XRTK.Oculus.Plugins.OculusApi.HapticsState.SamplesAvailable - fullName: XRTK.Oculus.Plugins.OculusApi.HapticsState.SamplesAvailable - nameWithType: OculusApi.HapticsState.SamplesAvailable -- uid: XRTK.Oculus.Plugins.OculusApi.HapticsState.SamplesQueued - name: SamplesQueued - href: api/XRTK.Oculus.Plugins.OculusApi.HapticsState.html#XRTK_Oculus_Plugins_OculusApi_HapticsState_SamplesQueued - commentId: F:XRTK.Oculus.Plugins.OculusApi.HapticsState.SamplesQueued - fullName: XRTK.Oculus.Plugins.OculusApi.HapticsState.SamplesQueued - nameWithType: OculusApi.HapticsState.SamplesQueued -- uid: XRTK.Oculus.Plugins.OculusApi.HeadphonesPresent - name: HeadphonesPresent - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_HeadphonesPresent - commentId: P:XRTK.Oculus.Plugins.OculusApi.HeadphonesPresent - fullName: XRTK.Oculus.Plugins.OculusApi.HeadphonesPresent - nameWithType: OculusApi.HeadphonesPresent -- uid: XRTK.Oculus.Plugins.OculusApi.HeadphonesPresent* - name: HeadphonesPresent - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_HeadphonesPresent_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.HeadphonesPresent - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.HeadphonesPresent - nameWithType: OculusApi.HeadphonesPresent -- uid: XRTK.Oculus.Plugins.OculusApi.HMDMounted - name: HMDMounted - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_HMDMounted - commentId: E:XRTK.Oculus.Plugins.OculusApi.HMDMounted - fullName: XRTK.Oculus.Plugins.OculusApi.HMDMounted - nameWithType: OculusApi.HMDMounted -- uid: XRTK.Oculus.Plugins.OculusApi.HMDUnmounted - name: HMDUnmounted - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_HMDUnmounted - commentId: E:XRTK.Oculus.Plugins.OculusApi.HMDUnmounted - fullName: XRTK.Oculus.Plugins.OculusApi.HMDUnmounted - nameWithType: OculusApi.HMDUnmounted -- uid: XRTK.Oculus.Plugins.OculusApi.Initialized - name: Initialized - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_Initialized - commentId: P:XRTK.Oculus.Plugins.OculusApi.Initialized - fullName: XRTK.Oculus.Plugins.OculusApi.Initialized - nameWithType: OculusApi.Initialized -- uid: XRTK.Oculus.Plugins.OculusApi.Initialized* - name: Initialized - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_Initialized_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.Initialized - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.Initialized - nameWithType: OculusApi.Initialized -- uid: XRTK.Oculus.Plugins.OculusApi.ipd - name: ipd - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_ipd - commentId: P:XRTK.Oculus.Plugins.OculusApi.ipd - fullName: XRTK.Oculus.Plugins.OculusApi.ipd - nameWithType: OculusApi.ipd -- uid: XRTK.Oculus.Plugins.OculusApi.ipd* - name: ipd - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_ipd_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.ipd - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.ipd - nameWithType: OculusApi.ipd -- uid: XRTK.Oculus.Plugins.OculusApi.Mesh - name: OculusApi.Mesh - href: api/XRTK.Oculus.Plugins.OculusApi.Mesh.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.Mesh - fullName: XRTK.Oculus.Plugins.OculusApi.Mesh - nameWithType: OculusApi.Mesh -- uid: XRTK.Oculus.Plugins.OculusApi.Mesh.BlendIndices - name: BlendIndices - href: api/XRTK.Oculus.Plugins.OculusApi.Mesh.html#XRTK_Oculus_Plugins_OculusApi_Mesh_BlendIndices - commentId: F:XRTK.Oculus.Plugins.OculusApi.Mesh.BlendIndices - fullName: XRTK.Oculus.Plugins.OculusApi.Mesh.BlendIndices - nameWithType: OculusApi.Mesh.BlendIndices -- uid: XRTK.Oculus.Plugins.OculusApi.Mesh.BlendWeights - name: BlendWeights - href: api/XRTK.Oculus.Plugins.OculusApi.Mesh.html#XRTK_Oculus_Plugins_OculusApi_Mesh_BlendWeights - commentId: F:XRTK.Oculus.Plugins.OculusApi.Mesh.BlendWeights - fullName: XRTK.Oculus.Plugins.OculusApi.Mesh.BlendWeights - nameWithType: OculusApi.Mesh.BlendWeights -- uid: XRTK.Oculus.Plugins.OculusApi.Mesh.Indices - name: Indices - href: api/XRTK.Oculus.Plugins.OculusApi.Mesh.html#XRTK_Oculus_Plugins_OculusApi_Mesh_Indices - commentId: F:XRTK.Oculus.Plugins.OculusApi.Mesh.Indices - fullName: XRTK.Oculus.Plugins.OculusApi.Mesh.Indices - nameWithType: OculusApi.Mesh.Indices -- uid: XRTK.Oculus.Plugins.OculusApi.Mesh.NumIndices - name: NumIndices - href: api/XRTK.Oculus.Plugins.OculusApi.Mesh.html#XRTK_Oculus_Plugins_OculusApi_Mesh_NumIndices - commentId: F:XRTK.Oculus.Plugins.OculusApi.Mesh.NumIndices - fullName: XRTK.Oculus.Plugins.OculusApi.Mesh.NumIndices - nameWithType: OculusApi.Mesh.NumIndices -- uid: XRTK.Oculus.Plugins.OculusApi.Mesh.NumVertices - name: NumVertices - href: api/XRTK.Oculus.Plugins.OculusApi.Mesh.html#XRTK_Oculus_Plugins_OculusApi_Mesh_NumVertices - commentId: F:XRTK.Oculus.Plugins.OculusApi.Mesh.NumVertices - fullName: XRTK.Oculus.Plugins.OculusApi.Mesh.NumVertices - nameWithType: OculusApi.Mesh.NumVertices -- uid: XRTK.Oculus.Plugins.OculusApi.Mesh.Type - name: Type - href: api/XRTK.Oculus.Plugins.OculusApi.Mesh.html#XRTK_Oculus_Plugins_OculusApi_Mesh_Type - commentId: F:XRTK.Oculus.Plugins.OculusApi.Mesh.Type - fullName: XRTK.Oculus.Plugins.OculusApi.Mesh.Type - nameWithType: OculusApi.Mesh.Type -- uid: XRTK.Oculus.Plugins.OculusApi.Mesh.VertexNormals - name: VertexNormals - href: api/XRTK.Oculus.Plugins.OculusApi.Mesh.html#XRTK_Oculus_Plugins_OculusApi_Mesh_VertexNormals - commentId: F:XRTK.Oculus.Plugins.OculusApi.Mesh.VertexNormals - fullName: XRTK.Oculus.Plugins.OculusApi.Mesh.VertexNormals - nameWithType: OculusApi.Mesh.VertexNormals -- uid: XRTK.Oculus.Plugins.OculusApi.Mesh.VertexPositions - name: VertexPositions - href: api/XRTK.Oculus.Plugins.OculusApi.Mesh.html#XRTK_Oculus_Plugins_OculusApi_Mesh_VertexPositions - commentId: F:XRTK.Oculus.Plugins.OculusApi.Mesh.VertexPositions - fullName: XRTK.Oculus.Plugins.OculusApi.Mesh.VertexPositions - nameWithType: OculusApi.Mesh.VertexPositions -- uid: XRTK.Oculus.Plugins.OculusApi.Mesh.VertexUV0 - name: VertexUV0 - href: api/XRTK.Oculus.Plugins.OculusApi.Mesh.html#XRTK_Oculus_Plugins_OculusApi_Mesh_VertexUV0 - commentId: F:XRTK.Oculus.Plugins.OculusApi.Mesh.VertexUV0 - fullName: XRTK.Oculus.Plugins.OculusApi.Mesh.VertexUV0 - nameWithType: OculusApi.Mesh.VertexUV0 -- uid: XRTK.Oculus.Plugins.OculusApi.MeshConstants - name: OculusApi.MeshConstants - href: api/XRTK.Oculus.Plugins.OculusApi.MeshConstants.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.MeshConstants - fullName: XRTK.Oculus.Plugins.OculusApi.MeshConstants - nameWithType: OculusApi.MeshConstants -- uid: XRTK.Oculus.Plugins.OculusApi.MeshConstants.MaxIndices - name: MaxIndices - href: api/XRTK.Oculus.Plugins.OculusApi.MeshConstants.html#XRTK_Oculus_Plugins_OculusApi_MeshConstants_MaxIndices - commentId: F:XRTK.Oculus.Plugins.OculusApi.MeshConstants.MaxIndices - fullName: XRTK.Oculus.Plugins.OculusApi.MeshConstants.MaxIndices - nameWithType: OculusApi.MeshConstants.MaxIndices -- uid: XRTK.Oculus.Plugins.OculusApi.MeshConstants.MaxVertices - name: MaxVertices - href: api/XRTK.Oculus.Plugins.OculusApi.MeshConstants.html#XRTK_Oculus_Plugins_OculusApi_MeshConstants_MaxVertices - commentId: F:XRTK.Oculus.Plugins.OculusApi.MeshConstants.MaxVertices - fullName: XRTK.Oculus.Plugins.OculusApi.MeshConstants.MaxVertices - nameWithType: OculusApi.MeshConstants.MaxVertices -- uid: XRTK.Oculus.Plugins.OculusApi.MeshType - name: OculusApi.MeshType - href: api/XRTK.Oculus.Plugins.OculusApi.MeshType.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.MeshType - fullName: XRTK.Oculus.Plugins.OculusApi.MeshType - nameWithType: OculusApi.MeshType -- uid: XRTK.Oculus.Plugins.OculusApi.MeshType.HandLeft - name: HandLeft - href: api/XRTK.Oculus.Plugins.OculusApi.MeshType.html#XRTK_Oculus_Plugins_OculusApi_MeshType_HandLeft - commentId: F:XRTK.Oculus.Plugins.OculusApi.MeshType.HandLeft - fullName: XRTK.Oculus.Plugins.OculusApi.MeshType.HandLeft - nameWithType: OculusApi.MeshType.HandLeft -- uid: XRTK.Oculus.Plugins.OculusApi.MeshType.HandRight - name: HandRight - href: api/XRTK.Oculus.Plugins.OculusApi.MeshType.html#XRTK_Oculus_Plugins_OculusApi_MeshType_HandRight - commentId: F:XRTK.Oculus.Plugins.OculusApi.MeshType.HandRight - fullName: XRTK.Oculus.Plugins.OculusApi.MeshType.HandRight - nameWithType: OculusApi.MeshType.HandRight -- uid: XRTK.Oculus.Plugins.OculusApi.MeshType.None - name: None - href: api/XRTK.Oculus.Plugins.OculusApi.MeshType.html#XRTK_Oculus_Plugins_OculusApi_MeshType_None - commentId: F:XRTK.Oculus.Plugins.OculusApi.MeshType.None - fullName: XRTK.Oculus.Plugins.OculusApi.MeshType.None - nameWithType: OculusApi.MeshType.None -- uid: XRTK.Oculus.Plugins.OculusApi.Node - name: OculusApi.Node - href: api/XRTK.Oculus.Plugins.OculusApi.Node.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.Node - fullName: XRTK.Oculus.Plugins.OculusApi.Node - nameWithType: OculusApi.Node -- uid: XRTK.Oculus.Plugins.OculusApi.Node.Count - name: Count - href: api/XRTK.Oculus.Plugins.OculusApi.Node.html#XRTK_Oculus_Plugins_OculusApi_Node_Count - commentId: F:XRTK.Oculus.Plugins.OculusApi.Node.Count - fullName: XRTK.Oculus.Plugins.OculusApi.Node.Count - nameWithType: OculusApi.Node.Count -- uid: XRTK.Oculus.Plugins.OculusApi.Node.DeviceObjectZero - name: DeviceObjectZero - href: api/XRTK.Oculus.Plugins.OculusApi.Node.html#XRTK_Oculus_Plugins_OculusApi_Node_DeviceObjectZero - commentId: F:XRTK.Oculus.Plugins.OculusApi.Node.DeviceObjectZero - fullName: XRTK.Oculus.Plugins.OculusApi.Node.DeviceObjectZero - nameWithType: OculusApi.Node.DeviceObjectZero -- uid: XRTK.Oculus.Plugins.OculusApi.Node.EyeCenter - name: EyeCenter - href: api/XRTK.Oculus.Plugins.OculusApi.Node.html#XRTK_Oculus_Plugins_OculusApi_Node_EyeCenter - commentId: F:XRTK.Oculus.Plugins.OculusApi.Node.EyeCenter - fullName: XRTK.Oculus.Plugins.OculusApi.Node.EyeCenter - nameWithType: OculusApi.Node.EyeCenter -- uid: XRTK.Oculus.Plugins.OculusApi.Node.EyeLeft - name: EyeLeft - href: api/XRTK.Oculus.Plugins.OculusApi.Node.html#XRTK_Oculus_Plugins_OculusApi_Node_EyeLeft - commentId: F:XRTK.Oculus.Plugins.OculusApi.Node.EyeLeft - fullName: XRTK.Oculus.Plugins.OculusApi.Node.EyeLeft - nameWithType: OculusApi.Node.EyeLeft -- uid: XRTK.Oculus.Plugins.OculusApi.Node.EyeRight - name: EyeRight - href: api/XRTK.Oculus.Plugins.OculusApi.Node.html#XRTK_Oculus_Plugins_OculusApi_Node_EyeRight - commentId: F:XRTK.Oculus.Plugins.OculusApi.Node.EyeRight - fullName: XRTK.Oculus.Plugins.OculusApi.Node.EyeRight - nameWithType: OculusApi.Node.EyeRight -- uid: XRTK.Oculus.Plugins.OculusApi.Node.HandLeft - name: HandLeft - href: api/XRTK.Oculus.Plugins.OculusApi.Node.html#XRTK_Oculus_Plugins_OculusApi_Node_HandLeft - commentId: F:XRTK.Oculus.Plugins.OculusApi.Node.HandLeft - fullName: XRTK.Oculus.Plugins.OculusApi.Node.HandLeft - nameWithType: OculusApi.Node.HandLeft -- uid: XRTK.Oculus.Plugins.OculusApi.Node.HandRight - name: HandRight - href: api/XRTK.Oculus.Plugins.OculusApi.Node.html#XRTK_Oculus_Plugins_OculusApi_Node_HandRight - commentId: F:XRTK.Oculus.Plugins.OculusApi.Node.HandRight - fullName: XRTK.Oculus.Plugins.OculusApi.Node.HandRight - nameWithType: OculusApi.Node.HandRight -- uid: XRTK.Oculus.Plugins.OculusApi.Node.Head - name: Head - href: api/XRTK.Oculus.Plugins.OculusApi.Node.html#XRTK_Oculus_Plugins_OculusApi_Node_Head - commentId: F:XRTK.Oculus.Plugins.OculusApi.Node.Head - fullName: XRTK.Oculus.Plugins.OculusApi.Node.Head - nameWithType: OculusApi.Node.Head -- uid: XRTK.Oculus.Plugins.OculusApi.Node.None - name: None - href: api/XRTK.Oculus.Plugins.OculusApi.Node.html#XRTK_Oculus_Plugins_OculusApi_Node_None - commentId: F:XRTK.Oculus.Plugins.OculusApi.Node.None - fullName: XRTK.Oculus.Plugins.OculusApi.Node.None - nameWithType: OculusApi.Node.None -- uid: XRTK.Oculus.Plugins.OculusApi.Node.TrackerOne - name: TrackerOne - href: api/XRTK.Oculus.Plugins.OculusApi.Node.html#XRTK_Oculus_Plugins_OculusApi_Node_TrackerOne - commentId: F:XRTK.Oculus.Plugins.OculusApi.Node.TrackerOne - fullName: XRTK.Oculus.Plugins.OculusApi.Node.TrackerOne - nameWithType: OculusApi.Node.TrackerOne -- uid: XRTK.Oculus.Plugins.OculusApi.Node.TrackerThree - name: TrackerThree - href: api/XRTK.Oculus.Plugins.OculusApi.Node.html#XRTK_Oculus_Plugins_OculusApi_Node_TrackerThree - commentId: F:XRTK.Oculus.Plugins.OculusApi.Node.TrackerThree - fullName: XRTK.Oculus.Plugins.OculusApi.Node.TrackerThree - nameWithType: OculusApi.Node.TrackerThree -- uid: XRTK.Oculus.Plugins.OculusApi.Node.TrackerTwo - name: TrackerTwo - href: api/XRTK.Oculus.Plugins.OculusApi.Node.html#XRTK_Oculus_Plugins_OculusApi_Node_TrackerTwo - commentId: F:XRTK.Oculus.Plugins.OculusApi.Node.TrackerTwo - fullName: XRTK.Oculus.Plugins.OculusApi.Node.TrackerTwo - nameWithType: OculusApi.Node.TrackerTwo -- uid: XRTK.Oculus.Plugins.OculusApi.Node.TrackerZero - name: TrackerZero - href: api/XRTK.Oculus.Plugins.OculusApi.Node.html#XRTK_Oculus_Plugins_OculusApi_Node_TrackerZero - commentId: F:XRTK.Oculus.Plugins.OculusApi.Node.TrackerZero - fullName: XRTK.Oculus.Plugins.OculusApi.Node.TrackerZero - nameWithType: OculusApi.Node.TrackerZero -- uid: XRTK.Oculus.Plugins.OculusApi.occlusionMesh - name: occlusionMesh - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_occlusionMesh - commentId: P:XRTK.Oculus.Plugins.OculusApi.occlusionMesh - fullName: XRTK.Oculus.Plugins.OculusApi.occlusionMesh - nameWithType: OculusApi.occlusionMesh -- uid: XRTK.Oculus.Plugins.OculusApi.occlusionMesh* - name: occlusionMesh - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_occlusionMesh_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.occlusionMesh - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.occlusionMesh - nameWithType: OculusApi.occlusionMesh -- uid: XRTK.Oculus.Plugins.OculusApi.OverrideExternalCameraFov(System.Int32,System.Boolean,XRTK.Oculus.Plugins.OculusApi.Fovf) - name: OverrideExternalCameraFov(Int32, Boolean, OculusApi.Fovf) - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_OverrideExternalCameraFov_System_Int32_System_Boolean_XRTK_Oculus_Plugins_OculusApi_Fovf_ - commentId: M:XRTK.Oculus.Plugins.OculusApi.OverrideExternalCameraFov(System.Int32,System.Boolean,XRTK.Oculus.Plugins.OculusApi.Fovf) - fullName: XRTK.Oculus.Plugins.OculusApi.OverrideExternalCameraFov(System.Int32, System.Boolean, XRTK.Oculus.Plugins.OculusApi.Fovf) - nameWithType: OculusApi.OverrideExternalCameraFov(Int32, Boolean, OculusApi.Fovf) -- uid: XRTK.Oculus.Plugins.OculusApi.OverrideExternalCameraFov* - name: OverrideExternalCameraFov - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_OverrideExternalCameraFov_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.OverrideExternalCameraFov - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.OverrideExternalCameraFov - nameWithType: OculusApi.OverrideExternalCameraFov -- uid: XRTK.Oculus.Plugins.OculusApi.OverrideExternalCameraStaticPose(System.Int32,System.Boolean,XRTK.Oculus.Plugins.OculusApi.Posef) - name: OverrideExternalCameraStaticPose(Int32, Boolean, OculusApi.Posef) - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_OverrideExternalCameraStaticPose_System_Int32_System_Boolean_XRTK_Oculus_Plugins_OculusApi_Posef_ - commentId: M:XRTK.Oculus.Plugins.OculusApi.OverrideExternalCameraStaticPose(System.Int32,System.Boolean,XRTK.Oculus.Plugins.OculusApi.Posef) - fullName: XRTK.Oculus.Plugins.OculusApi.OverrideExternalCameraStaticPose(System.Int32, System.Boolean, XRTK.Oculus.Plugins.OculusApi.Posef) - nameWithType: OculusApi.OverrideExternalCameraStaticPose(Int32, Boolean, OculusApi.Posef) -- uid: XRTK.Oculus.Plugins.OculusApi.OverrideExternalCameraStaticPose* - name: OverrideExternalCameraStaticPose - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_OverrideExternalCameraStaticPose_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.OverrideExternalCameraStaticPose - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.OverrideExternalCameraStaticPose - nameWithType: OculusApi.OverrideExternalCameraStaticPose -- uid: XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer - name: OculusApi.OVRNativeBuffer - href: api/XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer - fullName: XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer - nameWithType: OculusApi.OVRNativeBuffer -- uid: XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer.#ctor(System.Int32) - name: OVRNativeBuffer(Int32) - href: api/XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer.html#XRTK_Oculus_Plugins_OculusApi_OVRNativeBuffer__ctor_System_Int32_ - commentId: M:XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer.#ctor(System.Int32) - fullName: XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer.OVRNativeBuffer(System.Int32) - nameWithType: OculusApi.OVRNativeBuffer.OVRNativeBuffer(Int32) -- uid: XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer.#ctor* - name: OVRNativeBuffer - href: api/XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer.html#XRTK_Oculus_Plugins_OculusApi_OVRNativeBuffer__ctor_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer.#ctor - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer.OVRNativeBuffer - nameWithType: OculusApi.OVRNativeBuffer.OVRNativeBuffer -- uid: XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer.Dispose - name: Dispose() - href: api/XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer.html#XRTK_Oculus_Plugins_OculusApi_OVRNativeBuffer_Dispose - commentId: M:XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer.Dispose - fullName: XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer.Dispose() - nameWithType: OculusApi.OVRNativeBuffer.Dispose() -- uid: XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer.Dispose* - name: Dispose - href: api/XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer.html#XRTK_Oculus_Plugins_OculusApi_OVRNativeBuffer_Dispose_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer.Dispose - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer.Dispose - nameWithType: OculusApi.OVRNativeBuffer.Dispose -- uid: XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer.Finalize - name: Finalize() - href: api/XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer.html#XRTK_Oculus_Plugins_OculusApi_OVRNativeBuffer_Finalize - commentId: M:XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer.Finalize - fullName: XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer.Finalize() - nameWithType: OculusApi.OVRNativeBuffer.Finalize() -- uid: XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer.Finalize* - name: Finalize - href: api/XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer.html#XRTK_Oculus_Plugins_OculusApi_OVRNativeBuffer_Finalize_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer.Finalize - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer.Finalize - nameWithType: OculusApi.OVRNativeBuffer.Finalize -- uid: XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer.GetCapacity - name: GetCapacity() - href: api/XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer.html#XRTK_Oculus_Plugins_OculusApi_OVRNativeBuffer_GetCapacity - commentId: M:XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer.GetCapacity - fullName: XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer.GetCapacity() - nameWithType: OculusApi.OVRNativeBuffer.GetCapacity() -- uid: XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer.GetCapacity* - name: GetCapacity - href: api/XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer.html#XRTK_Oculus_Plugins_OculusApi_OVRNativeBuffer_GetCapacity_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer.GetCapacity - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer.GetCapacity - nameWithType: OculusApi.OVRNativeBuffer.GetCapacity -- uid: XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer.GetPointer(System.Int32) - name: GetPointer(Int32) - href: api/XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer.html#XRTK_Oculus_Plugins_OculusApi_OVRNativeBuffer_GetPointer_System_Int32_ - commentId: M:XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer.GetPointer(System.Int32) - fullName: XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer.GetPointer(System.Int32) - nameWithType: OculusApi.OVRNativeBuffer.GetPointer(Int32) -- uid: XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer.GetPointer* - name: GetPointer - href: api/XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer.html#XRTK_Oculus_Plugins_OculusApi_OVRNativeBuffer_GetPointer_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer.GetPointer - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer.GetPointer - nameWithType: OculusApi.OVRNativeBuffer.GetPointer -- uid: XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer.Reset(System.Int32) - name: Reset(Int32) - href: api/XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer.html#XRTK_Oculus_Plugins_OculusApi_OVRNativeBuffer_Reset_System_Int32_ - commentId: M:XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer.Reset(System.Int32) - fullName: XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer.Reset(System.Int32) - nameWithType: OculusApi.OVRNativeBuffer.Reset(Int32) -- uid: XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer.Reset* - name: Reset - href: api/XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer.html#XRTK_Oculus_Plugins_OculusApi_OVRNativeBuffer_Reset_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer.Reset - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.OVRNativeBuffer.Reset - nameWithType: OculusApi.OVRNativeBuffer.Reset -- uid: XRTK.Oculus.Plugins.OculusApi.PollEvent(XRTK.Oculus.Plugins.OculusApi.EventDataBuffer@) - name: PollEvent(ref OculusApi.EventDataBuffer) - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_PollEvent_XRTK_Oculus_Plugins_OculusApi_EventDataBuffer__ - commentId: M:XRTK.Oculus.Plugins.OculusApi.PollEvent(XRTK.Oculus.Plugins.OculusApi.EventDataBuffer@) - name.vb: PollEvent(ByRef OculusApi.EventDataBuffer) - fullName: XRTK.Oculus.Plugins.OculusApi.PollEvent(ref XRTK.Oculus.Plugins.OculusApi.EventDataBuffer) - fullName.vb: XRTK.Oculus.Plugins.OculusApi.PollEvent(ByRef XRTK.Oculus.Plugins.OculusApi.EventDataBuffer) - nameWithType: OculusApi.PollEvent(ref OculusApi.EventDataBuffer) - nameWithType.vb: OculusApi.PollEvent(ByRef OculusApi.EventDataBuffer) -- uid: XRTK.Oculus.Plugins.OculusApi.PollEvent* - name: PollEvent - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_PollEvent_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.PollEvent - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.PollEvent - nameWithType: OculusApi.PollEvent -- uid: XRTK.Oculus.Plugins.OculusApi.Posef - name: OculusApi.Posef - href: api/XRTK.Oculus.Plugins.OculusApi.Posef.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.Posef - fullName: XRTK.Oculus.Plugins.OculusApi.Posef - nameWithType: OculusApi.Posef -- uid: XRTK.Oculus.Plugins.OculusApi.Posef.identity - name: identity - href: api/XRTK.Oculus.Plugins.OculusApi.Posef.html#XRTK_Oculus_Plugins_OculusApi_Posef_identity - commentId: F:XRTK.Oculus.Plugins.OculusApi.Posef.identity - fullName: XRTK.Oculus.Plugins.OculusApi.Posef.identity - nameWithType: OculusApi.Posef.identity -- uid: XRTK.Oculus.Plugins.OculusApi.Posef.op_Implicit(XRTK.Definitions.Utilities.MixedRealityPose)~XRTK.Oculus.Plugins.OculusApi.Posef - name: Implicit(MixedRealityPose to OculusApi.Posef) - href: api/XRTK.Oculus.Plugins.OculusApi.Posef.html#XRTK_Oculus_Plugins_OculusApi_Posef_op_Implicit_XRTK_Definitions_Utilities_MixedRealityPose__XRTK_Oculus_Plugins_OculusApi_Posef - commentId: M:XRTK.Oculus.Plugins.OculusApi.Posef.op_Implicit(XRTK.Definitions.Utilities.MixedRealityPose)~XRTK.Oculus.Plugins.OculusApi.Posef - name.vb: Widening(MixedRealityPose to OculusApi.Posef) - fullName: XRTK.Oculus.Plugins.OculusApi.Posef.Implicit(XRTK.Definitions.Utilities.MixedRealityPose to XRTK.Oculus.Plugins.OculusApi.Posef) - fullName.vb: XRTK.Oculus.Plugins.OculusApi.Posef.Widening(XRTK.Definitions.Utilities.MixedRealityPose to XRTK.Oculus.Plugins.OculusApi.Posef) - nameWithType: OculusApi.Posef.Implicit(MixedRealityPose to OculusApi.Posef) - nameWithType.vb: OculusApi.Posef.Widening(MixedRealityPose to OculusApi.Posef) -- uid: XRTK.Oculus.Plugins.OculusApi.Posef.op_Implicit(XRTK.Oculus.Plugins.OculusApi.Posef)~XRTK.Definitions.Utilities.MixedRealityPose - name: Implicit(OculusApi.Posef to MixedRealityPose) - href: api/XRTK.Oculus.Plugins.OculusApi.Posef.html#XRTK_Oculus_Plugins_OculusApi_Posef_op_Implicit_XRTK_Oculus_Plugins_OculusApi_Posef__XRTK_Definitions_Utilities_MixedRealityPose - commentId: M:XRTK.Oculus.Plugins.OculusApi.Posef.op_Implicit(XRTK.Oculus.Plugins.OculusApi.Posef)~XRTK.Definitions.Utilities.MixedRealityPose - name.vb: Widening(OculusApi.Posef to MixedRealityPose) - fullName: XRTK.Oculus.Plugins.OculusApi.Posef.Implicit(XRTK.Oculus.Plugins.OculusApi.Posef to XRTK.Definitions.Utilities.MixedRealityPose) - fullName.vb: XRTK.Oculus.Plugins.OculusApi.Posef.Widening(XRTK.Oculus.Plugins.OculusApi.Posef to XRTK.Definitions.Utilities.MixedRealityPose) - nameWithType: OculusApi.Posef.Implicit(OculusApi.Posef to MixedRealityPose) - nameWithType.vb: OculusApi.Posef.Widening(OculusApi.Posef to MixedRealityPose) -- uid: XRTK.Oculus.Plugins.OculusApi.Posef.op_Implicit* - name: Implicit - href: api/XRTK.Oculus.Plugins.OculusApi.Posef.html#XRTK_Oculus_Plugins_OculusApi_Posef_op_Implicit_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.Posef.op_Implicit - isSpec: "True" - name.vb: Widening - fullName: XRTK.Oculus.Plugins.OculusApi.Posef.Implicit - fullName.vb: XRTK.Oculus.Plugins.OculusApi.Posef.Widening - nameWithType: OculusApi.Posef.Implicit - nameWithType.vb: OculusApi.Posef.Widening -- uid: XRTK.Oculus.Plugins.OculusApi.Posef.Orientation - name: Orientation - href: api/XRTK.Oculus.Plugins.OculusApi.Posef.html#XRTK_Oculus_Plugins_OculusApi_Posef_Orientation - commentId: F:XRTK.Oculus.Plugins.OculusApi.Posef.Orientation - fullName: XRTK.Oculus.Plugins.OculusApi.Posef.Orientation - nameWithType: OculusApi.Posef.Orientation -- uid: XRTK.Oculus.Plugins.OculusApi.Posef.Position - name: Position - href: api/XRTK.Oculus.Plugins.OculusApi.Posef.html#XRTK_Oculus_Plugins_OculusApi_Posef_Position - commentId: F:XRTK.Oculus.Plugins.OculusApi.Posef.Position - fullName: XRTK.Oculus.Plugins.OculusApi.Posef.Position - nameWithType: OculusApi.Posef.Position -- uid: XRTK.Oculus.Plugins.OculusApi.Posef.ToMixedRealityPoseFlippedQuaternionXY(System.Boolean) - name: ToMixedRealityPoseFlippedQuaternionXY(Boolean) - href: api/XRTK.Oculus.Plugins.OculusApi.Posef.html#XRTK_Oculus_Plugins_OculusApi_Posef_ToMixedRealityPoseFlippedQuaternionXY_System_Boolean_ - commentId: M:XRTK.Oculus.Plugins.OculusApi.Posef.ToMixedRealityPoseFlippedQuaternionXY(System.Boolean) - fullName: XRTK.Oculus.Plugins.OculusApi.Posef.ToMixedRealityPoseFlippedQuaternionXY(System.Boolean) - nameWithType: OculusApi.Posef.ToMixedRealityPoseFlippedQuaternionXY(Boolean) -- uid: XRTK.Oculus.Plugins.OculusApi.Posef.ToMixedRealityPoseFlippedQuaternionXY* - name: ToMixedRealityPoseFlippedQuaternionXY - href: api/XRTK.Oculus.Plugins.OculusApi.Posef.html#XRTK_Oculus_Plugins_OculusApi_Posef_ToMixedRealityPoseFlippedQuaternionXY_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.Posef.ToMixedRealityPoseFlippedQuaternionXY - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.Posef.ToMixedRealityPoseFlippedQuaternionXY - nameWithType: OculusApi.Posef.ToMixedRealityPoseFlippedQuaternionXY -- uid: XRTK.Oculus.Plugins.OculusApi.Posef.ToString - name: ToString() - href: api/XRTK.Oculus.Plugins.OculusApi.Posef.html#XRTK_Oculus_Plugins_OculusApi_Posef_ToString - commentId: M:XRTK.Oculus.Plugins.OculusApi.Posef.ToString - fullName: XRTK.Oculus.Plugins.OculusApi.Posef.ToString() - nameWithType: OculusApi.Posef.ToString() -- uid: XRTK.Oculus.Plugins.OculusApi.Posef.ToString* - name: ToString - href: api/XRTK.Oculus.Plugins.OculusApi.Posef.html#XRTK_Oculus_Plugins_OculusApi_Posef_ToString_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.Posef.ToString - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.Posef.ToString - nameWithType: OculusApi.Posef.ToString -- uid: XRTK.Oculus.Plugins.OculusApi.PoseStatef - name: OculusApi.PoseStatef - href: api/XRTK.Oculus.Plugins.OculusApi.PoseStatef.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.PoseStatef - fullName: XRTK.Oculus.Plugins.OculusApi.PoseStatef - nameWithType: OculusApi.PoseStatef -- uid: XRTK.Oculus.Plugins.OculusApi.PoseStatef.Acceleration - name: Acceleration - href: api/XRTK.Oculus.Plugins.OculusApi.PoseStatef.html#XRTK_Oculus_Plugins_OculusApi_PoseStatef_Acceleration - commentId: F:XRTK.Oculus.Plugins.OculusApi.PoseStatef.Acceleration - fullName: XRTK.Oculus.Plugins.OculusApi.PoseStatef.Acceleration - nameWithType: OculusApi.PoseStatef.Acceleration -- uid: XRTK.Oculus.Plugins.OculusApi.PoseStatef.AngularAcceleration - name: AngularAcceleration - href: api/XRTK.Oculus.Plugins.OculusApi.PoseStatef.html#XRTK_Oculus_Plugins_OculusApi_PoseStatef_AngularAcceleration - commentId: F:XRTK.Oculus.Plugins.OculusApi.PoseStatef.AngularAcceleration - fullName: XRTK.Oculus.Plugins.OculusApi.PoseStatef.AngularAcceleration - nameWithType: OculusApi.PoseStatef.AngularAcceleration -- uid: XRTK.Oculus.Plugins.OculusApi.PoseStatef.AngularVelocity - name: AngularVelocity - href: api/XRTK.Oculus.Plugins.OculusApi.PoseStatef.html#XRTK_Oculus_Plugins_OculusApi_PoseStatef_AngularVelocity - commentId: F:XRTK.Oculus.Plugins.OculusApi.PoseStatef.AngularVelocity - fullName: XRTK.Oculus.Plugins.OculusApi.PoseStatef.AngularVelocity - nameWithType: OculusApi.PoseStatef.AngularVelocity -- uid: XRTK.Oculus.Plugins.OculusApi.PoseStatef.identity - name: identity - href: api/XRTK.Oculus.Plugins.OculusApi.PoseStatef.html#XRTK_Oculus_Plugins_OculusApi_PoseStatef_identity - commentId: F:XRTK.Oculus.Plugins.OculusApi.PoseStatef.identity - fullName: XRTK.Oculus.Plugins.OculusApi.PoseStatef.identity - nameWithType: OculusApi.PoseStatef.identity -- uid: XRTK.Oculus.Plugins.OculusApi.PoseStatef.Pose - name: Pose - href: api/XRTK.Oculus.Plugins.OculusApi.PoseStatef.html#XRTK_Oculus_Plugins_OculusApi_PoseStatef_Pose - commentId: F:XRTK.Oculus.Plugins.OculusApi.PoseStatef.Pose - fullName: XRTK.Oculus.Plugins.OculusApi.PoseStatef.Pose - nameWithType: OculusApi.PoseStatef.Pose -- uid: XRTK.Oculus.Plugins.OculusApi.PoseStatef.Time - name: Time - href: api/XRTK.Oculus.Plugins.OculusApi.PoseStatef.html#XRTK_Oculus_Plugins_OculusApi_PoseStatef_Time - commentId: F:XRTK.Oculus.Plugins.OculusApi.PoseStatef.Time - fullName: XRTK.Oculus.Plugins.OculusApi.PoseStatef.Time - nameWithType: OculusApi.PoseStatef.Time -- uid: XRTK.Oculus.Plugins.OculusApi.PoseStatef.Velocity - name: Velocity - href: api/XRTK.Oculus.Plugins.OculusApi.PoseStatef.html#XRTK_Oculus_Plugins_OculusApi_PoseStatef_Velocity - commentId: F:XRTK.Oculus.Plugins.OculusApi.PoseStatef.Velocity - fullName: XRTK.Oculus.Plugins.OculusApi.PoseStatef.Velocity - nameWithType: OculusApi.PoseStatef.Velocity -- uid: XRTK.Oculus.Plugins.OculusApi.Quatf - name: OculusApi.Quatf - href: api/XRTK.Oculus.Plugins.OculusApi.Quatf.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.Quatf - fullName: XRTK.Oculus.Plugins.OculusApi.Quatf - nameWithType: OculusApi.Quatf -- uid: XRTK.Oculus.Plugins.OculusApi.Quatf.identity - name: identity - href: api/XRTK.Oculus.Plugins.OculusApi.Quatf.html#XRTK_Oculus_Plugins_OculusApi_Quatf_identity - commentId: F:XRTK.Oculus.Plugins.OculusApi.Quatf.identity - fullName: XRTK.Oculus.Plugins.OculusApi.Quatf.identity - nameWithType: OculusApi.Quatf.identity -- uid: XRTK.Oculus.Plugins.OculusApi.Quatf.op_Implicit(UnityEngine.Quaternion)~XRTK.Oculus.Plugins.OculusApi.Quatf - name: Implicit(Quaternion to OculusApi.Quatf) - href: api/XRTK.Oculus.Plugins.OculusApi.Quatf.html#XRTK_Oculus_Plugins_OculusApi_Quatf_op_Implicit_UnityEngine_Quaternion__XRTK_Oculus_Plugins_OculusApi_Quatf - commentId: M:XRTK.Oculus.Plugins.OculusApi.Quatf.op_Implicit(UnityEngine.Quaternion)~XRTK.Oculus.Plugins.OculusApi.Quatf - name.vb: Widening(Quaternion to OculusApi.Quatf) - fullName: XRTK.Oculus.Plugins.OculusApi.Quatf.Implicit(UnityEngine.Quaternion to XRTK.Oculus.Plugins.OculusApi.Quatf) - fullName.vb: XRTK.Oculus.Plugins.OculusApi.Quatf.Widening(UnityEngine.Quaternion to XRTK.Oculus.Plugins.OculusApi.Quatf) - nameWithType: OculusApi.Quatf.Implicit(Quaternion to OculusApi.Quatf) - nameWithType.vb: OculusApi.Quatf.Widening(Quaternion to OculusApi.Quatf) -- uid: XRTK.Oculus.Plugins.OculusApi.Quatf.op_Implicit(XRTK.Oculus.Plugins.OculusApi.Quatf)~UnityEngine.Quaternion - name: Implicit(OculusApi.Quatf to Quaternion) - href: api/XRTK.Oculus.Plugins.OculusApi.Quatf.html#XRTK_Oculus_Plugins_OculusApi_Quatf_op_Implicit_XRTK_Oculus_Plugins_OculusApi_Quatf__UnityEngine_Quaternion - commentId: M:XRTK.Oculus.Plugins.OculusApi.Quatf.op_Implicit(XRTK.Oculus.Plugins.OculusApi.Quatf)~UnityEngine.Quaternion - name.vb: Widening(OculusApi.Quatf to Quaternion) - fullName: XRTK.Oculus.Plugins.OculusApi.Quatf.Implicit(XRTK.Oculus.Plugins.OculusApi.Quatf to UnityEngine.Quaternion) - fullName.vb: XRTK.Oculus.Plugins.OculusApi.Quatf.Widening(XRTK.Oculus.Plugins.OculusApi.Quatf to UnityEngine.Quaternion) - nameWithType: OculusApi.Quatf.Implicit(OculusApi.Quatf to Quaternion) - nameWithType.vb: OculusApi.Quatf.Widening(OculusApi.Quatf to Quaternion) -- uid: XRTK.Oculus.Plugins.OculusApi.Quatf.op_Implicit* - name: Implicit - href: api/XRTK.Oculus.Plugins.OculusApi.Quatf.html#XRTK_Oculus_Plugins_OculusApi_Quatf_op_Implicit_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.Quatf.op_Implicit - isSpec: "True" - name.vb: Widening - fullName: XRTK.Oculus.Plugins.OculusApi.Quatf.Implicit - fullName.vb: XRTK.Oculus.Plugins.OculusApi.Quatf.Widening - nameWithType: OculusApi.Quatf.Implicit - nameWithType.vb: OculusApi.Quatf.Widening -- uid: XRTK.Oculus.Plugins.OculusApi.Quatf.ToQuaternionFlippedXY - name: ToQuaternionFlippedXY() - href: api/XRTK.Oculus.Plugins.OculusApi.Quatf.html#XRTK_Oculus_Plugins_OculusApi_Quatf_ToQuaternionFlippedXY - commentId: M:XRTK.Oculus.Plugins.OculusApi.Quatf.ToQuaternionFlippedXY - fullName: XRTK.Oculus.Plugins.OculusApi.Quatf.ToQuaternionFlippedXY() - nameWithType: OculusApi.Quatf.ToQuaternionFlippedXY() -- uid: XRTK.Oculus.Plugins.OculusApi.Quatf.ToQuaternionFlippedXY* - name: ToQuaternionFlippedXY - href: api/XRTK.Oculus.Plugins.OculusApi.Quatf.html#XRTK_Oculus_Plugins_OculusApi_Quatf_ToQuaternionFlippedXY_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.Quatf.ToQuaternionFlippedXY - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.Quatf.ToQuaternionFlippedXY - nameWithType: OculusApi.Quatf.ToQuaternionFlippedXY -- uid: XRTK.Oculus.Plugins.OculusApi.Quatf.ToString - name: ToString() - href: api/XRTK.Oculus.Plugins.OculusApi.Quatf.html#XRTK_Oculus_Plugins_OculusApi_Quatf_ToString - commentId: M:XRTK.Oculus.Plugins.OculusApi.Quatf.ToString - fullName: XRTK.Oculus.Plugins.OculusApi.Quatf.ToString() - nameWithType: OculusApi.Quatf.ToString() -- uid: XRTK.Oculus.Plugins.OculusApi.Quatf.ToString* - name: ToString - href: api/XRTK.Oculus.Plugins.OculusApi.Quatf.html#XRTK_Oculus_Plugins_OculusApi_Quatf_ToString_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.Quatf.ToString - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.Quatf.ToString - nameWithType: OculusApi.Quatf.ToString -- uid: XRTK.Oculus.Plugins.OculusApi.Quatf.w - name: w - href: api/XRTK.Oculus.Plugins.OculusApi.Quatf.html#XRTK_Oculus_Plugins_OculusApi_Quatf_w - commentId: F:XRTK.Oculus.Plugins.OculusApi.Quatf.w - fullName: XRTK.Oculus.Plugins.OculusApi.Quatf.w - nameWithType: OculusApi.Quatf.w -- uid: XRTK.Oculus.Plugins.OculusApi.Quatf.x - name: x - href: api/XRTK.Oculus.Plugins.OculusApi.Quatf.html#XRTK_Oculus_Plugins_OculusApi_Quatf_x - commentId: F:XRTK.Oculus.Plugins.OculusApi.Quatf.x - fullName: XRTK.Oculus.Plugins.OculusApi.Quatf.x - nameWithType: OculusApi.Quatf.x -- uid: XRTK.Oculus.Plugins.OculusApi.Quatf.y - name: y - href: api/XRTK.Oculus.Plugins.OculusApi.Quatf.html#XRTK_Oculus_Plugins_OculusApi_Quatf_y - commentId: F:XRTK.Oculus.Plugins.OculusApi.Quatf.y - fullName: XRTK.Oculus.Plugins.OculusApi.Quatf.y - nameWithType: OculusApi.Quatf.y -- uid: XRTK.Oculus.Plugins.OculusApi.Quatf.z - name: z - href: api/XRTK.Oculus.Plugins.OculusApi.Quatf.html#XRTK_Oculus_Plugins_OculusApi_Quatf_z - commentId: F:XRTK.Oculus.Plugins.OculusApi.Quatf.z - fullName: XRTK.Oculus.Plugins.OculusApi.Quatf.z - nameWithType: OculusApi.Quatf.z -- uid: XRTK.Oculus.Plugins.OculusApi.RawAxis1D - name: OculusApi.RawAxis1D - href: api/XRTK.Oculus.Plugins.OculusApi.RawAxis1D.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.RawAxis1D - fullName: XRTK.Oculus.Plugins.OculusApi.RawAxis1D - nameWithType: OculusApi.RawAxis1D -- uid: XRTK.Oculus.Plugins.OculusApi.RawAxis1D.Any - name: Any - href: api/XRTK.Oculus.Plugins.OculusApi.RawAxis1D.html#XRTK_Oculus_Plugins_OculusApi_RawAxis1D_Any - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawAxis1D.Any - fullName: XRTK.Oculus.Plugins.OculusApi.RawAxis1D.Any - nameWithType: OculusApi.RawAxis1D.Any -- uid: XRTK.Oculus.Plugins.OculusApi.RawAxis1D.LHandTrigger - name: LHandTrigger - href: api/XRTK.Oculus.Plugins.OculusApi.RawAxis1D.html#XRTK_Oculus_Plugins_OculusApi_RawAxis1D_LHandTrigger - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawAxis1D.LHandTrigger - fullName: XRTK.Oculus.Plugins.OculusApi.RawAxis1D.LHandTrigger - nameWithType: OculusApi.RawAxis1D.LHandTrigger -- uid: XRTK.Oculus.Plugins.OculusApi.RawAxis1D.LIndexTrigger - name: LIndexTrigger - href: api/XRTK.Oculus.Plugins.OculusApi.RawAxis1D.html#XRTK_Oculus_Plugins_OculusApi_RawAxis1D_LIndexTrigger - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawAxis1D.LIndexTrigger - fullName: XRTK.Oculus.Plugins.OculusApi.RawAxis1D.LIndexTrigger - nameWithType: OculusApi.RawAxis1D.LIndexTrigger -- uid: XRTK.Oculus.Plugins.OculusApi.RawAxis1D.None - name: None - href: api/XRTK.Oculus.Plugins.OculusApi.RawAxis1D.html#XRTK_Oculus_Plugins_OculusApi_RawAxis1D_None - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawAxis1D.None - fullName: XRTK.Oculus.Plugins.OculusApi.RawAxis1D.None - nameWithType: OculusApi.RawAxis1D.None -- uid: XRTK.Oculus.Plugins.OculusApi.RawAxis1D.RHandTrigger - name: RHandTrigger - href: api/XRTK.Oculus.Plugins.OculusApi.RawAxis1D.html#XRTK_Oculus_Plugins_OculusApi_RawAxis1D_RHandTrigger - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawAxis1D.RHandTrigger - fullName: XRTK.Oculus.Plugins.OculusApi.RawAxis1D.RHandTrigger - nameWithType: OculusApi.RawAxis1D.RHandTrigger -- uid: XRTK.Oculus.Plugins.OculusApi.RawAxis1D.RIndexTrigger - name: RIndexTrigger - href: api/XRTK.Oculus.Plugins.OculusApi.RawAxis1D.html#XRTK_Oculus_Plugins_OculusApi_RawAxis1D_RIndexTrigger - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawAxis1D.RIndexTrigger - fullName: XRTK.Oculus.Plugins.OculusApi.RawAxis1D.RIndexTrigger - nameWithType: OculusApi.RawAxis1D.RIndexTrigger -- uid: XRTK.Oculus.Plugins.OculusApi.RawAxis2D - name: OculusApi.RawAxis2D - href: api/XRTK.Oculus.Plugins.OculusApi.RawAxis2D.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.RawAxis2D - fullName: XRTK.Oculus.Plugins.OculusApi.RawAxis2D - nameWithType: OculusApi.RawAxis2D -- uid: XRTK.Oculus.Plugins.OculusApi.RawAxis2D.Any - name: Any - href: api/XRTK.Oculus.Plugins.OculusApi.RawAxis2D.html#XRTK_Oculus_Plugins_OculusApi_RawAxis2D_Any - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawAxis2D.Any - fullName: XRTK.Oculus.Plugins.OculusApi.RawAxis2D.Any - nameWithType: OculusApi.RawAxis2D.Any -- uid: XRTK.Oculus.Plugins.OculusApi.RawAxis2D.LThumbstick - name: LThumbstick - href: api/XRTK.Oculus.Plugins.OculusApi.RawAxis2D.html#XRTK_Oculus_Plugins_OculusApi_RawAxis2D_LThumbstick - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawAxis2D.LThumbstick - fullName: XRTK.Oculus.Plugins.OculusApi.RawAxis2D.LThumbstick - nameWithType: OculusApi.RawAxis2D.LThumbstick -- uid: XRTK.Oculus.Plugins.OculusApi.RawAxis2D.LTouchpad - name: LTouchpad - href: api/XRTK.Oculus.Plugins.OculusApi.RawAxis2D.html#XRTK_Oculus_Plugins_OculusApi_RawAxis2D_LTouchpad - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawAxis2D.LTouchpad - fullName: XRTK.Oculus.Plugins.OculusApi.RawAxis2D.LTouchpad - nameWithType: OculusApi.RawAxis2D.LTouchpad -- uid: XRTK.Oculus.Plugins.OculusApi.RawAxis2D.None - name: None - href: api/XRTK.Oculus.Plugins.OculusApi.RawAxis2D.html#XRTK_Oculus_Plugins_OculusApi_RawAxis2D_None - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawAxis2D.None - fullName: XRTK.Oculus.Plugins.OculusApi.RawAxis2D.None - nameWithType: OculusApi.RawAxis2D.None -- uid: XRTK.Oculus.Plugins.OculusApi.RawAxis2D.RThumbstick - name: RThumbstick - href: api/XRTK.Oculus.Plugins.OculusApi.RawAxis2D.html#XRTK_Oculus_Plugins_OculusApi_RawAxis2D_RThumbstick - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawAxis2D.RThumbstick - fullName: XRTK.Oculus.Plugins.OculusApi.RawAxis2D.RThumbstick - nameWithType: OculusApi.RawAxis2D.RThumbstick -- uid: XRTK.Oculus.Plugins.OculusApi.RawAxis2D.RTouchpad - name: RTouchpad - href: api/XRTK.Oculus.Plugins.OculusApi.RawAxis2D.html#XRTK_Oculus_Plugins_OculusApi_RawAxis2D_RTouchpad - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawAxis2D.RTouchpad - fullName: XRTK.Oculus.Plugins.OculusApi.RawAxis2D.RTouchpad - nameWithType: OculusApi.RawAxis2D.RTouchpad -- uid: XRTK.Oculus.Plugins.OculusApi.RawButton - name: OculusApi.RawButton - href: api/XRTK.Oculus.Plugins.OculusApi.RawButton.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.RawButton - fullName: XRTK.Oculus.Plugins.OculusApi.RawButton - nameWithType: OculusApi.RawButton -- uid: XRTK.Oculus.Plugins.OculusApi.RawButton.A - name: A - href: api/XRTK.Oculus.Plugins.OculusApi.RawButton.html#XRTK_Oculus_Plugins_OculusApi_RawButton_A - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawButton.A - fullName: XRTK.Oculus.Plugins.OculusApi.RawButton.A - nameWithType: OculusApi.RawButton.A -- uid: XRTK.Oculus.Plugins.OculusApi.RawButton.Any - name: Any - href: api/XRTK.Oculus.Plugins.OculusApi.RawButton.html#XRTK_Oculus_Plugins_OculusApi_RawButton_Any - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawButton.Any - fullName: XRTK.Oculus.Plugins.OculusApi.RawButton.Any - nameWithType: OculusApi.RawButton.Any -- uid: XRTK.Oculus.Plugins.OculusApi.RawButton.B - name: B - href: api/XRTK.Oculus.Plugins.OculusApi.RawButton.html#XRTK_Oculus_Plugins_OculusApi_RawButton_B - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawButton.B - fullName: XRTK.Oculus.Plugins.OculusApi.RawButton.B - nameWithType: OculusApi.RawButton.B -- uid: XRTK.Oculus.Plugins.OculusApi.RawButton.Back - name: Back - href: api/XRTK.Oculus.Plugins.OculusApi.RawButton.html#XRTK_Oculus_Plugins_OculusApi_RawButton_Back - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawButton.Back - fullName: XRTK.Oculus.Plugins.OculusApi.RawButton.Back - nameWithType: OculusApi.RawButton.Back -- uid: XRTK.Oculus.Plugins.OculusApi.RawButton.DpadDown - name: DpadDown - href: api/XRTK.Oculus.Plugins.OculusApi.RawButton.html#XRTK_Oculus_Plugins_OculusApi_RawButton_DpadDown - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawButton.DpadDown - fullName: XRTK.Oculus.Plugins.OculusApi.RawButton.DpadDown - nameWithType: OculusApi.RawButton.DpadDown -- uid: XRTK.Oculus.Plugins.OculusApi.RawButton.DpadLeft - name: DpadLeft - href: api/XRTK.Oculus.Plugins.OculusApi.RawButton.html#XRTK_Oculus_Plugins_OculusApi_RawButton_DpadLeft - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawButton.DpadLeft - fullName: XRTK.Oculus.Plugins.OculusApi.RawButton.DpadLeft - nameWithType: OculusApi.RawButton.DpadLeft -- uid: XRTK.Oculus.Plugins.OculusApi.RawButton.DpadRight - name: DpadRight - href: api/XRTK.Oculus.Plugins.OculusApi.RawButton.html#XRTK_Oculus_Plugins_OculusApi_RawButton_DpadRight - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawButton.DpadRight - fullName: XRTK.Oculus.Plugins.OculusApi.RawButton.DpadRight - nameWithType: OculusApi.RawButton.DpadRight -- uid: XRTK.Oculus.Plugins.OculusApi.RawButton.DpadUp - name: DpadUp - href: api/XRTK.Oculus.Plugins.OculusApi.RawButton.html#XRTK_Oculus_Plugins_OculusApi_RawButton_DpadUp - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawButton.DpadUp - fullName: XRTK.Oculus.Plugins.OculusApi.RawButton.DpadUp - nameWithType: OculusApi.RawButton.DpadUp -- uid: XRTK.Oculus.Plugins.OculusApi.RawButton.LHandTrigger - name: LHandTrigger - href: api/XRTK.Oculus.Plugins.OculusApi.RawButton.html#XRTK_Oculus_Plugins_OculusApi_RawButton_LHandTrigger - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawButton.LHandTrigger - fullName: XRTK.Oculus.Plugins.OculusApi.RawButton.LHandTrigger - nameWithType: OculusApi.RawButton.LHandTrigger -- uid: XRTK.Oculus.Plugins.OculusApi.RawButton.LIndexTrigger - name: LIndexTrigger - href: api/XRTK.Oculus.Plugins.OculusApi.RawButton.html#XRTK_Oculus_Plugins_OculusApi_RawButton_LIndexTrigger - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawButton.LIndexTrigger - fullName: XRTK.Oculus.Plugins.OculusApi.RawButton.LIndexTrigger - nameWithType: OculusApi.RawButton.LIndexTrigger -- uid: XRTK.Oculus.Plugins.OculusApi.RawButton.LShoulder - name: LShoulder - href: api/XRTK.Oculus.Plugins.OculusApi.RawButton.html#XRTK_Oculus_Plugins_OculusApi_RawButton_LShoulder - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawButton.LShoulder - fullName: XRTK.Oculus.Plugins.OculusApi.RawButton.LShoulder - nameWithType: OculusApi.RawButton.LShoulder -- uid: XRTK.Oculus.Plugins.OculusApi.RawButton.LThumbstick - name: LThumbstick - href: api/XRTK.Oculus.Plugins.OculusApi.RawButton.html#XRTK_Oculus_Plugins_OculusApi_RawButton_LThumbstick - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawButton.LThumbstick - fullName: XRTK.Oculus.Plugins.OculusApi.RawButton.LThumbstick - nameWithType: OculusApi.RawButton.LThumbstick -- uid: XRTK.Oculus.Plugins.OculusApi.RawButton.LThumbstickDown - name: LThumbstickDown - href: api/XRTK.Oculus.Plugins.OculusApi.RawButton.html#XRTK_Oculus_Plugins_OculusApi_RawButton_LThumbstickDown - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawButton.LThumbstickDown - fullName: XRTK.Oculus.Plugins.OculusApi.RawButton.LThumbstickDown - nameWithType: OculusApi.RawButton.LThumbstickDown -- uid: XRTK.Oculus.Plugins.OculusApi.RawButton.LThumbstickLeft - name: LThumbstickLeft - href: api/XRTK.Oculus.Plugins.OculusApi.RawButton.html#XRTK_Oculus_Plugins_OculusApi_RawButton_LThumbstickLeft - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawButton.LThumbstickLeft - fullName: XRTK.Oculus.Plugins.OculusApi.RawButton.LThumbstickLeft - nameWithType: OculusApi.RawButton.LThumbstickLeft -- uid: XRTK.Oculus.Plugins.OculusApi.RawButton.LThumbstickRight - name: LThumbstickRight - href: api/XRTK.Oculus.Plugins.OculusApi.RawButton.html#XRTK_Oculus_Plugins_OculusApi_RawButton_LThumbstickRight - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawButton.LThumbstickRight - fullName: XRTK.Oculus.Plugins.OculusApi.RawButton.LThumbstickRight - nameWithType: OculusApi.RawButton.LThumbstickRight -- uid: XRTK.Oculus.Plugins.OculusApi.RawButton.LThumbstickUp - name: LThumbstickUp - href: api/XRTK.Oculus.Plugins.OculusApi.RawButton.html#XRTK_Oculus_Plugins_OculusApi_RawButton_LThumbstickUp - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawButton.LThumbstickUp - fullName: XRTK.Oculus.Plugins.OculusApi.RawButton.LThumbstickUp - nameWithType: OculusApi.RawButton.LThumbstickUp -- uid: XRTK.Oculus.Plugins.OculusApi.RawButton.LTouchpad - name: LTouchpad - href: api/XRTK.Oculus.Plugins.OculusApi.RawButton.html#XRTK_Oculus_Plugins_OculusApi_RawButton_LTouchpad - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawButton.LTouchpad - fullName: XRTK.Oculus.Plugins.OculusApi.RawButton.LTouchpad - nameWithType: OculusApi.RawButton.LTouchpad -- uid: XRTK.Oculus.Plugins.OculusApi.RawButton.None - name: None - href: api/XRTK.Oculus.Plugins.OculusApi.RawButton.html#XRTK_Oculus_Plugins_OculusApi_RawButton_None - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawButton.None - fullName: XRTK.Oculus.Plugins.OculusApi.RawButton.None - nameWithType: OculusApi.RawButton.None -- uid: XRTK.Oculus.Plugins.OculusApi.RawButton.RHandTrigger - name: RHandTrigger - href: api/XRTK.Oculus.Plugins.OculusApi.RawButton.html#XRTK_Oculus_Plugins_OculusApi_RawButton_RHandTrigger - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawButton.RHandTrigger - fullName: XRTK.Oculus.Plugins.OculusApi.RawButton.RHandTrigger - nameWithType: OculusApi.RawButton.RHandTrigger -- uid: XRTK.Oculus.Plugins.OculusApi.RawButton.RIndexTrigger - name: RIndexTrigger - href: api/XRTK.Oculus.Plugins.OculusApi.RawButton.html#XRTK_Oculus_Plugins_OculusApi_RawButton_RIndexTrigger - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawButton.RIndexTrigger - fullName: XRTK.Oculus.Plugins.OculusApi.RawButton.RIndexTrigger - nameWithType: OculusApi.RawButton.RIndexTrigger -- uid: XRTK.Oculus.Plugins.OculusApi.RawButton.RShoulder - name: RShoulder - href: api/XRTK.Oculus.Plugins.OculusApi.RawButton.html#XRTK_Oculus_Plugins_OculusApi_RawButton_RShoulder - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawButton.RShoulder - fullName: XRTK.Oculus.Plugins.OculusApi.RawButton.RShoulder - nameWithType: OculusApi.RawButton.RShoulder -- uid: XRTK.Oculus.Plugins.OculusApi.RawButton.RThumbstick - name: RThumbstick - href: api/XRTK.Oculus.Plugins.OculusApi.RawButton.html#XRTK_Oculus_Plugins_OculusApi_RawButton_RThumbstick - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawButton.RThumbstick - fullName: XRTK.Oculus.Plugins.OculusApi.RawButton.RThumbstick - nameWithType: OculusApi.RawButton.RThumbstick -- uid: XRTK.Oculus.Plugins.OculusApi.RawButton.RThumbstickDown - name: RThumbstickDown - href: api/XRTK.Oculus.Plugins.OculusApi.RawButton.html#XRTK_Oculus_Plugins_OculusApi_RawButton_RThumbstickDown - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawButton.RThumbstickDown - fullName: XRTK.Oculus.Plugins.OculusApi.RawButton.RThumbstickDown - nameWithType: OculusApi.RawButton.RThumbstickDown -- uid: XRTK.Oculus.Plugins.OculusApi.RawButton.RThumbstickLeft - name: RThumbstickLeft - href: api/XRTK.Oculus.Plugins.OculusApi.RawButton.html#XRTK_Oculus_Plugins_OculusApi_RawButton_RThumbstickLeft - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawButton.RThumbstickLeft - fullName: XRTK.Oculus.Plugins.OculusApi.RawButton.RThumbstickLeft - nameWithType: OculusApi.RawButton.RThumbstickLeft -- uid: XRTK.Oculus.Plugins.OculusApi.RawButton.RThumbstickRight - name: RThumbstickRight - href: api/XRTK.Oculus.Plugins.OculusApi.RawButton.html#XRTK_Oculus_Plugins_OculusApi_RawButton_RThumbstickRight - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawButton.RThumbstickRight - fullName: XRTK.Oculus.Plugins.OculusApi.RawButton.RThumbstickRight - nameWithType: OculusApi.RawButton.RThumbstickRight -- uid: XRTK.Oculus.Plugins.OculusApi.RawButton.RThumbstickUp - name: RThumbstickUp - href: api/XRTK.Oculus.Plugins.OculusApi.RawButton.html#XRTK_Oculus_Plugins_OculusApi_RawButton_RThumbstickUp - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawButton.RThumbstickUp - fullName: XRTK.Oculus.Plugins.OculusApi.RawButton.RThumbstickUp - nameWithType: OculusApi.RawButton.RThumbstickUp -- uid: XRTK.Oculus.Plugins.OculusApi.RawButton.RTouchpad - name: RTouchpad - href: api/XRTK.Oculus.Plugins.OculusApi.RawButton.html#XRTK_Oculus_Plugins_OculusApi_RawButton_RTouchpad - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawButton.RTouchpad - fullName: XRTK.Oculus.Plugins.OculusApi.RawButton.RTouchpad - nameWithType: OculusApi.RawButton.RTouchpad -- uid: XRTK.Oculus.Plugins.OculusApi.RawButton.Start - name: Start - href: api/XRTK.Oculus.Plugins.OculusApi.RawButton.html#XRTK_Oculus_Plugins_OculusApi_RawButton_Start - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawButton.Start - fullName: XRTK.Oculus.Plugins.OculusApi.RawButton.Start - nameWithType: OculusApi.RawButton.Start -- uid: XRTK.Oculus.Plugins.OculusApi.RawButton.X - name: X - href: api/XRTK.Oculus.Plugins.OculusApi.RawButton.html#XRTK_Oculus_Plugins_OculusApi_RawButton_X - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawButton.X - fullName: XRTK.Oculus.Plugins.OculusApi.RawButton.X - nameWithType: OculusApi.RawButton.X -- uid: XRTK.Oculus.Plugins.OculusApi.RawButton.Y - name: Y - href: api/XRTK.Oculus.Plugins.OculusApi.RawButton.html#XRTK_Oculus_Plugins_OculusApi_RawButton_Y - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawButton.Y - fullName: XRTK.Oculus.Plugins.OculusApi.RawButton.Y - nameWithType: OculusApi.RawButton.Y -- uid: XRTK.Oculus.Plugins.OculusApi.RawNearTouch - name: OculusApi.RawNearTouch - href: api/XRTK.Oculus.Plugins.OculusApi.RawNearTouch.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.RawNearTouch - fullName: XRTK.Oculus.Plugins.OculusApi.RawNearTouch - nameWithType: OculusApi.RawNearTouch -- uid: XRTK.Oculus.Plugins.OculusApi.RawNearTouch.Any - name: Any - href: api/XRTK.Oculus.Plugins.OculusApi.RawNearTouch.html#XRTK_Oculus_Plugins_OculusApi_RawNearTouch_Any - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawNearTouch.Any - fullName: XRTK.Oculus.Plugins.OculusApi.RawNearTouch.Any - nameWithType: OculusApi.RawNearTouch.Any -- uid: XRTK.Oculus.Plugins.OculusApi.RawNearTouch.LIndexTrigger - name: LIndexTrigger - href: api/XRTK.Oculus.Plugins.OculusApi.RawNearTouch.html#XRTK_Oculus_Plugins_OculusApi_RawNearTouch_LIndexTrigger - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawNearTouch.LIndexTrigger - fullName: XRTK.Oculus.Plugins.OculusApi.RawNearTouch.LIndexTrigger - nameWithType: OculusApi.RawNearTouch.LIndexTrigger -- uid: XRTK.Oculus.Plugins.OculusApi.RawNearTouch.LThumbButtons - name: LThumbButtons - href: api/XRTK.Oculus.Plugins.OculusApi.RawNearTouch.html#XRTK_Oculus_Plugins_OculusApi_RawNearTouch_LThumbButtons - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawNearTouch.LThumbButtons - fullName: XRTK.Oculus.Plugins.OculusApi.RawNearTouch.LThumbButtons - nameWithType: OculusApi.RawNearTouch.LThumbButtons -- uid: XRTK.Oculus.Plugins.OculusApi.RawNearTouch.None - name: None - href: api/XRTK.Oculus.Plugins.OculusApi.RawNearTouch.html#XRTK_Oculus_Plugins_OculusApi_RawNearTouch_None - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawNearTouch.None - fullName: XRTK.Oculus.Plugins.OculusApi.RawNearTouch.None - nameWithType: OculusApi.RawNearTouch.None -- uid: XRTK.Oculus.Plugins.OculusApi.RawNearTouch.RIndexTrigger - name: RIndexTrigger - href: api/XRTK.Oculus.Plugins.OculusApi.RawNearTouch.html#XRTK_Oculus_Plugins_OculusApi_RawNearTouch_RIndexTrigger - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawNearTouch.RIndexTrigger - fullName: XRTK.Oculus.Plugins.OculusApi.RawNearTouch.RIndexTrigger - nameWithType: OculusApi.RawNearTouch.RIndexTrigger -- uid: XRTK.Oculus.Plugins.OculusApi.RawNearTouch.RThumbButtons - name: RThumbButtons - href: api/XRTK.Oculus.Plugins.OculusApi.RawNearTouch.html#XRTK_Oculus_Plugins_OculusApi_RawNearTouch_RThumbButtons - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawNearTouch.RThumbButtons - fullName: XRTK.Oculus.Plugins.OculusApi.RawNearTouch.RThumbButtons - nameWithType: OculusApi.RawNearTouch.RThumbButtons -- uid: XRTK.Oculus.Plugins.OculusApi.RawTouch - name: OculusApi.RawTouch - href: api/XRTK.Oculus.Plugins.OculusApi.RawTouch.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.RawTouch - fullName: XRTK.Oculus.Plugins.OculusApi.RawTouch - nameWithType: OculusApi.RawTouch -- uid: XRTK.Oculus.Plugins.OculusApi.RawTouch.A - name: A - href: api/XRTK.Oculus.Plugins.OculusApi.RawTouch.html#XRTK_Oculus_Plugins_OculusApi_RawTouch_A - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawTouch.A - fullName: XRTK.Oculus.Plugins.OculusApi.RawTouch.A - nameWithType: OculusApi.RawTouch.A -- uid: XRTK.Oculus.Plugins.OculusApi.RawTouch.Any - name: Any - href: api/XRTK.Oculus.Plugins.OculusApi.RawTouch.html#XRTK_Oculus_Plugins_OculusApi_RawTouch_Any - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawTouch.Any - fullName: XRTK.Oculus.Plugins.OculusApi.RawTouch.Any - nameWithType: OculusApi.RawTouch.Any -- uid: XRTK.Oculus.Plugins.OculusApi.RawTouch.B - name: B - href: api/XRTK.Oculus.Plugins.OculusApi.RawTouch.html#XRTK_Oculus_Plugins_OculusApi_RawTouch_B - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawTouch.B - fullName: XRTK.Oculus.Plugins.OculusApi.RawTouch.B - nameWithType: OculusApi.RawTouch.B -- uid: XRTK.Oculus.Plugins.OculusApi.RawTouch.LIndexTrigger - name: LIndexTrigger - href: api/XRTK.Oculus.Plugins.OculusApi.RawTouch.html#XRTK_Oculus_Plugins_OculusApi_RawTouch_LIndexTrigger - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawTouch.LIndexTrigger - fullName: XRTK.Oculus.Plugins.OculusApi.RawTouch.LIndexTrigger - nameWithType: OculusApi.RawTouch.LIndexTrigger -- uid: XRTK.Oculus.Plugins.OculusApi.RawTouch.LThumbRest - name: LThumbRest - href: api/XRTK.Oculus.Plugins.OculusApi.RawTouch.html#XRTK_Oculus_Plugins_OculusApi_RawTouch_LThumbRest - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawTouch.LThumbRest - fullName: XRTK.Oculus.Plugins.OculusApi.RawTouch.LThumbRest - nameWithType: OculusApi.RawTouch.LThumbRest -- uid: XRTK.Oculus.Plugins.OculusApi.RawTouch.LThumbstick - name: LThumbstick - href: api/XRTK.Oculus.Plugins.OculusApi.RawTouch.html#XRTK_Oculus_Plugins_OculusApi_RawTouch_LThumbstick - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawTouch.LThumbstick - fullName: XRTK.Oculus.Plugins.OculusApi.RawTouch.LThumbstick - nameWithType: OculusApi.RawTouch.LThumbstick -- uid: XRTK.Oculus.Plugins.OculusApi.RawTouch.LTouchpad - name: LTouchpad - href: api/XRTK.Oculus.Plugins.OculusApi.RawTouch.html#XRTK_Oculus_Plugins_OculusApi_RawTouch_LTouchpad - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawTouch.LTouchpad - fullName: XRTK.Oculus.Plugins.OculusApi.RawTouch.LTouchpad - nameWithType: OculusApi.RawTouch.LTouchpad -- uid: XRTK.Oculus.Plugins.OculusApi.RawTouch.None - name: None - href: api/XRTK.Oculus.Plugins.OculusApi.RawTouch.html#XRTK_Oculus_Plugins_OculusApi_RawTouch_None - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawTouch.None - fullName: XRTK.Oculus.Plugins.OculusApi.RawTouch.None - nameWithType: OculusApi.RawTouch.None -- uid: XRTK.Oculus.Plugins.OculusApi.RawTouch.RIndexTrigger - name: RIndexTrigger - href: api/XRTK.Oculus.Plugins.OculusApi.RawTouch.html#XRTK_Oculus_Plugins_OculusApi_RawTouch_RIndexTrigger - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawTouch.RIndexTrigger - fullName: XRTK.Oculus.Plugins.OculusApi.RawTouch.RIndexTrigger - nameWithType: OculusApi.RawTouch.RIndexTrigger -- uid: XRTK.Oculus.Plugins.OculusApi.RawTouch.RThumbRest - name: RThumbRest - href: api/XRTK.Oculus.Plugins.OculusApi.RawTouch.html#XRTK_Oculus_Plugins_OculusApi_RawTouch_RThumbRest - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawTouch.RThumbRest - fullName: XRTK.Oculus.Plugins.OculusApi.RawTouch.RThumbRest - nameWithType: OculusApi.RawTouch.RThumbRest -- uid: XRTK.Oculus.Plugins.OculusApi.RawTouch.RThumbstick - name: RThumbstick - href: api/XRTK.Oculus.Plugins.OculusApi.RawTouch.html#XRTK_Oculus_Plugins_OculusApi_RawTouch_RThumbstick - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawTouch.RThumbstick - fullName: XRTK.Oculus.Plugins.OculusApi.RawTouch.RThumbstick - nameWithType: OculusApi.RawTouch.RThumbstick -- uid: XRTK.Oculus.Plugins.OculusApi.RawTouch.RTouchpad - name: RTouchpad - href: api/XRTK.Oculus.Plugins.OculusApi.RawTouch.html#XRTK_Oculus_Plugins_OculusApi_RawTouch_RTouchpad - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawTouch.RTouchpad - fullName: XRTK.Oculus.Plugins.OculusApi.RawTouch.RTouchpad - nameWithType: OculusApi.RawTouch.RTouchpad -- uid: XRTK.Oculus.Plugins.OculusApi.RawTouch.X - name: X - href: api/XRTK.Oculus.Plugins.OculusApi.RawTouch.html#XRTK_Oculus_Plugins_OculusApi_RawTouch_X - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawTouch.X - fullName: XRTK.Oculus.Plugins.OculusApi.RawTouch.X - nameWithType: OculusApi.RawTouch.X -- uid: XRTK.Oculus.Plugins.OculusApi.RawTouch.Y - name: Y - href: api/XRTK.Oculus.Plugins.OculusApi.RawTouch.html#XRTK_Oculus_Plugins_OculusApi_RawTouch_Y - commentId: F:XRTK.Oculus.Plugins.OculusApi.RawTouch.Y - fullName: XRTK.Oculus.Plugins.OculusApi.RawTouch.Y - nameWithType: OculusApi.RawTouch.Y -- uid: XRTK.Oculus.Plugins.OculusApi.RecenterFlags - name: OculusApi.RecenterFlags - href: api/XRTK.Oculus.Plugins.OculusApi.RecenterFlags.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.RecenterFlags - fullName: XRTK.Oculus.Plugins.OculusApi.RecenterFlags - nameWithType: OculusApi.RecenterFlags -- uid: XRTK.Oculus.Plugins.OculusApi.RecenterFlags.Count - name: Count - href: api/XRTK.Oculus.Plugins.OculusApi.RecenterFlags.html#XRTK_Oculus_Plugins_OculusApi_RecenterFlags_Count - commentId: F:XRTK.Oculus.Plugins.OculusApi.RecenterFlags.Count - fullName: XRTK.Oculus.Plugins.OculusApi.RecenterFlags.Count - nameWithType: OculusApi.RecenterFlags.Count -- uid: XRTK.Oculus.Plugins.OculusApi.RecenterFlags.Default - name: Default - href: api/XRTK.Oculus.Plugins.OculusApi.RecenterFlags.html#XRTK_Oculus_Plugins_OculusApi_RecenterFlags_Default - commentId: F:XRTK.Oculus.Plugins.OculusApi.RecenterFlags.Default - fullName: XRTK.Oculus.Plugins.OculusApi.RecenterFlags.Default - nameWithType: OculusApi.RecenterFlags.Default -- uid: XRTK.Oculus.Plugins.OculusApi.RecenterFlags.IgnoreAll - name: IgnoreAll - href: api/XRTK.Oculus.Plugins.OculusApi.RecenterFlags.html#XRTK_Oculus_Plugins_OculusApi_RecenterFlags_IgnoreAll - commentId: F:XRTK.Oculus.Plugins.OculusApi.RecenterFlags.IgnoreAll - fullName: XRTK.Oculus.Plugins.OculusApi.RecenterFlags.IgnoreAll - nameWithType: OculusApi.RecenterFlags.IgnoreAll -- uid: XRTK.Oculus.Plugins.OculusApi.RecenterTrackingOrigin(XRTK.Oculus.Plugins.OculusApi.RecenterFlags) - name: RecenterTrackingOrigin(OculusApi.RecenterFlags) - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_RecenterTrackingOrigin_XRTK_Oculus_Plugins_OculusApi_RecenterFlags_ - commentId: M:XRTK.Oculus.Plugins.OculusApi.RecenterTrackingOrigin(XRTK.Oculus.Plugins.OculusApi.RecenterFlags) - fullName: XRTK.Oculus.Plugins.OculusApi.RecenterTrackingOrigin(XRTK.Oculus.Plugins.OculusApi.RecenterFlags) - nameWithType: OculusApi.RecenterTrackingOrigin(OculusApi.RecenterFlags) -- uid: XRTK.Oculus.Plugins.OculusApi.RecenterTrackingOrigin* - name: RecenterTrackingOrigin - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_RecenterTrackingOrigin_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.RecenterTrackingOrigin - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.RecenterTrackingOrigin - nameWithType: OculusApi.RecenterTrackingOrigin -- uid: XRTK.Oculus.Plugins.OculusApi.Rectf - name: OculusApi.Rectf - href: api/XRTK.Oculus.Plugins.OculusApi.Rectf.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.Rectf - fullName: XRTK.Oculus.Plugins.OculusApi.Rectf - nameWithType: OculusApi.Rectf -- uid: XRTK.Oculus.Plugins.OculusApi.Rectf.Pos - name: Pos - href: api/XRTK.Oculus.Plugins.OculusApi.Rectf.html#XRTK_Oculus_Plugins_OculusApi_Rectf_Pos - commentId: F:XRTK.Oculus.Plugins.OculusApi.Rectf.Pos - fullName: XRTK.Oculus.Plugins.OculusApi.Rectf.Pos - nameWithType: OculusApi.Rectf.Pos -- uid: XRTK.Oculus.Plugins.OculusApi.Rectf.Size - name: Size - href: api/XRTK.Oculus.Plugins.OculusApi.Rectf.html#XRTK_Oculus_Plugins_OculusApi_Rectf_Size - commentId: F:XRTK.Oculus.Plugins.OculusApi.Rectf.Size - fullName: XRTK.Oculus.Plugins.OculusApi.Rectf.Size - nameWithType: OculusApi.Rectf.Size -- uid: XRTK.Oculus.Plugins.OculusApi.Recti - name: OculusApi.Recti - href: api/XRTK.Oculus.Plugins.OculusApi.Recti.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.Recti - fullName: XRTK.Oculus.Plugins.OculusApi.Recti - nameWithType: OculusApi.Recti -- uid: XRTK.Oculus.Plugins.OculusApi.Recti.Pos - name: Pos - href: api/XRTK.Oculus.Plugins.OculusApi.Recti.html#XRTK_Oculus_Plugins_OculusApi_Recti_Pos - commentId: F:XRTK.Oculus.Plugins.OculusApi.Recti.Pos - fullName: XRTK.Oculus.Plugins.OculusApi.Recti.Pos - nameWithType: OculusApi.Recti.Pos -- uid: XRTK.Oculus.Plugins.OculusApi.Recti.Size - name: Size - href: api/XRTK.Oculus.Plugins.OculusApi.Recti.html#XRTK_Oculus_Plugins_OculusApi_Recti_Size - commentId: F:XRTK.Oculus.Plugins.OculusApi.Recti.Size - fullName: XRTK.Oculus.Plugins.OculusApi.Recti.Size - nameWithType: OculusApi.Recti.Size -- uid: XRTK.Oculus.Plugins.OculusApi.ResetDefaultExternalCamera - name: ResetDefaultExternalCamera() - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_ResetDefaultExternalCamera - commentId: M:XRTK.Oculus.Plugins.OculusApi.ResetDefaultExternalCamera - fullName: XRTK.Oculus.Plugins.OculusApi.ResetDefaultExternalCamera() - nameWithType: OculusApi.ResetDefaultExternalCamera() -- uid: XRTK.Oculus.Plugins.OculusApi.ResetDefaultExternalCamera* - name: ResetDefaultExternalCamera - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_ResetDefaultExternalCamera_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.ResetDefaultExternalCamera - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.ResetDefaultExternalCamera - nameWithType: OculusApi.ResetDefaultExternalCamera -- uid: XRTK.Oculus.Plugins.OculusApi.Result - name: OculusApi.Result - href: api/XRTK.Oculus.Plugins.OculusApi.Result.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.Result - fullName: XRTK.Oculus.Plugins.OculusApi.Result - nameWithType: OculusApi.Result -- uid: XRTK.Oculus.Plugins.OculusApi.Result.Failure - name: Failure - href: api/XRTK.Oculus.Plugins.OculusApi.Result.html#XRTK_Oculus_Plugins_OculusApi_Result_Failure - commentId: F:XRTK.Oculus.Plugins.OculusApi.Result.Failure - fullName: XRTK.Oculus.Plugins.OculusApi.Result.Failure - nameWithType: OculusApi.Result.Failure -- uid: XRTK.Oculus.Plugins.OculusApi.Result.Failure_DataIsInvalid - name: Failure_DataIsInvalid - href: api/XRTK.Oculus.Plugins.OculusApi.Result.html#XRTK_Oculus_Plugins_OculusApi_Result_Failure_DataIsInvalid - commentId: F:XRTK.Oculus.Plugins.OculusApi.Result.Failure_DataIsInvalid - fullName: XRTK.Oculus.Plugins.OculusApi.Result.Failure_DataIsInvalid - nameWithType: OculusApi.Result.Failure_DataIsInvalid -- uid: XRTK.Oculus.Plugins.OculusApi.Result.Failure_DeprecatedOperation - name: Failure_DeprecatedOperation - href: api/XRTK.Oculus.Plugins.OculusApi.Result.html#XRTK_Oculus_Plugins_OculusApi_Result_Failure_DeprecatedOperation - commentId: F:XRTK.Oculus.Plugins.OculusApi.Result.Failure_DeprecatedOperation - fullName: XRTK.Oculus.Plugins.OculusApi.Result.Failure_DeprecatedOperation - nameWithType: OculusApi.Result.Failure_DeprecatedOperation -- uid: XRTK.Oculus.Plugins.OculusApi.Result.Failure_InsufficientSize - name: Failure_InsufficientSize - href: api/XRTK.Oculus.Plugins.OculusApi.Result.html#XRTK_Oculus_Plugins_OculusApi_Result_Failure_InsufficientSize - commentId: F:XRTK.Oculus.Plugins.OculusApi.Result.Failure_InsufficientSize - fullName: XRTK.Oculus.Plugins.OculusApi.Result.Failure_InsufficientSize - nameWithType: OculusApi.Result.Failure_InsufficientSize -- uid: XRTK.Oculus.Plugins.OculusApi.Result.Failure_InvalidOperation - name: Failure_InvalidOperation - href: api/XRTK.Oculus.Plugins.OculusApi.Result.html#XRTK_Oculus_Plugins_OculusApi_Result_Failure_InvalidOperation - commentId: F:XRTK.Oculus.Plugins.OculusApi.Result.Failure_InvalidOperation - fullName: XRTK.Oculus.Plugins.OculusApi.Result.Failure_InvalidOperation - nameWithType: OculusApi.Result.Failure_InvalidOperation -- uid: XRTK.Oculus.Plugins.OculusApi.Result.Failure_InvalidParameter - name: Failure_InvalidParameter - href: api/XRTK.Oculus.Plugins.OculusApi.Result.html#XRTK_Oculus_Plugins_OculusApi_Result_Failure_InvalidParameter - commentId: F:XRTK.Oculus.Plugins.OculusApi.Result.Failure_InvalidParameter - fullName: XRTK.Oculus.Plugins.OculusApi.Result.Failure_InvalidParameter - nameWithType: OculusApi.Result.Failure_InvalidParameter -- uid: XRTK.Oculus.Plugins.OculusApi.Result.Failure_NotInitialized - name: Failure_NotInitialized - href: api/XRTK.Oculus.Plugins.OculusApi.Result.html#XRTK_Oculus_Plugins_OculusApi_Result_Failure_NotInitialized - commentId: F:XRTK.Oculus.Plugins.OculusApi.Result.Failure_NotInitialized - fullName: XRTK.Oculus.Plugins.OculusApi.Result.Failure_NotInitialized - nameWithType: OculusApi.Result.Failure_NotInitialized -- uid: XRTK.Oculus.Plugins.OculusApi.Result.Failure_NotYetImplemented - name: Failure_NotYetImplemented - href: api/XRTK.Oculus.Plugins.OculusApi.Result.html#XRTK_Oculus_Plugins_OculusApi_Result_Failure_NotYetImplemented - commentId: F:XRTK.Oculus.Plugins.OculusApi.Result.Failure_NotYetImplemented - fullName: XRTK.Oculus.Plugins.OculusApi.Result.Failure_NotYetImplemented - nameWithType: OculusApi.Result.Failure_NotYetImplemented -- uid: XRTK.Oculus.Plugins.OculusApi.Result.Failure_OperationFailed - name: Failure_OperationFailed - href: api/XRTK.Oculus.Plugins.OculusApi.Result.html#XRTK_Oculus_Plugins_OculusApi_Result_Failure_OperationFailed - commentId: F:XRTK.Oculus.Plugins.OculusApi.Result.Failure_OperationFailed - fullName: XRTK.Oculus.Plugins.OculusApi.Result.Failure_OperationFailed - nameWithType: OculusApi.Result.Failure_OperationFailed -- uid: XRTK.Oculus.Plugins.OculusApi.Result.Failure_Unsupported - name: Failure_Unsupported - href: api/XRTK.Oculus.Plugins.OculusApi.Result.html#XRTK_Oculus_Plugins_OculusApi_Result_Failure_Unsupported - commentId: F:XRTK.Oculus.Plugins.OculusApi.Result.Failure_Unsupported - fullName: XRTK.Oculus.Plugins.OculusApi.Result.Failure_Unsupported - nameWithType: OculusApi.Result.Failure_Unsupported -- uid: XRTK.Oculus.Plugins.OculusApi.Result.Success - name: Success - href: api/XRTK.Oculus.Plugins.OculusApi.Result.html#XRTK_Oculus_Plugins_OculusApi_Result_Success - commentId: F:XRTK.Oculus.Plugins.OculusApi.Result.Success - fullName: XRTK.Oculus.Plugins.OculusApi.Result.Success - nameWithType: OculusApi.Result.Success -- uid: XRTK.Oculus.Plugins.OculusApi.SetBoundaryVisible(System.Boolean) - name: SetBoundaryVisible(Boolean) - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_SetBoundaryVisible_System_Boolean_ - commentId: M:XRTK.Oculus.Plugins.OculusApi.SetBoundaryVisible(System.Boolean) - fullName: XRTK.Oculus.Plugins.OculusApi.SetBoundaryVisible(System.Boolean) - nameWithType: OculusApi.SetBoundaryVisible(Boolean) -- uid: XRTK.Oculus.Plugins.OculusApi.SetBoundaryVisible* - name: SetBoundaryVisible - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_SetBoundaryVisible_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.SetBoundaryVisible - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.SetBoundaryVisible - nameWithType: OculusApi.SetBoundaryVisible -- uid: XRTK.Oculus.Plugins.OculusApi.SetClientColorDesc(XRTK.Oculus.Plugins.OculusApi.ColorSpace) - name: SetClientColorDesc(OculusApi.ColorSpace) - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_SetClientColorDesc_XRTK_Oculus_Plugins_OculusApi_ColorSpace_ - commentId: M:XRTK.Oculus.Plugins.OculusApi.SetClientColorDesc(XRTK.Oculus.Plugins.OculusApi.ColorSpace) - fullName: XRTK.Oculus.Plugins.OculusApi.SetClientColorDesc(XRTK.Oculus.Plugins.OculusApi.ColorSpace) - nameWithType: OculusApi.SetClientColorDesc(OculusApi.ColorSpace) -- uid: XRTK.Oculus.Plugins.OculusApi.SetClientColorDesc* - name: SetClientColorDesc - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_SetClientColorDesc_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.SetClientColorDesc - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.SetClientColorDesc - nameWithType: OculusApi.SetClientColorDesc -- uid: XRTK.Oculus.Plugins.OculusApi.SetControllerHaptics(System.UInt32,XRTK.Oculus.Plugins.OculusApi.HapticsBuffer) - name: SetControllerHaptics(UInt32, OculusApi.HapticsBuffer) - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_SetControllerHaptics_System_UInt32_XRTK_Oculus_Plugins_OculusApi_HapticsBuffer_ - commentId: M:XRTK.Oculus.Plugins.OculusApi.SetControllerHaptics(System.UInt32,XRTK.Oculus.Plugins.OculusApi.HapticsBuffer) - fullName: XRTK.Oculus.Plugins.OculusApi.SetControllerHaptics(System.UInt32, XRTK.Oculus.Plugins.OculusApi.HapticsBuffer) - nameWithType: OculusApi.SetControllerHaptics(UInt32, OculusApi.HapticsBuffer) -- uid: XRTK.Oculus.Plugins.OculusApi.SetControllerHaptics* - name: SetControllerHaptics - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_SetControllerHaptics_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.SetControllerHaptics - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.SetControllerHaptics - nameWithType: OculusApi.SetControllerHaptics -- uid: XRTK.Oculus.Plugins.OculusApi.SetControllerVibration(System.UInt32,System.Single,System.Single) - name: SetControllerVibration(UInt32, Single, Single) - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_SetControllerVibration_System_UInt32_System_Single_System_Single_ - commentId: M:XRTK.Oculus.Plugins.OculusApi.SetControllerVibration(System.UInt32,System.Single,System.Single) - fullName: XRTK.Oculus.Plugins.OculusApi.SetControllerVibration(System.UInt32, System.Single, System.Single) - nameWithType: OculusApi.SetControllerVibration(UInt32, Single, Single) -- uid: XRTK.Oculus.Plugins.OculusApi.SetControllerVibration* - name: SetControllerVibration - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_SetControllerVibration_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.SetControllerVibration - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.SetControllerVibration - nameWithType: OculusApi.SetControllerVibration -- uid: XRTK.Oculus.Plugins.OculusApi.SetDefaultExternalCamera(System.String,XRTK.Oculus.Plugins.OculusApi.CameraIntrinsics@,XRTK.Oculus.Plugins.OculusApi.CameraExtrinsics@) - name: SetDefaultExternalCamera(String, ref OculusApi.CameraIntrinsics, ref OculusApi.CameraExtrinsics) - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_SetDefaultExternalCamera_System_String_XRTK_Oculus_Plugins_OculusApi_CameraIntrinsics__XRTK_Oculus_Plugins_OculusApi_CameraExtrinsics__ - commentId: M:XRTK.Oculus.Plugins.OculusApi.SetDefaultExternalCamera(System.String,XRTK.Oculus.Plugins.OculusApi.CameraIntrinsics@,XRTK.Oculus.Plugins.OculusApi.CameraExtrinsics@) - name.vb: SetDefaultExternalCamera(String, ByRef OculusApi.CameraIntrinsics, ByRef OculusApi.CameraExtrinsics) - fullName: XRTK.Oculus.Plugins.OculusApi.SetDefaultExternalCamera(System.String, ref XRTK.Oculus.Plugins.OculusApi.CameraIntrinsics, ref XRTK.Oculus.Plugins.OculusApi.CameraExtrinsics) - fullName.vb: XRTK.Oculus.Plugins.OculusApi.SetDefaultExternalCamera(System.String, ByRef XRTK.Oculus.Plugins.OculusApi.CameraIntrinsics, ByRef XRTK.Oculus.Plugins.OculusApi.CameraExtrinsics) - nameWithType: OculusApi.SetDefaultExternalCamera(String, ref OculusApi.CameraIntrinsics, ref OculusApi.CameraExtrinsics) - nameWithType.vb: OculusApi.SetDefaultExternalCamera(String, ByRef OculusApi.CameraIntrinsics, ByRef OculusApi.CameraExtrinsics) -- uid: XRTK.Oculus.Plugins.OculusApi.SetDefaultExternalCamera* - name: SetDefaultExternalCamera - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_SetDefaultExternalCamera_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.SetDefaultExternalCamera - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.SetDefaultExternalCamera - nameWithType: OculusApi.SetDefaultExternalCamera -- uid: XRTK.Oculus.Plugins.OculusApi.SetExternalCameraProperties(System.String,XRTK.Oculus.Plugins.OculusApi.CameraIntrinsics@,XRTK.Oculus.Plugins.OculusApi.CameraExtrinsics@) - name: SetExternalCameraProperties(String, ref OculusApi.CameraIntrinsics, ref OculusApi.CameraExtrinsics) - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_SetExternalCameraProperties_System_String_XRTK_Oculus_Plugins_OculusApi_CameraIntrinsics__XRTK_Oculus_Plugins_OculusApi_CameraExtrinsics__ - commentId: M:XRTK.Oculus.Plugins.OculusApi.SetExternalCameraProperties(System.String,XRTK.Oculus.Plugins.OculusApi.CameraIntrinsics@,XRTK.Oculus.Plugins.OculusApi.CameraExtrinsics@) - name.vb: SetExternalCameraProperties(String, ByRef OculusApi.CameraIntrinsics, ByRef OculusApi.CameraExtrinsics) - fullName: XRTK.Oculus.Plugins.OculusApi.SetExternalCameraProperties(System.String, ref XRTK.Oculus.Plugins.OculusApi.CameraIntrinsics, ref XRTK.Oculus.Plugins.OculusApi.CameraExtrinsics) - fullName.vb: XRTK.Oculus.Plugins.OculusApi.SetExternalCameraProperties(System.String, ByRef XRTK.Oculus.Plugins.OculusApi.CameraIntrinsics, ByRef XRTK.Oculus.Plugins.OculusApi.CameraExtrinsics) - nameWithType: OculusApi.SetExternalCameraProperties(String, ref OculusApi.CameraIntrinsics, ref OculusApi.CameraExtrinsics) - nameWithType.vb: OculusApi.SetExternalCameraProperties(String, ByRef OculusApi.CameraIntrinsics, ByRef OculusApi.CameraExtrinsics) -- uid: XRTK.Oculus.Plugins.OculusApi.SetExternalCameraProperties* - name: SetExternalCameraProperties - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_SetExternalCameraProperties_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.SetExternalCameraProperties - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.SetExternalCameraProperties - nameWithType: OculusApi.SetExternalCameraProperties -- uid: XRTK.Oculus.Plugins.OculusApi.SetMrcHeadsetControllerPose(XRTK.Oculus.Plugins.OculusApi.Posef,XRTK.Oculus.Plugins.OculusApi.Posef,XRTK.Oculus.Plugins.OculusApi.Posef) - name: SetMrcHeadsetControllerPose(OculusApi.Posef, OculusApi.Posef, OculusApi.Posef) - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_SetMrcHeadsetControllerPose_XRTK_Oculus_Plugins_OculusApi_Posef_XRTK_Oculus_Plugins_OculusApi_Posef_XRTK_Oculus_Plugins_OculusApi_Posef_ - commentId: M:XRTK.Oculus.Plugins.OculusApi.SetMrcHeadsetControllerPose(XRTK.Oculus.Plugins.OculusApi.Posef,XRTK.Oculus.Plugins.OculusApi.Posef,XRTK.Oculus.Plugins.OculusApi.Posef) - fullName: XRTK.Oculus.Plugins.OculusApi.SetMrcHeadsetControllerPose(XRTK.Oculus.Plugins.OculusApi.Posef, XRTK.Oculus.Plugins.OculusApi.Posef, XRTK.Oculus.Plugins.OculusApi.Posef) - nameWithType: OculusApi.SetMrcHeadsetControllerPose(OculusApi.Posef, OculusApi.Posef, OculusApi.Posef) -- uid: XRTK.Oculus.Plugins.OculusApi.SetMrcHeadsetControllerPose* - name: SetMrcHeadsetControllerPose - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_SetMrcHeadsetControllerPose_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.SetMrcHeadsetControllerPose - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.SetMrcHeadsetControllerPose - nameWithType: OculusApi.SetMrcHeadsetControllerPose -- uid: XRTK.Oculus.Plugins.OculusApi.SetTrackingCalibratedOrigin - name: SetTrackingCalibratedOrigin() - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_SetTrackingCalibratedOrigin - commentId: M:XRTK.Oculus.Plugins.OculusApi.SetTrackingCalibratedOrigin - fullName: XRTK.Oculus.Plugins.OculusApi.SetTrackingCalibratedOrigin() - nameWithType: OculusApi.SetTrackingCalibratedOrigin() -- uid: XRTK.Oculus.Plugins.OculusApi.SetTrackingCalibratedOrigin* - name: SetTrackingCalibratedOrigin - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_SetTrackingCalibratedOrigin_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.SetTrackingCalibratedOrigin - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.SetTrackingCalibratedOrigin - nameWithType: OculusApi.SetTrackingCalibratedOrigin -- uid: XRTK.Oculus.Plugins.OculusApi.SetTrackingOriginType(XRTK.Oculus.Plugins.OculusApi.TrackingOrigin) - name: SetTrackingOriginType(OculusApi.TrackingOrigin) - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_SetTrackingOriginType_XRTK_Oculus_Plugins_OculusApi_TrackingOrigin_ - commentId: M:XRTK.Oculus.Plugins.OculusApi.SetTrackingOriginType(XRTK.Oculus.Plugins.OculusApi.TrackingOrigin) - fullName: XRTK.Oculus.Plugins.OculusApi.SetTrackingOriginType(XRTK.Oculus.Plugins.OculusApi.TrackingOrigin) - nameWithType: OculusApi.SetTrackingOriginType(OculusApi.TrackingOrigin) -- uid: XRTK.Oculus.Plugins.OculusApi.SetTrackingOriginType* - name: SetTrackingOriginType - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_SetTrackingOriginType_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.SetTrackingOriginType - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.SetTrackingOriginType - nameWithType: OculusApi.SetTrackingOriginType -- uid: XRTK.Oculus.Plugins.OculusApi.Sizef - name: OculusApi.Sizef - href: api/XRTK.Oculus.Plugins.OculusApi.Sizef.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.Sizef - fullName: XRTK.Oculus.Plugins.OculusApi.Sizef - nameWithType: OculusApi.Sizef -- uid: XRTK.Oculus.Plugins.OculusApi.Sizef.h - name: h - href: api/XRTK.Oculus.Plugins.OculusApi.Sizef.html#XRTK_Oculus_Plugins_OculusApi_Sizef_h - commentId: F:XRTK.Oculus.Plugins.OculusApi.Sizef.h - fullName: XRTK.Oculus.Plugins.OculusApi.Sizef.h - nameWithType: OculusApi.Sizef.h -- uid: XRTK.Oculus.Plugins.OculusApi.Sizef.w - name: w - href: api/XRTK.Oculus.Plugins.OculusApi.Sizef.html#XRTK_Oculus_Plugins_OculusApi_Sizef_w - commentId: F:XRTK.Oculus.Plugins.OculusApi.Sizef.w - fullName: XRTK.Oculus.Plugins.OculusApi.Sizef.w - nameWithType: OculusApi.Sizef.w -- uid: XRTK.Oculus.Plugins.OculusApi.Sizef.zero - name: zero - href: api/XRTK.Oculus.Plugins.OculusApi.Sizef.html#XRTK_Oculus_Plugins_OculusApi_Sizef_zero - commentId: F:XRTK.Oculus.Plugins.OculusApi.Sizef.zero - fullName: XRTK.Oculus.Plugins.OculusApi.Sizef.zero - nameWithType: OculusApi.Sizef.zero -- uid: XRTK.Oculus.Plugins.OculusApi.Sizei - name: OculusApi.Sizei - href: api/XRTK.Oculus.Plugins.OculusApi.Sizei.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.Sizei - fullName: XRTK.Oculus.Plugins.OculusApi.Sizei - nameWithType: OculusApi.Sizei -- uid: XRTK.Oculus.Plugins.OculusApi.Sizei.h - name: h - href: api/XRTK.Oculus.Plugins.OculusApi.Sizei.html#XRTK_Oculus_Plugins_OculusApi_Sizei_h - commentId: F:XRTK.Oculus.Plugins.OculusApi.Sizei.h - fullName: XRTK.Oculus.Plugins.OculusApi.Sizei.h - nameWithType: OculusApi.Sizei.h -- uid: XRTK.Oculus.Plugins.OculusApi.Sizei.w - name: w - href: api/XRTK.Oculus.Plugins.OculusApi.Sizei.html#XRTK_Oculus_Plugins_OculusApi_Sizei_w - commentId: F:XRTK.Oculus.Plugins.OculusApi.Sizei.w - fullName: XRTK.Oculus.Plugins.OculusApi.Sizei.w - nameWithType: OculusApi.Sizei.w -- uid: XRTK.Oculus.Plugins.OculusApi.Sizei.zero - name: zero - href: api/XRTK.Oculus.Plugins.OculusApi.Sizei.html#XRTK_Oculus_Plugins_OculusApi_Sizei_zero - commentId: F:XRTK.Oculus.Plugins.OculusApi.Sizei.zero - fullName: XRTK.Oculus.Plugins.OculusApi.Sizei.zero - nameWithType: OculusApi.Sizei.zero -- uid: XRTK.Oculus.Plugins.OculusApi.Skeleton - name: OculusApi.Skeleton - href: api/XRTK.Oculus.Plugins.OculusApi.Skeleton.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.Skeleton - fullName: XRTK.Oculus.Plugins.OculusApi.Skeleton - nameWithType: OculusApi.Skeleton -- uid: XRTK.Oculus.Plugins.OculusApi.Skeleton.BoneCapsules - name: BoneCapsules - href: api/XRTK.Oculus.Plugins.OculusApi.Skeleton.html#XRTK_Oculus_Plugins_OculusApi_Skeleton_BoneCapsules - commentId: F:XRTK.Oculus.Plugins.OculusApi.Skeleton.BoneCapsules - fullName: XRTK.Oculus.Plugins.OculusApi.Skeleton.BoneCapsules - nameWithType: OculusApi.Skeleton.BoneCapsules -- uid: XRTK.Oculus.Plugins.OculusApi.Skeleton.Bones - name: Bones - href: api/XRTK.Oculus.Plugins.OculusApi.Skeleton.html#XRTK_Oculus_Plugins_OculusApi_Skeleton_Bones - commentId: F:XRTK.Oculus.Plugins.OculusApi.Skeleton.Bones - fullName: XRTK.Oculus.Plugins.OculusApi.Skeleton.Bones - nameWithType: OculusApi.Skeleton.Bones -- uid: XRTK.Oculus.Plugins.OculusApi.Skeleton.NumBoneCapsules - name: NumBoneCapsules - href: api/XRTK.Oculus.Plugins.OculusApi.Skeleton.html#XRTK_Oculus_Plugins_OculusApi_Skeleton_NumBoneCapsules - commentId: F:XRTK.Oculus.Plugins.OculusApi.Skeleton.NumBoneCapsules - fullName: XRTK.Oculus.Plugins.OculusApi.Skeleton.NumBoneCapsules - nameWithType: OculusApi.Skeleton.NumBoneCapsules -- uid: XRTK.Oculus.Plugins.OculusApi.Skeleton.NumBones - name: NumBones - href: api/XRTK.Oculus.Plugins.OculusApi.Skeleton.html#XRTK_Oculus_Plugins_OculusApi_Skeleton_NumBones - commentId: F:XRTK.Oculus.Plugins.OculusApi.Skeleton.NumBones - fullName: XRTK.Oculus.Plugins.OculusApi.Skeleton.NumBones - nameWithType: OculusApi.Skeleton.NumBones -- uid: XRTK.Oculus.Plugins.OculusApi.Skeleton.Type - name: Type - href: api/XRTK.Oculus.Plugins.OculusApi.Skeleton.html#XRTK_Oculus_Plugins_OculusApi_Skeleton_Type - commentId: F:XRTK.Oculus.Plugins.OculusApi.Skeleton.Type - fullName: XRTK.Oculus.Plugins.OculusApi.Skeleton.Type - nameWithType: OculusApi.Skeleton.Type -- uid: XRTK.Oculus.Plugins.OculusApi.Skeleton2 - name: OculusApi.Skeleton2 - href: api/XRTK.Oculus.Plugins.OculusApi.Skeleton2.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.Skeleton2 - fullName: XRTK.Oculus.Plugins.OculusApi.Skeleton2 - nameWithType: OculusApi.Skeleton2 -- uid: XRTK.Oculus.Plugins.OculusApi.Skeleton2.BoneCapsules - name: BoneCapsules - href: api/XRTK.Oculus.Plugins.OculusApi.Skeleton2.html#XRTK_Oculus_Plugins_OculusApi_Skeleton2_BoneCapsules - commentId: F:XRTK.Oculus.Plugins.OculusApi.Skeleton2.BoneCapsules - fullName: XRTK.Oculus.Plugins.OculusApi.Skeleton2.BoneCapsules - nameWithType: OculusApi.Skeleton2.BoneCapsules -- uid: XRTK.Oculus.Plugins.OculusApi.Skeleton2.Bones - name: Bones - href: api/XRTK.Oculus.Plugins.OculusApi.Skeleton2.html#XRTK_Oculus_Plugins_OculusApi_Skeleton2_Bones - commentId: F:XRTK.Oculus.Plugins.OculusApi.Skeleton2.Bones - fullName: XRTK.Oculus.Plugins.OculusApi.Skeleton2.Bones - nameWithType: OculusApi.Skeleton2.Bones -- uid: XRTK.Oculus.Plugins.OculusApi.Skeleton2.NumBoneCapsules - name: NumBoneCapsules - href: api/XRTK.Oculus.Plugins.OculusApi.Skeleton2.html#XRTK_Oculus_Plugins_OculusApi_Skeleton2_NumBoneCapsules - commentId: F:XRTK.Oculus.Plugins.OculusApi.Skeleton2.NumBoneCapsules - fullName: XRTK.Oculus.Plugins.OculusApi.Skeleton2.NumBoneCapsules - nameWithType: OculusApi.Skeleton2.NumBoneCapsules -- uid: XRTK.Oculus.Plugins.OculusApi.Skeleton2.NumBones - name: NumBones - href: api/XRTK.Oculus.Plugins.OculusApi.Skeleton2.html#XRTK_Oculus_Plugins_OculusApi_Skeleton2_NumBones - commentId: F:XRTK.Oculus.Plugins.OculusApi.Skeleton2.NumBones - fullName: XRTK.Oculus.Plugins.OculusApi.Skeleton2.NumBones - nameWithType: OculusApi.Skeleton2.NumBones -- uid: XRTK.Oculus.Plugins.OculusApi.Skeleton2.Type - name: Type - href: api/XRTK.Oculus.Plugins.OculusApi.Skeleton2.html#XRTK_Oculus_Plugins_OculusApi_Skeleton2_Type - commentId: F:XRTK.Oculus.Plugins.OculusApi.Skeleton2.Type - fullName: XRTK.Oculus.Plugins.OculusApi.Skeleton2.Type - nameWithType: OculusApi.Skeleton2.Type -- uid: XRTK.Oculus.Plugins.OculusApi.SkeletonConstants - name: OculusApi.SkeletonConstants - href: api/XRTK.Oculus.Plugins.OculusApi.SkeletonConstants.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.SkeletonConstants - fullName: XRTK.Oculus.Plugins.OculusApi.SkeletonConstants - nameWithType: OculusApi.SkeletonConstants -- uid: XRTK.Oculus.Plugins.OculusApi.SkeletonConstants.MaxBoneCapsules - name: MaxBoneCapsules - href: api/XRTK.Oculus.Plugins.OculusApi.SkeletonConstants.html#XRTK_Oculus_Plugins_OculusApi_SkeletonConstants_MaxBoneCapsules - commentId: F:XRTK.Oculus.Plugins.OculusApi.SkeletonConstants.MaxBoneCapsules - fullName: XRTK.Oculus.Plugins.OculusApi.SkeletonConstants.MaxBoneCapsules - nameWithType: OculusApi.SkeletonConstants.MaxBoneCapsules -- uid: XRTK.Oculus.Plugins.OculusApi.SkeletonConstants.MaxBones - name: MaxBones - href: api/XRTK.Oculus.Plugins.OculusApi.SkeletonConstants.html#XRTK_Oculus_Plugins_OculusApi_SkeletonConstants_MaxBones - commentId: F:XRTK.Oculus.Plugins.OculusApi.SkeletonConstants.MaxBones - fullName: XRTK.Oculus.Plugins.OculusApi.SkeletonConstants.MaxBones - nameWithType: OculusApi.SkeletonConstants.MaxBones -- uid: XRTK.Oculus.Plugins.OculusApi.SkeletonType - name: OculusApi.SkeletonType - href: api/XRTK.Oculus.Plugins.OculusApi.SkeletonType.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.SkeletonType - fullName: XRTK.Oculus.Plugins.OculusApi.SkeletonType - nameWithType: OculusApi.SkeletonType -- uid: XRTK.Oculus.Plugins.OculusApi.SkeletonType.HandLeft - name: HandLeft - href: api/XRTK.Oculus.Plugins.OculusApi.SkeletonType.html#XRTK_Oculus_Plugins_OculusApi_SkeletonType_HandLeft - commentId: F:XRTK.Oculus.Plugins.OculusApi.SkeletonType.HandLeft - fullName: XRTK.Oculus.Plugins.OculusApi.SkeletonType.HandLeft - nameWithType: OculusApi.SkeletonType.HandLeft -- uid: XRTK.Oculus.Plugins.OculusApi.SkeletonType.HandRight - name: HandRight - href: api/XRTK.Oculus.Plugins.OculusApi.SkeletonType.html#XRTK_Oculus_Plugins_OculusApi_SkeletonType_HandRight - commentId: F:XRTK.Oculus.Plugins.OculusApi.SkeletonType.HandRight - fullName: XRTK.Oculus.Plugins.OculusApi.SkeletonType.HandRight - nameWithType: OculusApi.SkeletonType.HandRight -- uid: XRTK.Oculus.Plugins.OculusApi.SkeletonType.None - name: None - href: api/XRTK.Oculus.Plugins.OculusApi.SkeletonType.html#XRTK_Oculus_Plugins_OculusApi_SkeletonType_None - commentId: F:XRTK.Oculus.Plugins.OculusApi.SkeletonType.None - fullName: XRTK.Oculus.Plugins.OculusApi.SkeletonType.None - nameWithType: OculusApi.SkeletonType.None -- uid: XRTK.Oculus.Plugins.OculusApi.Step - name: OculusApi.Step - href: api/XRTK.Oculus.Plugins.OculusApi.Step.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.Step - fullName: XRTK.Oculus.Plugins.OculusApi.Step - nameWithType: OculusApi.Step -- uid: XRTK.Oculus.Plugins.OculusApi.Step.Physics - name: Physics - href: api/XRTK.Oculus.Plugins.OculusApi.Step.html#XRTK_Oculus_Plugins_OculusApi_Step_Physics - commentId: F:XRTK.Oculus.Plugins.OculusApi.Step.Physics - fullName: XRTK.Oculus.Plugins.OculusApi.Step.Physics - nameWithType: OculusApi.Step.Physics -- uid: XRTK.Oculus.Plugins.OculusApi.Step.Render - name: Render - href: api/XRTK.Oculus.Plugins.OculusApi.Step.html#XRTK_Oculus_Plugins_OculusApi_Step_Render - commentId: F:XRTK.Oculus.Plugins.OculusApi.Step.Render - fullName: XRTK.Oculus.Plugins.OculusApi.Step.Render - nameWithType: OculusApi.Step.Render -- uid: XRTK.Oculus.Plugins.OculusApi.SystemHeadset - name: OculusApi.SystemHeadset - href: api/XRTK.Oculus.Plugins.OculusApi.SystemHeadset.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.SystemHeadset - fullName: XRTK.Oculus.Plugins.OculusApi.SystemHeadset - nameWithType: OculusApi.SystemHeadset -- uid: XRTK.Oculus.Plugins.OculusApi.SystemHeadset.None - name: None - href: api/XRTK.Oculus.Plugins.OculusApi.SystemHeadset.html#XRTK_Oculus_Plugins_OculusApi_SystemHeadset_None - commentId: F:XRTK.Oculus.Plugins.OculusApi.SystemHeadset.None - fullName: XRTK.Oculus.Plugins.OculusApi.SystemHeadset.None - nameWithType: OculusApi.SystemHeadset.None -- uid: XRTK.Oculus.Plugins.OculusApi.SystemHeadset.Oculus_Link_Quest - name: Oculus_Link_Quest - href: api/XRTK.Oculus.Plugins.OculusApi.SystemHeadset.html#XRTK_Oculus_Plugins_OculusApi_SystemHeadset_Oculus_Link_Quest - commentId: F:XRTK.Oculus.Plugins.OculusApi.SystemHeadset.Oculus_Link_Quest - fullName: XRTK.Oculus.Plugins.OculusApi.SystemHeadset.Oculus_Link_Quest - nameWithType: OculusApi.SystemHeadset.Oculus_Link_Quest -- uid: XRTK.Oculus.Plugins.OculusApi.SystemHeadset.Oculus_Quest - name: Oculus_Quest - href: api/XRTK.Oculus.Plugins.OculusApi.SystemHeadset.html#XRTK_Oculus_Plugins_OculusApi_SystemHeadset_Oculus_Quest - commentId: F:XRTK.Oculus.Plugins.OculusApi.SystemHeadset.Oculus_Quest - fullName: XRTK.Oculus.Plugins.OculusApi.SystemHeadset.Oculus_Quest - nameWithType: OculusApi.SystemHeadset.Oculus_Quest -- uid: XRTK.Oculus.Plugins.OculusApi.SystemHeadset.Oculus_Quest_2 - name: Oculus_Quest_2 - href: api/XRTK.Oculus.Plugins.OculusApi.SystemHeadset.html#XRTK_Oculus_Plugins_OculusApi_SystemHeadset_Oculus_Quest_2 - commentId: F:XRTK.Oculus.Plugins.OculusApi.SystemHeadset.Oculus_Quest_2 - fullName: XRTK.Oculus.Plugins.OculusApi.SystemHeadset.Oculus_Quest_2 - nameWithType: OculusApi.SystemHeadset.Oculus_Quest_2 -- uid: XRTK.Oculus.Plugins.OculusApi.SystemHeadset.PC_Placeholder_4102 - name: PC_Placeholder_4102 - href: api/XRTK.Oculus.Plugins.OculusApi.SystemHeadset.html#XRTK_Oculus_Plugins_OculusApi_SystemHeadset_PC_Placeholder_4102 - commentId: F:XRTK.Oculus.Plugins.OculusApi.SystemHeadset.PC_Placeholder_4102 - fullName: XRTK.Oculus.Plugins.OculusApi.SystemHeadset.PC_Placeholder_4102 - nameWithType: OculusApi.SystemHeadset.PC_Placeholder_4102 -- uid: XRTK.Oculus.Plugins.OculusApi.SystemHeadset.PC_Placeholder_4103 - name: PC_Placeholder_4103 - href: api/XRTK.Oculus.Plugins.OculusApi.SystemHeadset.html#XRTK_Oculus_Plugins_OculusApi_SystemHeadset_PC_Placeholder_4103 - commentId: F:XRTK.Oculus.Plugins.OculusApi.SystemHeadset.PC_Placeholder_4103 - fullName: XRTK.Oculus.Plugins.OculusApi.SystemHeadset.PC_Placeholder_4103 - nameWithType: OculusApi.SystemHeadset.PC_Placeholder_4103 -- uid: XRTK.Oculus.Plugins.OculusApi.SystemHeadset.PC_Placeholder_4104 - name: PC_Placeholder_4104 - href: api/XRTK.Oculus.Plugins.OculusApi.SystemHeadset.html#XRTK_Oculus_Plugins_OculusApi_SystemHeadset_PC_Placeholder_4104 - commentId: F:XRTK.Oculus.Plugins.OculusApi.SystemHeadset.PC_Placeholder_4104 - fullName: XRTK.Oculus.Plugins.OculusApi.SystemHeadset.PC_Placeholder_4104 - nameWithType: OculusApi.SystemHeadset.PC_Placeholder_4104 -- uid: XRTK.Oculus.Plugins.OculusApi.SystemHeadset.PC_Placeholder_4105 - name: PC_Placeholder_4105 - href: api/XRTK.Oculus.Plugins.OculusApi.SystemHeadset.html#XRTK_Oculus_Plugins_OculusApi_SystemHeadset_PC_Placeholder_4105 - commentId: F:XRTK.Oculus.Plugins.OculusApi.SystemHeadset.PC_Placeholder_4105 - fullName: XRTK.Oculus.Plugins.OculusApi.SystemHeadset.PC_Placeholder_4105 - nameWithType: OculusApi.SystemHeadset.PC_Placeholder_4105 -- uid: XRTK.Oculus.Plugins.OculusApi.SystemHeadset.PC_Placeholder_4106 - name: PC_Placeholder_4106 - href: api/XRTK.Oculus.Plugins.OculusApi.SystemHeadset.html#XRTK_Oculus_Plugins_OculusApi_SystemHeadset_PC_Placeholder_4106 - commentId: F:XRTK.Oculus.Plugins.OculusApi.SystemHeadset.PC_Placeholder_4106 - fullName: XRTK.Oculus.Plugins.OculusApi.SystemHeadset.PC_Placeholder_4106 - nameWithType: OculusApi.SystemHeadset.PC_Placeholder_4106 -- uid: XRTK.Oculus.Plugins.OculusApi.SystemHeadset.PC_Placeholder_4107 - name: PC_Placeholder_4107 - href: api/XRTK.Oculus.Plugins.OculusApi.SystemHeadset.html#XRTK_Oculus_Plugins_OculusApi_SystemHeadset_PC_Placeholder_4107 - commentId: F:XRTK.Oculus.Plugins.OculusApi.SystemHeadset.PC_Placeholder_4107 - fullName: XRTK.Oculus.Plugins.OculusApi.SystemHeadset.PC_Placeholder_4107 - nameWithType: OculusApi.SystemHeadset.PC_Placeholder_4107 -- uid: XRTK.Oculus.Plugins.OculusApi.SystemHeadset.Placeholder_10 - name: Placeholder_10 - href: api/XRTK.Oculus.Plugins.OculusApi.SystemHeadset.html#XRTK_Oculus_Plugins_OculusApi_SystemHeadset_Placeholder_10 - commentId: F:XRTK.Oculus.Plugins.OculusApi.SystemHeadset.Placeholder_10 - fullName: XRTK.Oculus.Plugins.OculusApi.SystemHeadset.Placeholder_10 - nameWithType: OculusApi.SystemHeadset.Placeholder_10 -- uid: XRTK.Oculus.Plugins.OculusApi.SystemHeadset.Placeholder_11 - name: Placeholder_11 - href: api/XRTK.Oculus.Plugins.OculusApi.SystemHeadset.html#XRTK_Oculus_Plugins_OculusApi_SystemHeadset_Placeholder_11 - commentId: F:XRTK.Oculus.Plugins.OculusApi.SystemHeadset.Placeholder_11 - fullName: XRTK.Oculus.Plugins.OculusApi.SystemHeadset.Placeholder_11 - nameWithType: OculusApi.SystemHeadset.Placeholder_11 -- uid: XRTK.Oculus.Plugins.OculusApi.SystemHeadset.Placeholder_12 - name: Placeholder_12 - href: api/XRTK.Oculus.Plugins.OculusApi.SystemHeadset.html#XRTK_Oculus_Plugins_OculusApi_SystemHeadset_Placeholder_12 - commentId: F:XRTK.Oculus.Plugins.OculusApi.SystemHeadset.Placeholder_12 - fullName: XRTK.Oculus.Plugins.OculusApi.SystemHeadset.Placeholder_12 - nameWithType: OculusApi.SystemHeadset.Placeholder_12 -- uid: XRTK.Oculus.Plugins.OculusApi.SystemHeadset.Placeholder_13 - name: Placeholder_13 - href: api/XRTK.Oculus.Plugins.OculusApi.SystemHeadset.html#XRTK_Oculus_Plugins_OculusApi_SystemHeadset_Placeholder_13 - commentId: F:XRTK.Oculus.Plugins.OculusApi.SystemHeadset.Placeholder_13 - fullName: XRTK.Oculus.Plugins.OculusApi.SystemHeadset.Placeholder_13 - nameWithType: OculusApi.SystemHeadset.Placeholder_13 -- uid: XRTK.Oculus.Plugins.OculusApi.SystemHeadset.Placeholder_14 - name: Placeholder_14 - href: api/XRTK.Oculus.Plugins.OculusApi.SystemHeadset.html#XRTK_Oculus_Plugins_OculusApi_SystemHeadset_Placeholder_14 - commentId: F:XRTK.Oculus.Plugins.OculusApi.SystemHeadset.Placeholder_14 - fullName: XRTK.Oculus.Plugins.OculusApi.SystemHeadset.Placeholder_14 - nameWithType: OculusApi.SystemHeadset.Placeholder_14 -- uid: XRTK.Oculus.Plugins.OculusApi.SystemHeadset.Rift_CB - name: Rift_CB - href: api/XRTK.Oculus.Plugins.OculusApi.SystemHeadset.html#XRTK_Oculus_Plugins_OculusApi_SystemHeadset_Rift_CB - commentId: F:XRTK.Oculus.Plugins.OculusApi.SystemHeadset.Rift_CB - fullName: XRTK.Oculus.Plugins.OculusApi.SystemHeadset.Rift_CB - nameWithType: OculusApi.SystemHeadset.Rift_CB -- uid: XRTK.Oculus.Plugins.OculusApi.SystemHeadset.Rift_CV1 - name: Rift_CV1 - href: api/XRTK.Oculus.Plugins.OculusApi.SystemHeadset.html#XRTK_Oculus_Plugins_OculusApi_SystemHeadset_Rift_CV1 - commentId: F:XRTK.Oculus.Plugins.OculusApi.SystemHeadset.Rift_CV1 - fullName: XRTK.Oculus.Plugins.OculusApi.SystemHeadset.Rift_CV1 - nameWithType: OculusApi.SystemHeadset.Rift_CV1 -- uid: XRTK.Oculus.Plugins.OculusApi.SystemHeadset.Rift_DK1 - name: Rift_DK1 - href: api/XRTK.Oculus.Plugins.OculusApi.SystemHeadset.html#XRTK_Oculus_Plugins_OculusApi_SystemHeadset_Rift_DK1 - commentId: F:XRTK.Oculus.Plugins.OculusApi.SystemHeadset.Rift_DK1 - fullName: XRTK.Oculus.Plugins.OculusApi.SystemHeadset.Rift_DK1 - nameWithType: OculusApi.SystemHeadset.Rift_DK1 -- uid: XRTK.Oculus.Plugins.OculusApi.SystemHeadset.Rift_DK2 - name: Rift_DK2 - href: api/XRTK.Oculus.Plugins.OculusApi.SystemHeadset.html#XRTK_Oculus_Plugins_OculusApi_SystemHeadset_Rift_DK2 - commentId: F:XRTK.Oculus.Plugins.OculusApi.SystemHeadset.Rift_DK2 - fullName: XRTK.Oculus.Plugins.OculusApi.SystemHeadset.Rift_DK2 - nameWithType: OculusApi.SystemHeadset.Rift_DK2 -- uid: XRTK.Oculus.Plugins.OculusApi.SystemHeadset.Rift_S - name: Rift_S - href: api/XRTK.Oculus.Plugins.OculusApi.SystemHeadset.html#XRTK_Oculus_Plugins_OculusApi_SystemHeadset_Rift_S - commentId: F:XRTK.Oculus.Plugins.OculusApi.SystemHeadset.Rift_S - fullName: XRTK.Oculus.Plugins.OculusApi.SystemHeadset.Rift_S - nameWithType: OculusApi.SystemHeadset.Rift_S -- uid: XRTK.Oculus.Plugins.OculusApi.systemVolume - name: systemVolume - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_systemVolume - commentId: P:XRTK.Oculus.Plugins.OculusApi.systemVolume - fullName: XRTK.Oculus.Plugins.OculusApi.systemVolume - nameWithType: OculusApi.systemVolume -- uid: XRTK.Oculus.Plugins.OculusApi.systemVolume* - name: systemVolume - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_systemVolume_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.systemVolume - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.systemVolume - nameWithType: OculusApi.systemVolume -- uid: XRTK.Oculus.Plugins.OculusApi.TestBoundaryNode(XRTK.Oculus.Plugins.OculusApi.Node,XRTK.Oculus.Plugins.OculusApi.BoundaryType) - name: TestBoundaryNode(OculusApi.Node, OculusApi.BoundaryType) - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_TestBoundaryNode_XRTK_Oculus_Plugins_OculusApi_Node_XRTK_Oculus_Plugins_OculusApi_BoundaryType_ - commentId: M:XRTK.Oculus.Plugins.OculusApi.TestBoundaryNode(XRTK.Oculus.Plugins.OculusApi.Node,XRTK.Oculus.Plugins.OculusApi.BoundaryType) - fullName: XRTK.Oculus.Plugins.OculusApi.TestBoundaryNode(XRTK.Oculus.Plugins.OculusApi.Node, XRTK.Oculus.Plugins.OculusApi.BoundaryType) - nameWithType: OculusApi.TestBoundaryNode(OculusApi.Node, OculusApi.BoundaryType) -- uid: XRTK.Oculus.Plugins.OculusApi.TestBoundaryNode* - name: TestBoundaryNode - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_TestBoundaryNode_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.TestBoundaryNode - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.TestBoundaryNode - nameWithType: OculusApi.TestBoundaryNode -- uid: XRTK.Oculus.Plugins.OculusApi.TestBoundaryPoint(XRTK.Oculus.Plugins.OculusApi.Vector3f,XRTK.Oculus.Plugins.OculusApi.BoundaryType) - name: TestBoundaryPoint(OculusApi.Vector3f, OculusApi.BoundaryType) - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_TestBoundaryPoint_XRTK_Oculus_Plugins_OculusApi_Vector3f_XRTK_Oculus_Plugins_OculusApi_BoundaryType_ - commentId: M:XRTK.Oculus.Plugins.OculusApi.TestBoundaryPoint(XRTK.Oculus.Plugins.OculusApi.Vector3f,XRTK.Oculus.Plugins.OculusApi.BoundaryType) - fullName: XRTK.Oculus.Plugins.OculusApi.TestBoundaryPoint(XRTK.Oculus.Plugins.OculusApi.Vector3f, XRTK.Oculus.Plugins.OculusApi.BoundaryType) - nameWithType: OculusApi.TestBoundaryPoint(OculusApi.Vector3f, OculusApi.BoundaryType) -- uid: XRTK.Oculus.Plugins.OculusApi.TestBoundaryPoint* - name: TestBoundaryPoint - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_TestBoundaryPoint_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.TestBoundaryPoint - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.TestBoundaryPoint - nameWithType: OculusApi.TestBoundaryPoint -- uid: XRTK.Oculus.Plugins.OculusApi.TrackingConfidence - name: OculusApi.TrackingConfidence - href: api/XRTK.Oculus.Plugins.OculusApi.TrackingConfidence.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.TrackingConfidence - fullName: XRTK.Oculus.Plugins.OculusApi.TrackingConfidence - nameWithType: OculusApi.TrackingConfidence -- uid: XRTK.Oculus.Plugins.OculusApi.TrackingConfidence.High - name: High - href: api/XRTK.Oculus.Plugins.OculusApi.TrackingConfidence.html#XRTK_Oculus_Plugins_OculusApi_TrackingConfidence_High - commentId: F:XRTK.Oculus.Plugins.OculusApi.TrackingConfidence.High - fullName: XRTK.Oculus.Plugins.OculusApi.TrackingConfidence.High - nameWithType: OculusApi.TrackingConfidence.High -- uid: XRTK.Oculus.Plugins.OculusApi.TrackingConfidence.Low - name: Low - href: api/XRTK.Oculus.Plugins.OculusApi.TrackingConfidence.html#XRTK_Oculus_Plugins_OculusApi_TrackingConfidence_Low - commentId: F:XRTK.Oculus.Plugins.OculusApi.TrackingConfidence.Low - fullName: XRTK.Oculus.Plugins.OculusApi.TrackingConfidence.Low - nameWithType: OculusApi.TrackingConfidence.Low -- uid: XRTK.Oculus.Plugins.OculusApi.TrackingOrigin - name: OculusApi.TrackingOrigin - href: api/XRTK.Oculus.Plugins.OculusApi.TrackingOrigin.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.TrackingOrigin - fullName: XRTK.Oculus.Plugins.OculusApi.TrackingOrigin - nameWithType: OculusApi.TrackingOrigin -- uid: XRTK.Oculus.Plugins.OculusApi.TrackingOrigin.Count - name: Count - href: api/XRTK.Oculus.Plugins.OculusApi.TrackingOrigin.html#XRTK_Oculus_Plugins_OculusApi_TrackingOrigin_Count - commentId: F:XRTK.Oculus.Plugins.OculusApi.TrackingOrigin.Count - fullName: XRTK.Oculus.Plugins.OculusApi.TrackingOrigin.Count - nameWithType: OculusApi.TrackingOrigin.Count -- uid: XRTK.Oculus.Plugins.OculusApi.TrackingOrigin.EyeLevel - name: EyeLevel - href: api/XRTK.Oculus.Plugins.OculusApi.TrackingOrigin.html#XRTK_Oculus_Plugins_OculusApi_TrackingOrigin_EyeLevel - commentId: F:XRTK.Oculus.Plugins.OculusApi.TrackingOrigin.EyeLevel - fullName: XRTK.Oculus.Plugins.OculusApi.TrackingOrigin.EyeLevel - nameWithType: OculusApi.TrackingOrigin.EyeLevel -- uid: XRTK.Oculus.Plugins.OculusApi.TrackingOrigin.FloorLevel - name: FloorLevel - href: api/XRTK.Oculus.Plugins.OculusApi.TrackingOrigin.html#XRTK_Oculus_Plugins_OculusApi_TrackingOrigin_FloorLevel - commentId: F:XRTK.Oculus.Plugins.OculusApi.TrackingOrigin.FloorLevel - fullName: XRTK.Oculus.Plugins.OculusApi.TrackingOrigin.FloorLevel - nameWithType: OculusApi.TrackingOrigin.FloorLevel -- uid: XRTK.Oculus.Plugins.OculusApi.TrackingOrigin.Stage - name: Stage - href: api/XRTK.Oculus.Plugins.OculusApi.TrackingOrigin.html#XRTK_Oculus_Plugins_OculusApi_TrackingOrigin_Stage - commentId: F:XRTK.Oculus.Plugins.OculusApi.TrackingOrigin.Stage - fullName: XRTK.Oculus.Plugins.OculusApi.TrackingOrigin.Stage - nameWithType: OculusApi.TrackingOrigin.Stage -- uid: XRTK.Oculus.Plugins.OculusApi.UpdateNodePhysicsPoses(System.Int32,System.Double) - name: UpdateNodePhysicsPoses(Int32, Double) - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_UpdateNodePhysicsPoses_System_Int32_System_Double_ - commentId: M:XRTK.Oculus.Plugins.OculusApi.UpdateNodePhysicsPoses(System.Int32,System.Double) - fullName: XRTK.Oculus.Plugins.OculusApi.UpdateNodePhysicsPoses(System.Int32, System.Double) - nameWithType: OculusApi.UpdateNodePhysicsPoses(Int32, Double) -- uid: XRTK.Oculus.Plugins.OculusApi.UpdateNodePhysicsPoses* - name: UpdateNodePhysicsPoses - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_UpdateNodePhysicsPoses_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.UpdateNodePhysicsPoses - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.UpdateNodePhysicsPoses - nameWithType: OculusApi.UpdateNodePhysicsPoses -- uid: XRTK.Oculus.Plugins.OculusApi.useDynamicFixedFoveatedRendering - name: useDynamicFixedFoveatedRendering - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_useDynamicFixedFoveatedRendering - commentId: P:XRTK.Oculus.Plugins.OculusApi.useDynamicFixedFoveatedRendering - fullName: XRTK.Oculus.Plugins.OculusApi.useDynamicFixedFoveatedRendering - nameWithType: OculusApi.useDynamicFixedFoveatedRendering -- uid: XRTK.Oculus.Plugins.OculusApi.useDynamicFixedFoveatedRendering* - name: useDynamicFixedFoveatedRendering - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_useDynamicFixedFoveatedRendering_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.useDynamicFixedFoveatedRendering - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.useDynamicFixedFoveatedRendering - nameWithType: OculusApi.useDynamicFixedFoveatedRendering -- uid: XRTK.Oculus.Plugins.OculusApi.UserPresent - name: UserPresent - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_UserPresent - commentId: P:XRTK.Oculus.Plugins.OculusApi.UserPresent - fullName: XRTK.Oculus.Plugins.OculusApi.UserPresent - nameWithType: OculusApi.UserPresent -- uid: XRTK.Oculus.Plugins.OculusApi.UserPresent* - name: UserPresent - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_UserPresent_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.UserPresent - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.UserPresent - nameWithType: OculusApi.UserPresent -- uid: XRTK.Oculus.Plugins.OculusApi.Vector2f - name: OculusApi.Vector2f - href: api/XRTK.Oculus.Plugins.OculusApi.Vector2f.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.Vector2f - fullName: XRTK.Oculus.Plugins.OculusApi.Vector2f - nameWithType: OculusApi.Vector2f -- uid: XRTK.Oculus.Plugins.OculusApi.Vector2f.op_Implicit(UnityEngine.Vector2)~XRTK.Oculus.Plugins.OculusApi.Vector2f - name: Implicit(Vector2 to OculusApi.Vector2f) - href: api/XRTK.Oculus.Plugins.OculusApi.Vector2f.html#XRTK_Oculus_Plugins_OculusApi_Vector2f_op_Implicit_UnityEngine_Vector2__XRTK_Oculus_Plugins_OculusApi_Vector2f - commentId: M:XRTK.Oculus.Plugins.OculusApi.Vector2f.op_Implicit(UnityEngine.Vector2)~XRTK.Oculus.Plugins.OculusApi.Vector2f - name.vb: Widening(Vector2 to OculusApi.Vector2f) - fullName: XRTK.Oculus.Plugins.OculusApi.Vector2f.Implicit(UnityEngine.Vector2 to XRTK.Oculus.Plugins.OculusApi.Vector2f) - fullName.vb: XRTK.Oculus.Plugins.OculusApi.Vector2f.Widening(UnityEngine.Vector2 to XRTK.Oculus.Plugins.OculusApi.Vector2f) - nameWithType: OculusApi.Vector2f.Implicit(Vector2 to OculusApi.Vector2f) - nameWithType.vb: OculusApi.Vector2f.Widening(Vector2 to OculusApi.Vector2f) -- uid: XRTK.Oculus.Plugins.OculusApi.Vector2f.op_Implicit(XRTK.Oculus.Plugins.OculusApi.Vector2f)~UnityEngine.Vector2 - name: Implicit(OculusApi.Vector2f to Vector2) - href: api/XRTK.Oculus.Plugins.OculusApi.Vector2f.html#XRTK_Oculus_Plugins_OculusApi_Vector2f_op_Implicit_XRTK_Oculus_Plugins_OculusApi_Vector2f__UnityEngine_Vector2 - commentId: M:XRTK.Oculus.Plugins.OculusApi.Vector2f.op_Implicit(XRTK.Oculus.Plugins.OculusApi.Vector2f)~UnityEngine.Vector2 - name.vb: Widening(OculusApi.Vector2f to Vector2) - fullName: XRTK.Oculus.Plugins.OculusApi.Vector2f.Implicit(XRTK.Oculus.Plugins.OculusApi.Vector2f to UnityEngine.Vector2) - fullName.vb: XRTK.Oculus.Plugins.OculusApi.Vector2f.Widening(XRTK.Oculus.Plugins.OculusApi.Vector2f to UnityEngine.Vector2) - nameWithType: OculusApi.Vector2f.Implicit(OculusApi.Vector2f to Vector2) - nameWithType.vb: OculusApi.Vector2f.Widening(OculusApi.Vector2f to Vector2) -- uid: XRTK.Oculus.Plugins.OculusApi.Vector2f.op_Implicit* - name: Implicit - href: api/XRTK.Oculus.Plugins.OculusApi.Vector2f.html#XRTK_Oculus_Plugins_OculusApi_Vector2f_op_Implicit_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.Vector2f.op_Implicit - isSpec: "True" - name.vb: Widening - fullName: XRTK.Oculus.Plugins.OculusApi.Vector2f.Implicit - fullName.vb: XRTK.Oculus.Plugins.OculusApi.Vector2f.Widening - nameWithType: OculusApi.Vector2f.Implicit - nameWithType.vb: OculusApi.Vector2f.Widening -- uid: XRTK.Oculus.Plugins.OculusApi.Vector2f.x - name: x - href: api/XRTK.Oculus.Plugins.OculusApi.Vector2f.html#XRTK_Oculus_Plugins_OculusApi_Vector2f_x - commentId: F:XRTK.Oculus.Plugins.OculusApi.Vector2f.x - fullName: XRTK.Oculus.Plugins.OculusApi.Vector2f.x - nameWithType: OculusApi.Vector2f.x -- uid: XRTK.Oculus.Plugins.OculusApi.Vector2f.y - name: y - href: api/XRTK.Oculus.Plugins.OculusApi.Vector2f.html#XRTK_Oculus_Plugins_OculusApi_Vector2f_y - commentId: F:XRTK.Oculus.Plugins.OculusApi.Vector2f.y - fullName: XRTK.Oculus.Plugins.OculusApi.Vector2f.y - nameWithType: OculusApi.Vector2f.y -- uid: XRTK.Oculus.Plugins.OculusApi.Vector2i - name: OculusApi.Vector2i - href: api/XRTK.Oculus.Plugins.OculusApi.Vector2i.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.Vector2i - fullName: XRTK.Oculus.Plugins.OculusApi.Vector2i - nameWithType: OculusApi.Vector2i -- uid: XRTK.Oculus.Plugins.OculusApi.Vector2i.x - name: x - href: api/XRTK.Oculus.Plugins.OculusApi.Vector2i.html#XRTK_Oculus_Plugins_OculusApi_Vector2i_x - commentId: F:XRTK.Oculus.Plugins.OculusApi.Vector2i.x - fullName: XRTK.Oculus.Plugins.OculusApi.Vector2i.x - nameWithType: OculusApi.Vector2i.x -- uid: XRTK.Oculus.Plugins.OculusApi.Vector2i.y - name: y - href: api/XRTK.Oculus.Plugins.OculusApi.Vector2i.html#XRTK_Oculus_Plugins_OculusApi_Vector2i_y - commentId: F:XRTK.Oculus.Plugins.OculusApi.Vector2i.y - fullName: XRTK.Oculus.Plugins.OculusApi.Vector2i.y - nameWithType: OculusApi.Vector2i.y -- uid: XRTK.Oculus.Plugins.OculusApi.Vector3f - name: OculusApi.Vector3f - href: api/XRTK.Oculus.Plugins.OculusApi.Vector3f.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.Vector3f - fullName: XRTK.Oculus.Plugins.OculusApi.Vector3f - nameWithType: OculusApi.Vector3f -- uid: XRTK.Oculus.Plugins.OculusApi.Vector3f.op_Implicit(UnityEngine.Vector3)~XRTK.Oculus.Plugins.OculusApi.Vector3f - name: Implicit(Vector3 to OculusApi.Vector3f) - href: api/XRTK.Oculus.Plugins.OculusApi.Vector3f.html#XRTK_Oculus_Plugins_OculusApi_Vector3f_op_Implicit_UnityEngine_Vector3__XRTK_Oculus_Plugins_OculusApi_Vector3f - commentId: M:XRTK.Oculus.Plugins.OculusApi.Vector3f.op_Implicit(UnityEngine.Vector3)~XRTK.Oculus.Plugins.OculusApi.Vector3f - name.vb: Widening(Vector3 to OculusApi.Vector3f) - fullName: XRTK.Oculus.Plugins.OculusApi.Vector3f.Implicit(UnityEngine.Vector3 to XRTK.Oculus.Plugins.OculusApi.Vector3f) - fullName.vb: XRTK.Oculus.Plugins.OculusApi.Vector3f.Widening(UnityEngine.Vector3 to XRTK.Oculus.Plugins.OculusApi.Vector3f) - nameWithType: OculusApi.Vector3f.Implicit(Vector3 to OculusApi.Vector3f) - nameWithType.vb: OculusApi.Vector3f.Widening(Vector3 to OculusApi.Vector3f) -- uid: XRTK.Oculus.Plugins.OculusApi.Vector3f.op_Implicit(XRTK.Oculus.Plugins.OculusApi.Vector3f)~UnityEngine.Vector3 - name: Implicit(OculusApi.Vector3f to Vector3) - href: api/XRTK.Oculus.Plugins.OculusApi.Vector3f.html#XRTK_Oculus_Plugins_OculusApi_Vector3f_op_Implicit_XRTK_Oculus_Plugins_OculusApi_Vector3f__UnityEngine_Vector3 - commentId: M:XRTK.Oculus.Plugins.OculusApi.Vector3f.op_Implicit(XRTK.Oculus.Plugins.OculusApi.Vector3f)~UnityEngine.Vector3 - name.vb: Widening(OculusApi.Vector3f to Vector3) - fullName: XRTK.Oculus.Plugins.OculusApi.Vector3f.Implicit(XRTK.Oculus.Plugins.OculusApi.Vector3f to UnityEngine.Vector3) - fullName.vb: XRTK.Oculus.Plugins.OculusApi.Vector3f.Widening(XRTK.Oculus.Plugins.OculusApi.Vector3f to UnityEngine.Vector3) - nameWithType: OculusApi.Vector3f.Implicit(OculusApi.Vector3f to Vector3) - nameWithType.vb: OculusApi.Vector3f.Widening(OculusApi.Vector3f to Vector3) -- uid: XRTK.Oculus.Plugins.OculusApi.Vector3f.op_Implicit* - name: Implicit - href: api/XRTK.Oculus.Plugins.OculusApi.Vector3f.html#XRTK_Oculus_Plugins_OculusApi_Vector3f_op_Implicit_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.Vector3f.op_Implicit - isSpec: "True" - name.vb: Widening - fullName: XRTK.Oculus.Plugins.OculusApi.Vector3f.Implicit - fullName.vb: XRTK.Oculus.Plugins.OculusApi.Vector3f.Widening - nameWithType: OculusApi.Vector3f.Implicit - nameWithType.vb: OculusApi.Vector3f.Widening -- uid: XRTK.Oculus.Plugins.OculusApi.Vector3f.ToString - name: ToString() - href: api/XRTK.Oculus.Plugins.OculusApi.Vector3f.html#XRTK_Oculus_Plugins_OculusApi_Vector3f_ToString - commentId: M:XRTK.Oculus.Plugins.OculusApi.Vector3f.ToString - fullName: XRTK.Oculus.Plugins.OculusApi.Vector3f.ToString() - nameWithType: OculusApi.Vector3f.ToString() -- uid: XRTK.Oculus.Plugins.OculusApi.Vector3f.ToString* - name: ToString - href: api/XRTK.Oculus.Plugins.OculusApi.Vector3f.html#XRTK_Oculus_Plugins_OculusApi_Vector3f_ToString_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.Vector3f.ToString - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.Vector3f.ToString - nameWithType: OculusApi.Vector3f.ToString -- uid: XRTK.Oculus.Plugins.OculusApi.Vector3f.ToVector3FlippedZ - name: ToVector3FlippedZ() - href: api/XRTK.Oculus.Plugins.OculusApi.Vector3f.html#XRTK_Oculus_Plugins_OculusApi_Vector3f_ToVector3FlippedZ - commentId: M:XRTK.Oculus.Plugins.OculusApi.Vector3f.ToVector3FlippedZ - fullName: XRTK.Oculus.Plugins.OculusApi.Vector3f.ToVector3FlippedZ() - nameWithType: OculusApi.Vector3f.ToVector3FlippedZ() -- uid: XRTK.Oculus.Plugins.OculusApi.Vector3f.ToVector3FlippedZ* - name: ToVector3FlippedZ - href: api/XRTK.Oculus.Plugins.OculusApi.Vector3f.html#XRTK_Oculus_Plugins_OculusApi_Vector3f_ToVector3FlippedZ_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.Vector3f.ToVector3FlippedZ - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.Vector3f.ToVector3FlippedZ - nameWithType: OculusApi.Vector3f.ToVector3FlippedZ -- uid: XRTK.Oculus.Plugins.OculusApi.Vector3f.x - name: x - href: api/XRTK.Oculus.Plugins.OculusApi.Vector3f.html#XRTK_Oculus_Plugins_OculusApi_Vector3f_x - commentId: F:XRTK.Oculus.Plugins.OculusApi.Vector3f.x - fullName: XRTK.Oculus.Plugins.OculusApi.Vector3f.x - nameWithType: OculusApi.Vector3f.x -- uid: XRTK.Oculus.Plugins.OculusApi.Vector3f.y - name: y - href: api/XRTK.Oculus.Plugins.OculusApi.Vector3f.html#XRTK_Oculus_Plugins_OculusApi_Vector3f_y - commentId: F:XRTK.Oculus.Plugins.OculusApi.Vector3f.y - fullName: XRTK.Oculus.Plugins.OculusApi.Vector3f.y - nameWithType: OculusApi.Vector3f.y -- uid: XRTK.Oculus.Plugins.OculusApi.Vector3f.z - name: z - href: api/XRTK.Oculus.Plugins.OculusApi.Vector3f.html#XRTK_Oculus_Plugins_OculusApi_Vector3f_z - commentId: F:XRTK.Oculus.Plugins.OculusApi.Vector3f.z - fullName: XRTK.Oculus.Plugins.OculusApi.Vector3f.z - nameWithType: OculusApi.Vector3f.z -- uid: XRTK.Oculus.Plugins.OculusApi.Vector3f.zero - name: zero - href: api/XRTK.Oculus.Plugins.OculusApi.Vector3f.html#XRTK_Oculus_Plugins_OculusApi_Vector3f_zero - commentId: F:XRTK.Oculus.Plugins.OculusApi.Vector3f.zero - fullName: XRTK.Oculus.Plugins.OculusApi.Vector3f.zero - nameWithType: OculusApi.Vector3f.zero -- uid: XRTK.Oculus.Plugins.OculusApi.Vector4f - name: OculusApi.Vector4f - href: api/XRTK.Oculus.Plugins.OculusApi.Vector4f.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.Vector4f - fullName: XRTK.Oculus.Plugins.OculusApi.Vector4f - nameWithType: OculusApi.Vector4f -- uid: XRTK.Oculus.Plugins.OculusApi.Vector4f.op_Implicit(UnityEngine.Vector4)~XRTK.Oculus.Plugins.OculusApi.Vector4f - name: Implicit(Vector4 to OculusApi.Vector4f) - href: api/XRTK.Oculus.Plugins.OculusApi.Vector4f.html#XRTK_Oculus_Plugins_OculusApi_Vector4f_op_Implicit_UnityEngine_Vector4__XRTK_Oculus_Plugins_OculusApi_Vector4f - commentId: M:XRTK.Oculus.Plugins.OculusApi.Vector4f.op_Implicit(UnityEngine.Vector4)~XRTK.Oculus.Plugins.OculusApi.Vector4f - name.vb: Widening(Vector4 to OculusApi.Vector4f) - fullName: XRTK.Oculus.Plugins.OculusApi.Vector4f.Implicit(UnityEngine.Vector4 to XRTK.Oculus.Plugins.OculusApi.Vector4f) - fullName.vb: XRTK.Oculus.Plugins.OculusApi.Vector4f.Widening(UnityEngine.Vector4 to XRTK.Oculus.Plugins.OculusApi.Vector4f) - nameWithType: OculusApi.Vector4f.Implicit(Vector4 to OculusApi.Vector4f) - nameWithType.vb: OculusApi.Vector4f.Widening(Vector4 to OculusApi.Vector4f) -- uid: XRTK.Oculus.Plugins.OculusApi.Vector4f.op_Implicit(XRTK.Oculus.Plugins.OculusApi.Vector4f)~UnityEngine.Vector4 - name: Implicit(OculusApi.Vector4f to Vector4) - href: api/XRTK.Oculus.Plugins.OculusApi.Vector4f.html#XRTK_Oculus_Plugins_OculusApi_Vector4f_op_Implicit_XRTK_Oculus_Plugins_OculusApi_Vector4f__UnityEngine_Vector4 - commentId: M:XRTK.Oculus.Plugins.OculusApi.Vector4f.op_Implicit(XRTK.Oculus.Plugins.OculusApi.Vector4f)~UnityEngine.Vector4 - name.vb: Widening(OculusApi.Vector4f to Vector4) - fullName: XRTK.Oculus.Plugins.OculusApi.Vector4f.Implicit(XRTK.Oculus.Plugins.OculusApi.Vector4f to UnityEngine.Vector4) - fullName.vb: XRTK.Oculus.Plugins.OculusApi.Vector4f.Widening(XRTK.Oculus.Plugins.OculusApi.Vector4f to UnityEngine.Vector4) - nameWithType: OculusApi.Vector4f.Implicit(OculusApi.Vector4f to Vector4) - nameWithType.vb: OculusApi.Vector4f.Widening(OculusApi.Vector4f to Vector4) -- uid: XRTK.Oculus.Plugins.OculusApi.Vector4f.op_Implicit* - name: Implicit - href: api/XRTK.Oculus.Plugins.OculusApi.Vector4f.html#XRTK_Oculus_Plugins_OculusApi_Vector4f_op_Implicit_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.Vector4f.op_Implicit - isSpec: "True" - name.vb: Widening - fullName: XRTK.Oculus.Plugins.OculusApi.Vector4f.Implicit - fullName.vb: XRTK.Oculus.Plugins.OculusApi.Vector4f.Widening - nameWithType: OculusApi.Vector4f.Implicit - nameWithType.vb: OculusApi.Vector4f.Widening -- uid: XRTK.Oculus.Plugins.OculusApi.Vector4f.ToString - name: ToString() - href: api/XRTK.Oculus.Plugins.OculusApi.Vector4f.html#XRTK_Oculus_Plugins_OculusApi_Vector4f_ToString - commentId: M:XRTK.Oculus.Plugins.OculusApi.Vector4f.ToString - fullName: XRTK.Oculus.Plugins.OculusApi.Vector4f.ToString() - nameWithType: OculusApi.Vector4f.ToString() -- uid: XRTK.Oculus.Plugins.OculusApi.Vector4f.ToString* - name: ToString - href: api/XRTK.Oculus.Plugins.OculusApi.Vector4f.html#XRTK_Oculus_Plugins_OculusApi_Vector4f_ToString_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.Vector4f.ToString - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.Vector4f.ToString - nameWithType: OculusApi.Vector4f.ToString -- uid: XRTK.Oculus.Plugins.OculusApi.Vector4f.w - name: w - href: api/XRTK.Oculus.Plugins.OculusApi.Vector4f.html#XRTK_Oculus_Plugins_OculusApi_Vector4f_w - commentId: F:XRTK.Oculus.Plugins.OculusApi.Vector4f.w - fullName: XRTK.Oculus.Plugins.OculusApi.Vector4f.w - nameWithType: OculusApi.Vector4f.w -- uid: XRTK.Oculus.Plugins.OculusApi.Vector4f.x - name: x - href: api/XRTK.Oculus.Plugins.OculusApi.Vector4f.html#XRTK_Oculus_Plugins_OculusApi_Vector4f_x - commentId: F:XRTK.Oculus.Plugins.OculusApi.Vector4f.x - fullName: XRTK.Oculus.Plugins.OculusApi.Vector4f.x - nameWithType: OculusApi.Vector4f.x -- uid: XRTK.Oculus.Plugins.OculusApi.Vector4f.y - name: y - href: api/XRTK.Oculus.Plugins.OculusApi.Vector4f.html#XRTK_Oculus_Plugins_OculusApi_Vector4f_y - commentId: F:XRTK.Oculus.Plugins.OculusApi.Vector4f.y - fullName: XRTK.Oculus.Plugins.OculusApi.Vector4f.y - nameWithType: OculusApi.Vector4f.y -- uid: XRTK.Oculus.Plugins.OculusApi.Vector4f.z - name: z - href: api/XRTK.Oculus.Plugins.OculusApi.Vector4f.html#XRTK_Oculus_Plugins_OculusApi_Vector4f_z - commentId: F:XRTK.Oculus.Plugins.OculusApi.Vector4f.z - fullName: XRTK.Oculus.Plugins.OculusApi.Vector4f.z - nameWithType: OculusApi.Vector4f.z -- uid: XRTK.Oculus.Plugins.OculusApi.Vector4f.zero - name: zero - href: api/XRTK.Oculus.Plugins.OculusApi.Vector4f.html#XRTK_Oculus_Plugins_OculusApi_Vector4f_zero - commentId: F:XRTK.Oculus.Plugins.OculusApi.Vector4f.zero - fullName: XRTK.Oculus.Plugins.OculusApi.Vector4f.zero - nameWithType: OculusApi.Vector4f.zero -- uid: XRTK.Oculus.Plugins.OculusApi.Vector4s - name: OculusApi.Vector4s - href: api/XRTK.Oculus.Plugins.OculusApi.Vector4s.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.Vector4s - fullName: XRTK.Oculus.Plugins.OculusApi.Vector4s - nameWithType: OculusApi.Vector4s -- uid: XRTK.Oculus.Plugins.OculusApi.Vector4s.ToString - name: ToString() - href: api/XRTK.Oculus.Plugins.OculusApi.Vector4s.html#XRTK_Oculus_Plugins_OculusApi_Vector4s_ToString - commentId: M:XRTK.Oculus.Plugins.OculusApi.Vector4s.ToString - fullName: XRTK.Oculus.Plugins.OculusApi.Vector4s.ToString() - nameWithType: OculusApi.Vector4s.ToString() -- uid: XRTK.Oculus.Plugins.OculusApi.Vector4s.ToString* - name: ToString - href: api/XRTK.Oculus.Plugins.OculusApi.Vector4s.html#XRTK_Oculus_Plugins_OculusApi_Vector4s_ToString_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.Vector4s.ToString - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.Vector4s.ToString - nameWithType: OculusApi.Vector4s.ToString -- uid: XRTK.Oculus.Plugins.OculusApi.Vector4s.w - name: w - href: api/XRTK.Oculus.Plugins.OculusApi.Vector4s.html#XRTK_Oculus_Plugins_OculusApi_Vector4s_w - commentId: F:XRTK.Oculus.Plugins.OculusApi.Vector4s.w - fullName: XRTK.Oculus.Plugins.OculusApi.Vector4s.w - nameWithType: OculusApi.Vector4s.w -- uid: XRTK.Oculus.Plugins.OculusApi.Vector4s.x - name: x - href: api/XRTK.Oculus.Plugins.OculusApi.Vector4s.html#XRTK_Oculus_Plugins_OculusApi_Vector4s_x - commentId: F:XRTK.Oculus.Plugins.OculusApi.Vector4s.x - fullName: XRTK.Oculus.Plugins.OculusApi.Vector4s.x - nameWithType: OculusApi.Vector4s.x -- uid: XRTK.Oculus.Plugins.OculusApi.Vector4s.y - name: y - href: api/XRTK.Oculus.Plugins.OculusApi.Vector4s.html#XRTK_Oculus_Plugins_OculusApi_Vector4s_y - commentId: F:XRTK.Oculus.Plugins.OculusApi.Vector4s.y - fullName: XRTK.Oculus.Plugins.OculusApi.Vector4s.y - nameWithType: OculusApi.Vector4s.y -- uid: XRTK.Oculus.Plugins.OculusApi.Vector4s.z - name: z - href: api/XRTK.Oculus.Plugins.OculusApi.Vector4s.html#XRTK_Oculus_Plugins_OculusApi_Vector4s_z - commentId: F:XRTK.Oculus.Plugins.OculusApi.Vector4s.z - fullName: XRTK.Oculus.Plugins.OculusApi.Vector4s.z - nameWithType: OculusApi.Vector4s.z -- uid: XRTK.Oculus.Plugins.OculusApi.Vector4s.zero - name: zero - href: api/XRTK.Oculus.Plugins.OculusApi.Vector4s.html#XRTK_Oculus_Plugins_OculusApi_Vector4s_zero - commentId: F:XRTK.Oculus.Plugins.OculusApi.Vector4s.zero - fullName: XRTK.Oculus.Plugins.OculusApi.Vector4s.zero - nameWithType: OculusApi.Vector4s.zero -- uid: XRTK.Oculus.Plugins.OculusApi.Version - name: Version - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_Version - commentId: P:XRTK.Oculus.Plugins.OculusApi.Version - fullName: XRTK.Oculus.Plugins.OculusApi.Version - nameWithType: OculusApi.Version -- uid: XRTK.Oculus.Plugins.OculusApi.Version* - name: Version - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_Version_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.Version - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.Version - nameWithType: OculusApi.Version -- uid: XRTK.Oculus.Plugins.OculusApi.vsyncCount - name: vsyncCount - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_vsyncCount - commentId: P:XRTK.Oculus.Plugins.OculusApi.vsyncCount - fullName: XRTK.Oculus.Plugins.OculusApi.vsyncCount - nameWithType: OculusApi.vsyncCount -- uid: XRTK.Oculus.Plugins.OculusApi.vsyncCount* - name: vsyncCount - href: api/XRTK.Oculus.Plugins.OculusApi.html#XRTK_Oculus_Plugins_OculusApi_vsyncCount_ - commentId: Overload:XRTK.Oculus.Plugins.OculusApi.vsyncCount - isSpec: "True" - fullName: XRTK.Oculus.Plugins.OculusApi.vsyncCount - nameWithType: OculusApi.vsyncCount -- uid: XRTK.Oculus.Plugins.OculusApi.XrApi - name: OculusApi.XrApi - href: api/XRTK.Oculus.Plugins.OculusApi.XrApi.html - commentId: T:XRTK.Oculus.Plugins.OculusApi.XrApi - fullName: XRTK.Oculus.Plugins.OculusApi.XrApi - nameWithType: OculusApi.XrApi -- uid: XRTK.Oculus.Plugins.OculusApi.XrApi.CAPI - name: CAPI - href: api/XRTK.Oculus.Plugins.OculusApi.XrApi.html#XRTK_Oculus_Plugins_OculusApi_XrApi_CAPI - commentId: F:XRTK.Oculus.Plugins.OculusApi.XrApi.CAPI - fullName: XRTK.Oculus.Plugins.OculusApi.XrApi.CAPI - nameWithType: OculusApi.XrApi.CAPI -- uid: XRTK.Oculus.Plugins.OculusApi.XrApi.EnumSize - name: EnumSize - href: api/XRTK.Oculus.Plugins.OculusApi.XrApi.html#XRTK_Oculus_Plugins_OculusApi_XrApi_EnumSize - commentId: F:XRTK.Oculus.Plugins.OculusApi.XrApi.EnumSize - fullName: XRTK.Oculus.Plugins.OculusApi.XrApi.EnumSize - nameWithType: OculusApi.XrApi.EnumSize -- uid: XRTK.Oculus.Plugins.OculusApi.XrApi.OpenXR - name: OpenXR - href: api/XRTK.Oculus.Plugins.OculusApi.XrApi.html#XRTK_Oculus_Plugins_OculusApi_XrApi_OpenXR - commentId: F:XRTK.Oculus.Plugins.OculusApi.XrApi.OpenXR - fullName: XRTK.Oculus.Plugins.OculusApi.XrApi.OpenXR - nameWithType: OculusApi.XrApi.OpenXR -- uid: XRTK.Oculus.Plugins.OculusApi.XrApi.Unknown - name: Unknown - href: api/XRTK.Oculus.Plugins.OculusApi.XrApi.html#XRTK_Oculus_Plugins_OculusApi_XrApi_Unknown - commentId: F:XRTK.Oculus.Plugins.OculusApi.XrApi.Unknown - fullName: XRTK.Oculus.Plugins.OculusApi.XrApi.Unknown - nameWithType: OculusApi.XrApi.Unknown -- uid: XRTK.Oculus.Plugins.OculusApi.XrApi.VRAPI - name: VRAPI - href: api/XRTK.Oculus.Plugins.OculusApi.XrApi.html#XRTK_Oculus_Plugins_OculusApi_XrApi_VRAPI - commentId: F:XRTK.Oculus.Plugins.OculusApi.XrApi.VRAPI - fullName: XRTK.Oculus.Plugins.OculusApi.XrApi.VRAPI - nameWithType: OculusApi.XrApi.VRAPI -- uid: XRTK.Oculus.Profiles - name: XRTK.Oculus.Profiles - href: api/XRTK.Oculus.Profiles.html - commentId: N:XRTK.Oculus.Profiles - fullName: XRTK.Oculus.Profiles - nameWithType: XRTK.Oculus.Profiles -- uid: XRTK.Oculus.Profiles.OculusControllerDataProviderProfile - name: OculusControllerDataProviderProfile - href: api/XRTK.Oculus.Profiles.OculusControllerDataProviderProfile.html - commentId: T:XRTK.Oculus.Profiles.OculusControllerDataProviderProfile - fullName: XRTK.Oculus.Profiles.OculusControllerDataProviderProfile - nameWithType: OculusControllerDataProviderProfile -- uid: XRTK.Oculus.Profiles.OculusControllerDataProviderProfile.GetDefaultControllerOptions - name: GetDefaultControllerOptions() - href: api/XRTK.Oculus.Profiles.OculusControllerDataProviderProfile.html#XRTK_Oculus_Profiles_OculusControllerDataProviderProfile_GetDefaultControllerOptions - commentId: M:XRTK.Oculus.Profiles.OculusControllerDataProviderProfile.GetDefaultControllerOptions - fullName: XRTK.Oculus.Profiles.OculusControllerDataProviderProfile.GetDefaultControllerOptions() - nameWithType: OculusControllerDataProviderProfile.GetDefaultControllerOptions() -- uid: XRTK.Oculus.Profiles.OculusControllerDataProviderProfile.GetDefaultControllerOptions* - name: GetDefaultControllerOptions - href: api/XRTK.Oculus.Profiles.OculusControllerDataProviderProfile.html#XRTK_Oculus_Profiles_OculusControllerDataProviderProfile_GetDefaultControllerOptions_ - commentId: Overload:XRTK.Oculus.Profiles.OculusControllerDataProviderProfile.GetDefaultControllerOptions - isSpec: "True" - fullName: XRTK.Oculus.Profiles.OculusControllerDataProviderProfile.GetDefaultControllerOptions - nameWithType: OculusControllerDataProviderProfile.GetDefaultControllerOptions -- uid: XRTK.Oculus.Profiles.OculusHandControllerDataProviderProfile - name: OculusHandControllerDataProviderProfile - href: api/XRTK.Oculus.Profiles.OculusHandControllerDataProviderProfile.html - commentId: T:XRTK.Oculus.Profiles.OculusHandControllerDataProviderProfile - fullName: XRTK.Oculus.Profiles.OculusHandControllerDataProviderProfile - nameWithType: OculusHandControllerDataProviderProfile -- uid: XRTK.Oculus.Profiles.OculusHandControllerDataProviderProfile.MinConfidenceRequired - name: MinConfidenceRequired - href: api/XRTK.Oculus.Profiles.OculusHandControllerDataProviderProfile.html#XRTK_Oculus_Profiles_OculusHandControllerDataProviderProfile_MinConfidenceRequired - commentId: P:XRTK.Oculus.Profiles.OculusHandControllerDataProviderProfile.MinConfidenceRequired - fullName: XRTK.Oculus.Profiles.OculusHandControllerDataProviderProfile.MinConfidenceRequired - nameWithType: OculusHandControllerDataProviderProfile.MinConfidenceRequired -- uid: XRTK.Oculus.Profiles.OculusHandControllerDataProviderProfile.MinConfidenceRequired* - name: MinConfidenceRequired - href: api/XRTK.Oculus.Profiles.OculusHandControllerDataProviderProfile.html#XRTK_Oculus_Profiles_OculusHandControllerDataProviderProfile_MinConfidenceRequired_ - commentId: Overload:XRTK.Oculus.Profiles.OculusHandControllerDataProviderProfile.MinConfidenceRequired - isSpec: "True" - fullName: XRTK.Oculus.Profiles.OculusHandControllerDataProviderProfile.MinConfidenceRequired - nameWithType: OculusHandControllerDataProviderProfile.MinConfidenceRequired -- uid: XRTK.Oculus.Providers.BoundarySystem - name: XRTK.Oculus.Providers.BoundarySystem - href: api/XRTK.Oculus.Providers.BoundarySystem.html - commentId: N:XRTK.Oculus.Providers.BoundarySystem - fullName: XRTK.Oculus.Providers.BoundarySystem - nameWithType: XRTK.Oculus.Providers.BoundarySystem -- uid: XRTK.Oculus.Providers.BoundarySystem.OculusBoundaryDataProvider - name: OculusBoundaryDataProvider - href: api/XRTK.Oculus.Providers.BoundarySystem.OculusBoundaryDataProvider.html - commentId: T:XRTK.Oculus.Providers.BoundarySystem.OculusBoundaryDataProvider - fullName: XRTK.Oculus.Providers.BoundarySystem.OculusBoundaryDataProvider - nameWithType: OculusBoundaryDataProvider -- uid: XRTK.Oculus.Providers.BoundarySystem.OculusBoundaryDataProvider.#ctor(System.String,System.UInt32,XRTK.Definitions.BaseMixedRealityProfile,XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem) - name: OculusBoundaryDataProvider(String, UInt32, BaseMixedRealityProfile, IMixedRealityBoundarySystem) - href: api/XRTK.Oculus.Providers.BoundarySystem.OculusBoundaryDataProvider.html#XRTK_Oculus_Providers_BoundarySystem_OculusBoundaryDataProvider__ctor_System_String_System_UInt32_XRTK_Definitions_BaseMixedRealityProfile_XRTK_Interfaces_BoundarySystem_IMixedRealityBoundarySystem_ - commentId: M:XRTK.Oculus.Providers.BoundarySystem.OculusBoundaryDataProvider.#ctor(System.String,System.UInt32,XRTK.Definitions.BaseMixedRealityProfile,XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem) - fullName: XRTK.Oculus.Providers.BoundarySystem.OculusBoundaryDataProvider.OculusBoundaryDataProvider(System.String, System.UInt32, XRTK.Definitions.BaseMixedRealityProfile, XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem) - nameWithType: OculusBoundaryDataProvider.OculusBoundaryDataProvider(String, UInt32, BaseMixedRealityProfile, IMixedRealityBoundarySystem) -- uid: XRTK.Oculus.Providers.BoundarySystem.OculusBoundaryDataProvider.#ctor* - name: OculusBoundaryDataProvider - href: api/XRTK.Oculus.Providers.BoundarySystem.OculusBoundaryDataProvider.html#XRTK_Oculus_Providers_BoundarySystem_OculusBoundaryDataProvider__ctor_ - commentId: Overload:XRTK.Oculus.Providers.BoundarySystem.OculusBoundaryDataProvider.#ctor - isSpec: "True" - fullName: XRTK.Oculus.Providers.BoundarySystem.OculusBoundaryDataProvider.OculusBoundaryDataProvider - nameWithType: OculusBoundaryDataProvider.OculusBoundaryDataProvider -- uid: XRTK.Oculus.Providers.BoundarySystem.OculusBoundaryDataProvider.Enable - name: Enable() - href: api/XRTK.Oculus.Providers.BoundarySystem.OculusBoundaryDataProvider.html#XRTK_Oculus_Providers_BoundarySystem_OculusBoundaryDataProvider_Enable - commentId: M:XRTK.Oculus.Providers.BoundarySystem.OculusBoundaryDataProvider.Enable - fullName: XRTK.Oculus.Providers.BoundarySystem.OculusBoundaryDataProvider.Enable() - nameWithType: OculusBoundaryDataProvider.Enable() -- uid: XRTK.Oculus.Providers.BoundarySystem.OculusBoundaryDataProvider.Enable* - name: Enable - href: api/XRTK.Oculus.Providers.BoundarySystem.OculusBoundaryDataProvider.html#XRTK_Oculus_Providers_BoundarySystem_OculusBoundaryDataProvider_Enable_ - commentId: Overload:XRTK.Oculus.Providers.BoundarySystem.OculusBoundaryDataProvider.Enable - isSpec: "True" - fullName: XRTK.Oculus.Providers.BoundarySystem.OculusBoundaryDataProvider.Enable - nameWithType: OculusBoundaryDataProvider.Enable -- uid: XRTK.Oculus.Providers.BoundarySystem.OculusBoundaryDataProvider.IsPlatformConfigured - name: IsPlatformConfigured - href: api/XRTK.Oculus.Providers.BoundarySystem.OculusBoundaryDataProvider.html#XRTK_Oculus_Providers_BoundarySystem_OculusBoundaryDataProvider_IsPlatformConfigured - commentId: P:XRTK.Oculus.Providers.BoundarySystem.OculusBoundaryDataProvider.IsPlatformConfigured - fullName: XRTK.Oculus.Providers.BoundarySystem.OculusBoundaryDataProvider.IsPlatformConfigured - nameWithType: OculusBoundaryDataProvider.IsPlatformConfigured -- uid: XRTK.Oculus.Providers.BoundarySystem.OculusBoundaryDataProvider.IsPlatformConfigured* - name: IsPlatformConfigured - href: api/XRTK.Oculus.Providers.BoundarySystem.OculusBoundaryDataProvider.html#XRTK_Oculus_Providers_BoundarySystem_OculusBoundaryDataProvider_IsPlatformConfigured_ - commentId: Overload:XRTK.Oculus.Providers.BoundarySystem.OculusBoundaryDataProvider.IsPlatformConfigured - isSpec: "True" - fullName: XRTK.Oculus.Providers.BoundarySystem.OculusBoundaryDataProvider.IsPlatformConfigured - nameWithType: OculusBoundaryDataProvider.IsPlatformConfigured -- uid: XRTK.Oculus.Providers.BoundarySystem.OculusBoundaryDataProvider.TryGetBoundaryGeometry(System.Collections.Generic.List{UnityEngine.Vector3}@) - name: TryGetBoundaryGeometry(ref List) - href: api/XRTK.Oculus.Providers.BoundarySystem.OculusBoundaryDataProvider.html#XRTK_Oculus_Providers_BoundarySystem_OculusBoundaryDataProvider_TryGetBoundaryGeometry_System_Collections_Generic_List_UnityEngine_Vector3___ - commentId: M:XRTK.Oculus.Providers.BoundarySystem.OculusBoundaryDataProvider.TryGetBoundaryGeometry(System.Collections.Generic.List{UnityEngine.Vector3}@) - name.vb: TryGetBoundaryGeometry(ByRef List(Of Vector3)) - fullName: XRTK.Oculus.Providers.BoundarySystem.OculusBoundaryDataProvider.TryGetBoundaryGeometry(ref System.Collections.Generic.List) - fullName.vb: XRTK.Oculus.Providers.BoundarySystem.OculusBoundaryDataProvider.TryGetBoundaryGeometry(ByRef System.Collections.Generic.List(Of UnityEngine.Vector3)) - nameWithType: OculusBoundaryDataProvider.TryGetBoundaryGeometry(ref List) - nameWithType.vb: OculusBoundaryDataProvider.TryGetBoundaryGeometry(ByRef List(Of Vector3)) -- uid: XRTK.Oculus.Providers.BoundarySystem.OculusBoundaryDataProvider.TryGetBoundaryGeometry* - name: TryGetBoundaryGeometry - href: api/XRTK.Oculus.Providers.BoundarySystem.OculusBoundaryDataProvider.html#XRTK_Oculus_Providers_BoundarySystem_OculusBoundaryDataProvider_TryGetBoundaryGeometry_ - commentId: Overload:XRTK.Oculus.Providers.BoundarySystem.OculusBoundaryDataProvider.TryGetBoundaryGeometry - isSpec: "True" - fullName: XRTK.Oculus.Providers.BoundarySystem.OculusBoundaryDataProvider.TryGetBoundaryGeometry - nameWithType: OculusBoundaryDataProvider.TryGetBoundaryGeometry -- uid: XRTK.Oculus.Providers.BoundarySystem.OculusBoundaryDataProvider.Visibility - name: Visibility - href: api/XRTK.Oculus.Providers.BoundarySystem.OculusBoundaryDataProvider.html#XRTK_Oculus_Providers_BoundarySystem_OculusBoundaryDataProvider_Visibility - commentId: P:XRTK.Oculus.Providers.BoundarySystem.OculusBoundaryDataProvider.Visibility - fullName: XRTK.Oculus.Providers.BoundarySystem.OculusBoundaryDataProvider.Visibility - nameWithType: OculusBoundaryDataProvider.Visibility -- uid: XRTK.Oculus.Providers.BoundarySystem.OculusBoundaryDataProvider.Visibility* - name: Visibility - href: api/XRTK.Oculus.Providers.BoundarySystem.OculusBoundaryDataProvider.html#XRTK_Oculus_Providers_BoundarySystem_OculusBoundaryDataProvider_Visibility_ - commentId: Overload:XRTK.Oculus.Providers.BoundarySystem.OculusBoundaryDataProvider.Visibility - isSpec: "True" - fullName: XRTK.Oculus.Providers.BoundarySystem.OculusBoundaryDataProvider.Visibility - nameWithType: OculusBoundaryDataProvider.Visibility -- uid: XRTK.Oculus.Providers.CameraSystem - name: XRTK.Oculus.Providers.CameraSystem - href: api/XRTK.Oculus.Providers.CameraSystem.html - commentId: N:XRTK.Oculus.Providers.CameraSystem - fullName: XRTK.Oculus.Providers.CameraSystem - nameWithType: XRTK.Oculus.Providers.CameraSystem -- uid: XRTK.Oculus.Providers.CameraSystem.OculusCameraDataProvider - name: OculusCameraDataProvider - href: api/XRTK.Oculus.Providers.CameraSystem.OculusCameraDataProvider.html - commentId: T:XRTK.Oculus.Providers.CameraSystem.OculusCameraDataProvider - fullName: XRTK.Oculus.Providers.CameraSystem.OculusCameraDataProvider - nameWithType: OculusCameraDataProvider -- uid: XRTK.Oculus.Providers.CameraSystem.OculusCameraDataProvider.#ctor(System.String,System.UInt32,XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile,XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem) - name: OculusCameraDataProvider(String, UInt32, BaseMixedRealityCameraDataProviderProfile, IMixedRealityCameraSystem) - href: api/XRTK.Oculus.Providers.CameraSystem.OculusCameraDataProvider.html#XRTK_Oculus_Providers_CameraSystem_OculusCameraDataProvider__ctor_System_String_System_UInt32_XRTK_Definitions_CameraSystem_BaseMixedRealityCameraDataProviderProfile_XRTK_Interfaces_CameraSystem_IMixedRealityCameraSystem_ - commentId: M:XRTK.Oculus.Providers.CameraSystem.OculusCameraDataProvider.#ctor(System.String,System.UInt32,XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile,XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem) - fullName: XRTK.Oculus.Providers.CameraSystem.OculusCameraDataProvider.OculusCameraDataProvider(System.String, System.UInt32, XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile, XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem) - nameWithType: OculusCameraDataProvider.OculusCameraDataProvider(String, UInt32, BaseMixedRealityCameraDataProviderProfile, IMixedRealityCameraSystem) -- uid: XRTK.Oculus.Providers.CameraSystem.OculusCameraDataProvider.#ctor* - name: OculusCameraDataProvider - href: api/XRTK.Oculus.Providers.CameraSystem.OculusCameraDataProvider.html#XRTK_Oculus_Providers_CameraSystem_OculusCameraDataProvider__ctor_ - commentId: Overload:XRTK.Oculus.Providers.CameraSystem.OculusCameraDataProvider.#ctor - isSpec: "True" - fullName: XRTK.Oculus.Providers.CameraSystem.OculusCameraDataProvider.OculusCameraDataProvider - nameWithType: OculusCameraDataProvider.OculusCameraDataProvider -- uid: XRTK.Oculus.Providers.CameraSystem.OculusCameraDataProvider.ApplySettingsForDefaultHeadHeight - name: ApplySettingsForDefaultHeadHeight() - href: api/XRTK.Oculus.Providers.CameraSystem.OculusCameraDataProvider.html#XRTK_Oculus_Providers_CameraSystem_OculusCameraDataProvider_ApplySettingsForDefaultHeadHeight - commentId: M:XRTK.Oculus.Providers.CameraSystem.OculusCameraDataProvider.ApplySettingsForDefaultHeadHeight - fullName: XRTK.Oculus.Providers.CameraSystem.OculusCameraDataProvider.ApplySettingsForDefaultHeadHeight() - nameWithType: OculusCameraDataProvider.ApplySettingsForDefaultHeadHeight() -- uid: XRTK.Oculus.Providers.CameraSystem.OculusCameraDataProvider.ApplySettingsForDefaultHeadHeight* - name: ApplySettingsForDefaultHeadHeight - href: api/XRTK.Oculus.Providers.CameraSystem.OculusCameraDataProvider.html#XRTK_Oculus_Providers_CameraSystem_OculusCameraDataProvider_ApplySettingsForDefaultHeadHeight_ - commentId: Overload:XRTK.Oculus.Providers.CameraSystem.OculusCameraDataProvider.ApplySettingsForDefaultHeadHeight - isSpec: "True" - fullName: XRTK.Oculus.Providers.CameraSystem.OculusCameraDataProvider.ApplySettingsForDefaultHeadHeight - nameWithType: OculusCameraDataProvider.ApplySettingsForDefaultHeadHeight -- uid: XRTK.Oculus.Providers.CameraSystem.OculusCameraDataProvider.Update - name: Update() - href: api/XRTK.Oculus.Providers.CameraSystem.OculusCameraDataProvider.html#XRTK_Oculus_Providers_CameraSystem_OculusCameraDataProvider_Update - commentId: M:XRTK.Oculus.Providers.CameraSystem.OculusCameraDataProvider.Update - fullName: XRTK.Oculus.Providers.CameraSystem.OculusCameraDataProvider.Update() - nameWithType: OculusCameraDataProvider.Update() -- uid: XRTK.Oculus.Providers.CameraSystem.OculusCameraDataProvider.Update* - name: Update - href: api/XRTK.Oculus.Providers.CameraSystem.OculusCameraDataProvider.html#XRTK_Oculus_Providers_CameraSystem_OculusCameraDataProvider_Update_ - commentId: Overload:XRTK.Oculus.Providers.CameraSystem.OculusCameraDataProvider.Update - isSpec: "True" - fullName: XRTK.Oculus.Providers.CameraSystem.OculusCameraDataProvider.Update - nameWithType: OculusCameraDataProvider.Update -- uid: XRTK.Oculus.Providers.Controllers - name: XRTK.Oculus.Providers.Controllers - href: api/XRTK.Oculus.Providers.Controllers.html - commentId: N:XRTK.Oculus.Providers.Controllers - fullName: XRTK.Oculus.Providers.Controllers - nameWithType: XRTK.Oculus.Providers.Controllers -- uid: XRTK.Oculus.Providers.Controllers.BaseOculusController - name: BaseOculusController - href: api/XRTK.Oculus.Providers.Controllers.BaseOculusController.html - commentId: T:XRTK.Oculus.Providers.Controllers.BaseOculusController - fullName: XRTK.Oculus.Providers.Controllers.BaseOculusController - nameWithType: BaseOculusController -- uid: XRTK.Oculus.Providers.Controllers.BaseOculusController.#ctor - name: BaseOculusController() - href: api/XRTK.Oculus.Providers.Controllers.BaseOculusController.html#XRTK_Oculus_Providers_Controllers_BaseOculusController__ctor - commentId: M:XRTK.Oculus.Providers.Controllers.BaseOculusController.#ctor - fullName: XRTK.Oculus.Providers.Controllers.BaseOculusController.BaseOculusController() - nameWithType: BaseOculusController.BaseOculusController() -- uid: XRTK.Oculus.Providers.Controllers.BaseOculusController.#ctor(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider,XRTK.Definitions.Devices.TrackingState,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile,XRTK.Oculus.Plugins.OculusApi.Controller,XRTK.Oculus.Plugins.OculusApi.Node) - name: BaseOculusController(IMixedRealityControllerDataProvider, TrackingState, Handedness, MixedRealityControllerMappingProfile, OculusApi.Controller, OculusApi.Node) - href: api/XRTK.Oculus.Providers.Controllers.BaseOculusController.html#XRTK_Oculus_Providers_Controllers_BaseOculusController__ctor_XRTK_Interfaces_Providers_Controllers_IMixedRealityControllerDataProvider_XRTK_Definitions_Devices_TrackingState_XRTK_Definitions_Utilities_Handedness_XRTK_Definitions_Controllers_MixedRealityControllerMappingProfile_XRTK_Oculus_Plugins_OculusApi_Controller_XRTK_Oculus_Plugins_OculusApi_Node_ - commentId: M:XRTK.Oculus.Providers.Controllers.BaseOculusController.#ctor(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider,XRTK.Definitions.Devices.TrackingState,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile,XRTK.Oculus.Plugins.OculusApi.Controller,XRTK.Oculus.Plugins.OculusApi.Node) - fullName: XRTK.Oculus.Providers.Controllers.BaseOculusController.BaseOculusController(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider, XRTK.Definitions.Devices.TrackingState, XRTK.Definitions.Utilities.Handedness, XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile, XRTK.Oculus.Plugins.OculusApi.Controller, XRTK.Oculus.Plugins.OculusApi.Node) - nameWithType: BaseOculusController.BaseOculusController(IMixedRealityControllerDataProvider, TrackingState, Handedness, MixedRealityControllerMappingProfile, OculusApi.Controller, OculusApi.Node) -- uid: XRTK.Oculus.Providers.Controllers.BaseOculusController.#ctor* - name: BaseOculusController - href: api/XRTK.Oculus.Providers.Controllers.BaseOculusController.html#XRTK_Oculus_Providers_Controllers_BaseOculusController__ctor_ - commentId: Overload:XRTK.Oculus.Providers.Controllers.BaseOculusController.#ctor - isSpec: "True" - fullName: XRTK.Oculus.Providers.Controllers.BaseOculusController.BaseOculusController - nameWithType: BaseOculusController.BaseOculusController -- uid: XRTK.Oculus.Providers.Controllers.BaseOculusController.DefaultInteractions - name: DefaultInteractions - href: api/XRTK.Oculus.Providers.Controllers.BaseOculusController.html#XRTK_Oculus_Providers_Controllers_BaseOculusController_DefaultInteractions - commentId: P:XRTK.Oculus.Providers.Controllers.BaseOculusController.DefaultInteractions - fullName: XRTK.Oculus.Providers.Controllers.BaseOculusController.DefaultInteractions - nameWithType: BaseOculusController.DefaultInteractions -- uid: XRTK.Oculus.Providers.Controllers.BaseOculusController.DefaultInteractions* - name: DefaultInteractions - href: api/XRTK.Oculus.Providers.Controllers.BaseOculusController.html#XRTK_Oculus_Providers_Controllers_BaseOculusController_DefaultInteractions_ - commentId: Overload:XRTK.Oculus.Providers.Controllers.BaseOculusController.DefaultInteractions - isSpec: "True" - fullName: XRTK.Oculus.Providers.Controllers.BaseOculusController.DefaultInteractions - nameWithType: BaseOculusController.DefaultInteractions -- uid: XRTK.Oculus.Providers.Controllers.BaseOculusController.DefaultLeftHandedInteractions - name: DefaultLeftHandedInteractions - href: api/XRTK.Oculus.Providers.Controllers.BaseOculusController.html#XRTK_Oculus_Providers_Controllers_BaseOculusController_DefaultLeftHandedInteractions - commentId: P:XRTK.Oculus.Providers.Controllers.BaseOculusController.DefaultLeftHandedInteractions - fullName: XRTK.Oculus.Providers.Controllers.BaseOculusController.DefaultLeftHandedInteractions - nameWithType: BaseOculusController.DefaultLeftHandedInteractions -- uid: XRTK.Oculus.Providers.Controllers.BaseOculusController.DefaultLeftHandedInteractions* - name: DefaultLeftHandedInteractions - href: api/XRTK.Oculus.Providers.Controllers.BaseOculusController.html#XRTK_Oculus_Providers_Controllers_BaseOculusController_DefaultLeftHandedInteractions_ - commentId: Overload:XRTK.Oculus.Providers.Controllers.BaseOculusController.DefaultLeftHandedInteractions - isSpec: "True" - fullName: XRTK.Oculus.Providers.Controllers.BaseOculusController.DefaultLeftHandedInteractions - nameWithType: BaseOculusController.DefaultLeftHandedInteractions -- uid: XRTK.Oculus.Providers.Controllers.BaseOculusController.DefaultRightHandedInteractions - name: DefaultRightHandedInteractions - href: api/XRTK.Oculus.Providers.Controllers.BaseOculusController.html#XRTK_Oculus_Providers_Controllers_BaseOculusController_DefaultRightHandedInteractions - commentId: P:XRTK.Oculus.Providers.Controllers.BaseOculusController.DefaultRightHandedInteractions - fullName: XRTK.Oculus.Providers.Controllers.BaseOculusController.DefaultRightHandedInteractions - nameWithType: BaseOculusController.DefaultRightHandedInteractions -- uid: XRTK.Oculus.Providers.Controllers.BaseOculusController.DefaultRightHandedInteractions* - name: DefaultRightHandedInteractions - href: api/XRTK.Oculus.Providers.Controllers.BaseOculusController.html#XRTK_Oculus_Providers_Controllers_BaseOculusController_DefaultRightHandedInteractions_ - commentId: Overload:XRTK.Oculus.Providers.Controllers.BaseOculusController.DefaultRightHandedInteractions - isSpec: "True" - fullName: XRTK.Oculus.Providers.Controllers.BaseOculusController.DefaultRightHandedInteractions - nameWithType: BaseOculusController.DefaultRightHandedInteractions -- uid: XRTK.Oculus.Providers.Controllers.BaseOculusController.GripPoseOffset - name: GripPoseOffset - href: api/XRTK.Oculus.Providers.Controllers.BaseOculusController.html#XRTK_Oculus_Providers_Controllers_BaseOculusController_GripPoseOffset - commentId: P:XRTK.Oculus.Providers.Controllers.BaseOculusController.GripPoseOffset - fullName: XRTK.Oculus.Providers.Controllers.BaseOculusController.GripPoseOffset - nameWithType: BaseOculusController.GripPoseOffset -- uid: XRTK.Oculus.Providers.Controllers.BaseOculusController.GripPoseOffset* - name: GripPoseOffset - href: api/XRTK.Oculus.Providers.Controllers.BaseOculusController.html#XRTK_Oculus_Providers_Controllers_BaseOculusController_GripPoseOffset_ - commentId: Overload:XRTK.Oculus.Providers.Controllers.BaseOculusController.GripPoseOffset - isSpec: "True" - fullName: XRTK.Oculus.Providers.Controllers.BaseOculusController.GripPoseOffset - nameWithType: BaseOculusController.GripPoseOffset -- uid: XRTK.Oculus.Providers.Controllers.BaseOculusController.UpdateController - name: UpdateController() - href: api/XRTK.Oculus.Providers.Controllers.BaseOculusController.html#XRTK_Oculus_Providers_Controllers_BaseOculusController_UpdateController - commentId: M:XRTK.Oculus.Providers.Controllers.BaseOculusController.UpdateController - fullName: XRTK.Oculus.Providers.Controllers.BaseOculusController.UpdateController() - nameWithType: BaseOculusController.UpdateController() -- uid: XRTK.Oculus.Providers.Controllers.BaseOculusController.UpdateController* - name: UpdateController - href: api/XRTK.Oculus.Providers.Controllers.BaseOculusController.html#XRTK_Oculus_Providers_Controllers_BaseOculusController_UpdateController_ - commentId: Overload:XRTK.Oculus.Providers.Controllers.BaseOculusController.UpdateController - isSpec: "True" - fullName: XRTK.Oculus.Providers.Controllers.BaseOculusController.UpdateController - nameWithType: BaseOculusController.UpdateController -- uid: XRTK.Oculus.Providers.Controllers.OculusControllerDataProvider - name: OculusControllerDataProvider - href: api/XRTK.Oculus.Providers.Controllers.OculusControllerDataProvider.html - commentId: T:XRTK.Oculus.Providers.Controllers.OculusControllerDataProvider - fullName: XRTK.Oculus.Providers.Controllers.OculusControllerDataProvider - nameWithType: OculusControllerDataProvider -- uid: XRTK.Oculus.Providers.Controllers.OculusControllerDataProvider.#ctor(System.String,System.UInt32,XRTK.Oculus.Profiles.OculusControllerDataProviderProfile,XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - name: OculusControllerDataProvider(String, UInt32, OculusControllerDataProviderProfile, IMixedRealityInputSystem) - href: api/XRTK.Oculus.Providers.Controllers.OculusControllerDataProvider.html#XRTK_Oculus_Providers_Controllers_OculusControllerDataProvider__ctor_System_String_System_UInt32_XRTK_Oculus_Profiles_OculusControllerDataProviderProfile_XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_ - commentId: M:XRTK.Oculus.Providers.Controllers.OculusControllerDataProvider.#ctor(System.String,System.UInt32,XRTK.Oculus.Profiles.OculusControllerDataProviderProfile,XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - fullName: XRTK.Oculus.Providers.Controllers.OculusControllerDataProvider.OculusControllerDataProvider(System.String, System.UInt32, XRTK.Oculus.Profiles.OculusControllerDataProviderProfile, XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - nameWithType: OculusControllerDataProvider.OculusControllerDataProvider(String, UInt32, OculusControllerDataProviderProfile, IMixedRealityInputSystem) -- uid: XRTK.Oculus.Providers.Controllers.OculusControllerDataProvider.#ctor* - name: OculusControllerDataProvider - href: api/XRTK.Oculus.Providers.Controllers.OculusControllerDataProvider.html#XRTK_Oculus_Providers_Controllers_OculusControllerDataProvider__ctor_ - commentId: Overload:XRTK.Oculus.Providers.Controllers.OculusControllerDataProvider.#ctor - isSpec: "True" - fullName: XRTK.Oculus.Providers.Controllers.OculusControllerDataProvider.OculusControllerDataProvider - nameWithType: OculusControllerDataProvider.OculusControllerDataProvider -- uid: XRTK.Oculus.Providers.Controllers.OculusControllerDataProvider.Disable - name: Disable() - href: api/XRTK.Oculus.Providers.Controllers.OculusControllerDataProvider.html#XRTK_Oculus_Providers_Controllers_OculusControllerDataProvider_Disable - commentId: M:XRTK.Oculus.Providers.Controllers.OculusControllerDataProvider.Disable - fullName: XRTK.Oculus.Providers.Controllers.OculusControllerDataProvider.Disable() - nameWithType: OculusControllerDataProvider.Disable() -- uid: XRTK.Oculus.Providers.Controllers.OculusControllerDataProvider.Disable* - name: Disable - href: api/XRTK.Oculus.Providers.Controllers.OculusControllerDataProvider.html#XRTK_Oculus_Providers_Controllers_OculusControllerDataProvider_Disable_ - commentId: Overload:XRTK.Oculus.Providers.Controllers.OculusControllerDataProvider.Disable - isSpec: "True" - fullName: XRTK.Oculus.Providers.Controllers.OculusControllerDataProvider.Disable - nameWithType: OculusControllerDataProvider.Disable -- uid: XRTK.Oculus.Providers.Controllers.OculusControllerDataProvider.FixedUpdate - name: FixedUpdate() - href: api/XRTK.Oculus.Providers.Controllers.OculusControllerDataProvider.html#XRTK_Oculus_Providers_Controllers_OculusControllerDataProvider_FixedUpdate - commentId: M:XRTK.Oculus.Providers.Controllers.OculusControllerDataProvider.FixedUpdate - fullName: XRTK.Oculus.Providers.Controllers.OculusControllerDataProvider.FixedUpdate() - nameWithType: OculusControllerDataProvider.FixedUpdate() -- uid: XRTK.Oculus.Providers.Controllers.OculusControllerDataProvider.FixedUpdate* - name: FixedUpdate - href: api/XRTK.Oculus.Providers.Controllers.OculusControllerDataProvider.html#XRTK_Oculus_Providers_Controllers_OculusControllerDataProvider_FixedUpdate_ - commentId: Overload:XRTK.Oculus.Providers.Controllers.OculusControllerDataProvider.FixedUpdate - isSpec: "True" - fullName: XRTK.Oculus.Providers.Controllers.OculusControllerDataProvider.FixedUpdate - nameWithType: OculusControllerDataProvider.FixedUpdate -- uid: XRTK.Oculus.Providers.Controllers.OculusControllerDataProvider.Update - name: Update() - href: api/XRTK.Oculus.Providers.Controllers.OculusControllerDataProvider.html#XRTK_Oculus_Providers_Controllers_OculusControllerDataProvider_Update - commentId: M:XRTK.Oculus.Providers.Controllers.OculusControllerDataProvider.Update - fullName: XRTK.Oculus.Providers.Controllers.OculusControllerDataProvider.Update() - nameWithType: OculusControllerDataProvider.Update() -- uid: XRTK.Oculus.Providers.Controllers.OculusControllerDataProvider.Update* - name: Update - href: api/XRTK.Oculus.Providers.Controllers.OculusControllerDataProvider.html#XRTK_Oculus_Providers_Controllers_OculusControllerDataProvider_Update_ - commentId: Overload:XRTK.Oculus.Providers.Controllers.OculusControllerDataProvider.Update - isSpec: "True" - fullName: XRTK.Oculus.Providers.Controllers.OculusControllerDataProvider.Update - nameWithType: OculusControllerDataProvider.Update -- uid: XRTK.Oculus.Providers.Controllers.OculusHandControllerDataProvider - name: OculusHandControllerDataProvider - href: api/XRTK.Oculus.Providers.Controllers.OculusHandControllerDataProvider.html - commentId: T:XRTK.Oculus.Providers.Controllers.OculusHandControllerDataProvider - fullName: XRTK.Oculus.Providers.Controllers.OculusHandControllerDataProvider - nameWithType: OculusHandControllerDataProvider -- uid: XRTK.Oculus.Providers.Controllers.OculusHandControllerDataProvider.#ctor(System.String,System.UInt32,XRTK.Oculus.Profiles.OculusHandControllerDataProviderProfile,XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - name: OculusHandControllerDataProvider(String, UInt32, OculusHandControllerDataProviderProfile, IMixedRealityInputSystem) - href: api/XRTK.Oculus.Providers.Controllers.OculusHandControllerDataProvider.html#XRTK_Oculus_Providers_Controllers_OculusHandControllerDataProvider__ctor_System_String_System_UInt32_XRTK_Oculus_Profiles_OculusHandControllerDataProviderProfile_XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_ - commentId: M:XRTK.Oculus.Providers.Controllers.OculusHandControllerDataProvider.#ctor(System.String,System.UInt32,XRTK.Oculus.Profiles.OculusHandControllerDataProviderProfile,XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - fullName: XRTK.Oculus.Providers.Controllers.OculusHandControllerDataProvider.OculusHandControllerDataProvider(System.String, System.UInt32, XRTK.Oculus.Profiles.OculusHandControllerDataProviderProfile, XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - nameWithType: OculusHandControllerDataProvider.OculusHandControllerDataProvider(String, UInt32, OculusHandControllerDataProviderProfile, IMixedRealityInputSystem) -- uid: XRTK.Oculus.Providers.Controllers.OculusHandControllerDataProvider.#ctor* - name: OculusHandControllerDataProvider - href: api/XRTK.Oculus.Providers.Controllers.OculusHandControllerDataProvider.html#XRTK_Oculus_Providers_Controllers_OculusHandControllerDataProvider__ctor_ - commentId: Overload:XRTK.Oculus.Providers.Controllers.OculusHandControllerDataProvider.#ctor - isSpec: "True" - fullName: XRTK.Oculus.Providers.Controllers.OculusHandControllerDataProvider.OculusHandControllerDataProvider - nameWithType: OculusHandControllerDataProvider.OculusHandControllerDataProvider -- uid: XRTK.Oculus.Providers.Controllers.OculusHandControllerDataProvider.Disable - name: Disable() - href: api/XRTK.Oculus.Providers.Controllers.OculusHandControllerDataProvider.html#XRTK_Oculus_Providers_Controllers_OculusHandControllerDataProvider_Disable - commentId: M:XRTK.Oculus.Providers.Controllers.OculusHandControllerDataProvider.Disable - fullName: XRTK.Oculus.Providers.Controllers.OculusHandControllerDataProvider.Disable() - nameWithType: OculusHandControllerDataProvider.Disable() -- uid: XRTK.Oculus.Providers.Controllers.OculusHandControllerDataProvider.Disable* - name: Disable - href: api/XRTK.Oculus.Providers.Controllers.OculusHandControllerDataProvider.html#XRTK_Oculus_Providers_Controllers_OculusHandControllerDataProvider_Disable_ - commentId: Overload:XRTK.Oculus.Providers.Controllers.OculusHandControllerDataProvider.Disable - isSpec: "True" - fullName: XRTK.Oculus.Providers.Controllers.OculusHandControllerDataProvider.Disable - nameWithType: OculusHandControllerDataProvider.Disable -- uid: XRTK.Oculus.Providers.Controllers.OculusHandControllerDataProvider.MinConfidenceRequired - name: MinConfidenceRequired - href: api/XRTK.Oculus.Providers.Controllers.OculusHandControllerDataProvider.html#XRTK_Oculus_Providers_Controllers_OculusHandControllerDataProvider_MinConfidenceRequired - commentId: P:XRTK.Oculus.Providers.Controllers.OculusHandControllerDataProvider.MinConfidenceRequired - fullName: XRTK.Oculus.Providers.Controllers.OculusHandControllerDataProvider.MinConfidenceRequired - nameWithType: OculusHandControllerDataProvider.MinConfidenceRequired -- uid: XRTK.Oculus.Providers.Controllers.OculusHandControllerDataProvider.MinConfidenceRequired* - name: MinConfidenceRequired - href: api/XRTK.Oculus.Providers.Controllers.OculusHandControllerDataProvider.html#XRTK_Oculus_Providers_Controllers_OculusHandControllerDataProvider_MinConfidenceRequired_ - commentId: Overload:XRTK.Oculus.Providers.Controllers.OculusHandControllerDataProvider.MinConfidenceRequired - isSpec: "True" - fullName: XRTK.Oculus.Providers.Controllers.OculusHandControllerDataProvider.MinConfidenceRequired - nameWithType: OculusHandControllerDataProvider.MinConfidenceRequired -- uid: XRTK.Oculus.Providers.Controllers.OculusHandControllerDataProvider.Update - name: Update() - href: api/XRTK.Oculus.Providers.Controllers.OculusHandControllerDataProvider.html#XRTK_Oculus_Providers_Controllers_OculusHandControllerDataProvider_Update - commentId: M:XRTK.Oculus.Providers.Controllers.OculusHandControllerDataProvider.Update - fullName: XRTK.Oculus.Providers.Controllers.OculusHandControllerDataProvider.Update() - nameWithType: OculusHandControllerDataProvider.Update() -- uid: XRTK.Oculus.Providers.Controllers.OculusHandControllerDataProvider.Update* - name: Update - href: api/XRTK.Oculus.Providers.Controllers.OculusHandControllerDataProvider.html#XRTK_Oculus_Providers_Controllers_OculusHandControllerDataProvider_Update_ - commentId: Overload:XRTK.Oculus.Providers.Controllers.OculusHandControllerDataProvider.Update - isSpec: "True" - fullName: XRTK.Oculus.Providers.Controllers.OculusHandControllerDataProvider.Update - nameWithType: OculusHandControllerDataProvider.Update -- uid: XRTK.Oculus.Providers.Controllers.OculusRemoteController - name: OculusRemoteController - href: api/XRTK.Oculus.Providers.Controllers.OculusRemoteController.html - commentId: T:XRTK.Oculus.Providers.Controllers.OculusRemoteController - fullName: XRTK.Oculus.Providers.Controllers.OculusRemoteController - nameWithType: OculusRemoteController -- uid: XRTK.Oculus.Providers.Controllers.OculusRemoteController.#ctor - name: OculusRemoteController() - href: api/XRTK.Oculus.Providers.Controllers.OculusRemoteController.html#XRTK_Oculus_Providers_Controllers_OculusRemoteController__ctor - commentId: M:XRTK.Oculus.Providers.Controllers.OculusRemoteController.#ctor - fullName: XRTK.Oculus.Providers.Controllers.OculusRemoteController.OculusRemoteController() - nameWithType: OculusRemoteController.OculusRemoteController() -- uid: XRTK.Oculus.Providers.Controllers.OculusRemoteController.#ctor(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider,XRTK.Definitions.Devices.TrackingState,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile,XRTK.Oculus.Plugins.OculusApi.Controller,XRTK.Oculus.Plugins.OculusApi.Node) - name: OculusRemoteController(IMixedRealityControllerDataProvider, TrackingState, Handedness, MixedRealityControllerMappingProfile, OculusApi.Controller, OculusApi.Node) - href: api/XRTK.Oculus.Providers.Controllers.OculusRemoteController.html#XRTK_Oculus_Providers_Controllers_OculusRemoteController__ctor_XRTK_Interfaces_Providers_Controllers_IMixedRealityControllerDataProvider_XRTK_Definitions_Devices_TrackingState_XRTK_Definitions_Utilities_Handedness_XRTK_Definitions_Controllers_MixedRealityControllerMappingProfile_XRTK_Oculus_Plugins_OculusApi_Controller_XRTK_Oculus_Plugins_OculusApi_Node_ - commentId: M:XRTK.Oculus.Providers.Controllers.OculusRemoteController.#ctor(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider,XRTK.Definitions.Devices.TrackingState,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile,XRTK.Oculus.Plugins.OculusApi.Controller,XRTK.Oculus.Plugins.OculusApi.Node) - fullName: XRTK.Oculus.Providers.Controllers.OculusRemoteController.OculusRemoteController(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider, XRTK.Definitions.Devices.TrackingState, XRTK.Definitions.Utilities.Handedness, XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile, XRTK.Oculus.Plugins.OculusApi.Controller, XRTK.Oculus.Plugins.OculusApi.Node) - nameWithType: OculusRemoteController.OculusRemoteController(IMixedRealityControllerDataProvider, TrackingState, Handedness, MixedRealityControllerMappingProfile, OculusApi.Controller, OculusApi.Node) -- uid: XRTK.Oculus.Providers.Controllers.OculusRemoteController.#ctor* - name: OculusRemoteController - href: api/XRTK.Oculus.Providers.Controllers.OculusRemoteController.html#XRTK_Oculus_Providers_Controllers_OculusRemoteController__ctor_ - commentId: Overload:XRTK.Oculus.Providers.Controllers.OculusRemoteController.#ctor - isSpec: "True" - fullName: XRTK.Oculus.Providers.Controllers.OculusRemoteController.OculusRemoteController - nameWithType: OculusRemoteController.OculusRemoteController -- uid: XRTK.Oculus.Providers.Controllers.OculusRemoteController.DefaultInteractions - name: DefaultInteractions - href: api/XRTK.Oculus.Providers.Controllers.OculusRemoteController.html#XRTK_Oculus_Providers_Controllers_OculusRemoteController_DefaultInteractions - commentId: P:XRTK.Oculus.Providers.Controllers.OculusRemoteController.DefaultInteractions - fullName: XRTK.Oculus.Providers.Controllers.OculusRemoteController.DefaultInteractions - nameWithType: OculusRemoteController.DefaultInteractions -- uid: XRTK.Oculus.Providers.Controllers.OculusRemoteController.DefaultInteractions* - name: DefaultInteractions - href: api/XRTK.Oculus.Providers.Controllers.OculusRemoteController.html#XRTK_Oculus_Providers_Controllers_OculusRemoteController_DefaultInteractions_ - commentId: Overload:XRTK.Oculus.Providers.Controllers.OculusRemoteController.DefaultInteractions - isSpec: "True" - fullName: XRTK.Oculus.Providers.Controllers.OculusRemoteController.DefaultInteractions - nameWithType: OculusRemoteController.DefaultInteractions -- uid: XRTK.Oculus.Providers.Controllers.OculusTouchController - name: OculusTouchController - href: api/XRTK.Oculus.Providers.Controllers.OculusTouchController.html - commentId: T:XRTK.Oculus.Providers.Controllers.OculusTouchController - fullName: XRTK.Oculus.Providers.Controllers.OculusTouchController - nameWithType: OculusTouchController -- uid: XRTK.Oculus.Providers.Controllers.OculusTouchController.#ctor - name: OculusTouchController() - href: api/XRTK.Oculus.Providers.Controllers.OculusTouchController.html#XRTK_Oculus_Providers_Controllers_OculusTouchController__ctor - commentId: M:XRTK.Oculus.Providers.Controllers.OculusTouchController.#ctor - fullName: XRTK.Oculus.Providers.Controllers.OculusTouchController.OculusTouchController() - nameWithType: OculusTouchController.OculusTouchController() -- uid: XRTK.Oculus.Providers.Controllers.OculusTouchController.#ctor(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider,XRTK.Definitions.Devices.TrackingState,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile,XRTK.Oculus.Plugins.OculusApi.Controller,XRTK.Oculus.Plugins.OculusApi.Node) - name: OculusTouchController(IMixedRealityControllerDataProvider, TrackingState, Handedness, MixedRealityControllerMappingProfile, OculusApi.Controller, OculusApi.Node) - href: api/XRTK.Oculus.Providers.Controllers.OculusTouchController.html#XRTK_Oculus_Providers_Controllers_OculusTouchController__ctor_XRTK_Interfaces_Providers_Controllers_IMixedRealityControllerDataProvider_XRTK_Definitions_Devices_TrackingState_XRTK_Definitions_Utilities_Handedness_XRTK_Definitions_Controllers_MixedRealityControllerMappingProfile_XRTK_Oculus_Plugins_OculusApi_Controller_XRTK_Oculus_Plugins_OculusApi_Node_ - commentId: M:XRTK.Oculus.Providers.Controllers.OculusTouchController.#ctor(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider,XRTK.Definitions.Devices.TrackingState,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile,XRTK.Oculus.Plugins.OculusApi.Controller,XRTK.Oculus.Plugins.OculusApi.Node) - fullName: XRTK.Oculus.Providers.Controllers.OculusTouchController.OculusTouchController(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider, XRTK.Definitions.Devices.TrackingState, XRTK.Definitions.Utilities.Handedness, XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile, XRTK.Oculus.Plugins.OculusApi.Controller, XRTK.Oculus.Plugins.OculusApi.Node) - nameWithType: OculusTouchController.OculusTouchController(IMixedRealityControllerDataProvider, TrackingState, Handedness, MixedRealityControllerMappingProfile, OculusApi.Controller, OculusApi.Node) -- uid: XRTK.Oculus.Providers.Controllers.OculusTouchController.#ctor* - name: OculusTouchController - href: api/XRTK.Oculus.Providers.Controllers.OculusTouchController.html#XRTK_Oculus_Providers_Controllers_OculusTouchController__ctor_ - commentId: Overload:XRTK.Oculus.Providers.Controllers.OculusTouchController.#ctor - isSpec: "True" - fullName: XRTK.Oculus.Providers.Controllers.OculusTouchController.OculusTouchController - nameWithType: OculusTouchController.OculusTouchController -- uid: XRTK.Oculus.Providers.Controllers.OculusTouchController.DefaultLeftHandedInteractions - name: DefaultLeftHandedInteractions - href: api/XRTK.Oculus.Providers.Controllers.OculusTouchController.html#XRTK_Oculus_Providers_Controllers_OculusTouchController_DefaultLeftHandedInteractions - commentId: P:XRTK.Oculus.Providers.Controllers.OculusTouchController.DefaultLeftHandedInteractions - fullName: XRTK.Oculus.Providers.Controllers.OculusTouchController.DefaultLeftHandedInteractions - nameWithType: OculusTouchController.DefaultLeftHandedInteractions -- uid: XRTK.Oculus.Providers.Controllers.OculusTouchController.DefaultLeftHandedInteractions* - name: DefaultLeftHandedInteractions - href: api/XRTK.Oculus.Providers.Controllers.OculusTouchController.html#XRTK_Oculus_Providers_Controllers_OculusTouchController_DefaultLeftHandedInteractions_ - commentId: Overload:XRTK.Oculus.Providers.Controllers.OculusTouchController.DefaultLeftHandedInteractions - isSpec: "True" - fullName: XRTK.Oculus.Providers.Controllers.OculusTouchController.DefaultLeftHandedInteractions - nameWithType: OculusTouchController.DefaultLeftHandedInteractions -- uid: XRTK.Oculus.Providers.Controllers.OculusTouchController.DefaultRightHandedInteractions - name: DefaultRightHandedInteractions - href: api/XRTK.Oculus.Providers.Controllers.OculusTouchController.html#XRTK_Oculus_Providers_Controllers_OculusTouchController_DefaultRightHandedInteractions - commentId: P:XRTK.Oculus.Providers.Controllers.OculusTouchController.DefaultRightHandedInteractions - fullName: XRTK.Oculus.Providers.Controllers.OculusTouchController.DefaultRightHandedInteractions - nameWithType: OculusTouchController.DefaultRightHandedInteractions -- uid: XRTK.Oculus.Providers.Controllers.OculusTouchController.DefaultRightHandedInteractions* - name: DefaultRightHandedInteractions - href: api/XRTK.Oculus.Providers.Controllers.OculusTouchController.html#XRTK_Oculus_Providers_Controllers_OculusTouchController_DefaultRightHandedInteractions_ - commentId: Overload:XRTK.Oculus.Providers.Controllers.OculusTouchController.DefaultRightHandedInteractions - isSpec: "True" - fullName: XRTK.Oculus.Providers.Controllers.OculusTouchController.DefaultRightHandedInteractions - nameWithType: OculusTouchController.DefaultRightHandedInteractions -- uid: XRTK.Oculus.Utilities - name: XRTK.Oculus.Utilities - href: api/XRTK.Oculus.Utilities.html - commentId: N:XRTK.Oculus.Utilities - fullName: XRTK.Oculus.Utilities - nameWithType: XRTK.Oculus.Utilities -- uid: XRTK.Oculus.Utilities.OculusHandDataConverter - name: OculusHandDataConverter - href: api/XRTK.Oculus.Utilities.OculusHandDataConverter.html - commentId: T:XRTK.Oculus.Utilities.OculusHandDataConverter - fullName: XRTK.Oculus.Utilities.OculusHandDataConverter - nameWithType: OculusHandDataConverter -- uid: XRTK.Oculus.Utilities.OculusHandDataConverter.Finalize - name: Finalize() - href: api/XRTK.Oculus.Utilities.OculusHandDataConverter.html#XRTK_Oculus_Utilities_OculusHandDataConverter_Finalize - commentId: M:XRTK.Oculus.Utilities.OculusHandDataConverter.Finalize - fullName: XRTK.Oculus.Utilities.OculusHandDataConverter.Finalize() - nameWithType: OculusHandDataConverter.Finalize() -- uid: XRTK.Oculus.Utilities.OculusHandDataConverter.Finalize* - name: Finalize - href: api/XRTK.Oculus.Utilities.OculusHandDataConverter.html#XRTK_Oculus_Utilities_OculusHandDataConverter_Finalize_ - commentId: Overload:XRTK.Oculus.Utilities.OculusHandDataConverter.Finalize - isSpec: "True" - fullName: XRTK.Oculus.Utilities.OculusHandDataConverter.Finalize - nameWithType: OculusHandDataConverter.Finalize -- uid: XRTK.Oculus.Utilities.OculusHandDataConverter.TryGetHandData(XRTK.Definitions.Utilities.Handedness,System.Boolean,XRTK.Oculus.Plugins.OculusApi.TrackingConfidence,XRTK.Definitions.Controllers.Hands.HandData@) - name: TryGetHandData(Handedness, Boolean, OculusApi.TrackingConfidence, out HandData) - href: api/XRTK.Oculus.Utilities.OculusHandDataConverter.html#XRTK_Oculus_Utilities_OculusHandDataConverter_TryGetHandData_XRTK_Definitions_Utilities_Handedness_System_Boolean_XRTK_Oculus_Plugins_OculusApi_TrackingConfidence_XRTK_Definitions_Controllers_Hands_HandData__ - commentId: M:XRTK.Oculus.Utilities.OculusHandDataConverter.TryGetHandData(XRTK.Definitions.Utilities.Handedness,System.Boolean,XRTK.Oculus.Plugins.OculusApi.TrackingConfidence,XRTK.Definitions.Controllers.Hands.HandData@) - name.vb: TryGetHandData(Handedness, Boolean, OculusApi.TrackingConfidence, ByRef HandData) - fullName: XRTK.Oculus.Utilities.OculusHandDataConverter.TryGetHandData(XRTK.Definitions.Utilities.Handedness, System.Boolean, XRTK.Oculus.Plugins.OculusApi.TrackingConfidence, out XRTK.Definitions.Controllers.Hands.HandData) - fullName.vb: XRTK.Oculus.Utilities.OculusHandDataConverter.TryGetHandData(XRTK.Definitions.Utilities.Handedness, System.Boolean, XRTK.Oculus.Plugins.OculusApi.TrackingConfidence, ByRef XRTK.Definitions.Controllers.Hands.HandData) - nameWithType: OculusHandDataConverter.TryGetHandData(Handedness, Boolean, OculusApi.TrackingConfidence, out HandData) - nameWithType.vb: OculusHandDataConverter.TryGetHandData(Handedness, Boolean, OculusApi.TrackingConfidence, ByRef HandData) -- uid: XRTK.Oculus.Utilities.OculusHandDataConverter.TryGetHandData* - name: TryGetHandData - href: api/XRTK.Oculus.Utilities.OculusHandDataConverter.html#XRTK_Oculus_Utilities_OculusHandDataConverter_TryGetHandData_ - commentId: Overload:XRTK.Oculus.Utilities.OculusHandDataConverter.TryGetHandData - isSpec: "True" - fullName: XRTK.Oculus.Utilities.OculusHandDataConverter.TryGetHandData - nameWithType: OculusHandDataConverter.TryGetHandData -- uid: XRTK.Providers.CameraSystem - name: XRTK.Providers.CameraSystem - href: api/XRTK.Providers.CameraSystem.html - commentId: N:XRTK.Providers.CameraSystem - fullName: XRTK.Providers.CameraSystem - nameWithType: XRTK.Providers.CameraSystem -- uid: XRTK.Providers.CameraSystem.BaseCameraDataProvider - name: BaseCameraDataProvider - href: api/XRTK.Providers.CameraSystem.BaseCameraDataProvider.html - commentId: T:XRTK.Providers.CameraSystem.BaseCameraDataProvider - fullName: XRTK.Providers.CameraSystem.BaseCameraDataProvider - nameWithType: BaseCameraDataProvider -- uid: XRTK.Providers.CameraSystem.BaseCameraDataProvider.#ctor(System.String,System.UInt32,XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile,XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem) - name: BaseCameraDataProvider(String, UInt32, BaseMixedRealityCameraDataProviderProfile, IMixedRealityCameraSystem) - href: api/XRTK.Providers.CameraSystem.BaseCameraDataProvider.html#XRTK_Providers_CameraSystem_BaseCameraDataProvider__ctor_System_String_System_UInt32_XRTK_Definitions_CameraSystem_BaseMixedRealityCameraDataProviderProfile_XRTK_Interfaces_CameraSystem_IMixedRealityCameraSystem_ - commentId: M:XRTK.Providers.CameraSystem.BaseCameraDataProvider.#ctor(System.String,System.UInt32,XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile,XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem) - fullName: XRTK.Providers.CameraSystem.BaseCameraDataProvider.BaseCameraDataProvider(System.String, System.UInt32, XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile, XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem) - nameWithType: BaseCameraDataProvider.BaseCameraDataProvider(String, UInt32, BaseMixedRealityCameraDataProviderProfile, IMixedRealityCameraSystem) -- uid: XRTK.Providers.CameraSystem.BaseCameraDataProvider.#ctor* - name: BaseCameraDataProvider - href: api/XRTK.Providers.CameraSystem.BaseCameraDataProvider.html#XRTK_Providers_CameraSystem_BaseCameraDataProvider__ctor_ - commentId: Overload:XRTK.Providers.CameraSystem.BaseCameraDataProvider.#ctor - isSpec: "True" - fullName: XRTK.Providers.CameraSystem.BaseCameraDataProvider.BaseCameraDataProvider - nameWithType: BaseCameraDataProvider.BaseCameraDataProvider -- uid: XRTK.Providers.CameraSystem.BaseCameraDataProvider.ApplySettingsForDefaultHeadHeight - name: ApplySettingsForDefaultHeadHeight() - href: api/XRTK.Providers.CameraSystem.BaseCameraDataProvider.html#XRTK_Providers_CameraSystem_BaseCameraDataProvider_ApplySettingsForDefaultHeadHeight - commentId: M:XRTK.Providers.CameraSystem.BaseCameraDataProvider.ApplySettingsForDefaultHeadHeight - fullName: XRTK.Providers.CameraSystem.BaseCameraDataProvider.ApplySettingsForDefaultHeadHeight() - nameWithType: BaseCameraDataProvider.ApplySettingsForDefaultHeadHeight() -- uid: XRTK.Providers.CameraSystem.BaseCameraDataProvider.ApplySettingsForDefaultHeadHeight* - name: ApplySettingsForDefaultHeadHeight - href: api/XRTK.Providers.CameraSystem.BaseCameraDataProvider.html#XRTK_Providers_CameraSystem_BaseCameraDataProvider_ApplySettingsForDefaultHeadHeight_ - commentId: Overload:XRTK.Providers.CameraSystem.BaseCameraDataProvider.ApplySettingsForDefaultHeadHeight - isSpec: "True" - fullName: XRTK.Providers.CameraSystem.BaseCameraDataProvider.ApplySettingsForDefaultHeadHeight - nameWithType: BaseCameraDataProvider.ApplySettingsForDefaultHeadHeight -- uid: XRTK.Providers.CameraSystem.BaseCameraDataProvider.ApplySettingsForOpaqueDisplay - name: ApplySettingsForOpaqueDisplay() - href: api/XRTK.Providers.CameraSystem.BaseCameraDataProvider.html#XRTK_Providers_CameraSystem_BaseCameraDataProvider_ApplySettingsForOpaqueDisplay - commentId: M:XRTK.Providers.CameraSystem.BaseCameraDataProvider.ApplySettingsForOpaqueDisplay - fullName: XRTK.Providers.CameraSystem.BaseCameraDataProvider.ApplySettingsForOpaqueDisplay() - nameWithType: BaseCameraDataProvider.ApplySettingsForOpaqueDisplay() -- uid: XRTK.Providers.CameraSystem.BaseCameraDataProvider.ApplySettingsForOpaqueDisplay* - name: ApplySettingsForOpaqueDisplay - href: api/XRTK.Providers.CameraSystem.BaseCameraDataProvider.html#XRTK_Providers_CameraSystem_BaseCameraDataProvider_ApplySettingsForOpaqueDisplay_ - commentId: Overload:XRTK.Providers.CameraSystem.BaseCameraDataProvider.ApplySettingsForOpaqueDisplay - isSpec: "True" - fullName: XRTK.Providers.CameraSystem.BaseCameraDataProvider.ApplySettingsForOpaqueDisplay - nameWithType: BaseCameraDataProvider.ApplySettingsForOpaqueDisplay -- uid: XRTK.Providers.CameraSystem.BaseCameraDataProvider.ApplySettingsForTransparentDisplay - name: ApplySettingsForTransparentDisplay() - href: api/XRTK.Providers.CameraSystem.BaseCameraDataProvider.html#XRTK_Providers_CameraSystem_BaseCameraDataProvider_ApplySettingsForTransparentDisplay - commentId: M:XRTK.Providers.CameraSystem.BaseCameraDataProvider.ApplySettingsForTransparentDisplay - fullName: XRTK.Providers.CameraSystem.BaseCameraDataProvider.ApplySettingsForTransparentDisplay() - nameWithType: BaseCameraDataProvider.ApplySettingsForTransparentDisplay() -- uid: XRTK.Providers.CameraSystem.BaseCameraDataProvider.ApplySettingsForTransparentDisplay* - name: ApplySettingsForTransparentDisplay - href: api/XRTK.Providers.CameraSystem.BaseCameraDataProvider.html#XRTK_Providers_CameraSystem_BaseCameraDataProvider_ApplySettingsForTransparentDisplay_ - commentId: Overload:XRTK.Providers.CameraSystem.BaseCameraDataProvider.ApplySettingsForTransparentDisplay - isSpec: "True" - fullName: XRTK.Providers.CameraSystem.BaseCameraDataProvider.ApplySettingsForTransparentDisplay - nameWithType: BaseCameraDataProvider.ApplySettingsForTransparentDisplay -- uid: XRTK.Providers.CameraSystem.BaseCameraDataProvider.CameraRig - name: CameraRig - href: api/XRTK.Providers.CameraSystem.BaseCameraDataProvider.html#XRTK_Providers_CameraSystem_BaseCameraDataProvider_CameraRig - commentId: P:XRTK.Providers.CameraSystem.BaseCameraDataProvider.CameraRig - fullName: XRTK.Providers.CameraSystem.BaseCameraDataProvider.CameraRig - nameWithType: BaseCameraDataProvider.CameraRig -- uid: XRTK.Providers.CameraSystem.BaseCameraDataProvider.CameraRig* - name: CameraRig - href: api/XRTK.Providers.CameraSystem.BaseCameraDataProvider.html#XRTK_Providers_CameraSystem_BaseCameraDataProvider_CameraRig_ - commentId: Overload:XRTK.Providers.CameraSystem.BaseCameraDataProvider.CameraRig - isSpec: "True" - fullName: XRTK.Providers.CameraSystem.BaseCameraDataProvider.CameraRig - nameWithType: BaseCameraDataProvider.CameraRig -- uid: XRTK.Providers.CameraSystem.BaseCameraDataProvider.DefaultHeadHeight - name: DefaultHeadHeight - href: api/XRTK.Providers.CameraSystem.BaseCameraDataProvider.html#XRTK_Providers_CameraSystem_BaseCameraDataProvider_DefaultHeadHeight - commentId: P:XRTK.Providers.CameraSystem.BaseCameraDataProvider.DefaultHeadHeight - fullName: XRTK.Providers.CameraSystem.BaseCameraDataProvider.DefaultHeadHeight - nameWithType: BaseCameraDataProvider.DefaultHeadHeight -- uid: XRTK.Providers.CameraSystem.BaseCameraDataProvider.DefaultHeadHeight* - name: DefaultHeadHeight - href: api/XRTK.Providers.CameraSystem.BaseCameraDataProvider.html#XRTK_Providers_CameraSystem_BaseCameraDataProvider_DefaultHeadHeight_ - commentId: Overload:XRTK.Providers.CameraSystem.BaseCameraDataProvider.DefaultHeadHeight - isSpec: "True" - fullName: XRTK.Providers.CameraSystem.BaseCameraDataProvider.DefaultHeadHeight - nameWithType: BaseCameraDataProvider.DefaultHeadHeight -- uid: XRTK.Providers.CameraSystem.BaseCameraDataProvider.Destroy - name: Destroy() - href: api/XRTK.Providers.CameraSystem.BaseCameraDataProvider.html#XRTK_Providers_CameraSystem_BaseCameraDataProvider_Destroy - commentId: M:XRTK.Providers.CameraSystem.BaseCameraDataProvider.Destroy - fullName: XRTK.Providers.CameraSystem.BaseCameraDataProvider.Destroy() - nameWithType: BaseCameraDataProvider.Destroy() -- uid: XRTK.Providers.CameraSystem.BaseCameraDataProvider.Destroy* - name: Destroy - href: api/XRTK.Providers.CameraSystem.BaseCameraDataProvider.html#XRTK_Providers_CameraSystem_BaseCameraDataProvider_Destroy_ - commentId: Overload:XRTK.Providers.CameraSystem.BaseCameraDataProvider.Destroy - isSpec: "True" - fullName: XRTK.Providers.CameraSystem.BaseCameraDataProvider.Destroy - nameWithType: BaseCameraDataProvider.Destroy -- uid: XRTK.Providers.CameraSystem.BaseCameraDataProvider.Disable - name: Disable() - href: api/XRTK.Providers.CameraSystem.BaseCameraDataProvider.html#XRTK_Providers_CameraSystem_BaseCameraDataProvider_Disable - commentId: M:XRTK.Providers.CameraSystem.BaseCameraDataProvider.Disable - fullName: XRTK.Providers.CameraSystem.BaseCameraDataProvider.Disable() - nameWithType: BaseCameraDataProvider.Disable() -- uid: XRTK.Providers.CameraSystem.BaseCameraDataProvider.Disable* - name: Disable - href: api/XRTK.Providers.CameraSystem.BaseCameraDataProvider.html#XRTK_Providers_CameraSystem_BaseCameraDataProvider_Disable_ - commentId: Overload:XRTK.Providers.CameraSystem.BaseCameraDataProvider.Disable - isSpec: "True" - fullName: XRTK.Providers.CameraSystem.BaseCameraDataProvider.Disable - nameWithType: BaseCameraDataProvider.Disable -- uid: XRTK.Providers.CameraSystem.BaseCameraDataProvider.Enable - name: Enable() - href: api/XRTK.Providers.CameraSystem.BaseCameraDataProvider.html#XRTK_Providers_CameraSystem_BaseCameraDataProvider_Enable - commentId: M:XRTK.Providers.CameraSystem.BaseCameraDataProvider.Enable - fullName: XRTK.Providers.CameraSystem.BaseCameraDataProvider.Enable() - nameWithType: BaseCameraDataProvider.Enable() -- uid: XRTK.Providers.CameraSystem.BaseCameraDataProvider.Enable* - name: Enable - href: api/XRTK.Providers.CameraSystem.BaseCameraDataProvider.html#XRTK_Providers_CameraSystem_BaseCameraDataProvider_Enable_ - commentId: Overload:XRTK.Providers.CameraSystem.BaseCameraDataProvider.Enable - isSpec: "True" - fullName: XRTK.Providers.CameraSystem.BaseCameraDataProvider.Enable - nameWithType: BaseCameraDataProvider.Enable -- uid: XRTK.Providers.CameraSystem.BaseCameraDataProvider.HeadHeight - name: HeadHeight - href: api/XRTK.Providers.CameraSystem.BaseCameraDataProvider.html#XRTK_Providers_CameraSystem_BaseCameraDataProvider_HeadHeight - commentId: P:XRTK.Providers.CameraSystem.BaseCameraDataProvider.HeadHeight - fullName: XRTK.Providers.CameraSystem.BaseCameraDataProvider.HeadHeight - nameWithType: BaseCameraDataProvider.HeadHeight -- uid: XRTK.Providers.CameraSystem.BaseCameraDataProvider.HeadHeight* - name: HeadHeight - href: api/XRTK.Providers.CameraSystem.BaseCameraDataProvider.html#XRTK_Providers_CameraSystem_BaseCameraDataProvider_HeadHeight_ - commentId: Overload:XRTK.Providers.CameraSystem.BaseCameraDataProvider.HeadHeight - isSpec: "True" - fullName: XRTK.Providers.CameraSystem.BaseCameraDataProvider.HeadHeight - nameWithType: BaseCameraDataProvider.HeadHeight -- uid: XRTK.Providers.CameraSystem.BaseCameraDataProvider.HeadHeightIsManagedByDevice - name: HeadHeightIsManagedByDevice - href: api/XRTK.Providers.CameraSystem.BaseCameraDataProvider.html#XRTK_Providers_CameraSystem_BaseCameraDataProvider_HeadHeightIsManagedByDevice - commentId: P:XRTK.Providers.CameraSystem.BaseCameraDataProvider.HeadHeightIsManagedByDevice - fullName: XRTK.Providers.CameraSystem.BaseCameraDataProvider.HeadHeightIsManagedByDevice - nameWithType: BaseCameraDataProvider.HeadHeightIsManagedByDevice -- uid: XRTK.Providers.CameraSystem.BaseCameraDataProvider.HeadHeightIsManagedByDevice* - name: HeadHeightIsManagedByDevice - href: api/XRTK.Providers.CameraSystem.BaseCameraDataProvider.html#XRTK_Providers_CameraSystem_BaseCameraDataProvider_HeadHeightIsManagedByDevice_ - commentId: Overload:XRTK.Providers.CameraSystem.BaseCameraDataProvider.HeadHeightIsManagedByDevice - isSpec: "True" - fullName: XRTK.Providers.CameraSystem.BaseCameraDataProvider.HeadHeightIsManagedByDevice - nameWithType: BaseCameraDataProvider.HeadHeightIsManagedByDevice -- uid: XRTK.Providers.CameraSystem.BaseCameraDataProvider.Initialize - name: Initialize() - href: api/XRTK.Providers.CameraSystem.BaseCameraDataProvider.html#XRTK_Providers_CameraSystem_BaseCameraDataProvider_Initialize - commentId: M:XRTK.Providers.CameraSystem.BaseCameraDataProvider.Initialize - fullName: XRTK.Providers.CameraSystem.BaseCameraDataProvider.Initialize() - nameWithType: BaseCameraDataProvider.Initialize() -- uid: XRTK.Providers.CameraSystem.BaseCameraDataProvider.Initialize* - name: Initialize - href: api/XRTK.Providers.CameraSystem.BaseCameraDataProvider.html#XRTK_Providers_CameraSystem_BaseCameraDataProvider_Initialize_ - commentId: Overload:XRTK.Providers.CameraSystem.BaseCameraDataProvider.Initialize - isSpec: "True" - fullName: XRTK.Providers.CameraSystem.BaseCameraDataProvider.Initialize - nameWithType: BaseCameraDataProvider.Initialize -- uid: XRTK.Providers.CameraSystem.BaseCameraDataProvider.IsOpaque - name: IsOpaque - href: api/XRTK.Providers.CameraSystem.BaseCameraDataProvider.html#XRTK_Providers_CameraSystem_BaseCameraDataProvider_IsOpaque - commentId: P:XRTK.Providers.CameraSystem.BaseCameraDataProvider.IsOpaque - fullName: XRTK.Providers.CameraSystem.BaseCameraDataProvider.IsOpaque - nameWithType: BaseCameraDataProvider.IsOpaque -- uid: XRTK.Providers.CameraSystem.BaseCameraDataProvider.IsOpaque* - name: IsOpaque - href: api/XRTK.Providers.CameraSystem.BaseCameraDataProvider.html#XRTK_Providers_CameraSystem_BaseCameraDataProvider_IsOpaque_ - commentId: Overload:XRTK.Providers.CameraSystem.BaseCameraDataProvider.IsOpaque - isSpec: "True" - fullName: XRTK.Providers.CameraSystem.BaseCameraDataProvider.IsOpaque - nameWithType: BaseCameraDataProvider.IsOpaque -- uid: XRTK.Providers.CameraSystem.BaseCameraDataProvider.IsStereoscopic - name: IsStereoscopic - href: api/XRTK.Providers.CameraSystem.BaseCameraDataProvider.html#XRTK_Providers_CameraSystem_BaseCameraDataProvider_IsStereoscopic - commentId: P:XRTK.Providers.CameraSystem.BaseCameraDataProvider.IsStereoscopic - fullName: XRTK.Providers.CameraSystem.BaseCameraDataProvider.IsStereoscopic - nameWithType: BaseCameraDataProvider.IsStereoscopic -- uid: XRTK.Providers.CameraSystem.BaseCameraDataProvider.IsStereoscopic* - name: IsStereoscopic - href: api/XRTK.Providers.CameraSystem.BaseCameraDataProvider.html#XRTK_Providers_CameraSystem_BaseCameraDataProvider_IsStereoscopic_ - commentId: Overload:XRTK.Providers.CameraSystem.BaseCameraDataProvider.IsStereoscopic - isSpec: "True" - fullName: XRTK.Providers.CameraSystem.BaseCameraDataProvider.IsStereoscopic - nameWithType: BaseCameraDataProvider.IsStereoscopic -- uid: XRTK.Providers.CameraSystem.BaseCameraDataProvider.LateUpdate - name: LateUpdate() - href: api/XRTK.Providers.CameraSystem.BaseCameraDataProvider.html#XRTK_Providers_CameraSystem_BaseCameraDataProvider_LateUpdate - commentId: M:XRTK.Providers.CameraSystem.BaseCameraDataProvider.LateUpdate - fullName: XRTK.Providers.CameraSystem.BaseCameraDataProvider.LateUpdate() - nameWithType: BaseCameraDataProvider.LateUpdate() -- uid: XRTK.Providers.CameraSystem.BaseCameraDataProvider.LateUpdate* - name: LateUpdate - href: api/XRTK.Providers.CameraSystem.BaseCameraDataProvider.html#XRTK_Providers_CameraSystem_BaseCameraDataProvider_LateUpdate_ - commentId: Overload:XRTK.Providers.CameraSystem.BaseCameraDataProvider.LateUpdate - isSpec: "True" - fullName: XRTK.Providers.CameraSystem.BaseCameraDataProvider.LateUpdate - nameWithType: BaseCameraDataProvider.LateUpdate -- uid: XRTK.Providers.CameraSystem.BaseCameraDataProvider.Priority - name: Priority - href: api/XRTK.Providers.CameraSystem.BaseCameraDataProvider.html#XRTK_Providers_CameraSystem_BaseCameraDataProvider_Priority - commentId: P:XRTK.Providers.CameraSystem.BaseCameraDataProvider.Priority - fullName: XRTK.Providers.CameraSystem.BaseCameraDataProvider.Priority - nameWithType: BaseCameraDataProvider.Priority -- uid: XRTK.Providers.CameraSystem.BaseCameraDataProvider.Priority* - name: Priority - href: api/XRTK.Providers.CameraSystem.BaseCameraDataProvider.html#XRTK_Providers_CameraSystem_BaseCameraDataProvider_Priority_ - commentId: Overload:XRTK.Providers.CameraSystem.BaseCameraDataProvider.Priority - isSpec: "True" - fullName: XRTK.Providers.CameraSystem.BaseCameraDataProvider.Priority - nameWithType: BaseCameraDataProvider.Priority -- uid: XRTK.Providers.CameraSystem.BaseCameraDataProvider.ResetRigTransforms - name: ResetRigTransforms() - href: api/XRTK.Providers.CameraSystem.BaseCameraDataProvider.html#XRTK_Providers_CameraSystem_BaseCameraDataProvider_ResetRigTransforms - commentId: M:XRTK.Providers.CameraSystem.BaseCameraDataProvider.ResetRigTransforms - fullName: XRTK.Providers.CameraSystem.BaseCameraDataProvider.ResetRigTransforms() - nameWithType: BaseCameraDataProvider.ResetRigTransforms() -- uid: XRTK.Providers.CameraSystem.BaseCameraDataProvider.ResetRigTransforms* - name: ResetRigTransforms - href: api/XRTK.Providers.CameraSystem.BaseCameraDataProvider.html#XRTK_Providers_CameraSystem_BaseCameraDataProvider_ResetRigTransforms_ - commentId: Overload:XRTK.Providers.CameraSystem.BaseCameraDataProvider.ResetRigTransforms - isSpec: "True" - fullName: XRTK.Providers.CameraSystem.BaseCameraDataProvider.ResetRigTransforms - nameWithType: BaseCameraDataProvider.ResetRigTransforms -- uid: XRTK.Providers.CameraSystem.BaseCameraDataProvider.SyncRigTransforms - name: SyncRigTransforms() - href: api/XRTK.Providers.CameraSystem.BaseCameraDataProvider.html#XRTK_Providers_CameraSystem_BaseCameraDataProvider_SyncRigTransforms - commentId: M:XRTK.Providers.CameraSystem.BaseCameraDataProvider.SyncRigTransforms - fullName: XRTK.Providers.CameraSystem.BaseCameraDataProvider.SyncRigTransforms() - nameWithType: BaseCameraDataProvider.SyncRigTransforms() -- uid: XRTK.Providers.CameraSystem.BaseCameraDataProvider.SyncRigTransforms* - name: SyncRigTransforms - href: api/XRTK.Providers.CameraSystem.BaseCameraDataProvider.html#XRTK_Providers_CameraSystem_BaseCameraDataProvider_SyncRigTransforms_ - commentId: Overload:XRTK.Providers.CameraSystem.BaseCameraDataProvider.SyncRigTransforms - isSpec: "True" - fullName: XRTK.Providers.CameraSystem.BaseCameraDataProvider.SyncRigTransforms - nameWithType: BaseCameraDataProvider.SyncRigTransforms -- uid: XRTK.Providers.CameraSystem.BaseCameraDataProvider.Update - name: Update() - href: api/XRTK.Providers.CameraSystem.BaseCameraDataProvider.html#XRTK_Providers_CameraSystem_BaseCameraDataProvider_Update - commentId: M:XRTK.Providers.CameraSystem.BaseCameraDataProvider.Update - fullName: XRTK.Providers.CameraSystem.BaseCameraDataProvider.Update() - nameWithType: BaseCameraDataProvider.Update() -- uid: XRTK.Providers.CameraSystem.BaseCameraDataProvider.Update* - name: Update - href: api/XRTK.Providers.CameraSystem.BaseCameraDataProvider.html#XRTK_Providers_CameraSystem_BaseCameraDataProvider_Update_ - commentId: Overload:XRTK.Providers.CameraSystem.BaseCameraDataProvider.Update - isSpec: "True" - fullName: XRTK.Providers.CameraSystem.BaseCameraDataProvider.Update - nameWithType: BaseCameraDataProvider.Update -- uid: XRTK.Providers.Controllers - name: XRTK.Providers.Controllers - href: api/XRTK.Providers.Controllers.html - commentId: N:XRTK.Providers.Controllers - fullName: XRTK.Providers.Controllers - nameWithType: XRTK.Providers.Controllers -- uid: XRTK.Providers.Controllers.BaseController - name: BaseController - href: api/XRTK.Providers.Controllers.BaseController.html - commentId: T:XRTK.Providers.Controllers.BaseController - fullName: XRTK.Providers.Controllers.BaseController - nameWithType: BaseController -- uid: XRTK.Providers.Controllers.BaseController.#ctor - name: BaseController() - href: api/XRTK.Providers.Controllers.BaseController.html#XRTK_Providers_Controllers_BaseController__ctor - commentId: M:XRTK.Providers.Controllers.BaseController.#ctor - fullName: XRTK.Providers.Controllers.BaseController.BaseController() - nameWithType: BaseController.BaseController() -- uid: XRTK.Providers.Controllers.BaseController.#ctor(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider,XRTK.Definitions.Devices.TrackingState,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - name: BaseController(IMixedRealityControllerDataProvider, TrackingState, Handedness, MixedRealityControllerMappingProfile) - href: api/XRTK.Providers.Controllers.BaseController.html#XRTK_Providers_Controllers_BaseController__ctor_XRTK_Interfaces_Providers_Controllers_IMixedRealityControllerDataProvider_XRTK_Definitions_Devices_TrackingState_XRTK_Definitions_Utilities_Handedness_XRTK_Definitions_Controllers_MixedRealityControllerMappingProfile_ - commentId: M:XRTK.Providers.Controllers.BaseController.#ctor(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider,XRTK.Definitions.Devices.TrackingState,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - fullName: XRTK.Providers.Controllers.BaseController.BaseController(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider, XRTK.Definitions.Devices.TrackingState, XRTK.Definitions.Utilities.Handedness, XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - nameWithType: BaseController.BaseController(IMixedRealityControllerDataProvider, TrackingState, Handedness, MixedRealityControllerMappingProfile) -- uid: XRTK.Providers.Controllers.BaseController.#ctor* - name: BaseController - href: api/XRTK.Providers.Controllers.BaseController.html#XRTK_Providers_Controllers_BaseController__ctor_ - commentId: Overload:XRTK.Providers.Controllers.BaseController.#ctor - isSpec: "True" - fullName: XRTK.Providers.Controllers.BaseController.BaseController - nameWithType: BaseController.BaseController -- uid: XRTK.Providers.Controllers.BaseController.AngularVelocity - name: AngularVelocity - href: api/XRTK.Providers.Controllers.BaseController.html#XRTK_Providers_Controllers_BaseController_AngularVelocity - commentId: P:XRTK.Providers.Controllers.BaseController.AngularVelocity - fullName: XRTK.Providers.Controllers.BaseController.AngularVelocity - nameWithType: BaseController.AngularVelocity -- uid: XRTK.Providers.Controllers.BaseController.AngularVelocity* - name: AngularVelocity - href: api/XRTK.Providers.Controllers.BaseController.html#XRTK_Providers_Controllers_BaseController_AngularVelocity_ - commentId: Overload:XRTK.Providers.Controllers.BaseController.AngularVelocity - isSpec: "True" - fullName: XRTK.Providers.Controllers.BaseController.AngularVelocity - nameWithType: BaseController.AngularVelocity -- uid: XRTK.Providers.Controllers.BaseController.AssignControllerMappings(XRTK.Definitions.Devices.MixedRealityInteractionMapping[]) - name: AssignControllerMappings(MixedRealityInteractionMapping[]) - href: api/XRTK.Providers.Controllers.BaseController.html#XRTK_Providers_Controllers_BaseController_AssignControllerMappings_XRTK_Definitions_Devices_MixedRealityInteractionMapping___ - commentId: M:XRTK.Providers.Controllers.BaseController.AssignControllerMappings(XRTK.Definitions.Devices.MixedRealityInteractionMapping[]) - name.vb: AssignControllerMappings(MixedRealityInteractionMapping()) - fullName: XRTK.Providers.Controllers.BaseController.AssignControllerMappings(XRTK.Definitions.Devices.MixedRealityInteractionMapping[]) - fullName.vb: XRTK.Providers.Controllers.BaseController.AssignControllerMappings(XRTK.Definitions.Devices.MixedRealityInteractionMapping()) - nameWithType: BaseController.AssignControllerMappings(MixedRealityInteractionMapping[]) - nameWithType.vb: BaseController.AssignControllerMappings(MixedRealityInteractionMapping()) -- uid: XRTK.Providers.Controllers.BaseController.AssignControllerMappings* - name: AssignControllerMappings - href: api/XRTK.Providers.Controllers.BaseController.html#XRTK_Providers_Controllers_BaseController_AssignControllerMappings_ - commentId: Overload:XRTK.Providers.Controllers.BaseController.AssignControllerMappings - isSpec: "True" - fullName: XRTK.Providers.Controllers.BaseController.AssignControllerMappings - nameWithType: BaseController.AssignControllerMappings -- uid: XRTK.Providers.Controllers.BaseController.ControllerDataProvider - name: ControllerDataProvider - href: api/XRTK.Providers.Controllers.BaseController.html#XRTK_Providers_Controllers_BaseController_ControllerDataProvider - commentId: P:XRTK.Providers.Controllers.BaseController.ControllerDataProvider - fullName: XRTK.Providers.Controllers.BaseController.ControllerDataProvider - nameWithType: BaseController.ControllerDataProvider -- uid: XRTK.Providers.Controllers.BaseController.ControllerDataProvider* - name: ControllerDataProvider - href: api/XRTK.Providers.Controllers.BaseController.html#XRTK_Providers_Controllers_BaseController_ControllerDataProvider_ - commentId: Overload:XRTK.Providers.Controllers.BaseController.ControllerDataProvider - isSpec: "True" - fullName: XRTK.Providers.Controllers.BaseController.ControllerDataProvider - nameWithType: BaseController.ControllerDataProvider -- uid: XRTK.Providers.Controllers.BaseController.ControllerHandedness - name: ControllerHandedness - href: api/XRTK.Providers.Controllers.BaseController.html#XRTK_Providers_Controllers_BaseController_ControllerHandedness - commentId: P:XRTK.Providers.Controllers.BaseController.ControllerHandedness - fullName: XRTK.Providers.Controllers.BaseController.ControllerHandedness - nameWithType: BaseController.ControllerHandedness -- uid: XRTK.Providers.Controllers.BaseController.ControllerHandedness* - name: ControllerHandedness - href: api/XRTK.Providers.Controllers.BaseController.html#XRTK_Providers_Controllers_BaseController_ControllerHandedness_ - commentId: Overload:XRTK.Providers.Controllers.BaseController.ControllerHandedness - isSpec: "True" - fullName: XRTK.Providers.Controllers.BaseController.ControllerHandedness - nameWithType: BaseController.ControllerHandedness -- uid: XRTK.Providers.Controllers.BaseController.DefaultInteractions - name: DefaultInteractions - href: api/XRTK.Providers.Controllers.BaseController.html#XRTK_Providers_Controllers_BaseController_DefaultInteractions - commentId: P:XRTK.Providers.Controllers.BaseController.DefaultInteractions - fullName: XRTK.Providers.Controllers.BaseController.DefaultInteractions - nameWithType: BaseController.DefaultInteractions -- uid: XRTK.Providers.Controllers.BaseController.DefaultInteractions* - name: DefaultInteractions - href: api/XRTK.Providers.Controllers.BaseController.html#XRTK_Providers_Controllers_BaseController_DefaultInteractions_ - commentId: Overload:XRTK.Providers.Controllers.BaseController.DefaultInteractions - isSpec: "True" - fullName: XRTK.Providers.Controllers.BaseController.DefaultInteractions - nameWithType: BaseController.DefaultInteractions -- uid: XRTK.Providers.Controllers.BaseController.DefaultLeftHandedInteractions - name: DefaultLeftHandedInteractions - href: api/XRTK.Providers.Controllers.BaseController.html#XRTK_Providers_Controllers_BaseController_DefaultLeftHandedInteractions - commentId: P:XRTK.Providers.Controllers.BaseController.DefaultLeftHandedInteractions - fullName: XRTK.Providers.Controllers.BaseController.DefaultLeftHandedInteractions - nameWithType: BaseController.DefaultLeftHandedInteractions -- uid: XRTK.Providers.Controllers.BaseController.DefaultLeftHandedInteractions* - name: DefaultLeftHandedInteractions - href: api/XRTK.Providers.Controllers.BaseController.html#XRTK_Providers_Controllers_BaseController_DefaultLeftHandedInteractions_ - commentId: Overload:XRTK.Providers.Controllers.BaseController.DefaultLeftHandedInteractions - isSpec: "True" - fullName: XRTK.Providers.Controllers.BaseController.DefaultLeftHandedInteractions - nameWithType: BaseController.DefaultLeftHandedInteractions -- uid: XRTK.Providers.Controllers.BaseController.DefaultRightHandedInteractions - name: DefaultRightHandedInteractions - href: api/XRTK.Providers.Controllers.BaseController.html#XRTK_Providers_Controllers_BaseController_DefaultRightHandedInteractions - commentId: P:XRTK.Providers.Controllers.BaseController.DefaultRightHandedInteractions - fullName: XRTK.Providers.Controllers.BaseController.DefaultRightHandedInteractions - nameWithType: BaseController.DefaultRightHandedInteractions -- uid: XRTK.Providers.Controllers.BaseController.DefaultRightHandedInteractions* - name: DefaultRightHandedInteractions - href: api/XRTK.Providers.Controllers.BaseController.html#XRTK_Providers_Controllers_BaseController_DefaultRightHandedInteractions_ - commentId: Overload:XRTK.Providers.Controllers.BaseController.DefaultRightHandedInteractions - isSpec: "True" - fullName: XRTK.Providers.Controllers.BaseController.DefaultRightHandedInteractions - nameWithType: BaseController.DefaultRightHandedInteractions -- uid: XRTK.Providers.Controllers.BaseController.Enabled - name: Enabled - href: api/XRTK.Providers.Controllers.BaseController.html#XRTK_Providers_Controllers_BaseController_Enabled - commentId: P:XRTK.Providers.Controllers.BaseController.Enabled - fullName: XRTK.Providers.Controllers.BaseController.Enabled - nameWithType: BaseController.Enabled -- uid: XRTK.Providers.Controllers.BaseController.Enabled* - name: Enabled - href: api/XRTK.Providers.Controllers.BaseController.html#XRTK_Providers_Controllers_BaseController_Enabled_ - commentId: Overload:XRTK.Providers.Controllers.BaseController.Enabled - isSpec: "True" - fullName: XRTK.Providers.Controllers.BaseController.Enabled - nameWithType: BaseController.Enabled -- uid: XRTK.Providers.Controllers.BaseController.GripPoseOffset - name: GripPoseOffset - href: api/XRTK.Providers.Controllers.BaseController.html#XRTK_Providers_Controllers_BaseController_GripPoseOffset - commentId: P:XRTK.Providers.Controllers.BaseController.GripPoseOffset - fullName: XRTK.Providers.Controllers.BaseController.GripPoseOffset - nameWithType: BaseController.GripPoseOffset -- uid: XRTK.Providers.Controllers.BaseController.GripPoseOffset* - name: GripPoseOffset - href: api/XRTK.Providers.Controllers.BaseController.html#XRTK_Providers_Controllers_BaseController_GripPoseOffset_ - commentId: Overload:XRTK.Providers.Controllers.BaseController.GripPoseOffset - isSpec: "True" - fullName: XRTK.Providers.Controllers.BaseController.GripPoseOffset - nameWithType: BaseController.GripPoseOffset -- uid: XRTK.Providers.Controllers.BaseController.InputSource - name: InputSource - href: api/XRTK.Providers.Controllers.BaseController.html#XRTK_Providers_Controllers_BaseController_InputSource - commentId: P:XRTK.Providers.Controllers.BaseController.InputSource - fullName: XRTK.Providers.Controllers.BaseController.InputSource - nameWithType: BaseController.InputSource -- uid: XRTK.Providers.Controllers.BaseController.InputSource* - name: InputSource - href: api/XRTK.Providers.Controllers.BaseController.html#XRTK_Providers_Controllers_BaseController_InputSource_ - commentId: Overload:XRTK.Providers.Controllers.BaseController.InputSource - isSpec: "True" - fullName: XRTK.Providers.Controllers.BaseController.InputSource - nameWithType: BaseController.InputSource -- uid: XRTK.Providers.Controllers.BaseController.InputSystem - name: InputSystem - href: api/XRTK.Providers.Controllers.BaseController.html#XRTK_Providers_Controllers_BaseController_InputSystem - commentId: F:XRTK.Providers.Controllers.BaseController.InputSystem - fullName: XRTK.Providers.Controllers.BaseController.InputSystem - nameWithType: BaseController.InputSystem -- uid: XRTK.Providers.Controllers.BaseController.Interactions - name: Interactions - href: api/XRTK.Providers.Controllers.BaseController.html#XRTK_Providers_Controllers_BaseController_Interactions - commentId: P:XRTK.Providers.Controllers.BaseController.Interactions - fullName: XRTK.Providers.Controllers.BaseController.Interactions - nameWithType: BaseController.Interactions -- uid: XRTK.Providers.Controllers.BaseController.Interactions* - name: Interactions - href: api/XRTK.Providers.Controllers.BaseController.html#XRTK_Providers_Controllers_BaseController_Interactions_ - commentId: Overload:XRTK.Providers.Controllers.BaseController.Interactions - isSpec: "True" - fullName: XRTK.Providers.Controllers.BaseController.Interactions - nameWithType: BaseController.Interactions -- uid: XRTK.Providers.Controllers.BaseController.IsPositionApproximate - name: IsPositionApproximate - href: api/XRTK.Providers.Controllers.BaseController.html#XRTK_Providers_Controllers_BaseController_IsPositionApproximate - commentId: P:XRTK.Providers.Controllers.BaseController.IsPositionApproximate - fullName: XRTK.Providers.Controllers.BaseController.IsPositionApproximate - nameWithType: BaseController.IsPositionApproximate -- uid: XRTK.Providers.Controllers.BaseController.IsPositionApproximate* - name: IsPositionApproximate - href: api/XRTK.Providers.Controllers.BaseController.html#XRTK_Providers_Controllers_BaseController_IsPositionApproximate_ - commentId: Overload:XRTK.Providers.Controllers.BaseController.IsPositionApproximate - isSpec: "True" - fullName: XRTK.Providers.Controllers.BaseController.IsPositionApproximate - nameWithType: BaseController.IsPositionApproximate -- uid: XRTK.Providers.Controllers.BaseController.IsPositionAvailable - name: IsPositionAvailable - href: api/XRTK.Providers.Controllers.BaseController.html#XRTK_Providers_Controllers_BaseController_IsPositionAvailable - commentId: P:XRTK.Providers.Controllers.BaseController.IsPositionAvailable - fullName: XRTK.Providers.Controllers.BaseController.IsPositionAvailable - nameWithType: BaseController.IsPositionAvailable -- uid: XRTK.Providers.Controllers.BaseController.IsPositionAvailable* - name: IsPositionAvailable - href: api/XRTK.Providers.Controllers.BaseController.html#XRTK_Providers_Controllers_BaseController_IsPositionAvailable_ - commentId: Overload:XRTK.Providers.Controllers.BaseController.IsPositionAvailable - isSpec: "True" - fullName: XRTK.Providers.Controllers.BaseController.IsPositionAvailable - nameWithType: BaseController.IsPositionAvailable -- uid: XRTK.Providers.Controllers.BaseController.IsRotationAvailable - name: IsRotationAvailable - href: api/XRTK.Providers.Controllers.BaseController.html#XRTK_Providers_Controllers_BaseController_IsRotationAvailable - commentId: P:XRTK.Providers.Controllers.BaseController.IsRotationAvailable - fullName: XRTK.Providers.Controllers.BaseController.IsRotationAvailable - nameWithType: BaseController.IsRotationAvailable -- uid: XRTK.Providers.Controllers.BaseController.IsRotationAvailable* - name: IsRotationAvailable - href: api/XRTK.Providers.Controllers.BaseController.html#XRTK_Providers_Controllers_BaseController_IsRotationAvailable_ - commentId: Overload:XRTK.Providers.Controllers.BaseController.IsRotationAvailable - isSpec: "True" - fullName: XRTK.Providers.Controllers.BaseController.IsRotationAvailable - nameWithType: BaseController.IsRotationAvailable -- uid: XRTK.Providers.Controllers.BaseController.Name - name: Name - href: api/XRTK.Providers.Controllers.BaseController.html#XRTK_Providers_Controllers_BaseController_Name - commentId: P:XRTK.Providers.Controllers.BaseController.Name - fullName: XRTK.Providers.Controllers.BaseController.Name - nameWithType: BaseController.Name -- uid: XRTK.Providers.Controllers.BaseController.Name* - name: Name - href: api/XRTK.Providers.Controllers.BaseController.html#XRTK_Providers_Controllers_BaseController_Name_ - commentId: Overload:XRTK.Providers.Controllers.BaseController.Name - isSpec: "True" - fullName: XRTK.Providers.Controllers.BaseController.Name - nameWithType: BaseController.Name -- uid: XRTK.Providers.Controllers.BaseController.TrackingState - name: TrackingState - href: api/XRTK.Providers.Controllers.BaseController.html#XRTK_Providers_Controllers_BaseController_TrackingState - commentId: P:XRTK.Providers.Controllers.BaseController.TrackingState - fullName: XRTK.Providers.Controllers.BaseController.TrackingState - nameWithType: BaseController.TrackingState -- uid: XRTK.Providers.Controllers.BaseController.TrackingState* - name: TrackingState - href: api/XRTK.Providers.Controllers.BaseController.html#XRTK_Providers_Controllers_BaseController_TrackingState_ - commentId: Overload:XRTK.Providers.Controllers.BaseController.TrackingState - isSpec: "True" - fullName: XRTK.Providers.Controllers.BaseController.TrackingState - nameWithType: BaseController.TrackingState -- uid: XRTK.Providers.Controllers.BaseController.TryRenderControllerModel(System.Boolean) - name: TryRenderControllerModel(Boolean) - href: api/XRTK.Providers.Controllers.BaseController.html#XRTK_Providers_Controllers_BaseController_TryRenderControllerModel_System_Boolean_ - commentId: M:XRTK.Providers.Controllers.BaseController.TryRenderControllerModel(System.Boolean) - fullName: XRTK.Providers.Controllers.BaseController.TryRenderControllerModel(System.Boolean) - nameWithType: BaseController.TryRenderControllerModel(Boolean) -- uid: XRTK.Providers.Controllers.BaseController.TryRenderControllerModel* - name: TryRenderControllerModel - href: api/XRTK.Providers.Controllers.BaseController.html#XRTK_Providers_Controllers_BaseController_TryRenderControllerModel_ - commentId: Overload:XRTK.Providers.Controllers.BaseController.TryRenderControllerModel - isSpec: "True" - fullName: XRTK.Providers.Controllers.BaseController.TryRenderControllerModel - nameWithType: BaseController.TryRenderControllerModel -- uid: XRTK.Providers.Controllers.BaseController.UpdateController - name: UpdateController() - href: api/XRTK.Providers.Controllers.BaseController.html#XRTK_Providers_Controllers_BaseController_UpdateController - commentId: M:XRTK.Providers.Controllers.BaseController.UpdateController - fullName: XRTK.Providers.Controllers.BaseController.UpdateController() - nameWithType: BaseController.UpdateController() -- uid: XRTK.Providers.Controllers.BaseController.UpdateController* - name: UpdateController - href: api/XRTK.Providers.Controllers.BaseController.html#XRTK_Providers_Controllers_BaseController_UpdateController_ - commentId: Overload:XRTK.Providers.Controllers.BaseController.UpdateController - isSpec: "True" - fullName: XRTK.Providers.Controllers.BaseController.UpdateController - nameWithType: BaseController.UpdateController -- uid: XRTK.Providers.Controllers.BaseController.Velocity - name: Velocity - href: api/XRTK.Providers.Controllers.BaseController.html#XRTK_Providers_Controllers_BaseController_Velocity - commentId: P:XRTK.Providers.Controllers.BaseController.Velocity - fullName: XRTK.Providers.Controllers.BaseController.Velocity - nameWithType: BaseController.Velocity -- uid: XRTK.Providers.Controllers.BaseController.Velocity* - name: Velocity - href: api/XRTK.Providers.Controllers.BaseController.html#XRTK_Providers_Controllers_BaseController_Velocity_ - commentId: Overload:XRTK.Providers.Controllers.BaseController.Velocity - isSpec: "True" - fullName: XRTK.Providers.Controllers.BaseController.Velocity - nameWithType: BaseController.Velocity -- uid: XRTK.Providers.Controllers.BaseController.Visualizer - name: Visualizer - href: api/XRTK.Providers.Controllers.BaseController.html#XRTK_Providers_Controllers_BaseController_Visualizer - commentId: P:XRTK.Providers.Controllers.BaseController.Visualizer - fullName: XRTK.Providers.Controllers.BaseController.Visualizer - nameWithType: BaseController.Visualizer -- uid: XRTK.Providers.Controllers.BaseController.Visualizer* - name: Visualizer - href: api/XRTK.Providers.Controllers.BaseController.html#XRTK_Providers_Controllers_BaseController_Visualizer_ - commentId: Overload:XRTK.Providers.Controllers.BaseController.Visualizer - isSpec: "True" - fullName: XRTK.Providers.Controllers.BaseController.Visualizer - nameWithType: BaseController.Visualizer -- uid: XRTK.Providers.Controllers.BaseControllerDataProvider - name: BaseControllerDataProvider - href: api/XRTK.Providers.Controllers.BaseControllerDataProvider.html - commentId: T:XRTK.Providers.Controllers.BaseControllerDataProvider - fullName: XRTK.Providers.Controllers.BaseControllerDataProvider - nameWithType: BaseControllerDataProvider -- uid: XRTK.Providers.Controllers.BaseControllerDataProvider.#ctor(System.String,System.UInt32,XRTK.Definitions.Controllers.BaseMixedRealityControllerDataProviderProfile,XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - name: BaseControllerDataProvider(String, UInt32, BaseMixedRealityControllerDataProviderProfile, IMixedRealityInputSystem) - href: api/XRTK.Providers.Controllers.BaseControllerDataProvider.html#XRTK_Providers_Controllers_BaseControllerDataProvider__ctor_System_String_System_UInt32_XRTK_Definitions_Controllers_BaseMixedRealityControllerDataProviderProfile_XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_ - commentId: M:XRTK.Providers.Controllers.BaseControllerDataProvider.#ctor(System.String,System.UInt32,XRTK.Definitions.Controllers.BaseMixedRealityControllerDataProviderProfile,XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - fullName: XRTK.Providers.Controllers.BaseControllerDataProvider.BaseControllerDataProvider(System.String, System.UInt32, XRTK.Definitions.Controllers.BaseMixedRealityControllerDataProviderProfile, XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - nameWithType: BaseControllerDataProvider.BaseControllerDataProvider(String, UInt32, BaseMixedRealityControllerDataProviderProfile, IMixedRealityInputSystem) -- uid: XRTK.Providers.Controllers.BaseControllerDataProvider.#ctor* - name: BaseControllerDataProvider - href: api/XRTK.Providers.Controllers.BaseControllerDataProvider.html#XRTK_Providers_Controllers_BaseControllerDataProvider__ctor_ - commentId: Overload:XRTK.Providers.Controllers.BaseControllerDataProvider.#ctor - isSpec: "True" - fullName: XRTK.Providers.Controllers.BaseControllerDataProvider.BaseControllerDataProvider - nameWithType: BaseControllerDataProvider.BaseControllerDataProvider -- uid: XRTK.Providers.Controllers.BaseControllerDataProvider.ActiveControllers - name: ActiveControllers - href: api/XRTK.Providers.Controllers.BaseControllerDataProvider.html#XRTK_Providers_Controllers_BaseControllerDataProvider_ActiveControllers - commentId: P:XRTK.Providers.Controllers.BaseControllerDataProvider.ActiveControllers - fullName: XRTK.Providers.Controllers.BaseControllerDataProvider.ActiveControllers - nameWithType: BaseControllerDataProvider.ActiveControllers -- uid: XRTK.Providers.Controllers.BaseControllerDataProvider.ActiveControllers* - name: ActiveControllers - href: api/XRTK.Providers.Controllers.BaseControllerDataProvider.html#XRTK_Providers_Controllers_BaseControllerDataProvider_ActiveControllers_ - commentId: Overload:XRTK.Providers.Controllers.BaseControllerDataProvider.ActiveControllers - isSpec: "True" - fullName: XRTK.Providers.Controllers.BaseControllerDataProvider.ActiveControllers - nameWithType: BaseControllerDataProvider.ActiveControllers -- uid: XRTK.Providers.Controllers.BaseControllerDataProvider.AddController(XRTK.Interfaces.Providers.Controllers.IMixedRealityController) - name: AddController(IMixedRealityController) - href: api/XRTK.Providers.Controllers.BaseControllerDataProvider.html#XRTK_Providers_Controllers_BaseControllerDataProvider_AddController_XRTK_Interfaces_Providers_Controllers_IMixedRealityController_ - commentId: M:XRTK.Providers.Controllers.BaseControllerDataProvider.AddController(XRTK.Interfaces.Providers.Controllers.IMixedRealityController) - fullName: XRTK.Providers.Controllers.BaseControllerDataProvider.AddController(XRTK.Interfaces.Providers.Controllers.IMixedRealityController) - nameWithType: BaseControllerDataProvider.AddController(IMixedRealityController) -- uid: XRTK.Providers.Controllers.BaseControllerDataProvider.AddController* - name: AddController - href: api/XRTK.Providers.Controllers.BaseControllerDataProvider.html#XRTK_Providers_Controllers_BaseControllerDataProvider_AddController_ - commentId: Overload:XRTK.Providers.Controllers.BaseControllerDataProvider.AddController - isSpec: "True" - fullName: XRTK.Providers.Controllers.BaseControllerDataProvider.AddController - nameWithType: BaseControllerDataProvider.AddController -- uid: XRTK.Providers.Controllers.BaseControllerDataProvider.GetControllerMappingProfile(System.Type,XRTK.Definitions.Utilities.Handedness) - name: GetControllerMappingProfile(Type, Handedness) - href: api/XRTK.Providers.Controllers.BaseControllerDataProvider.html#XRTK_Providers_Controllers_BaseControllerDataProvider_GetControllerMappingProfile_System_Type_XRTK_Definitions_Utilities_Handedness_ - commentId: M:XRTK.Providers.Controllers.BaseControllerDataProvider.GetControllerMappingProfile(System.Type,XRTK.Definitions.Utilities.Handedness) - fullName: XRTK.Providers.Controllers.BaseControllerDataProvider.GetControllerMappingProfile(System.Type, XRTK.Definitions.Utilities.Handedness) - nameWithType: BaseControllerDataProvider.GetControllerMappingProfile(Type, Handedness) -- uid: XRTK.Providers.Controllers.BaseControllerDataProvider.GetControllerMappingProfile* - name: GetControllerMappingProfile - href: api/XRTK.Providers.Controllers.BaseControllerDataProvider.html#XRTK_Providers_Controllers_BaseControllerDataProvider_GetControllerMappingProfile_ - commentId: Overload:XRTK.Providers.Controllers.BaseControllerDataProvider.GetControllerMappingProfile - isSpec: "True" - fullName: XRTK.Providers.Controllers.BaseControllerDataProvider.GetControllerMappingProfile - nameWithType: BaseControllerDataProvider.GetControllerMappingProfile -- uid: XRTK.Providers.Controllers.BaseControllerDataProvider.InputSystem - name: InputSystem - href: api/XRTK.Providers.Controllers.BaseControllerDataProvider.html#XRTK_Providers_Controllers_BaseControllerDataProvider_InputSystem - commentId: F:XRTK.Providers.Controllers.BaseControllerDataProvider.InputSystem - fullName: XRTK.Providers.Controllers.BaseControllerDataProvider.InputSystem - nameWithType: BaseControllerDataProvider.InputSystem -- uid: XRTK.Providers.Controllers.BaseControllerDataProvider.RemoveController(XRTK.Interfaces.Providers.Controllers.IMixedRealityController) - name: RemoveController(IMixedRealityController) - href: api/XRTK.Providers.Controllers.BaseControllerDataProvider.html#XRTK_Providers_Controllers_BaseControllerDataProvider_RemoveController_XRTK_Interfaces_Providers_Controllers_IMixedRealityController_ - commentId: M:XRTK.Providers.Controllers.BaseControllerDataProvider.RemoveController(XRTK.Interfaces.Providers.Controllers.IMixedRealityController) - fullName: XRTK.Providers.Controllers.BaseControllerDataProvider.RemoveController(XRTK.Interfaces.Providers.Controllers.IMixedRealityController) - nameWithType: BaseControllerDataProvider.RemoveController(IMixedRealityController) -- uid: XRTK.Providers.Controllers.BaseControllerDataProvider.RemoveController* - name: RemoveController - href: api/XRTK.Providers.Controllers.BaseControllerDataProvider.html#XRTK_Providers_Controllers_BaseControllerDataProvider_RemoveController_ - commentId: Overload:XRTK.Providers.Controllers.BaseControllerDataProvider.RemoveController - isSpec: "True" - fullName: XRTK.Providers.Controllers.BaseControllerDataProvider.RemoveController - nameWithType: BaseControllerDataProvider.RemoveController -- uid: XRTK.Providers.Controllers.Hands - name: XRTK.Providers.Controllers.Hands - href: api/XRTK.Providers.Controllers.Hands.html - commentId: N:XRTK.Providers.Controllers.Hands - fullName: XRTK.Providers.Controllers.Hands - nameWithType: XRTK.Providers.Controllers.Hands -- uid: XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider - name: BaseHandControllerDataProvider - href: api/XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider.html - commentId: T:XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider - fullName: XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider - nameWithType: BaseHandControllerDataProvider -- uid: XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider.#ctor(System.String,System.UInt32,XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile,XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - name: BaseHandControllerDataProvider(String, UInt32, BaseHandControllerDataProviderProfile, IMixedRealityInputSystem) - href: api/XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider.html#XRTK_Providers_Controllers_Hands_BaseHandControllerDataProvider__ctor_System_String_System_UInt32_XRTK_Definitions_Controllers_Hands_BaseHandControllerDataProviderProfile_XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_ - commentId: M:XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider.#ctor(System.String,System.UInt32,XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile,XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - fullName: XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider.BaseHandControllerDataProvider(System.String, System.UInt32, XRTK.Definitions.Controllers.Hands.BaseHandControllerDataProviderProfile, XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - nameWithType: BaseHandControllerDataProvider.BaseHandControllerDataProvider(String, UInt32, BaseHandControllerDataProviderProfile, IMixedRealityInputSystem) -- uid: XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider.#ctor* - name: BaseHandControllerDataProvider - href: api/XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider.html#XRTK_Providers_Controllers_Hands_BaseHandControllerDataProvider__ctor_ - commentId: Overload:XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider.#ctor - isSpec: "True" - fullName: XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider.BaseHandControllerDataProvider - nameWithType: BaseHandControllerDataProvider.BaseHandControllerDataProvider -- uid: XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider.BoundsMode - name: BoundsMode - href: api/XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider.html#XRTK_Providers_Controllers_Hands_BaseHandControllerDataProvider_BoundsMode - commentId: P:XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider.BoundsMode - fullName: XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider.BoundsMode - nameWithType: BaseHandControllerDataProvider.BoundsMode -- uid: XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider.BoundsMode* - name: BoundsMode - href: api/XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider.html#XRTK_Providers_Controllers_Hands_BaseHandControllerDataProvider_BoundsMode_ - commentId: Overload:XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider.BoundsMode - isSpec: "True" - fullName: XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider.BoundsMode - nameWithType: BaseHandControllerDataProvider.BoundsMode -- uid: XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider.HandPhysicsEnabled - name: HandPhysicsEnabled - href: api/XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider.html#XRTK_Providers_Controllers_Hands_BaseHandControllerDataProvider_HandPhysicsEnabled - commentId: P:XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider.HandPhysicsEnabled - fullName: XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider.HandPhysicsEnabled - nameWithType: BaseHandControllerDataProvider.HandPhysicsEnabled -- uid: XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider.HandPhysicsEnabled* - name: HandPhysicsEnabled - href: api/XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider.html#XRTK_Providers_Controllers_Hands_BaseHandControllerDataProvider_HandPhysicsEnabled_ - commentId: Overload:XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider.HandPhysicsEnabled - isSpec: "True" - fullName: XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider.HandPhysicsEnabled - nameWithType: BaseHandControllerDataProvider.HandPhysicsEnabled -- uid: XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider.RenderingMode - name: RenderingMode - href: api/XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider.html#XRTK_Providers_Controllers_Hands_BaseHandControllerDataProvider_RenderingMode - commentId: P:XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider.RenderingMode - fullName: XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider.RenderingMode - nameWithType: BaseHandControllerDataProvider.RenderingMode -- uid: XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider.RenderingMode* - name: RenderingMode - href: api/XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider.html#XRTK_Providers_Controllers_Hands_BaseHandControllerDataProvider_RenderingMode_ - commentId: Overload:XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider.RenderingMode - isSpec: "True" - fullName: XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider.RenderingMode - nameWithType: BaseHandControllerDataProvider.RenderingMode -- uid: XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider.TrackedPoses - name: TrackedPoses - href: api/XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider.html#XRTK_Providers_Controllers_Hands_BaseHandControllerDataProvider_TrackedPoses - commentId: P:XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider.TrackedPoses - fullName: XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider.TrackedPoses - nameWithType: BaseHandControllerDataProvider.TrackedPoses -- uid: XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider.TrackedPoses* - name: TrackedPoses - href: api/XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider.html#XRTK_Providers_Controllers_Hands_BaseHandControllerDataProvider_TrackedPoses_ - commentId: Overload:XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider.TrackedPoses - isSpec: "True" - fullName: XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider.TrackedPoses - nameWithType: BaseHandControllerDataProvider.TrackedPoses -- uid: XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider.UseTriggers - name: UseTriggers - href: api/XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider.html#XRTK_Providers_Controllers_Hands_BaseHandControllerDataProvider_UseTriggers - commentId: P:XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider.UseTriggers - fullName: XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider.UseTriggers - nameWithType: BaseHandControllerDataProvider.UseTriggers -- uid: XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider.UseTriggers* - name: UseTriggers - href: api/XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider.html#XRTK_Providers_Controllers_Hands_BaseHandControllerDataProvider_UseTriggers_ - commentId: Overload:XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider.UseTriggers - isSpec: "True" - fullName: XRTK.Providers.Controllers.Hands.BaseHandControllerDataProvider.UseTriggers - nameWithType: BaseHandControllerDataProvider.UseTriggers -- uid: XRTK.Providers.Controllers.Hands.HandDataPostProcessor - name: HandDataPostProcessor - href: api/XRTK.Providers.Controllers.Hands.HandDataPostProcessor.html - commentId: T:XRTK.Providers.Controllers.Hands.HandDataPostProcessor - fullName: XRTK.Providers.Controllers.Hands.HandDataPostProcessor - nameWithType: HandDataPostProcessor -- uid: XRTK.Providers.Controllers.Hands.HandDataPostProcessor.#ctor(System.Collections.Generic.IReadOnlyList{XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile},System.Single) - name: HandDataPostProcessor(IReadOnlyList, Single) - href: api/XRTK.Providers.Controllers.Hands.HandDataPostProcessor.html#XRTK_Providers_Controllers_Hands_HandDataPostProcessor__ctor_System_Collections_Generic_IReadOnlyList_XRTK_Definitions_Controllers_Hands_HandControllerPoseProfile__System_Single_ - commentId: M:XRTK.Providers.Controllers.Hands.HandDataPostProcessor.#ctor(System.Collections.Generic.IReadOnlyList{XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile},System.Single) - name.vb: HandDataPostProcessor(IReadOnlyList(Of HandControllerPoseProfile), Single) - fullName: XRTK.Providers.Controllers.Hands.HandDataPostProcessor.HandDataPostProcessor(System.Collections.Generic.IReadOnlyList, System.Single) - fullName.vb: XRTK.Providers.Controllers.Hands.HandDataPostProcessor.HandDataPostProcessor(System.Collections.Generic.IReadOnlyList(Of XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile), System.Single) - nameWithType: HandDataPostProcessor.HandDataPostProcessor(IReadOnlyList, Single) - nameWithType.vb: HandDataPostProcessor.HandDataPostProcessor(IReadOnlyList(Of HandControllerPoseProfile), Single) -- uid: XRTK.Providers.Controllers.Hands.HandDataPostProcessor.#ctor* - name: HandDataPostProcessor - href: api/XRTK.Providers.Controllers.Hands.HandDataPostProcessor.html#XRTK_Providers_Controllers_Hands_HandDataPostProcessor__ctor_ - commentId: Overload:XRTK.Providers.Controllers.Hands.HandDataPostProcessor.#ctor - isSpec: "True" - fullName: XRTK.Providers.Controllers.Hands.HandDataPostProcessor.HandDataPostProcessor - nameWithType: HandDataPostProcessor.HandDataPostProcessor -- uid: XRTK.Providers.Controllers.Hands.HandDataPostProcessor.PlatformProvidesIsPinching - name: PlatformProvidesIsPinching - href: api/XRTK.Providers.Controllers.Hands.HandDataPostProcessor.html#XRTK_Providers_Controllers_Hands_HandDataPostProcessor_PlatformProvidesIsPinching - commentId: P:XRTK.Providers.Controllers.Hands.HandDataPostProcessor.PlatformProvidesIsPinching - fullName: XRTK.Providers.Controllers.Hands.HandDataPostProcessor.PlatformProvidesIsPinching - nameWithType: HandDataPostProcessor.PlatformProvidesIsPinching -- uid: XRTK.Providers.Controllers.Hands.HandDataPostProcessor.PlatformProvidesIsPinching* - name: PlatformProvidesIsPinching - href: api/XRTK.Providers.Controllers.Hands.HandDataPostProcessor.html#XRTK_Providers_Controllers_Hands_HandDataPostProcessor_PlatformProvidesIsPinching_ - commentId: Overload:XRTK.Providers.Controllers.Hands.HandDataPostProcessor.PlatformProvidesIsPinching - isSpec: "True" - fullName: XRTK.Providers.Controllers.Hands.HandDataPostProcessor.PlatformProvidesIsPinching - nameWithType: HandDataPostProcessor.PlatformProvidesIsPinching -- uid: XRTK.Providers.Controllers.Hands.HandDataPostProcessor.PlatformProvidesIsPointing - name: PlatformProvidesIsPointing - href: api/XRTK.Providers.Controllers.Hands.HandDataPostProcessor.html#XRTK_Providers_Controllers_Hands_HandDataPostProcessor_PlatformProvidesIsPointing - commentId: P:XRTK.Providers.Controllers.Hands.HandDataPostProcessor.PlatformProvidesIsPointing - fullName: XRTK.Providers.Controllers.Hands.HandDataPostProcessor.PlatformProvidesIsPointing - nameWithType: HandDataPostProcessor.PlatformProvidesIsPointing -- uid: XRTK.Providers.Controllers.Hands.HandDataPostProcessor.PlatformProvidesIsPointing* - name: PlatformProvidesIsPointing - href: api/XRTK.Providers.Controllers.Hands.HandDataPostProcessor.html#XRTK_Providers_Controllers_Hands_HandDataPostProcessor_PlatformProvidesIsPointing_ - commentId: Overload:XRTK.Providers.Controllers.Hands.HandDataPostProcessor.PlatformProvidesIsPointing - isSpec: "True" - fullName: XRTK.Providers.Controllers.Hands.HandDataPostProcessor.PlatformProvidesIsPointing - nameWithType: HandDataPostProcessor.PlatformProvidesIsPointing -- uid: XRTK.Providers.Controllers.Hands.HandDataPostProcessor.PlatformProvidesPinchStrength - name: PlatformProvidesPinchStrength - href: api/XRTK.Providers.Controllers.Hands.HandDataPostProcessor.html#XRTK_Providers_Controllers_Hands_HandDataPostProcessor_PlatformProvidesPinchStrength - commentId: P:XRTK.Providers.Controllers.Hands.HandDataPostProcessor.PlatformProvidesPinchStrength - fullName: XRTK.Providers.Controllers.Hands.HandDataPostProcessor.PlatformProvidesPinchStrength - nameWithType: HandDataPostProcessor.PlatformProvidesPinchStrength -- uid: XRTK.Providers.Controllers.Hands.HandDataPostProcessor.PlatformProvidesPinchStrength* - name: PlatformProvidesPinchStrength - href: api/XRTK.Providers.Controllers.Hands.HandDataPostProcessor.html#XRTK_Providers_Controllers_Hands_HandDataPostProcessor_PlatformProvidesPinchStrength_ - commentId: Overload:XRTK.Providers.Controllers.Hands.HandDataPostProcessor.PlatformProvidesPinchStrength - isSpec: "True" - fullName: XRTK.Providers.Controllers.Hands.HandDataPostProcessor.PlatformProvidesPinchStrength - nameWithType: HandDataPostProcessor.PlatformProvidesPinchStrength -- uid: XRTK.Providers.Controllers.Hands.HandDataPostProcessor.PlatformProvidesPointerPose - name: PlatformProvidesPointerPose - href: api/XRTK.Providers.Controllers.Hands.HandDataPostProcessor.html#XRTK_Providers_Controllers_Hands_HandDataPostProcessor_PlatformProvidesPointerPose - commentId: P:XRTK.Providers.Controllers.Hands.HandDataPostProcessor.PlatformProvidesPointerPose - fullName: XRTK.Providers.Controllers.Hands.HandDataPostProcessor.PlatformProvidesPointerPose - nameWithType: HandDataPostProcessor.PlatformProvidesPointerPose -- uid: XRTK.Providers.Controllers.Hands.HandDataPostProcessor.PlatformProvidesPointerPose* - name: PlatformProvidesPointerPose - href: api/XRTK.Providers.Controllers.Hands.HandDataPostProcessor.html#XRTK_Providers_Controllers_Hands_HandDataPostProcessor_PlatformProvidesPointerPose_ - commentId: Overload:XRTK.Providers.Controllers.Hands.HandDataPostProcessor.PlatformProvidesPointerPose - isSpec: "True" - fullName: XRTK.Providers.Controllers.Hands.HandDataPostProcessor.PlatformProvidesPointerPose - nameWithType: HandDataPostProcessor.PlatformProvidesPointerPose -- uid: XRTK.Providers.Controllers.Hands.HandDataPostProcessor.PostProcess(XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.Controllers.Hands.HandData) - name: PostProcess(Handedness, HandData) - href: api/XRTK.Providers.Controllers.Hands.HandDataPostProcessor.html#XRTK_Providers_Controllers_Hands_HandDataPostProcessor_PostProcess_XRTK_Definitions_Utilities_Handedness_XRTK_Definitions_Controllers_Hands_HandData_ - commentId: M:XRTK.Providers.Controllers.Hands.HandDataPostProcessor.PostProcess(XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.Controllers.Hands.HandData) - fullName: XRTK.Providers.Controllers.Hands.HandDataPostProcessor.PostProcess(XRTK.Definitions.Utilities.Handedness, XRTK.Definitions.Controllers.Hands.HandData) - nameWithType: HandDataPostProcessor.PostProcess(Handedness, HandData) -- uid: XRTK.Providers.Controllers.Hands.HandDataPostProcessor.PostProcess* - name: PostProcess - href: api/XRTK.Providers.Controllers.Hands.HandDataPostProcessor.html#XRTK_Providers_Controllers_Hands_HandDataPostProcessor_PostProcess_ - commentId: Overload:XRTK.Providers.Controllers.Hands.HandDataPostProcessor.PostProcess - isSpec: "True" - fullName: XRTK.Providers.Controllers.Hands.HandDataPostProcessor.PostProcess - nameWithType: HandDataPostProcessor.PostProcess -- uid: XRTK.Providers.Controllers.Hands.HandGripPostProcessor - name: HandGripPostProcessor - href: api/XRTK.Providers.Controllers.Hands.HandGripPostProcessor.html - commentId: T:XRTK.Providers.Controllers.Hands.HandGripPostProcessor - fullName: XRTK.Providers.Controllers.Hands.HandGripPostProcessor - nameWithType: HandGripPostProcessor -- uid: XRTK.Providers.Controllers.Hands.HandGripPostProcessor.#ctor(System.Single) - name: HandGripPostProcessor(Single) - href: api/XRTK.Providers.Controllers.Hands.HandGripPostProcessor.html#XRTK_Providers_Controllers_Hands_HandGripPostProcessor__ctor_System_Single_ - commentId: M:XRTK.Providers.Controllers.Hands.HandGripPostProcessor.#ctor(System.Single) - fullName: XRTK.Providers.Controllers.Hands.HandGripPostProcessor.HandGripPostProcessor(System.Single) - nameWithType: HandGripPostProcessor.HandGripPostProcessor(Single) -- uid: XRTK.Providers.Controllers.Hands.HandGripPostProcessor.#ctor* - name: HandGripPostProcessor - href: api/XRTK.Providers.Controllers.Hands.HandGripPostProcessor.html#XRTK_Providers_Controllers_Hands_HandGripPostProcessor__ctor_ - commentId: Overload:XRTK.Providers.Controllers.Hands.HandGripPostProcessor.#ctor - isSpec: "True" - fullName: XRTK.Providers.Controllers.Hands.HandGripPostProcessor.HandGripPostProcessor - nameWithType: HandGripPostProcessor.HandGripPostProcessor -- uid: XRTK.Providers.Controllers.Hands.HandGripPostProcessor.PostProcess(XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.Controllers.Hands.HandData) - name: PostProcess(Handedness, HandData) - href: api/XRTK.Providers.Controllers.Hands.HandGripPostProcessor.html#XRTK_Providers_Controllers_Hands_HandGripPostProcessor_PostProcess_XRTK_Definitions_Utilities_Handedness_XRTK_Definitions_Controllers_Hands_HandData_ - commentId: M:XRTK.Providers.Controllers.Hands.HandGripPostProcessor.PostProcess(XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.Controllers.Hands.HandData) - fullName: XRTK.Providers.Controllers.Hands.HandGripPostProcessor.PostProcess(XRTK.Definitions.Utilities.Handedness, XRTK.Definitions.Controllers.Hands.HandData) - nameWithType: HandGripPostProcessor.PostProcess(Handedness, HandData) -- uid: XRTK.Providers.Controllers.Hands.HandGripPostProcessor.PostProcess* - name: PostProcess - href: api/XRTK.Providers.Controllers.Hands.HandGripPostProcessor.html#XRTK_Providers_Controllers_Hands_HandGripPostProcessor_PostProcess_ - commentId: Overload:XRTK.Providers.Controllers.Hands.HandGripPostProcessor.PostProcess - isSpec: "True" - fullName: XRTK.Providers.Controllers.Hands.HandGripPostProcessor.PostProcess - nameWithType: HandGripPostProcessor.PostProcess -- uid: XRTK.Providers.Controllers.Hands.HandTrackedPosePostProcessor - name: HandTrackedPosePostProcessor - href: api/XRTK.Providers.Controllers.Hands.HandTrackedPosePostProcessor.html - commentId: T:XRTK.Providers.Controllers.Hands.HandTrackedPosePostProcessor - fullName: XRTK.Providers.Controllers.Hands.HandTrackedPosePostProcessor - nameWithType: HandTrackedPosePostProcessor -- uid: XRTK.Providers.Controllers.Hands.HandTrackedPosePostProcessor.#ctor(System.Collections.Generic.IReadOnlyList{XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile}) - name: HandTrackedPosePostProcessor(IReadOnlyList) - href: api/XRTK.Providers.Controllers.Hands.HandTrackedPosePostProcessor.html#XRTK_Providers_Controllers_Hands_HandTrackedPosePostProcessor__ctor_System_Collections_Generic_IReadOnlyList_XRTK_Definitions_Controllers_Hands_HandControllerPoseProfile__ - commentId: M:XRTK.Providers.Controllers.Hands.HandTrackedPosePostProcessor.#ctor(System.Collections.Generic.IReadOnlyList{XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile}) - name.vb: HandTrackedPosePostProcessor(IReadOnlyList(Of HandControllerPoseProfile)) - fullName: XRTK.Providers.Controllers.Hands.HandTrackedPosePostProcessor.HandTrackedPosePostProcessor(System.Collections.Generic.IReadOnlyList) - fullName.vb: XRTK.Providers.Controllers.Hands.HandTrackedPosePostProcessor.HandTrackedPosePostProcessor(System.Collections.Generic.IReadOnlyList(Of XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile)) - nameWithType: HandTrackedPosePostProcessor.HandTrackedPosePostProcessor(IReadOnlyList) - nameWithType.vb: HandTrackedPosePostProcessor.HandTrackedPosePostProcessor(IReadOnlyList(Of HandControllerPoseProfile)) -- uid: XRTK.Providers.Controllers.Hands.HandTrackedPosePostProcessor.#ctor* - name: HandTrackedPosePostProcessor - href: api/XRTK.Providers.Controllers.Hands.HandTrackedPosePostProcessor.html#XRTK_Providers_Controllers_Hands_HandTrackedPosePostProcessor__ctor_ - commentId: Overload:XRTK.Providers.Controllers.Hands.HandTrackedPosePostProcessor.#ctor - isSpec: "True" - fullName: XRTK.Providers.Controllers.Hands.HandTrackedPosePostProcessor.HandTrackedPosePostProcessor - nameWithType: HandTrackedPosePostProcessor.HandTrackedPosePostProcessor -- uid: XRTK.Providers.Controllers.Hands.HandTrackedPosePostProcessor.PostProcess(XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.Controllers.Hands.HandData) - name: PostProcess(Handedness, HandData) - href: api/XRTK.Providers.Controllers.Hands.HandTrackedPosePostProcessor.html#XRTK_Providers_Controllers_Hands_HandTrackedPosePostProcessor_PostProcess_XRTK_Definitions_Utilities_Handedness_XRTK_Definitions_Controllers_Hands_HandData_ - commentId: M:XRTK.Providers.Controllers.Hands.HandTrackedPosePostProcessor.PostProcess(XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.Controllers.Hands.HandData) - fullName: XRTK.Providers.Controllers.Hands.HandTrackedPosePostProcessor.PostProcess(XRTK.Definitions.Utilities.Handedness, XRTK.Definitions.Controllers.Hands.HandData) - nameWithType: HandTrackedPosePostProcessor.PostProcess(Handedness, HandData) -- uid: XRTK.Providers.Controllers.Hands.HandTrackedPosePostProcessor.PostProcess* - name: PostProcess - href: api/XRTK.Providers.Controllers.Hands.HandTrackedPosePostProcessor.html#XRTK_Providers_Controllers_Hands_HandTrackedPosePostProcessor_PostProcess_ - commentId: Overload:XRTK.Providers.Controllers.Hands.HandTrackedPosePostProcessor.PostProcess - isSpec: "True" - fullName: XRTK.Providers.Controllers.Hands.HandTrackedPosePostProcessor.PostProcess - nameWithType: HandTrackedPosePostProcessor.PostProcess -- uid: XRTK.Providers.Controllers.Hands.MixedRealityHandController - name: MixedRealityHandController - href: api/XRTK.Providers.Controllers.Hands.MixedRealityHandController.html - commentId: T:XRTK.Providers.Controllers.Hands.MixedRealityHandController - fullName: XRTK.Providers.Controllers.Hands.MixedRealityHandController - nameWithType: MixedRealityHandController -- uid: XRTK.Providers.Controllers.Hands.MixedRealityHandController.#ctor - name: MixedRealityHandController() - href: api/XRTK.Providers.Controllers.Hands.MixedRealityHandController.html#XRTK_Providers_Controllers_Hands_MixedRealityHandController__ctor - commentId: M:XRTK.Providers.Controllers.Hands.MixedRealityHandController.#ctor - fullName: XRTK.Providers.Controllers.Hands.MixedRealityHandController.MixedRealityHandController() - nameWithType: MixedRealityHandController.MixedRealityHandController() -- uid: XRTK.Providers.Controllers.Hands.MixedRealityHandController.#ctor(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider,XRTK.Definitions.Devices.TrackingState,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - name: MixedRealityHandController(IMixedRealityControllerDataProvider, TrackingState, Handedness, MixedRealityControllerMappingProfile) - href: api/XRTK.Providers.Controllers.Hands.MixedRealityHandController.html#XRTK_Providers_Controllers_Hands_MixedRealityHandController__ctor_XRTK_Interfaces_Providers_Controllers_IMixedRealityControllerDataProvider_XRTK_Definitions_Devices_TrackingState_XRTK_Definitions_Utilities_Handedness_XRTK_Definitions_Controllers_MixedRealityControllerMappingProfile_ - commentId: M:XRTK.Providers.Controllers.Hands.MixedRealityHandController.#ctor(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider,XRTK.Definitions.Devices.TrackingState,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - fullName: XRTK.Providers.Controllers.Hands.MixedRealityHandController.MixedRealityHandController(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider, XRTK.Definitions.Devices.TrackingState, XRTK.Definitions.Utilities.Handedness, XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - nameWithType: MixedRealityHandController.MixedRealityHandController(IMixedRealityControllerDataProvider, TrackingState, Handedness, MixedRealityControllerMappingProfile) -- uid: XRTK.Providers.Controllers.Hands.MixedRealityHandController.#ctor* - name: MixedRealityHandController - href: api/XRTK.Providers.Controllers.Hands.MixedRealityHandController.html#XRTK_Providers_Controllers_Hands_MixedRealityHandController__ctor_ - commentId: Overload:XRTK.Providers.Controllers.Hands.MixedRealityHandController.#ctor - isSpec: "True" - fullName: XRTK.Providers.Controllers.Hands.MixedRealityHandController.MixedRealityHandController - nameWithType: MixedRealityHandController.MixedRealityHandController -- uid: XRTK.Providers.Controllers.Hands.MixedRealityHandController.DefaultInteractions - name: DefaultInteractions - href: api/XRTK.Providers.Controllers.Hands.MixedRealityHandController.html#XRTK_Providers_Controllers_Hands_MixedRealityHandController_DefaultInteractions - commentId: P:XRTK.Providers.Controllers.Hands.MixedRealityHandController.DefaultInteractions - fullName: XRTK.Providers.Controllers.Hands.MixedRealityHandController.DefaultInteractions - nameWithType: MixedRealityHandController.DefaultInteractions -- uid: XRTK.Providers.Controllers.Hands.MixedRealityHandController.DefaultInteractions* - name: DefaultInteractions - href: api/XRTK.Providers.Controllers.Hands.MixedRealityHandController.html#XRTK_Providers_Controllers_Hands_MixedRealityHandController_DefaultInteractions_ - commentId: Overload:XRTK.Providers.Controllers.Hands.MixedRealityHandController.DefaultInteractions - isSpec: "True" - fullName: XRTK.Providers.Controllers.Hands.MixedRealityHandController.DefaultInteractions - nameWithType: MixedRealityHandController.DefaultInteractions -- uid: XRTK.Providers.Controllers.Hands.MixedRealityHandController.DefaultLeftHandedInteractions - name: DefaultLeftHandedInteractions - href: api/XRTK.Providers.Controllers.Hands.MixedRealityHandController.html#XRTK_Providers_Controllers_Hands_MixedRealityHandController_DefaultLeftHandedInteractions - commentId: P:XRTK.Providers.Controllers.Hands.MixedRealityHandController.DefaultLeftHandedInteractions - fullName: XRTK.Providers.Controllers.Hands.MixedRealityHandController.DefaultLeftHandedInteractions - nameWithType: MixedRealityHandController.DefaultLeftHandedInteractions -- uid: XRTK.Providers.Controllers.Hands.MixedRealityHandController.DefaultLeftHandedInteractions* - name: DefaultLeftHandedInteractions - href: api/XRTK.Providers.Controllers.Hands.MixedRealityHandController.html#XRTK_Providers_Controllers_Hands_MixedRealityHandController_DefaultLeftHandedInteractions_ - commentId: Overload:XRTK.Providers.Controllers.Hands.MixedRealityHandController.DefaultLeftHandedInteractions - isSpec: "True" - fullName: XRTK.Providers.Controllers.Hands.MixedRealityHandController.DefaultLeftHandedInteractions - nameWithType: MixedRealityHandController.DefaultLeftHandedInteractions -- uid: XRTK.Providers.Controllers.Hands.MixedRealityHandController.DefaultRightHandedInteractions - name: DefaultRightHandedInteractions - href: api/XRTK.Providers.Controllers.Hands.MixedRealityHandController.html#XRTK_Providers_Controllers_Hands_MixedRealityHandController_DefaultRightHandedInteractions - commentId: P:XRTK.Providers.Controllers.Hands.MixedRealityHandController.DefaultRightHandedInteractions - fullName: XRTK.Providers.Controllers.Hands.MixedRealityHandController.DefaultRightHandedInteractions - nameWithType: MixedRealityHandController.DefaultRightHandedInteractions -- uid: XRTK.Providers.Controllers.Hands.MixedRealityHandController.DefaultRightHandedInteractions* - name: DefaultRightHandedInteractions - href: api/XRTK.Providers.Controllers.Hands.MixedRealityHandController.html#XRTK_Providers_Controllers_Hands_MixedRealityHandController_DefaultRightHandedInteractions_ - commentId: Overload:XRTK.Providers.Controllers.Hands.MixedRealityHandController.DefaultRightHandedInteractions - isSpec: "True" - fullName: XRTK.Providers.Controllers.Hands.MixedRealityHandController.DefaultRightHandedInteractions - nameWithType: MixedRealityHandController.DefaultRightHandedInteractions -- uid: XRTK.Providers.Controllers.Hands.MixedRealityHandController.FingerCurlStrengths - name: FingerCurlStrengths - href: api/XRTK.Providers.Controllers.Hands.MixedRealityHandController.html#XRTK_Providers_Controllers_Hands_MixedRealityHandController_FingerCurlStrengths - commentId: P:XRTK.Providers.Controllers.Hands.MixedRealityHandController.FingerCurlStrengths - fullName: XRTK.Providers.Controllers.Hands.MixedRealityHandController.FingerCurlStrengths - nameWithType: MixedRealityHandController.FingerCurlStrengths -- uid: XRTK.Providers.Controllers.Hands.MixedRealityHandController.FingerCurlStrengths* - name: FingerCurlStrengths - href: api/XRTK.Providers.Controllers.Hands.MixedRealityHandController.html#XRTK_Providers_Controllers_Hands_MixedRealityHandController_FingerCurlStrengths_ - commentId: Overload:XRTK.Providers.Controllers.Hands.MixedRealityHandController.FingerCurlStrengths - isSpec: "True" - fullName: XRTK.Providers.Controllers.Hands.MixedRealityHandController.FingerCurlStrengths - nameWithType: MixedRealityHandController.FingerCurlStrengths -- uid: XRTK.Providers.Controllers.Hands.MixedRealityHandController.GripStrength - name: GripStrength - href: api/XRTK.Providers.Controllers.Hands.MixedRealityHandController.html#XRTK_Providers_Controllers_Hands_MixedRealityHandController_GripStrength - commentId: P:XRTK.Providers.Controllers.Hands.MixedRealityHandController.GripStrength - fullName: XRTK.Providers.Controllers.Hands.MixedRealityHandController.GripStrength - nameWithType: MixedRealityHandController.GripStrength -- uid: XRTK.Providers.Controllers.Hands.MixedRealityHandController.GripStrength* - name: GripStrength - href: api/XRTK.Providers.Controllers.Hands.MixedRealityHandController.html#XRTK_Providers_Controllers_Hands_MixedRealityHandController_GripStrength_ - commentId: Overload:XRTK.Providers.Controllers.Hands.MixedRealityHandController.GripStrength - isSpec: "True" - fullName: XRTK.Providers.Controllers.Hands.MixedRealityHandController.GripStrength - nameWithType: MixedRealityHandController.GripStrength -- uid: XRTK.Providers.Controllers.Hands.MixedRealityHandController.IsGripping - name: IsGripping - href: api/XRTK.Providers.Controllers.Hands.MixedRealityHandController.html#XRTK_Providers_Controllers_Hands_MixedRealityHandController_IsGripping - commentId: P:XRTK.Providers.Controllers.Hands.MixedRealityHandController.IsGripping - fullName: XRTK.Providers.Controllers.Hands.MixedRealityHandController.IsGripping - nameWithType: MixedRealityHandController.IsGripping -- uid: XRTK.Providers.Controllers.Hands.MixedRealityHandController.IsGripping* - name: IsGripping - href: api/XRTK.Providers.Controllers.Hands.MixedRealityHandController.html#XRTK_Providers_Controllers_Hands_MixedRealityHandController_IsGripping_ - commentId: Overload:XRTK.Providers.Controllers.Hands.MixedRealityHandController.IsGripping - isSpec: "True" - fullName: XRTK.Providers.Controllers.Hands.MixedRealityHandController.IsGripping - nameWithType: MixedRealityHandController.IsGripping -- uid: XRTK.Providers.Controllers.Hands.MixedRealityHandController.IsPinching - name: IsPinching - href: api/XRTK.Providers.Controllers.Hands.MixedRealityHandController.html#XRTK_Providers_Controllers_Hands_MixedRealityHandController_IsPinching - commentId: P:XRTK.Providers.Controllers.Hands.MixedRealityHandController.IsPinching - fullName: XRTK.Providers.Controllers.Hands.MixedRealityHandController.IsPinching - nameWithType: MixedRealityHandController.IsPinching -- uid: XRTK.Providers.Controllers.Hands.MixedRealityHandController.IsPinching* - name: IsPinching - href: api/XRTK.Providers.Controllers.Hands.MixedRealityHandController.html#XRTK_Providers_Controllers_Hands_MixedRealityHandController_IsPinching_ - commentId: Overload:XRTK.Providers.Controllers.Hands.MixedRealityHandController.IsPinching - isSpec: "True" - fullName: XRTK.Providers.Controllers.Hands.MixedRealityHandController.IsPinching - nameWithType: MixedRealityHandController.IsPinching -- uid: XRTK.Providers.Controllers.Hands.MixedRealityHandController.IsPointing - name: IsPointing - href: api/XRTK.Providers.Controllers.Hands.MixedRealityHandController.html#XRTK_Providers_Controllers_Hands_MixedRealityHandController_IsPointing - commentId: P:XRTK.Providers.Controllers.Hands.MixedRealityHandController.IsPointing - fullName: XRTK.Providers.Controllers.Hands.MixedRealityHandController.IsPointing - nameWithType: MixedRealityHandController.IsPointing -- uid: XRTK.Providers.Controllers.Hands.MixedRealityHandController.IsPointing* - name: IsPointing - href: api/XRTK.Providers.Controllers.Hands.MixedRealityHandController.html#XRTK_Providers_Controllers_Hands_MixedRealityHandController_IsPointing_ - commentId: Overload:XRTK.Providers.Controllers.Hands.MixedRealityHandController.IsPointing - isSpec: "True" - fullName: XRTK.Providers.Controllers.Hands.MixedRealityHandController.IsPointing - nameWithType: MixedRealityHandController.IsPointing -- uid: XRTK.Providers.Controllers.Hands.MixedRealityHandController.PinchStrength - name: PinchStrength - href: api/XRTK.Providers.Controllers.Hands.MixedRealityHandController.html#XRTK_Providers_Controllers_Hands_MixedRealityHandController_PinchStrength - commentId: P:XRTK.Providers.Controllers.Hands.MixedRealityHandController.PinchStrength - fullName: XRTK.Providers.Controllers.Hands.MixedRealityHandController.PinchStrength - nameWithType: MixedRealityHandController.PinchStrength -- uid: XRTK.Providers.Controllers.Hands.MixedRealityHandController.PinchStrength* - name: PinchStrength - href: api/XRTK.Providers.Controllers.Hands.MixedRealityHandController.html#XRTK_Providers_Controllers_Hands_MixedRealityHandController_PinchStrength_ - commentId: Overload:XRTK.Providers.Controllers.Hands.MixedRealityHandController.PinchStrength - isSpec: "True" - fullName: XRTK.Providers.Controllers.Hands.MixedRealityHandController.PinchStrength - nameWithType: MixedRealityHandController.PinchStrength -- uid: XRTK.Providers.Controllers.Hands.MixedRealityHandController.TrackedPoseId - name: TrackedPoseId - href: api/XRTK.Providers.Controllers.Hands.MixedRealityHandController.html#XRTK_Providers_Controllers_Hands_MixedRealityHandController_TrackedPoseId - commentId: P:XRTK.Providers.Controllers.Hands.MixedRealityHandController.TrackedPoseId - fullName: XRTK.Providers.Controllers.Hands.MixedRealityHandController.TrackedPoseId - nameWithType: MixedRealityHandController.TrackedPoseId -- uid: XRTK.Providers.Controllers.Hands.MixedRealityHandController.TrackedPoseId* - name: TrackedPoseId - href: api/XRTK.Providers.Controllers.Hands.MixedRealityHandController.html#XRTK_Providers_Controllers_Hands_MixedRealityHandController_TrackedPoseId_ - commentId: Overload:XRTK.Providers.Controllers.Hands.MixedRealityHandController.TrackedPoseId - isSpec: "True" - fullName: XRTK.Providers.Controllers.Hands.MixedRealityHandController.TrackedPoseId - nameWithType: MixedRealityHandController.TrackedPoseId -- uid: XRTK.Providers.Controllers.Hands.MixedRealityHandController.TryGetBounds(XRTK.Definitions.Controllers.Hands.TrackedHandBounds,UnityEngine.Bounds[]@) - name: TryGetBounds(TrackedHandBounds, out Bounds[]) - href: api/XRTK.Providers.Controllers.Hands.MixedRealityHandController.html#XRTK_Providers_Controllers_Hands_MixedRealityHandController_TryGetBounds_XRTK_Definitions_Controllers_Hands_TrackedHandBounds_UnityEngine_Bounds____ - commentId: M:XRTK.Providers.Controllers.Hands.MixedRealityHandController.TryGetBounds(XRTK.Definitions.Controllers.Hands.TrackedHandBounds,UnityEngine.Bounds[]@) - name.vb: TryGetBounds(TrackedHandBounds, ByRef Bounds()) - fullName: XRTK.Providers.Controllers.Hands.MixedRealityHandController.TryGetBounds(XRTK.Definitions.Controllers.Hands.TrackedHandBounds, out UnityEngine.Bounds[]) - fullName.vb: XRTK.Providers.Controllers.Hands.MixedRealityHandController.TryGetBounds(XRTK.Definitions.Controllers.Hands.TrackedHandBounds, ByRef UnityEngine.Bounds()) - nameWithType: MixedRealityHandController.TryGetBounds(TrackedHandBounds, out Bounds[]) - nameWithType.vb: MixedRealityHandController.TryGetBounds(TrackedHandBounds, ByRef Bounds()) -- uid: XRTK.Providers.Controllers.Hands.MixedRealityHandController.TryGetBounds* - name: TryGetBounds - href: api/XRTK.Providers.Controllers.Hands.MixedRealityHandController.html#XRTK_Providers_Controllers_Hands_MixedRealityHandController_TryGetBounds_ - commentId: Overload:XRTK.Providers.Controllers.Hands.MixedRealityHandController.TryGetBounds - isSpec: "True" - fullName: XRTK.Providers.Controllers.Hands.MixedRealityHandController.TryGetBounds - nameWithType: MixedRealityHandController.TryGetBounds -- uid: XRTK.Providers.Controllers.Hands.MixedRealityHandController.TryGetFingerCurlStrength(XRTK.Definitions.Controllers.Hands.HandFinger,System.Single@) - name: TryGetFingerCurlStrength(HandFinger, out Single) - href: api/XRTK.Providers.Controllers.Hands.MixedRealityHandController.html#XRTK_Providers_Controllers_Hands_MixedRealityHandController_TryGetFingerCurlStrength_XRTK_Definitions_Controllers_Hands_HandFinger_System_Single__ - commentId: M:XRTK.Providers.Controllers.Hands.MixedRealityHandController.TryGetFingerCurlStrength(XRTK.Definitions.Controllers.Hands.HandFinger,System.Single@) - name.vb: TryGetFingerCurlStrength(HandFinger, ByRef Single) - fullName: XRTK.Providers.Controllers.Hands.MixedRealityHandController.TryGetFingerCurlStrength(XRTK.Definitions.Controllers.Hands.HandFinger, out System.Single) - fullName.vb: XRTK.Providers.Controllers.Hands.MixedRealityHandController.TryGetFingerCurlStrength(XRTK.Definitions.Controllers.Hands.HandFinger, ByRef System.Single) - nameWithType: MixedRealityHandController.TryGetFingerCurlStrength(HandFinger, out Single) - nameWithType.vb: MixedRealityHandController.TryGetFingerCurlStrength(HandFinger, ByRef Single) -- uid: XRTK.Providers.Controllers.Hands.MixedRealityHandController.TryGetFingerCurlStrength* - name: TryGetFingerCurlStrength - href: api/XRTK.Providers.Controllers.Hands.MixedRealityHandController.html#XRTK_Providers_Controllers_Hands_MixedRealityHandController_TryGetFingerCurlStrength_ - commentId: Overload:XRTK.Providers.Controllers.Hands.MixedRealityHandController.TryGetFingerCurlStrength - isSpec: "True" - fullName: XRTK.Providers.Controllers.Hands.MixedRealityHandController.TryGetFingerCurlStrength - nameWithType: MixedRealityHandController.TryGetFingerCurlStrength -- uid: XRTK.Providers.Controllers.Hands.MixedRealityHandController.TryGetHandMeshData(XRTK.Definitions.Controllers.Hands.HandMeshData@) - name: TryGetHandMeshData(out HandMeshData) - href: api/XRTK.Providers.Controllers.Hands.MixedRealityHandController.html#XRTK_Providers_Controllers_Hands_MixedRealityHandController_TryGetHandMeshData_XRTK_Definitions_Controllers_Hands_HandMeshData__ - commentId: M:XRTK.Providers.Controllers.Hands.MixedRealityHandController.TryGetHandMeshData(XRTK.Definitions.Controllers.Hands.HandMeshData@) - name.vb: TryGetHandMeshData(ByRef HandMeshData) - fullName: XRTK.Providers.Controllers.Hands.MixedRealityHandController.TryGetHandMeshData(out XRTK.Definitions.Controllers.Hands.HandMeshData) - fullName.vb: XRTK.Providers.Controllers.Hands.MixedRealityHandController.TryGetHandMeshData(ByRef XRTK.Definitions.Controllers.Hands.HandMeshData) - nameWithType: MixedRealityHandController.TryGetHandMeshData(out HandMeshData) - nameWithType.vb: MixedRealityHandController.TryGetHandMeshData(ByRef HandMeshData) -- uid: XRTK.Providers.Controllers.Hands.MixedRealityHandController.TryGetHandMeshData* - name: TryGetHandMeshData - href: api/XRTK.Providers.Controllers.Hands.MixedRealityHandController.html#XRTK_Providers_Controllers_Hands_MixedRealityHandController_TryGetHandMeshData_ - commentId: Overload:XRTK.Providers.Controllers.Hands.MixedRealityHandController.TryGetHandMeshData - isSpec: "True" - fullName: XRTK.Providers.Controllers.Hands.MixedRealityHandController.TryGetHandMeshData - nameWithType: MixedRealityHandController.TryGetHandMeshData -- uid: XRTK.Providers.Controllers.Hands.MixedRealityHandController.TryGetJointPose(XRTK.Definitions.Controllers.Hands.TrackedHandJoint,XRTK.Definitions.Utilities.MixedRealityPose@,UnityEngine.Space) - name: TryGetJointPose(TrackedHandJoint, out MixedRealityPose, Space) - href: api/XRTK.Providers.Controllers.Hands.MixedRealityHandController.html#XRTK_Providers_Controllers_Hands_MixedRealityHandController_TryGetJointPose_XRTK_Definitions_Controllers_Hands_TrackedHandJoint_XRTK_Definitions_Utilities_MixedRealityPose__UnityEngine_Space_ - commentId: M:XRTK.Providers.Controllers.Hands.MixedRealityHandController.TryGetJointPose(XRTK.Definitions.Controllers.Hands.TrackedHandJoint,XRTK.Definitions.Utilities.MixedRealityPose@,UnityEngine.Space) - name.vb: TryGetJointPose(TrackedHandJoint, ByRef MixedRealityPose, Space) - fullName: XRTK.Providers.Controllers.Hands.MixedRealityHandController.TryGetJointPose(XRTK.Definitions.Controllers.Hands.TrackedHandJoint, out XRTK.Definitions.Utilities.MixedRealityPose, UnityEngine.Space) - fullName.vb: XRTK.Providers.Controllers.Hands.MixedRealityHandController.TryGetJointPose(XRTK.Definitions.Controllers.Hands.TrackedHandJoint, ByRef XRTK.Definitions.Utilities.MixedRealityPose, UnityEngine.Space) - nameWithType: MixedRealityHandController.TryGetJointPose(TrackedHandJoint, out MixedRealityPose, Space) - nameWithType.vb: MixedRealityHandController.TryGetJointPose(TrackedHandJoint, ByRef MixedRealityPose, Space) -- uid: XRTK.Providers.Controllers.Hands.MixedRealityHandController.TryGetJointPose* - name: TryGetJointPose - href: api/XRTK.Providers.Controllers.Hands.MixedRealityHandController.html#XRTK_Providers_Controllers_Hands_MixedRealityHandController_TryGetJointPose_ - commentId: Overload:XRTK.Providers.Controllers.Hands.MixedRealityHandController.TryGetJointPose - isSpec: "True" - fullName: XRTK.Providers.Controllers.Hands.MixedRealityHandController.TryGetJointPose - nameWithType: MixedRealityHandController.TryGetJointPose -- uid: XRTK.Providers.Controllers.Hands.MixedRealityHandController.UpdateController(XRTK.Definitions.Controllers.Hands.HandData) - name: UpdateController(HandData) - href: api/XRTK.Providers.Controllers.Hands.MixedRealityHandController.html#XRTK_Providers_Controllers_Hands_MixedRealityHandController_UpdateController_XRTK_Definitions_Controllers_Hands_HandData_ - commentId: M:XRTK.Providers.Controllers.Hands.MixedRealityHandController.UpdateController(XRTK.Definitions.Controllers.Hands.HandData) - fullName: XRTK.Providers.Controllers.Hands.MixedRealityHandController.UpdateController(XRTK.Definitions.Controllers.Hands.HandData) - nameWithType: MixedRealityHandController.UpdateController(HandData) -- uid: XRTK.Providers.Controllers.Hands.MixedRealityHandController.UpdateController* - name: UpdateController - href: api/XRTK.Providers.Controllers.Hands.MixedRealityHandController.html#XRTK_Providers_Controllers_Hands_MixedRealityHandController_UpdateController_ - commentId: Overload:XRTK.Providers.Controllers.Hands.MixedRealityHandController.UpdateController - isSpec: "True" - fullName: XRTK.Providers.Controllers.Hands.MixedRealityHandController.UpdateController - nameWithType: MixedRealityHandController.UpdateController -- uid: XRTK.Providers.Controllers.Hands.MixedRealityHandController.UpdateInteractionMappings - name: UpdateInteractionMappings() - href: api/XRTK.Providers.Controllers.Hands.MixedRealityHandController.html#XRTK_Providers_Controllers_Hands_MixedRealityHandController_UpdateInteractionMappings - commentId: M:XRTK.Providers.Controllers.Hands.MixedRealityHandController.UpdateInteractionMappings - fullName: XRTK.Providers.Controllers.Hands.MixedRealityHandController.UpdateInteractionMappings() - nameWithType: MixedRealityHandController.UpdateInteractionMappings() -- uid: XRTK.Providers.Controllers.Hands.MixedRealityHandController.UpdateInteractionMappings* - name: UpdateInteractionMappings - href: api/XRTK.Providers.Controllers.Hands.MixedRealityHandController.html#XRTK_Providers_Controllers_Hands_MixedRealityHandController_UpdateInteractionMappings_ - commentId: Overload:XRTK.Providers.Controllers.Hands.MixedRealityHandController.UpdateInteractionMappings - isSpec: "True" - fullName: XRTK.Providers.Controllers.Hands.MixedRealityHandController.UpdateInteractionMappings - nameWithType: MixedRealityHandController.UpdateInteractionMappings -- uid: XRTK.Providers.Controllers.OpenVR - name: XRTK.Providers.Controllers.OpenVR - href: api/XRTK.Providers.Controllers.OpenVR.html - commentId: N:XRTK.Providers.Controllers.OpenVR - fullName: XRTK.Providers.Controllers.OpenVR - nameWithType: XRTK.Providers.Controllers.OpenVR -- uid: XRTK.Providers.Controllers.OpenVR.GenericOpenVRController - name: GenericOpenVRController - href: api/XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.html - commentId: T:XRTK.Providers.Controllers.OpenVR.GenericOpenVRController - fullName: XRTK.Providers.Controllers.OpenVR.GenericOpenVRController - nameWithType: GenericOpenVRController -- uid: XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.#ctor - name: GenericOpenVRController() - href: api/XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.html#XRTK_Providers_Controllers_OpenVR_GenericOpenVRController__ctor - commentId: M:XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.#ctor - fullName: XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.GenericOpenVRController() - nameWithType: GenericOpenVRController.GenericOpenVRController() -- uid: XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.#ctor(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider,XRTK.Definitions.Devices.TrackingState,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - name: GenericOpenVRController(IMixedRealityControllerDataProvider, TrackingState, Handedness, MixedRealityControllerMappingProfile) - href: api/XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.html#XRTK_Providers_Controllers_OpenVR_GenericOpenVRController__ctor_XRTK_Interfaces_Providers_Controllers_IMixedRealityControllerDataProvider_XRTK_Definitions_Devices_TrackingState_XRTK_Definitions_Utilities_Handedness_XRTK_Definitions_Controllers_MixedRealityControllerMappingProfile_ - commentId: M:XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.#ctor(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider,XRTK.Definitions.Devices.TrackingState,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - fullName: XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.GenericOpenVRController(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider, XRTK.Definitions.Devices.TrackingState, XRTK.Definitions.Utilities.Handedness, XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - nameWithType: GenericOpenVRController.GenericOpenVRController(IMixedRealityControllerDataProvider, TrackingState, Handedness, MixedRealityControllerMappingProfile) -- uid: XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.#ctor* - name: GenericOpenVRController - href: api/XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.html#XRTK_Providers_Controllers_OpenVR_GenericOpenVRController__ctor_ - commentId: Overload:XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.#ctor - isSpec: "True" - fullName: XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.GenericOpenVRController - nameWithType: GenericOpenVRController.GenericOpenVRController -- uid: XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.DefaultLeftHandedInteractions - name: DefaultLeftHandedInteractions - href: api/XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.html#XRTK_Providers_Controllers_OpenVR_GenericOpenVRController_DefaultLeftHandedInteractions - commentId: P:XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.DefaultLeftHandedInteractions - fullName: XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.DefaultLeftHandedInteractions - nameWithType: GenericOpenVRController.DefaultLeftHandedInteractions -- uid: XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.DefaultLeftHandedInteractions* - name: DefaultLeftHandedInteractions - href: api/XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.html#XRTK_Providers_Controllers_OpenVR_GenericOpenVRController_DefaultLeftHandedInteractions_ - commentId: Overload:XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.DefaultLeftHandedInteractions - isSpec: "True" - fullName: XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.DefaultLeftHandedInteractions - nameWithType: GenericOpenVRController.DefaultLeftHandedInteractions -- uid: XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.DefaultRightHandedInteractions - name: DefaultRightHandedInteractions - href: api/XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.html#XRTK_Providers_Controllers_OpenVR_GenericOpenVRController_DefaultRightHandedInteractions - commentId: P:XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.DefaultRightHandedInteractions - fullName: XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.DefaultRightHandedInteractions - nameWithType: GenericOpenVRController.DefaultRightHandedInteractions -- uid: XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.DefaultRightHandedInteractions* - name: DefaultRightHandedInteractions - href: api/XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.html#XRTK_Providers_Controllers_OpenVR_GenericOpenVRController_DefaultRightHandedInteractions_ - commentId: Overload:XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.DefaultRightHandedInteractions - isSpec: "True" - fullName: XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.DefaultRightHandedInteractions - nameWithType: GenericOpenVRController.DefaultRightHandedInteractions -- uid: XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.LastXrNodeStateReading - name: LastXrNodeStateReading - href: api/XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.html#XRTK_Providers_Controllers_OpenVR_GenericOpenVRController_LastXrNodeStateReading - commentId: P:XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.LastXrNodeStateReading - fullName: XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.LastXrNodeStateReading - nameWithType: GenericOpenVRController.LastXrNodeStateReading -- uid: XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.LastXrNodeStateReading* - name: LastXrNodeStateReading - href: api/XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.html#XRTK_Providers_Controllers_OpenVR_GenericOpenVRController_LastXrNodeStateReading_ - commentId: Overload:XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.LastXrNodeStateReading - isSpec: "True" - fullName: XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.LastXrNodeStateReading - nameWithType: GenericOpenVRController.LastXrNodeStateReading -- uid: XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.UpdateController - name: UpdateController() - href: api/XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.html#XRTK_Providers_Controllers_OpenVR_GenericOpenVRController_UpdateController - commentId: M:XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.UpdateController - fullName: XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.UpdateController() - nameWithType: GenericOpenVRController.UpdateController() -- uid: XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.UpdateController* - name: UpdateController - href: api/XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.html#XRTK_Providers_Controllers_OpenVR_GenericOpenVRController_UpdateController_ - commentId: Overload:XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.UpdateController - isSpec: "True" - fullName: XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.UpdateController - nameWithType: GenericOpenVRController.UpdateController -- uid: XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.UpdateControllerData(UnityEngine.XR.XRNodeState) - name: UpdateControllerData(XRNodeState) - href: api/XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.html#XRTK_Providers_Controllers_OpenVR_GenericOpenVRController_UpdateControllerData_UnityEngine_XR_XRNodeState_ - commentId: M:XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.UpdateControllerData(UnityEngine.XR.XRNodeState) - fullName: XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.UpdateControllerData(UnityEngine.XR.XRNodeState) - nameWithType: GenericOpenVRController.UpdateControllerData(XRNodeState) -- uid: XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.UpdateControllerData* - name: UpdateControllerData - href: api/XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.html#XRTK_Providers_Controllers_OpenVR_GenericOpenVRController_UpdateControllerData_ - commentId: Overload:XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.UpdateControllerData - isSpec: "True" - fullName: XRTK.Providers.Controllers.OpenVR.GenericOpenVRController.UpdateControllerData - nameWithType: GenericOpenVRController.UpdateControllerData -- uid: XRTK.Providers.Controllers.OpenVR.OculusGoOpenVRController - name: OculusGoOpenVRController - href: api/XRTK.Providers.Controllers.OpenVR.OculusGoOpenVRController.html - commentId: T:XRTK.Providers.Controllers.OpenVR.OculusGoOpenVRController - fullName: XRTK.Providers.Controllers.OpenVR.OculusGoOpenVRController - nameWithType: OculusGoOpenVRController -- uid: XRTK.Providers.Controllers.OpenVR.OculusGoOpenVRController.#ctor - name: OculusGoOpenVRController() - href: api/XRTK.Providers.Controllers.OpenVR.OculusGoOpenVRController.html#XRTK_Providers_Controllers_OpenVR_OculusGoOpenVRController__ctor - commentId: M:XRTK.Providers.Controllers.OpenVR.OculusGoOpenVRController.#ctor - fullName: XRTK.Providers.Controllers.OpenVR.OculusGoOpenVRController.OculusGoOpenVRController() - nameWithType: OculusGoOpenVRController.OculusGoOpenVRController() -- uid: XRTK.Providers.Controllers.OpenVR.OculusGoOpenVRController.#ctor(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider,XRTK.Definitions.Devices.TrackingState,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - name: OculusGoOpenVRController(IMixedRealityControllerDataProvider, TrackingState, Handedness, MixedRealityControllerMappingProfile) - href: api/XRTK.Providers.Controllers.OpenVR.OculusGoOpenVRController.html#XRTK_Providers_Controllers_OpenVR_OculusGoOpenVRController__ctor_XRTK_Interfaces_Providers_Controllers_IMixedRealityControllerDataProvider_XRTK_Definitions_Devices_TrackingState_XRTK_Definitions_Utilities_Handedness_XRTK_Definitions_Controllers_MixedRealityControllerMappingProfile_ - commentId: M:XRTK.Providers.Controllers.OpenVR.OculusGoOpenVRController.#ctor(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider,XRTK.Definitions.Devices.TrackingState,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - fullName: XRTK.Providers.Controllers.OpenVR.OculusGoOpenVRController.OculusGoOpenVRController(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider, XRTK.Definitions.Devices.TrackingState, XRTK.Definitions.Utilities.Handedness, XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - nameWithType: OculusGoOpenVRController.OculusGoOpenVRController(IMixedRealityControllerDataProvider, TrackingState, Handedness, MixedRealityControllerMappingProfile) -- uid: XRTK.Providers.Controllers.OpenVR.OculusGoOpenVRController.#ctor* - name: OculusGoOpenVRController - href: api/XRTK.Providers.Controllers.OpenVR.OculusGoOpenVRController.html#XRTK_Providers_Controllers_OpenVR_OculusGoOpenVRController__ctor_ - commentId: Overload:XRTK.Providers.Controllers.OpenVR.OculusGoOpenVRController.#ctor - isSpec: "True" - fullName: XRTK.Providers.Controllers.OpenVR.OculusGoOpenVRController.OculusGoOpenVRController - nameWithType: OculusGoOpenVRController.OculusGoOpenVRController -- uid: XRTK.Providers.Controllers.OpenVR.OculusGoOpenVRController.DefaultInteractions - name: DefaultInteractions - href: api/XRTK.Providers.Controllers.OpenVR.OculusGoOpenVRController.html#XRTK_Providers_Controllers_OpenVR_OculusGoOpenVRController_DefaultInteractions - commentId: P:XRTK.Providers.Controllers.OpenVR.OculusGoOpenVRController.DefaultInteractions - fullName: XRTK.Providers.Controllers.OpenVR.OculusGoOpenVRController.DefaultInteractions - nameWithType: OculusGoOpenVRController.DefaultInteractions -- uid: XRTK.Providers.Controllers.OpenVR.OculusGoOpenVRController.DefaultInteractions* - name: DefaultInteractions - href: api/XRTK.Providers.Controllers.OpenVR.OculusGoOpenVRController.html#XRTK_Providers_Controllers_OpenVR_OculusGoOpenVRController_DefaultInteractions_ - commentId: Overload:XRTK.Providers.Controllers.OpenVR.OculusGoOpenVRController.DefaultInteractions - isSpec: "True" - fullName: XRTK.Providers.Controllers.OpenVR.OculusGoOpenVRController.DefaultInteractions - nameWithType: OculusGoOpenVRController.DefaultInteractions -- uid: XRTK.Providers.Controllers.OpenVR.OculusRemoteOpenVRController - name: OculusRemoteOpenVRController - href: api/XRTK.Providers.Controllers.OpenVR.OculusRemoteOpenVRController.html - commentId: T:XRTK.Providers.Controllers.OpenVR.OculusRemoteOpenVRController - fullName: XRTK.Providers.Controllers.OpenVR.OculusRemoteOpenVRController - nameWithType: OculusRemoteOpenVRController -- uid: XRTK.Providers.Controllers.OpenVR.OculusRemoteOpenVRController.#ctor - name: OculusRemoteOpenVRController() - href: api/XRTK.Providers.Controllers.OpenVR.OculusRemoteOpenVRController.html#XRTK_Providers_Controllers_OpenVR_OculusRemoteOpenVRController__ctor - commentId: M:XRTK.Providers.Controllers.OpenVR.OculusRemoteOpenVRController.#ctor - fullName: XRTK.Providers.Controllers.OpenVR.OculusRemoteOpenVRController.OculusRemoteOpenVRController() - nameWithType: OculusRemoteOpenVRController.OculusRemoteOpenVRController() -- uid: XRTK.Providers.Controllers.OpenVR.OculusRemoteOpenVRController.#ctor(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider,XRTK.Definitions.Devices.TrackingState,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - name: OculusRemoteOpenVRController(IMixedRealityControllerDataProvider, TrackingState, Handedness, MixedRealityControllerMappingProfile) - href: api/XRTK.Providers.Controllers.OpenVR.OculusRemoteOpenVRController.html#XRTK_Providers_Controllers_OpenVR_OculusRemoteOpenVRController__ctor_XRTK_Interfaces_Providers_Controllers_IMixedRealityControllerDataProvider_XRTK_Definitions_Devices_TrackingState_XRTK_Definitions_Utilities_Handedness_XRTK_Definitions_Controllers_MixedRealityControllerMappingProfile_ - commentId: M:XRTK.Providers.Controllers.OpenVR.OculusRemoteOpenVRController.#ctor(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider,XRTK.Definitions.Devices.TrackingState,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - fullName: XRTK.Providers.Controllers.OpenVR.OculusRemoteOpenVRController.OculusRemoteOpenVRController(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider, XRTK.Definitions.Devices.TrackingState, XRTK.Definitions.Utilities.Handedness, XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - nameWithType: OculusRemoteOpenVRController.OculusRemoteOpenVRController(IMixedRealityControllerDataProvider, TrackingState, Handedness, MixedRealityControllerMappingProfile) -- uid: XRTK.Providers.Controllers.OpenVR.OculusRemoteOpenVRController.#ctor* - name: OculusRemoteOpenVRController - href: api/XRTK.Providers.Controllers.OpenVR.OculusRemoteOpenVRController.html#XRTK_Providers_Controllers_OpenVR_OculusRemoteOpenVRController__ctor_ - commentId: Overload:XRTK.Providers.Controllers.OpenVR.OculusRemoteOpenVRController.#ctor - isSpec: "True" - fullName: XRTK.Providers.Controllers.OpenVR.OculusRemoteOpenVRController.OculusRemoteOpenVRController - nameWithType: OculusRemoteOpenVRController.OculusRemoteOpenVRController -- uid: XRTK.Providers.Controllers.OpenVR.OculusRemoteOpenVRController.DefaultInteractions - name: DefaultInteractions - href: api/XRTK.Providers.Controllers.OpenVR.OculusRemoteOpenVRController.html#XRTK_Providers_Controllers_OpenVR_OculusRemoteOpenVRController_DefaultInteractions - commentId: P:XRTK.Providers.Controllers.OpenVR.OculusRemoteOpenVRController.DefaultInteractions - fullName: XRTK.Providers.Controllers.OpenVR.OculusRemoteOpenVRController.DefaultInteractions - nameWithType: OculusRemoteOpenVRController.DefaultInteractions -- uid: XRTK.Providers.Controllers.OpenVR.OculusRemoteOpenVRController.DefaultInteractions* - name: DefaultInteractions - href: api/XRTK.Providers.Controllers.OpenVR.OculusRemoteOpenVRController.html#XRTK_Providers_Controllers_OpenVR_OculusRemoteOpenVRController_DefaultInteractions_ - commentId: Overload:XRTK.Providers.Controllers.OpenVR.OculusRemoteOpenVRController.DefaultInteractions - isSpec: "True" - fullName: XRTK.Providers.Controllers.OpenVR.OculusRemoteOpenVRController.DefaultInteractions - nameWithType: OculusRemoteOpenVRController.DefaultInteractions -- uid: XRTK.Providers.Controllers.OpenVR.OculusTouchOpenVRController - name: OculusTouchOpenVRController - href: api/XRTK.Providers.Controllers.OpenVR.OculusTouchOpenVRController.html - commentId: T:XRTK.Providers.Controllers.OpenVR.OculusTouchOpenVRController - fullName: XRTK.Providers.Controllers.OpenVR.OculusTouchOpenVRController - nameWithType: OculusTouchOpenVRController -- uid: XRTK.Providers.Controllers.OpenVR.OculusTouchOpenVRController.#ctor - name: OculusTouchOpenVRController() - href: api/XRTK.Providers.Controllers.OpenVR.OculusTouchOpenVRController.html#XRTK_Providers_Controllers_OpenVR_OculusTouchOpenVRController__ctor - commentId: M:XRTK.Providers.Controllers.OpenVR.OculusTouchOpenVRController.#ctor - fullName: XRTK.Providers.Controllers.OpenVR.OculusTouchOpenVRController.OculusTouchOpenVRController() - nameWithType: OculusTouchOpenVRController.OculusTouchOpenVRController() -- uid: XRTK.Providers.Controllers.OpenVR.OculusTouchOpenVRController.#ctor(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider,XRTK.Definitions.Devices.TrackingState,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - name: OculusTouchOpenVRController(IMixedRealityControllerDataProvider, TrackingState, Handedness, MixedRealityControllerMappingProfile) - href: api/XRTK.Providers.Controllers.OpenVR.OculusTouchOpenVRController.html#XRTK_Providers_Controllers_OpenVR_OculusTouchOpenVRController__ctor_XRTK_Interfaces_Providers_Controllers_IMixedRealityControllerDataProvider_XRTK_Definitions_Devices_TrackingState_XRTK_Definitions_Utilities_Handedness_XRTK_Definitions_Controllers_MixedRealityControllerMappingProfile_ - commentId: M:XRTK.Providers.Controllers.OpenVR.OculusTouchOpenVRController.#ctor(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider,XRTK.Definitions.Devices.TrackingState,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - fullName: XRTK.Providers.Controllers.OpenVR.OculusTouchOpenVRController.OculusTouchOpenVRController(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider, XRTK.Definitions.Devices.TrackingState, XRTK.Definitions.Utilities.Handedness, XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - nameWithType: OculusTouchOpenVRController.OculusTouchOpenVRController(IMixedRealityControllerDataProvider, TrackingState, Handedness, MixedRealityControllerMappingProfile) -- uid: XRTK.Providers.Controllers.OpenVR.OculusTouchOpenVRController.#ctor* - name: OculusTouchOpenVRController - href: api/XRTK.Providers.Controllers.OpenVR.OculusTouchOpenVRController.html#XRTK_Providers_Controllers_OpenVR_OculusTouchOpenVRController__ctor_ - commentId: Overload:XRTK.Providers.Controllers.OpenVR.OculusTouchOpenVRController.#ctor - isSpec: "True" - fullName: XRTK.Providers.Controllers.OpenVR.OculusTouchOpenVRController.OculusTouchOpenVRController - nameWithType: OculusTouchOpenVRController.OculusTouchOpenVRController -- uid: XRTK.Providers.Controllers.OpenVR.OculusTouchOpenVRController.DefaultLeftHandedInteractions - name: DefaultLeftHandedInteractions - href: api/XRTK.Providers.Controllers.OpenVR.OculusTouchOpenVRController.html#XRTK_Providers_Controllers_OpenVR_OculusTouchOpenVRController_DefaultLeftHandedInteractions - commentId: P:XRTK.Providers.Controllers.OpenVR.OculusTouchOpenVRController.DefaultLeftHandedInteractions - fullName: XRTK.Providers.Controllers.OpenVR.OculusTouchOpenVRController.DefaultLeftHandedInteractions - nameWithType: OculusTouchOpenVRController.DefaultLeftHandedInteractions -- uid: XRTK.Providers.Controllers.OpenVR.OculusTouchOpenVRController.DefaultLeftHandedInteractions* - name: DefaultLeftHandedInteractions - href: api/XRTK.Providers.Controllers.OpenVR.OculusTouchOpenVRController.html#XRTK_Providers_Controllers_OpenVR_OculusTouchOpenVRController_DefaultLeftHandedInteractions_ - commentId: Overload:XRTK.Providers.Controllers.OpenVR.OculusTouchOpenVRController.DefaultLeftHandedInteractions - isSpec: "True" - fullName: XRTK.Providers.Controllers.OpenVR.OculusTouchOpenVRController.DefaultLeftHandedInteractions - nameWithType: OculusTouchOpenVRController.DefaultLeftHandedInteractions -- uid: XRTK.Providers.Controllers.OpenVR.OculusTouchOpenVRController.DefaultRightHandedInteractions - name: DefaultRightHandedInteractions - href: api/XRTK.Providers.Controllers.OpenVR.OculusTouchOpenVRController.html#XRTK_Providers_Controllers_OpenVR_OculusTouchOpenVRController_DefaultRightHandedInteractions - commentId: P:XRTK.Providers.Controllers.OpenVR.OculusTouchOpenVRController.DefaultRightHandedInteractions - fullName: XRTK.Providers.Controllers.OpenVR.OculusTouchOpenVRController.DefaultRightHandedInteractions - nameWithType: OculusTouchOpenVRController.DefaultRightHandedInteractions -- uid: XRTK.Providers.Controllers.OpenVR.OculusTouchOpenVRController.DefaultRightHandedInteractions* - name: DefaultRightHandedInteractions - href: api/XRTK.Providers.Controllers.OpenVR.OculusTouchOpenVRController.html#XRTK_Providers_Controllers_OpenVR_OculusTouchOpenVRController_DefaultRightHandedInteractions_ - commentId: Overload:XRTK.Providers.Controllers.OpenVR.OculusTouchOpenVRController.DefaultRightHandedInteractions - isSpec: "True" - fullName: XRTK.Providers.Controllers.OpenVR.OculusTouchOpenVRController.DefaultRightHandedInteractions - nameWithType: OculusTouchOpenVRController.DefaultRightHandedInteractions -- uid: XRTK.Providers.Controllers.OpenVR.OculusTouchOpenVRController.GripPoseOffset - name: GripPoseOffset - href: api/XRTK.Providers.Controllers.OpenVR.OculusTouchOpenVRController.html#XRTK_Providers_Controllers_OpenVR_OculusTouchOpenVRController_GripPoseOffset - commentId: P:XRTK.Providers.Controllers.OpenVR.OculusTouchOpenVRController.GripPoseOffset - fullName: XRTK.Providers.Controllers.OpenVR.OculusTouchOpenVRController.GripPoseOffset - nameWithType: OculusTouchOpenVRController.GripPoseOffset -- uid: XRTK.Providers.Controllers.OpenVR.OculusTouchOpenVRController.GripPoseOffset* - name: GripPoseOffset - href: api/XRTK.Providers.Controllers.OpenVR.OculusTouchOpenVRController.html#XRTK_Providers_Controllers_OpenVR_OculusTouchOpenVRController_GripPoseOffset_ - commentId: Overload:XRTK.Providers.Controllers.OpenVR.OculusTouchOpenVRController.GripPoseOffset - isSpec: "True" - fullName: XRTK.Providers.Controllers.OpenVR.OculusTouchOpenVRController.GripPoseOffset - nameWithType: OculusTouchOpenVRController.GripPoseOffset -- uid: XRTK.Providers.Controllers.OpenVR.OculusTouchOpenVRController.UpdateController - name: UpdateController() - href: api/XRTK.Providers.Controllers.OpenVR.OculusTouchOpenVRController.html#XRTK_Providers_Controllers_OpenVR_OculusTouchOpenVRController_UpdateController - commentId: M:XRTK.Providers.Controllers.OpenVR.OculusTouchOpenVRController.UpdateController - fullName: XRTK.Providers.Controllers.OpenVR.OculusTouchOpenVRController.UpdateController() - nameWithType: OculusTouchOpenVRController.UpdateController() -- uid: XRTK.Providers.Controllers.OpenVR.OculusTouchOpenVRController.UpdateController* - name: UpdateController - href: api/XRTK.Providers.Controllers.OpenVR.OculusTouchOpenVRController.html#XRTK_Providers_Controllers_OpenVR_OculusTouchOpenVRController_UpdateController_ - commentId: Overload:XRTK.Providers.Controllers.OpenVR.OculusTouchOpenVRController.UpdateController - isSpec: "True" - fullName: XRTK.Providers.Controllers.OpenVR.OculusTouchOpenVRController.UpdateController - nameWithType: OculusTouchOpenVRController.UpdateController -- uid: XRTK.Providers.Controllers.OpenVR.OpenVRControllerDataProvider - name: OpenVRControllerDataProvider - href: api/XRTK.Providers.Controllers.OpenVR.OpenVRControllerDataProvider.html - commentId: T:XRTK.Providers.Controllers.OpenVR.OpenVRControllerDataProvider - fullName: XRTK.Providers.Controllers.OpenVR.OpenVRControllerDataProvider - nameWithType: OpenVRControllerDataProvider -- uid: XRTK.Providers.Controllers.OpenVR.OpenVRControllerDataProvider.#ctor(System.String,System.UInt32,XRTK.Definitions.Controllers.OpenVR.Profiles.OpenVRControllerDataProviderProfile,XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - name: OpenVRControllerDataProvider(String, UInt32, OpenVRControllerDataProviderProfile, IMixedRealityInputSystem) - href: api/XRTK.Providers.Controllers.OpenVR.OpenVRControllerDataProvider.html#XRTK_Providers_Controllers_OpenVR_OpenVRControllerDataProvider__ctor_System_String_System_UInt32_XRTK_Definitions_Controllers_OpenVR_Profiles_OpenVRControllerDataProviderProfile_XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_ - commentId: M:XRTK.Providers.Controllers.OpenVR.OpenVRControllerDataProvider.#ctor(System.String,System.UInt32,XRTK.Definitions.Controllers.OpenVR.Profiles.OpenVRControllerDataProviderProfile,XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - fullName: XRTK.Providers.Controllers.OpenVR.OpenVRControllerDataProvider.OpenVRControllerDataProvider(System.String, System.UInt32, XRTK.Definitions.Controllers.OpenVR.Profiles.OpenVRControllerDataProviderProfile, XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - nameWithType: OpenVRControllerDataProvider.OpenVRControllerDataProvider(String, UInt32, OpenVRControllerDataProviderProfile, IMixedRealityInputSystem) -- uid: XRTK.Providers.Controllers.OpenVR.OpenVRControllerDataProvider.#ctor* - name: OpenVRControllerDataProvider - href: api/XRTK.Providers.Controllers.OpenVR.OpenVRControllerDataProvider.html#XRTK_Providers_Controllers_OpenVR_OpenVRControllerDataProvider__ctor_ - commentId: Overload:XRTK.Providers.Controllers.OpenVR.OpenVRControllerDataProvider.#ctor - isSpec: "True" - fullName: XRTK.Providers.Controllers.OpenVR.OpenVRControllerDataProvider.OpenVRControllerDataProvider - nameWithType: OpenVRControllerDataProvider.OpenVRControllerDataProvider -- uid: XRTK.Providers.Controllers.OpenVR.OpenVRControllerDataProvider.GetCurrentControllerType(System.String) - name: GetCurrentControllerType(String) - href: api/XRTK.Providers.Controllers.OpenVR.OpenVRControllerDataProvider.html#XRTK_Providers_Controllers_OpenVR_OpenVRControllerDataProvider_GetCurrentControllerType_System_String_ - commentId: M:XRTK.Providers.Controllers.OpenVR.OpenVRControllerDataProvider.GetCurrentControllerType(System.String) - fullName: XRTK.Providers.Controllers.OpenVR.OpenVRControllerDataProvider.GetCurrentControllerType(System.String) - nameWithType: OpenVRControllerDataProvider.GetCurrentControllerType(String) -- uid: XRTK.Providers.Controllers.OpenVR.OpenVRControllerDataProvider.GetCurrentControllerType* - name: GetCurrentControllerType - href: api/XRTK.Providers.Controllers.OpenVR.OpenVRControllerDataProvider.html#XRTK_Providers_Controllers_OpenVR_OpenVRControllerDataProvider_GetCurrentControllerType_ - commentId: Overload:XRTK.Providers.Controllers.OpenVR.OpenVRControllerDataProvider.GetCurrentControllerType - isSpec: "True" - fullName: XRTK.Providers.Controllers.OpenVR.OpenVRControllerDataProvider.GetCurrentControllerType - nameWithType: OpenVRControllerDataProvider.GetCurrentControllerType -- uid: XRTK.Providers.Controllers.OpenVR.OpenVRControllerDataProvider.GetOrAddController(System.String) - name: GetOrAddController(String) - href: api/XRTK.Providers.Controllers.OpenVR.OpenVRControllerDataProvider.html#XRTK_Providers_Controllers_OpenVR_OpenVRControllerDataProvider_GetOrAddController_System_String_ - commentId: M:XRTK.Providers.Controllers.OpenVR.OpenVRControllerDataProvider.GetOrAddController(System.String) - fullName: XRTK.Providers.Controllers.OpenVR.OpenVRControllerDataProvider.GetOrAddController(System.String) - nameWithType: OpenVRControllerDataProvider.GetOrAddController(String) -- uid: XRTK.Providers.Controllers.OpenVR.OpenVRControllerDataProvider.GetOrAddController* - name: GetOrAddController - href: api/XRTK.Providers.Controllers.OpenVR.OpenVRControllerDataProvider.html#XRTK_Providers_Controllers_OpenVR_OpenVRControllerDataProvider_GetOrAddController_ - commentId: Overload:XRTK.Providers.Controllers.OpenVR.OpenVRControllerDataProvider.GetOrAddController - isSpec: "True" - fullName: XRTK.Providers.Controllers.OpenVR.OpenVRControllerDataProvider.GetOrAddController - nameWithType: OpenVRControllerDataProvider.GetOrAddController -- uid: XRTK.Providers.Controllers.OpenVR.ViveKnucklesOpenVRController - name: ViveKnucklesOpenVRController - href: api/XRTK.Providers.Controllers.OpenVR.ViveKnucklesOpenVRController.html - commentId: T:XRTK.Providers.Controllers.OpenVR.ViveKnucklesOpenVRController - fullName: XRTK.Providers.Controllers.OpenVR.ViveKnucklesOpenVRController - nameWithType: ViveKnucklesOpenVRController -- uid: XRTK.Providers.Controllers.OpenVR.ViveKnucklesOpenVRController.#ctor - name: ViveKnucklesOpenVRController() - href: api/XRTK.Providers.Controllers.OpenVR.ViveKnucklesOpenVRController.html#XRTK_Providers_Controllers_OpenVR_ViveKnucklesOpenVRController__ctor - commentId: M:XRTK.Providers.Controllers.OpenVR.ViveKnucklesOpenVRController.#ctor - fullName: XRTK.Providers.Controllers.OpenVR.ViveKnucklesOpenVRController.ViveKnucklesOpenVRController() - nameWithType: ViveKnucklesOpenVRController.ViveKnucklesOpenVRController() -- uid: XRTK.Providers.Controllers.OpenVR.ViveKnucklesOpenVRController.#ctor(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider,XRTK.Definitions.Devices.TrackingState,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - name: ViveKnucklesOpenVRController(IMixedRealityControllerDataProvider, TrackingState, Handedness, MixedRealityControllerMappingProfile) - href: api/XRTK.Providers.Controllers.OpenVR.ViveKnucklesOpenVRController.html#XRTK_Providers_Controllers_OpenVR_ViveKnucklesOpenVRController__ctor_XRTK_Interfaces_Providers_Controllers_IMixedRealityControllerDataProvider_XRTK_Definitions_Devices_TrackingState_XRTK_Definitions_Utilities_Handedness_XRTK_Definitions_Controllers_MixedRealityControllerMappingProfile_ - commentId: M:XRTK.Providers.Controllers.OpenVR.ViveKnucklesOpenVRController.#ctor(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider,XRTK.Definitions.Devices.TrackingState,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - fullName: XRTK.Providers.Controllers.OpenVR.ViveKnucklesOpenVRController.ViveKnucklesOpenVRController(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider, XRTK.Definitions.Devices.TrackingState, XRTK.Definitions.Utilities.Handedness, XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - nameWithType: ViveKnucklesOpenVRController.ViveKnucklesOpenVRController(IMixedRealityControllerDataProvider, TrackingState, Handedness, MixedRealityControllerMappingProfile) -- uid: XRTK.Providers.Controllers.OpenVR.ViveKnucklesOpenVRController.#ctor* - name: ViveKnucklesOpenVRController - href: api/XRTK.Providers.Controllers.OpenVR.ViveKnucklesOpenVRController.html#XRTK_Providers_Controllers_OpenVR_ViveKnucklesOpenVRController__ctor_ - commentId: Overload:XRTK.Providers.Controllers.OpenVR.ViveKnucklesOpenVRController.#ctor - isSpec: "True" - fullName: XRTK.Providers.Controllers.OpenVR.ViveKnucklesOpenVRController.ViveKnucklesOpenVRController - nameWithType: ViveKnucklesOpenVRController.ViveKnucklesOpenVRController -- uid: XRTK.Providers.Controllers.OpenVR.ViveKnucklesOpenVRController.DefaultLeftHandedInteractions - name: DefaultLeftHandedInteractions - href: api/XRTK.Providers.Controllers.OpenVR.ViveKnucklesOpenVRController.html#XRTK_Providers_Controllers_OpenVR_ViveKnucklesOpenVRController_DefaultLeftHandedInteractions - commentId: P:XRTK.Providers.Controllers.OpenVR.ViveKnucklesOpenVRController.DefaultLeftHandedInteractions - fullName: XRTK.Providers.Controllers.OpenVR.ViveKnucklesOpenVRController.DefaultLeftHandedInteractions - nameWithType: ViveKnucklesOpenVRController.DefaultLeftHandedInteractions -- uid: XRTK.Providers.Controllers.OpenVR.ViveKnucklesOpenVRController.DefaultLeftHandedInteractions* - name: DefaultLeftHandedInteractions - href: api/XRTK.Providers.Controllers.OpenVR.ViveKnucklesOpenVRController.html#XRTK_Providers_Controllers_OpenVR_ViveKnucklesOpenVRController_DefaultLeftHandedInteractions_ - commentId: Overload:XRTK.Providers.Controllers.OpenVR.ViveKnucklesOpenVRController.DefaultLeftHandedInteractions - isSpec: "True" - fullName: XRTK.Providers.Controllers.OpenVR.ViveKnucklesOpenVRController.DefaultLeftHandedInteractions - nameWithType: ViveKnucklesOpenVRController.DefaultLeftHandedInteractions -- uid: XRTK.Providers.Controllers.OpenVR.ViveKnucklesOpenVRController.DefaultRightHandedInteractions - name: DefaultRightHandedInteractions - href: api/XRTK.Providers.Controllers.OpenVR.ViveKnucklesOpenVRController.html#XRTK_Providers_Controllers_OpenVR_ViveKnucklesOpenVRController_DefaultRightHandedInteractions - commentId: P:XRTK.Providers.Controllers.OpenVR.ViveKnucklesOpenVRController.DefaultRightHandedInteractions - fullName: XRTK.Providers.Controllers.OpenVR.ViveKnucklesOpenVRController.DefaultRightHandedInteractions - nameWithType: ViveKnucklesOpenVRController.DefaultRightHandedInteractions -- uid: XRTK.Providers.Controllers.OpenVR.ViveKnucklesOpenVRController.DefaultRightHandedInteractions* - name: DefaultRightHandedInteractions - href: api/XRTK.Providers.Controllers.OpenVR.ViveKnucklesOpenVRController.html#XRTK_Providers_Controllers_OpenVR_ViveKnucklesOpenVRController_DefaultRightHandedInteractions_ - commentId: Overload:XRTK.Providers.Controllers.OpenVR.ViveKnucklesOpenVRController.DefaultRightHandedInteractions - isSpec: "True" - fullName: XRTK.Providers.Controllers.OpenVR.ViveKnucklesOpenVRController.DefaultRightHandedInteractions - nameWithType: ViveKnucklesOpenVRController.DefaultRightHandedInteractions -- uid: XRTK.Providers.Controllers.OpenVR.ViveWandOpenVRController - name: ViveWandOpenVRController - href: api/XRTK.Providers.Controllers.OpenVR.ViveWandOpenVRController.html - commentId: T:XRTK.Providers.Controllers.OpenVR.ViveWandOpenVRController - fullName: XRTK.Providers.Controllers.OpenVR.ViveWandOpenVRController - nameWithType: ViveWandOpenVRController -- uid: XRTK.Providers.Controllers.OpenVR.ViveWandOpenVRController.#ctor - name: ViveWandOpenVRController() - href: api/XRTK.Providers.Controllers.OpenVR.ViveWandOpenVRController.html#XRTK_Providers_Controllers_OpenVR_ViveWandOpenVRController__ctor - commentId: M:XRTK.Providers.Controllers.OpenVR.ViveWandOpenVRController.#ctor - fullName: XRTK.Providers.Controllers.OpenVR.ViveWandOpenVRController.ViveWandOpenVRController() - nameWithType: ViveWandOpenVRController.ViveWandOpenVRController() -- uid: XRTK.Providers.Controllers.OpenVR.ViveWandOpenVRController.#ctor(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider,XRTK.Definitions.Devices.TrackingState,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - name: ViveWandOpenVRController(IMixedRealityControllerDataProvider, TrackingState, Handedness, MixedRealityControllerMappingProfile) - href: api/XRTK.Providers.Controllers.OpenVR.ViveWandOpenVRController.html#XRTK_Providers_Controllers_OpenVR_ViveWandOpenVRController__ctor_XRTK_Interfaces_Providers_Controllers_IMixedRealityControllerDataProvider_XRTK_Definitions_Devices_TrackingState_XRTK_Definitions_Utilities_Handedness_XRTK_Definitions_Controllers_MixedRealityControllerMappingProfile_ - commentId: M:XRTK.Providers.Controllers.OpenVR.ViveWandOpenVRController.#ctor(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider,XRTK.Definitions.Devices.TrackingState,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - fullName: XRTK.Providers.Controllers.OpenVR.ViveWandOpenVRController.ViveWandOpenVRController(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider, XRTK.Definitions.Devices.TrackingState, XRTK.Definitions.Utilities.Handedness, XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - nameWithType: ViveWandOpenVRController.ViveWandOpenVRController(IMixedRealityControllerDataProvider, TrackingState, Handedness, MixedRealityControllerMappingProfile) -- uid: XRTK.Providers.Controllers.OpenVR.ViveWandOpenVRController.#ctor* - name: ViveWandOpenVRController - href: api/XRTK.Providers.Controllers.OpenVR.ViveWandOpenVRController.html#XRTK_Providers_Controllers_OpenVR_ViveWandOpenVRController__ctor_ - commentId: Overload:XRTK.Providers.Controllers.OpenVR.ViveWandOpenVRController.#ctor - isSpec: "True" - fullName: XRTK.Providers.Controllers.OpenVR.ViveWandOpenVRController.ViveWandOpenVRController - nameWithType: ViveWandOpenVRController.ViveWandOpenVRController -- uid: XRTK.Providers.Controllers.OpenVR.ViveWandOpenVRController.DefaultLeftHandedInteractions - name: DefaultLeftHandedInteractions - href: api/XRTK.Providers.Controllers.OpenVR.ViveWandOpenVRController.html#XRTK_Providers_Controllers_OpenVR_ViveWandOpenVRController_DefaultLeftHandedInteractions - commentId: P:XRTK.Providers.Controllers.OpenVR.ViveWandOpenVRController.DefaultLeftHandedInteractions - fullName: XRTK.Providers.Controllers.OpenVR.ViveWandOpenVRController.DefaultLeftHandedInteractions - nameWithType: ViveWandOpenVRController.DefaultLeftHandedInteractions -- uid: XRTK.Providers.Controllers.OpenVR.ViveWandOpenVRController.DefaultLeftHandedInteractions* - name: DefaultLeftHandedInteractions - href: api/XRTK.Providers.Controllers.OpenVR.ViveWandOpenVRController.html#XRTK_Providers_Controllers_OpenVR_ViveWandOpenVRController_DefaultLeftHandedInteractions_ - commentId: Overload:XRTK.Providers.Controllers.OpenVR.ViveWandOpenVRController.DefaultLeftHandedInteractions - isSpec: "True" - fullName: XRTK.Providers.Controllers.OpenVR.ViveWandOpenVRController.DefaultLeftHandedInteractions - nameWithType: ViveWandOpenVRController.DefaultLeftHandedInteractions -- uid: XRTK.Providers.Controllers.OpenVR.ViveWandOpenVRController.DefaultRightHandedInteractions - name: DefaultRightHandedInteractions - href: api/XRTK.Providers.Controllers.OpenVR.ViveWandOpenVRController.html#XRTK_Providers_Controllers_OpenVR_ViveWandOpenVRController_DefaultRightHandedInteractions - commentId: P:XRTK.Providers.Controllers.OpenVR.ViveWandOpenVRController.DefaultRightHandedInteractions - fullName: XRTK.Providers.Controllers.OpenVR.ViveWandOpenVRController.DefaultRightHandedInteractions - nameWithType: ViveWandOpenVRController.DefaultRightHandedInteractions -- uid: XRTK.Providers.Controllers.OpenVR.ViveWandOpenVRController.DefaultRightHandedInteractions* - name: DefaultRightHandedInteractions - href: api/XRTK.Providers.Controllers.OpenVR.ViveWandOpenVRController.html#XRTK_Providers_Controllers_OpenVR_ViveWandOpenVRController_DefaultRightHandedInteractions_ - commentId: Overload:XRTK.Providers.Controllers.OpenVR.ViveWandOpenVRController.DefaultRightHandedInteractions - isSpec: "True" - fullName: XRTK.Providers.Controllers.OpenVR.ViveWandOpenVRController.DefaultRightHandedInteractions - nameWithType: ViveWandOpenVRController.DefaultRightHandedInteractions -- uid: XRTK.Providers.Controllers.OpenVR.WindowsMixedRealityOpenVRMotionController - name: WindowsMixedRealityOpenVRMotionController - href: api/XRTK.Providers.Controllers.OpenVR.WindowsMixedRealityOpenVRMotionController.html - commentId: T:XRTK.Providers.Controllers.OpenVR.WindowsMixedRealityOpenVRMotionController - fullName: XRTK.Providers.Controllers.OpenVR.WindowsMixedRealityOpenVRMotionController - nameWithType: WindowsMixedRealityOpenVRMotionController -- uid: XRTK.Providers.Controllers.OpenVR.WindowsMixedRealityOpenVRMotionController.#ctor - name: WindowsMixedRealityOpenVRMotionController() - href: api/XRTK.Providers.Controllers.OpenVR.WindowsMixedRealityOpenVRMotionController.html#XRTK_Providers_Controllers_OpenVR_WindowsMixedRealityOpenVRMotionController__ctor - commentId: M:XRTK.Providers.Controllers.OpenVR.WindowsMixedRealityOpenVRMotionController.#ctor - fullName: XRTK.Providers.Controllers.OpenVR.WindowsMixedRealityOpenVRMotionController.WindowsMixedRealityOpenVRMotionController() - nameWithType: WindowsMixedRealityOpenVRMotionController.WindowsMixedRealityOpenVRMotionController() -- uid: XRTK.Providers.Controllers.OpenVR.WindowsMixedRealityOpenVRMotionController.#ctor(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider,XRTK.Definitions.Devices.TrackingState,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - name: WindowsMixedRealityOpenVRMotionController(IMixedRealityControllerDataProvider, TrackingState, Handedness, MixedRealityControllerMappingProfile) - href: api/XRTK.Providers.Controllers.OpenVR.WindowsMixedRealityOpenVRMotionController.html#XRTK_Providers_Controllers_OpenVR_WindowsMixedRealityOpenVRMotionController__ctor_XRTK_Interfaces_Providers_Controllers_IMixedRealityControllerDataProvider_XRTK_Definitions_Devices_TrackingState_XRTK_Definitions_Utilities_Handedness_XRTK_Definitions_Controllers_MixedRealityControllerMappingProfile_ - commentId: M:XRTK.Providers.Controllers.OpenVR.WindowsMixedRealityOpenVRMotionController.#ctor(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider,XRTK.Definitions.Devices.TrackingState,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - fullName: XRTK.Providers.Controllers.OpenVR.WindowsMixedRealityOpenVRMotionController.WindowsMixedRealityOpenVRMotionController(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider, XRTK.Definitions.Devices.TrackingState, XRTK.Definitions.Utilities.Handedness, XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - nameWithType: WindowsMixedRealityOpenVRMotionController.WindowsMixedRealityOpenVRMotionController(IMixedRealityControllerDataProvider, TrackingState, Handedness, MixedRealityControllerMappingProfile) -- uid: XRTK.Providers.Controllers.OpenVR.WindowsMixedRealityOpenVRMotionController.#ctor* - name: WindowsMixedRealityOpenVRMotionController - href: api/XRTK.Providers.Controllers.OpenVR.WindowsMixedRealityOpenVRMotionController.html#XRTK_Providers_Controllers_OpenVR_WindowsMixedRealityOpenVRMotionController__ctor_ - commentId: Overload:XRTK.Providers.Controllers.OpenVR.WindowsMixedRealityOpenVRMotionController.#ctor - isSpec: "True" - fullName: XRTK.Providers.Controllers.OpenVR.WindowsMixedRealityOpenVRMotionController.WindowsMixedRealityOpenVRMotionController - nameWithType: WindowsMixedRealityOpenVRMotionController.WindowsMixedRealityOpenVRMotionController -- uid: XRTK.Providers.Controllers.OpenVR.WindowsMixedRealityOpenVRMotionController.DefaultLeftHandedInteractions - name: DefaultLeftHandedInteractions - href: api/XRTK.Providers.Controllers.OpenVR.WindowsMixedRealityOpenVRMotionController.html#XRTK_Providers_Controllers_OpenVR_WindowsMixedRealityOpenVRMotionController_DefaultLeftHandedInteractions - commentId: P:XRTK.Providers.Controllers.OpenVR.WindowsMixedRealityOpenVRMotionController.DefaultLeftHandedInteractions - fullName: XRTK.Providers.Controllers.OpenVR.WindowsMixedRealityOpenVRMotionController.DefaultLeftHandedInteractions - nameWithType: WindowsMixedRealityOpenVRMotionController.DefaultLeftHandedInteractions -- uid: XRTK.Providers.Controllers.OpenVR.WindowsMixedRealityOpenVRMotionController.DefaultLeftHandedInteractions* - name: DefaultLeftHandedInteractions - href: api/XRTK.Providers.Controllers.OpenVR.WindowsMixedRealityOpenVRMotionController.html#XRTK_Providers_Controllers_OpenVR_WindowsMixedRealityOpenVRMotionController_DefaultLeftHandedInteractions_ - commentId: Overload:XRTK.Providers.Controllers.OpenVR.WindowsMixedRealityOpenVRMotionController.DefaultLeftHandedInteractions - isSpec: "True" - fullName: XRTK.Providers.Controllers.OpenVR.WindowsMixedRealityOpenVRMotionController.DefaultLeftHandedInteractions - nameWithType: WindowsMixedRealityOpenVRMotionController.DefaultLeftHandedInteractions -- uid: XRTK.Providers.Controllers.OpenVR.WindowsMixedRealityOpenVRMotionController.DefaultRightHandedInteractions - name: DefaultRightHandedInteractions - href: api/XRTK.Providers.Controllers.OpenVR.WindowsMixedRealityOpenVRMotionController.html#XRTK_Providers_Controllers_OpenVR_WindowsMixedRealityOpenVRMotionController_DefaultRightHandedInteractions - commentId: P:XRTK.Providers.Controllers.OpenVR.WindowsMixedRealityOpenVRMotionController.DefaultRightHandedInteractions - fullName: XRTK.Providers.Controllers.OpenVR.WindowsMixedRealityOpenVRMotionController.DefaultRightHandedInteractions - nameWithType: WindowsMixedRealityOpenVRMotionController.DefaultRightHandedInteractions -- uid: XRTK.Providers.Controllers.OpenVR.WindowsMixedRealityOpenVRMotionController.DefaultRightHandedInteractions* - name: DefaultRightHandedInteractions - href: api/XRTK.Providers.Controllers.OpenVR.WindowsMixedRealityOpenVRMotionController.html#XRTK_Providers_Controllers_OpenVR_WindowsMixedRealityOpenVRMotionController_DefaultRightHandedInteractions_ - commentId: Overload:XRTK.Providers.Controllers.OpenVR.WindowsMixedRealityOpenVRMotionController.DefaultRightHandedInteractions - isSpec: "True" - fullName: XRTK.Providers.Controllers.OpenVR.WindowsMixedRealityOpenVRMotionController.DefaultRightHandedInteractions - nameWithType: WindowsMixedRealityOpenVRMotionController.DefaultRightHandedInteractions -- uid: XRTK.Providers.Controllers.Simulation - name: XRTK.Providers.Controllers.Simulation - href: api/XRTK.Providers.Controllers.Simulation.html - commentId: N:XRTK.Providers.Controllers.Simulation - fullName: XRTK.Providers.Controllers.Simulation - nameWithType: XRTK.Providers.Controllers.Simulation -- uid: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider - name: BaseSimulatedControllerDataProvider - href: api/XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.html - commentId: T:XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider - fullName: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider - nameWithType: BaseSimulatedControllerDataProvider -- uid: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.#ctor(System.String,System.UInt32,XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile,XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - name: BaseSimulatedControllerDataProvider(String, UInt32, SimulatedControllerDataProviderProfile, IMixedRealityInputSystem) - href: api/XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_BaseSimulatedControllerDataProvider__ctor_System_String_System_UInt32_XRTK_Definitions_Controllers_Simulation_SimulatedControllerDataProviderProfile_XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_ - commentId: M:XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.#ctor(System.String,System.UInt32,XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile,XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - fullName: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.BaseSimulatedControllerDataProvider(System.String, System.UInt32, XRTK.Definitions.Controllers.Simulation.SimulatedControllerDataProviderProfile, XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - nameWithType: BaseSimulatedControllerDataProvider.BaseSimulatedControllerDataProvider(String, UInt32, SimulatedControllerDataProviderProfile, IMixedRealityInputSystem) -- uid: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.#ctor* - name: BaseSimulatedControllerDataProvider - href: api/XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_BaseSimulatedControllerDataProvider__ctor_ - commentId: Overload:XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.#ctor - isSpec: "True" - fullName: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.BaseSimulatedControllerDataProvider - nameWithType: BaseSimulatedControllerDataProvider.BaseSimulatedControllerDataProvider -- uid: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.ControllerHideTimeout - name: ControllerHideTimeout - href: api/XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_BaseSimulatedControllerDataProvider_ControllerHideTimeout - commentId: P:XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.ControllerHideTimeout - fullName: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.ControllerHideTimeout - nameWithType: BaseSimulatedControllerDataProvider.ControllerHideTimeout -- uid: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.ControllerHideTimeout* - name: ControllerHideTimeout - href: api/XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_BaseSimulatedControllerDataProvider_ControllerHideTimeout_ - commentId: Overload:XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.ControllerHideTimeout - isSpec: "True" - fullName: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.ControllerHideTimeout - nameWithType: BaseSimulatedControllerDataProvider.ControllerHideTimeout -- uid: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.CreateAndRegisterSimulatedController(XRTK.Definitions.Utilities.Handedness) - name: CreateAndRegisterSimulatedController(Handedness) - href: api/XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_BaseSimulatedControllerDataProvider_CreateAndRegisterSimulatedController_XRTK_Definitions_Utilities_Handedness_ - commentId: M:XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.CreateAndRegisterSimulatedController(XRTK.Definitions.Utilities.Handedness) - fullName: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.CreateAndRegisterSimulatedController(XRTK.Definitions.Utilities.Handedness) - nameWithType: BaseSimulatedControllerDataProvider.CreateAndRegisterSimulatedController(Handedness) -- uid: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.CreateAndRegisterSimulatedController* - name: CreateAndRegisterSimulatedController - href: api/XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_BaseSimulatedControllerDataProvider_CreateAndRegisterSimulatedController_ - commentId: Overload:XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.CreateAndRegisterSimulatedController - isSpec: "True" - fullName: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.CreateAndRegisterSimulatedController - nameWithType: BaseSimulatedControllerDataProvider.CreateAndRegisterSimulatedController -- uid: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.DefaultDistance - name: DefaultDistance - href: api/XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_BaseSimulatedControllerDataProvider_DefaultDistance - commentId: P:XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.DefaultDistance - fullName: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.DefaultDistance - nameWithType: BaseSimulatedControllerDataProvider.DefaultDistance -- uid: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.DefaultDistance* - name: DefaultDistance - href: api/XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_BaseSimulatedControllerDataProvider_DefaultDistance_ - commentId: Overload:XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.DefaultDistance - isSpec: "True" - fullName: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.DefaultDistance - nameWithType: BaseSimulatedControllerDataProvider.DefaultDistance -- uid: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.DepthMultiplier - name: DepthMultiplier - href: api/XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_BaseSimulatedControllerDataProvider_DepthMultiplier - commentId: P:XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.DepthMultiplier - fullName: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.DepthMultiplier - nameWithType: BaseSimulatedControllerDataProvider.DepthMultiplier -- uid: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.DepthMultiplier* - name: DepthMultiplier - href: api/XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_BaseSimulatedControllerDataProvider_DepthMultiplier_ - commentId: Overload:XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.DepthMultiplier - isSpec: "True" - fullName: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.DepthMultiplier - nameWithType: BaseSimulatedControllerDataProvider.DepthMultiplier -- uid: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.Disable - name: Disable() - href: api/XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_BaseSimulatedControllerDataProvider_Disable - commentId: M:XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.Disable - fullName: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.Disable() - nameWithType: BaseSimulatedControllerDataProvider.Disable() -- uid: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.Disable* - name: Disable - href: api/XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_BaseSimulatedControllerDataProvider_Disable_ - commentId: Overload:XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.Disable - isSpec: "True" - fullName: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.Disable - nameWithType: BaseSimulatedControllerDataProvider.Disable -- uid: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.Enable - name: Enable() - href: api/XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_BaseSimulatedControllerDataProvider_Enable - commentId: M:XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.Enable - fullName: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.Enable() - nameWithType: BaseSimulatedControllerDataProvider.Enable() -- uid: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.Enable* - name: Enable - href: api/XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_BaseSimulatedControllerDataProvider_Enable_ - commentId: Overload:XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.Enable - isSpec: "True" - fullName: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.Enable - nameWithType: BaseSimulatedControllerDataProvider.Enable -- uid: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.JitterAmount - name: JitterAmount - href: api/XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_BaseSimulatedControllerDataProvider_JitterAmount - commentId: P:XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.JitterAmount - fullName: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.JitterAmount - nameWithType: BaseSimulatedControllerDataProvider.JitterAmount -- uid: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.JitterAmount* - name: JitterAmount - href: api/XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_BaseSimulatedControllerDataProvider_JitterAmount_ - commentId: Overload:XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.JitterAmount - isSpec: "True" - fullName: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.JitterAmount - nameWithType: BaseSimulatedControllerDataProvider.JitterAmount -- uid: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.LeftControllerIsAlwaysVisible - name: LeftControllerIsAlwaysVisible - href: api/XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_BaseSimulatedControllerDataProvider_LeftControllerIsAlwaysVisible - commentId: P:XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.LeftControllerIsAlwaysVisible - fullName: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.LeftControllerIsAlwaysVisible - nameWithType: BaseSimulatedControllerDataProvider.LeftControllerIsAlwaysVisible -- uid: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.LeftControllerIsAlwaysVisible* - name: LeftControllerIsAlwaysVisible - href: api/XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_BaseSimulatedControllerDataProvider_LeftControllerIsAlwaysVisible_ - commentId: Overload:XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.LeftControllerIsAlwaysVisible - isSpec: "True" - fullName: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.LeftControllerIsAlwaysVisible - nameWithType: BaseSimulatedControllerDataProvider.LeftControllerIsAlwaysVisible -- uid: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.LeftControllerIsTracked - name: LeftControllerIsTracked - href: api/XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_BaseSimulatedControllerDataProvider_LeftControllerIsTracked - commentId: P:XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.LeftControllerIsTracked - fullName: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.LeftControllerIsTracked - nameWithType: BaseSimulatedControllerDataProvider.LeftControllerIsTracked -- uid: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.LeftControllerIsTracked* - name: LeftControllerIsTracked - href: api/XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_BaseSimulatedControllerDataProvider_LeftControllerIsTracked_ - commentId: Overload:XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.LeftControllerIsTracked - isSpec: "True" - fullName: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.LeftControllerIsTracked - nameWithType: BaseSimulatedControllerDataProvider.LeftControllerIsTracked -- uid: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.LeftControllerTrackedKey - name: LeftControllerTrackedKey - href: api/XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_BaseSimulatedControllerDataProvider_LeftControllerTrackedKey - commentId: P:XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.LeftControllerTrackedKey - fullName: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.LeftControllerTrackedKey - nameWithType: BaseSimulatedControllerDataProvider.LeftControllerTrackedKey -- uid: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.LeftControllerTrackedKey* - name: LeftControllerTrackedKey - href: api/XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_BaseSimulatedControllerDataProvider_LeftControllerTrackedKey_ - commentId: Overload:XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.LeftControllerTrackedKey - isSpec: "True" - fullName: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.LeftControllerTrackedKey - nameWithType: BaseSimulatedControllerDataProvider.LeftControllerTrackedKey -- uid: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.RemoveAllControllers - name: RemoveAllControllers() - href: api/XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_BaseSimulatedControllerDataProvider_RemoveAllControllers - commentId: M:XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.RemoveAllControllers - fullName: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.RemoveAllControllers() - nameWithType: BaseSimulatedControllerDataProvider.RemoveAllControllers() -- uid: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.RemoveAllControllers* - name: RemoveAllControllers - href: api/XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_BaseSimulatedControllerDataProvider_RemoveAllControllers_ - commentId: Overload:XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.RemoveAllControllers - isSpec: "True" - fullName: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.RemoveAllControllers - nameWithType: BaseSimulatedControllerDataProvider.RemoveAllControllers -- uid: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.RemoveController(XRTK.Definitions.Utilities.Handedness) - name: RemoveController(Handedness) - href: api/XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_BaseSimulatedControllerDataProvider_RemoveController_XRTK_Definitions_Utilities_Handedness_ - commentId: M:XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.RemoveController(XRTK.Definitions.Utilities.Handedness) - fullName: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.RemoveController(XRTK.Definitions.Utilities.Handedness) - nameWithType: BaseSimulatedControllerDataProvider.RemoveController(Handedness) -- uid: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.RemoveController* - name: RemoveController - href: api/XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_BaseSimulatedControllerDataProvider_RemoveController_ - commentId: Overload:XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.RemoveController - isSpec: "True" - fullName: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.RemoveController - nameWithType: BaseSimulatedControllerDataProvider.RemoveController -- uid: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.RightControllerIsAlwaysVisible - name: RightControllerIsAlwaysVisible - href: api/XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_BaseSimulatedControllerDataProvider_RightControllerIsAlwaysVisible - commentId: P:XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.RightControllerIsAlwaysVisible - fullName: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.RightControllerIsAlwaysVisible - nameWithType: BaseSimulatedControllerDataProvider.RightControllerIsAlwaysVisible -- uid: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.RightControllerIsAlwaysVisible* - name: RightControllerIsAlwaysVisible - href: api/XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_BaseSimulatedControllerDataProvider_RightControllerIsAlwaysVisible_ - commentId: Overload:XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.RightControllerIsAlwaysVisible - isSpec: "True" - fullName: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.RightControllerIsAlwaysVisible - nameWithType: BaseSimulatedControllerDataProvider.RightControllerIsAlwaysVisible -- uid: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.RightControllerIsTracked - name: RightControllerIsTracked - href: api/XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_BaseSimulatedControllerDataProvider_RightControllerIsTracked - commentId: P:XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.RightControllerIsTracked - fullName: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.RightControllerIsTracked - nameWithType: BaseSimulatedControllerDataProvider.RightControllerIsTracked -- uid: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.RightControllerIsTracked* - name: RightControllerIsTracked - href: api/XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_BaseSimulatedControllerDataProvider_RightControllerIsTracked_ - commentId: Overload:XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.RightControllerIsTracked - isSpec: "True" - fullName: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.RightControllerIsTracked - nameWithType: BaseSimulatedControllerDataProvider.RightControllerIsTracked -- uid: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.RightControllerTrackedKey - name: RightControllerTrackedKey - href: api/XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_BaseSimulatedControllerDataProvider_RightControllerTrackedKey - commentId: P:XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.RightControllerTrackedKey - fullName: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.RightControllerTrackedKey - nameWithType: BaseSimulatedControllerDataProvider.RightControllerTrackedKey -- uid: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.RightControllerTrackedKey* - name: RightControllerTrackedKey - href: api/XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_BaseSimulatedControllerDataProvider_RightControllerTrackedKey_ - commentId: Overload:XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.RightControllerTrackedKey - isSpec: "True" - fullName: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.RightControllerTrackedKey - nameWithType: BaseSimulatedControllerDataProvider.RightControllerTrackedKey -- uid: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.RotationSpeed - name: RotationSpeed - href: api/XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_BaseSimulatedControllerDataProvider_RotationSpeed - commentId: P:XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.RotationSpeed - fullName: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.RotationSpeed - nameWithType: BaseSimulatedControllerDataProvider.RotationSpeed -- uid: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.RotationSpeed* - name: RotationSpeed - href: api/XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_BaseSimulatedControllerDataProvider_RotationSpeed_ - commentId: Overload:XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.RotationSpeed - isSpec: "True" - fullName: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.RotationSpeed - nameWithType: BaseSimulatedControllerDataProvider.RotationSpeed -- uid: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.SimulatedUpdateFrequency - name: SimulatedUpdateFrequency - href: api/XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_BaseSimulatedControllerDataProvider_SimulatedUpdateFrequency - commentId: P:XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.SimulatedUpdateFrequency - fullName: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.SimulatedUpdateFrequency - nameWithType: BaseSimulatedControllerDataProvider.SimulatedUpdateFrequency -- uid: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.SimulatedUpdateFrequency* - name: SimulatedUpdateFrequency - href: api/XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_BaseSimulatedControllerDataProvider_SimulatedUpdateFrequency_ - commentId: Overload:XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.SimulatedUpdateFrequency - isSpec: "True" - fullName: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.SimulatedUpdateFrequency - nameWithType: BaseSimulatedControllerDataProvider.SimulatedUpdateFrequency -- uid: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.ToggleLeftPersistentKey - name: ToggleLeftPersistentKey - href: api/XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_BaseSimulatedControllerDataProvider_ToggleLeftPersistentKey - commentId: P:XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.ToggleLeftPersistentKey - fullName: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.ToggleLeftPersistentKey - nameWithType: BaseSimulatedControllerDataProvider.ToggleLeftPersistentKey -- uid: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.ToggleLeftPersistentKey* - name: ToggleLeftPersistentKey - href: api/XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_BaseSimulatedControllerDataProvider_ToggleLeftPersistentKey_ - commentId: Overload:XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.ToggleLeftPersistentKey - isSpec: "True" - fullName: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.ToggleLeftPersistentKey - nameWithType: BaseSimulatedControllerDataProvider.ToggleLeftPersistentKey -- uid: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.ToggleRightPersistentKey - name: ToggleRightPersistentKey - href: api/XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_BaseSimulatedControllerDataProvider_ToggleRightPersistentKey - commentId: P:XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.ToggleRightPersistentKey - fullName: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.ToggleRightPersistentKey - nameWithType: BaseSimulatedControllerDataProvider.ToggleRightPersistentKey -- uid: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.ToggleRightPersistentKey* - name: ToggleRightPersistentKey - href: api/XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_BaseSimulatedControllerDataProvider_ToggleRightPersistentKey_ - commentId: Overload:XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.ToggleRightPersistentKey - isSpec: "True" - fullName: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.ToggleRightPersistentKey - nameWithType: BaseSimulatedControllerDataProvider.ToggleRightPersistentKey -- uid: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.TryGetController(XRTK.Definitions.Utilities.Handedness,XRTK.Providers.Controllers.BaseController@) - name: TryGetController(Handedness, out BaseController) - href: api/XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_BaseSimulatedControllerDataProvider_TryGetController_XRTK_Definitions_Utilities_Handedness_XRTK_Providers_Controllers_BaseController__ - commentId: M:XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.TryGetController(XRTK.Definitions.Utilities.Handedness,XRTK.Providers.Controllers.BaseController@) - name.vb: TryGetController(Handedness, ByRef BaseController) - fullName: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.TryGetController(XRTK.Definitions.Utilities.Handedness, out XRTK.Providers.Controllers.BaseController) - fullName.vb: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.TryGetController(XRTK.Definitions.Utilities.Handedness, ByRef XRTK.Providers.Controllers.BaseController) - nameWithType: BaseSimulatedControllerDataProvider.TryGetController(Handedness, out BaseController) - nameWithType.vb: BaseSimulatedControllerDataProvider.TryGetController(Handedness, ByRef BaseController) -- uid: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.TryGetController* - name: TryGetController - href: api/XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_BaseSimulatedControllerDataProvider_TryGetController_ - commentId: Overload:XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.TryGetController - isSpec: "True" - fullName: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.TryGetController - nameWithType: BaseSimulatedControllerDataProvider.TryGetController -- uid: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.Update - name: Update() - href: api/XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_BaseSimulatedControllerDataProvider_Update - commentId: M:XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.Update - fullName: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.Update() - nameWithType: BaseSimulatedControllerDataProvider.Update() -- uid: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.Update* - name: Update - href: api/XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_BaseSimulatedControllerDataProvider_Update_ - commentId: Overload:XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.Update - isSpec: "True" - fullName: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.Update - nameWithType: BaseSimulatedControllerDataProvider.Update -- uid: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.UpdateSimulatedController(XRTK.Interfaces.Providers.Controllers.IMixedRealitySimulatedController) - name: UpdateSimulatedController(IMixedRealitySimulatedController) - href: api/XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_BaseSimulatedControllerDataProvider_UpdateSimulatedController_XRTK_Interfaces_Providers_Controllers_IMixedRealitySimulatedController_ - commentId: M:XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.UpdateSimulatedController(XRTK.Interfaces.Providers.Controllers.IMixedRealitySimulatedController) - fullName: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.UpdateSimulatedController(XRTK.Interfaces.Providers.Controllers.IMixedRealitySimulatedController) - nameWithType: BaseSimulatedControllerDataProvider.UpdateSimulatedController(IMixedRealitySimulatedController) -- uid: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.UpdateSimulatedController* - name: UpdateSimulatedController - href: api/XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_BaseSimulatedControllerDataProvider_UpdateSimulatedController_ - commentId: Overload:XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.UpdateSimulatedController - isSpec: "True" - fullName: XRTK.Providers.Controllers.Simulation.BaseSimulatedControllerDataProvider.UpdateSimulatedController - nameWithType: BaseSimulatedControllerDataProvider.UpdateSimulatedController -- uid: XRTK.Providers.Controllers.Simulation.Hands - name: XRTK.Providers.Controllers.Simulation.Hands - href: api/XRTK.Providers.Controllers.Simulation.Hands.html - commentId: N:XRTK.Providers.Controllers.Simulation.Hands - fullName: XRTK.Providers.Controllers.Simulation.Hands - nameWithType: XRTK.Providers.Controllers.Simulation.Hands -- uid: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider - name: SimulatedHandControllerDataProvider - href: api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.html - commentId: T:XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider - fullName: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider - nameWithType: SimulatedHandControllerDataProvider -- uid: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.#ctor(System.String,System.UInt32,XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile,XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - name: SimulatedHandControllerDataProvider(String, UInt32, SimulatedHandControllerDataProviderProfile, IMixedRealityInputSystem) - href: api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_Hands_SimulatedHandControllerDataProvider__ctor_System_String_System_UInt32_XRTK_Definitions_Controllers_Simulation_Hands_SimulatedHandControllerDataProviderProfile_XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_ - commentId: M:XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.#ctor(System.String,System.UInt32,XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile,XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - fullName: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.SimulatedHandControllerDataProvider(System.String, System.UInt32, XRTK.Definitions.Controllers.Simulation.Hands.SimulatedHandControllerDataProviderProfile, XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - nameWithType: SimulatedHandControllerDataProvider.SimulatedHandControllerDataProvider(String, UInt32, SimulatedHandControllerDataProviderProfile, IMixedRealityInputSystem) -- uid: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.#ctor* - name: SimulatedHandControllerDataProvider - href: api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_Hands_SimulatedHandControllerDataProvider__ctor_ - commentId: Overload:XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.#ctor - isSpec: "True" - fullName: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.SimulatedHandControllerDataProvider - nameWithType: SimulatedHandControllerDataProvider.SimulatedHandControllerDataProvider -- uid: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.BoundsMode - name: BoundsMode - href: api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_Hands_SimulatedHandControllerDataProvider_BoundsMode - commentId: P:XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.BoundsMode - fullName: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.BoundsMode - nameWithType: SimulatedHandControllerDataProvider.BoundsMode -- uid: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.BoundsMode* - name: BoundsMode - href: api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_Hands_SimulatedHandControllerDataProvider_BoundsMode_ - commentId: Overload:XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.BoundsMode - isSpec: "True" - fullName: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.BoundsMode - nameWithType: SimulatedHandControllerDataProvider.BoundsMode -- uid: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.CreateAndRegisterSimulatedController(XRTK.Definitions.Utilities.Handedness) - name: CreateAndRegisterSimulatedController(Handedness) - href: api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_Hands_SimulatedHandControllerDataProvider_CreateAndRegisterSimulatedController_XRTK_Definitions_Utilities_Handedness_ - commentId: M:XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.CreateAndRegisterSimulatedController(XRTK.Definitions.Utilities.Handedness) - fullName: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.CreateAndRegisterSimulatedController(XRTK.Definitions.Utilities.Handedness) - nameWithType: SimulatedHandControllerDataProvider.CreateAndRegisterSimulatedController(Handedness) -- uid: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.CreateAndRegisterSimulatedController* - name: CreateAndRegisterSimulatedController - href: api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_Hands_SimulatedHandControllerDataProvider_CreateAndRegisterSimulatedController_ - commentId: Overload:XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.CreateAndRegisterSimulatedController - isSpec: "True" - fullName: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.CreateAndRegisterSimulatedController - nameWithType: SimulatedHandControllerDataProvider.CreateAndRegisterSimulatedController -- uid: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.HandPhysicsEnabled - name: HandPhysicsEnabled - href: api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_Hands_SimulatedHandControllerDataProvider_HandPhysicsEnabled - commentId: P:XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.HandPhysicsEnabled - fullName: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.HandPhysicsEnabled - nameWithType: SimulatedHandControllerDataProvider.HandPhysicsEnabled -- uid: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.HandPhysicsEnabled* - name: HandPhysicsEnabled - href: api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_Hands_SimulatedHandControllerDataProvider_HandPhysicsEnabled_ - commentId: Overload:XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.HandPhysicsEnabled - isSpec: "True" - fullName: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.HandPhysicsEnabled - nameWithType: SimulatedHandControllerDataProvider.HandPhysicsEnabled -- uid: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.HandPoseAnimationSpeed - name: HandPoseAnimationSpeed - href: api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_Hands_SimulatedHandControllerDataProvider_HandPoseAnimationSpeed - commentId: P:XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.HandPoseAnimationSpeed - fullName: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.HandPoseAnimationSpeed - nameWithType: SimulatedHandControllerDataProvider.HandPoseAnimationSpeed -- uid: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.HandPoseAnimationSpeed* - name: HandPoseAnimationSpeed - href: api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_Hands_SimulatedHandControllerDataProvider_HandPoseAnimationSpeed_ - commentId: Overload:XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.HandPoseAnimationSpeed - isSpec: "True" - fullName: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.HandPoseAnimationSpeed - nameWithType: SimulatedHandControllerDataProvider.HandPoseAnimationSpeed -- uid: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.RemoveController(XRTK.Definitions.Utilities.Handedness) - name: RemoveController(Handedness) - href: api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_Hands_SimulatedHandControllerDataProvider_RemoveController_XRTK_Definitions_Utilities_Handedness_ - commentId: M:XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.RemoveController(XRTK.Definitions.Utilities.Handedness) - fullName: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.RemoveController(XRTK.Definitions.Utilities.Handedness) - nameWithType: SimulatedHandControllerDataProvider.RemoveController(Handedness) -- uid: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.RemoveController* - name: RemoveController - href: api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_Hands_SimulatedHandControllerDataProvider_RemoveController_ - commentId: Overload:XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.RemoveController - isSpec: "True" - fullName: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.RemoveController - nameWithType: SimulatedHandControllerDataProvider.RemoveController -- uid: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.RenderingMode - name: RenderingMode - href: api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_Hands_SimulatedHandControllerDataProvider_RenderingMode - commentId: P:XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.RenderingMode - fullName: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.RenderingMode - nameWithType: SimulatedHandControllerDataProvider.RenderingMode -- uid: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.RenderingMode* - name: RenderingMode - href: api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_Hands_SimulatedHandControllerDataProvider_RenderingMode_ - commentId: Overload:XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.RenderingMode - isSpec: "True" - fullName: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.RenderingMode - nameWithType: SimulatedHandControllerDataProvider.RenderingMode -- uid: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.UpdateSimulatedController(XRTK.Interfaces.Providers.Controllers.IMixedRealitySimulatedController) - name: UpdateSimulatedController(IMixedRealitySimulatedController) - href: api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_Hands_SimulatedHandControllerDataProvider_UpdateSimulatedController_XRTK_Interfaces_Providers_Controllers_IMixedRealitySimulatedController_ - commentId: M:XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.UpdateSimulatedController(XRTK.Interfaces.Providers.Controllers.IMixedRealitySimulatedController) - fullName: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.UpdateSimulatedController(XRTK.Interfaces.Providers.Controllers.IMixedRealitySimulatedController) - nameWithType: SimulatedHandControllerDataProvider.UpdateSimulatedController(IMixedRealitySimulatedController) -- uid: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.UpdateSimulatedController* - name: UpdateSimulatedController - href: api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_Hands_SimulatedHandControllerDataProvider_UpdateSimulatedController_ - commentId: Overload:XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.UpdateSimulatedController - isSpec: "True" - fullName: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.UpdateSimulatedController - nameWithType: SimulatedHandControllerDataProvider.UpdateSimulatedController -- uid: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.UseTriggers - name: UseTriggers - href: api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_Hands_SimulatedHandControllerDataProvider_UseTriggers - commentId: P:XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.UseTriggers - fullName: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.UseTriggers - nameWithType: SimulatedHandControllerDataProvider.UseTriggers -- uid: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.UseTriggers* - name: UseTriggers - href: api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.html#XRTK_Providers_Controllers_Simulation_Hands_SimulatedHandControllerDataProvider_UseTriggers_ - commentId: Overload:XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.UseTriggers - isSpec: "True" - fullName: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandControllerDataProvider.UseTriggers - nameWithType: SimulatedHandControllerDataProvider.UseTriggers -- uid: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter - name: SimulatedHandDataConverter - href: api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.html - commentId: T:XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter - fullName: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter - nameWithType: SimulatedHandDataConverter -- uid: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.#ctor(XRTK.Definitions.Utilities.Handedness,System.Collections.Generic.IReadOnlyList{XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile},System.Single,System.Single,System.Single) - name: SimulatedHandDataConverter(Handedness, IReadOnlyList, Single, Single, Single) - href: api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.html#XRTK_Providers_Controllers_Simulation_Hands_SimulatedHandDataConverter__ctor_XRTK_Definitions_Utilities_Handedness_System_Collections_Generic_IReadOnlyList_XRTK_Definitions_Controllers_Hands_HandControllerPoseProfile__System_Single_System_Single_System_Single_ - commentId: M:XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.#ctor(XRTK.Definitions.Utilities.Handedness,System.Collections.Generic.IReadOnlyList{XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile},System.Single,System.Single,System.Single) - name.vb: SimulatedHandDataConverter(Handedness, IReadOnlyList(Of HandControllerPoseProfile), Single, Single, Single) - fullName: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.SimulatedHandDataConverter(XRTK.Definitions.Utilities.Handedness, System.Collections.Generic.IReadOnlyList, System.Single, System.Single, System.Single) - fullName.vb: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.SimulatedHandDataConverter(XRTK.Definitions.Utilities.Handedness, System.Collections.Generic.IReadOnlyList(Of XRTK.Definitions.Controllers.Hands.HandControllerPoseProfile), System.Single, System.Single, System.Single) - nameWithType: SimulatedHandDataConverter.SimulatedHandDataConverter(Handedness, IReadOnlyList, Single, Single, Single) - nameWithType.vb: SimulatedHandDataConverter.SimulatedHandDataConverter(Handedness, IReadOnlyList(Of HandControllerPoseProfile), Single, Single, Single) -- uid: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.#ctor* - name: SimulatedHandDataConverter - href: api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.html#XRTK_Providers_Controllers_Simulation_Hands_SimulatedHandDataConverter__ctor_ - commentId: Overload:XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.#ctor - isSpec: "True" - fullName: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.SimulatedHandDataConverter - nameWithType: SimulatedHandDataConverter.SimulatedHandDataConverter -- uid: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.GetSimulatedHandData(UnityEngine.Vector3,UnityEngine.Vector3) - name: GetSimulatedHandData(Vector3, Vector3) - href: api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.html#XRTK_Providers_Controllers_Simulation_Hands_SimulatedHandDataConverter_GetSimulatedHandData_UnityEngine_Vector3_UnityEngine_Vector3_ - commentId: M:XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.GetSimulatedHandData(UnityEngine.Vector3,UnityEngine.Vector3) - fullName: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.GetSimulatedHandData(UnityEngine.Vector3, UnityEngine.Vector3) - nameWithType: SimulatedHandDataConverter.GetSimulatedHandData(Vector3, Vector3) -- uid: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.GetSimulatedHandData* - name: GetSimulatedHandData - href: api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.html#XRTK_Providers_Controllers_Simulation_Hands_SimulatedHandDataConverter_GetSimulatedHandData_ - commentId: Overload:XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.GetSimulatedHandData - isSpec: "True" - fullName: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.GetSimulatedHandData - nameWithType: SimulatedHandDataConverter.GetSimulatedHandData -- uid: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.HandRotateEulerAngles - name: HandRotateEulerAngles - href: api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.html#XRTK_Providers_Controllers_Simulation_Hands_SimulatedHandDataConverter_HandRotateEulerAngles - commentId: P:XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.HandRotateEulerAngles - fullName: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.HandRotateEulerAngles - nameWithType: SimulatedHandDataConverter.HandRotateEulerAngles -- uid: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.HandRotateEulerAngles* - name: HandRotateEulerAngles - href: api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.html#XRTK_Providers_Controllers_Simulation_Hands_SimulatedHandDataConverter_HandRotateEulerAngles_ - commentId: Overload:XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.HandRotateEulerAngles - isSpec: "True" - fullName: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.HandRotateEulerAngles - nameWithType: SimulatedHandDataConverter.HandRotateEulerAngles -- uid: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.JitterOffset - name: JitterOffset - href: api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.html#XRTK_Providers_Controllers_Simulation_Hands_SimulatedHandDataConverter_JitterOffset - commentId: P:XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.JitterOffset - fullName: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.JitterOffset - nameWithType: SimulatedHandDataConverter.JitterOffset -- uid: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.JitterOffset* - name: JitterOffset - href: api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.html#XRTK_Providers_Controllers_Simulation_Hands_SimulatedHandDataConverter_JitterOffset_ - commentId: Overload:XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.JitterOffset - isSpec: "True" - fullName: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.JitterOffset - nameWithType: SimulatedHandDataConverter.JitterOffset -- uid: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.Pose - name: Pose - href: api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.html#XRTK_Providers_Controllers_Simulation_Hands_SimulatedHandDataConverter_Pose - commentId: P:XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.Pose - fullName: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.Pose - nameWithType: SimulatedHandDataConverter.Pose -- uid: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.Pose* - name: Pose - href: api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.html#XRTK_Providers_Controllers_Simulation_Hands_SimulatedHandDataConverter_Pose_ - commentId: Overload:XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.Pose - isSpec: "True" - fullName: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.Pose - nameWithType: SimulatedHandDataConverter.Pose -- uid: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.ResetConverter - name: ResetConverter() - href: api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.html#XRTK_Providers_Controllers_Simulation_Hands_SimulatedHandDataConverter_ResetConverter - commentId: M:XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.ResetConverter - fullName: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.ResetConverter() - nameWithType: SimulatedHandDataConverter.ResetConverter() -- uid: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.ResetConverter* - name: ResetConverter - href: api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.html#XRTK_Providers_Controllers_Simulation_Hands_SimulatedHandDataConverter_ResetConverter_ - commentId: Overload:XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.ResetConverter - isSpec: "True" - fullName: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.ResetConverter - nameWithType: SimulatedHandDataConverter.ResetConverter -- uid: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.ScreenPosition - name: ScreenPosition - href: api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.html#XRTK_Providers_Controllers_Simulation_Hands_SimulatedHandDataConverter_ScreenPosition - commentId: P:XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.ScreenPosition - fullName: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.ScreenPosition - nameWithType: SimulatedHandDataConverter.ScreenPosition -- uid: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.ScreenPosition* - name: ScreenPosition - href: api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.html#XRTK_Providers_Controllers_Simulation_Hands_SimulatedHandDataConverter_ScreenPosition_ - commentId: Overload:XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.ScreenPosition - isSpec: "True" - fullName: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.ScreenPosition - nameWithType: SimulatedHandDataConverter.ScreenPosition -- uid: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.TargetPoseBlending - name: TargetPoseBlending - href: api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.html#XRTK_Providers_Controllers_Simulation_Hands_SimulatedHandDataConverter_TargetPoseBlending - commentId: P:XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.TargetPoseBlending - fullName: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.TargetPoseBlending - nameWithType: SimulatedHandDataConverter.TargetPoseBlending -- uid: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.TargetPoseBlending* - name: TargetPoseBlending - href: api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.html#XRTK_Providers_Controllers_Simulation_Hands_SimulatedHandDataConverter_TargetPoseBlending_ - commentId: Overload:XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.TargetPoseBlending - isSpec: "True" - fullName: XRTK.Providers.Controllers.Simulation.Hands.SimulatedHandDataConverter.TargetPoseBlending - nameWithType: SimulatedHandDataConverter.TargetPoseBlending -- uid: XRTK.Providers.Controllers.Simulation.Hands.SimulatedMixedRealityHandController - name: SimulatedMixedRealityHandController - href: api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedMixedRealityHandController.html - commentId: T:XRTK.Providers.Controllers.Simulation.Hands.SimulatedMixedRealityHandController - fullName: XRTK.Providers.Controllers.Simulation.Hands.SimulatedMixedRealityHandController - nameWithType: SimulatedMixedRealityHandController -- uid: XRTK.Providers.Controllers.Simulation.Hands.SimulatedMixedRealityHandController.#ctor - name: SimulatedMixedRealityHandController() - href: api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedMixedRealityHandController.html#XRTK_Providers_Controllers_Simulation_Hands_SimulatedMixedRealityHandController__ctor - commentId: M:XRTK.Providers.Controllers.Simulation.Hands.SimulatedMixedRealityHandController.#ctor - fullName: XRTK.Providers.Controllers.Simulation.Hands.SimulatedMixedRealityHandController.SimulatedMixedRealityHandController() - nameWithType: SimulatedMixedRealityHandController.SimulatedMixedRealityHandController() -- uid: XRTK.Providers.Controllers.Simulation.Hands.SimulatedMixedRealityHandController.#ctor(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider,XRTK.Definitions.Devices.TrackingState,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - name: SimulatedMixedRealityHandController(IMixedRealityControllerDataProvider, TrackingState, Handedness, MixedRealityControllerMappingProfile) - href: api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedMixedRealityHandController.html#XRTK_Providers_Controllers_Simulation_Hands_SimulatedMixedRealityHandController__ctor_XRTK_Interfaces_Providers_Controllers_IMixedRealityControllerDataProvider_XRTK_Definitions_Devices_TrackingState_XRTK_Definitions_Utilities_Handedness_XRTK_Definitions_Controllers_MixedRealityControllerMappingProfile_ - commentId: M:XRTK.Providers.Controllers.Simulation.Hands.SimulatedMixedRealityHandController.#ctor(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider,XRTK.Definitions.Devices.TrackingState,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - fullName: XRTK.Providers.Controllers.Simulation.Hands.SimulatedMixedRealityHandController.SimulatedMixedRealityHandController(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider, XRTK.Definitions.Devices.TrackingState, XRTK.Definitions.Utilities.Handedness, XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - nameWithType: SimulatedMixedRealityHandController.SimulatedMixedRealityHandController(IMixedRealityControllerDataProvider, TrackingState, Handedness, MixedRealityControllerMappingProfile) -- uid: XRTK.Providers.Controllers.Simulation.Hands.SimulatedMixedRealityHandController.#ctor* - name: SimulatedMixedRealityHandController - href: api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedMixedRealityHandController.html#XRTK_Providers_Controllers_Simulation_Hands_SimulatedMixedRealityHandController__ctor_ - commentId: Overload:XRTK.Providers.Controllers.Simulation.Hands.SimulatedMixedRealityHandController.#ctor - isSpec: "True" - fullName: XRTK.Providers.Controllers.Simulation.Hands.SimulatedMixedRealityHandController.SimulatedMixedRealityHandController - nameWithType: SimulatedMixedRealityHandController.SimulatedMixedRealityHandController -- uid: XRTK.Providers.Controllers.Simulation.Hands.SimulatedMixedRealityHandController.DefaultInteractions - name: DefaultInteractions - href: api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedMixedRealityHandController.html#XRTK_Providers_Controllers_Simulation_Hands_SimulatedMixedRealityHandController_DefaultInteractions - commentId: P:XRTK.Providers.Controllers.Simulation.Hands.SimulatedMixedRealityHandController.DefaultInteractions - fullName: XRTK.Providers.Controllers.Simulation.Hands.SimulatedMixedRealityHandController.DefaultInteractions - nameWithType: SimulatedMixedRealityHandController.DefaultInteractions -- uid: XRTK.Providers.Controllers.Simulation.Hands.SimulatedMixedRealityHandController.DefaultInteractions* - name: DefaultInteractions - href: api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedMixedRealityHandController.html#XRTK_Providers_Controllers_Simulation_Hands_SimulatedMixedRealityHandController_DefaultInteractions_ - commentId: Overload:XRTK.Providers.Controllers.Simulation.Hands.SimulatedMixedRealityHandController.DefaultInteractions - isSpec: "True" - fullName: XRTK.Providers.Controllers.Simulation.Hands.SimulatedMixedRealityHandController.DefaultInteractions - nameWithType: SimulatedMixedRealityHandController.DefaultInteractions -- uid: XRTK.Providers.Controllers.Simulation.Hands.SimulatedMixedRealityHandController.GetDeltaRotation(System.Single) - name: GetDeltaRotation(Single) - href: api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedMixedRealityHandController.html#XRTK_Providers_Controllers_Simulation_Hands_SimulatedMixedRealityHandController_GetDeltaRotation_System_Single_ - commentId: M:XRTK.Providers.Controllers.Simulation.Hands.SimulatedMixedRealityHandController.GetDeltaRotation(System.Single) - fullName: XRTK.Providers.Controllers.Simulation.Hands.SimulatedMixedRealityHandController.GetDeltaRotation(System.Single) - nameWithType: SimulatedMixedRealityHandController.GetDeltaRotation(Single) -- uid: XRTK.Providers.Controllers.Simulation.Hands.SimulatedMixedRealityHandController.GetDeltaRotation* - name: GetDeltaRotation - href: api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedMixedRealityHandController.html#XRTK_Providers_Controllers_Simulation_Hands_SimulatedMixedRealityHandController_GetDeltaRotation_ - commentId: Overload:XRTK.Providers.Controllers.Simulation.Hands.SimulatedMixedRealityHandController.GetDeltaRotation - isSpec: "True" - fullName: XRTK.Providers.Controllers.Simulation.Hands.SimulatedMixedRealityHandController.GetDeltaRotation - nameWithType: SimulatedMixedRealityHandController.GetDeltaRotation -- uid: XRTK.Providers.Controllers.Simulation.Hands.SimulatedMixedRealityHandController.GetPosition(System.Single) - name: GetPosition(Single) - href: api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedMixedRealityHandController.html#XRTK_Providers_Controllers_Simulation_Hands_SimulatedMixedRealityHandController_GetPosition_System_Single_ - commentId: M:XRTK.Providers.Controllers.Simulation.Hands.SimulatedMixedRealityHandController.GetPosition(System.Single) - fullName: XRTK.Providers.Controllers.Simulation.Hands.SimulatedMixedRealityHandController.GetPosition(System.Single) - nameWithType: SimulatedMixedRealityHandController.GetPosition(Single) -- uid: XRTK.Providers.Controllers.Simulation.Hands.SimulatedMixedRealityHandController.GetPosition* - name: GetPosition - href: api/XRTK.Providers.Controllers.Simulation.Hands.SimulatedMixedRealityHandController.html#XRTK_Providers_Controllers_Simulation_Hands_SimulatedMixedRealityHandController_GetPosition_ - commentId: Overload:XRTK.Providers.Controllers.Simulation.Hands.SimulatedMixedRealityHandController.GetPosition - isSpec: "True" - fullName: XRTK.Providers.Controllers.Simulation.Hands.SimulatedMixedRealityHandController.GetPosition - nameWithType: SimulatedMixedRealityHandController.GetPosition -- uid: XRTK.Providers.Controllers.UnityInput - name: XRTK.Providers.Controllers.UnityInput - href: api/XRTK.Providers.Controllers.UnityInput.html - commentId: N:XRTK.Providers.Controllers.UnityInput - fullName: XRTK.Providers.Controllers.UnityInput - nameWithType: XRTK.Providers.Controllers.UnityInput -- uid: XRTK.Providers.Controllers.UnityInput.GenericJoystickController - name: GenericJoystickController - href: api/XRTK.Providers.Controllers.UnityInput.GenericJoystickController.html - commentId: T:XRTK.Providers.Controllers.UnityInput.GenericJoystickController - fullName: XRTK.Providers.Controllers.UnityInput.GenericJoystickController - nameWithType: GenericJoystickController -- uid: XRTK.Providers.Controllers.UnityInput.GenericJoystickController.#ctor - name: GenericJoystickController() - href: api/XRTK.Providers.Controllers.UnityInput.GenericJoystickController.html#XRTK_Providers_Controllers_UnityInput_GenericJoystickController__ctor - commentId: M:XRTK.Providers.Controllers.UnityInput.GenericJoystickController.#ctor - fullName: XRTK.Providers.Controllers.UnityInput.GenericJoystickController.GenericJoystickController() - nameWithType: GenericJoystickController.GenericJoystickController() -- uid: XRTK.Providers.Controllers.UnityInput.GenericJoystickController.#ctor(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider,XRTK.Definitions.Devices.TrackingState,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - name: GenericJoystickController(IMixedRealityControllerDataProvider, TrackingState, Handedness, MixedRealityControllerMappingProfile) - href: api/XRTK.Providers.Controllers.UnityInput.GenericJoystickController.html#XRTK_Providers_Controllers_UnityInput_GenericJoystickController__ctor_XRTK_Interfaces_Providers_Controllers_IMixedRealityControllerDataProvider_XRTK_Definitions_Devices_TrackingState_XRTK_Definitions_Utilities_Handedness_XRTK_Definitions_Controllers_MixedRealityControllerMappingProfile_ - commentId: M:XRTK.Providers.Controllers.UnityInput.GenericJoystickController.#ctor(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider,XRTK.Definitions.Devices.TrackingState,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - fullName: XRTK.Providers.Controllers.UnityInput.GenericJoystickController.GenericJoystickController(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider, XRTK.Definitions.Devices.TrackingState, XRTK.Definitions.Utilities.Handedness, XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - nameWithType: GenericJoystickController.GenericJoystickController(IMixedRealityControllerDataProvider, TrackingState, Handedness, MixedRealityControllerMappingProfile) -- uid: XRTK.Providers.Controllers.UnityInput.GenericJoystickController.#ctor* - name: GenericJoystickController - href: api/XRTK.Providers.Controllers.UnityInput.GenericJoystickController.html#XRTK_Providers_Controllers_UnityInput_GenericJoystickController__ctor_ - commentId: Overload:XRTK.Providers.Controllers.UnityInput.GenericJoystickController.#ctor - isSpec: "True" - fullName: XRTK.Providers.Controllers.UnityInput.GenericJoystickController.GenericJoystickController - nameWithType: GenericJoystickController.GenericJoystickController -- uid: XRTK.Providers.Controllers.UnityInput.GenericJoystickController.CurrentControllerPose - name: CurrentControllerPose - href: api/XRTK.Providers.Controllers.UnityInput.GenericJoystickController.html#XRTK_Providers_Controllers_UnityInput_GenericJoystickController_CurrentControllerPose - commentId: F:XRTK.Providers.Controllers.UnityInput.GenericJoystickController.CurrentControllerPose - fullName: XRTK.Providers.Controllers.UnityInput.GenericJoystickController.CurrentControllerPose - nameWithType: GenericJoystickController.CurrentControllerPose -- uid: XRTK.Providers.Controllers.UnityInput.GenericJoystickController.CurrentControllerPosition - name: CurrentControllerPosition - href: api/XRTK.Providers.Controllers.UnityInput.GenericJoystickController.html#XRTK_Providers_Controllers_UnityInput_GenericJoystickController_CurrentControllerPosition - commentId: F:XRTK.Providers.Controllers.UnityInput.GenericJoystickController.CurrentControllerPosition - fullName: XRTK.Providers.Controllers.UnityInput.GenericJoystickController.CurrentControllerPosition - nameWithType: GenericJoystickController.CurrentControllerPosition -- uid: XRTK.Providers.Controllers.UnityInput.GenericJoystickController.CurrentControllerRotation - name: CurrentControllerRotation - href: api/XRTK.Providers.Controllers.UnityInput.GenericJoystickController.html#XRTK_Providers_Controllers_UnityInput_GenericJoystickController_CurrentControllerRotation - commentId: F:XRTK.Providers.Controllers.UnityInput.GenericJoystickController.CurrentControllerRotation - fullName: XRTK.Providers.Controllers.UnityInput.GenericJoystickController.CurrentControllerRotation - nameWithType: GenericJoystickController.CurrentControllerRotation -- uid: XRTK.Providers.Controllers.UnityInput.GenericJoystickController.LastControllerPose - name: LastControllerPose - href: api/XRTK.Providers.Controllers.UnityInput.GenericJoystickController.html#XRTK_Providers_Controllers_UnityInput_GenericJoystickController_LastControllerPose - commentId: F:XRTK.Providers.Controllers.UnityInput.GenericJoystickController.LastControllerPose - fullName: XRTK.Providers.Controllers.UnityInput.GenericJoystickController.LastControllerPose - nameWithType: GenericJoystickController.LastControllerPose -- uid: XRTK.Providers.Controllers.UnityInput.GenericJoystickController.PointerOffsetAngle - name: PointerOffsetAngle - href: api/XRTK.Providers.Controllers.UnityInput.GenericJoystickController.html#XRTK_Providers_Controllers_UnityInput_GenericJoystickController_PointerOffsetAngle - commentId: P:XRTK.Providers.Controllers.UnityInput.GenericJoystickController.PointerOffsetAngle - fullName: XRTK.Providers.Controllers.UnityInput.GenericJoystickController.PointerOffsetAngle - nameWithType: GenericJoystickController.PointerOffsetAngle -- uid: XRTK.Providers.Controllers.UnityInput.GenericJoystickController.PointerOffsetAngle* - name: PointerOffsetAngle - href: api/XRTK.Providers.Controllers.UnityInput.GenericJoystickController.html#XRTK_Providers_Controllers_UnityInput_GenericJoystickController_PointerOffsetAngle_ - commentId: Overload:XRTK.Providers.Controllers.UnityInput.GenericJoystickController.PointerOffsetAngle - isSpec: "True" - fullName: XRTK.Providers.Controllers.UnityInput.GenericJoystickController.PointerOffsetAngle - nameWithType: GenericJoystickController.PointerOffsetAngle -- uid: XRTK.Providers.Controllers.UnityInput.GenericJoystickController.UpdateButtonData(XRTK.Definitions.Devices.MixedRealityInteractionMapping) - name: UpdateButtonData(MixedRealityInteractionMapping) - href: api/XRTK.Providers.Controllers.UnityInput.GenericJoystickController.html#XRTK_Providers_Controllers_UnityInput_GenericJoystickController_UpdateButtonData_XRTK_Definitions_Devices_MixedRealityInteractionMapping_ - commentId: M:XRTK.Providers.Controllers.UnityInput.GenericJoystickController.UpdateButtonData(XRTK.Definitions.Devices.MixedRealityInteractionMapping) - fullName: XRTK.Providers.Controllers.UnityInput.GenericJoystickController.UpdateButtonData(XRTK.Definitions.Devices.MixedRealityInteractionMapping) - nameWithType: GenericJoystickController.UpdateButtonData(MixedRealityInteractionMapping) -- uid: XRTK.Providers.Controllers.UnityInput.GenericJoystickController.UpdateButtonData* - name: UpdateButtonData - href: api/XRTK.Providers.Controllers.UnityInput.GenericJoystickController.html#XRTK_Providers_Controllers_UnityInput_GenericJoystickController_UpdateButtonData_ - commentId: Overload:XRTK.Providers.Controllers.UnityInput.GenericJoystickController.UpdateButtonData - isSpec: "True" - fullName: XRTK.Providers.Controllers.UnityInput.GenericJoystickController.UpdateButtonData - nameWithType: GenericJoystickController.UpdateButtonData -- uid: XRTK.Providers.Controllers.UnityInput.GenericJoystickController.UpdateController - name: UpdateController() - href: api/XRTK.Providers.Controllers.UnityInput.GenericJoystickController.html#XRTK_Providers_Controllers_UnityInput_GenericJoystickController_UpdateController - commentId: M:XRTK.Providers.Controllers.UnityInput.GenericJoystickController.UpdateController - fullName: XRTK.Providers.Controllers.UnityInput.GenericJoystickController.UpdateController() - nameWithType: GenericJoystickController.UpdateController() -- uid: XRTK.Providers.Controllers.UnityInput.GenericJoystickController.UpdateController* - name: UpdateController - href: api/XRTK.Providers.Controllers.UnityInput.GenericJoystickController.html#XRTK_Providers_Controllers_UnityInput_GenericJoystickController_UpdateController_ - commentId: Overload:XRTK.Providers.Controllers.UnityInput.GenericJoystickController.UpdateController - isSpec: "True" - fullName: XRTK.Providers.Controllers.UnityInput.GenericJoystickController.UpdateController - nameWithType: GenericJoystickController.UpdateController -- uid: XRTK.Providers.Controllers.UnityInput.GenericJoystickController.UpdateDualAxisData(XRTK.Definitions.Devices.MixedRealityInteractionMapping) - name: UpdateDualAxisData(MixedRealityInteractionMapping) - href: api/XRTK.Providers.Controllers.UnityInput.GenericJoystickController.html#XRTK_Providers_Controllers_UnityInput_GenericJoystickController_UpdateDualAxisData_XRTK_Definitions_Devices_MixedRealityInteractionMapping_ - commentId: M:XRTK.Providers.Controllers.UnityInput.GenericJoystickController.UpdateDualAxisData(XRTK.Definitions.Devices.MixedRealityInteractionMapping) - fullName: XRTK.Providers.Controllers.UnityInput.GenericJoystickController.UpdateDualAxisData(XRTK.Definitions.Devices.MixedRealityInteractionMapping) - nameWithType: GenericJoystickController.UpdateDualAxisData(MixedRealityInteractionMapping) -- uid: XRTK.Providers.Controllers.UnityInput.GenericJoystickController.UpdateDualAxisData* - name: UpdateDualAxisData - href: api/XRTK.Providers.Controllers.UnityInput.GenericJoystickController.html#XRTK_Providers_Controllers_UnityInput_GenericJoystickController_UpdateDualAxisData_ - commentId: Overload:XRTK.Providers.Controllers.UnityInput.GenericJoystickController.UpdateDualAxisData - isSpec: "True" - fullName: XRTK.Providers.Controllers.UnityInput.GenericJoystickController.UpdateDualAxisData - nameWithType: GenericJoystickController.UpdateDualAxisData -- uid: XRTK.Providers.Controllers.UnityInput.GenericJoystickController.UpdatePoseData(XRTK.Definitions.Devices.MixedRealityInteractionMapping) - name: UpdatePoseData(MixedRealityInteractionMapping) - href: api/XRTK.Providers.Controllers.UnityInput.GenericJoystickController.html#XRTK_Providers_Controllers_UnityInput_GenericJoystickController_UpdatePoseData_XRTK_Definitions_Devices_MixedRealityInteractionMapping_ - commentId: M:XRTK.Providers.Controllers.UnityInput.GenericJoystickController.UpdatePoseData(XRTK.Definitions.Devices.MixedRealityInteractionMapping) - fullName: XRTK.Providers.Controllers.UnityInput.GenericJoystickController.UpdatePoseData(XRTK.Definitions.Devices.MixedRealityInteractionMapping) - nameWithType: GenericJoystickController.UpdatePoseData(MixedRealityInteractionMapping) -- uid: XRTK.Providers.Controllers.UnityInput.GenericJoystickController.UpdatePoseData* - name: UpdatePoseData - href: api/XRTK.Providers.Controllers.UnityInput.GenericJoystickController.html#XRTK_Providers_Controllers_UnityInput_GenericJoystickController_UpdatePoseData_ - commentId: Overload:XRTK.Providers.Controllers.UnityInput.GenericJoystickController.UpdatePoseData - isSpec: "True" - fullName: XRTK.Providers.Controllers.UnityInput.GenericJoystickController.UpdatePoseData - nameWithType: GenericJoystickController.UpdatePoseData -- uid: XRTK.Providers.Controllers.UnityInput.GenericJoystickController.UpdateSingleAxisData(XRTK.Definitions.Devices.MixedRealityInteractionMapping) - name: UpdateSingleAxisData(MixedRealityInteractionMapping) - href: api/XRTK.Providers.Controllers.UnityInput.GenericJoystickController.html#XRTK_Providers_Controllers_UnityInput_GenericJoystickController_UpdateSingleAxisData_XRTK_Definitions_Devices_MixedRealityInteractionMapping_ - commentId: M:XRTK.Providers.Controllers.UnityInput.GenericJoystickController.UpdateSingleAxisData(XRTK.Definitions.Devices.MixedRealityInteractionMapping) - fullName: XRTK.Providers.Controllers.UnityInput.GenericJoystickController.UpdateSingleAxisData(XRTK.Definitions.Devices.MixedRealityInteractionMapping) - nameWithType: GenericJoystickController.UpdateSingleAxisData(MixedRealityInteractionMapping) -- uid: XRTK.Providers.Controllers.UnityInput.GenericJoystickController.UpdateSingleAxisData* - name: UpdateSingleAxisData - href: api/XRTK.Providers.Controllers.UnityInput.GenericJoystickController.html#XRTK_Providers_Controllers_UnityInput_GenericJoystickController_UpdateSingleAxisData_ - commentId: Overload:XRTK.Providers.Controllers.UnityInput.GenericJoystickController.UpdateSingleAxisData - isSpec: "True" - fullName: XRTK.Providers.Controllers.UnityInput.GenericJoystickController.UpdateSingleAxisData - nameWithType: GenericJoystickController.UpdateSingleAxisData -- uid: XRTK.Providers.Controllers.UnityInput.MouseController - name: MouseController - href: api/XRTK.Providers.Controllers.UnityInput.MouseController.html - commentId: T:XRTK.Providers.Controllers.UnityInput.MouseController - fullName: XRTK.Providers.Controllers.UnityInput.MouseController - nameWithType: MouseController -- uid: XRTK.Providers.Controllers.UnityInput.MouseController.#ctor - name: MouseController() - href: api/XRTK.Providers.Controllers.UnityInput.MouseController.html#XRTK_Providers_Controllers_UnityInput_MouseController__ctor - commentId: M:XRTK.Providers.Controllers.UnityInput.MouseController.#ctor - fullName: XRTK.Providers.Controllers.UnityInput.MouseController.MouseController() - nameWithType: MouseController.MouseController() -- uid: XRTK.Providers.Controllers.UnityInput.MouseController.#ctor(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider,XRTK.Definitions.Devices.TrackingState,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - name: MouseController(IMixedRealityControllerDataProvider, TrackingState, Handedness, MixedRealityControllerMappingProfile) - href: api/XRTK.Providers.Controllers.UnityInput.MouseController.html#XRTK_Providers_Controllers_UnityInput_MouseController__ctor_XRTK_Interfaces_Providers_Controllers_IMixedRealityControllerDataProvider_XRTK_Definitions_Devices_TrackingState_XRTK_Definitions_Utilities_Handedness_XRTK_Definitions_Controllers_MixedRealityControllerMappingProfile_ - commentId: M:XRTK.Providers.Controllers.UnityInput.MouseController.#ctor(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider,XRTK.Definitions.Devices.TrackingState,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - fullName: XRTK.Providers.Controllers.UnityInput.MouseController.MouseController(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider, XRTK.Definitions.Devices.TrackingState, XRTK.Definitions.Utilities.Handedness, XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - nameWithType: MouseController.MouseController(IMixedRealityControllerDataProvider, TrackingState, Handedness, MixedRealityControllerMappingProfile) -- uid: XRTK.Providers.Controllers.UnityInput.MouseController.#ctor* - name: MouseController - href: api/XRTK.Providers.Controllers.UnityInput.MouseController.html#XRTK_Providers_Controllers_UnityInput_MouseController__ctor_ - commentId: Overload:XRTK.Providers.Controllers.UnityInput.MouseController.#ctor - isSpec: "True" - fullName: XRTK.Providers.Controllers.UnityInput.MouseController.MouseController - nameWithType: MouseController.MouseController -- uid: XRTK.Providers.Controllers.UnityInput.MouseController.DefaultInteractions - name: DefaultInteractions - href: api/XRTK.Providers.Controllers.UnityInput.MouseController.html#XRTK_Providers_Controllers_UnityInput_MouseController_DefaultInteractions - commentId: P:XRTK.Providers.Controllers.UnityInput.MouseController.DefaultInteractions - fullName: XRTK.Providers.Controllers.UnityInput.MouseController.DefaultInteractions - nameWithType: MouseController.DefaultInteractions -- uid: XRTK.Providers.Controllers.UnityInput.MouseController.DefaultInteractions* - name: DefaultInteractions - href: api/XRTK.Providers.Controllers.UnityInput.MouseController.html#XRTK_Providers_Controllers_UnityInput_MouseController_DefaultInteractions_ - commentId: Overload:XRTK.Providers.Controllers.UnityInput.MouseController.DefaultInteractions - isSpec: "True" - fullName: XRTK.Providers.Controllers.UnityInput.MouseController.DefaultInteractions - nameWithType: MouseController.DefaultInteractions -- uid: XRTK.Providers.Controllers.UnityInput.MouseController.IsInGameWindow - name: IsInGameWindow - href: api/XRTK.Providers.Controllers.UnityInput.MouseController.html#XRTK_Providers_Controllers_UnityInput_MouseController_IsInGameWindow - commentId: P:XRTK.Providers.Controllers.UnityInput.MouseController.IsInGameWindow - fullName: XRTK.Providers.Controllers.UnityInput.MouseController.IsInGameWindow - nameWithType: MouseController.IsInGameWindow -- uid: XRTK.Providers.Controllers.UnityInput.MouseController.IsInGameWindow* - name: IsInGameWindow - href: api/XRTK.Providers.Controllers.UnityInput.MouseController.html#XRTK_Providers_Controllers_UnityInput_MouseController_IsInGameWindow_ - commentId: Overload:XRTK.Providers.Controllers.UnityInput.MouseController.IsInGameWindow - isSpec: "True" - fullName: XRTK.Providers.Controllers.UnityInput.MouseController.IsInGameWindow - nameWithType: MouseController.IsInGameWindow -- uid: XRTK.Providers.Controllers.UnityInput.MouseController.Update - name: Update() - href: api/XRTK.Providers.Controllers.UnityInput.MouseController.html#XRTK_Providers_Controllers_UnityInput_MouseController_Update - commentId: M:XRTK.Providers.Controllers.UnityInput.MouseController.Update - fullName: XRTK.Providers.Controllers.UnityInput.MouseController.Update() - nameWithType: MouseController.Update() -- uid: XRTK.Providers.Controllers.UnityInput.MouseController.Update* - name: Update - href: api/XRTK.Providers.Controllers.UnityInput.MouseController.html#XRTK_Providers_Controllers_UnityInput_MouseController_Update_ - commentId: Overload:XRTK.Providers.Controllers.UnityInput.MouseController.Update - isSpec: "True" - fullName: XRTK.Providers.Controllers.UnityInput.MouseController.Update - nameWithType: MouseController.Update -- uid: XRTK.Providers.Controllers.UnityInput.MouseDataProvider - name: MouseDataProvider - href: api/XRTK.Providers.Controllers.UnityInput.MouseDataProvider.html - commentId: T:XRTK.Providers.Controllers.UnityInput.MouseDataProvider - fullName: XRTK.Providers.Controllers.UnityInput.MouseDataProvider - nameWithType: MouseDataProvider -- uid: XRTK.Providers.Controllers.UnityInput.MouseDataProvider.#ctor(System.String,System.UInt32,XRTK.Definitions.Controllers.UnityInput.Profiles.MouseControllerDataProviderProfile,XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - name: MouseDataProvider(String, UInt32, MouseControllerDataProviderProfile, IMixedRealityInputSystem) - href: api/XRTK.Providers.Controllers.UnityInput.MouseDataProvider.html#XRTK_Providers_Controllers_UnityInput_MouseDataProvider__ctor_System_String_System_UInt32_XRTK_Definitions_Controllers_UnityInput_Profiles_MouseControllerDataProviderProfile_XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_ - commentId: M:XRTK.Providers.Controllers.UnityInput.MouseDataProvider.#ctor(System.String,System.UInt32,XRTK.Definitions.Controllers.UnityInput.Profiles.MouseControllerDataProviderProfile,XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - fullName: XRTK.Providers.Controllers.UnityInput.MouseDataProvider.MouseDataProvider(System.String, System.UInt32, XRTK.Definitions.Controllers.UnityInput.Profiles.MouseControllerDataProviderProfile, XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - nameWithType: MouseDataProvider.MouseDataProvider(String, UInt32, MouseControllerDataProviderProfile, IMixedRealityInputSystem) -- uid: XRTK.Providers.Controllers.UnityInput.MouseDataProvider.#ctor* - name: MouseDataProvider - href: api/XRTK.Providers.Controllers.UnityInput.MouseDataProvider.html#XRTK_Providers_Controllers_UnityInput_MouseDataProvider__ctor_ - commentId: Overload:XRTK.Providers.Controllers.UnityInput.MouseDataProvider.#ctor - isSpec: "True" - fullName: XRTK.Providers.Controllers.UnityInput.MouseDataProvider.MouseDataProvider - nameWithType: MouseDataProvider.MouseDataProvider -- uid: XRTK.Providers.Controllers.UnityInput.MouseDataProvider.Controller - name: Controller - href: api/XRTK.Providers.Controllers.UnityInput.MouseDataProvider.html#XRTK_Providers_Controllers_UnityInput_MouseDataProvider_Controller - commentId: P:XRTK.Providers.Controllers.UnityInput.MouseDataProvider.Controller - fullName: XRTK.Providers.Controllers.UnityInput.MouseDataProvider.Controller - nameWithType: MouseDataProvider.Controller -- uid: XRTK.Providers.Controllers.UnityInput.MouseDataProvider.Controller* - name: Controller - href: api/XRTK.Providers.Controllers.UnityInput.MouseDataProvider.html#XRTK_Providers_Controllers_UnityInput_MouseDataProvider_Controller_ - commentId: Overload:XRTK.Providers.Controllers.UnityInput.MouseDataProvider.Controller - isSpec: "True" - fullName: XRTK.Providers.Controllers.UnityInput.MouseDataProvider.Controller - nameWithType: MouseDataProvider.Controller -- uid: XRTK.Providers.Controllers.UnityInput.MouseDataProvider.Disable - name: Disable() - href: api/XRTK.Providers.Controllers.UnityInput.MouseDataProvider.html#XRTK_Providers_Controllers_UnityInput_MouseDataProvider_Disable - commentId: M:XRTK.Providers.Controllers.UnityInput.MouseDataProvider.Disable - fullName: XRTK.Providers.Controllers.UnityInput.MouseDataProvider.Disable() - nameWithType: MouseDataProvider.Disable() -- uid: XRTK.Providers.Controllers.UnityInput.MouseDataProvider.Disable* - name: Disable - href: api/XRTK.Providers.Controllers.UnityInput.MouseDataProvider.html#XRTK_Providers_Controllers_UnityInput_MouseDataProvider_Disable_ - commentId: Overload:XRTK.Providers.Controllers.UnityInput.MouseDataProvider.Disable - isSpec: "True" - fullName: XRTK.Providers.Controllers.UnityInput.MouseDataProvider.Disable - nameWithType: MouseDataProvider.Disable -- uid: XRTK.Providers.Controllers.UnityInput.MouseDataProvider.Enable - name: Enable() - href: api/XRTK.Providers.Controllers.UnityInput.MouseDataProvider.html#XRTK_Providers_Controllers_UnityInput_MouseDataProvider_Enable - commentId: M:XRTK.Providers.Controllers.UnityInput.MouseDataProvider.Enable - fullName: XRTK.Providers.Controllers.UnityInput.MouseDataProvider.Enable() - nameWithType: MouseDataProvider.Enable() -- uid: XRTK.Providers.Controllers.UnityInput.MouseDataProvider.Enable* - name: Enable - href: api/XRTK.Providers.Controllers.UnityInput.MouseDataProvider.html#XRTK_Providers_Controllers_UnityInput_MouseDataProvider_Enable_ - commentId: Overload:XRTK.Providers.Controllers.UnityInput.MouseDataProvider.Enable - isSpec: "True" - fullName: XRTK.Providers.Controllers.UnityInput.MouseDataProvider.Enable - nameWithType: MouseDataProvider.Enable -- uid: XRTK.Providers.Controllers.UnityInput.MouseDataProvider.OnApplicationFocus(System.Boolean) - name: OnApplicationFocus(Boolean) - href: api/XRTK.Providers.Controllers.UnityInput.MouseDataProvider.html#XRTK_Providers_Controllers_UnityInput_MouseDataProvider_OnApplicationFocus_System_Boolean_ - commentId: M:XRTK.Providers.Controllers.UnityInput.MouseDataProvider.OnApplicationFocus(System.Boolean) - fullName: XRTK.Providers.Controllers.UnityInput.MouseDataProvider.OnApplicationFocus(System.Boolean) - nameWithType: MouseDataProvider.OnApplicationFocus(Boolean) -- uid: XRTK.Providers.Controllers.UnityInput.MouseDataProvider.OnApplicationFocus* - name: OnApplicationFocus - href: api/XRTK.Providers.Controllers.UnityInput.MouseDataProvider.html#XRTK_Providers_Controllers_UnityInput_MouseDataProvider_OnApplicationFocus_ - commentId: Overload:XRTK.Providers.Controllers.UnityInput.MouseDataProvider.OnApplicationFocus - isSpec: "True" - fullName: XRTK.Providers.Controllers.UnityInput.MouseDataProvider.OnApplicationFocus - nameWithType: MouseDataProvider.OnApplicationFocus -- uid: XRTK.Providers.Controllers.UnityInput.MouseDataProvider.Update - name: Update() - href: api/XRTK.Providers.Controllers.UnityInput.MouseDataProvider.html#XRTK_Providers_Controllers_UnityInput_MouseDataProvider_Update - commentId: M:XRTK.Providers.Controllers.UnityInput.MouseDataProvider.Update - fullName: XRTK.Providers.Controllers.UnityInput.MouseDataProvider.Update() - nameWithType: MouseDataProvider.Update() -- uid: XRTK.Providers.Controllers.UnityInput.MouseDataProvider.Update* - name: Update - href: api/XRTK.Providers.Controllers.UnityInput.MouseDataProvider.html#XRTK_Providers_Controllers_UnityInput_MouseDataProvider_Update_ - commentId: Overload:XRTK.Providers.Controllers.UnityInput.MouseDataProvider.Update - isSpec: "True" - fullName: XRTK.Providers.Controllers.UnityInput.MouseDataProvider.Update - nameWithType: MouseDataProvider.Update -- uid: XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider - name: UnityJoystickDataProvider - href: api/XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.html - commentId: T:XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider - fullName: XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider - nameWithType: UnityJoystickDataProvider -- uid: XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.#ctor(System.String,System.UInt32,XRTK.Definitions.Controllers.UnityInput.Profiles.UnityInputControllerDataProfile,XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - name: UnityJoystickDataProvider(String, UInt32, UnityInputControllerDataProfile, IMixedRealityInputSystem) - href: api/XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.html#XRTK_Providers_Controllers_UnityInput_UnityJoystickDataProvider__ctor_System_String_System_UInt32_XRTK_Definitions_Controllers_UnityInput_Profiles_UnityInputControllerDataProfile_XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_ - commentId: M:XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.#ctor(System.String,System.UInt32,XRTK.Definitions.Controllers.UnityInput.Profiles.UnityInputControllerDataProfile,XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - fullName: XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.UnityJoystickDataProvider(System.String, System.UInt32, XRTK.Definitions.Controllers.UnityInput.Profiles.UnityInputControllerDataProfile, XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - nameWithType: UnityJoystickDataProvider.UnityJoystickDataProvider(String, UInt32, UnityInputControllerDataProfile, IMixedRealityInputSystem) -- uid: XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.#ctor* - name: UnityJoystickDataProvider - href: api/XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.html#XRTK_Providers_Controllers_UnityInput_UnityJoystickDataProvider__ctor_ - commentId: Overload:XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.#ctor - isSpec: "True" - fullName: XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.UnityJoystickDataProvider - nameWithType: UnityJoystickDataProvider.UnityJoystickDataProvider -- uid: XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.ActiveGenericControllers - name: ActiveGenericControllers - href: api/XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.html#XRTK_Providers_Controllers_UnityInput_UnityJoystickDataProvider_ActiveGenericControllers - commentId: F:XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.ActiveGenericControllers - fullName: XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.ActiveGenericControllers - nameWithType: UnityJoystickDataProvider.ActiveGenericControllers -- uid: XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.Disable - name: Disable() - href: api/XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.html#XRTK_Providers_Controllers_UnityInput_UnityJoystickDataProvider_Disable - commentId: M:XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.Disable - fullName: XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.Disable() - nameWithType: UnityJoystickDataProvider.Disable() -- uid: XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.Disable* - name: Disable - href: api/XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.html#XRTK_Providers_Controllers_UnityInput_UnityJoystickDataProvider_Disable_ - commentId: Overload:XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.Disable - isSpec: "True" - fullName: XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.Disable - nameWithType: UnityJoystickDataProvider.Disable -- uid: XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.GetCurrentControllerType(System.String) - name: GetCurrentControllerType(String) - href: api/XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.html#XRTK_Providers_Controllers_UnityInput_UnityJoystickDataProvider_GetCurrentControllerType_System_String_ - commentId: M:XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.GetCurrentControllerType(System.String) - fullName: XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.GetCurrentControllerType(System.String) - nameWithType: UnityJoystickDataProvider.GetCurrentControllerType(String) -- uid: XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.GetCurrentControllerType* - name: GetCurrentControllerType - href: api/XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.html#XRTK_Providers_Controllers_UnityInput_UnityJoystickDataProvider_GetCurrentControllerType_ - commentId: Overload:XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.GetCurrentControllerType - isSpec: "True" - fullName: XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.GetCurrentControllerType - nameWithType: UnityJoystickDataProvider.GetCurrentControllerType -- uid: XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.GetOrAddController(System.String) - name: GetOrAddController(String) - href: api/XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.html#XRTK_Providers_Controllers_UnityInput_UnityJoystickDataProvider_GetOrAddController_System_String_ - commentId: M:XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.GetOrAddController(System.String) - fullName: XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.GetOrAddController(System.String) - nameWithType: UnityJoystickDataProvider.GetOrAddController(String) -- uid: XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.GetOrAddController* - name: GetOrAddController - href: api/XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.html#XRTK_Providers_Controllers_UnityInput_UnityJoystickDataProvider_GetOrAddController_ - commentId: Overload:XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.GetOrAddController - isSpec: "True" - fullName: XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.GetOrAddController - nameWithType: UnityJoystickDataProvider.GetOrAddController -- uid: XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.RemoveController(System.String,System.Boolean) - name: RemoveController(String, Boolean) - href: api/XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.html#XRTK_Providers_Controllers_UnityInput_UnityJoystickDataProvider_RemoveController_System_String_System_Boolean_ - commentId: M:XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.RemoveController(System.String,System.Boolean) - fullName: XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.RemoveController(System.String, System.Boolean) - nameWithType: UnityJoystickDataProvider.RemoveController(String, Boolean) -- uid: XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.RemoveController* - name: RemoveController - href: api/XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.html#XRTK_Providers_Controllers_UnityInput_UnityJoystickDataProvider_RemoveController_ - commentId: Overload:XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.RemoveController - isSpec: "True" - fullName: XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.RemoveController - nameWithType: UnityJoystickDataProvider.RemoveController -- uid: XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.Update - name: Update() - href: api/XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.html#XRTK_Providers_Controllers_UnityInput_UnityJoystickDataProvider_Update - commentId: M:XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.Update - fullName: XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.Update() - nameWithType: UnityJoystickDataProvider.Update() -- uid: XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.Update* - name: Update - href: api/XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.html#XRTK_Providers_Controllers_UnityInput_UnityJoystickDataProvider_Update_ - commentId: Overload:XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.Update - isSpec: "True" - fullName: XRTK.Providers.Controllers.UnityInput.UnityJoystickDataProvider.Update - nameWithType: UnityJoystickDataProvider.Update -- uid: XRTK.Providers.Controllers.UnityInput.UnityTouchController - name: UnityTouchController - href: api/XRTK.Providers.Controllers.UnityInput.UnityTouchController.html - commentId: T:XRTK.Providers.Controllers.UnityInput.UnityTouchController - fullName: XRTK.Providers.Controllers.UnityInput.UnityTouchController - nameWithType: UnityTouchController -- uid: XRTK.Providers.Controllers.UnityInput.UnityTouchController.#ctor - name: UnityTouchController() - href: api/XRTK.Providers.Controllers.UnityInput.UnityTouchController.html#XRTK_Providers_Controllers_UnityInput_UnityTouchController__ctor - commentId: M:XRTK.Providers.Controllers.UnityInput.UnityTouchController.#ctor - fullName: XRTK.Providers.Controllers.UnityInput.UnityTouchController.UnityTouchController() - nameWithType: UnityTouchController.UnityTouchController() -- uid: XRTK.Providers.Controllers.UnityInput.UnityTouchController.#ctor(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider,XRTK.Definitions.Devices.TrackingState,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - name: UnityTouchController(IMixedRealityControllerDataProvider, TrackingState, Handedness, MixedRealityControllerMappingProfile) - href: api/XRTK.Providers.Controllers.UnityInput.UnityTouchController.html#XRTK_Providers_Controllers_UnityInput_UnityTouchController__ctor_XRTK_Interfaces_Providers_Controllers_IMixedRealityControllerDataProvider_XRTK_Definitions_Devices_TrackingState_XRTK_Definitions_Utilities_Handedness_XRTK_Definitions_Controllers_MixedRealityControllerMappingProfile_ - commentId: M:XRTK.Providers.Controllers.UnityInput.UnityTouchController.#ctor(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider,XRTK.Definitions.Devices.TrackingState,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - fullName: XRTK.Providers.Controllers.UnityInput.UnityTouchController.UnityTouchController(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider, XRTK.Definitions.Devices.TrackingState, XRTK.Definitions.Utilities.Handedness, XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - nameWithType: UnityTouchController.UnityTouchController(IMixedRealityControllerDataProvider, TrackingState, Handedness, MixedRealityControllerMappingProfile) -- uid: XRTK.Providers.Controllers.UnityInput.UnityTouchController.#ctor* - name: UnityTouchController - href: api/XRTK.Providers.Controllers.UnityInput.UnityTouchController.html#XRTK_Providers_Controllers_UnityInput_UnityTouchController__ctor_ - commentId: Overload:XRTK.Providers.Controllers.UnityInput.UnityTouchController.#ctor - isSpec: "True" - fullName: XRTK.Providers.Controllers.UnityInput.UnityTouchController.UnityTouchController - nameWithType: UnityTouchController.UnityTouchController -- uid: XRTK.Providers.Controllers.UnityInput.UnityTouchController.DefaultInteractions - name: DefaultInteractions - href: api/XRTK.Providers.Controllers.UnityInput.UnityTouchController.html#XRTK_Providers_Controllers_UnityInput_UnityTouchController_DefaultInteractions - commentId: P:XRTK.Providers.Controllers.UnityInput.UnityTouchController.DefaultInteractions - fullName: XRTK.Providers.Controllers.UnityInput.UnityTouchController.DefaultInteractions - nameWithType: UnityTouchController.DefaultInteractions -- uid: XRTK.Providers.Controllers.UnityInput.UnityTouchController.DefaultInteractions* - name: DefaultInteractions - href: api/XRTK.Providers.Controllers.UnityInput.UnityTouchController.html#XRTK_Providers_Controllers_UnityInput_UnityTouchController_DefaultInteractions_ - commentId: Overload:XRTK.Providers.Controllers.UnityInput.UnityTouchController.DefaultInteractions - isSpec: "True" - fullName: XRTK.Providers.Controllers.UnityInput.UnityTouchController.DefaultInteractions - nameWithType: UnityTouchController.DefaultInteractions -- uid: XRTK.Providers.Controllers.UnityInput.UnityTouchController.EndTouch - name: EndTouch() - href: api/XRTK.Providers.Controllers.UnityInput.UnityTouchController.html#XRTK_Providers_Controllers_UnityInput_UnityTouchController_EndTouch - commentId: M:XRTK.Providers.Controllers.UnityInput.UnityTouchController.EndTouch - fullName: XRTK.Providers.Controllers.UnityInput.UnityTouchController.EndTouch() - nameWithType: UnityTouchController.EndTouch() -- uid: XRTK.Providers.Controllers.UnityInput.UnityTouchController.EndTouch* - name: EndTouch - href: api/XRTK.Providers.Controllers.UnityInput.UnityTouchController.html#XRTK_Providers_Controllers_UnityInput_UnityTouchController_EndTouch_ - commentId: Overload:XRTK.Providers.Controllers.UnityInput.UnityTouchController.EndTouch - isSpec: "True" - fullName: XRTK.Providers.Controllers.UnityInput.UnityTouchController.EndTouch - nameWithType: UnityTouchController.EndTouch -- uid: XRTK.Providers.Controllers.UnityInput.UnityTouchController.Lifetime - name: Lifetime - href: api/XRTK.Providers.Controllers.UnityInput.UnityTouchController.html#XRTK_Providers_Controllers_UnityInput_UnityTouchController_Lifetime - commentId: P:XRTK.Providers.Controllers.UnityInput.UnityTouchController.Lifetime - fullName: XRTK.Providers.Controllers.UnityInput.UnityTouchController.Lifetime - nameWithType: UnityTouchController.Lifetime -- uid: XRTK.Providers.Controllers.UnityInput.UnityTouchController.Lifetime* - name: Lifetime - href: api/XRTK.Providers.Controllers.UnityInput.UnityTouchController.html#XRTK_Providers_Controllers_UnityInput_UnityTouchController_Lifetime_ - commentId: Overload:XRTK.Providers.Controllers.UnityInput.UnityTouchController.Lifetime - isSpec: "True" - fullName: XRTK.Providers.Controllers.UnityInput.UnityTouchController.Lifetime - nameWithType: UnityTouchController.Lifetime -- uid: XRTK.Providers.Controllers.UnityInput.UnityTouchController.ManipulationThreshold - name: ManipulationThreshold - href: api/XRTK.Providers.Controllers.UnityInput.UnityTouchController.html#XRTK_Providers_Controllers_UnityInput_UnityTouchController_ManipulationThreshold - commentId: P:XRTK.Providers.Controllers.UnityInput.UnityTouchController.ManipulationThreshold - fullName: XRTK.Providers.Controllers.UnityInput.UnityTouchController.ManipulationThreshold - nameWithType: UnityTouchController.ManipulationThreshold -- uid: XRTK.Providers.Controllers.UnityInput.UnityTouchController.ManipulationThreshold* - name: ManipulationThreshold - href: api/XRTK.Providers.Controllers.UnityInput.UnityTouchController.html#XRTK_Providers_Controllers_UnityInput_UnityTouchController_ManipulationThreshold_ - commentId: Overload:XRTK.Providers.Controllers.UnityInput.UnityTouchController.ManipulationThreshold - isSpec: "True" - fullName: XRTK.Providers.Controllers.UnityInput.UnityTouchController.ManipulationThreshold - nameWithType: UnityTouchController.ManipulationThreshold -- uid: XRTK.Providers.Controllers.UnityInput.UnityTouchController.MaxTapContactTime - name: MaxTapContactTime - href: api/XRTK.Providers.Controllers.UnityInput.UnityTouchController.html#XRTK_Providers_Controllers_UnityInput_UnityTouchController_MaxTapContactTime - commentId: P:XRTK.Providers.Controllers.UnityInput.UnityTouchController.MaxTapContactTime - fullName: XRTK.Providers.Controllers.UnityInput.UnityTouchController.MaxTapContactTime - nameWithType: UnityTouchController.MaxTapContactTime -- uid: XRTK.Providers.Controllers.UnityInput.UnityTouchController.MaxTapContactTime* - name: MaxTapContactTime - href: api/XRTK.Providers.Controllers.UnityInput.UnityTouchController.html#XRTK_Providers_Controllers_UnityInput_UnityTouchController_MaxTapContactTime_ - commentId: Overload:XRTK.Providers.Controllers.UnityInput.UnityTouchController.MaxTapContactTime - isSpec: "True" - fullName: XRTK.Providers.Controllers.UnityInput.UnityTouchController.MaxTapContactTime - nameWithType: UnityTouchController.MaxTapContactTime -- uid: XRTK.Providers.Controllers.UnityInput.UnityTouchController.ScreenPointRay - name: ScreenPointRay - href: api/XRTK.Providers.Controllers.UnityInput.UnityTouchController.html#XRTK_Providers_Controllers_UnityInput_UnityTouchController_ScreenPointRay - commentId: P:XRTK.Providers.Controllers.UnityInput.UnityTouchController.ScreenPointRay - fullName: XRTK.Providers.Controllers.UnityInput.UnityTouchController.ScreenPointRay - nameWithType: UnityTouchController.ScreenPointRay -- uid: XRTK.Providers.Controllers.UnityInput.UnityTouchController.ScreenPointRay* - name: ScreenPointRay - href: api/XRTK.Providers.Controllers.UnityInput.UnityTouchController.html#XRTK_Providers_Controllers_UnityInput_UnityTouchController_ScreenPointRay_ - commentId: Overload:XRTK.Providers.Controllers.UnityInput.UnityTouchController.ScreenPointRay - isSpec: "True" - fullName: XRTK.Providers.Controllers.UnityInput.UnityTouchController.ScreenPointRay - nameWithType: UnityTouchController.ScreenPointRay -- uid: XRTK.Providers.Controllers.UnityInput.UnityTouchController.StartTouch - name: StartTouch() - href: api/XRTK.Providers.Controllers.UnityInput.UnityTouchController.html#XRTK_Providers_Controllers_UnityInput_UnityTouchController_StartTouch - commentId: M:XRTK.Providers.Controllers.UnityInput.UnityTouchController.StartTouch - fullName: XRTK.Providers.Controllers.UnityInput.UnityTouchController.StartTouch() - nameWithType: UnityTouchController.StartTouch() -- uid: XRTK.Providers.Controllers.UnityInput.UnityTouchController.StartTouch* - name: StartTouch - href: api/XRTK.Providers.Controllers.UnityInput.UnityTouchController.html#XRTK_Providers_Controllers_UnityInput_UnityTouchController_StartTouch_ - commentId: Overload:XRTK.Providers.Controllers.UnityInput.UnityTouchController.StartTouch - isSpec: "True" - fullName: XRTK.Providers.Controllers.UnityInput.UnityTouchController.StartTouch - nameWithType: UnityTouchController.StartTouch -- uid: XRTK.Providers.Controllers.UnityInput.UnityTouchController.TouchData - name: TouchData - href: api/XRTK.Providers.Controllers.UnityInput.UnityTouchController.html#XRTK_Providers_Controllers_UnityInput_UnityTouchController_TouchData - commentId: P:XRTK.Providers.Controllers.UnityInput.UnityTouchController.TouchData - fullName: XRTK.Providers.Controllers.UnityInput.UnityTouchController.TouchData - nameWithType: UnityTouchController.TouchData -- uid: XRTK.Providers.Controllers.UnityInput.UnityTouchController.TouchData* - name: TouchData - href: api/XRTK.Providers.Controllers.UnityInput.UnityTouchController.html#XRTK_Providers_Controllers_UnityInput_UnityTouchController_TouchData_ - commentId: Overload:XRTK.Providers.Controllers.UnityInput.UnityTouchController.TouchData - isSpec: "True" - fullName: XRTK.Providers.Controllers.UnityInput.UnityTouchController.TouchData - nameWithType: UnityTouchController.TouchData -- uid: XRTK.Providers.Controllers.UnityInput.UnityTouchController.Update - name: Update() - href: api/XRTK.Providers.Controllers.UnityInput.UnityTouchController.html#XRTK_Providers_Controllers_UnityInput_UnityTouchController_Update - commentId: M:XRTK.Providers.Controllers.UnityInput.UnityTouchController.Update - fullName: XRTK.Providers.Controllers.UnityInput.UnityTouchController.Update() - nameWithType: UnityTouchController.Update() -- uid: XRTK.Providers.Controllers.UnityInput.UnityTouchController.Update* - name: Update - href: api/XRTK.Providers.Controllers.UnityInput.UnityTouchController.html#XRTK_Providers_Controllers_UnityInput_UnityTouchController_Update_ - commentId: Overload:XRTK.Providers.Controllers.UnityInput.UnityTouchController.Update - isSpec: "True" - fullName: XRTK.Providers.Controllers.UnityInput.UnityTouchController.Update - nameWithType: UnityTouchController.Update -- uid: XRTK.Providers.Controllers.UnityInput.UnityTouchDataProvider - name: UnityTouchDataProvider - href: api/XRTK.Providers.Controllers.UnityInput.UnityTouchDataProvider.html - commentId: T:XRTK.Providers.Controllers.UnityInput.UnityTouchDataProvider - fullName: XRTK.Providers.Controllers.UnityInput.UnityTouchDataProvider - nameWithType: UnityTouchDataProvider -- uid: XRTK.Providers.Controllers.UnityInput.UnityTouchDataProvider.#ctor(System.String,System.UInt32,XRTK.Definitions.Controllers.UnityInput.Profiles.TouchScreenControllerDataProviderProfile,XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - name: UnityTouchDataProvider(String, UInt32, TouchScreenControllerDataProviderProfile, IMixedRealityInputSystem) - href: api/XRTK.Providers.Controllers.UnityInput.UnityTouchDataProvider.html#XRTK_Providers_Controllers_UnityInput_UnityTouchDataProvider__ctor_System_String_System_UInt32_XRTK_Definitions_Controllers_UnityInput_Profiles_TouchScreenControllerDataProviderProfile_XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_ - commentId: M:XRTK.Providers.Controllers.UnityInput.UnityTouchDataProvider.#ctor(System.String,System.UInt32,XRTK.Definitions.Controllers.UnityInput.Profiles.TouchScreenControllerDataProviderProfile,XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - fullName: XRTK.Providers.Controllers.UnityInput.UnityTouchDataProvider.UnityTouchDataProvider(System.String, System.UInt32, XRTK.Definitions.Controllers.UnityInput.Profiles.TouchScreenControllerDataProviderProfile, XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - nameWithType: UnityTouchDataProvider.UnityTouchDataProvider(String, UInt32, TouchScreenControllerDataProviderProfile, IMixedRealityInputSystem) -- uid: XRTK.Providers.Controllers.UnityInput.UnityTouchDataProvider.#ctor* - name: UnityTouchDataProvider - href: api/XRTK.Providers.Controllers.UnityInput.UnityTouchDataProvider.html#XRTK_Providers_Controllers_UnityInput_UnityTouchDataProvider__ctor_ - commentId: Overload:XRTK.Providers.Controllers.UnityInput.UnityTouchDataProvider.#ctor - isSpec: "True" - fullName: XRTK.Providers.Controllers.UnityInput.UnityTouchDataProvider.UnityTouchDataProvider - nameWithType: UnityTouchDataProvider.UnityTouchDataProvider -- uid: XRTK.Providers.Controllers.UnityInput.UnityTouchDataProvider.Disable - name: Disable() - href: api/XRTK.Providers.Controllers.UnityInput.UnityTouchDataProvider.html#XRTK_Providers_Controllers_UnityInput_UnityTouchDataProvider_Disable - commentId: M:XRTK.Providers.Controllers.UnityInput.UnityTouchDataProvider.Disable - fullName: XRTK.Providers.Controllers.UnityInput.UnityTouchDataProvider.Disable() - nameWithType: UnityTouchDataProvider.Disable() -- uid: XRTK.Providers.Controllers.UnityInput.UnityTouchDataProvider.Disable* - name: Disable - href: api/XRTK.Providers.Controllers.UnityInput.UnityTouchDataProvider.html#XRTK_Providers_Controllers_UnityInput_UnityTouchDataProvider_Disable_ - commentId: Overload:XRTK.Providers.Controllers.UnityInput.UnityTouchDataProvider.Disable - isSpec: "True" - fullName: XRTK.Providers.Controllers.UnityInput.UnityTouchDataProvider.Disable - nameWithType: UnityTouchDataProvider.Disable -- uid: XRTK.Providers.Controllers.UnityInput.UnityTouchDataProvider.Update - name: Update() - href: api/XRTK.Providers.Controllers.UnityInput.UnityTouchDataProvider.html#XRTK_Providers_Controllers_UnityInput_UnityTouchDataProvider_Update - commentId: M:XRTK.Providers.Controllers.UnityInput.UnityTouchDataProvider.Update - fullName: XRTK.Providers.Controllers.UnityInput.UnityTouchDataProvider.Update() - nameWithType: UnityTouchDataProvider.Update() -- uid: XRTK.Providers.Controllers.UnityInput.UnityTouchDataProvider.Update* - name: Update - href: api/XRTK.Providers.Controllers.UnityInput.UnityTouchDataProvider.html#XRTK_Providers_Controllers_UnityInput_UnityTouchDataProvider_Update_ - commentId: Overload:XRTK.Providers.Controllers.UnityInput.UnityTouchDataProvider.Update - isSpec: "True" - fullName: XRTK.Providers.Controllers.UnityInput.UnityTouchDataProvider.Update - nameWithType: UnityTouchDataProvider.Update -- uid: XRTK.Providers.Controllers.UnityInput.XboxController - name: XboxController - href: api/XRTK.Providers.Controllers.UnityInput.XboxController.html - commentId: T:XRTK.Providers.Controllers.UnityInput.XboxController - fullName: XRTK.Providers.Controllers.UnityInput.XboxController - nameWithType: XboxController -- uid: XRTK.Providers.Controllers.UnityInput.XboxController.#ctor - name: XboxController() - href: api/XRTK.Providers.Controllers.UnityInput.XboxController.html#XRTK_Providers_Controllers_UnityInput_XboxController__ctor - commentId: M:XRTK.Providers.Controllers.UnityInput.XboxController.#ctor - fullName: XRTK.Providers.Controllers.UnityInput.XboxController.XboxController() - nameWithType: XboxController.XboxController() -- uid: XRTK.Providers.Controllers.UnityInput.XboxController.#ctor(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider,XRTK.Definitions.Devices.TrackingState,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - name: XboxController(IMixedRealityControllerDataProvider, TrackingState, Handedness, MixedRealityControllerMappingProfile) - href: api/XRTK.Providers.Controllers.UnityInput.XboxController.html#XRTK_Providers_Controllers_UnityInput_XboxController__ctor_XRTK_Interfaces_Providers_Controllers_IMixedRealityControllerDataProvider_XRTK_Definitions_Devices_TrackingState_XRTK_Definitions_Utilities_Handedness_XRTK_Definitions_Controllers_MixedRealityControllerMappingProfile_ - commentId: M:XRTK.Providers.Controllers.UnityInput.XboxController.#ctor(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider,XRTK.Definitions.Devices.TrackingState,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - fullName: XRTK.Providers.Controllers.UnityInput.XboxController.XboxController(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider, XRTK.Definitions.Devices.TrackingState, XRTK.Definitions.Utilities.Handedness, XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - nameWithType: XboxController.XboxController(IMixedRealityControllerDataProvider, TrackingState, Handedness, MixedRealityControllerMappingProfile) -- uid: XRTK.Providers.Controllers.UnityInput.XboxController.#ctor* - name: XboxController - href: api/XRTK.Providers.Controllers.UnityInput.XboxController.html#XRTK_Providers_Controllers_UnityInput_XboxController__ctor_ - commentId: Overload:XRTK.Providers.Controllers.UnityInput.XboxController.#ctor - isSpec: "True" - fullName: XRTK.Providers.Controllers.UnityInput.XboxController.XboxController - nameWithType: XboxController.XboxController -- uid: XRTK.Providers.Controllers.UnityInput.XboxController.DefaultInteractions - name: DefaultInteractions - href: api/XRTK.Providers.Controllers.UnityInput.XboxController.html#XRTK_Providers_Controllers_UnityInput_XboxController_DefaultInteractions - commentId: P:XRTK.Providers.Controllers.UnityInput.XboxController.DefaultInteractions - fullName: XRTK.Providers.Controllers.UnityInput.XboxController.DefaultInteractions - nameWithType: XboxController.DefaultInteractions -- uid: XRTK.Providers.Controllers.UnityInput.XboxController.DefaultInteractions* - name: DefaultInteractions - href: api/XRTK.Providers.Controllers.UnityInput.XboxController.html#XRTK_Providers_Controllers_UnityInput_XboxController_DefaultInteractions_ - commentId: Overload:XRTK.Providers.Controllers.UnityInput.XboxController.DefaultInteractions - isSpec: "True" - fullName: XRTK.Providers.Controllers.UnityInput.XboxController.DefaultInteractions - nameWithType: XboxController.DefaultInteractions -- uid: XRTK.Providers.Networking.Profiles - name: XRTK.Providers.Networking.Profiles - href: api/XRTK.Providers.Networking.Profiles.html - commentId: N:XRTK.Providers.Networking.Profiles - fullName: XRTK.Providers.Networking.Profiles - nameWithType: XRTK.Providers.Networking.Profiles -- uid: XRTK.Providers.Networking.Profiles.BaseMixedRealityNetworkProviderProfile - name: BaseMixedRealityNetworkProviderProfile - href: api/XRTK.Providers.Networking.Profiles.BaseMixedRealityNetworkProviderProfile.html - commentId: T:XRTK.Providers.Networking.Profiles.BaseMixedRealityNetworkProviderProfile - fullName: XRTK.Providers.Networking.Profiles.BaseMixedRealityNetworkProviderProfile - nameWithType: BaseMixedRealityNetworkProviderProfile -- uid: XRTK.Providers.Networking.WebRTC - name: XRTK.Providers.Networking.WebRTC - href: api/XRTK.Providers.Networking.WebRTC.html - commentId: N:XRTK.Providers.Networking.WebRTC - fullName: XRTK.Providers.Networking.WebRTC - nameWithType: XRTK.Providers.Networking.WebRTC -- uid: XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider - name: MixedRealityWebRtcDataProvider - href: api/XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.html - commentId: T:XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider - fullName: XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider - nameWithType: MixedRealityWebRtcDataProvider -- uid: XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.#ctor(System.String,System.UInt32,XRTK.Definitions.BaseMixedRealityProfile,XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem) - name: MixedRealityWebRtcDataProvider(String, UInt32, BaseMixedRealityProfile, IMixedRealityNetworkingSystem) - href: api/XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.html#XRTK_Providers_Networking_WebRTC_MixedRealityWebRtcDataProvider__ctor_System_String_System_UInt32_XRTK_Definitions_BaseMixedRealityProfile_XRTK_Interfaces_NetworkingSystem_IMixedRealityNetworkingSystem_ - commentId: M:XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.#ctor(System.String,System.UInt32,XRTK.Definitions.BaseMixedRealityProfile,XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem) - fullName: XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.MixedRealityWebRtcDataProvider(System.String, System.UInt32, XRTK.Definitions.BaseMixedRealityProfile, XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkingSystem) - nameWithType: MixedRealityWebRtcDataProvider.MixedRealityWebRtcDataProvider(String, UInt32, BaseMixedRealityProfile, IMixedRealityNetworkingSystem) -- uid: XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.#ctor* - name: MixedRealityWebRtcDataProvider - href: api/XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.html#XRTK_Providers_Networking_WebRTC_MixedRealityWebRtcDataProvider__ctor_ - commentId: Overload:XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.#ctor - isSpec: "True" - fullName: XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.MixedRealityWebRtcDataProvider - nameWithType: MixedRealityWebRtcDataProvider.MixedRealityWebRtcDataProvider -- uid: XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.Connections - name: Connections - href: api/XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.html#XRTK_Providers_Networking_WebRTC_MixedRealityWebRtcDataProvider_Connections - commentId: P:XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.Connections - fullName: XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.Connections - nameWithType: MixedRealityWebRtcDataProvider.Connections -- uid: XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.Connections* - name: Connections - href: api/XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.html#XRTK_Providers_Networking_WebRTC_MixedRealityWebRtcDataProvider_Connections_ - commentId: Overload:XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.Connections - isSpec: "True" - fullName: XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.Connections - nameWithType: MixedRealityWebRtcDataProvider.Connections -- uid: XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.Equals(System.Object) - name: Equals(Object) - href: api/XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.html#XRTK_Providers_Networking_WebRTC_MixedRealityWebRtcDataProvider_Equals_System_Object_ - commentId: M:XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.Equals(System.Object) - fullName: XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.Equals(System.Object) - nameWithType: MixedRealityWebRtcDataProvider.Equals(Object) -- uid: XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.Equals(XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider,XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider) - name: Equals(IMixedRealityNetworkDataProvider, IMixedRealityNetworkDataProvider) - href: api/XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.html#XRTK_Providers_Networking_WebRTC_MixedRealityWebRtcDataProvider_Equals_XRTK_Interfaces_NetworkingSystem_IMixedRealityNetworkDataProvider_XRTK_Interfaces_NetworkingSystem_IMixedRealityNetworkDataProvider_ - commentId: M:XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.Equals(XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider,XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider) - fullName: XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.Equals(XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider, XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider) - nameWithType: MixedRealityWebRtcDataProvider.Equals(IMixedRealityNetworkDataProvider, IMixedRealityNetworkDataProvider) -- uid: XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.Equals* - name: Equals - href: api/XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.html#XRTK_Providers_Networking_WebRTC_MixedRealityWebRtcDataProvider_Equals_ - commentId: Overload:XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.Equals - isSpec: "True" - fullName: XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.Equals - nameWithType: MixedRealityWebRtcDataProvider.Equals -- uid: XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.GetHashCode - name: GetHashCode() - href: api/XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.html#XRTK_Providers_Networking_WebRTC_MixedRealityWebRtcDataProvider_GetHashCode - commentId: M:XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.GetHashCode - fullName: XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.GetHashCode() - nameWithType: MixedRealityWebRtcDataProvider.GetHashCode() -- uid: XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.GetHashCode* - name: GetHashCode - href: api/XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.html#XRTK_Providers_Networking_WebRTC_MixedRealityWebRtcDataProvider_GetHashCode_ - commentId: Overload:XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.GetHashCode - isSpec: "True" - fullName: XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.GetHashCode - nameWithType: MixedRealityWebRtcDataProvider.GetHashCode -- uid: XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.SendData* - name: SendData - href: api/XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.html#XRTK_Providers_Networking_WebRTC_MixedRealityWebRtcDataProvider_SendData_ - commentId: Overload:XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.SendData - isSpec: "True" - fullName: XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.SendData - nameWithType: MixedRealityWebRtcDataProvider.SendData -- uid: XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.SendData``1(``0) - name: SendData(T) - href: api/XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.html#XRTK_Providers_Networking_WebRTC_MixedRealityWebRtcDataProvider_SendData__1___0_ - commentId: M:XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.SendData``1(``0) - name.vb: SendData(Of T)(T) - fullName: XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.SendData(T) - fullName.vb: XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.SendData(Of T)(T) - nameWithType: MixedRealityWebRtcDataProvider.SendData(T) - nameWithType.vb: MixedRealityWebRtcDataProvider.SendData(Of T)(T) -- uid: XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.SourceId - name: SourceId - href: api/XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.html#XRTK_Providers_Networking_WebRTC_MixedRealityWebRtcDataProvider_SourceId - commentId: P:XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.SourceId - fullName: XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.SourceId - nameWithType: MixedRealityWebRtcDataProvider.SourceId -- uid: XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.SourceId* - name: SourceId - href: api/XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.html#XRTK_Providers_Networking_WebRTC_MixedRealityWebRtcDataProvider_SourceId_ - commentId: Overload:XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.SourceId - isSpec: "True" - fullName: XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.SourceId - nameWithType: MixedRealityWebRtcDataProvider.SourceId -- uid: XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.SourceName - name: SourceName - href: api/XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.html#XRTK_Providers_Networking_WebRTC_MixedRealityWebRtcDataProvider_SourceName - commentId: P:XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.SourceName - fullName: XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.SourceName - nameWithType: MixedRealityWebRtcDataProvider.SourceName -- uid: XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.SourceName* - name: SourceName - href: api/XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.html#XRTK_Providers_Networking_WebRTC_MixedRealityWebRtcDataProvider_SourceName_ - commentId: Overload:XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.SourceName - isSpec: "True" - fullName: XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.SourceName - nameWithType: MixedRealityWebRtcDataProvider.SourceName -- uid: XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.System#Collections#IEqualityComparer#Equals(System.Object,System.Object) - name: IEqualityComparer.Equals(Object, Object) - href: api/XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.html#XRTK_Providers_Networking_WebRTC_MixedRealityWebRtcDataProvider_System_Collections_IEqualityComparer_Equals_System_Object_System_Object_ - commentId: M:XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.System#Collections#IEqualityComparer#Equals(System.Object,System.Object) - name.vb: System.Collections.IEqualityComparer.Equals(Object, Object) - fullName: XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.System.Collections.IEqualityComparer.Equals(System.Object, System.Object) - nameWithType: MixedRealityWebRtcDataProvider.IEqualityComparer.Equals(Object, Object) - nameWithType.vb: MixedRealityWebRtcDataProvider.System.Collections.IEqualityComparer.Equals(Object, Object) -- uid: XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.System#Collections#IEqualityComparer#Equals* - name: IEqualityComparer.Equals - href: api/XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.html#XRTK_Providers_Networking_WebRTC_MixedRealityWebRtcDataProvider_System_Collections_IEqualityComparer_Equals_ - commentId: Overload:XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.System#Collections#IEqualityComparer#Equals - isSpec: "True" - name.vb: System.Collections.IEqualityComparer.Equals - fullName: XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.System.Collections.IEqualityComparer.Equals - nameWithType: MixedRealityWebRtcDataProvider.IEqualityComparer.Equals - nameWithType.vb: MixedRealityWebRtcDataProvider.System.Collections.IEqualityComparer.Equals -- uid: XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.System#Collections#IEqualityComparer#GetHashCode(System.Object) - name: IEqualityComparer.GetHashCode(Object) - href: api/XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.html#XRTK_Providers_Networking_WebRTC_MixedRealityWebRtcDataProvider_System_Collections_IEqualityComparer_GetHashCode_System_Object_ - commentId: M:XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.System#Collections#IEqualityComparer#GetHashCode(System.Object) - name.vb: System.Collections.IEqualityComparer.GetHashCode(Object) - fullName: XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.System.Collections.IEqualityComparer.GetHashCode(System.Object) - nameWithType: MixedRealityWebRtcDataProvider.IEqualityComparer.GetHashCode(Object) - nameWithType.vb: MixedRealityWebRtcDataProvider.System.Collections.IEqualityComparer.GetHashCode(Object) -- uid: XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.System#Collections#IEqualityComparer#GetHashCode* - name: IEqualityComparer.GetHashCode - href: api/XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.html#XRTK_Providers_Networking_WebRTC_MixedRealityWebRtcDataProvider_System_Collections_IEqualityComparer_GetHashCode_ - commentId: Overload:XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.System#Collections#IEqualityComparer#GetHashCode - isSpec: "True" - name.vb: System.Collections.IEqualityComparer.GetHashCode - fullName: XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcDataProvider.System.Collections.IEqualityComparer.GetHashCode - nameWithType: MixedRealityWebRtcDataProvider.IEqualityComparer.GetHashCode - nameWithType.vb: MixedRealityWebRtcDataProvider.System.Collections.IEqualityComparer.GetHashCode -- uid: XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcNetworkProviderProfile - name: MixedRealityWebRtcNetworkProviderProfile - href: api/XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcNetworkProviderProfile.html - commentId: T:XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcNetworkProviderProfile - fullName: XRTK.Providers.Networking.WebRTC.MixedRealityWebRtcNetworkProviderProfile - nameWithType: MixedRealityWebRtcNetworkProviderProfile -- uid: XRTK.Providers.Networking.WebRTC.WebRtcPeerConnection - name: WebRtcPeerConnection - href: api/XRTK.Providers.Networking.WebRTC.WebRtcPeerConnection.html - commentId: T:XRTK.Providers.Networking.WebRTC.WebRtcPeerConnection - fullName: XRTK.Providers.Networking.WebRTC.WebRtcPeerConnection - nameWithType: WebRtcPeerConnection -- uid: XRTK.Providers.SpatialObservers - name: XRTK.Providers.SpatialObservers - href: api/XRTK.Providers.SpatialObservers.html - commentId: N:XRTK.Providers.SpatialObservers - fullName: XRTK.Providers.SpatialObservers - nameWithType: XRTK.Providers.SpatialObservers -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver - name: BaseMixedRealitySpatialMeshObserver - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.html - commentId: T:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver - nameWithType: BaseMixedRealitySpatialMeshObserver -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.#ctor(System.String,System.UInt32,XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile,XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem) - name: BaseMixedRealitySpatialMeshObserver(String, UInt32, BaseMixedRealitySpatialMeshObserverProfile, IMixedRealitySpatialAwarenessSystem) - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialMeshObserver__ctor_System_String_System_UInt32_XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialMeshObserverProfile_XRTK_Interfaces_SpatialAwarenessSystem_IMixedRealitySpatialAwarenessSystem_ - commentId: M:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.#ctor(System.String,System.UInt32,XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile,XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem) - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.BaseMixedRealitySpatialMeshObserver(System.String, System.UInt32, XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile, XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem) - nameWithType: BaseMixedRealitySpatialMeshObserver.BaseMixedRealitySpatialMeshObserver(String, UInt32, BaseMixedRealitySpatialMeshObserverProfile, IMixedRealitySpatialAwarenessSystem) -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.#ctor* - name: BaseMixedRealitySpatialMeshObserver - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialMeshObserver__ctor_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.#ctor - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.BaseMixedRealitySpatialMeshObserver - nameWithType: BaseMixedRealitySpatialMeshObserver.BaseMixedRealitySpatialMeshObserver -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.Destroy - name: Destroy() - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialMeshObserver_Destroy - commentId: M:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.Destroy - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.Destroy() - nameWithType: BaseMixedRealitySpatialMeshObserver.Destroy() -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.Destroy* - name: Destroy - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialMeshObserver_Destroy_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.Destroy - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.Destroy - nameWithType: BaseMixedRealitySpatialMeshObserver.Destroy -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.Disable - name: Disable() - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialMeshObserver_Disable - commentId: M:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.Disable - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.Disable() - nameWithType: BaseMixedRealitySpatialMeshObserver.Disable() -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.Disable* - name: Disable - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialMeshObserver_Disable_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.Disable - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.Disable - nameWithType: BaseMixedRealitySpatialMeshObserver.Disable -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.Enable - name: Enable() - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialMeshObserver_Enable - commentId: M:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.Enable - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.Enable() - nameWithType: BaseMixedRealitySpatialMeshObserver.Enable() -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.Enable* - name: Enable - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialMeshObserver_Enable_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.Enable - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.Enable - nameWithType: BaseMixedRealitySpatialMeshObserver.Enable -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.Initialize - name: Initialize() - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialMeshObserver_Initialize - commentId: M:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.Initialize - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.Initialize() - nameWithType: BaseMixedRealitySpatialMeshObserver.Initialize() -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.Initialize* - name: Initialize - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialMeshObserver_Initialize_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.Initialize - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.Initialize - nameWithType: BaseMixedRealitySpatialMeshObserver.Initialize -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.IsStationaryObserver - name: IsStationaryObserver - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialMeshObserver_IsStationaryObserver - commentId: P:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.IsStationaryObserver - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.IsStationaryObserver - nameWithType: BaseMixedRealitySpatialMeshObserver.IsStationaryObserver -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.IsStationaryObserver* - name: IsStationaryObserver - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialMeshObserver_IsStationaryObserver_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.IsStationaryObserver - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.IsStationaryObserver - nameWithType: BaseMixedRealitySpatialMeshObserver.IsStationaryObserver -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.MeshDisplayOption - name: MeshDisplayOption - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialMeshObserver_MeshDisplayOption - commentId: P:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.MeshDisplayOption - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.MeshDisplayOption - nameWithType: BaseMixedRealitySpatialMeshObserver.MeshDisplayOption -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.MeshDisplayOption* - name: MeshDisplayOption - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialMeshObserver_MeshDisplayOption_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.MeshDisplayOption - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.MeshDisplayOption - nameWithType: BaseMixedRealitySpatialMeshObserver.MeshDisplayOption -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.MeshLevelOfDetail - name: MeshLevelOfDetail - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialMeshObserver_MeshLevelOfDetail - commentId: P:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.MeshLevelOfDetail - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.MeshLevelOfDetail - nameWithType: BaseMixedRealitySpatialMeshObserver.MeshLevelOfDetail -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.MeshLevelOfDetail* - name: MeshLevelOfDetail - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialMeshObserver_MeshLevelOfDetail_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.MeshLevelOfDetail - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.MeshLevelOfDetail - nameWithType: BaseMixedRealitySpatialMeshObserver.MeshLevelOfDetail -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.MeshOcclusionMaterial - name: MeshOcclusionMaterial - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialMeshObserver_MeshOcclusionMaterial - commentId: P:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.MeshOcclusionMaterial - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.MeshOcclusionMaterial - nameWithType: BaseMixedRealitySpatialMeshObserver.MeshOcclusionMaterial -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.MeshOcclusionMaterial* - name: MeshOcclusionMaterial - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialMeshObserver_MeshOcclusionMaterial_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.MeshOcclusionMaterial - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.MeshOcclusionMaterial - nameWithType: BaseMixedRealitySpatialMeshObserver.MeshOcclusionMaterial -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.MeshRecalculateNormals - name: MeshRecalculateNormals - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialMeshObserver_MeshRecalculateNormals - commentId: P:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.MeshRecalculateNormals - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.MeshRecalculateNormals - nameWithType: BaseMixedRealitySpatialMeshObserver.MeshRecalculateNormals -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.MeshRecalculateNormals* - name: MeshRecalculateNormals - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialMeshObserver_MeshRecalculateNormals_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.MeshRecalculateNormals - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.MeshRecalculateNormals - nameWithType: BaseMixedRealitySpatialMeshObserver.MeshRecalculateNormals -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.MeshVisibleMaterial - name: MeshVisibleMaterial - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialMeshObserver_MeshVisibleMaterial - commentId: P:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.MeshVisibleMaterial - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.MeshVisibleMaterial - nameWithType: BaseMixedRealitySpatialMeshObserver.MeshVisibleMaterial -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.MeshVisibleMaterial* - name: MeshVisibleMaterial - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialMeshObserver_MeshVisibleMaterial_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.MeshVisibleMaterial - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.MeshVisibleMaterial - nameWithType: BaseMixedRealitySpatialMeshObserver.MeshVisibleMaterial -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.ObservationExtents - name: ObservationExtents - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialMeshObserver_ObservationExtents - commentId: P:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.ObservationExtents - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.ObservationExtents - nameWithType: BaseMixedRealitySpatialMeshObserver.ObservationExtents -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.ObservationExtents* - name: ObservationExtents - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialMeshObserver_ObservationExtents_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.ObservationExtents - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.ObservationExtents - nameWithType: BaseMixedRealitySpatialMeshObserver.ObservationExtents -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.ObserverOrientation - name: ObserverOrientation - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialMeshObserver_ObserverOrientation - commentId: P:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.ObserverOrientation - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.ObserverOrientation - nameWithType: BaseMixedRealitySpatialMeshObserver.ObserverOrientation -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.ObserverOrientation* - name: ObserverOrientation - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialMeshObserver_ObserverOrientation_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.ObserverOrientation - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.ObserverOrientation - nameWithType: BaseMixedRealitySpatialMeshObserver.ObserverOrientation -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.ObserverOrigin - name: ObserverOrigin - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialMeshObserver_ObserverOrigin - commentId: P:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.ObserverOrigin - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.ObserverOrigin - nameWithType: BaseMixedRealitySpatialMeshObserver.ObserverOrigin -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.ObserverOrigin* - name: ObserverOrigin - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialMeshObserver_ObserverOrigin_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.ObserverOrigin - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.ObserverOrigin - nameWithType: BaseMixedRealitySpatialMeshObserver.ObserverOrigin -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.RaiseMeshAdded(XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject) - name: RaiseMeshAdded(SpatialMeshObject) - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialMeshObserver_RaiseMeshAdded_XRTK_Definitions_SpatialAwarenessSystem_SpatialMeshObject_ - commentId: M:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.RaiseMeshAdded(XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject) - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.RaiseMeshAdded(XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject) - nameWithType: BaseMixedRealitySpatialMeshObserver.RaiseMeshAdded(SpatialMeshObject) -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.RaiseMeshAdded* - name: RaiseMeshAdded - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialMeshObserver_RaiseMeshAdded_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.RaiseMeshAdded - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.RaiseMeshAdded - nameWithType: BaseMixedRealitySpatialMeshObserver.RaiseMeshAdded -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.RaiseMeshRemoved(XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject) - name: RaiseMeshRemoved(SpatialMeshObject) - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialMeshObserver_RaiseMeshRemoved_XRTK_Definitions_SpatialAwarenessSystem_SpatialMeshObject_ - commentId: M:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.RaiseMeshRemoved(XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject) - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.RaiseMeshRemoved(XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject) - nameWithType: BaseMixedRealitySpatialMeshObserver.RaiseMeshRemoved(SpatialMeshObject) -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.RaiseMeshRemoved* - name: RaiseMeshRemoved - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialMeshObserver_RaiseMeshRemoved_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.RaiseMeshRemoved - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.RaiseMeshRemoved - nameWithType: BaseMixedRealitySpatialMeshObserver.RaiseMeshRemoved -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.RaiseMeshUpdated(XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject) - name: RaiseMeshUpdated(SpatialMeshObject) - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialMeshObserver_RaiseMeshUpdated_XRTK_Definitions_SpatialAwarenessSystem_SpatialMeshObject_ - commentId: M:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.RaiseMeshUpdated(XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject) - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.RaiseMeshUpdated(XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject) - nameWithType: BaseMixedRealitySpatialMeshObserver.RaiseMeshUpdated(SpatialMeshObject) -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.RaiseMeshUpdated* - name: RaiseMeshUpdated - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialMeshObserver_RaiseMeshUpdated_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.RaiseMeshUpdated - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.RaiseMeshUpdated - nameWithType: BaseMixedRealitySpatialMeshObserver.RaiseMeshUpdated -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.RequestSpatialMeshObject(System.Guid) - name: RequestSpatialMeshObject(Guid) - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialMeshObserver_RequestSpatialMeshObject_System_Guid_ - commentId: M:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.RequestSpatialMeshObject(System.Guid) - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.RequestSpatialMeshObject(System.Guid) - nameWithType: BaseMixedRealitySpatialMeshObserver.RequestSpatialMeshObject(Guid) -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.RequestSpatialMeshObject* - name: RequestSpatialMeshObject - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialMeshObserver_RequestSpatialMeshObject_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.RequestSpatialMeshObject - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.RequestSpatialMeshObject - nameWithType: BaseMixedRealitySpatialMeshObserver.RequestSpatialMeshObject -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.SpatialMeshObjects - name: SpatialMeshObjects - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialMeshObserver_SpatialMeshObjects - commentId: P:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.SpatialMeshObjects - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.SpatialMeshObjects - nameWithType: BaseMixedRealitySpatialMeshObserver.SpatialMeshObjects -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.SpatialMeshObjects* - name: SpatialMeshObjects - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialMeshObserver_SpatialMeshObjects_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.SpatialMeshObjects - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.SpatialMeshObjects - nameWithType: BaseMixedRealitySpatialMeshObserver.SpatialMeshObjects -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.Update - name: Update() - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialMeshObserver_Update - commentId: M:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.Update - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.Update() - nameWithType: BaseMixedRealitySpatialMeshObserver.Update() -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.Update* - name: Update - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialMeshObserver_Update_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.Update - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserver.Update - nameWithType: BaseMixedRealitySpatialMeshObserver.Update -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile - name: BaseMixedRealitySpatialMeshObserverProfile - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile.html - commentId: T:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile - nameWithType: BaseMixedRealitySpatialMeshObserverProfile -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile.AdditionalComponents - name: AdditionalComponents - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialMeshObserverProfile_AdditionalComponents - commentId: P:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile.AdditionalComponents - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile.AdditionalComponents - nameWithType: BaseMixedRealitySpatialMeshObserverProfile.AdditionalComponents -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile.AdditionalComponents* - name: AdditionalComponents - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialMeshObserverProfile_AdditionalComponents_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile.AdditionalComponents - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile.AdditionalComponents - nameWithType: BaseMixedRealitySpatialMeshObserverProfile.AdditionalComponents -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile.MeshLevelOfDetail - name: MeshLevelOfDetail - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialMeshObserverProfile_MeshLevelOfDetail - commentId: P:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile.MeshLevelOfDetail - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile.MeshLevelOfDetail - nameWithType: BaseMixedRealitySpatialMeshObserverProfile.MeshLevelOfDetail -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile.MeshLevelOfDetail* - name: MeshLevelOfDetail - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialMeshObserverProfile_MeshLevelOfDetail_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile.MeshLevelOfDetail - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile.MeshLevelOfDetail - nameWithType: BaseMixedRealitySpatialMeshObserverProfile.MeshLevelOfDetail -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile.MeshObjectPrefab - name: MeshObjectPrefab - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialMeshObserverProfile_MeshObjectPrefab - commentId: P:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile.MeshObjectPrefab - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile.MeshObjectPrefab - nameWithType: BaseMixedRealitySpatialMeshObserverProfile.MeshObjectPrefab -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile.MeshObjectPrefab* - name: MeshObjectPrefab - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialMeshObserverProfile_MeshObjectPrefab_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile.MeshObjectPrefab - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile.MeshObjectPrefab - nameWithType: BaseMixedRealitySpatialMeshObserverProfile.MeshObjectPrefab -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile.MeshOcclusionMaterial - name: MeshOcclusionMaterial - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialMeshObserverProfile_MeshOcclusionMaterial - commentId: P:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile.MeshOcclusionMaterial - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile.MeshOcclusionMaterial - nameWithType: BaseMixedRealitySpatialMeshObserverProfile.MeshOcclusionMaterial -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile.MeshOcclusionMaterial* - name: MeshOcclusionMaterial - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialMeshObserverProfile_MeshOcclusionMaterial_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile.MeshOcclusionMaterial - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile.MeshOcclusionMaterial - nameWithType: BaseMixedRealitySpatialMeshObserverProfile.MeshOcclusionMaterial -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile.MeshRecalculateNormals - name: MeshRecalculateNormals - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialMeshObserverProfile_MeshRecalculateNormals - commentId: P:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile.MeshRecalculateNormals - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile.MeshRecalculateNormals - nameWithType: BaseMixedRealitySpatialMeshObserverProfile.MeshRecalculateNormals -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile.MeshRecalculateNormals* - name: MeshRecalculateNormals - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialMeshObserverProfile_MeshRecalculateNormals_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile.MeshRecalculateNormals - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile.MeshRecalculateNormals - nameWithType: BaseMixedRealitySpatialMeshObserverProfile.MeshRecalculateNormals -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile.MeshVisibleMaterial - name: MeshVisibleMaterial - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialMeshObserverProfile_MeshVisibleMaterial - commentId: P:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile.MeshVisibleMaterial - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile.MeshVisibleMaterial - nameWithType: BaseMixedRealitySpatialMeshObserverProfile.MeshVisibleMaterial -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile.MeshVisibleMaterial* - name: MeshVisibleMaterial - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialMeshObserverProfile_MeshVisibleMaterial_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile.MeshVisibleMaterial - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialMeshObserverProfile.MeshVisibleMaterial - nameWithType: BaseMixedRealitySpatialMeshObserverProfile.MeshVisibleMaterial -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider - name: BaseMixedRealitySpatialObserverDataProvider - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.html - commentId: T:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider - nameWithType: BaseMixedRealitySpatialObserverDataProvider -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.#ctor(System.String,System.UInt32,XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverProfile,XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem) - name: BaseMixedRealitySpatialObserverDataProvider(String, UInt32, BaseMixedRealitySpatialObserverProfile, IMixedRealitySpatialAwarenessSystem) - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialObserverDataProvider__ctor_System_String_System_UInt32_XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialObserverProfile_XRTK_Interfaces_SpatialAwarenessSystem_IMixedRealitySpatialAwarenessSystem_ - commentId: M:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.#ctor(System.String,System.UInt32,XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverProfile,XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem) - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.BaseMixedRealitySpatialObserverDataProvider(System.String, System.UInt32, XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverProfile, XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem) - nameWithType: BaseMixedRealitySpatialObserverDataProvider.BaseMixedRealitySpatialObserverDataProvider(String, UInt32, BaseMixedRealitySpatialObserverProfile, IMixedRealitySpatialAwarenessSystem) -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.#ctor* - name: BaseMixedRealitySpatialObserverDataProvider - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialObserverDataProvider__ctor_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.#ctor - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.BaseMixedRealitySpatialObserverDataProvider - nameWithType: BaseMixedRealitySpatialObserverDataProvider.BaseMixedRealitySpatialObserverDataProvider -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.Disable - name: Disable() - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialObserverDataProvider_Disable - commentId: M:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.Disable - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.Disable() - nameWithType: BaseMixedRealitySpatialObserverDataProvider.Disable() -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.Disable* - name: Disable - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialObserverDataProvider_Disable_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.Disable - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.Disable - nameWithType: BaseMixedRealitySpatialObserverDataProvider.Disable -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.Enable - name: Enable() - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialObserverDataProvider_Enable - commentId: M:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.Enable - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.Enable() - nameWithType: BaseMixedRealitySpatialObserverDataProvider.Enable() -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.Enable* - name: Enable - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialObserverDataProvider_Enable_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.Enable - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.Enable - nameWithType: BaseMixedRealitySpatialObserverDataProvider.Enable -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.Equals(System.Object) - name: Equals(Object) - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialObserverDataProvider_Equals_System_Object_ - commentId: M:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.Equals(System.Object) - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.Equals(System.Object) - nameWithType: BaseMixedRealitySpatialObserverDataProvider.Equals(Object) -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.Equals(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider,XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider) - name: Equals(IMixedRealitySpatialAwarenessDataProvider, IMixedRealitySpatialAwarenessDataProvider) - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialObserverDataProvider_Equals_XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialAwarenessDataProvider_XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialAwarenessDataProvider_ - commentId: M:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.Equals(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider,XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider) - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.Equals(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider, XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider) - nameWithType: BaseMixedRealitySpatialObserverDataProvider.Equals(IMixedRealitySpatialAwarenessDataProvider, IMixedRealitySpatialAwarenessDataProvider) -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.Equals* - name: Equals - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialObserverDataProvider_Equals_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.Equals - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.Equals - nameWithType: BaseMixedRealitySpatialObserverDataProvider.Equals -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.GetHashCode - name: GetHashCode() - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialObserverDataProvider_GetHashCode - commentId: M:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.GetHashCode - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.GetHashCode() - nameWithType: BaseMixedRealitySpatialObserverDataProvider.GetHashCode() -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.GetHashCode* - name: GetHashCode - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialObserverDataProvider_GetHashCode_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.GetHashCode - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.GetHashCode - nameWithType: BaseMixedRealitySpatialObserverDataProvider.GetHashCode -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.IsRunning - name: IsRunning - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialObserverDataProvider_IsRunning - commentId: P:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.IsRunning - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.IsRunning - nameWithType: BaseMixedRealitySpatialObserverDataProvider.IsRunning -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.IsRunning* - name: IsRunning - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialObserverDataProvider_IsRunning_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.IsRunning - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.IsRunning - nameWithType: BaseMixedRealitySpatialObserverDataProvider.IsRunning -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.PhysicsLayer - name: PhysicsLayer - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialObserverDataProvider_PhysicsLayer - commentId: P:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.PhysicsLayer - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.PhysicsLayer - nameWithType: BaseMixedRealitySpatialObserverDataProvider.PhysicsLayer -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.PhysicsLayer* - name: PhysicsLayer - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialObserverDataProvider_PhysicsLayer_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.PhysicsLayer - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.PhysicsLayer - nameWithType: BaseMixedRealitySpatialObserverDataProvider.PhysicsLayer -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.SourceId - name: SourceId - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialObserverDataProvider_SourceId - commentId: P:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.SourceId - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.SourceId - nameWithType: BaseMixedRealitySpatialObserverDataProvider.SourceId -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.SourceId* - name: SourceId - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialObserverDataProvider_SourceId_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.SourceId - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.SourceId - nameWithType: BaseMixedRealitySpatialObserverDataProvider.SourceId -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.SourceName - name: SourceName - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialObserverDataProvider_SourceName - commentId: P:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.SourceName - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.SourceName - nameWithType: BaseMixedRealitySpatialObserverDataProvider.SourceName -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.SourceName* - name: SourceName - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialObserverDataProvider_SourceName_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.SourceName - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.SourceName - nameWithType: BaseMixedRealitySpatialObserverDataProvider.SourceName -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.SpatialAwarenessSystem - name: SpatialAwarenessSystem - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialObserverDataProvider_SpatialAwarenessSystem - commentId: F:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.SpatialAwarenessSystem - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.SpatialAwarenessSystem - nameWithType: BaseMixedRealitySpatialObserverDataProvider.SpatialAwarenessSystem -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.StartObserving - name: StartObserving() - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialObserverDataProvider_StartObserving - commentId: M:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.StartObserving - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.StartObserving() - nameWithType: BaseMixedRealitySpatialObserverDataProvider.StartObserving() -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.StartObserving* - name: StartObserving - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialObserverDataProvider_StartObserving_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.StartObserving - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.StartObserving - nameWithType: BaseMixedRealitySpatialObserverDataProvider.StartObserving -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.StartupBehavior - name: StartupBehavior - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialObserverDataProvider_StartupBehavior - commentId: P:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.StartupBehavior - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.StartupBehavior - nameWithType: BaseMixedRealitySpatialObserverDataProvider.StartupBehavior -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.StartupBehavior* - name: StartupBehavior - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialObserverDataProvider_StartupBehavior_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.StartupBehavior - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.StartupBehavior - nameWithType: BaseMixedRealitySpatialObserverDataProvider.StartupBehavior -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.StopObserving - name: StopObserving() - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialObserverDataProvider_StopObserving - commentId: M:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.StopObserving - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.StopObserving() - nameWithType: BaseMixedRealitySpatialObserverDataProvider.StopObserving() -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.StopObserving* - name: StopObserving - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialObserverDataProvider_StopObserving_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.StopObserving - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.StopObserving - nameWithType: BaseMixedRealitySpatialObserverDataProvider.StopObserving -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.System#Collections#IEqualityComparer#Equals(System.Object,System.Object) - name: IEqualityComparer.Equals(Object, Object) - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialObserverDataProvider_System_Collections_IEqualityComparer_Equals_System_Object_System_Object_ - commentId: M:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.System#Collections#IEqualityComparer#Equals(System.Object,System.Object) - name.vb: System.Collections.IEqualityComparer.Equals(Object, Object) - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.System.Collections.IEqualityComparer.Equals(System.Object, System.Object) - nameWithType: BaseMixedRealitySpatialObserverDataProvider.IEqualityComparer.Equals(Object, Object) - nameWithType.vb: BaseMixedRealitySpatialObserverDataProvider.System.Collections.IEqualityComparer.Equals(Object, Object) -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.System#Collections#IEqualityComparer#Equals* - name: IEqualityComparer.Equals - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialObserverDataProvider_System_Collections_IEqualityComparer_Equals_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.System#Collections#IEqualityComparer#Equals - isSpec: "True" - name.vb: System.Collections.IEqualityComparer.Equals - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.System.Collections.IEqualityComparer.Equals - nameWithType: BaseMixedRealitySpatialObserverDataProvider.IEqualityComparer.Equals - nameWithType.vb: BaseMixedRealitySpatialObserverDataProvider.System.Collections.IEqualityComparer.Equals -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.System#Collections#IEqualityComparer#GetHashCode(System.Object) - name: IEqualityComparer.GetHashCode(Object) - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialObserverDataProvider_System_Collections_IEqualityComparer_GetHashCode_System_Object_ - commentId: M:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.System#Collections#IEqualityComparer#GetHashCode(System.Object) - name.vb: System.Collections.IEqualityComparer.GetHashCode(Object) - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.System.Collections.IEqualityComparer.GetHashCode(System.Object) - nameWithType: BaseMixedRealitySpatialObserverDataProvider.IEqualityComparer.GetHashCode(Object) - nameWithType.vb: BaseMixedRealitySpatialObserverDataProvider.System.Collections.IEqualityComparer.GetHashCode(Object) -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.System#Collections#IEqualityComparer#GetHashCode* - name: IEqualityComparer.GetHashCode - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialObserverDataProvider_System_Collections_IEqualityComparer_GetHashCode_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.System#Collections#IEqualityComparer#GetHashCode - isSpec: "True" - name.vb: System.Collections.IEqualityComparer.GetHashCode - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.System.Collections.IEqualityComparer.GetHashCode - nameWithType: BaseMixedRealitySpatialObserverDataProvider.IEqualityComparer.GetHashCode - nameWithType.vb: BaseMixedRealitySpatialObserverDataProvider.System.Collections.IEqualityComparer.GetHashCode -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.UpdateInterval - name: UpdateInterval - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialObserverDataProvider_UpdateInterval - commentId: P:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.UpdateInterval - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.UpdateInterval - nameWithType: BaseMixedRealitySpatialObserverDataProvider.UpdateInterval -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.UpdateInterval* - name: UpdateInterval - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialObserverDataProvider_UpdateInterval_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.UpdateInterval - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverDataProvider.UpdateInterval - nameWithType: BaseMixedRealitySpatialObserverDataProvider.UpdateInterval -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverProfile - name: BaseMixedRealitySpatialObserverProfile - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverProfile.html - commentId: T:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverProfile - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverProfile - nameWithType: BaseMixedRealitySpatialObserverProfile -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverProfile.IsStationaryObserver - name: IsStationaryObserver - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverProfile.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialObserverProfile_IsStationaryObserver - commentId: P:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverProfile.IsStationaryObserver - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverProfile.IsStationaryObserver - nameWithType: BaseMixedRealitySpatialObserverProfile.IsStationaryObserver -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverProfile.IsStationaryObserver* - name: IsStationaryObserver - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverProfile.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialObserverProfile_IsStationaryObserver_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverProfile.IsStationaryObserver - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverProfile.IsStationaryObserver - nameWithType: BaseMixedRealitySpatialObserverProfile.IsStationaryObserver -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverProfile.ObservationExtents - name: ObservationExtents - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverProfile.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialObserverProfile_ObservationExtents - commentId: P:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverProfile.ObservationExtents - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverProfile.ObservationExtents - nameWithType: BaseMixedRealitySpatialObserverProfile.ObservationExtents -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverProfile.ObservationExtents* - name: ObservationExtents - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverProfile.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialObserverProfile_ObservationExtents_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverProfile.ObservationExtents - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverProfile.ObservationExtents - nameWithType: BaseMixedRealitySpatialObserverProfile.ObservationExtents -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverProfile.PhysicsLayer - name: PhysicsLayer - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverProfile.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialObserverProfile_PhysicsLayer - commentId: P:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverProfile.PhysicsLayer - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverProfile.PhysicsLayer - nameWithType: BaseMixedRealitySpatialObserverProfile.PhysicsLayer -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverProfile.PhysicsLayer* - name: PhysicsLayer - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverProfile.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialObserverProfile_PhysicsLayer_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverProfile.PhysicsLayer - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverProfile.PhysicsLayer - nameWithType: BaseMixedRealitySpatialObserverProfile.PhysicsLayer -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverProfile.StartupBehavior - name: StartupBehavior - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverProfile.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialObserverProfile_StartupBehavior - commentId: P:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverProfile.StartupBehavior - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverProfile.StartupBehavior - nameWithType: BaseMixedRealitySpatialObserverProfile.StartupBehavior -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverProfile.StartupBehavior* - name: StartupBehavior - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverProfile.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialObserverProfile_StartupBehavior_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverProfile.StartupBehavior - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverProfile.StartupBehavior - nameWithType: BaseMixedRealitySpatialObserverProfile.StartupBehavior -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverProfile.UpdateInterval - name: UpdateInterval - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverProfile.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialObserverProfile_UpdateInterval - commentId: P:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverProfile.UpdateInterval - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverProfile.UpdateInterval - nameWithType: BaseMixedRealitySpatialObserverProfile.UpdateInterval -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverProfile.UpdateInterval* - name: UpdateInterval - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverProfile.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialObserverProfile_UpdateInterval_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverProfile.UpdateInterval - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialObserverProfile.UpdateInterval - nameWithType: BaseMixedRealitySpatialObserverProfile.UpdateInterval -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver - name: BaseMixedRealitySpatialSurfaceObserver - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.html - commentId: T:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver - nameWithType: BaseMixedRealitySpatialSurfaceObserver -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.#ctor(System.String,System.UInt32,XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile,XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem) - name: BaseMixedRealitySpatialSurfaceObserver(String, UInt32, BaseMixedRealitySurfaceObserverProfile, IMixedRealitySpatialAwarenessSystem) - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialSurfaceObserver__ctor_System_String_System_UInt32_XRTK_Providers_SpatialObservers_BaseMixedRealitySurfaceObserverProfile_XRTK_Interfaces_SpatialAwarenessSystem_IMixedRealitySpatialAwarenessSystem_ - commentId: M:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.#ctor(System.String,System.UInt32,XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile,XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem) - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.BaseMixedRealitySpatialSurfaceObserver(System.String, System.UInt32, XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile, XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem) - nameWithType: BaseMixedRealitySpatialSurfaceObserver.BaseMixedRealitySpatialSurfaceObserver(String, UInt32, BaseMixedRealitySurfaceObserverProfile, IMixedRealitySpatialAwarenessSystem) -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.#ctor* - name: BaseMixedRealitySpatialSurfaceObserver - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialSurfaceObserver__ctor_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.#ctor - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.BaseMixedRealitySpatialSurfaceObserver - nameWithType: BaseMixedRealitySpatialSurfaceObserver.BaseMixedRealitySpatialSurfaceObserver -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.CeilingSurfaceMaterial - name: CeilingSurfaceMaterial - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialSurfaceObserver_CeilingSurfaceMaterial - commentId: P:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.CeilingSurfaceMaterial - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.CeilingSurfaceMaterial - nameWithType: BaseMixedRealitySpatialSurfaceObserver.CeilingSurfaceMaterial -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.CeilingSurfaceMaterial* - name: CeilingSurfaceMaterial - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialSurfaceObserver_CeilingSurfaceMaterial_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.CeilingSurfaceMaterial - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.CeilingSurfaceMaterial - nameWithType: BaseMixedRealitySpatialSurfaceObserver.CeilingSurfaceMaterial -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.DisplayCeilingSurfaces - name: DisplayCeilingSurfaces - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialSurfaceObserver_DisplayCeilingSurfaces - commentId: P:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.DisplayCeilingSurfaces - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.DisplayCeilingSurfaces - nameWithType: BaseMixedRealitySpatialSurfaceObserver.DisplayCeilingSurfaces -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.DisplayCeilingSurfaces* - name: DisplayCeilingSurfaces - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialSurfaceObserver_DisplayCeilingSurfaces_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.DisplayCeilingSurfaces - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.DisplayCeilingSurfaces - nameWithType: BaseMixedRealitySpatialSurfaceObserver.DisplayCeilingSurfaces -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.DisplayFloorSurfaces - name: DisplayFloorSurfaces - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialSurfaceObserver_DisplayFloorSurfaces - commentId: P:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.DisplayFloorSurfaces - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.DisplayFloorSurfaces - nameWithType: BaseMixedRealitySpatialSurfaceObserver.DisplayFloorSurfaces -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.DisplayFloorSurfaces* - name: DisplayFloorSurfaces - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialSurfaceObserver_DisplayFloorSurfaces_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.DisplayFloorSurfaces - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.DisplayFloorSurfaces - nameWithType: BaseMixedRealitySpatialSurfaceObserver.DisplayFloorSurfaces -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.DisplayPlatformSurfaces - name: DisplayPlatformSurfaces - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialSurfaceObserver_DisplayPlatformSurfaces - commentId: P:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.DisplayPlatformSurfaces - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.DisplayPlatformSurfaces - nameWithType: BaseMixedRealitySpatialSurfaceObserver.DisplayPlatformSurfaces -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.DisplayPlatformSurfaces* - name: DisplayPlatformSurfaces - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialSurfaceObserver_DisplayPlatformSurfaces_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.DisplayPlatformSurfaces - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.DisplayPlatformSurfaces - nameWithType: BaseMixedRealitySpatialSurfaceObserver.DisplayPlatformSurfaces -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.DisplayWallSurfaces - name: DisplayWallSurfaces - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialSurfaceObserver_DisplayWallSurfaces - commentId: P:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.DisplayWallSurfaces - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.DisplayWallSurfaces - nameWithType: BaseMixedRealitySpatialSurfaceObserver.DisplayWallSurfaces -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.DisplayWallSurfaces* - name: DisplayWallSurfaces - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialSurfaceObserver_DisplayWallSurfaces_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.DisplayWallSurfaces - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.DisplayWallSurfaces - nameWithType: BaseMixedRealitySpatialSurfaceObserver.DisplayWallSurfaces -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.FloorSurfaceMaterial - name: FloorSurfaceMaterial - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialSurfaceObserver_FloorSurfaceMaterial - commentId: P:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.FloorSurfaceMaterial - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.FloorSurfaceMaterial - nameWithType: BaseMixedRealitySpatialSurfaceObserver.FloorSurfaceMaterial -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.FloorSurfaceMaterial* - name: FloorSurfaceMaterial - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialSurfaceObserver_FloorSurfaceMaterial_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.FloorSurfaceMaterial - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.FloorSurfaceMaterial - nameWithType: BaseMixedRealitySpatialSurfaceObserver.FloorSurfaceMaterial -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.PlanarSurfaces - name: PlanarSurfaces - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialSurfaceObserver_PlanarSurfaces - commentId: P:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.PlanarSurfaces - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.PlanarSurfaces - nameWithType: BaseMixedRealitySpatialSurfaceObserver.PlanarSurfaces -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.PlanarSurfaces* - name: PlanarSurfaces - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialSurfaceObserver_PlanarSurfaces_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.PlanarSurfaces - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.PlanarSurfaces - nameWithType: BaseMixedRealitySpatialSurfaceObserver.PlanarSurfaces -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.PlatformSurfaceMaterial - name: PlatformSurfaceMaterial - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialSurfaceObserver_PlatformSurfaceMaterial - commentId: P:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.PlatformSurfaceMaterial - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.PlatformSurfaceMaterial - nameWithType: BaseMixedRealitySpatialSurfaceObserver.PlatformSurfaceMaterial -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.PlatformSurfaceMaterial* - name: PlatformSurfaceMaterial - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialSurfaceObserver_PlatformSurfaceMaterial_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.PlatformSurfaceMaterial - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.PlatformSurfaceMaterial - nameWithType: BaseMixedRealitySpatialSurfaceObserver.PlatformSurfaceMaterial -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.SurfaceFindingMinimumArea - name: SurfaceFindingMinimumArea - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialSurfaceObserver_SurfaceFindingMinimumArea - commentId: P:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.SurfaceFindingMinimumArea - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.SurfaceFindingMinimumArea - nameWithType: BaseMixedRealitySpatialSurfaceObserver.SurfaceFindingMinimumArea -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.SurfaceFindingMinimumArea* - name: SurfaceFindingMinimumArea - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialSurfaceObserver_SurfaceFindingMinimumArea_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.SurfaceFindingMinimumArea - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.SurfaceFindingMinimumArea - nameWithType: BaseMixedRealitySpatialSurfaceObserver.SurfaceFindingMinimumArea -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.WallSurfaceMaterial - name: WallSurfaceMaterial - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialSurfaceObserver_WallSurfaceMaterial - commentId: P:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.WallSurfaceMaterial - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.WallSurfaceMaterial - nameWithType: BaseMixedRealitySpatialSurfaceObserver.WallSurfaceMaterial -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.WallSurfaceMaterial* - name: WallSurfaceMaterial - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySpatialSurfaceObserver_WallSurfaceMaterial_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.WallSurfaceMaterial - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySpatialSurfaceObserver.WallSurfaceMaterial - nameWithType: BaseMixedRealitySpatialSurfaceObserver.WallSurfaceMaterial -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile - name: BaseMixedRealitySurfaceObserverProfile - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.html - commentId: T:XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile - nameWithType: BaseMixedRealitySurfaceObserverProfile -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.CeilingSurfaceMaterial - name: CeilingSurfaceMaterial - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySurfaceObserverProfile_CeilingSurfaceMaterial - commentId: P:XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.CeilingSurfaceMaterial - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.CeilingSurfaceMaterial - nameWithType: BaseMixedRealitySurfaceObserverProfile.CeilingSurfaceMaterial -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.CeilingSurfaceMaterial* - name: CeilingSurfaceMaterial - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySurfaceObserverProfile_CeilingSurfaceMaterial_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.CeilingSurfaceMaterial - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.CeilingSurfaceMaterial - nameWithType: BaseMixedRealitySurfaceObserverProfile.CeilingSurfaceMaterial -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.DisplayCeilingSurface - name: DisplayCeilingSurface - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySurfaceObserverProfile_DisplayCeilingSurface - commentId: P:XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.DisplayCeilingSurface - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.DisplayCeilingSurface - nameWithType: BaseMixedRealitySurfaceObserverProfile.DisplayCeilingSurface -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.DisplayCeilingSurface* - name: DisplayCeilingSurface - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySurfaceObserverProfile_DisplayCeilingSurface_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.DisplayCeilingSurface - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.DisplayCeilingSurface - nameWithType: BaseMixedRealitySurfaceObserverProfile.DisplayCeilingSurface -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.DisplayFloorSurfaces - name: DisplayFloorSurfaces - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySurfaceObserverProfile_DisplayFloorSurfaces - commentId: P:XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.DisplayFloorSurfaces - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.DisplayFloorSurfaces - nameWithType: BaseMixedRealitySurfaceObserverProfile.DisplayFloorSurfaces -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.DisplayFloorSurfaces* - name: DisplayFloorSurfaces - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySurfaceObserverProfile_DisplayFloorSurfaces_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.DisplayFloorSurfaces - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.DisplayFloorSurfaces - nameWithType: BaseMixedRealitySurfaceObserverProfile.DisplayFloorSurfaces -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.DisplayPlatformSurfaces - name: DisplayPlatformSurfaces - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySurfaceObserverProfile_DisplayPlatformSurfaces - commentId: P:XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.DisplayPlatformSurfaces - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.DisplayPlatformSurfaces - nameWithType: BaseMixedRealitySurfaceObserverProfile.DisplayPlatformSurfaces -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.DisplayPlatformSurfaces* - name: DisplayPlatformSurfaces - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySurfaceObserverProfile_DisplayPlatformSurfaces_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.DisplayPlatformSurfaces - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.DisplayPlatformSurfaces - nameWithType: BaseMixedRealitySurfaceObserverProfile.DisplayPlatformSurfaces -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.DisplayWallSurface - name: DisplayWallSurface - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySurfaceObserverProfile_DisplayWallSurface - commentId: P:XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.DisplayWallSurface - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.DisplayWallSurface - nameWithType: BaseMixedRealitySurfaceObserverProfile.DisplayWallSurface -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.DisplayWallSurface* - name: DisplayWallSurface - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySurfaceObserverProfile_DisplayWallSurface_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.DisplayWallSurface - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.DisplayWallSurface - nameWithType: BaseMixedRealitySurfaceObserverProfile.DisplayWallSurface -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.FloorSurfaceMaterial - name: FloorSurfaceMaterial - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySurfaceObserverProfile_FloorSurfaceMaterial - commentId: P:XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.FloorSurfaceMaterial - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.FloorSurfaceMaterial - nameWithType: BaseMixedRealitySurfaceObserverProfile.FloorSurfaceMaterial -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.FloorSurfaceMaterial* - name: FloorSurfaceMaterial - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySurfaceObserverProfile_FloorSurfaceMaterial_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.FloorSurfaceMaterial - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.FloorSurfaceMaterial - nameWithType: BaseMixedRealitySurfaceObserverProfile.FloorSurfaceMaterial -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.PlatformSurfaceMaterial - name: PlatformSurfaceMaterial - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySurfaceObserverProfile_PlatformSurfaceMaterial - commentId: P:XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.PlatformSurfaceMaterial - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.PlatformSurfaceMaterial - nameWithType: BaseMixedRealitySurfaceObserverProfile.PlatformSurfaceMaterial -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.PlatformSurfaceMaterial* - name: PlatformSurfaceMaterial - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySurfaceObserverProfile_PlatformSurfaceMaterial_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.PlatformSurfaceMaterial - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.PlatformSurfaceMaterial - nameWithType: BaseMixedRealitySurfaceObserverProfile.PlatformSurfaceMaterial -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.SurfaceFindingMinimumArea - name: SurfaceFindingMinimumArea - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySurfaceObserverProfile_SurfaceFindingMinimumArea - commentId: P:XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.SurfaceFindingMinimumArea - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.SurfaceFindingMinimumArea - nameWithType: BaseMixedRealitySurfaceObserverProfile.SurfaceFindingMinimumArea -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.SurfaceFindingMinimumArea* - name: SurfaceFindingMinimumArea - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySurfaceObserverProfile_SurfaceFindingMinimumArea_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.SurfaceFindingMinimumArea - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.SurfaceFindingMinimumArea - nameWithType: BaseMixedRealitySurfaceObserverProfile.SurfaceFindingMinimumArea -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.WallSurfaceMaterial - name: WallSurfaceMaterial - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySurfaceObserverProfile_WallSurfaceMaterial - commentId: P:XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.WallSurfaceMaterial - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.WallSurfaceMaterial - nameWithType: BaseMixedRealitySurfaceObserverProfile.WallSurfaceMaterial -- uid: XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.WallSurfaceMaterial* - name: WallSurfaceMaterial - href: api/XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.html#XRTK_Providers_SpatialObservers_BaseMixedRealitySurfaceObserverProfile_WallSurfaceMaterial_ - commentId: Overload:XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.WallSurfaceMaterial - isSpec: "True" - fullName: XRTK.Providers.SpatialObservers.BaseMixedRealitySurfaceObserverProfile.WallSurfaceMaterial - nameWithType: BaseMixedRealitySurfaceObserverProfile.WallSurfaceMaterial -- uid: XRTK.Providers.Speech - name: XRTK.Providers.Speech - href: api/XRTK.Providers.Speech.html - commentId: N:XRTK.Providers.Speech - fullName: XRTK.Providers.Speech - nameWithType: XRTK.Providers.Speech -- uid: XRTK.Providers.Speech.BaseDictationDataProvider - name: BaseDictationDataProvider - href: api/XRTK.Providers.Speech.BaseDictationDataProvider.html - commentId: T:XRTK.Providers.Speech.BaseDictationDataProvider - fullName: XRTK.Providers.Speech.BaseDictationDataProvider - nameWithType: BaseDictationDataProvider -- uid: XRTK.Providers.Speech.BaseDictationDataProvider.#ctor(System.String,System.UInt32,XRTK.Definitions.Controllers.BaseMixedRealityControllerDataProviderProfile,XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - name: BaseDictationDataProvider(String, UInt32, BaseMixedRealityControllerDataProviderProfile, IMixedRealityInputSystem) - href: api/XRTK.Providers.Speech.BaseDictationDataProvider.html#XRTK_Providers_Speech_BaseDictationDataProvider__ctor_System_String_System_UInt32_XRTK_Definitions_Controllers_BaseMixedRealityControllerDataProviderProfile_XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_ - commentId: M:XRTK.Providers.Speech.BaseDictationDataProvider.#ctor(System.String,System.UInt32,XRTK.Definitions.Controllers.BaseMixedRealityControllerDataProviderProfile,XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - fullName: XRTK.Providers.Speech.BaseDictationDataProvider.BaseDictationDataProvider(System.String, System.UInt32, XRTK.Definitions.Controllers.BaseMixedRealityControllerDataProviderProfile, XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - nameWithType: BaseDictationDataProvider.BaseDictationDataProvider(String, UInt32, BaseMixedRealityControllerDataProviderProfile, IMixedRealityInputSystem) -- uid: XRTK.Providers.Speech.BaseDictationDataProvider.#ctor* - name: BaseDictationDataProvider - href: api/XRTK.Providers.Speech.BaseDictationDataProvider.html#XRTK_Providers_Speech_BaseDictationDataProvider__ctor_ - commentId: Overload:XRTK.Providers.Speech.BaseDictationDataProvider.#ctor - isSpec: "True" - fullName: XRTK.Providers.Speech.BaseDictationDataProvider.BaseDictationDataProvider - nameWithType: BaseDictationDataProvider.BaseDictationDataProvider -- uid: XRTK.Providers.Speech.BaseDictationDataProvider.InputSystem - name: InputSystem - href: api/XRTK.Providers.Speech.BaseDictationDataProvider.html#XRTK_Providers_Speech_BaseDictationDataProvider_InputSystem - commentId: F:XRTK.Providers.Speech.BaseDictationDataProvider.InputSystem - fullName: XRTK.Providers.Speech.BaseDictationDataProvider.InputSystem - nameWithType: BaseDictationDataProvider.InputSystem -- uid: XRTK.Providers.Speech.BaseDictationDataProvider.IsListening - name: IsListening - href: api/XRTK.Providers.Speech.BaseDictationDataProvider.html#XRTK_Providers_Speech_BaseDictationDataProvider_IsListening - commentId: P:XRTK.Providers.Speech.BaseDictationDataProvider.IsListening - fullName: XRTK.Providers.Speech.BaseDictationDataProvider.IsListening - nameWithType: BaseDictationDataProvider.IsListening -- uid: XRTK.Providers.Speech.BaseDictationDataProvider.IsListening* - name: IsListening - href: api/XRTK.Providers.Speech.BaseDictationDataProvider.html#XRTK_Providers_Speech_BaseDictationDataProvider_IsListening_ - commentId: Overload:XRTK.Providers.Speech.BaseDictationDataProvider.IsListening - isSpec: "True" - fullName: XRTK.Providers.Speech.BaseDictationDataProvider.IsListening - nameWithType: BaseDictationDataProvider.IsListening -- uid: XRTK.Providers.Speech.BaseDictationDataProvider.StartRecording(UnityEngine.GameObject,System.Single,System.Single,System.Int32,System.String) - name: StartRecording(GameObject, Single, Single, Int32, String) - href: api/XRTK.Providers.Speech.BaseDictationDataProvider.html#XRTK_Providers_Speech_BaseDictationDataProvider_StartRecording_UnityEngine_GameObject_System_Single_System_Single_System_Int32_System_String_ - commentId: M:XRTK.Providers.Speech.BaseDictationDataProvider.StartRecording(UnityEngine.GameObject,System.Single,System.Single,System.Int32,System.String) - fullName: XRTK.Providers.Speech.BaseDictationDataProvider.StartRecording(UnityEngine.GameObject, System.Single, System.Single, System.Int32, System.String) - nameWithType: BaseDictationDataProvider.StartRecording(GameObject, Single, Single, Int32, String) -- uid: XRTK.Providers.Speech.BaseDictationDataProvider.StartRecording* - name: StartRecording - href: api/XRTK.Providers.Speech.BaseDictationDataProvider.html#XRTK_Providers_Speech_BaseDictationDataProvider_StartRecording_ - commentId: Overload:XRTK.Providers.Speech.BaseDictationDataProvider.StartRecording - isSpec: "True" - fullName: XRTK.Providers.Speech.BaseDictationDataProvider.StartRecording - nameWithType: BaseDictationDataProvider.StartRecording -- uid: XRTK.Providers.Speech.BaseDictationDataProvider.StartRecordingAsync(UnityEngine.GameObject,System.Single,System.Single,System.Int32,System.String) - name: StartRecordingAsync(GameObject, Single, Single, Int32, String) - href: api/XRTK.Providers.Speech.BaseDictationDataProvider.html#XRTK_Providers_Speech_BaseDictationDataProvider_StartRecordingAsync_UnityEngine_GameObject_System_Single_System_Single_System_Int32_System_String_ - commentId: M:XRTK.Providers.Speech.BaseDictationDataProvider.StartRecordingAsync(UnityEngine.GameObject,System.Single,System.Single,System.Int32,System.String) - fullName: XRTK.Providers.Speech.BaseDictationDataProvider.StartRecordingAsync(UnityEngine.GameObject, System.Single, System.Single, System.Int32, System.String) - nameWithType: BaseDictationDataProvider.StartRecordingAsync(GameObject, Single, Single, Int32, String) -- uid: XRTK.Providers.Speech.BaseDictationDataProvider.StartRecordingAsync* - name: StartRecordingAsync - href: api/XRTK.Providers.Speech.BaseDictationDataProvider.html#XRTK_Providers_Speech_BaseDictationDataProvider_StartRecordingAsync_ - commentId: Overload:XRTK.Providers.Speech.BaseDictationDataProvider.StartRecordingAsync - isSpec: "True" - fullName: XRTK.Providers.Speech.BaseDictationDataProvider.StartRecordingAsync - nameWithType: BaseDictationDataProvider.StartRecordingAsync -- uid: XRTK.Providers.Speech.BaseDictationDataProvider.StopRecording - name: StopRecording() - href: api/XRTK.Providers.Speech.BaseDictationDataProvider.html#XRTK_Providers_Speech_BaseDictationDataProvider_StopRecording - commentId: M:XRTK.Providers.Speech.BaseDictationDataProvider.StopRecording - fullName: XRTK.Providers.Speech.BaseDictationDataProvider.StopRecording() - nameWithType: BaseDictationDataProvider.StopRecording() -- uid: XRTK.Providers.Speech.BaseDictationDataProvider.StopRecording* - name: StopRecording - href: api/XRTK.Providers.Speech.BaseDictationDataProvider.html#XRTK_Providers_Speech_BaseDictationDataProvider_StopRecording_ - commentId: Overload:XRTK.Providers.Speech.BaseDictationDataProvider.StopRecording - isSpec: "True" - fullName: XRTK.Providers.Speech.BaseDictationDataProvider.StopRecording - nameWithType: BaseDictationDataProvider.StopRecording -- uid: XRTK.Providers.Speech.BaseDictationDataProvider.StopRecordingAsync - name: StopRecordingAsync() - href: api/XRTK.Providers.Speech.BaseDictationDataProvider.html#XRTK_Providers_Speech_BaseDictationDataProvider_StopRecordingAsync - commentId: M:XRTK.Providers.Speech.BaseDictationDataProvider.StopRecordingAsync - fullName: XRTK.Providers.Speech.BaseDictationDataProvider.StopRecordingAsync() - nameWithType: BaseDictationDataProvider.StopRecordingAsync() -- uid: XRTK.Providers.Speech.BaseDictationDataProvider.StopRecordingAsync* - name: StopRecordingAsync - href: api/XRTK.Providers.Speech.BaseDictationDataProvider.html#XRTK_Providers_Speech_BaseDictationDataProvider_StopRecordingAsync_ - commentId: Overload:XRTK.Providers.Speech.BaseDictationDataProvider.StopRecordingAsync - isSpec: "True" - fullName: XRTK.Providers.Speech.BaseDictationDataProvider.StopRecordingAsync - nameWithType: BaseDictationDataProvider.StopRecordingAsync -- uid: XRTK.Providers.Speech.BaseSpeechDataProvider - name: BaseSpeechDataProvider - href: api/XRTK.Providers.Speech.BaseSpeechDataProvider.html - commentId: T:XRTK.Providers.Speech.BaseSpeechDataProvider - fullName: XRTK.Providers.Speech.BaseSpeechDataProvider - nameWithType: BaseSpeechDataProvider -- uid: XRTK.Providers.Speech.BaseSpeechDataProvider.#ctor(System.String,System.UInt32,XRTK.Definitions.InputSystem.MixedRealitySpeechCommandsProfile,XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - name: BaseSpeechDataProvider(String, UInt32, MixedRealitySpeechCommandsProfile, IMixedRealityInputSystem) - href: api/XRTK.Providers.Speech.BaseSpeechDataProvider.html#XRTK_Providers_Speech_BaseSpeechDataProvider__ctor_System_String_System_UInt32_XRTK_Definitions_InputSystem_MixedRealitySpeechCommandsProfile_XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_ - commentId: M:XRTK.Providers.Speech.BaseSpeechDataProvider.#ctor(System.String,System.UInt32,XRTK.Definitions.InputSystem.MixedRealitySpeechCommandsProfile,XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - fullName: XRTK.Providers.Speech.BaseSpeechDataProvider.BaseSpeechDataProvider(System.String, System.UInt32, XRTK.Definitions.InputSystem.MixedRealitySpeechCommandsProfile, XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - nameWithType: BaseSpeechDataProvider.BaseSpeechDataProvider(String, UInt32, MixedRealitySpeechCommandsProfile, IMixedRealityInputSystem) -- uid: XRTK.Providers.Speech.BaseSpeechDataProvider.#ctor* - name: BaseSpeechDataProvider - href: api/XRTK.Providers.Speech.BaseSpeechDataProvider.html#XRTK_Providers_Speech_BaseSpeechDataProvider__ctor_ - commentId: Overload:XRTK.Providers.Speech.BaseSpeechDataProvider.#ctor - isSpec: "True" - fullName: XRTK.Providers.Speech.BaseSpeechDataProvider.BaseSpeechDataProvider - nameWithType: BaseSpeechDataProvider.BaseSpeechDataProvider -- uid: XRTK.Providers.Speech.BaseSpeechDataProvider.InputSystem - name: InputSystem - href: api/XRTK.Providers.Speech.BaseSpeechDataProvider.html#XRTK_Providers_Speech_BaseSpeechDataProvider_InputSystem - commentId: F:XRTK.Providers.Speech.BaseSpeechDataProvider.InputSystem - fullName: XRTK.Providers.Speech.BaseSpeechDataProvider.InputSystem - nameWithType: BaseSpeechDataProvider.InputSystem -- uid: XRTK.Providers.Speech.BaseSpeechDataProvider.IsRecognitionActive - name: IsRecognitionActive - href: api/XRTK.Providers.Speech.BaseSpeechDataProvider.html#XRTK_Providers_Speech_BaseSpeechDataProvider_IsRecognitionActive - commentId: P:XRTK.Providers.Speech.BaseSpeechDataProvider.IsRecognitionActive - fullName: XRTK.Providers.Speech.BaseSpeechDataProvider.IsRecognitionActive - nameWithType: BaseSpeechDataProvider.IsRecognitionActive -- uid: XRTK.Providers.Speech.BaseSpeechDataProvider.IsRecognitionActive* - name: IsRecognitionActive - href: api/XRTK.Providers.Speech.BaseSpeechDataProvider.html#XRTK_Providers_Speech_BaseSpeechDataProvider_IsRecognitionActive_ - commentId: Overload:XRTK.Providers.Speech.BaseSpeechDataProvider.IsRecognitionActive - isSpec: "True" - fullName: XRTK.Providers.Speech.BaseSpeechDataProvider.IsRecognitionActive - nameWithType: BaseSpeechDataProvider.IsRecognitionActive -- uid: XRTK.Providers.Speech.BaseSpeechDataProvider.StartRecognition - name: StartRecognition() - href: api/XRTK.Providers.Speech.BaseSpeechDataProvider.html#XRTK_Providers_Speech_BaseSpeechDataProvider_StartRecognition - commentId: M:XRTK.Providers.Speech.BaseSpeechDataProvider.StartRecognition - fullName: XRTK.Providers.Speech.BaseSpeechDataProvider.StartRecognition() - nameWithType: BaseSpeechDataProvider.StartRecognition() -- uid: XRTK.Providers.Speech.BaseSpeechDataProvider.StartRecognition* - name: StartRecognition - href: api/XRTK.Providers.Speech.BaseSpeechDataProvider.html#XRTK_Providers_Speech_BaseSpeechDataProvider_StartRecognition_ - commentId: Overload:XRTK.Providers.Speech.BaseSpeechDataProvider.StartRecognition - isSpec: "True" - fullName: XRTK.Providers.Speech.BaseSpeechDataProvider.StartRecognition - nameWithType: BaseSpeechDataProvider.StartRecognition -- uid: XRTK.Providers.Speech.BaseSpeechDataProvider.StopRecognition - name: StopRecognition() - href: api/XRTK.Providers.Speech.BaseSpeechDataProvider.html#XRTK_Providers_Speech_BaseSpeechDataProvider_StopRecognition - commentId: M:XRTK.Providers.Speech.BaseSpeechDataProvider.StopRecognition - fullName: XRTK.Providers.Speech.BaseSpeechDataProvider.StopRecognition() - nameWithType: BaseSpeechDataProvider.StopRecognition() -- uid: XRTK.Providers.Speech.BaseSpeechDataProvider.StopRecognition* - name: StopRecognition - href: api/XRTK.Providers.Speech.BaseSpeechDataProvider.html#XRTK_Providers_Speech_BaseSpeechDataProvider_StopRecognition_ - commentId: Overload:XRTK.Providers.Speech.BaseSpeechDataProvider.StopRecognition - isSpec: "True" - fullName: XRTK.Providers.Speech.BaseSpeechDataProvider.StopRecognition - nameWithType: BaseSpeechDataProvider.StopRecognition -- uid: XRTK.Providers.Speech.WindowsDictationDataProvider - name: WindowsDictationDataProvider - href: api/XRTK.Providers.Speech.WindowsDictationDataProvider.html - commentId: T:XRTK.Providers.Speech.WindowsDictationDataProvider - fullName: XRTK.Providers.Speech.WindowsDictationDataProvider - nameWithType: WindowsDictationDataProvider -- uid: XRTK.Providers.Speech.WindowsDictationDataProvider.#ctor(System.String,System.UInt32,XRTK.Definitions.Controllers.BaseMixedRealityControllerDataProviderProfile,XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - name: WindowsDictationDataProvider(String, UInt32, BaseMixedRealityControllerDataProviderProfile, IMixedRealityInputSystem) - href: api/XRTK.Providers.Speech.WindowsDictationDataProvider.html#XRTK_Providers_Speech_WindowsDictationDataProvider__ctor_System_String_System_UInt32_XRTK_Definitions_Controllers_BaseMixedRealityControllerDataProviderProfile_XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_ - commentId: M:XRTK.Providers.Speech.WindowsDictationDataProvider.#ctor(System.String,System.UInt32,XRTK.Definitions.Controllers.BaseMixedRealityControllerDataProviderProfile,XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - fullName: XRTK.Providers.Speech.WindowsDictationDataProvider.WindowsDictationDataProvider(System.String, System.UInt32, XRTK.Definitions.Controllers.BaseMixedRealityControllerDataProviderProfile, XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - nameWithType: WindowsDictationDataProvider.WindowsDictationDataProvider(String, UInt32, BaseMixedRealityControllerDataProviderProfile, IMixedRealityInputSystem) -- uid: XRTK.Providers.Speech.WindowsDictationDataProvider.#ctor* - name: WindowsDictationDataProvider - href: api/XRTK.Providers.Speech.WindowsDictationDataProvider.html#XRTK_Providers_Speech_WindowsDictationDataProvider__ctor_ - commentId: Overload:XRTK.Providers.Speech.WindowsDictationDataProvider.#ctor - isSpec: "True" - fullName: XRTK.Providers.Speech.WindowsDictationDataProvider.WindowsDictationDataProvider - nameWithType: WindowsDictationDataProvider.WindowsDictationDataProvider -- uid: XRTK.Providers.Speech.WindowsSpeechDataProvider - name: WindowsSpeechDataProvider - href: api/XRTK.Providers.Speech.WindowsSpeechDataProvider.html - commentId: T:XRTK.Providers.Speech.WindowsSpeechDataProvider - fullName: XRTK.Providers.Speech.WindowsSpeechDataProvider - nameWithType: WindowsSpeechDataProvider -- uid: XRTK.Providers.Speech.WindowsSpeechDataProvider.#ctor(System.String,System.UInt32,XRTK.Definitions.InputSystem.MixedRealitySpeechCommandsProfile,XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - name: WindowsSpeechDataProvider(String, UInt32, MixedRealitySpeechCommandsProfile, IMixedRealityInputSystem) - href: api/XRTK.Providers.Speech.WindowsSpeechDataProvider.html#XRTK_Providers_Speech_WindowsSpeechDataProvider__ctor_System_String_System_UInt32_XRTK_Definitions_InputSystem_MixedRealitySpeechCommandsProfile_XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_ - commentId: M:XRTK.Providers.Speech.WindowsSpeechDataProvider.#ctor(System.String,System.UInt32,XRTK.Definitions.InputSystem.MixedRealitySpeechCommandsProfile,XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - fullName: XRTK.Providers.Speech.WindowsSpeechDataProvider.WindowsSpeechDataProvider(System.String, System.UInt32, XRTK.Definitions.InputSystem.MixedRealitySpeechCommandsProfile, XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - nameWithType: WindowsSpeechDataProvider.WindowsSpeechDataProvider(String, UInt32, MixedRealitySpeechCommandsProfile, IMixedRealityInputSystem) -- uid: XRTK.Providers.Speech.WindowsSpeechDataProvider.#ctor* - name: WindowsSpeechDataProvider - href: api/XRTK.Providers.Speech.WindowsSpeechDataProvider.html#XRTK_Providers_Speech_WindowsSpeechDataProvider__ctor_ - commentId: Overload:XRTK.Providers.Speech.WindowsSpeechDataProvider.#ctor - isSpec: "True" - fullName: XRTK.Providers.Speech.WindowsSpeechDataProvider.WindowsSpeechDataProvider - nameWithType: WindowsSpeechDataProvider.WindowsSpeechDataProvider -- uid: XRTK.SDK.Audio.Influencers - name: XRTK.SDK.Audio.Influencers - href: api/XRTK.SDK.Audio.Influencers.html - commentId: N:XRTK.SDK.Audio.Influencers - fullName: XRTK.SDK.Audio.Influencers - nameWithType: XRTK.SDK.Audio.Influencers -- uid: XRTK.SDK.Audio.Influencers.AudioInfluencerController - name: AudioInfluencerController - href: api/XRTK.SDK.Audio.Influencers.AudioInfluencerController.html - commentId: T:XRTK.SDK.Audio.Influencers.AudioInfluencerController - fullName: XRTK.SDK.Audio.Influencers.AudioInfluencerController - nameWithType: AudioInfluencerController -- uid: XRTK.SDK.Audio.Influencers.AudioInfluencerController.MaxDistance - name: MaxDistance - href: api/XRTK.SDK.Audio.Influencers.AudioInfluencerController.html#XRTK_SDK_Audio_Influencers_AudioInfluencerController_MaxDistance - commentId: P:XRTK.SDK.Audio.Influencers.AudioInfluencerController.MaxDistance - fullName: XRTK.SDK.Audio.Influencers.AudioInfluencerController.MaxDistance - nameWithType: AudioInfluencerController.MaxDistance -- uid: XRTK.SDK.Audio.Influencers.AudioInfluencerController.MaxDistance* - name: MaxDistance - href: api/XRTK.SDK.Audio.Influencers.AudioInfluencerController.html#XRTK_SDK_Audio_Influencers_AudioInfluencerController_MaxDistance_ - commentId: Overload:XRTK.SDK.Audio.Influencers.AudioInfluencerController.MaxDistance - isSpec: "True" - fullName: XRTK.SDK.Audio.Influencers.AudioInfluencerController.MaxDistance - nameWithType: AudioInfluencerController.MaxDistance -- uid: XRTK.SDK.Audio.Influencers.AudioInfluencerController.NativeHighPassCutoffFrequency - name: NativeHighPassCutoffFrequency - href: api/XRTK.SDK.Audio.Influencers.AudioInfluencerController.html#XRTK_SDK_Audio_Influencers_AudioInfluencerController_NativeHighPassCutoffFrequency - commentId: P:XRTK.SDK.Audio.Influencers.AudioInfluencerController.NativeHighPassCutoffFrequency - fullName: XRTK.SDK.Audio.Influencers.AudioInfluencerController.NativeHighPassCutoffFrequency - nameWithType: AudioInfluencerController.NativeHighPassCutoffFrequency -- uid: XRTK.SDK.Audio.Influencers.AudioInfluencerController.NativeHighPassCutoffFrequency* - name: NativeHighPassCutoffFrequency - href: api/XRTK.SDK.Audio.Influencers.AudioInfluencerController.html#XRTK_SDK_Audio_Influencers_AudioInfluencerController_NativeHighPassCutoffFrequency_ - commentId: Overload:XRTK.SDK.Audio.Influencers.AudioInfluencerController.NativeHighPassCutoffFrequency - isSpec: "True" - fullName: XRTK.SDK.Audio.Influencers.AudioInfluencerController.NativeHighPassCutoffFrequency - nameWithType: AudioInfluencerController.NativeHighPassCutoffFrequency -- uid: XRTK.SDK.Audio.Influencers.AudioInfluencerController.NativeLowPassCutoffFrequency - name: NativeLowPassCutoffFrequency - href: api/XRTK.SDK.Audio.Influencers.AudioInfluencerController.html#XRTK_SDK_Audio_Influencers_AudioInfluencerController_NativeLowPassCutoffFrequency - commentId: P:XRTK.SDK.Audio.Influencers.AudioInfluencerController.NativeLowPassCutoffFrequency - fullName: XRTK.SDK.Audio.Influencers.AudioInfluencerController.NativeLowPassCutoffFrequency - nameWithType: AudioInfluencerController.NativeLowPassCutoffFrequency -- uid: XRTK.SDK.Audio.Influencers.AudioInfluencerController.NativeLowPassCutoffFrequency* - name: NativeLowPassCutoffFrequency - href: api/XRTK.SDK.Audio.Influencers.AudioInfluencerController.html#XRTK_SDK_Audio_Influencers_AudioInfluencerController_NativeLowPassCutoffFrequency_ - commentId: Overload:XRTK.SDK.Audio.Influencers.AudioInfluencerController.NativeLowPassCutoffFrequency - isSpec: "True" - fullName: XRTK.SDK.Audio.Influencers.AudioInfluencerController.NativeLowPassCutoffFrequency - nameWithType: AudioInfluencerController.NativeLowPassCutoffFrequency -- uid: XRTK.SDK.Audio.Influencers.AudioInfluencerController.NeutralHighFrequency - name: NeutralHighFrequency - href: api/XRTK.SDK.Audio.Influencers.AudioInfluencerController.html#XRTK_SDK_Audio_Influencers_AudioInfluencerController_NeutralHighFrequency - commentId: F:XRTK.SDK.Audio.Influencers.AudioInfluencerController.NeutralHighFrequency - fullName: XRTK.SDK.Audio.Influencers.AudioInfluencerController.NeutralHighFrequency - nameWithType: AudioInfluencerController.NeutralHighFrequency -- uid: XRTK.SDK.Audio.Influencers.AudioInfluencerController.NeutralLowFrequency - name: NeutralLowFrequency - href: api/XRTK.SDK.Audio.Influencers.AudioInfluencerController.html#XRTK_SDK_Audio_Influencers_AudioInfluencerController_NeutralLowFrequency - commentId: F:XRTK.SDK.Audio.Influencers.AudioInfluencerController.NeutralLowFrequency - fullName: XRTK.SDK.Audio.Influencers.AudioInfluencerController.NeutralLowFrequency - nameWithType: AudioInfluencerController.NeutralLowFrequency -- uid: XRTK.SDK.Audio.Influencers.AudioInfluencerController.UpdateInterval - name: UpdateInterval - href: api/XRTK.SDK.Audio.Influencers.AudioInfluencerController.html#XRTK_SDK_Audio_Influencers_AudioInfluencerController_UpdateInterval - commentId: P:XRTK.SDK.Audio.Influencers.AudioInfluencerController.UpdateInterval - fullName: XRTK.SDK.Audio.Influencers.AudioInfluencerController.UpdateInterval - nameWithType: AudioInfluencerController.UpdateInterval -- uid: XRTK.SDK.Audio.Influencers.AudioInfluencerController.UpdateInterval* - name: UpdateInterval - href: api/XRTK.SDK.Audio.Influencers.AudioInfluencerController.html#XRTK_SDK_Audio_Influencers_AudioInfluencerController_UpdateInterval_ - commentId: Overload:XRTK.SDK.Audio.Influencers.AudioInfluencerController.UpdateInterval - isSpec: "True" - fullName: XRTK.SDK.Audio.Influencers.AudioInfluencerController.UpdateInterval - nameWithType: AudioInfluencerController.UpdateInterval -- uid: XRTK.SDK.Audio.Influencers.AudioLoFiEffect - name: AudioLoFiEffect - href: api/XRTK.SDK.Audio.Influencers.AudioLoFiEffect.html - commentId: T:XRTK.SDK.Audio.Influencers.AudioLoFiEffect - fullName: XRTK.SDK.Audio.Influencers.AudioLoFiEffect - nameWithType: AudioLoFiEffect -- uid: XRTK.SDK.Audio.Influencers.AudioLoFiEffect.SourceQuality - name: SourceQuality - href: api/XRTK.SDK.Audio.Influencers.AudioLoFiEffect.html#XRTK_SDK_Audio_Influencers_AudioLoFiEffect_SourceQuality - commentId: P:XRTK.SDK.Audio.Influencers.AudioLoFiEffect.SourceQuality - fullName: XRTK.SDK.Audio.Influencers.AudioLoFiEffect.SourceQuality - nameWithType: AudioLoFiEffect.SourceQuality -- uid: XRTK.SDK.Audio.Influencers.AudioLoFiEffect.SourceQuality* - name: SourceQuality - href: api/XRTK.SDK.Audio.Influencers.AudioLoFiEffect.html#XRTK_SDK_Audio_Influencers_AudioLoFiEffect_SourceQuality_ - commentId: Overload:XRTK.SDK.Audio.Influencers.AudioLoFiEffect.SourceQuality - isSpec: "True" - fullName: XRTK.SDK.Audio.Influencers.AudioLoFiEffect.SourceQuality - nameWithType: AudioLoFiEffect.SourceQuality -- uid: XRTK.SDK.Audio.Influencers.AudioLoFiSourceQualityType - name: AudioLoFiSourceQualityType - href: api/XRTK.SDK.Audio.Influencers.AudioLoFiSourceQualityType.html - commentId: T:XRTK.SDK.Audio.Influencers.AudioLoFiSourceQualityType - fullName: XRTK.SDK.Audio.Influencers.AudioLoFiSourceQualityType - nameWithType: AudioLoFiSourceQualityType -- uid: XRTK.SDK.Audio.Influencers.AudioLoFiSourceQualityType.AmRadio - name: AmRadio - href: api/XRTK.SDK.Audio.Influencers.AudioLoFiSourceQualityType.html#XRTK_SDK_Audio_Influencers_AudioLoFiSourceQualityType_AmRadio - commentId: F:XRTK.SDK.Audio.Influencers.AudioLoFiSourceQualityType.AmRadio - fullName: XRTK.SDK.Audio.Influencers.AudioLoFiSourceQualityType.AmRadio - nameWithType: AudioLoFiSourceQualityType.AmRadio -- uid: XRTK.SDK.Audio.Influencers.AudioLoFiSourceQualityType.FmRadio - name: FmRadio - href: api/XRTK.SDK.Audio.Influencers.AudioLoFiSourceQualityType.html#XRTK_SDK_Audio_Influencers_AudioLoFiSourceQualityType_FmRadio - commentId: F:XRTK.SDK.Audio.Influencers.AudioLoFiSourceQualityType.FmRadio - fullName: XRTK.SDK.Audio.Influencers.AudioLoFiSourceQualityType.FmRadio - nameWithType: AudioLoFiSourceQualityType.FmRadio -- uid: XRTK.SDK.Audio.Influencers.AudioLoFiSourceQualityType.FullRange - name: FullRange - href: api/XRTK.SDK.Audio.Influencers.AudioLoFiSourceQualityType.html#XRTK_SDK_Audio_Influencers_AudioLoFiSourceQualityType_FullRange - commentId: F:XRTK.SDK.Audio.Influencers.AudioLoFiSourceQualityType.FullRange - fullName: XRTK.SDK.Audio.Influencers.AudioLoFiSourceQualityType.FullRange - nameWithType: AudioLoFiSourceQualityType.FullRange -- uid: XRTK.SDK.Audio.Influencers.AudioLoFiSourceQualityType.NarrowBandTelephony - name: NarrowBandTelephony - href: api/XRTK.SDK.Audio.Influencers.AudioLoFiSourceQualityType.html#XRTK_SDK_Audio_Influencers_AudioLoFiSourceQualityType_NarrowBandTelephony - commentId: F:XRTK.SDK.Audio.Influencers.AudioLoFiSourceQualityType.NarrowBandTelephony - fullName: XRTK.SDK.Audio.Influencers.AudioLoFiSourceQualityType.NarrowBandTelephony - nameWithType: AudioLoFiSourceQualityType.NarrowBandTelephony -- uid: XRTK.SDK.Audio.Influencers.AudioLoFiSourceQualityType.WideBandTelephony - name: WideBandTelephony - href: api/XRTK.SDK.Audio.Influencers.AudioLoFiSourceQualityType.html#XRTK_SDK_Audio_Influencers_AudioLoFiSourceQualityType_WideBandTelephony - commentId: F:XRTK.SDK.Audio.Influencers.AudioLoFiSourceQualityType.WideBandTelephony - fullName: XRTK.SDK.Audio.Influencers.AudioLoFiSourceQualityType.WideBandTelephony - nameWithType: AudioLoFiSourceQualityType.WideBandTelephony -- uid: XRTK.SDK.Audio.Influencers.AudioOccluder - name: AudioOccluder - href: api/XRTK.SDK.Audio.Influencers.AudioOccluder.html - commentId: T:XRTK.SDK.Audio.Influencers.AudioOccluder - fullName: XRTK.SDK.Audio.Influencers.AudioOccluder - nameWithType: AudioOccluder -- uid: XRTK.SDK.Audio.Influencers.AudioOccluder.ApplyEffect(UnityEngine.GameObject) - name: ApplyEffect(GameObject) - href: api/XRTK.SDK.Audio.Influencers.AudioOccluder.html#XRTK_SDK_Audio_Influencers_AudioOccluder_ApplyEffect_UnityEngine_GameObject_ - commentId: M:XRTK.SDK.Audio.Influencers.AudioOccluder.ApplyEffect(UnityEngine.GameObject) - fullName: XRTK.SDK.Audio.Influencers.AudioOccluder.ApplyEffect(UnityEngine.GameObject) - nameWithType: AudioOccluder.ApplyEffect(GameObject) -- uid: XRTK.SDK.Audio.Influencers.AudioOccluder.ApplyEffect* - name: ApplyEffect - href: api/XRTK.SDK.Audio.Influencers.AudioOccluder.html#XRTK_SDK_Audio_Influencers_AudioOccluder_ApplyEffect_ - commentId: Overload:XRTK.SDK.Audio.Influencers.AudioOccluder.ApplyEffect - isSpec: "True" - fullName: XRTK.SDK.Audio.Influencers.AudioOccluder.ApplyEffect - nameWithType: AudioOccluder.ApplyEffect -- uid: XRTK.SDK.Audio.Influencers.AudioOccluder.CutoffFrequency - name: CutoffFrequency - href: api/XRTK.SDK.Audio.Influencers.AudioOccluder.html#XRTK_SDK_Audio_Influencers_AudioOccluder_CutoffFrequency - commentId: P:XRTK.SDK.Audio.Influencers.AudioOccluder.CutoffFrequency - fullName: XRTK.SDK.Audio.Influencers.AudioOccluder.CutoffFrequency - nameWithType: AudioOccluder.CutoffFrequency -- uid: XRTK.SDK.Audio.Influencers.AudioOccluder.CutoffFrequency* - name: CutoffFrequency - href: api/XRTK.SDK.Audio.Influencers.AudioOccluder.html#XRTK_SDK_Audio_Influencers_AudioOccluder_CutoffFrequency_ - commentId: Overload:XRTK.SDK.Audio.Influencers.AudioOccluder.CutoffFrequency - isSpec: "True" - fullName: XRTK.SDK.Audio.Influencers.AudioOccluder.CutoffFrequency - nameWithType: AudioOccluder.CutoffFrequency -- uid: XRTK.SDK.Audio.Influencers.AudioOccluder.RemoveEffect(UnityEngine.GameObject) - name: RemoveEffect(GameObject) - href: api/XRTK.SDK.Audio.Influencers.AudioOccluder.html#XRTK_SDK_Audio_Influencers_AudioOccluder_RemoveEffect_UnityEngine_GameObject_ - commentId: M:XRTK.SDK.Audio.Influencers.AudioOccluder.RemoveEffect(UnityEngine.GameObject) - fullName: XRTK.SDK.Audio.Influencers.AudioOccluder.RemoveEffect(UnityEngine.GameObject) - nameWithType: AudioOccluder.RemoveEffect(GameObject) -- uid: XRTK.SDK.Audio.Influencers.AudioOccluder.RemoveEffect* - name: RemoveEffect - href: api/XRTK.SDK.Audio.Influencers.AudioOccluder.html#XRTK_SDK_Audio_Influencers_AudioOccluder_RemoveEffect_ - commentId: Overload:XRTK.SDK.Audio.Influencers.AudioOccluder.RemoveEffect - isSpec: "True" - fullName: XRTK.SDK.Audio.Influencers.AudioOccluder.RemoveEffect - nameWithType: AudioOccluder.RemoveEffect -- uid: XRTK.SDK.Audio.Influencers.AudioOccluder.VolumePassThrough - name: VolumePassThrough - href: api/XRTK.SDK.Audio.Influencers.AudioOccluder.html#XRTK_SDK_Audio_Influencers_AudioOccluder_VolumePassThrough - commentId: P:XRTK.SDK.Audio.Influencers.AudioOccluder.VolumePassThrough - fullName: XRTK.SDK.Audio.Influencers.AudioOccluder.VolumePassThrough - nameWithType: AudioOccluder.VolumePassThrough -- uid: XRTK.SDK.Audio.Influencers.AudioOccluder.VolumePassThrough* - name: VolumePassThrough - href: api/XRTK.SDK.Audio.Influencers.AudioOccluder.html#XRTK_SDK_Audio_Influencers_AudioOccluder_VolumePassThrough_ - commentId: Overload:XRTK.SDK.Audio.Influencers.AudioOccluder.VolumePassThrough - isSpec: "True" - fullName: XRTK.SDK.Audio.Influencers.AudioOccluder.VolumePassThrough - nameWithType: AudioOccluder.VolumePassThrough -- uid: XRTK.SDK.DiagnosticsSystem - name: XRTK.SDK.DiagnosticsSystem - href: api/XRTK.SDK.DiagnosticsSystem.html - commentId: N:XRTK.SDK.DiagnosticsSystem - fullName: XRTK.SDK.DiagnosticsSystem - nameWithType: XRTK.SDK.DiagnosticsSystem -- uid: XRTK.SDK.DiagnosticsSystem.MixedRealityConsoleDiagnosticsHandler - name: MixedRealityConsoleDiagnosticsHandler - href: api/XRTK.SDK.DiagnosticsSystem.MixedRealityConsoleDiagnosticsHandler.html - commentId: T:XRTK.SDK.DiagnosticsSystem.MixedRealityConsoleDiagnosticsHandler - fullName: XRTK.SDK.DiagnosticsSystem.MixedRealityConsoleDiagnosticsHandler - nameWithType: MixedRealityConsoleDiagnosticsHandler -- uid: XRTK.SDK.DiagnosticsSystem.MixedRealityConsoleDiagnosticsHandler.OnLogReceived(XRTK.EventDatum.DiagnosticsSystem.ConsoleEventData) - name: OnLogReceived(ConsoleEventData) - href: api/XRTK.SDK.DiagnosticsSystem.MixedRealityConsoleDiagnosticsHandler.html#XRTK_SDK_DiagnosticsSystem_MixedRealityConsoleDiagnosticsHandler_OnLogReceived_XRTK_EventDatum_DiagnosticsSystem_ConsoleEventData_ - commentId: M:XRTK.SDK.DiagnosticsSystem.MixedRealityConsoleDiagnosticsHandler.OnLogReceived(XRTK.EventDatum.DiagnosticsSystem.ConsoleEventData) - fullName: XRTK.SDK.DiagnosticsSystem.MixedRealityConsoleDiagnosticsHandler.OnLogReceived(XRTK.EventDatum.DiagnosticsSystem.ConsoleEventData) - nameWithType: MixedRealityConsoleDiagnosticsHandler.OnLogReceived(ConsoleEventData) -- uid: XRTK.SDK.DiagnosticsSystem.MixedRealityConsoleDiagnosticsHandler.OnLogReceived* - name: OnLogReceived - href: api/XRTK.SDK.DiagnosticsSystem.MixedRealityConsoleDiagnosticsHandler.html#XRTK_SDK_DiagnosticsSystem_MixedRealityConsoleDiagnosticsHandler_OnLogReceived_ - commentId: Overload:XRTK.SDK.DiagnosticsSystem.MixedRealityConsoleDiagnosticsHandler.OnLogReceived - isSpec: "True" - fullName: XRTK.SDK.DiagnosticsSystem.MixedRealityConsoleDiagnosticsHandler.OnLogReceived - nameWithType: MixedRealityConsoleDiagnosticsHandler.OnLogReceived -- uid: XRTK.SDK.DiagnosticsSystem.MixedRealityDiagnosticsWindow - name: MixedRealityDiagnosticsWindow - href: api/XRTK.SDK.DiagnosticsSystem.MixedRealityDiagnosticsWindow.html - commentId: T:XRTK.SDK.DiagnosticsSystem.MixedRealityDiagnosticsWindow - fullName: XRTK.SDK.DiagnosticsSystem.MixedRealityDiagnosticsWindow - nameWithType: MixedRealityDiagnosticsWindow -- uid: XRTK.SDK.DiagnosticsSystem.MixedRealityDiagnosticsWindow.IsPinned - name: IsPinned - href: api/XRTK.SDK.DiagnosticsSystem.MixedRealityDiagnosticsWindow.html#XRTK_SDK_DiagnosticsSystem_MixedRealityDiagnosticsWindow_IsPinned - commentId: P:XRTK.SDK.DiagnosticsSystem.MixedRealityDiagnosticsWindow.IsPinned - fullName: XRTK.SDK.DiagnosticsSystem.MixedRealityDiagnosticsWindow.IsPinned - nameWithType: MixedRealityDiagnosticsWindow.IsPinned -- uid: XRTK.SDK.DiagnosticsSystem.MixedRealityDiagnosticsWindow.IsPinned* - name: IsPinned - href: api/XRTK.SDK.DiagnosticsSystem.MixedRealityDiagnosticsWindow.html#XRTK_SDK_DiagnosticsSystem_MixedRealityDiagnosticsWindow_IsPinned_ - commentId: Overload:XRTK.SDK.DiagnosticsSystem.MixedRealityDiagnosticsWindow.IsPinned - isSpec: "True" - fullName: XRTK.SDK.DiagnosticsSystem.MixedRealityDiagnosticsWindow.IsPinned - nameWithType: MixedRealityDiagnosticsWindow.IsPinned -- uid: XRTK.SDK.DiagnosticsSystem.MixedRealityDiagnosticsWindow.OnEnable - name: OnEnable() - href: api/XRTK.SDK.DiagnosticsSystem.MixedRealityDiagnosticsWindow.html#XRTK_SDK_DiagnosticsSystem_MixedRealityDiagnosticsWindow_OnEnable - commentId: M:XRTK.SDK.DiagnosticsSystem.MixedRealityDiagnosticsWindow.OnEnable - fullName: XRTK.SDK.DiagnosticsSystem.MixedRealityDiagnosticsWindow.OnEnable() - nameWithType: MixedRealityDiagnosticsWindow.OnEnable() -- uid: XRTK.SDK.DiagnosticsSystem.MixedRealityDiagnosticsWindow.OnEnable* - name: OnEnable - href: api/XRTK.SDK.DiagnosticsSystem.MixedRealityDiagnosticsWindow.html#XRTK_SDK_DiagnosticsSystem_MixedRealityDiagnosticsWindow_OnEnable_ - commentId: Overload:XRTK.SDK.DiagnosticsSystem.MixedRealityDiagnosticsWindow.OnEnable - isSpec: "True" - fullName: XRTK.SDK.DiagnosticsSystem.MixedRealityDiagnosticsWindow.OnEnable - nameWithType: MixedRealityDiagnosticsWindow.OnEnable -- uid: XRTK.SDK.DiagnosticsSystem.MixedRealityDiagnosticsWindow.OnValidate - name: OnValidate() - href: api/XRTK.SDK.DiagnosticsSystem.MixedRealityDiagnosticsWindow.html#XRTK_SDK_DiagnosticsSystem_MixedRealityDiagnosticsWindow_OnValidate - commentId: M:XRTK.SDK.DiagnosticsSystem.MixedRealityDiagnosticsWindow.OnValidate - fullName: XRTK.SDK.DiagnosticsSystem.MixedRealityDiagnosticsWindow.OnValidate() - nameWithType: MixedRealityDiagnosticsWindow.OnValidate() -- uid: XRTK.SDK.DiagnosticsSystem.MixedRealityDiagnosticsWindow.OnValidate* - name: OnValidate - href: api/XRTK.SDK.DiagnosticsSystem.MixedRealityDiagnosticsWindow.html#XRTK_SDK_DiagnosticsSystem_MixedRealityDiagnosticsWindow_OnValidate_ - commentId: Overload:XRTK.SDK.DiagnosticsSystem.MixedRealityDiagnosticsWindow.OnValidate - isSpec: "True" - fullName: XRTK.SDK.DiagnosticsSystem.MixedRealityDiagnosticsWindow.OnValidate - nameWithType: MixedRealityDiagnosticsWindow.OnValidate -- uid: XRTK.SDK.DiagnosticsSystem.MixedRealityDiagnosticsWindow.Toggle_PinWindow - name: Toggle_PinWindow() - href: api/XRTK.SDK.DiagnosticsSystem.MixedRealityDiagnosticsWindow.html#XRTK_SDK_DiagnosticsSystem_MixedRealityDiagnosticsWindow_Toggle_PinWindow - commentId: M:XRTK.SDK.DiagnosticsSystem.MixedRealityDiagnosticsWindow.Toggle_PinWindow - fullName: XRTK.SDK.DiagnosticsSystem.MixedRealityDiagnosticsWindow.Toggle_PinWindow() - nameWithType: MixedRealityDiagnosticsWindow.Toggle_PinWindow() -- uid: XRTK.SDK.DiagnosticsSystem.MixedRealityDiagnosticsWindow.Toggle_PinWindow* - name: Toggle_PinWindow - href: api/XRTK.SDK.DiagnosticsSystem.MixedRealityDiagnosticsWindow.html#XRTK_SDK_DiagnosticsSystem_MixedRealityDiagnosticsWindow_Toggle_PinWindow_ - commentId: Overload:XRTK.SDK.DiagnosticsSystem.MixedRealityDiagnosticsWindow.Toggle_PinWindow - isSpec: "True" - fullName: XRTK.SDK.DiagnosticsSystem.MixedRealityDiagnosticsWindow.Toggle_PinWindow - nameWithType: MixedRealityDiagnosticsWindow.Toggle_PinWindow -- uid: XRTK.SDK.DiagnosticsSystem.MixedRealityFrameDiagnosticsHandler - name: MixedRealityFrameDiagnosticsHandler - href: api/XRTK.SDK.DiagnosticsSystem.MixedRealityFrameDiagnosticsHandler.html - commentId: T:XRTK.SDK.DiagnosticsSystem.MixedRealityFrameDiagnosticsHandler - fullName: XRTK.SDK.DiagnosticsSystem.MixedRealityFrameDiagnosticsHandler - nameWithType: MixedRealityFrameDiagnosticsHandler -- uid: XRTK.SDK.DiagnosticsSystem.MixedRealityFrameDiagnosticsHandler.OnFrameMissed(XRTK.EventDatum.DiagnosticsSystem.FrameEventData) - name: OnFrameMissed(FrameEventData) - href: api/XRTK.SDK.DiagnosticsSystem.MixedRealityFrameDiagnosticsHandler.html#XRTK_SDK_DiagnosticsSystem_MixedRealityFrameDiagnosticsHandler_OnFrameMissed_XRTK_EventDatum_DiagnosticsSystem_FrameEventData_ - commentId: M:XRTK.SDK.DiagnosticsSystem.MixedRealityFrameDiagnosticsHandler.OnFrameMissed(XRTK.EventDatum.DiagnosticsSystem.FrameEventData) - fullName: XRTK.SDK.DiagnosticsSystem.MixedRealityFrameDiagnosticsHandler.OnFrameMissed(XRTK.EventDatum.DiagnosticsSystem.FrameEventData) - nameWithType: MixedRealityFrameDiagnosticsHandler.OnFrameMissed(FrameEventData) -- uid: XRTK.SDK.DiagnosticsSystem.MixedRealityFrameDiagnosticsHandler.OnFrameMissed* - name: OnFrameMissed - href: api/XRTK.SDK.DiagnosticsSystem.MixedRealityFrameDiagnosticsHandler.html#XRTK_SDK_DiagnosticsSystem_MixedRealityFrameDiagnosticsHandler_OnFrameMissed_ - commentId: Overload:XRTK.SDK.DiagnosticsSystem.MixedRealityFrameDiagnosticsHandler.OnFrameMissed - isSpec: "True" - fullName: XRTK.SDK.DiagnosticsSystem.MixedRealityFrameDiagnosticsHandler.OnFrameMissed - nameWithType: MixedRealityFrameDiagnosticsHandler.OnFrameMissed -- uid: XRTK.SDK.DiagnosticsSystem.MixedRealityFrameDiagnosticsHandler.OnFrameRateChanged(XRTK.EventDatum.DiagnosticsSystem.FrameEventData) - name: OnFrameRateChanged(FrameEventData) - href: api/XRTK.SDK.DiagnosticsSystem.MixedRealityFrameDiagnosticsHandler.html#XRTK_SDK_DiagnosticsSystem_MixedRealityFrameDiagnosticsHandler_OnFrameRateChanged_XRTK_EventDatum_DiagnosticsSystem_FrameEventData_ - commentId: M:XRTK.SDK.DiagnosticsSystem.MixedRealityFrameDiagnosticsHandler.OnFrameRateChanged(XRTK.EventDatum.DiagnosticsSystem.FrameEventData) - fullName: XRTK.SDK.DiagnosticsSystem.MixedRealityFrameDiagnosticsHandler.OnFrameRateChanged(XRTK.EventDatum.DiagnosticsSystem.FrameEventData) - nameWithType: MixedRealityFrameDiagnosticsHandler.OnFrameRateChanged(FrameEventData) -- uid: XRTK.SDK.DiagnosticsSystem.MixedRealityFrameDiagnosticsHandler.OnFrameRateChanged* - name: OnFrameRateChanged - href: api/XRTK.SDK.DiagnosticsSystem.MixedRealityFrameDiagnosticsHandler.html#XRTK_SDK_DiagnosticsSystem_MixedRealityFrameDiagnosticsHandler_OnFrameRateChanged_ - commentId: Overload:XRTK.SDK.DiagnosticsSystem.MixedRealityFrameDiagnosticsHandler.OnFrameRateChanged - isSpec: "True" - fullName: XRTK.SDK.DiagnosticsSystem.MixedRealityFrameDiagnosticsHandler.OnFrameRateChanged - nameWithType: MixedRealityFrameDiagnosticsHandler.OnFrameRateChanged -- uid: XRTK.SDK.DiagnosticsSystem.MixedRealityMemoryDiagnosticsHandler - name: MixedRealityMemoryDiagnosticsHandler - href: api/XRTK.SDK.DiagnosticsSystem.MixedRealityMemoryDiagnosticsHandler.html - commentId: T:XRTK.SDK.DiagnosticsSystem.MixedRealityMemoryDiagnosticsHandler - fullName: XRTK.SDK.DiagnosticsSystem.MixedRealityMemoryDiagnosticsHandler - nameWithType: MixedRealityMemoryDiagnosticsHandler -- uid: XRTK.SDK.DiagnosticsSystem.MixedRealityMemoryDiagnosticsHandler.OnMemoryLimitChanged(XRTK.EventDatum.DiagnosticsSystem.MemoryEventData) - name: OnMemoryLimitChanged(MemoryEventData) - href: api/XRTK.SDK.DiagnosticsSystem.MixedRealityMemoryDiagnosticsHandler.html#XRTK_SDK_DiagnosticsSystem_MixedRealityMemoryDiagnosticsHandler_OnMemoryLimitChanged_XRTK_EventDatum_DiagnosticsSystem_MemoryEventData_ - commentId: M:XRTK.SDK.DiagnosticsSystem.MixedRealityMemoryDiagnosticsHandler.OnMemoryLimitChanged(XRTK.EventDatum.DiagnosticsSystem.MemoryEventData) - fullName: XRTK.SDK.DiagnosticsSystem.MixedRealityMemoryDiagnosticsHandler.OnMemoryLimitChanged(XRTK.EventDatum.DiagnosticsSystem.MemoryEventData) - nameWithType: MixedRealityMemoryDiagnosticsHandler.OnMemoryLimitChanged(MemoryEventData) -- uid: XRTK.SDK.DiagnosticsSystem.MixedRealityMemoryDiagnosticsHandler.OnMemoryLimitChanged* - name: OnMemoryLimitChanged - href: api/XRTK.SDK.DiagnosticsSystem.MixedRealityMemoryDiagnosticsHandler.html#XRTK_SDK_DiagnosticsSystem_MixedRealityMemoryDiagnosticsHandler_OnMemoryLimitChanged_ - commentId: Overload:XRTK.SDK.DiagnosticsSystem.MixedRealityMemoryDiagnosticsHandler.OnMemoryLimitChanged - isSpec: "True" - fullName: XRTK.SDK.DiagnosticsSystem.MixedRealityMemoryDiagnosticsHandler.OnMemoryLimitChanged - nameWithType: MixedRealityMemoryDiagnosticsHandler.OnMemoryLimitChanged -- uid: XRTK.SDK.DiagnosticsSystem.MixedRealityMemoryDiagnosticsHandler.OnMemoryPeakChanged(XRTK.EventDatum.DiagnosticsSystem.MemoryEventData) - name: OnMemoryPeakChanged(MemoryEventData) - href: api/XRTK.SDK.DiagnosticsSystem.MixedRealityMemoryDiagnosticsHandler.html#XRTK_SDK_DiagnosticsSystem_MixedRealityMemoryDiagnosticsHandler_OnMemoryPeakChanged_XRTK_EventDatum_DiagnosticsSystem_MemoryEventData_ - commentId: M:XRTK.SDK.DiagnosticsSystem.MixedRealityMemoryDiagnosticsHandler.OnMemoryPeakChanged(XRTK.EventDatum.DiagnosticsSystem.MemoryEventData) - fullName: XRTK.SDK.DiagnosticsSystem.MixedRealityMemoryDiagnosticsHandler.OnMemoryPeakChanged(XRTK.EventDatum.DiagnosticsSystem.MemoryEventData) - nameWithType: MixedRealityMemoryDiagnosticsHandler.OnMemoryPeakChanged(MemoryEventData) -- uid: XRTK.SDK.DiagnosticsSystem.MixedRealityMemoryDiagnosticsHandler.OnMemoryPeakChanged* - name: OnMemoryPeakChanged - href: api/XRTK.SDK.DiagnosticsSystem.MixedRealityMemoryDiagnosticsHandler.html#XRTK_SDK_DiagnosticsSystem_MixedRealityMemoryDiagnosticsHandler_OnMemoryPeakChanged_ - commentId: Overload:XRTK.SDK.DiagnosticsSystem.MixedRealityMemoryDiagnosticsHandler.OnMemoryPeakChanged - isSpec: "True" - fullName: XRTK.SDK.DiagnosticsSystem.MixedRealityMemoryDiagnosticsHandler.OnMemoryPeakChanged - nameWithType: MixedRealityMemoryDiagnosticsHandler.OnMemoryPeakChanged -- uid: XRTK.SDK.DiagnosticsSystem.MixedRealityMemoryDiagnosticsHandler.OnMemoryUsageChanged(XRTK.EventDatum.DiagnosticsSystem.MemoryEventData) - name: OnMemoryUsageChanged(MemoryEventData) - href: api/XRTK.SDK.DiagnosticsSystem.MixedRealityMemoryDiagnosticsHandler.html#XRTK_SDK_DiagnosticsSystem_MixedRealityMemoryDiagnosticsHandler_OnMemoryUsageChanged_XRTK_EventDatum_DiagnosticsSystem_MemoryEventData_ - commentId: M:XRTK.SDK.DiagnosticsSystem.MixedRealityMemoryDiagnosticsHandler.OnMemoryUsageChanged(XRTK.EventDatum.DiagnosticsSystem.MemoryEventData) - fullName: XRTK.SDK.DiagnosticsSystem.MixedRealityMemoryDiagnosticsHandler.OnMemoryUsageChanged(XRTK.EventDatum.DiagnosticsSystem.MemoryEventData) - nameWithType: MixedRealityMemoryDiagnosticsHandler.OnMemoryUsageChanged(MemoryEventData) -- uid: XRTK.SDK.DiagnosticsSystem.MixedRealityMemoryDiagnosticsHandler.OnMemoryUsageChanged* - name: OnMemoryUsageChanged - href: api/XRTK.SDK.DiagnosticsSystem.MixedRealityMemoryDiagnosticsHandler.html#XRTK_SDK_DiagnosticsSystem_MixedRealityMemoryDiagnosticsHandler_OnMemoryUsageChanged_ - commentId: Overload:XRTK.SDK.DiagnosticsSystem.MixedRealityMemoryDiagnosticsHandler.OnMemoryUsageChanged - isSpec: "True" - fullName: XRTK.SDK.DiagnosticsSystem.MixedRealityMemoryDiagnosticsHandler.OnMemoryUsageChanged - nameWithType: MixedRealityMemoryDiagnosticsHandler.OnMemoryUsageChanged -- uid: XRTK.SDK.Editor - name: XRTK.SDK.Editor - href: api/XRTK.SDK.Editor.html - commentId: N:XRTK.SDK.Editor - fullName: XRTK.SDK.Editor - nameWithType: XRTK.SDK.Editor -- uid: XRTK.SDK.Editor.Input.Handlers - name: XRTK.SDK.Editor.Input.Handlers - href: api/XRTK.SDK.Editor.Input.Handlers.html - commentId: N:XRTK.SDK.Editor.Input.Handlers - fullName: XRTK.SDK.Editor.Input.Handlers - nameWithType: XRTK.SDK.Editor.Input.Handlers -- uid: XRTK.SDK.Editor.Input.Handlers.BaseInputHandlerInspector - name: BaseInputHandlerInspector - href: api/XRTK.SDK.Editor.Input.Handlers.BaseInputHandlerInspector.html - commentId: T:XRTK.SDK.Editor.Input.Handlers.BaseInputHandlerInspector - fullName: XRTK.SDK.Editor.Input.Handlers.BaseInputHandlerInspector - nameWithType: BaseInputHandlerInspector -- uid: XRTK.SDK.Editor.Input.Handlers.BaseInputHandlerInspector.OnEnable - name: OnEnable() - href: api/XRTK.SDK.Editor.Input.Handlers.BaseInputHandlerInspector.html#XRTK_SDK_Editor_Input_Handlers_BaseInputHandlerInspector_OnEnable - commentId: M:XRTK.SDK.Editor.Input.Handlers.BaseInputHandlerInspector.OnEnable - fullName: XRTK.SDK.Editor.Input.Handlers.BaseInputHandlerInspector.OnEnable() - nameWithType: BaseInputHandlerInspector.OnEnable() -- uid: XRTK.SDK.Editor.Input.Handlers.BaseInputHandlerInspector.OnEnable* - name: OnEnable - href: api/XRTK.SDK.Editor.Input.Handlers.BaseInputHandlerInspector.html#XRTK_SDK_Editor_Input_Handlers_BaseInputHandlerInspector_OnEnable_ - commentId: Overload:XRTK.SDK.Editor.Input.Handlers.BaseInputHandlerInspector.OnEnable - isSpec: "True" - fullName: XRTK.SDK.Editor.Input.Handlers.BaseInputHandlerInspector.OnEnable - nameWithType: BaseInputHandlerInspector.OnEnable -- uid: XRTK.SDK.Editor.Input.Handlers.BaseInputHandlerInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.SDK.Editor.Input.Handlers.BaseInputHandlerInspector.html#XRTK_SDK_Editor_Input_Handlers_BaseInputHandlerInspector_OnInspectorGUI - commentId: M:XRTK.SDK.Editor.Input.Handlers.BaseInputHandlerInspector.OnInspectorGUI - fullName: XRTK.SDK.Editor.Input.Handlers.BaseInputHandlerInspector.OnInspectorGUI() - nameWithType: BaseInputHandlerInspector.OnInspectorGUI() -- uid: XRTK.SDK.Editor.Input.Handlers.BaseInputHandlerInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.SDK.Editor.Input.Handlers.BaseInputHandlerInspector.html#XRTK_SDK_Editor_Input_Handlers_BaseInputHandlerInspector_OnInspectorGUI_ - commentId: Overload:XRTK.SDK.Editor.Input.Handlers.BaseInputHandlerInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.SDK.Editor.Input.Handlers.BaseInputHandlerInspector.OnInspectorGUI - nameWithType: BaseInputHandlerInspector.OnInspectorGUI -- uid: XRTK.SDK.Editor.Input.Handlers.ControllerPoseSynchronizerInspector - name: ControllerPoseSynchronizerInspector - href: api/XRTK.SDK.Editor.Input.Handlers.ControllerPoseSynchronizerInspector.html - commentId: T:XRTK.SDK.Editor.Input.Handlers.ControllerPoseSynchronizerInspector - fullName: XRTK.SDK.Editor.Input.Handlers.ControllerPoseSynchronizerInspector - nameWithType: ControllerPoseSynchronizerInspector -- uid: XRTK.SDK.Editor.Input.Handlers.ControllerPoseSynchronizerInspector.DrawHandednessProperty - name: DrawHandednessProperty - href: api/XRTK.SDK.Editor.Input.Handlers.ControllerPoseSynchronizerInspector.html#XRTK_SDK_Editor_Input_Handlers_ControllerPoseSynchronizerInspector_DrawHandednessProperty - commentId: F:XRTK.SDK.Editor.Input.Handlers.ControllerPoseSynchronizerInspector.DrawHandednessProperty - fullName: XRTK.SDK.Editor.Input.Handlers.ControllerPoseSynchronizerInspector.DrawHandednessProperty - nameWithType: ControllerPoseSynchronizerInspector.DrawHandednessProperty -- uid: XRTK.SDK.Editor.Input.Handlers.ControllerPoseSynchronizerInspector.OnEnable - name: OnEnable() - href: api/XRTK.SDK.Editor.Input.Handlers.ControllerPoseSynchronizerInspector.html#XRTK_SDK_Editor_Input_Handlers_ControllerPoseSynchronizerInspector_OnEnable - commentId: M:XRTK.SDK.Editor.Input.Handlers.ControllerPoseSynchronizerInspector.OnEnable - fullName: XRTK.SDK.Editor.Input.Handlers.ControllerPoseSynchronizerInspector.OnEnable() - nameWithType: ControllerPoseSynchronizerInspector.OnEnable() -- uid: XRTK.SDK.Editor.Input.Handlers.ControllerPoseSynchronizerInspector.OnEnable* - name: OnEnable - href: api/XRTK.SDK.Editor.Input.Handlers.ControllerPoseSynchronizerInspector.html#XRTK_SDK_Editor_Input_Handlers_ControllerPoseSynchronizerInspector_OnEnable_ - commentId: Overload:XRTK.SDK.Editor.Input.Handlers.ControllerPoseSynchronizerInspector.OnEnable - isSpec: "True" - fullName: XRTK.SDK.Editor.Input.Handlers.ControllerPoseSynchronizerInspector.OnEnable - nameWithType: ControllerPoseSynchronizerInspector.OnEnable -- uid: XRTK.SDK.Editor.Input.Handlers.ControllerPoseSynchronizerInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.SDK.Editor.Input.Handlers.ControllerPoseSynchronizerInspector.html#XRTK_SDK_Editor_Input_Handlers_ControllerPoseSynchronizerInspector_OnInspectorGUI - commentId: M:XRTK.SDK.Editor.Input.Handlers.ControllerPoseSynchronizerInspector.OnInspectorGUI - fullName: XRTK.SDK.Editor.Input.Handlers.ControllerPoseSynchronizerInspector.OnInspectorGUI() - nameWithType: ControllerPoseSynchronizerInspector.OnInspectorGUI() -- uid: XRTK.SDK.Editor.Input.Handlers.ControllerPoseSynchronizerInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.SDK.Editor.Input.Handlers.ControllerPoseSynchronizerInspector.html#XRTK_SDK_Editor_Input_Handlers_ControllerPoseSynchronizerInspector_OnInspectorGUI_ - commentId: Overload:XRTK.SDK.Editor.Input.Handlers.ControllerPoseSynchronizerInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.SDK.Editor.Input.Handlers.ControllerPoseSynchronizerInspector.OnInspectorGUI - nameWithType: ControllerPoseSynchronizerInspector.OnInspectorGUI -- uid: XRTK.SDK.Editor.Input.Handlers.DefaultMixedRealityControllerVisualizerInspector - name: DefaultMixedRealityControllerVisualizerInspector - href: api/XRTK.SDK.Editor.Input.Handlers.DefaultMixedRealityControllerVisualizerInspector.html - commentId: T:XRTK.SDK.Editor.Input.Handlers.DefaultMixedRealityControllerVisualizerInspector - fullName: XRTK.SDK.Editor.Input.Handlers.DefaultMixedRealityControllerVisualizerInspector - nameWithType: DefaultMixedRealityControllerVisualizerInspector -- uid: XRTK.SDK.Editor.Input.Handlers.PointerClickHandlerInspector - name: PointerClickHandlerInspector - href: api/XRTK.SDK.Editor.Input.Handlers.PointerClickHandlerInspector.html - commentId: T:XRTK.SDK.Editor.Input.Handlers.PointerClickHandlerInspector - fullName: XRTK.SDK.Editor.Input.Handlers.PointerClickHandlerInspector - nameWithType: PointerClickHandlerInspector -- uid: XRTK.SDK.Editor.Input.Handlers.PointerClickHandlerInspector.OnEnable - name: OnEnable() - href: api/XRTK.SDK.Editor.Input.Handlers.PointerClickHandlerInspector.html#XRTK_SDK_Editor_Input_Handlers_PointerClickHandlerInspector_OnEnable - commentId: M:XRTK.SDK.Editor.Input.Handlers.PointerClickHandlerInspector.OnEnable - fullName: XRTK.SDK.Editor.Input.Handlers.PointerClickHandlerInspector.OnEnable() - nameWithType: PointerClickHandlerInspector.OnEnable() -- uid: XRTK.SDK.Editor.Input.Handlers.PointerClickHandlerInspector.OnEnable* - name: OnEnable - href: api/XRTK.SDK.Editor.Input.Handlers.PointerClickHandlerInspector.html#XRTK_SDK_Editor_Input_Handlers_PointerClickHandlerInspector_OnEnable_ - commentId: Overload:XRTK.SDK.Editor.Input.Handlers.PointerClickHandlerInspector.OnEnable - isSpec: "True" - fullName: XRTK.SDK.Editor.Input.Handlers.PointerClickHandlerInspector.OnEnable - nameWithType: PointerClickHandlerInspector.OnEnable -- uid: XRTK.SDK.Editor.Input.Handlers.PointerClickHandlerInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.SDK.Editor.Input.Handlers.PointerClickHandlerInspector.html#XRTK_SDK_Editor_Input_Handlers_PointerClickHandlerInspector_OnInspectorGUI - commentId: M:XRTK.SDK.Editor.Input.Handlers.PointerClickHandlerInspector.OnInspectorGUI - fullName: XRTK.SDK.Editor.Input.Handlers.PointerClickHandlerInspector.OnInspectorGUI() - nameWithType: PointerClickHandlerInspector.OnInspectorGUI() -- uid: XRTK.SDK.Editor.Input.Handlers.PointerClickHandlerInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.SDK.Editor.Input.Handlers.PointerClickHandlerInspector.html#XRTK_SDK_Editor_Input_Handlers_PointerClickHandlerInspector_OnInspectorGUI_ - commentId: Overload:XRTK.SDK.Editor.Input.Handlers.PointerClickHandlerInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.SDK.Editor.Input.Handlers.PointerClickHandlerInspector.OnInspectorGUI - nameWithType: PointerClickHandlerInspector.OnInspectorGUI -- uid: XRTK.SDK.Editor.Input.Handlers.SpeechInputHandlerInspector - name: SpeechInputHandlerInspector - href: api/XRTK.SDK.Editor.Input.Handlers.SpeechInputHandlerInspector.html - commentId: T:XRTK.SDK.Editor.Input.Handlers.SpeechInputHandlerInspector - fullName: XRTK.SDK.Editor.Input.Handlers.SpeechInputHandlerInspector - nameWithType: SpeechInputHandlerInspector -- uid: XRTK.SDK.Editor.Input.Handlers.SpeechInputHandlerInspector.OnEnable - name: OnEnable() - href: api/XRTK.SDK.Editor.Input.Handlers.SpeechInputHandlerInspector.html#XRTK_SDK_Editor_Input_Handlers_SpeechInputHandlerInspector_OnEnable - commentId: M:XRTK.SDK.Editor.Input.Handlers.SpeechInputHandlerInspector.OnEnable - fullName: XRTK.SDK.Editor.Input.Handlers.SpeechInputHandlerInspector.OnEnable() - nameWithType: SpeechInputHandlerInspector.OnEnable() -- uid: XRTK.SDK.Editor.Input.Handlers.SpeechInputHandlerInspector.OnEnable* - name: OnEnable - href: api/XRTK.SDK.Editor.Input.Handlers.SpeechInputHandlerInspector.html#XRTK_SDK_Editor_Input_Handlers_SpeechInputHandlerInspector_OnEnable_ - commentId: Overload:XRTK.SDK.Editor.Input.Handlers.SpeechInputHandlerInspector.OnEnable - isSpec: "True" - fullName: XRTK.SDK.Editor.Input.Handlers.SpeechInputHandlerInspector.OnEnable - nameWithType: SpeechInputHandlerInspector.OnEnable -- uid: XRTK.SDK.Editor.Input.Handlers.SpeechInputHandlerInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.SDK.Editor.Input.Handlers.SpeechInputHandlerInspector.html#XRTK_SDK_Editor_Input_Handlers_SpeechInputHandlerInspector_OnInspectorGUI - commentId: M:XRTK.SDK.Editor.Input.Handlers.SpeechInputHandlerInspector.OnInspectorGUI - fullName: XRTK.SDK.Editor.Input.Handlers.SpeechInputHandlerInspector.OnInspectorGUI() - nameWithType: SpeechInputHandlerInspector.OnInspectorGUI() -- uid: XRTK.SDK.Editor.Input.Handlers.SpeechInputHandlerInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.SDK.Editor.Input.Handlers.SpeechInputHandlerInspector.html#XRTK_SDK_Editor_Input_Handlers_SpeechInputHandlerInspector_OnInspectorGUI_ - commentId: Overload:XRTK.SDK.Editor.Input.Handlers.SpeechInputHandlerInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.SDK.Editor.Input.Handlers.SpeechInputHandlerInspector.OnInspectorGUI - nameWithType: SpeechInputHandlerInspector.OnInspectorGUI -- uid: XRTK.SDK.Editor.Input.Handlers.WindowsMixedRealityControllerVisualizerInspector - name: WindowsMixedRealityControllerVisualizerInspector - href: api/XRTK.SDK.Editor.Input.Handlers.WindowsMixedRealityControllerVisualizerInspector.html - commentId: T:XRTK.SDK.Editor.Input.Handlers.WindowsMixedRealityControllerVisualizerInspector - fullName: XRTK.SDK.Editor.Input.Handlers.WindowsMixedRealityControllerVisualizerInspector - nameWithType: WindowsMixedRealityControllerVisualizerInspector -- uid: XRTK.SDK.Editor.Input.Handlers.WindowsMixedRealityControllerVisualizerInspector.OnEnable - name: OnEnable() - href: api/XRTK.SDK.Editor.Input.Handlers.WindowsMixedRealityControllerVisualizerInspector.html#XRTK_SDK_Editor_Input_Handlers_WindowsMixedRealityControllerVisualizerInspector_OnEnable - commentId: M:XRTK.SDK.Editor.Input.Handlers.WindowsMixedRealityControllerVisualizerInspector.OnEnable - fullName: XRTK.SDK.Editor.Input.Handlers.WindowsMixedRealityControllerVisualizerInspector.OnEnable() - nameWithType: WindowsMixedRealityControllerVisualizerInspector.OnEnable() -- uid: XRTK.SDK.Editor.Input.Handlers.WindowsMixedRealityControllerVisualizerInspector.OnEnable* - name: OnEnable - href: api/XRTK.SDK.Editor.Input.Handlers.WindowsMixedRealityControllerVisualizerInspector.html#XRTK_SDK_Editor_Input_Handlers_WindowsMixedRealityControllerVisualizerInspector_OnEnable_ - commentId: Overload:XRTK.SDK.Editor.Input.Handlers.WindowsMixedRealityControllerVisualizerInspector.OnEnable - isSpec: "True" - fullName: XRTK.SDK.Editor.Input.Handlers.WindowsMixedRealityControllerVisualizerInspector.OnEnable - nameWithType: WindowsMixedRealityControllerVisualizerInspector.OnEnable -- uid: XRTK.SDK.Editor.Input.Handlers.WindowsMixedRealityControllerVisualizerInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.SDK.Editor.Input.Handlers.WindowsMixedRealityControllerVisualizerInspector.html#XRTK_SDK_Editor_Input_Handlers_WindowsMixedRealityControllerVisualizerInspector_OnInspectorGUI - commentId: M:XRTK.SDK.Editor.Input.Handlers.WindowsMixedRealityControllerVisualizerInspector.OnInspectorGUI - fullName: XRTK.SDK.Editor.Input.Handlers.WindowsMixedRealityControllerVisualizerInspector.OnInspectorGUI() - nameWithType: WindowsMixedRealityControllerVisualizerInspector.OnInspectorGUI() -- uid: XRTK.SDK.Editor.Input.Handlers.WindowsMixedRealityControllerVisualizerInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.SDK.Editor.Input.Handlers.WindowsMixedRealityControllerVisualizerInspector.html#XRTK_SDK_Editor_Input_Handlers_WindowsMixedRealityControllerVisualizerInspector_OnInspectorGUI_ - commentId: Overload:XRTK.SDK.Editor.Input.Handlers.WindowsMixedRealityControllerVisualizerInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.SDK.Editor.Input.Handlers.WindowsMixedRealityControllerVisualizerInspector.OnInspectorGUI - nameWithType: WindowsMixedRealityControllerVisualizerInspector.OnInspectorGUI -- uid: XRTK.SDK.Editor.SdkPathFinder - name: SdkPathFinder - href: api/XRTK.SDK.Editor.SdkPathFinder.html - commentId: T:XRTK.SDK.Editor.SdkPathFinder - fullName: XRTK.SDK.Editor.SdkPathFinder - nameWithType: SdkPathFinder -- uid: XRTK.SDK.Editor.SdkPathFinder.Location - name: Location - href: api/XRTK.SDK.Editor.SdkPathFinder.html#XRTK_SDK_Editor_SdkPathFinder_Location - commentId: P:XRTK.SDK.Editor.SdkPathFinder.Location - fullName: XRTK.SDK.Editor.SdkPathFinder.Location - nameWithType: SdkPathFinder.Location -- uid: XRTK.SDK.Editor.SdkPathFinder.Location* - name: Location - href: api/XRTK.SDK.Editor.SdkPathFinder.html#XRTK_SDK_Editor_SdkPathFinder_Location_ - commentId: Overload:XRTK.SDK.Editor.SdkPathFinder.Location - isSpec: "True" - fullName: XRTK.SDK.Editor.SdkPathFinder.Location - nameWithType: SdkPathFinder.Location -- uid: XRTK.SDK.Editor.Utilities.Solvers - name: XRTK.SDK.Editor.Utilities.Solvers - href: api/XRTK.SDK.Editor.Utilities.Solvers.html - commentId: N:XRTK.SDK.Editor.Utilities.Solvers - fullName: XRTK.SDK.Editor.Utilities.Solvers - nameWithType: XRTK.SDK.Editor.Utilities.Solvers -- uid: XRTK.SDK.Editor.Utilities.Solvers.ControllerFinderInspector - name: ControllerFinderInspector - href: api/XRTK.SDK.Editor.Utilities.Solvers.ControllerFinderInspector.html - commentId: T:XRTK.SDK.Editor.Utilities.Solvers.ControllerFinderInspector - fullName: XRTK.SDK.Editor.Utilities.Solvers.ControllerFinderInspector - nameWithType: ControllerFinderInspector -- uid: XRTK.SDK.Editor.Utilities.Solvers.ControllerFinderInspector.OnEnable - name: OnEnable() - href: api/XRTK.SDK.Editor.Utilities.Solvers.ControllerFinderInspector.html#XRTK_SDK_Editor_Utilities_Solvers_ControllerFinderInspector_OnEnable - commentId: M:XRTK.SDK.Editor.Utilities.Solvers.ControllerFinderInspector.OnEnable - fullName: XRTK.SDK.Editor.Utilities.Solvers.ControllerFinderInspector.OnEnable() - nameWithType: ControllerFinderInspector.OnEnable() -- uid: XRTK.SDK.Editor.Utilities.Solvers.ControllerFinderInspector.OnEnable* - name: OnEnable - href: api/XRTK.SDK.Editor.Utilities.Solvers.ControllerFinderInspector.html#XRTK_SDK_Editor_Utilities_Solvers_ControllerFinderInspector_OnEnable_ - commentId: Overload:XRTK.SDK.Editor.Utilities.Solvers.ControllerFinderInspector.OnEnable - isSpec: "True" - fullName: XRTK.SDK.Editor.Utilities.Solvers.ControllerFinderInspector.OnEnable - nameWithType: ControllerFinderInspector.OnEnable -- uid: XRTK.SDK.Editor.Utilities.Solvers.ControllerFinderInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.SDK.Editor.Utilities.Solvers.ControllerFinderInspector.html#XRTK_SDK_Editor_Utilities_Solvers_ControllerFinderInspector_OnInspectorGUI - commentId: M:XRTK.SDK.Editor.Utilities.Solvers.ControllerFinderInspector.OnInspectorGUI - fullName: XRTK.SDK.Editor.Utilities.Solvers.ControllerFinderInspector.OnInspectorGUI() - nameWithType: ControllerFinderInspector.OnInspectorGUI() -- uid: XRTK.SDK.Editor.Utilities.Solvers.ControllerFinderInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.SDK.Editor.Utilities.Solvers.ControllerFinderInspector.html#XRTK_SDK_Editor_Utilities_Solvers_ControllerFinderInspector_OnInspectorGUI_ - commentId: Overload:XRTK.SDK.Editor.Utilities.Solvers.ControllerFinderInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.SDK.Editor.Utilities.Solvers.ControllerFinderInspector.OnInspectorGUI - nameWithType: ControllerFinderInspector.OnInspectorGUI -- uid: XRTK.SDK.Editor.Utilities.Solvers.InBetweenEditor - name: InBetweenEditor - href: api/XRTK.SDK.Editor.Utilities.Solvers.InBetweenEditor.html - commentId: T:XRTK.SDK.Editor.Utilities.Solvers.InBetweenEditor - fullName: XRTK.SDK.Editor.Utilities.Solvers.InBetweenEditor - nameWithType: InBetweenEditor -- uid: XRTK.SDK.Editor.Utilities.Solvers.InBetweenEditor.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.SDK.Editor.Utilities.Solvers.InBetweenEditor.html#XRTK_SDK_Editor_Utilities_Solvers_InBetweenEditor_OnInspectorGUI - commentId: M:XRTK.SDK.Editor.Utilities.Solvers.InBetweenEditor.OnInspectorGUI - fullName: XRTK.SDK.Editor.Utilities.Solvers.InBetweenEditor.OnInspectorGUI() - nameWithType: InBetweenEditor.OnInspectorGUI() -- uid: XRTK.SDK.Editor.Utilities.Solvers.InBetweenEditor.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.SDK.Editor.Utilities.Solvers.InBetweenEditor.html#XRTK_SDK_Editor_Utilities_Solvers_InBetweenEditor_OnInspectorGUI_ - commentId: Overload:XRTK.SDK.Editor.Utilities.Solvers.InBetweenEditor.OnInspectorGUI - isSpec: "True" - fullName: XRTK.SDK.Editor.Utilities.Solvers.InBetweenEditor.OnInspectorGUI - nameWithType: InBetweenEditor.OnInspectorGUI -- uid: XRTK.SDK.Editor.Utilities.Solvers.SolverHandlerInspector - name: SolverHandlerInspector - href: api/XRTK.SDK.Editor.Utilities.Solvers.SolverHandlerInspector.html - commentId: T:XRTK.SDK.Editor.Utilities.Solvers.SolverHandlerInspector - fullName: XRTK.SDK.Editor.Utilities.Solvers.SolverHandlerInspector - nameWithType: SolverHandlerInspector -- uid: XRTK.SDK.Editor.Utilities.Solvers.SolverHandlerInspector.OnEnable - name: OnEnable() - href: api/XRTK.SDK.Editor.Utilities.Solvers.SolverHandlerInspector.html#XRTK_SDK_Editor_Utilities_Solvers_SolverHandlerInspector_OnEnable - commentId: M:XRTK.SDK.Editor.Utilities.Solvers.SolverHandlerInspector.OnEnable - fullName: XRTK.SDK.Editor.Utilities.Solvers.SolverHandlerInspector.OnEnable() - nameWithType: SolverHandlerInspector.OnEnable() -- uid: XRTK.SDK.Editor.Utilities.Solvers.SolverHandlerInspector.OnEnable* - name: OnEnable - href: api/XRTK.SDK.Editor.Utilities.Solvers.SolverHandlerInspector.html#XRTK_SDK_Editor_Utilities_Solvers_SolverHandlerInspector_OnEnable_ - commentId: Overload:XRTK.SDK.Editor.Utilities.Solvers.SolverHandlerInspector.OnEnable - isSpec: "True" - fullName: XRTK.SDK.Editor.Utilities.Solvers.SolverHandlerInspector.OnEnable - nameWithType: SolverHandlerInspector.OnEnable -- uid: XRTK.SDK.Editor.Utilities.Solvers.SolverHandlerInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.SDK.Editor.Utilities.Solvers.SolverHandlerInspector.html#XRTK_SDK_Editor_Utilities_Solvers_SolverHandlerInspector_OnInspectorGUI - commentId: M:XRTK.SDK.Editor.Utilities.Solvers.SolverHandlerInspector.OnInspectorGUI - fullName: XRTK.SDK.Editor.Utilities.Solvers.SolverHandlerInspector.OnInspectorGUI() - nameWithType: SolverHandlerInspector.OnInspectorGUI() -- uid: XRTK.SDK.Editor.Utilities.Solvers.SolverHandlerInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.SDK.Editor.Utilities.Solvers.SolverHandlerInspector.html#XRTK_SDK_Editor_Utilities_Solvers_SolverHandlerInspector_OnInspectorGUI_ - commentId: Overload:XRTK.SDK.Editor.Utilities.Solvers.SolverHandlerInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.SDK.Editor.Utilities.Solvers.SolverHandlerInspector.OnInspectorGUI - nameWithType: SolverHandlerInspector.OnInspectorGUI -- uid: XRTK.SDK.Editor.UX.Collections - name: XRTK.SDK.Editor.UX.Collections - href: api/XRTK.SDK.Editor.UX.Collections.html - commentId: N:XRTK.SDK.Editor.UX.Collections - fullName: XRTK.SDK.Editor.UX.Collections - nameWithType: XRTK.SDK.Editor.UX.Collections -- uid: XRTK.SDK.Editor.UX.Collections.BaseCollectionInspector - name: BaseCollectionInspector - href: api/XRTK.SDK.Editor.UX.Collections.BaseCollectionInspector.html - commentId: T:XRTK.SDK.Editor.UX.Collections.BaseCollectionInspector - fullName: XRTK.SDK.Editor.UX.Collections.BaseCollectionInspector - nameWithType: BaseCollectionInspector -- uid: XRTK.SDK.Editor.UX.Pointers - name: XRTK.SDK.Editor.UX.Pointers - href: api/XRTK.SDK.Editor.UX.Pointers.html - commentId: N:XRTK.SDK.Editor.UX.Pointers - fullName: XRTK.SDK.Editor.UX.Pointers - nameWithType: XRTK.SDK.Editor.UX.Pointers -- uid: XRTK.SDK.Editor.UX.Pointers.BaseControllerPointerInspector - name: BaseControllerPointerInspector - href: api/XRTK.SDK.Editor.UX.Pointers.BaseControllerPointerInspector.html - commentId: T:XRTK.SDK.Editor.UX.Pointers.BaseControllerPointerInspector - fullName: XRTK.SDK.Editor.UX.Pointers.BaseControllerPointerInspector - nameWithType: BaseControllerPointerInspector -- uid: XRTK.SDK.Editor.UX.Pointers.BaseControllerPointerInspector.DrawBasePointerActions - name: DrawBasePointerActions - href: api/XRTK.SDK.Editor.UX.Pointers.BaseControllerPointerInspector.html#XRTK_SDK_Editor_UX_Pointers_BaseControllerPointerInspector_DrawBasePointerActions - commentId: F:XRTK.SDK.Editor.UX.Pointers.BaseControllerPointerInspector.DrawBasePointerActions - fullName: XRTK.SDK.Editor.UX.Pointers.BaseControllerPointerInspector.DrawBasePointerActions - nameWithType: BaseControllerPointerInspector.DrawBasePointerActions -- uid: XRTK.SDK.Editor.UX.Pointers.BaseControllerPointerInspector.OnEnable - name: OnEnable() - href: api/XRTK.SDK.Editor.UX.Pointers.BaseControllerPointerInspector.html#XRTK_SDK_Editor_UX_Pointers_BaseControllerPointerInspector_OnEnable - commentId: M:XRTK.SDK.Editor.UX.Pointers.BaseControllerPointerInspector.OnEnable - fullName: XRTK.SDK.Editor.UX.Pointers.BaseControllerPointerInspector.OnEnable() - nameWithType: BaseControllerPointerInspector.OnEnable() -- uid: XRTK.SDK.Editor.UX.Pointers.BaseControllerPointerInspector.OnEnable* - name: OnEnable - href: api/XRTK.SDK.Editor.UX.Pointers.BaseControllerPointerInspector.html#XRTK_SDK_Editor_UX_Pointers_BaseControllerPointerInspector_OnEnable_ - commentId: Overload:XRTK.SDK.Editor.UX.Pointers.BaseControllerPointerInspector.OnEnable - isSpec: "True" - fullName: XRTK.SDK.Editor.UX.Pointers.BaseControllerPointerInspector.OnEnable - nameWithType: BaseControllerPointerInspector.OnEnable -- uid: XRTK.SDK.Editor.UX.Pointers.BaseControllerPointerInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.SDK.Editor.UX.Pointers.BaseControllerPointerInspector.html#XRTK_SDK_Editor_UX_Pointers_BaseControllerPointerInspector_OnInspectorGUI - commentId: M:XRTK.SDK.Editor.UX.Pointers.BaseControllerPointerInspector.OnInspectorGUI - fullName: XRTK.SDK.Editor.UX.Pointers.BaseControllerPointerInspector.OnInspectorGUI() - nameWithType: BaseControllerPointerInspector.OnInspectorGUI() -- uid: XRTK.SDK.Editor.UX.Pointers.BaseControllerPointerInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.SDK.Editor.UX.Pointers.BaseControllerPointerInspector.html#XRTK_SDK_Editor_UX_Pointers_BaseControllerPointerInspector_OnInspectorGUI_ - commentId: Overload:XRTK.SDK.Editor.UX.Pointers.BaseControllerPointerInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.SDK.Editor.UX.Pointers.BaseControllerPointerInspector.OnInspectorGUI - nameWithType: BaseControllerPointerInspector.OnInspectorGUI -- uid: XRTK.SDK.Editor.UX.Pointers.HandSpatialPointerInspector - name: HandSpatialPointerInspector - href: api/XRTK.SDK.Editor.UX.Pointers.HandSpatialPointerInspector.html - commentId: T:XRTK.SDK.Editor.UX.Pointers.HandSpatialPointerInspector - fullName: XRTK.SDK.Editor.UX.Pointers.HandSpatialPointerInspector - nameWithType: HandSpatialPointerInspector -- uid: XRTK.SDK.Editor.UX.Pointers.HandSpatialPointerInspector.OnEnable - name: OnEnable() - href: api/XRTK.SDK.Editor.UX.Pointers.HandSpatialPointerInspector.html#XRTK_SDK_Editor_UX_Pointers_HandSpatialPointerInspector_OnEnable - commentId: M:XRTK.SDK.Editor.UX.Pointers.HandSpatialPointerInspector.OnEnable - fullName: XRTK.SDK.Editor.UX.Pointers.HandSpatialPointerInspector.OnEnable() - nameWithType: HandSpatialPointerInspector.OnEnable() -- uid: XRTK.SDK.Editor.UX.Pointers.HandSpatialPointerInspector.OnEnable* - name: OnEnable - href: api/XRTK.SDK.Editor.UX.Pointers.HandSpatialPointerInspector.html#XRTK_SDK_Editor_UX_Pointers_HandSpatialPointerInspector_OnEnable_ - commentId: Overload:XRTK.SDK.Editor.UX.Pointers.HandSpatialPointerInspector.OnEnable - isSpec: "True" - fullName: XRTK.SDK.Editor.UX.Pointers.HandSpatialPointerInspector.OnEnable - nameWithType: HandSpatialPointerInspector.OnEnable -- uid: XRTK.SDK.Editor.UX.Pointers.HandSpatialPointerInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.SDK.Editor.UX.Pointers.HandSpatialPointerInspector.html#XRTK_SDK_Editor_UX_Pointers_HandSpatialPointerInspector_OnInspectorGUI - commentId: M:XRTK.SDK.Editor.UX.Pointers.HandSpatialPointerInspector.OnInspectorGUI - fullName: XRTK.SDK.Editor.UX.Pointers.HandSpatialPointerInspector.OnInspectorGUI() - nameWithType: HandSpatialPointerInspector.OnInspectorGUI() -- uid: XRTK.SDK.Editor.UX.Pointers.HandSpatialPointerInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.SDK.Editor.UX.Pointers.HandSpatialPointerInspector.html#XRTK_SDK_Editor_UX_Pointers_HandSpatialPointerInspector_OnInspectorGUI_ - commentId: Overload:XRTK.SDK.Editor.UX.Pointers.HandSpatialPointerInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.SDK.Editor.UX.Pointers.HandSpatialPointerInspector.OnInspectorGUI - nameWithType: HandSpatialPointerInspector.OnInspectorGUI -- uid: XRTK.SDK.Editor.UX.Pointers.LinePointerInspector - name: LinePointerInspector - href: api/XRTK.SDK.Editor.UX.Pointers.LinePointerInspector.html - commentId: T:XRTK.SDK.Editor.UX.Pointers.LinePointerInspector - fullName: XRTK.SDK.Editor.UX.Pointers.LinePointerInspector - nameWithType: LinePointerInspector -- uid: XRTK.SDK.Editor.UX.Pointers.LinePointerInspector.OnEnable - name: OnEnable() - href: api/XRTK.SDK.Editor.UX.Pointers.LinePointerInspector.html#XRTK_SDK_Editor_UX_Pointers_LinePointerInspector_OnEnable - commentId: M:XRTK.SDK.Editor.UX.Pointers.LinePointerInspector.OnEnable - fullName: XRTK.SDK.Editor.UX.Pointers.LinePointerInspector.OnEnable() - nameWithType: LinePointerInspector.OnEnable() -- uid: XRTK.SDK.Editor.UX.Pointers.LinePointerInspector.OnEnable* - name: OnEnable - href: api/XRTK.SDK.Editor.UX.Pointers.LinePointerInspector.html#XRTK_SDK_Editor_UX_Pointers_LinePointerInspector_OnEnable_ - commentId: Overload:XRTK.SDK.Editor.UX.Pointers.LinePointerInspector.OnEnable - isSpec: "True" - fullName: XRTK.SDK.Editor.UX.Pointers.LinePointerInspector.OnEnable - nameWithType: LinePointerInspector.OnEnable -- uid: XRTK.SDK.Editor.UX.Pointers.LinePointerInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.SDK.Editor.UX.Pointers.LinePointerInspector.html#XRTK_SDK_Editor_UX_Pointers_LinePointerInspector_OnInspectorGUI - commentId: M:XRTK.SDK.Editor.UX.Pointers.LinePointerInspector.OnInspectorGUI - fullName: XRTK.SDK.Editor.UX.Pointers.LinePointerInspector.OnInspectorGUI() - nameWithType: LinePointerInspector.OnInspectorGUI() -- uid: XRTK.SDK.Editor.UX.Pointers.LinePointerInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.SDK.Editor.UX.Pointers.LinePointerInspector.html#XRTK_SDK_Editor_UX_Pointers_LinePointerInspector_OnInspectorGUI_ - commentId: Overload:XRTK.SDK.Editor.UX.Pointers.LinePointerInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.SDK.Editor.UX.Pointers.LinePointerInspector.OnInspectorGUI - nameWithType: LinePointerInspector.OnInspectorGUI -- uid: XRTK.SDK.Editor.UX.Pointers.MousePointerInspector - name: MousePointerInspector - href: api/XRTK.SDK.Editor.UX.Pointers.MousePointerInspector.html - commentId: T:XRTK.SDK.Editor.UX.Pointers.MousePointerInspector - fullName: XRTK.SDK.Editor.UX.Pointers.MousePointerInspector - nameWithType: MousePointerInspector -- uid: XRTK.SDK.Editor.UX.Pointers.MousePointerInspector.OnEnable - name: OnEnable() - href: api/XRTK.SDK.Editor.UX.Pointers.MousePointerInspector.html#XRTK_SDK_Editor_UX_Pointers_MousePointerInspector_OnEnable - commentId: M:XRTK.SDK.Editor.UX.Pointers.MousePointerInspector.OnEnable - fullName: XRTK.SDK.Editor.UX.Pointers.MousePointerInspector.OnEnable() - nameWithType: MousePointerInspector.OnEnable() -- uid: XRTK.SDK.Editor.UX.Pointers.MousePointerInspector.OnEnable* - name: OnEnable - href: api/XRTK.SDK.Editor.UX.Pointers.MousePointerInspector.html#XRTK_SDK_Editor_UX_Pointers_MousePointerInspector_OnEnable_ - commentId: Overload:XRTK.SDK.Editor.UX.Pointers.MousePointerInspector.OnEnable - isSpec: "True" - fullName: XRTK.SDK.Editor.UX.Pointers.MousePointerInspector.OnEnable - nameWithType: MousePointerInspector.OnEnable -- uid: XRTK.SDK.Editor.UX.Pointers.MousePointerInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.SDK.Editor.UX.Pointers.MousePointerInspector.html#XRTK_SDK_Editor_UX_Pointers_MousePointerInspector_OnInspectorGUI - commentId: M:XRTK.SDK.Editor.UX.Pointers.MousePointerInspector.OnInspectorGUI - fullName: XRTK.SDK.Editor.UX.Pointers.MousePointerInspector.OnInspectorGUI() - nameWithType: MousePointerInspector.OnInspectorGUI() -- uid: XRTK.SDK.Editor.UX.Pointers.MousePointerInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.SDK.Editor.UX.Pointers.MousePointerInspector.html#XRTK_SDK_Editor_UX_Pointers_MousePointerInspector_OnInspectorGUI_ - commentId: Overload:XRTK.SDK.Editor.UX.Pointers.MousePointerInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.SDK.Editor.UX.Pointers.MousePointerInspector.OnInspectorGUI - nameWithType: MousePointerInspector.OnInspectorGUI -- uid: XRTK.SDK.Editor.UX.Pointers.ParabolicTeleportPointerInspector - name: ParabolicTeleportPointerInspector - href: api/XRTK.SDK.Editor.UX.Pointers.ParabolicTeleportPointerInspector.html - commentId: T:XRTK.SDK.Editor.UX.Pointers.ParabolicTeleportPointerInspector - fullName: XRTK.SDK.Editor.UX.Pointers.ParabolicTeleportPointerInspector - nameWithType: ParabolicTeleportPointerInspector -- uid: XRTK.SDK.Editor.UX.Pointers.ParabolicTeleportPointerInspector.OnEnable - name: OnEnable() - href: api/XRTK.SDK.Editor.UX.Pointers.ParabolicTeleportPointerInspector.html#XRTK_SDK_Editor_UX_Pointers_ParabolicTeleportPointerInspector_OnEnable - commentId: M:XRTK.SDK.Editor.UX.Pointers.ParabolicTeleportPointerInspector.OnEnable - fullName: XRTK.SDK.Editor.UX.Pointers.ParabolicTeleportPointerInspector.OnEnable() - nameWithType: ParabolicTeleportPointerInspector.OnEnable() -- uid: XRTK.SDK.Editor.UX.Pointers.ParabolicTeleportPointerInspector.OnEnable* - name: OnEnable - href: api/XRTK.SDK.Editor.UX.Pointers.ParabolicTeleportPointerInspector.html#XRTK_SDK_Editor_UX_Pointers_ParabolicTeleportPointerInspector_OnEnable_ - commentId: Overload:XRTK.SDK.Editor.UX.Pointers.ParabolicTeleportPointerInspector.OnEnable - isSpec: "True" - fullName: XRTK.SDK.Editor.UX.Pointers.ParabolicTeleportPointerInspector.OnEnable - nameWithType: ParabolicTeleportPointerInspector.OnEnable -- uid: XRTK.SDK.Editor.UX.Pointers.ParabolicTeleportPointerInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.SDK.Editor.UX.Pointers.ParabolicTeleportPointerInspector.html#XRTK_SDK_Editor_UX_Pointers_ParabolicTeleportPointerInspector_OnInspectorGUI - commentId: M:XRTK.SDK.Editor.UX.Pointers.ParabolicTeleportPointerInspector.OnInspectorGUI - fullName: XRTK.SDK.Editor.UX.Pointers.ParabolicTeleportPointerInspector.OnInspectorGUI() - nameWithType: ParabolicTeleportPointerInspector.OnInspectorGUI() -- uid: XRTK.SDK.Editor.UX.Pointers.ParabolicTeleportPointerInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.SDK.Editor.UX.Pointers.ParabolicTeleportPointerInspector.html#XRTK_SDK_Editor_UX_Pointers_ParabolicTeleportPointerInspector_OnInspectorGUI_ - commentId: Overload:XRTK.SDK.Editor.UX.Pointers.ParabolicTeleportPointerInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.SDK.Editor.UX.Pointers.ParabolicTeleportPointerInspector.OnInspectorGUI - nameWithType: ParabolicTeleportPointerInspector.OnInspectorGUI -- uid: XRTK.SDK.Editor.UX.Pointers.TeleportPointerInspector - name: TeleportPointerInspector - href: api/XRTK.SDK.Editor.UX.Pointers.TeleportPointerInspector.html - commentId: T:XRTK.SDK.Editor.UX.Pointers.TeleportPointerInspector - fullName: XRTK.SDK.Editor.UX.Pointers.TeleportPointerInspector - nameWithType: TeleportPointerInspector -- uid: XRTK.SDK.Editor.UX.Pointers.TeleportPointerInspector.OnEnable - name: OnEnable() - href: api/XRTK.SDK.Editor.UX.Pointers.TeleportPointerInspector.html#XRTK_SDK_Editor_UX_Pointers_TeleportPointerInspector_OnEnable - commentId: M:XRTK.SDK.Editor.UX.Pointers.TeleportPointerInspector.OnEnable - fullName: XRTK.SDK.Editor.UX.Pointers.TeleportPointerInspector.OnEnable() - nameWithType: TeleportPointerInspector.OnEnable() -- uid: XRTK.SDK.Editor.UX.Pointers.TeleportPointerInspector.OnEnable* - name: OnEnable - href: api/XRTK.SDK.Editor.UX.Pointers.TeleportPointerInspector.html#XRTK_SDK_Editor_UX_Pointers_TeleportPointerInspector_OnEnable_ - commentId: Overload:XRTK.SDK.Editor.UX.Pointers.TeleportPointerInspector.OnEnable - isSpec: "True" - fullName: XRTK.SDK.Editor.UX.Pointers.TeleportPointerInspector.OnEnable - nameWithType: TeleportPointerInspector.OnEnable -- uid: XRTK.SDK.Editor.UX.Pointers.TeleportPointerInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.SDK.Editor.UX.Pointers.TeleportPointerInspector.html#XRTK_SDK_Editor_UX_Pointers_TeleportPointerInspector_OnInspectorGUI - commentId: M:XRTK.SDK.Editor.UX.Pointers.TeleportPointerInspector.OnInspectorGUI - fullName: XRTK.SDK.Editor.UX.Pointers.TeleportPointerInspector.OnInspectorGUI() - nameWithType: TeleportPointerInspector.OnInspectorGUI() -- uid: XRTK.SDK.Editor.UX.Pointers.TeleportPointerInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.SDK.Editor.UX.Pointers.TeleportPointerInspector.html#XRTK_SDK_Editor_UX_Pointers_TeleportPointerInspector_OnInspectorGUI_ - commentId: Overload:XRTK.SDK.Editor.UX.Pointers.TeleportPointerInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.SDK.Editor.UX.Pointers.TeleportPointerInspector.OnInspectorGUI - nameWithType: TeleportPointerInspector.OnInspectorGUI -- uid: XRTK.SDK.Input - name: XRTK.SDK.Input - href: api/XRTK.SDK.Input.html - commentId: N:XRTK.SDK.Input - fullName: XRTK.SDK.Input - nameWithType: XRTK.SDK.Input -- uid: XRTK.SDK.Input.HandDataRecorder - name: HandDataRecorder - href: api/XRTK.SDK.Input.HandDataRecorder.html - commentId: T:XRTK.SDK.Input.HandDataRecorder - fullName: XRTK.SDK.Input.HandDataRecorder - nameWithType: HandDataRecorder -- uid: XRTK.SDK.Input.HandDataRecorder.OnInputChanged(XRTK.EventDatum.Input.InputEventData{XRTK.Definitions.Controllers.Hands.HandData}) - name: OnInputChanged(InputEventData) - href: api/XRTK.SDK.Input.HandDataRecorder.html#XRTK_SDK_Input_HandDataRecorder_OnInputChanged_XRTK_EventDatum_Input_InputEventData_XRTK_Definitions_Controllers_Hands_HandData__ - commentId: M:XRTK.SDK.Input.HandDataRecorder.OnInputChanged(XRTK.EventDatum.Input.InputEventData{XRTK.Definitions.Controllers.Hands.HandData}) - name.vb: OnInputChanged(InputEventData(Of HandData)) - fullName: XRTK.SDK.Input.HandDataRecorder.OnInputChanged(XRTK.EventDatum.Input.InputEventData) - fullName.vb: XRTK.SDK.Input.HandDataRecorder.OnInputChanged(XRTK.EventDatum.Input.InputEventData(Of XRTK.Definitions.Controllers.Hands.HandData)) - nameWithType: HandDataRecorder.OnInputChanged(InputEventData) - nameWithType.vb: HandDataRecorder.OnInputChanged(InputEventData(Of HandData)) -- uid: XRTK.SDK.Input.HandDataRecorder.OnInputChanged* - name: OnInputChanged - href: api/XRTK.SDK.Input.HandDataRecorder.html#XRTK_SDK_Input_HandDataRecorder_OnInputChanged_ - commentId: Overload:XRTK.SDK.Input.HandDataRecorder.OnInputChanged - isSpec: "True" - fullName: XRTK.SDK.Input.HandDataRecorder.OnInputChanged - nameWithType: HandDataRecorder.OnInputChanged -- uid: XRTK.SDK.Input.Handlers - name: XRTK.SDK.Input.Handlers - href: api/XRTK.SDK.Input.Handlers.html - commentId: N:XRTK.SDK.Input.Handlers - fullName: XRTK.SDK.Input.Handlers - nameWithType: XRTK.SDK.Input.Handlers -- uid: XRTK.SDK.Input.Handlers.BaseDictationHandler - name: BaseDictationHandler - href: api/XRTK.SDK.Input.Handlers.BaseDictationHandler.html - commentId: T:XRTK.SDK.Input.Handlers.BaseDictationHandler - fullName: XRTK.SDK.Input.Handlers.BaseDictationHandler - nameWithType: BaseDictationHandler -- uid: XRTK.SDK.Input.Handlers.BaseDictationHandler.OnDictationComplete(XRTK.EventDatum.Input.DictationEventData) - name: OnDictationComplete(DictationEventData) - href: api/XRTK.SDK.Input.Handlers.BaseDictationHandler.html#XRTK_SDK_Input_Handlers_BaseDictationHandler_OnDictationComplete_XRTK_EventDatum_Input_DictationEventData_ - commentId: M:XRTK.SDK.Input.Handlers.BaseDictationHandler.OnDictationComplete(XRTK.EventDatum.Input.DictationEventData) - fullName: XRTK.SDK.Input.Handlers.BaseDictationHandler.OnDictationComplete(XRTK.EventDatum.Input.DictationEventData) - nameWithType: BaseDictationHandler.OnDictationComplete(DictationEventData) -- uid: XRTK.SDK.Input.Handlers.BaseDictationHandler.OnDictationComplete* - name: OnDictationComplete - href: api/XRTK.SDK.Input.Handlers.BaseDictationHandler.html#XRTK_SDK_Input_Handlers_BaseDictationHandler_OnDictationComplete_ - commentId: Overload:XRTK.SDK.Input.Handlers.BaseDictationHandler.OnDictationComplete - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.BaseDictationHandler.OnDictationComplete - nameWithType: BaseDictationHandler.OnDictationComplete -- uid: XRTK.SDK.Input.Handlers.BaseDictationHandler.OnDictationError(XRTK.EventDatum.Input.DictationEventData) - name: OnDictationError(DictationEventData) - href: api/XRTK.SDK.Input.Handlers.BaseDictationHandler.html#XRTK_SDK_Input_Handlers_BaseDictationHandler_OnDictationError_XRTK_EventDatum_Input_DictationEventData_ - commentId: M:XRTK.SDK.Input.Handlers.BaseDictationHandler.OnDictationError(XRTK.EventDatum.Input.DictationEventData) - fullName: XRTK.SDK.Input.Handlers.BaseDictationHandler.OnDictationError(XRTK.EventDatum.Input.DictationEventData) - nameWithType: BaseDictationHandler.OnDictationError(DictationEventData) -- uid: XRTK.SDK.Input.Handlers.BaseDictationHandler.OnDictationError* - name: OnDictationError - href: api/XRTK.SDK.Input.Handlers.BaseDictationHandler.html#XRTK_SDK_Input_Handlers_BaseDictationHandler_OnDictationError_ - commentId: Overload:XRTK.SDK.Input.Handlers.BaseDictationHandler.OnDictationError - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.BaseDictationHandler.OnDictationError - nameWithType: BaseDictationHandler.OnDictationError -- uid: XRTK.SDK.Input.Handlers.BaseDictationHandler.OnDictationHypothesis(XRTK.EventDatum.Input.DictationEventData) - name: OnDictationHypothesis(DictationEventData) - href: api/XRTK.SDK.Input.Handlers.BaseDictationHandler.html#XRTK_SDK_Input_Handlers_BaseDictationHandler_OnDictationHypothesis_XRTK_EventDatum_Input_DictationEventData_ - commentId: M:XRTK.SDK.Input.Handlers.BaseDictationHandler.OnDictationHypothesis(XRTK.EventDatum.Input.DictationEventData) - fullName: XRTK.SDK.Input.Handlers.BaseDictationHandler.OnDictationHypothesis(XRTK.EventDatum.Input.DictationEventData) - nameWithType: BaseDictationHandler.OnDictationHypothesis(DictationEventData) -- uid: XRTK.SDK.Input.Handlers.BaseDictationHandler.OnDictationHypothesis* - name: OnDictationHypothesis - href: api/XRTK.SDK.Input.Handlers.BaseDictationHandler.html#XRTK_SDK_Input_Handlers_BaseDictationHandler_OnDictationHypothesis_ - commentId: Overload:XRTK.SDK.Input.Handlers.BaseDictationHandler.OnDictationHypothesis - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.BaseDictationHandler.OnDictationHypothesis - nameWithType: BaseDictationHandler.OnDictationHypothesis -- uid: XRTK.SDK.Input.Handlers.BaseDictationHandler.OnDictationResult(XRTK.EventDatum.Input.DictationEventData) - name: OnDictationResult(DictationEventData) - href: api/XRTK.SDK.Input.Handlers.BaseDictationHandler.html#XRTK_SDK_Input_Handlers_BaseDictationHandler_OnDictationResult_XRTK_EventDatum_Input_DictationEventData_ - commentId: M:XRTK.SDK.Input.Handlers.BaseDictationHandler.OnDictationResult(XRTK.EventDatum.Input.DictationEventData) - fullName: XRTK.SDK.Input.Handlers.BaseDictationHandler.OnDictationResult(XRTK.EventDatum.Input.DictationEventData) - nameWithType: BaseDictationHandler.OnDictationResult(DictationEventData) -- uid: XRTK.SDK.Input.Handlers.BaseDictationHandler.OnDictationResult* - name: OnDictationResult - href: api/XRTK.SDK.Input.Handlers.BaseDictationHandler.html#XRTK_SDK_Input_Handlers_BaseDictationHandler_OnDictationResult_ - commentId: Overload:XRTK.SDK.Input.Handlers.BaseDictationHandler.OnDictationResult - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.BaseDictationHandler.OnDictationResult - nameWithType: BaseDictationHandler.OnDictationResult -- uid: XRTK.SDK.Input.Handlers.BaseDictationHandler.OnDisable - name: OnDisable() - href: api/XRTK.SDK.Input.Handlers.BaseDictationHandler.html#XRTK_SDK_Input_Handlers_BaseDictationHandler_OnDisable - commentId: M:XRTK.SDK.Input.Handlers.BaseDictationHandler.OnDisable - fullName: XRTK.SDK.Input.Handlers.BaseDictationHandler.OnDisable() - nameWithType: BaseDictationHandler.OnDisable() -- uid: XRTK.SDK.Input.Handlers.BaseDictationHandler.OnDisable* - name: OnDisable - href: api/XRTK.SDK.Input.Handlers.BaseDictationHandler.html#XRTK_SDK_Input_Handlers_BaseDictationHandler_OnDisable_ - commentId: Overload:XRTK.SDK.Input.Handlers.BaseDictationHandler.OnDisable - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.BaseDictationHandler.OnDisable - nameWithType: BaseDictationHandler.OnDisable -- uid: XRTK.SDK.Input.Handlers.BaseDictationHandler.Start - name: Start() - href: api/XRTK.SDK.Input.Handlers.BaseDictationHandler.html#XRTK_SDK_Input_Handlers_BaseDictationHandler_Start - commentId: M:XRTK.SDK.Input.Handlers.BaseDictationHandler.Start - fullName: XRTK.SDK.Input.Handlers.BaseDictationHandler.Start() - nameWithType: BaseDictationHandler.Start() -- uid: XRTK.SDK.Input.Handlers.BaseDictationHandler.Start* - name: Start - href: api/XRTK.SDK.Input.Handlers.BaseDictationHandler.html#XRTK_SDK_Input_Handlers_BaseDictationHandler_Start_ - commentId: Overload:XRTK.SDK.Input.Handlers.BaseDictationHandler.Start - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.BaseDictationHandler.Start - nameWithType: BaseDictationHandler.Start -- uid: XRTK.SDK.Input.Handlers.BaseDictationHandler.StartRecording - name: StartRecording() - href: api/XRTK.SDK.Input.Handlers.BaseDictationHandler.html#XRTK_SDK_Input_Handlers_BaseDictationHandler_StartRecording - commentId: M:XRTK.SDK.Input.Handlers.BaseDictationHandler.StartRecording - fullName: XRTK.SDK.Input.Handlers.BaseDictationHandler.StartRecording() - nameWithType: BaseDictationHandler.StartRecording() -- uid: XRTK.SDK.Input.Handlers.BaseDictationHandler.StartRecording* - name: StartRecording - href: api/XRTK.SDK.Input.Handlers.BaseDictationHandler.html#XRTK_SDK_Input_Handlers_BaseDictationHandler_StartRecording_ - commentId: Overload:XRTK.SDK.Input.Handlers.BaseDictationHandler.StartRecording - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.BaseDictationHandler.StartRecording - nameWithType: BaseDictationHandler.StartRecording -- uid: XRTK.SDK.Input.Handlers.BaseDictationHandler.StopRecording - name: StopRecording() - href: api/XRTK.SDK.Input.Handlers.BaseDictationHandler.html#XRTK_SDK_Input_Handlers_BaseDictationHandler_StopRecording - commentId: M:XRTK.SDK.Input.Handlers.BaseDictationHandler.StopRecording - fullName: XRTK.SDK.Input.Handlers.BaseDictationHandler.StopRecording() - nameWithType: BaseDictationHandler.StopRecording() -- uid: XRTK.SDK.Input.Handlers.BaseDictationHandler.StopRecording* - name: StopRecording - href: api/XRTK.SDK.Input.Handlers.BaseDictationHandler.html#XRTK_SDK_Input_Handlers_BaseDictationHandler_StopRecording_ - commentId: Overload:XRTK.SDK.Input.Handlers.BaseDictationHandler.StopRecording - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.BaseDictationHandler.StopRecording - nameWithType: BaseDictationHandler.StopRecording -- uid: XRTK.SDK.Input.Handlers.BaseFocusHandler - name: BaseFocusHandler - href: api/XRTK.SDK.Input.Handlers.BaseFocusHandler.html - commentId: T:XRTK.SDK.Input.Handlers.BaseFocusHandler - fullName: XRTK.SDK.Input.Handlers.BaseFocusHandler - nameWithType: BaseFocusHandler -- uid: XRTK.SDK.Input.Handlers.BaseFocusHandler.ActivePointers - name: ActivePointers - href: api/XRTK.SDK.Input.Handlers.BaseFocusHandler.html#XRTK_SDK_Input_Handlers_BaseFocusHandler_ActivePointers - commentId: P:XRTK.SDK.Input.Handlers.BaseFocusHandler.ActivePointers - fullName: XRTK.SDK.Input.Handlers.BaseFocusHandler.ActivePointers - nameWithType: BaseFocusHandler.ActivePointers -- uid: XRTK.SDK.Input.Handlers.BaseFocusHandler.ActivePointers* - name: ActivePointers - href: api/XRTK.SDK.Input.Handlers.BaseFocusHandler.html#XRTK_SDK_Input_Handlers_BaseFocusHandler_ActivePointers_ - commentId: Overload:XRTK.SDK.Input.Handlers.BaseFocusHandler.ActivePointers - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.BaseFocusHandler.ActivePointers - nameWithType: BaseFocusHandler.ActivePointers -- uid: XRTK.SDK.Input.Handlers.BaseFocusHandler.FocusEnabled - name: FocusEnabled - href: api/XRTK.SDK.Input.Handlers.BaseFocusHandler.html#XRTK_SDK_Input_Handlers_BaseFocusHandler_FocusEnabled - commentId: P:XRTK.SDK.Input.Handlers.BaseFocusHandler.FocusEnabled - fullName: XRTK.SDK.Input.Handlers.BaseFocusHandler.FocusEnabled - nameWithType: BaseFocusHandler.FocusEnabled -- uid: XRTK.SDK.Input.Handlers.BaseFocusHandler.FocusEnabled* - name: FocusEnabled - href: api/XRTK.SDK.Input.Handlers.BaseFocusHandler.html#XRTK_SDK_Input_Handlers_BaseFocusHandler_FocusEnabled_ - commentId: Overload:XRTK.SDK.Input.Handlers.BaseFocusHandler.FocusEnabled - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.BaseFocusHandler.FocusEnabled - nameWithType: BaseFocusHandler.FocusEnabled -- uid: XRTK.SDK.Input.Handlers.BaseFocusHandler.FocusProvider - name: FocusProvider - href: api/XRTK.SDK.Input.Handlers.BaseFocusHandler.html#XRTK_SDK_Input_Handlers_BaseFocusHandler_FocusProvider - commentId: P:XRTK.SDK.Input.Handlers.BaseFocusHandler.FocusProvider - fullName: XRTK.SDK.Input.Handlers.BaseFocusHandler.FocusProvider - nameWithType: BaseFocusHandler.FocusProvider -- uid: XRTK.SDK.Input.Handlers.BaseFocusHandler.FocusProvider* - name: FocusProvider - href: api/XRTK.SDK.Input.Handlers.BaseFocusHandler.html#XRTK_SDK_Input_Handlers_BaseFocusHandler_FocusProvider_ - commentId: Overload:XRTK.SDK.Input.Handlers.BaseFocusHandler.FocusProvider - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.BaseFocusHandler.FocusProvider - nameWithType: BaseFocusHandler.FocusProvider -- uid: XRTK.SDK.Input.Handlers.BaseFocusHandler.HasFocus - name: HasFocus - href: api/XRTK.SDK.Input.Handlers.BaseFocusHandler.html#XRTK_SDK_Input_Handlers_BaseFocusHandler_HasFocus - commentId: P:XRTK.SDK.Input.Handlers.BaseFocusHandler.HasFocus - fullName: XRTK.SDK.Input.Handlers.BaseFocusHandler.HasFocus - nameWithType: BaseFocusHandler.HasFocus -- uid: XRTK.SDK.Input.Handlers.BaseFocusHandler.HasFocus* - name: HasFocus - href: api/XRTK.SDK.Input.Handlers.BaseFocusHandler.html#XRTK_SDK_Input_Handlers_BaseFocusHandler_HasFocus_ - commentId: Overload:XRTK.SDK.Input.Handlers.BaseFocusHandler.HasFocus - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.BaseFocusHandler.HasFocus - nameWithType: BaseFocusHandler.HasFocus -- uid: XRTK.SDK.Input.Handlers.BaseFocusHandler.InputSystem - name: InputSystem - href: api/XRTK.SDK.Input.Handlers.BaseFocusHandler.html#XRTK_SDK_Input_Handlers_BaseFocusHandler_InputSystem - commentId: P:XRTK.SDK.Input.Handlers.BaseFocusHandler.InputSystem - fullName: XRTK.SDK.Input.Handlers.BaseFocusHandler.InputSystem - nameWithType: BaseFocusHandler.InputSystem -- uid: XRTK.SDK.Input.Handlers.BaseFocusHandler.InputSystem* - name: InputSystem - href: api/XRTK.SDK.Input.Handlers.BaseFocusHandler.html#XRTK_SDK_Input_Handlers_BaseFocusHandler_InputSystem_ - commentId: Overload:XRTK.SDK.Input.Handlers.BaseFocusHandler.InputSystem - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.BaseFocusHandler.InputSystem - nameWithType: BaseFocusHandler.InputSystem -- uid: XRTK.SDK.Input.Handlers.BaseFocusHandler.OnBeforeFocusChange(XRTK.EventDatum.Input.FocusEventData) - name: OnBeforeFocusChange(FocusEventData) - href: api/XRTK.SDK.Input.Handlers.BaseFocusHandler.html#XRTK_SDK_Input_Handlers_BaseFocusHandler_OnBeforeFocusChange_XRTK_EventDatum_Input_FocusEventData_ - commentId: M:XRTK.SDK.Input.Handlers.BaseFocusHandler.OnBeforeFocusChange(XRTK.EventDatum.Input.FocusEventData) - fullName: XRTK.SDK.Input.Handlers.BaseFocusHandler.OnBeforeFocusChange(XRTK.EventDatum.Input.FocusEventData) - nameWithType: BaseFocusHandler.OnBeforeFocusChange(FocusEventData) -- uid: XRTK.SDK.Input.Handlers.BaseFocusHandler.OnBeforeFocusChange* - name: OnBeforeFocusChange - href: api/XRTK.SDK.Input.Handlers.BaseFocusHandler.html#XRTK_SDK_Input_Handlers_BaseFocusHandler_OnBeforeFocusChange_ - commentId: Overload:XRTK.SDK.Input.Handlers.BaseFocusHandler.OnBeforeFocusChange - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.BaseFocusHandler.OnBeforeFocusChange - nameWithType: BaseFocusHandler.OnBeforeFocusChange -- uid: XRTK.SDK.Input.Handlers.BaseFocusHandler.OnFocusChanged(XRTK.EventDatum.Input.FocusEventData) - name: OnFocusChanged(FocusEventData) - href: api/XRTK.SDK.Input.Handlers.BaseFocusHandler.html#XRTK_SDK_Input_Handlers_BaseFocusHandler_OnFocusChanged_XRTK_EventDatum_Input_FocusEventData_ - commentId: M:XRTK.SDK.Input.Handlers.BaseFocusHandler.OnFocusChanged(XRTK.EventDatum.Input.FocusEventData) - fullName: XRTK.SDK.Input.Handlers.BaseFocusHandler.OnFocusChanged(XRTK.EventDatum.Input.FocusEventData) - nameWithType: BaseFocusHandler.OnFocusChanged(FocusEventData) -- uid: XRTK.SDK.Input.Handlers.BaseFocusHandler.OnFocusChanged* - name: OnFocusChanged - href: api/XRTK.SDK.Input.Handlers.BaseFocusHandler.html#XRTK_SDK_Input_Handlers_BaseFocusHandler_OnFocusChanged_ - commentId: Overload:XRTK.SDK.Input.Handlers.BaseFocusHandler.OnFocusChanged - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.BaseFocusHandler.OnFocusChanged - nameWithType: BaseFocusHandler.OnFocusChanged -- uid: XRTK.SDK.Input.Handlers.BaseFocusHandler.OnFocusEnter(XRTK.EventDatum.Input.FocusEventData) - name: OnFocusEnter(FocusEventData) - href: api/XRTK.SDK.Input.Handlers.BaseFocusHandler.html#XRTK_SDK_Input_Handlers_BaseFocusHandler_OnFocusEnter_XRTK_EventDatum_Input_FocusEventData_ - commentId: M:XRTK.SDK.Input.Handlers.BaseFocusHandler.OnFocusEnter(XRTK.EventDatum.Input.FocusEventData) - fullName: XRTK.SDK.Input.Handlers.BaseFocusHandler.OnFocusEnter(XRTK.EventDatum.Input.FocusEventData) - nameWithType: BaseFocusHandler.OnFocusEnter(FocusEventData) -- uid: XRTK.SDK.Input.Handlers.BaseFocusHandler.OnFocusEnter* - name: OnFocusEnter - href: api/XRTK.SDK.Input.Handlers.BaseFocusHandler.html#XRTK_SDK_Input_Handlers_BaseFocusHandler_OnFocusEnter_ - commentId: Overload:XRTK.SDK.Input.Handlers.BaseFocusHandler.OnFocusEnter - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.BaseFocusHandler.OnFocusEnter - nameWithType: BaseFocusHandler.OnFocusEnter -- uid: XRTK.SDK.Input.Handlers.BaseFocusHandler.OnFocusExit(XRTK.EventDatum.Input.FocusEventData) - name: OnFocusExit(FocusEventData) - href: api/XRTK.SDK.Input.Handlers.BaseFocusHandler.html#XRTK_SDK_Input_Handlers_BaseFocusHandler_OnFocusExit_XRTK_EventDatum_Input_FocusEventData_ - commentId: M:XRTK.SDK.Input.Handlers.BaseFocusHandler.OnFocusExit(XRTK.EventDatum.Input.FocusEventData) - fullName: XRTK.SDK.Input.Handlers.BaseFocusHandler.OnFocusExit(XRTK.EventDatum.Input.FocusEventData) - nameWithType: BaseFocusHandler.OnFocusExit(FocusEventData) -- uid: XRTK.SDK.Input.Handlers.BaseFocusHandler.OnFocusExit* - name: OnFocusExit - href: api/XRTK.SDK.Input.Handlers.BaseFocusHandler.html#XRTK_SDK_Input_Handlers_BaseFocusHandler_OnFocusExit_ - commentId: Overload:XRTK.SDK.Input.Handlers.BaseFocusHandler.OnFocusExit - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.BaseFocusHandler.OnFocusExit - nameWithType: BaseFocusHandler.OnFocusExit -- uid: XRTK.SDK.Input.Handlers.BaseInputHandler - name: BaseInputHandler - href: api/XRTK.SDK.Input.Handlers.BaseInputHandler.html - commentId: T:XRTK.SDK.Input.Handlers.BaseInputHandler - fullName: XRTK.SDK.Input.Handlers.BaseInputHandler - nameWithType: BaseInputHandler -- uid: XRTK.SDK.Input.Handlers.BaseInputHandler.FocusProvider - name: FocusProvider - href: api/XRTK.SDK.Input.Handlers.BaseInputHandler.html#XRTK_SDK_Input_Handlers_BaseInputHandler_FocusProvider - commentId: P:XRTK.SDK.Input.Handlers.BaseInputHandler.FocusProvider - fullName: XRTK.SDK.Input.Handlers.BaseInputHandler.FocusProvider - nameWithType: BaseInputHandler.FocusProvider -- uid: XRTK.SDK.Input.Handlers.BaseInputHandler.FocusProvider* - name: FocusProvider - href: api/XRTK.SDK.Input.Handlers.BaseInputHandler.html#XRTK_SDK_Input_Handlers_BaseInputHandler_FocusProvider_ - commentId: Overload:XRTK.SDK.Input.Handlers.BaseInputHandler.FocusProvider - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.BaseInputHandler.FocusProvider - nameWithType: BaseInputHandler.FocusProvider -- uid: XRTK.SDK.Input.Handlers.BaseInputHandler.IsFocusRequired - name: IsFocusRequired - href: api/XRTK.SDK.Input.Handlers.BaseInputHandler.html#XRTK_SDK_Input_Handlers_BaseInputHandler_IsFocusRequired - commentId: P:XRTK.SDK.Input.Handlers.BaseInputHandler.IsFocusRequired - fullName: XRTK.SDK.Input.Handlers.BaseInputHandler.IsFocusRequired - nameWithType: BaseInputHandler.IsFocusRequired -- uid: XRTK.SDK.Input.Handlers.BaseInputHandler.IsFocusRequired* - name: IsFocusRequired - href: api/XRTK.SDK.Input.Handlers.BaseInputHandler.html#XRTK_SDK_Input_Handlers_BaseInputHandler_IsFocusRequired_ - commentId: Overload:XRTK.SDK.Input.Handlers.BaseInputHandler.IsFocusRequired - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.BaseInputHandler.IsFocusRequired - nameWithType: BaseInputHandler.IsFocusRequired -- uid: XRTK.SDK.Input.Handlers.BaseInputHandler.OnDisable - name: OnDisable() - href: api/XRTK.SDK.Input.Handlers.BaseInputHandler.html#XRTK_SDK_Input_Handlers_BaseInputHandler_OnDisable - commentId: M:XRTK.SDK.Input.Handlers.BaseInputHandler.OnDisable - fullName: XRTK.SDK.Input.Handlers.BaseInputHandler.OnDisable() - nameWithType: BaseInputHandler.OnDisable() -- uid: XRTK.SDK.Input.Handlers.BaseInputHandler.OnDisable* - name: OnDisable - href: api/XRTK.SDK.Input.Handlers.BaseInputHandler.html#XRTK_SDK_Input_Handlers_BaseInputHandler_OnDisable_ - commentId: Overload:XRTK.SDK.Input.Handlers.BaseInputHandler.OnDisable - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.BaseInputHandler.OnDisable - nameWithType: BaseInputHandler.OnDisable -- uid: XRTK.SDK.Input.Handlers.BaseInputHandler.OnEnable - name: OnEnable() - href: api/XRTK.SDK.Input.Handlers.BaseInputHandler.html#XRTK_SDK_Input_Handlers_BaseInputHandler_OnEnable - commentId: M:XRTK.SDK.Input.Handlers.BaseInputHandler.OnEnable - fullName: XRTK.SDK.Input.Handlers.BaseInputHandler.OnEnable() - nameWithType: BaseInputHandler.OnEnable() -- uid: XRTK.SDK.Input.Handlers.BaseInputHandler.OnEnable* - name: OnEnable - href: api/XRTK.SDK.Input.Handlers.BaseInputHandler.html#XRTK_SDK_Input_Handlers_BaseInputHandler_OnEnable_ - commentId: Overload:XRTK.SDK.Input.Handlers.BaseInputHandler.OnEnable - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.BaseInputHandler.OnEnable - nameWithType: BaseInputHandler.OnEnable -- uid: XRTK.SDK.Input.Handlers.BaseInputHandler.Start - name: Start() - href: api/XRTK.SDK.Input.Handlers.BaseInputHandler.html#XRTK_SDK_Input_Handlers_BaseInputHandler_Start - commentId: M:XRTK.SDK.Input.Handlers.BaseInputHandler.Start - fullName: XRTK.SDK.Input.Handlers.BaseInputHandler.Start() - nameWithType: BaseInputHandler.Start() -- uid: XRTK.SDK.Input.Handlers.BaseInputHandler.Start* - name: Start - href: api/XRTK.SDK.Input.Handlers.BaseInputHandler.html#XRTK_SDK_Input_Handlers_BaseInputHandler_Start_ - commentId: Overload:XRTK.SDK.Input.Handlers.BaseInputHandler.Start - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.BaseInputHandler.Start - nameWithType: BaseInputHandler.Start -- uid: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer - name: ControllerPoseSynchronizer - href: api/XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.html - commentId: T:XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer - fullName: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer - nameWithType: ControllerPoseSynchronizer -- uid: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.Controller - name: Controller - href: api/XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.html#XRTK_SDK_Input_Handlers_ControllerPoseSynchronizer_Controller - commentId: P:XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.Controller - fullName: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.Controller - nameWithType: ControllerPoseSynchronizer.Controller -- uid: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.Controller* - name: Controller - href: api/XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.html#XRTK_SDK_Input_Handlers_ControllerPoseSynchronizer_Controller_ - commentId: Overload:XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.Controller - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.Controller - nameWithType: ControllerPoseSynchronizer.Controller -- uid: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.DestroyOnSourceLost - name: DestroyOnSourceLost - href: api/XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.html#XRTK_SDK_Input_Handlers_ControllerPoseSynchronizer_DestroyOnSourceLost - commentId: P:XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.DestroyOnSourceLost - fullName: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.DestroyOnSourceLost - nameWithType: ControllerPoseSynchronizer.DestroyOnSourceLost -- uid: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.DestroyOnSourceLost* - name: DestroyOnSourceLost - href: api/XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.html#XRTK_SDK_Input_Handlers_ControllerPoseSynchronizer_DestroyOnSourceLost_ - commentId: Overload:XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.DestroyOnSourceLost - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.DestroyOnSourceLost - nameWithType: ControllerPoseSynchronizer.DestroyOnSourceLost -- uid: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.Handedness - name: Handedness - href: api/XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.html#XRTK_SDK_Input_Handlers_ControllerPoseSynchronizer_Handedness - commentId: P:XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.Handedness - fullName: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.Handedness - nameWithType: ControllerPoseSynchronizer.Handedness -- uid: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.Handedness* - name: Handedness - href: api/XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.html#XRTK_SDK_Input_Handlers_ControllerPoseSynchronizer_Handedness_ - commentId: Overload:XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.Handedness - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.Handedness - nameWithType: ControllerPoseSynchronizer.Handedness -- uid: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.IsTracked - name: IsTracked - href: api/XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.html#XRTK_SDK_Input_Handlers_ControllerPoseSynchronizer_IsTracked - commentId: P:XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.IsTracked - fullName: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.IsTracked - nameWithType: ControllerPoseSynchronizer.IsTracked -- uid: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.IsTracked* - name: IsTracked - href: api/XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.html#XRTK_SDK_Input_Handlers_ControllerPoseSynchronizer_IsTracked_ - commentId: Overload:XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.IsTracked - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.IsTracked - nameWithType: ControllerPoseSynchronizer.IsTracked -- uid: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnInputChanged(XRTK.EventDatum.Input.InputEventData{System.Single}) - name: OnInputChanged(InputEventData) - href: api/XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.html#XRTK_SDK_Input_Handlers_ControllerPoseSynchronizer_OnInputChanged_XRTK_EventDatum_Input_InputEventData_System_Single__ - commentId: M:XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnInputChanged(XRTK.EventDatum.Input.InputEventData{System.Single}) - name.vb: OnInputChanged(InputEventData(Of Single)) - fullName: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnInputChanged(XRTK.EventDatum.Input.InputEventData) - fullName.vb: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnInputChanged(XRTK.EventDatum.Input.InputEventData(Of System.Single)) - nameWithType: ControllerPoseSynchronizer.OnInputChanged(InputEventData) - nameWithType.vb: ControllerPoseSynchronizer.OnInputChanged(InputEventData(Of Single)) -- uid: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnInputChanged(XRTK.EventDatum.Input.InputEventData{UnityEngine.Quaternion}) - name: OnInputChanged(InputEventData) - href: api/XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.html#XRTK_SDK_Input_Handlers_ControllerPoseSynchronizer_OnInputChanged_XRTK_EventDatum_Input_InputEventData_UnityEngine_Quaternion__ - commentId: M:XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnInputChanged(XRTK.EventDatum.Input.InputEventData{UnityEngine.Quaternion}) - name.vb: OnInputChanged(InputEventData(Of Quaternion)) - fullName: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnInputChanged(XRTK.EventDatum.Input.InputEventData) - fullName.vb: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnInputChanged(XRTK.EventDatum.Input.InputEventData(Of UnityEngine.Quaternion)) - nameWithType: ControllerPoseSynchronizer.OnInputChanged(InputEventData) - nameWithType.vb: ControllerPoseSynchronizer.OnInputChanged(InputEventData(Of Quaternion)) -- uid: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnInputChanged(XRTK.EventDatum.Input.InputEventData{UnityEngine.Vector2}) - name: OnInputChanged(InputEventData) - href: api/XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.html#XRTK_SDK_Input_Handlers_ControllerPoseSynchronizer_OnInputChanged_XRTK_EventDatum_Input_InputEventData_UnityEngine_Vector2__ - commentId: M:XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnInputChanged(XRTK.EventDatum.Input.InputEventData{UnityEngine.Vector2}) - name.vb: OnInputChanged(InputEventData(Of Vector2)) - fullName: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnInputChanged(XRTK.EventDatum.Input.InputEventData) - fullName.vb: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnInputChanged(XRTK.EventDatum.Input.InputEventData(Of UnityEngine.Vector2)) - nameWithType: ControllerPoseSynchronizer.OnInputChanged(InputEventData) - nameWithType.vb: ControllerPoseSynchronizer.OnInputChanged(InputEventData(Of Vector2)) -- uid: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnInputChanged(XRTK.EventDatum.Input.InputEventData{UnityEngine.Vector3}) - name: OnInputChanged(InputEventData) - href: api/XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.html#XRTK_SDK_Input_Handlers_ControllerPoseSynchronizer_OnInputChanged_XRTK_EventDatum_Input_InputEventData_UnityEngine_Vector3__ - commentId: M:XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnInputChanged(XRTK.EventDatum.Input.InputEventData{UnityEngine.Vector3}) - name.vb: OnInputChanged(InputEventData(Of Vector3)) - fullName: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnInputChanged(XRTK.EventDatum.Input.InputEventData) - fullName.vb: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnInputChanged(XRTK.EventDatum.Input.InputEventData(Of UnityEngine.Vector3)) - nameWithType: ControllerPoseSynchronizer.OnInputChanged(InputEventData) - nameWithType.vb: ControllerPoseSynchronizer.OnInputChanged(InputEventData(Of Vector3)) -- uid: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnInputChanged(XRTK.EventDatum.Input.InputEventData{XRTK.Definitions.Utilities.MixedRealityPose}) - name: OnInputChanged(InputEventData) - href: api/XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.html#XRTK_SDK_Input_Handlers_ControllerPoseSynchronizer_OnInputChanged_XRTK_EventDatum_Input_InputEventData_XRTK_Definitions_Utilities_MixedRealityPose__ - commentId: M:XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnInputChanged(XRTK.EventDatum.Input.InputEventData{XRTK.Definitions.Utilities.MixedRealityPose}) - name.vb: OnInputChanged(InputEventData(Of MixedRealityPose)) - fullName: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnInputChanged(XRTK.EventDatum.Input.InputEventData) - fullName.vb: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnInputChanged(XRTK.EventDatum.Input.InputEventData(Of XRTK.Definitions.Utilities.MixedRealityPose)) - nameWithType: ControllerPoseSynchronizer.OnInputChanged(InputEventData) - nameWithType.vb: ControllerPoseSynchronizer.OnInputChanged(InputEventData(Of MixedRealityPose)) -- uid: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnInputChanged* - name: OnInputChanged - href: api/XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.html#XRTK_SDK_Input_Handlers_ControllerPoseSynchronizer_OnInputChanged_ - commentId: Overload:XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnInputChanged - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnInputChanged - nameWithType: ControllerPoseSynchronizer.OnInputChanged -- uid: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnInputDown(XRTK.EventDatum.Input.InputEventData) - name: OnInputDown(InputEventData) - href: api/XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.html#XRTK_SDK_Input_Handlers_ControllerPoseSynchronizer_OnInputDown_XRTK_EventDatum_Input_InputEventData_ - commentId: M:XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnInputDown(XRTK.EventDatum.Input.InputEventData) - fullName: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnInputDown(XRTK.EventDatum.Input.InputEventData) - nameWithType: ControllerPoseSynchronizer.OnInputDown(InputEventData) -- uid: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnInputDown* - name: OnInputDown - href: api/XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.html#XRTK_SDK_Input_Handlers_ControllerPoseSynchronizer_OnInputDown_ - commentId: Overload:XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnInputDown - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnInputDown - nameWithType: ControllerPoseSynchronizer.OnInputDown -- uid: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnInputUp(XRTK.EventDatum.Input.InputEventData) - name: OnInputUp(InputEventData) - href: api/XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.html#XRTK_SDK_Input_Handlers_ControllerPoseSynchronizer_OnInputUp_XRTK_EventDatum_Input_InputEventData_ - commentId: M:XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnInputUp(XRTK.EventDatum.Input.InputEventData) - fullName: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnInputUp(XRTK.EventDatum.Input.InputEventData) - nameWithType: ControllerPoseSynchronizer.OnInputUp(InputEventData) -- uid: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnInputUp* - name: OnInputUp - href: api/XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.html#XRTK_SDK_Input_Handlers_ControllerPoseSynchronizer_OnInputUp_ - commentId: Overload:XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnInputUp - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnInputUp - nameWithType: ControllerPoseSynchronizer.OnInputUp -- uid: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnSourceDetected(XRTK.EventDatum.Input.SourceStateEventData) - name: OnSourceDetected(SourceStateEventData) - href: api/XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.html#XRTK_SDK_Input_Handlers_ControllerPoseSynchronizer_OnSourceDetected_XRTK_EventDatum_Input_SourceStateEventData_ - commentId: M:XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnSourceDetected(XRTK.EventDatum.Input.SourceStateEventData) - fullName: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnSourceDetected(XRTK.EventDatum.Input.SourceStateEventData) - nameWithType: ControllerPoseSynchronizer.OnSourceDetected(SourceStateEventData) -- uid: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnSourceDetected* - name: OnSourceDetected - href: api/XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.html#XRTK_SDK_Input_Handlers_ControllerPoseSynchronizer_OnSourceDetected_ - commentId: Overload:XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnSourceDetected - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnSourceDetected - nameWithType: ControllerPoseSynchronizer.OnSourceDetected -- uid: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnSourceLost(XRTK.EventDatum.Input.SourceStateEventData) - name: OnSourceLost(SourceStateEventData) - href: api/XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.html#XRTK_SDK_Input_Handlers_ControllerPoseSynchronizer_OnSourceLost_XRTK_EventDatum_Input_SourceStateEventData_ - commentId: M:XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnSourceLost(XRTK.EventDatum.Input.SourceStateEventData) - fullName: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnSourceLost(XRTK.EventDatum.Input.SourceStateEventData) - nameWithType: ControllerPoseSynchronizer.OnSourceLost(SourceStateEventData) -- uid: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnSourceLost* - name: OnSourceLost - href: api/XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.html#XRTK_SDK_Input_Handlers_ControllerPoseSynchronizer_OnSourceLost_ - commentId: Overload:XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnSourceLost - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnSourceLost - nameWithType: ControllerPoseSynchronizer.OnSourceLost -- uid: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData{UnityEngine.Quaternion}) - name: OnSourcePoseChanged(SourcePoseEventData) - href: api/XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.html#XRTK_SDK_Input_Handlers_ControllerPoseSynchronizer_OnSourcePoseChanged_XRTK_EventDatum_Input_SourcePoseEventData_UnityEngine_Quaternion__ - commentId: M:XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData{UnityEngine.Quaternion}) - name.vb: OnSourcePoseChanged(SourcePoseEventData(Of Quaternion)) - fullName: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData) - fullName.vb: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData(Of UnityEngine.Quaternion)) - nameWithType: ControllerPoseSynchronizer.OnSourcePoseChanged(SourcePoseEventData) - nameWithType.vb: ControllerPoseSynchronizer.OnSourcePoseChanged(SourcePoseEventData(Of Quaternion)) -- uid: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData{UnityEngine.Vector2}) - name: OnSourcePoseChanged(SourcePoseEventData) - href: api/XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.html#XRTK_SDK_Input_Handlers_ControllerPoseSynchronizer_OnSourcePoseChanged_XRTK_EventDatum_Input_SourcePoseEventData_UnityEngine_Vector2__ - commentId: M:XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData{UnityEngine.Vector2}) - name.vb: OnSourcePoseChanged(SourcePoseEventData(Of Vector2)) - fullName: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData) - fullName.vb: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData(Of UnityEngine.Vector2)) - nameWithType: ControllerPoseSynchronizer.OnSourcePoseChanged(SourcePoseEventData) - nameWithType.vb: ControllerPoseSynchronizer.OnSourcePoseChanged(SourcePoseEventData(Of Vector2)) -- uid: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData{UnityEngine.Vector3}) - name: OnSourcePoseChanged(SourcePoseEventData) - href: api/XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.html#XRTK_SDK_Input_Handlers_ControllerPoseSynchronizer_OnSourcePoseChanged_XRTK_EventDatum_Input_SourcePoseEventData_UnityEngine_Vector3__ - commentId: M:XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData{UnityEngine.Vector3}) - name.vb: OnSourcePoseChanged(SourcePoseEventData(Of Vector3)) - fullName: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData) - fullName.vb: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData(Of UnityEngine.Vector3)) - nameWithType: ControllerPoseSynchronizer.OnSourcePoseChanged(SourcePoseEventData) - nameWithType.vb: ControllerPoseSynchronizer.OnSourcePoseChanged(SourcePoseEventData(Of Vector3)) -- uid: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData{XRTK.Definitions.Devices.TrackingState}) - name: OnSourcePoseChanged(SourcePoseEventData) - href: api/XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.html#XRTK_SDK_Input_Handlers_ControllerPoseSynchronizer_OnSourcePoseChanged_XRTK_EventDatum_Input_SourcePoseEventData_XRTK_Definitions_Devices_TrackingState__ - commentId: M:XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData{XRTK.Definitions.Devices.TrackingState}) - name.vb: OnSourcePoseChanged(SourcePoseEventData(Of TrackingState)) - fullName: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData) - fullName.vb: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData(Of XRTK.Definitions.Devices.TrackingState)) - nameWithType: ControllerPoseSynchronizer.OnSourcePoseChanged(SourcePoseEventData) - nameWithType.vb: ControllerPoseSynchronizer.OnSourcePoseChanged(SourcePoseEventData(Of TrackingState)) -- uid: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData{XRTK.Definitions.Utilities.MixedRealityPose}) - name: OnSourcePoseChanged(SourcePoseEventData) - href: api/XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.html#XRTK_SDK_Input_Handlers_ControllerPoseSynchronizer_OnSourcePoseChanged_XRTK_EventDatum_Input_SourcePoseEventData_XRTK_Definitions_Utilities_MixedRealityPose__ - commentId: M:XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData{XRTK.Definitions.Utilities.MixedRealityPose}) - name.vb: OnSourcePoseChanged(SourcePoseEventData(Of MixedRealityPose)) - fullName: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData) - fullName.vb: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData(Of XRTK.Definitions.Utilities.MixedRealityPose)) - nameWithType: ControllerPoseSynchronizer.OnSourcePoseChanged(SourcePoseEventData) - nameWithType.vb: ControllerPoseSynchronizer.OnSourcePoseChanged(SourcePoseEventData(Of MixedRealityPose)) -- uid: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnSourcePoseChanged* - name: OnSourcePoseChanged - href: api/XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.html#XRTK_SDK_Input_Handlers_ControllerPoseSynchronizer_OnSourcePoseChanged_ - commentId: Overload:XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnSourcePoseChanged - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.OnSourcePoseChanged - nameWithType: ControllerPoseSynchronizer.OnSourcePoseChanged -- uid: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.PoseAction - name: PoseAction - href: api/XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.html#XRTK_SDK_Input_Handlers_ControllerPoseSynchronizer_PoseAction - commentId: P:XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.PoseAction - fullName: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.PoseAction - nameWithType: ControllerPoseSynchronizer.PoseAction -- uid: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.PoseAction* - name: PoseAction - href: api/XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.html#XRTK_SDK_Input_Handlers_ControllerPoseSynchronizer_PoseAction_ - commentId: Overload:XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.PoseAction - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.PoseAction - nameWithType: ControllerPoseSynchronizer.PoseAction -- uid: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.PoseDriver - name: PoseDriver - href: api/XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.html#XRTK_SDK_Input_Handlers_ControllerPoseSynchronizer_PoseDriver - commentId: P:XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.PoseDriver - fullName: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.PoseDriver - nameWithType: ControllerPoseSynchronizer.PoseDriver -- uid: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.PoseDriver* - name: PoseDriver - href: api/XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.html#XRTK_SDK_Input_Handlers_ControllerPoseSynchronizer_PoseDriver_ - commentId: Overload:XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.PoseDriver - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.PoseDriver - nameWithType: ControllerPoseSynchronizer.PoseDriver -- uid: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.TrackingState - name: TrackingState - href: api/XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.html#XRTK_SDK_Input_Handlers_ControllerPoseSynchronizer_TrackingState - commentId: P:XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.TrackingState - fullName: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.TrackingState - nameWithType: ControllerPoseSynchronizer.TrackingState -- uid: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.TrackingState* - name: TrackingState - href: api/XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.html#XRTK_SDK_Input_Handlers_ControllerPoseSynchronizer_TrackingState_ - commentId: Overload:XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.TrackingState - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.TrackingState - nameWithType: ControllerPoseSynchronizer.TrackingState -- uid: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.UseSourcePoseData - name: UseSourcePoseData - href: api/XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.html#XRTK_SDK_Input_Handlers_ControllerPoseSynchronizer_UseSourcePoseData - commentId: P:XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.UseSourcePoseData - fullName: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.UseSourcePoseData - nameWithType: ControllerPoseSynchronizer.UseSourcePoseData -- uid: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.UseSourcePoseData* - name: UseSourcePoseData - href: api/XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.html#XRTK_SDK_Input_Handlers_ControllerPoseSynchronizer_UseSourcePoseData_ - commentId: Overload:XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.UseSourcePoseData - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ControllerPoseSynchronizer.UseSourcePoseData - nameWithType: ControllerPoseSynchronizer.UseSourcePoseData -- uid: XRTK.SDK.Input.Handlers.DragAndDropHandler - name: DragAndDropHandler - href: api/XRTK.SDK.Input.Handlers.DragAndDropHandler.html - commentId: T:XRTK.SDK.Input.Handlers.DragAndDropHandler - fullName: XRTK.SDK.Input.Handlers.DragAndDropHandler - nameWithType: DragAndDropHandler -- uid: XRTK.SDK.Input.Handlers.DragAndDropHandler.SetDragging(System.Boolean) - name: SetDragging(Boolean) - href: api/XRTK.SDK.Input.Handlers.DragAndDropHandler.html#XRTK_SDK_Input_Handlers_DragAndDropHandler_SetDragging_System_Boolean_ - commentId: M:XRTK.SDK.Input.Handlers.DragAndDropHandler.SetDragging(System.Boolean) - fullName: XRTK.SDK.Input.Handlers.DragAndDropHandler.SetDragging(System.Boolean) - nameWithType: DragAndDropHandler.SetDragging(Boolean) -- uid: XRTK.SDK.Input.Handlers.DragAndDropHandler.SetDragging* - name: SetDragging - href: api/XRTK.SDK.Input.Handlers.DragAndDropHandler.html#XRTK_SDK_Input_Handlers_DragAndDropHandler_SetDragging_ - commentId: Overload:XRTK.SDK.Input.Handlers.DragAndDropHandler.SetDragging - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.DragAndDropHandler.SetDragging - nameWithType: DragAndDropHandler.SetDragging -- uid: XRTK.SDK.Input.Handlers.DragAndDropHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityPointerHandler#OnPointerClicked(XRTK.EventDatum.Input.MixedRealityPointerEventData) - name: IMixedRealityPointerHandler.OnPointerClicked(MixedRealityPointerEventData) - href: api/XRTK.SDK.Input.Handlers.DragAndDropHandler.html#XRTK_SDK_Input_Handlers_DragAndDropHandler_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityPointerHandler_OnPointerClicked_XRTK_EventDatum_Input_MixedRealityPointerEventData_ - commentId: M:XRTK.SDK.Input.Handlers.DragAndDropHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityPointerHandler#OnPointerClicked(XRTK.EventDatum.Input.MixedRealityPointerEventData) - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerHandler.OnPointerClicked(MixedRealityPointerEventData) - fullName: XRTK.SDK.Input.Handlers.DragAndDropHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerHandler.OnPointerClicked(XRTK.EventDatum.Input.MixedRealityPointerEventData) - nameWithType: DragAndDropHandler.IMixedRealityPointerHandler.OnPointerClicked(MixedRealityPointerEventData) - nameWithType.vb: DragAndDropHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerHandler.OnPointerClicked(MixedRealityPointerEventData) -- uid: XRTK.SDK.Input.Handlers.DragAndDropHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityPointerHandler#OnPointerClicked* - name: IMixedRealityPointerHandler.OnPointerClicked - href: api/XRTK.SDK.Input.Handlers.DragAndDropHandler.html#XRTK_SDK_Input_Handlers_DragAndDropHandler_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityPointerHandler_OnPointerClicked_ - commentId: Overload:XRTK.SDK.Input.Handlers.DragAndDropHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityPointerHandler#OnPointerClicked - isSpec: "True" - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerHandler.OnPointerClicked - fullName: XRTK.SDK.Input.Handlers.DragAndDropHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerHandler.OnPointerClicked - nameWithType: DragAndDropHandler.IMixedRealityPointerHandler.OnPointerClicked - nameWithType.vb: DragAndDropHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerHandler.OnPointerClicked -- uid: XRTK.SDK.Input.Handlers.DragAndDropHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityPointerHandler#OnPointerDown(XRTK.EventDatum.Input.MixedRealityPointerEventData) - name: IMixedRealityPointerHandler.OnPointerDown(MixedRealityPointerEventData) - href: api/XRTK.SDK.Input.Handlers.DragAndDropHandler.html#XRTK_SDK_Input_Handlers_DragAndDropHandler_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityPointerHandler_OnPointerDown_XRTK_EventDatum_Input_MixedRealityPointerEventData_ - commentId: M:XRTK.SDK.Input.Handlers.DragAndDropHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityPointerHandler#OnPointerDown(XRTK.EventDatum.Input.MixedRealityPointerEventData) - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerHandler.OnPointerDown(MixedRealityPointerEventData) - fullName: XRTK.SDK.Input.Handlers.DragAndDropHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerHandler.OnPointerDown(XRTK.EventDatum.Input.MixedRealityPointerEventData) - nameWithType: DragAndDropHandler.IMixedRealityPointerHandler.OnPointerDown(MixedRealityPointerEventData) - nameWithType.vb: DragAndDropHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerHandler.OnPointerDown(MixedRealityPointerEventData) -- uid: XRTK.SDK.Input.Handlers.DragAndDropHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityPointerHandler#OnPointerDown* - name: IMixedRealityPointerHandler.OnPointerDown - href: api/XRTK.SDK.Input.Handlers.DragAndDropHandler.html#XRTK_SDK_Input_Handlers_DragAndDropHandler_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityPointerHandler_OnPointerDown_ - commentId: Overload:XRTK.SDK.Input.Handlers.DragAndDropHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityPointerHandler#OnPointerDown - isSpec: "True" - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerHandler.OnPointerDown - fullName: XRTK.SDK.Input.Handlers.DragAndDropHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerHandler.OnPointerDown - nameWithType: DragAndDropHandler.IMixedRealityPointerHandler.OnPointerDown - nameWithType.vb: DragAndDropHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerHandler.OnPointerDown -- uid: XRTK.SDK.Input.Handlers.DragAndDropHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityPointerHandler#OnPointerUp(XRTK.EventDatum.Input.MixedRealityPointerEventData) - name: IMixedRealityPointerHandler.OnPointerUp(MixedRealityPointerEventData) - href: api/XRTK.SDK.Input.Handlers.DragAndDropHandler.html#XRTK_SDK_Input_Handlers_DragAndDropHandler_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityPointerHandler_OnPointerUp_XRTK_EventDatum_Input_MixedRealityPointerEventData_ - commentId: M:XRTK.SDK.Input.Handlers.DragAndDropHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityPointerHandler#OnPointerUp(XRTK.EventDatum.Input.MixedRealityPointerEventData) - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerHandler.OnPointerUp(MixedRealityPointerEventData) - fullName: XRTK.SDK.Input.Handlers.DragAndDropHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerHandler.OnPointerUp(XRTK.EventDatum.Input.MixedRealityPointerEventData) - nameWithType: DragAndDropHandler.IMixedRealityPointerHandler.OnPointerUp(MixedRealityPointerEventData) - nameWithType.vb: DragAndDropHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerHandler.OnPointerUp(MixedRealityPointerEventData) -- uid: XRTK.SDK.Input.Handlers.DragAndDropHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityPointerHandler#OnPointerUp* - name: IMixedRealityPointerHandler.OnPointerUp - href: api/XRTK.SDK.Input.Handlers.DragAndDropHandler.html#XRTK_SDK_Input_Handlers_DragAndDropHandler_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityPointerHandler_OnPointerUp_ - commentId: Overload:XRTK.SDK.Input.Handlers.DragAndDropHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityPointerHandler#OnPointerUp - isSpec: "True" - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerHandler.OnPointerUp - fullName: XRTK.SDK.Input.Handlers.DragAndDropHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerHandler.OnPointerUp - nameWithType: DragAndDropHandler.IMixedRealityPointerHandler.OnPointerUp - nameWithType.vb: DragAndDropHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityPointerHandler.OnPointerUp -- uid: XRTK.SDK.Input.Handlers.DragAndDropHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealitySourceStateHandler#OnSourceDetected(XRTK.EventDatum.Input.SourceStateEventData) - name: IMixedRealitySourceStateHandler.OnSourceDetected(SourceStateEventData) - href: api/XRTK.SDK.Input.Handlers.DragAndDropHandler.html#XRTK_SDK_Input_Handlers_DragAndDropHandler_XRTK_Interfaces_InputSystem_Handlers_IMixedRealitySourceStateHandler_OnSourceDetected_XRTK_EventDatum_Input_SourceStateEventData_ - commentId: M:XRTK.SDK.Input.Handlers.DragAndDropHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealitySourceStateHandler#OnSourceDetected(XRTK.EventDatum.Input.SourceStateEventData) - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourceStateHandler.OnSourceDetected(SourceStateEventData) - fullName: XRTK.SDK.Input.Handlers.DragAndDropHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourceStateHandler.OnSourceDetected(XRTK.EventDatum.Input.SourceStateEventData) - nameWithType: DragAndDropHandler.IMixedRealitySourceStateHandler.OnSourceDetected(SourceStateEventData) - nameWithType.vb: DragAndDropHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourceStateHandler.OnSourceDetected(SourceStateEventData) -- uid: XRTK.SDK.Input.Handlers.DragAndDropHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealitySourceStateHandler#OnSourceDetected* - name: IMixedRealitySourceStateHandler.OnSourceDetected - href: api/XRTK.SDK.Input.Handlers.DragAndDropHandler.html#XRTK_SDK_Input_Handlers_DragAndDropHandler_XRTK_Interfaces_InputSystem_Handlers_IMixedRealitySourceStateHandler_OnSourceDetected_ - commentId: Overload:XRTK.SDK.Input.Handlers.DragAndDropHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealitySourceStateHandler#OnSourceDetected - isSpec: "True" - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourceStateHandler.OnSourceDetected - fullName: XRTK.SDK.Input.Handlers.DragAndDropHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourceStateHandler.OnSourceDetected - nameWithType: DragAndDropHandler.IMixedRealitySourceStateHandler.OnSourceDetected - nameWithType.vb: DragAndDropHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourceStateHandler.OnSourceDetected -- uid: XRTK.SDK.Input.Handlers.DragAndDropHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealitySourceStateHandler#OnSourceLost(XRTK.EventDatum.Input.SourceStateEventData) - name: IMixedRealitySourceStateHandler.OnSourceLost(SourceStateEventData) - href: api/XRTK.SDK.Input.Handlers.DragAndDropHandler.html#XRTK_SDK_Input_Handlers_DragAndDropHandler_XRTK_Interfaces_InputSystem_Handlers_IMixedRealitySourceStateHandler_OnSourceLost_XRTK_EventDatum_Input_SourceStateEventData_ - commentId: M:XRTK.SDK.Input.Handlers.DragAndDropHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealitySourceStateHandler#OnSourceLost(XRTK.EventDatum.Input.SourceStateEventData) - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourceStateHandler.OnSourceLost(SourceStateEventData) - fullName: XRTK.SDK.Input.Handlers.DragAndDropHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourceStateHandler.OnSourceLost(XRTK.EventDatum.Input.SourceStateEventData) - nameWithType: DragAndDropHandler.IMixedRealitySourceStateHandler.OnSourceLost(SourceStateEventData) - nameWithType.vb: DragAndDropHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourceStateHandler.OnSourceLost(SourceStateEventData) -- uid: XRTK.SDK.Input.Handlers.DragAndDropHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealitySourceStateHandler#OnSourceLost* - name: IMixedRealitySourceStateHandler.OnSourceLost - href: api/XRTK.SDK.Input.Handlers.DragAndDropHandler.html#XRTK_SDK_Input_Handlers_DragAndDropHandler_XRTK_Interfaces_InputSystem_Handlers_IMixedRealitySourceStateHandler_OnSourceLost_ - commentId: Overload:XRTK.SDK.Input.Handlers.DragAndDropHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealitySourceStateHandler#OnSourceLost - isSpec: "True" - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourceStateHandler.OnSourceLost - fullName: XRTK.SDK.Input.Handlers.DragAndDropHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourceStateHandler.OnSourceLost - nameWithType: DragAndDropHandler.IMixedRealitySourceStateHandler.OnSourceLost - nameWithType.vb: DragAndDropHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySourceStateHandler.OnSourceLost -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler - name: ManipulationHandler - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html - commentId: T:XRTK.SDK.Input.Handlers.ManipulationHandler - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler - nameWithType: ManipulationHandler -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.Awake - name: Awake() - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_Awake - commentId: M:XRTK.SDK.Input.Handlers.ManipulationHandler.Awake - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.Awake() - nameWithType: ManipulationHandler.Awake() -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.Awake* - name: Awake - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_Awake_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.Awake - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.Awake - nameWithType: ManipulationHandler.Awake -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.BeginHold(XRTK.EventDatum.Input.MixedRealityPointerEventData,System.Nullable{UnityEngine.Vector3}) - name: BeginHold(MixedRealityPointerEventData, Nullable) - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_BeginHold_XRTK_EventDatum_Input_MixedRealityPointerEventData_System_Nullable_UnityEngine_Vector3__ - commentId: M:XRTK.SDK.Input.Handlers.ManipulationHandler.BeginHold(XRTK.EventDatum.Input.MixedRealityPointerEventData,System.Nullable{UnityEngine.Vector3}) - name.vb: BeginHold(MixedRealityPointerEventData, Nullable(Of Vector3)) - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.BeginHold(XRTK.EventDatum.Input.MixedRealityPointerEventData, System.Nullable) - fullName.vb: XRTK.SDK.Input.Handlers.ManipulationHandler.BeginHold(XRTK.EventDatum.Input.MixedRealityPointerEventData, System.Nullable(Of UnityEngine.Vector3)) - nameWithType: ManipulationHandler.BeginHold(MixedRealityPointerEventData, Nullable) - nameWithType.vb: ManipulationHandler.BeginHold(MixedRealityPointerEventData, Nullable(Of Vector3)) -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.BeginHold* - name: BeginHold - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_BeginHold_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.BeginHold - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.BeginHold - nameWithType: ManipulationHandler.BeginHold -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.BoundingBox - name: BoundingBox - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_BoundingBox - commentId: P:XRTK.SDK.Input.Handlers.ManipulationHandler.BoundingBox - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.BoundingBox - nameWithType: ManipulationHandler.BoundingBox -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.BoundingBox* - name: BoundingBox - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_BoundingBox_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.BoundingBox - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.BoundingBox - nameWithType: ManipulationHandler.BoundingBox -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.CalculateNudgeDistance(System.Single,System.Single) - name: CalculateNudgeDistance(Single, Single) - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_CalculateNudgeDistance_System_Single_System_Single_ - commentId: M:XRTK.SDK.Input.Handlers.ManipulationHandler.CalculateNudgeDistance(System.Single,System.Single) - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.CalculateNudgeDistance(System.Single, System.Single) - nameWithType: ManipulationHandler.CalculateNudgeDistance(Single, Single) -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.CalculateNudgeDistance* - name: CalculateNudgeDistance - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_CalculateNudgeDistance_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.CalculateNudgeDistance - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.CalculateNudgeDistance - nameWithType: ManipulationHandler.CalculateNudgeDistance -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.CalculateRotationAngle(UnityEngine.Vector2,UnityEngine.Vector2) - name: CalculateRotationAngle(Vector2, Vector2) - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_CalculateRotationAngle_UnityEngine_Vector2_UnityEngine_Vector2_ - commentId: M:XRTK.SDK.Input.Handlers.ManipulationHandler.CalculateRotationAngle(UnityEngine.Vector2,UnityEngine.Vector2) - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.CalculateRotationAngle(UnityEngine.Vector2, UnityEngine.Vector2) - nameWithType: ManipulationHandler.CalculateRotationAngle(Vector2, Vector2) -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.CalculateRotationAngle* - name: CalculateRotationAngle - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_CalculateRotationAngle_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.CalculateRotationAngle - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.CalculateRotationAngle - nameWithType: ManipulationHandler.CalculateRotationAngle -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.CalculateScaleAmount(System.Single,UnityEngine.Vector3) - name: CalculateScaleAmount(Single, Vector3) - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_CalculateScaleAmount_System_Single_UnityEngine_Vector3_ - commentId: M:XRTK.SDK.Input.Handlers.ManipulationHandler.CalculateScaleAmount(System.Single,UnityEngine.Vector3) - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.CalculateScaleAmount(System.Single, UnityEngine.Vector3) - nameWithType: ManipulationHandler.CalculateScaleAmount(Single, Vector3) -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.CalculateScaleAmount* - name: CalculateScaleAmount - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_CalculateScaleAmount_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.CalculateScaleAmount - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.CalculateScaleAmount - nameWithType: ManipulationHandler.CalculateScaleAmount -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.CancelAction - name: CancelAction - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_CancelAction - commentId: P:XRTK.SDK.Input.Handlers.ManipulationHandler.CancelAction - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.CancelAction - nameWithType: ManipulationHandler.CancelAction -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.CancelAction* - name: CancelAction - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_CancelAction_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.CancelAction - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.CancelAction - nameWithType: ManipulationHandler.CancelAction -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.Collider - name: Collider - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_Collider - commentId: P:XRTK.SDK.Input.Handlers.ManipulationHandler.Collider - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.Collider - nameWithType: ManipulationHandler.Collider -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.Collider* - name: Collider - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_Collider_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.Collider - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.Collider - nameWithType: ManipulationHandler.Collider -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.EndHold(System.Boolean) - name: EndHold(Boolean) - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_EndHold_System_Boolean_ - commentId: M:XRTK.SDK.Input.Handlers.ManipulationHandler.EndHold(System.Boolean) - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.EndHold(System.Boolean) - nameWithType: ManipulationHandler.EndHold(Boolean) -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.EndHold* - name: EndHold - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_EndHold_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.EndHold - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.EndHold - nameWithType: ManipulationHandler.EndHold -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.IsBeingHeld - name: IsBeingHeld - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_IsBeingHeld - commentId: P:XRTK.SDK.Input.Handlers.ManipulationHandler.IsBeingHeld - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.IsBeingHeld - nameWithType: ManipulationHandler.IsBeingHeld -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.IsBeingHeld* - name: IsBeingHeld - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_IsBeingHeld_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.IsBeingHeld - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.IsBeingHeld - nameWithType: ManipulationHandler.IsBeingHeld -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.IsNudgePossible - name: IsNudgePossible - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_IsNudgePossible - commentId: P:XRTK.SDK.Input.Handlers.ManipulationHandler.IsNudgePossible - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.IsNudgePossible - nameWithType: ManipulationHandler.IsNudgePossible -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.IsNudgePossible* - name: IsNudgePossible - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_IsNudgePossible_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.IsNudgePossible - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.IsNudgePossible - nameWithType: ManipulationHandler.IsNudgePossible -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.IsPressed - name: IsPressed - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_IsPressed - commentId: P:XRTK.SDK.Input.Handlers.ManipulationHandler.IsPressed - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.IsPressed - nameWithType: ManipulationHandler.IsPressed -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.IsPressed* - name: IsPressed - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_IsPressed_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.IsPressed - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.IsPressed - nameWithType: ManipulationHandler.IsPressed -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.IsRotating - name: IsRotating - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_IsRotating - commentId: P:XRTK.SDK.Input.Handlers.ManipulationHandler.IsRotating - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.IsRotating - nameWithType: ManipulationHandler.IsRotating -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.IsRotating* - name: IsRotating - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_IsRotating_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.IsRotating - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.IsRotating - nameWithType: ManipulationHandler.IsRotating -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.IsRotationLocked - name: IsRotationLocked - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_IsRotationLocked - commentId: P:XRTK.SDK.Input.Handlers.ManipulationHandler.IsRotationLocked - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.IsRotationLocked - nameWithType: ManipulationHandler.IsRotationLocked -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.IsRotationLocked* - name: IsRotationLocked - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_IsRotationLocked_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.IsRotationLocked - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.IsRotationLocked - nameWithType: ManipulationHandler.IsRotationLocked -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.IsRotationPossible - name: IsRotationPossible - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_IsRotationPossible - commentId: P:XRTK.SDK.Input.Handlers.ManipulationHandler.IsRotationPossible - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.IsRotationPossible - nameWithType: ManipulationHandler.IsRotationPossible -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.IsRotationPossible* - name: IsRotationPossible - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_IsRotationPossible_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.IsRotationPossible - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.IsRotationPossible - nameWithType: ManipulationHandler.IsRotationPossible -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.IsScalingLocked - name: IsScalingLocked - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_IsScalingLocked - commentId: P:XRTK.SDK.Input.Handlers.ManipulationHandler.IsScalingLocked - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.IsScalingLocked - nameWithType: ManipulationHandler.IsScalingLocked -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.IsScalingLocked* - name: IsScalingLocked - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_IsScalingLocked_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.IsScalingLocked - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.IsScalingLocked - nameWithType: ManipulationHandler.IsScalingLocked -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.IsScalingPossible - name: IsScalingPossible - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_IsScalingPossible - commentId: P:XRTK.SDK.Input.Handlers.ManipulationHandler.IsScalingPossible - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.IsScalingPossible - nameWithType: ManipulationHandler.IsScalingPossible -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.IsScalingPossible* - name: IsScalingPossible - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_IsScalingPossible_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.IsScalingPossible - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.IsScalingPossible - nameWithType: ManipulationHandler.IsScalingPossible -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.IsSnappedToSurface - name: IsSnappedToSurface - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_IsSnappedToSurface - commentId: P:XRTK.SDK.Input.Handlers.ManipulationHandler.IsSnappedToSurface - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.IsSnappedToSurface - nameWithType: ManipulationHandler.IsSnappedToSurface -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.IsSnappedToSurface* - name: IsSnappedToSurface - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_IsSnappedToSurface_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.IsSnappedToSurface - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.IsSnappedToSurface - nameWithType: ManipulationHandler.IsSnappedToSurface -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.IsTranslateLocked - name: IsTranslateLocked - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_IsTranslateLocked - commentId: P:XRTK.SDK.Input.Handlers.ManipulationHandler.IsTranslateLocked - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.IsTranslateLocked - nameWithType: ManipulationHandler.IsTranslateLocked -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.IsTranslateLocked* - name: IsTranslateLocked - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_IsTranslateLocked_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.IsTranslateLocked - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.IsTranslateLocked - nameWithType: ManipulationHandler.IsTranslateLocked -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.LateUpdate - name: LateUpdate() - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_LateUpdate - commentId: M:XRTK.SDK.Input.Handlers.ManipulationHandler.LateUpdate - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.LateUpdate() - nameWithType: ManipulationHandler.LateUpdate() -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.LateUpdate* - name: LateUpdate - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_LateUpdate_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.LateUpdate - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.LateUpdate - nameWithType: ManipulationHandler.LateUpdate -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.LayerMasks - name: LayerMasks - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_LayerMasks - commentId: P:XRTK.SDK.Input.Handlers.ManipulationHandler.LayerMasks - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.LayerMasks - nameWithType: ManipulationHandler.LayerMasks -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.LayerMasks* - name: LayerMasks - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_LayerMasks_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.LayerMasks - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.LayerMasks - nameWithType: ManipulationHandler.LayerMasks -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.ManipulationTarget - name: ManipulationTarget - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_ManipulationTarget - commentId: P:XRTK.SDK.Input.Handlers.ManipulationHandler.ManipulationTarget - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.ManipulationTarget - nameWithType: ManipulationHandler.ManipulationTarget -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.ManipulationTarget* - name: ManipulationTarget - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_ManipulationTarget_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.ManipulationTarget - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.ManipulationTarget - nameWithType: ManipulationHandler.ManipulationTarget -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.NudgeAction - name: NudgeAction - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_NudgeAction - commentId: P:XRTK.SDK.Input.Handlers.ManipulationHandler.NudgeAction - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.NudgeAction - nameWithType: ManipulationHandler.NudgeAction -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.NudgeAction* - name: NudgeAction - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_NudgeAction_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.NudgeAction - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.NudgeAction - nameWithType: ManipulationHandler.NudgeAction -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.NudgeAmount - name: NudgeAmount - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_NudgeAmount - commentId: P:XRTK.SDK.Input.Handlers.ManipulationHandler.NudgeAmount - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.NudgeAmount - nameWithType: ManipulationHandler.NudgeAmount -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.NudgeAmount* - name: NudgeAmount - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_NudgeAmount_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.NudgeAmount - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.NudgeAmount - nameWithType: ManipulationHandler.NudgeAmount -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.NudgeConstraints - name: NudgeConstraints - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_NudgeConstraints - commentId: P:XRTK.SDK.Input.Handlers.ManipulationHandler.NudgeConstraints - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.NudgeConstraints - nameWithType: ManipulationHandler.NudgeConstraints -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.NudgeConstraints* - name: NudgeConstraints - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_NudgeConstraints_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.NudgeConstraints - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.NudgeConstraints - nameWithType: ManipulationHandler.NudgeConstraints -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.NudgeZone - name: NudgeZone - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_NudgeZone - commentId: P:XRTK.SDK.Input.Handlers.ManipulationHandler.NudgeZone - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.NudgeZone - nameWithType: ManipulationHandler.NudgeZone -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.NudgeZone* - name: NudgeZone - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_NudgeZone_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.NudgeZone - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.NudgeZone - nameWithType: ManipulationHandler.NudgeZone -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.OnDisable - name: OnDisable() - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_OnDisable - commentId: M:XRTK.SDK.Input.Handlers.ManipulationHandler.OnDisable - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.OnDisable() - nameWithType: ManipulationHandler.OnDisable() -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.OnDisable* - name: OnDisable - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_OnDisable_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.OnDisable - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.OnDisable - nameWithType: ManipulationHandler.OnDisable -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.OnHoldBegin - name: OnHoldBegin - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_OnHoldBegin - commentId: E:XRTK.SDK.Input.Handlers.ManipulationHandler.OnHoldBegin - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.OnHoldBegin - nameWithType: ManipulationHandler.OnHoldBegin -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.OnHoldEnd - name: OnHoldEnd - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_OnHoldEnd - commentId: E:XRTK.SDK.Input.Handlers.ManipulationHandler.OnHoldEnd - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.OnHoldEnd - nameWithType: ManipulationHandler.OnHoldEnd -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.OnInputChanged(XRTK.EventDatum.Input.InputEventData{System.Single}) - name: OnInputChanged(InputEventData) - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_OnInputChanged_XRTK_EventDatum_Input_InputEventData_System_Single__ - commentId: M:XRTK.SDK.Input.Handlers.ManipulationHandler.OnInputChanged(XRTK.EventDatum.Input.InputEventData{System.Single}) - name.vb: OnInputChanged(InputEventData(Of Single)) - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.OnInputChanged(XRTK.EventDatum.Input.InputEventData) - fullName.vb: XRTK.SDK.Input.Handlers.ManipulationHandler.OnInputChanged(XRTK.EventDatum.Input.InputEventData(Of System.Single)) - nameWithType: ManipulationHandler.OnInputChanged(InputEventData) - nameWithType.vb: ManipulationHandler.OnInputChanged(InputEventData(Of Single)) -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.OnInputChanged(XRTK.EventDatum.Input.InputEventData{UnityEngine.Vector2}) - name: OnInputChanged(InputEventData) - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_OnInputChanged_XRTK_EventDatum_Input_InputEventData_UnityEngine_Vector2__ - commentId: M:XRTK.SDK.Input.Handlers.ManipulationHandler.OnInputChanged(XRTK.EventDatum.Input.InputEventData{UnityEngine.Vector2}) - name.vb: OnInputChanged(InputEventData(Of Vector2)) - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.OnInputChanged(XRTK.EventDatum.Input.InputEventData) - fullName.vb: XRTK.SDK.Input.Handlers.ManipulationHandler.OnInputChanged(XRTK.EventDatum.Input.InputEventData(Of UnityEngine.Vector2)) - nameWithType: ManipulationHandler.OnInputChanged(InputEventData) - nameWithType.vb: ManipulationHandler.OnInputChanged(InputEventData(Of Vector2)) -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.OnInputChanged* - name: OnInputChanged - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_OnInputChanged_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.OnInputChanged - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.OnInputChanged - nameWithType: ManipulationHandler.OnInputChanged -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.OnInputDown(XRTK.EventDatum.Input.InputEventData) - name: OnInputDown(InputEventData) - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_OnInputDown_XRTK_EventDatum_Input_InputEventData_ - commentId: M:XRTK.SDK.Input.Handlers.ManipulationHandler.OnInputDown(XRTK.EventDatum.Input.InputEventData) - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.OnInputDown(XRTK.EventDatum.Input.InputEventData) - nameWithType: ManipulationHandler.OnInputDown(InputEventData) -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.OnInputDown* - name: OnInputDown - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_OnInputDown_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.OnInputDown - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.OnInputDown - nameWithType: ManipulationHandler.OnInputDown -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.OnInputUp(XRTK.EventDatum.Input.InputEventData) - name: OnInputUp(InputEventData) - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_OnInputUp_XRTK_EventDatum_Input_InputEventData_ - commentId: M:XRTK.SDK.Input.Handlers.ManipulationHandler.OnInputUp(XRTK.EventDatum.Input.InputEventData) - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.OnInputUp(XRTK.EventDatum.Input.InputEventData) - nameWithType: ManipulationHandler.OnInputUp(InputEventData) -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.OnInputUp* - name: OnInputUp - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_OnInputUp_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.OnInputUp - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.OnInputUp - nameWithType: ManipulationHandler.OnInputUp -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.OnPointerClicked(XRTK.EventDatum.Input.MixedRealityPointerEventData) - name: OnPointerClicked(MixedRealityPointerEventData) - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_OnPointerClicked_XRTK_EventDatum_Input_MixedRealityPointerEventData_ - commentId: M:XRTK.SDK.Input.Handlers.ManipulationHandler.OnPointerClicked(XRTK.EventDatum.Input.MixedRealityPointerEventData) - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.OnPointerClicked(XRTK.EventDatum.Input.MixedRealityPointerEventData) - nameWithType: ManipulationHandler.OnPointerClicked(MixedRealityPointerEventData) -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.OnPointerClicked* - name: OnPointerClicked - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_OnPointerClicked_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.OnPointerClicked - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.OnPointerClicked - nameWithType: ManipulationHandler.OnPointerClicked -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.OnPointerDown(XRTK.EventDatum.Input.MixedRealityPointerEventData) - name: OnPointerDown(MixedRealityPointerEventData) - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_OnPointerDown_XRTK_EventDatum_Input_MixedRealityPointerEventData_ - commentId: M:XRTK.SDK.Input.Handlers.ManipulationHandler.OnPointerDown(XRTK.EventDatum.Input.MixedRealityPointerEventData) - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.OnPointerDown(XRTK.EventDatum.Input.MixedRealityPointerEventData) - nameWithType: ManipulationHandler.OnPointerDown(MixedRealityPointerEventData) -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.OnPointerDown* - name: OnPointerDown - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_OnPointerDown_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.OnPointerDown - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.OnPointerDown - nameWithType: ManipulationHandler.OnPointerDown -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.OnPointerUp(XRTK.EventDatum.Input.MixedRealityPointerEventData) - name: OnPointerUp(MixedRealityPointerEventData) - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_OnPointerUp_XRTK_EventDatum_Input_MixedRealityPointerEventData_ - commentId: M:XRTK.SDK.Input.Handlers.ManipulationHandler.OnPointerUp(XRTK.EventDatum.Input.MixedRealityPointerEventData) - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.OnPointerUp(XRTK.EventDatum.Input.MixedRealityPointerEventData) - nameWithType: ManipulationHandler.OnPointerUp(MixedRealityPointerEventData) -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.OnPointerUp* - name: OnPointerUp - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_OnPointerUp_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.OnPointerUp - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.OnPointerUp - nameWithType: ManipulationHandler.OnPointerUp -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.OnSnap - name: OnSnap() - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_OnSnap - commentId: M:XRTK.SDK.Input.Handlers.ManipulationHandler.OnSnap - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.OnSnap() - nameWithType: ManipulationHandler.OnSnap() -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.OnSnap* - name: OnSnap - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_OnSnap_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.OnSnap - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.OnSnap - nameWithType: ManipulationHandler.OnSnap -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.OnUnsnap - name: OnUnsnap() - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_OnUnsnap - commentId: M:XRTK.SDK.Input.Handlers.ManipulationHandler.OnUnsnap - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.OnUnsnap() - nameWithType: ManipulationHandler.OnUnsnap() -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.OnUnsnap* - name: OnUnsnap - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_OnUnsnap_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.OnUnsnap - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.OnUnsnap - nameWithType: ManipulationHandler.OnUnsnap -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.PressThreshold - name: PressThreshold - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_PressThreshold - commentId: P:XRTK.SDK.Input.Handlers.ManipulationHandler.PressThreshold - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.PressThreshold - nameWithType: ManipulationHandler.PressThreshold -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.PressThreshold* - name: PressThreshold - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_PressThreshold_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.PressThreshold - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.PressThreshold - nameWithType: ManipulationHandler.PressThreshold -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.PrimaryPointer - name: PrimaryPointer - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_PrimaryPointer - commentId: P:XRTK.SDK.Input.Handlers.ManipulationHandler.PrimaryPointer - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.PrimaryPointer - nameWithType: ManipulationHandler.PrimaryPointer -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.PrimaryPointer* - name: PrimaryPointer - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_PrimaryPointer_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.PrimaryPointer - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.PrimaryPointer - nameWithType: ManipulationHandler.PrimaryPointer -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.ProcessTransformData - name: ProcessTransformData() - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_ProcessTransformData - commentId: M:XRTK.SDK.Input.Handlers.ManipulationHandler.ProcessTransformData - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.ProcessTransformData() - nameWithType: ManipulationHandler.ProcessTransformData() -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.ProcessTransformData* - name: ProcessTransformData - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_ProcessTransformData_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.ProcessTransformData - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.ProcessTransformData - nameWithType: ManipulationHandler.ProcessTransformData -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.RotateAction - name: RotateAction - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_RotateAction - commentId: P:XRTK.SDK.Input.Handlers.ManipulationHandler.RotateAction - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.RotateAction - nameWithType: ManipulationHandler.RotateAction -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.RotateAction* - name: RotateAction - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_RotateAction_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.RotateAction - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.RotateAction - nameWithType: ManipulationHandler.RotateAction -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.RotationAngleActivation - name: RotationAngleActivation - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_RotationAngleActivation - commentId: P:XRTK.SDK.Input.Handlers.ManipulationHandler.RotationAngleActivation - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.RotationAngleActivation - nameWithType: ManipulationHandler.RotationAngleActivation -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.RotationAngleActivation* - name: RotationAngleActivation - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_RotationAngleActivation_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.RotationAngleActivation - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.RotationAngleActivation - nameWithType: ManipulationHandler.RotationAngleActivation -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.RotationZone - name: RotationZone - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_RotationZone - commentId: P:XRTK.SDK.Input.Handlers.ManipulationHandler.RotationZone - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.RotationZone - nameWithType: ManipulationHandler.RotationZone -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.RotationZone* - name: RotationZone - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_RotationZone_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.RotationZone - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.RotationZone - nameWithType: ManipulationHandler.RotationZone -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.ScaleAction - name: ScaleAction - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_ScaleAction - commentId: P:XRTK.SDK.Input.Handlers.ManipulationHandler.ScaleAction - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.ScaleAction - nameWithType: ManipulationHandler.ScaleAction -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.ScaleAction* - name: ScaleAction - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_ScaleAction_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.ScaleAction - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.ScaleAction - nameWithType: ManipulationHandler.ScaleAction -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.ScaleAmount - name: ScaleAmount - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_ScaleAmount - commentId: P:XRTK.SDK.Input.Handlers.ManipulationHandler.ScaleAmount - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.ScaleAmount - nameWithType: ManipulationHandler.ScaleAmount -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.ScaleAmount* - name: ScaleAmount - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_ScaleAmount_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.ScaleAmount - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.ScaleAmount - nameWithType: ManipulationHandler.ScaleAmount -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.ScaleConstraints - name: ScaleConstraints - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_ScaleConstraints - commentId: P:XRTK.SDK.Input.Handlers.ManipulationHandler.ScaleConstraints - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.ScaleConstraints - nameWithType: ManipulationHandler.ScaleConstraints -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.ScaleConstraints* - name: ScaleConstraints - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_ScaleConstraints_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.ScaleConstraints - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.ScaleConstraints - nameWithType: ManipulationHandler.ScaleConstraints -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.ScaleZone - name: ScaleZone - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_ScaleZone - commentId: P:XRTK.SDK.Input.Handlers.ManipulationHandler.ScaleZone - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.ScaleZone - nameWithType: ManipulationHandler.ScaleZone -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.ScaleZone* - name: ScaleZone - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_ScaleZone_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.ScaleZone - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.ScaleZone - nameWithType: ManipulationHandler.ScaleZone -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.SelectAction - name: SelectAction - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_SelectAction - commentId: P:XRTK.SDK.Input.Handlers.ManipulationHandler.SelectAction - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.SelectAction - nameWithType: ManipulationHandler.SelectAction -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.SelectAction* - name: SelectAction - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_SelectAction_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.SelectAction - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.SelectAction - nameWithType: ManipulationHandler.SelectAction -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.SmoothingFactor - name: SmoothingFactor - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_SmoothingFactor - commentId: P:XRTK.SDK.Input.Handlers.ManipulationHandler.SmoothingFactor - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.SmoothingFactor - nameWithType: ManipulationHandler.SmoothingFactor -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.SmoothingFactor* - name: SmoothingFactor - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_SmoothingFactor_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.SmoothingFactor - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.SmoothingFactor - nameWithType: ManipulationHandler.SmoothingFactor -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.SmoothMotion - name: SmoothMotion - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_SmoothMotion - commentId: P:XRTK.SDK.Input.Handlers.ManipulationHandler.SmoothMotion - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.SmoothMotion - nameWithType: ManipulationHandler.SmoothMotion -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.SmoothMotion* - name: SmoothMotion - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_SmoothMotion_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.SmoothMotion - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.SmoothMotion - nameWithType: ManipulationHandler.SmoothMotion -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.SnapDistance - name: SnapDistance - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_SnapDistance - commentId: P:XRTK.SDK.Input.Handlers.ManipulationHandler.SnapDistance - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.SnapDistance - nameWithType: ManipulationHandler.SnapDistance -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.SnapDistance* - name: SnapDistance - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_SnapDistance_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.SnapDistance - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.SnapDistance - nameWithType: ManipulationHandler.SnapDistance -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.SnapToValidSurfaces - name: SnapToValidSurfaces - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_SnapToValidSurfaces - commentId: P:XRTK.SDK.Input.Handlers.ManipulationHandler.SnapToValidSurfaces - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.SnapToValidSurfaces - nameWithType: ManipulationHandler.SnapToValidSurfaces -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.SnapToValidSurfaces* - name: SnapToValidSurfaces - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_SnapToValidSurfaces_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.SnapToValidSurfaces - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.SnapToValidSurfaces - nameWithType: ManipulationHandler.SnapToValidSurfaces -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.SpatialMeshVisibility - name: SpatialMeshVisibility - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_SpatialMeshVisibility - commentId: P:XRTK.SDK.Input.Handlers.ManipulationHandler.SpatialMeshVisibility - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.SpatialMeshVisibility - nameWithType: ManipulationHandler.SpatialMeshVisibility -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.SpatialMeshVisibility* - name: SpatialMeshVisibility - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_SpatialMeshVisibility_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.SpatialMeshVisibility - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.SpatialMeshVisibility - nameWithType: ManipulationHandler.SpatialMeshVisibility -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.Start - name: Start() - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_Start - commentId: M:XRTK.SDK.Input.Handlers.ManipulationHandler.Start - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.Start() - nameWithType: ManipulationHandler.Start() -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.Start* - name: Start - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_Start_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.Start - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.Start - nameWithType: ManipulationHandler.Start -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.TouchpadPressAction - name: TouchpadPressAction - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_TouchpadPressAction - commentId: P:XRTK.SDK.Input.Handlers.ManipulationHandler.TouchpadPressAction - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.TouchpadPressAction - nameWithType: ManipulationHandler.TouchpadPressAction -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.TouchpadPressAction* - name: TouchpadPressAction - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_TouchpadPressAction_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.TouchpadPressAction - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.TouchpadPressAction - nameWithType: ManipulationHandler.TouchpadPressAction -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.TryGetRaycastBoundsCorners(System.Single,UnityEngine.Vector3,System.Boolean@,UnityEngine.RaycastHit@,UnityEngine.RaycastHit@) - name: TryGetRaycastBoundsCorners(Single, Vector3, out Boolean, out RaycastHit, out RaycastHit) - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_TryGetRaycastBoundsCorners_System_Single_UnityEngine_Vector3_System_Boolean__UnityEngine_RaycastHit__UnityEngine_RaycastHit__ - commentId: M:XRTK.SDK.Input.Handlers.ManipulationHandler.TryGetRaycastBoundsCorners(System.Single,UnityEngine.Vector3,System.Boolean@,UnityEngine.RaycastHit@,UnityEngine.RaycastHit@) - name.vb: TryGetRaycastBoundsCorners(Single, Vector3, ByRef Boolean, ByRef RaycastHit, ByRef RaycastHit) - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.TryGetRaycastBoundsCorners(System.Single, UnityEngine.Vector3, out System.Boolean, out UnityEngine.RaycastHit, out UnityEngine.RaycastHit) - fullName.vb: XRTK.SDK.Input.Handlers.ManipulationHandler.TryGetRaycastBoundsCorners(System.Single, UnityEngine.Vector3, ByRef System.Boolean, ByRef UnityEngine.RaycastHit, ByRef UnityEngine.RaycastHit) - nameWithType: ManipulationHandler.TryGetRaycastBoundsCorners(Single, Vector3, out Boolean, out RaycastHit, out RaycastHit) - nameWithType.vb: ManipulationHandler.TryGetRaycastBoundsCorners(Single, Vector3, ByRef Boolean, ByRef RaycastHit, ByRef RaycastHit) -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.TryGetRaycastBoundsCorners* - name: TryGetRaycastBoundsCorners - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_TryGetRaycastBoundsCorners_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.TryGetRaycastBoundsCorners - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.TryGetRaycastBoundsCorners - nameWithType: ManipulationHandler.TryGetRaycastBoundsCorners -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.UnsnapDistance - name: UnsnapDistance - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_UnsnapDistance - commentId: P:XRTK.SDK.Input.Handlers.ManipulationHandler.UnsnapDistance - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.UnsnapDistance - nameWithType: ManipulationHandler.UnsnapDistance -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.UnsnapDistance* - name: UnsnapDistance - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_UnsnapDistance_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.UnsnapDistance - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.UnsnapDistance - nameWithType: ManipulationHandler.UnsnapDistance -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.UseGrabOffset - name: UseGrabOffset - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_UseGrabOffset - commentId: P:XRTK.SDK.Input.Handlers.ManipulationHandler.UseGrabOffset - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.UseGrabOffset - nameWithType: ManipulationHandler.UseGrabOffset -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.UseGrabOffset* - name: UseGrabOffset - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_UseGrabOffset_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.UseGrabOffset - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.UseGrabOffset - nameWithType: ManipulationHandler.UseGrabOffset -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.UseHold - name: UseHold - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_UseHold - commentId: P:XRTK.SDK.Input.Handlers.ManipulationHandler.UseHold - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.UseHold - nameWithType: ManipulationHandler.UseHold -- uid: XRTK.SDK.Input.Handlers.ManipulationHandler.UseHold* - name: UseHold - href: api/XRTK.SDK.Input.Handlers.ManipulationHandler.html#XRTK_SDK_Input_Handlers_ManipulationHandler_UseHold_ - commentId: Overload:XRTK.SDK.Input.Handlers.ManipulationHandler.UseHold - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.ManipulationHandler.UseHold - nameWithType: ManipulationHandler.UseHold -- uid: XRTK.SDK.Input.Handlers.PointerClickHandler - name: PointerClickHandler - href: api/XRTK.SDK.Input.Handlers.PointerClickHandler.html - commentId: T:XRTK.SDK.Input.Handlers.PointerClickHandler - fullName: XRTK.SDK.Input.Handlers.PointerClickHandler - nameWithType: PointerClickHandler -- uid: XRTK.SDK.Input.Handlers.PointerClickHandler.OnPointerClicked(XRTK.EventDatum.Input.MixedRealityPointerEventData) - name: OnPointerClicked(MixedRealityPointerEventData) - href: api/XRTK.SDK.Input.Handlers.PointerClickHandler.html#XRTK_SDK_Input_Handlers_PointerClickHandler_OnPointerClicked_XRTK_EventDatum_Input_MixedRealityPointerEventData_ - commentId: M:XRTK.SDK.Input.Handlers.PointerClickHandler.OnPointerClicked(XRTK.EventDatum.Input.MixedRealityPointerEventData) - fullName: XRTK.SDK.Input.Handlers.PointerClickHandler.OnPointerClicked(XRTK.EventDatum.Input.MixedRealityPointerEventData) - nameWithType: PointerClickHandler.OnPointerClicked(MixedRealityPointerEventData) -- uid: XRTK.SDK.Input.Handlers.PointerClickHandler.OnPointerClicked* - name: OnPointerClicked - href: api/XRTK.SDK.Input.Handlers.PointerClickHandler.html#XRTK_SDK_Input_Handlers_PointerClickHandler_OnPointerClicked_ - commentId: Overload:XRTK.SDK.Input.Handlers.PointerClickHandler.OnPointerClicked - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.PointerClickHandler.OnPointerClicked - nameWithType: PointerClickHandler.OnPointerClicked -- uid: XRTK.SDK.Input.Handlers.PointerClickHandler.OnPointerDown(XRTK.EventDatum.Input.MixedRealityPointerEventData) - name: OnPointerDown(MixedRealityPointerEventData) - href: api/XRTK.SDK.Input.Handlers.PointerClickHandler.html#XRTK_SDK_Input_Handlers_PointerClickHandler_OnPointerDown_XRTK_EventDatum_Input_MixedRealityPointerEventData_ - commentId: M:XRTK.SDK.Input.Handlers.PointerClickHandler.OnPointerDown(XRTK.EventDatum.Input.MixedRealityPointerEventData) - fullName: XRTK.SDK.Input.Handlers.PointerClickHandler.OnPointerDown(XRTK.EventDatum.Input.MixedRealityPointerEventData) - nameWithType: PointerClickHandler.OnPointerDown(MixedRealityPointerEventData) -- uid: XRTK.SDK.Input.Handlers.PointerClickHandler.OnPointerDown* - name: OnPointerDown - href: api/XRTK.SDK.Input.Handlers.PointerClickHandler.html#XRTK_SDK_Input_Handlers_PointerClickHandler_OnPointerDown_ - commentId: Overload:XRTK.SDK.Input.Handlers.PointerClickHandler.OnPointerDown - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.PointerClickHandler.OnPointerDown - nameWithType: PointerClickHandler.OnPointerDown -- uid: XRTK.SDK.Input.Handlers.PointerClickHandler.OnPointerUp(XRTK.EventDatum.Input.MixedRealityPointerEventData) - name: OnPointerUp(MixedRealityPointerEventData) - href: api/XRTK.SDK.Input.Handlers.PointerClickHandler.html#XRTK_SDK_Input_Handlers_PointerClickHandler_OnPointerUp_XRTK_EventDatum_Input_MixedRealityPointerEventData_ - commentId: M:XRTK.SDK.Input.Handlers.PointerClickHandler.OnPointerUp(XRTK.EventDatum.Input.MixedRealityPointerEventData) - fullName: XRTK.SDK.Input.Handlers.PointerClickHandler.OnPointerUp(XRTK.EventDatum.Input.MixedRealityPointerEventData) - nameWithType: PointerClickHandler.OnPointerUp(MixedRealityPointerEventData) -- uid: XRTK.SDK.Input.Handlers.PointerClickHandler.OnPointerUp* - name: OnPointerUp - href: api/XRTK.SDK.Input.Handlers.PointerClickHandler.html#XRTK_SDK_Input_Handlers_PointerClickHandler_OnPointerUp_ - commentId: Overload:XRTK.SDK.Input.Handlers.PointerClickHandler.OnPointerUp - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.PointerClickHandler.OnPointerUp - nameWithType: PointerClickHandler.OnPointerUp -- uid: XRTK.SDK.Input.Handlers.SpeechInputHandler - name: SpeechInputHandler - href: api/XRTK.SDK.Input.Handlers.SpeechInputHandler.html - commentId: T:XRTK.SDK.Input.Handlers.SpeechInputHandler - fullName: XRTK.SDK.Input.Handlers.SpeechInputHandler - nameWithType: SpeechInputHandler -- uid: XRTK.SDK.Input.Handlers.SpeechInputHandler.Keywords - name: Keywords - href: api/XRTK.SDK.Input.Handlers.SpeechInputHandler.html#XRTK_SDK_Input_Handlers_SpeechInputHandler_Keywords - commentId: P:XRTK.SDK.Input.Handlers.SpeechInputHandler.Keywords - fullName: XRTK.SDK.Input.Handlers.SpeechInputHandler.Keywords - nameWithType: SpeechInputHandler.Keywords -- uid: XRTK.SDK.Input.Handlers.SpeechInputHandler.Keywords* - name: Keywords - href: api/XRTK.SDK.Input.Handlers.SpeechInputHandler.html#XRTK_SDK_Input_Handlers_SpeechInputHandler_Keywords_ - commentId: Overload:XRTK.SDK.Input.Handlers.SpeechInputHandler.Keywords - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.SpeechInputHandler.Keywords - nameWithType: SpeechInputHandler.Keywords -- uid: XRTK.SDK.Input.Handlers.SpeechInputHandler.Start - name: Start() - href: api/XRTK.SDK.Input.Handlers.SpeechInputHandler.html#XRTK_SDK_Input_Handlers_SpeechInputHandler_Start - commentId: M:XRTK.SDK.Input.Handlers.SpeechInputHandler.Start - fullName: XRTK.SDK.Input.Handlers.SpeechInputHandler.Start() - nameWithType: SpeechInputHandler.Start() -- uid: XRTK.SDK.Input.Handlers.SpeechInputHandler.Start* - name: Start - href: api/XRTK.SDK.Input.Handlers.SpeechInputHandler.html#XRTK_SDK_Input_Handlers_SpeechInputHandler_Start_ - commentId: Overload:XRTK.SDK.Input.Handlers.SpeechInputHandler.Start - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.SpeechInputHandler.Start - nameWithType: SpeechInputHandler.Start -- uid: XRTK.SDK.Input.Handlers.SpeechInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealitySpeechHandler#OnSpeechKeywordRecognized(XRTK.EventDatum.Input.SpeechEventData) - name: IMixedRealitySpeechHandler.OnSpeechKeywordRecognized(SpeechEventData) - href: api/XRTK.SDK.Input.Handlers.SpeechInputHandler.html#XRTK_SDK_Input_Handlers_SpeechInputHandler_XRTK_Interfaces_InputSystem_Handlers_IMixedRealitySpeechHandler_OnSpeechKeywordRecognized_XRTK_EventDatum_Input_SpeechEventData_ - commentId: M:XRTK.SDK.Input.Handlers.SpeechInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealitySpeechHandler#OnSpeechKeywordRecognized(XRTK.EventDatum.Input.SpeechEventData) - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySpeechHandler.OnSpeechKeywordRecognized(SpeechEventData) - fullName: XRTK.SDK.Input.Handlers.SpeechInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySpeechHandler.OnSpeechKeywordRecognized(XRTK.EventDatum.Input.SpeechEventData) - nameWithType: SpeechInputHandler.IMixedRealitySpeechHandler.OnSpeechKeywordRecognized(SpeechEventData) - nameWithType.vb: SpeechInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySpeechHandler.OnSpeechKeywordRecognized(SpeechEventData) -- uid: XRTK.SDK.Input.Handlers.SpeechInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealitySpeechHandler#OnSpeechKeywordRecognized* - name: IMixedRealitySpeechHandler.OnSpeechKeywordRecognized - href: api/XRTK.SDK.Input.Handlers.SpeechInputHandler.html#XRTK_SDK_Input_Handlers_SpeechInputHandler_XRTK_Interfaces_InputSystem_Handlers_IMixedRealitySpeechHandler_OnSpeechKeywordRecognized_ - commentId: Overload:XRTK.SDK.Input.Handlers.SpeechInputHandler.XRTK#Interfaces#InputSystem#Handlers#IMixedRealitySpeechHandler#OnSpeechKeywordRecognized - isSpec: "True" - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySpeechHandler.OnSpeechKeywordRecognized - fullName: XRTK.SDK.Input.Handlers.SpeechInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySpeechHandler.OnSpeechKeywordRecognized - nameWithType: SpeechInputHandler.IMixedRealitySpeechHandler.OnSpeechKeywordRecognized - nameWithType.vb: SpeechInputHandler.XRTK.Interfaces.InputSystem.Handlers.IMixedRealitySpeechHandler.OnSpeechKeywordRecognized -- uid: XRTK.SDK.Input.Handlers.TeleportHotSpot - name: TeleportHotSpot - href: api/XRTK.SDK.Input.Handlers.TeleportHotSpot.html - commentId: T:XRTK.SDK.Input.Handlers.TeleportHotSpot - fullName: XRTK.SDK.Input.Handlers.TeleportHotSpot - nameWithType: TeleportHotSpot -- uid: XRTK.SDK.Input.Handlers.TeleportHotSpot.GameObjectReference - name: GameObjectReference - href: api/XRTK.SDK.Input.Handlers.TeleportHotSpot.html#XRTK_SDK_Input_Handlers_TeleportHotSpot_GameObjectReference - commentId: P:XRTK.SDK.Input.Handlers.TeleportHotSpot.GameObjectReference - fullName: XRTK.SDK.Input.Handlers.TeleportHotSpot.GameObjectReference - nameWithType: TeleportHotSpot.GameObjectReference -- uid: XRTK.SDK.Input.Handlers.TeleportHotSpot.GameObjectReference* - name: GameObjectReference - href: api/XRTK.SDK.Input.Handlers.TeleportHotSpot.html#XRTK_SDK_Input_Handlers_TeleportHotSpot_GameObjectReference_ - commentId: Overload:XRTK.SDK.Input.Handlers.TeleportHotSpot.GameObjectReference - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.TeleportHotSpot.GameObjectReference - nameWithType: TeleportHotSpot.GameObjectReference -- uid: XRTK.SDK.Input.Handlers.TeleportHotSpot.IsActive - name: IsActive - href: api/XRTK.SDK.Input.Handlers.TeleportHotSpot.html#XRTK_SDK_Input_Handlers_TeleportHotSpot_IsActive - commentId: P:XRTK.SDK.Input.Handlers.TeleportHotSpot.IsActive - fullName: XRTK.SDK.Input.Handlers.TeleportHotSpot.IsActive - nameWithType: TeleportHotSpot.IsActive -- uid: XRTK.SDK.Input.Handlers.TeleportHotSpot.IsActive* - name: IsActive - href: api/XRTK.SDK.Input.Handlers.TeleportHotSpot.html#XRTK_SDK_Input_Handlers_TeleportHotSpot_IsActive_ - commentId: Overload:XRTK.SDK.Input.Handlers.TeleportHotSpot.IsActive - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.TeleportHotSpot.IsActive - nameWithType: TeleportHotSpot.IsActive -- uid: XRTK.SDK.Input.Handlers.TeleportHotSpot.Normal - name: Normal - href: api/XRTK.SDK.Input.Handlers.TeleportHotSpot.html#XRTK_SDK_Input_Handlers_TeleportHotSpot_Normal - commentId: P:XRTK.SDK.Input.Handlers.TeleportHotSpot.Normal - fullName: XRTK.SDK.Input.Handlers.TeleportHotSpot.Normal - nameWithType: TeleportHotSpot.Normal -- uid: XRTK.SDK.Input.Handlers.TeleportHotSpot.Normal* - name: Normal - href: api/XRTK.SDK.Input.Handlers.TeleportHotSpot.html#XRTK_SDK_Input_Handlers_TeleportHotSpot_Normal_ - commentId: Overload:XRTK.SDK.Input.Handlers.TeleportHotSpot.Normal - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.TeleportHotSpot.Normal - nameWithType: TeleportHotSpot.Normal -- uid: XRTK.SDK.Input.Handlers.TeleportHotSpot.OnBeforeFocusChange(XRTK.EventDatum.Input.FocusEventData) - name: OnBeforeFocusChange(FocusEventData) - href: api/XRTK.SDK.Input.Handlers.TeleportHotSpot.html#XRTK_SDK_Input_Handlers_TeleportHotSpot_OnBeforeFocusChange_XRTK_EventDatum_Input_FocusEventData_ - commentId: M:XRTK.SDK.Input.Handlers.TeleportHotSpot.OnBeforeFocusChange(XRTK.EventDatum.Input.FocusEventData) - fullName: XRTK.SDK.Input.Handlers.TeleportHotSpot.OnBeforeFocusChange(XRTK.EventDatum.Input.FocusEventData) - nameWithType: TeleportHotSpot.OnBeforeFocusChange(FocusEventData) -- uid: XRTK.SDK.Input.Handlers.TeleportHotSpot.OnBeforeFocusChange* - name: OnBeforeFocusChange - href: api/XRTK.SDK.Input.Handlers.TeleportHotSpot.html#XRTK_SDK_Input_Handlers_TeleportHotSpot_OnBeforeFocusChange_ - commentId: Overload:XRTK.SDK.Input.Handlers.TeleportHotSpot.OnBeforeFocusChange - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.TeleportHotSpot.OnBeforeFocusChange - nameWithType: TeleportHotSpot.OnBeforeFocusChange -- uid: XRTK.SDK.Input.Handlers.TeleportHotSpot.OverrideTargetOrientation - name: OverrideTargetOrientation - href: api/XRTK.SDK.Input.Handlers.TeleportHotSpot.html#XRTK_SDK_Input_Handlers_TeleportHotSpot_OverrideTargetOrientation - commentId: P:XRTK.SDK.Input.Handlers.TeleportHotSpot.OverrideTargetOrientation - fullName: XRTK.SDK.Input.Handlers.TeleportHotSpot.OverrideTargetOrientation - nameWithType: TeleportHotSpot.OverrideTargetOrientation -- uid: XRTK.SDK.Input.Handlers.TeleportHotSpot.OverrideTargetOrientation* - name: OverrideTargetOrientation - href: api/XRTK.SDK.Input.Handlers.TeleportHotSpot.html#XRTK_SDK_Input_Handlers_TeleportHotSpot_OverrideTargetOrientation_ - commentId: Overload:XRTK.SDK.Input.Handlers.TeleportHotSpot.OverrideTargetOrientation - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.TeleportHotSpot.OverrideTargetOrientation - nameWithType: TeleportHotSpot.OverrideTargetOrientation -- uid: XRTK.SDK.Input.Handlers.TeleportHotSpot.Position - name: Position - href: api/XRTK.SDK.Input.Handlers.TeleportHotSpot.html#XRTK_SDK_Input_Handlers_TeleportHotSpot_Position - commentId: P:XRTK.SDK.Input.Handlers.TeleportHotSpot.Position - fullName: XRTK.SDK.Input.Handlers.TeleportHotSpot.Position - nameWithType: TeleportHotSpot.Position -- uid: XRTK.SDK.Input.Handlers.TeleportHotSpot.Position* - name: Position - href: api/XRTK.SDK.Input.Handlers.TeleportHotSpot.html#XRTK_SDK_Input_Handlers_TeleportHotSpot_Position_ - commentId: Overload:XRTK.SDK.Input.Handlers.TeleportHotSpot.Position - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.TeleportHotSpot.Position - nameWithType: TeleportHotSpot.Position -- uid: XRTK.SDK.Input.Handlers.TeleportHotSpot.TargetOrientation - name: TargetOrientation - href: api/XRTK.SDK.Input.Handlers.TeleportHotSpot.html#XRTK_SDK_Input_Handlers_TeleportHotSpot_TargetOrientation - commentId: P:XRTK.SDK.Input.Handlers.TeleportHotSpot.TargetOrientation - fullName: XRTK.SDK.Input.Handlers.TeleportHotSpot.TargetOrientation - nameWithType: TeleportHotSpot.TargetOrientation -- uid: XRTK.SDK.Input.Handlers.TeleportHotSpot.TargetOrientation* - name: TargetOrientation - href: api/XRTK.SDK.Input.Handlers.TeleportHotSpot.html#XRTK_SDK_Input_Handlers_TeleportHotSpot_TargetOrientation_ - commentId: Overload:XRTK.SDK.Input.Handlers.TeleportHotSpot.TargetOrientation - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.TeleportHotSpot.TargetOrientation - nameWithType: TeleportHotSpot.TargetOrientation -- uid: XRTK.SDK.Input.Handlers.TeleportHotSpot.TeleportSystem - name: TeleportSystem - href: api/XRTK.SDK.Input.Handlers.TeleportHotSpot.html#XRTK_SDK_Input_Handlers_TeleportHotSpot_TeleportSystem - commentId: P:XRTK.SDK.Input.Handlers.TeleportHotSpot.TeleportSystem - fullName: XRTK.SDK.Input.Handlers.TeleportHotSpot.TeleportSystem - nameWithType: TeleportHotSpot.TeleportSystem -- uid: XRTK.SDK.Input.Handlers.TeleportHotSpot.TeleportSystem* - name: TeleportSystem - href: api/XRTK.SDK.Input.Handlers.TeleportHotSpot.html#XRTK_SDK_Input_Handlers_TeleportHotSpot_TeleportSystem_ - commentId: Overload:XRTK.SDK.Input.Handlers.TeleportHotSpot.TeleportSystem - isSpec: "True" - fullName: XRTK.SDK.Input.Handlers.TeleportHotSpot.TeleportSystem - nameWithType: TeleportHotSpot.TeleportSystem -- uid: XRTK.SDK.Input.InputSystemGlobalListener - name: InputSystemGlobalListener - href: api/XRTK.SDK.Input.InputSystemGlobalListener.html - commentId: T:XRTK.SDK.Input.InputSystemGlobalListener - fullName: XRTK.SDK.Input.InputSystemGlobalListener - nameWithType: InputSystemGlobalListener -- uid: XRTK.SDK.Input.InputSystemGlobalListener.InputSystem - name: InputSystem - href: api/XRTK.SDK.Input.InputSystemGlobalListener.html#XRTK_SDK_Input_InputSystemGlobalListener_InputSystem - commentId: P:XRTK.SDK.Input.InputSystemGlobalListener.InputSystem - fullName: XRTK.SDK.Input.InputSystemGlobalListener.InputSystem - nameWithType: InputSystemGlobalListener.InputSystem -- uid: XRTK.SDK.Input.InputSystemGlobalListener.InputSystem* - name: InputSystem - href: api/XRTK.SDK.Input.InputSystemGlobalListener.html#XRTK_SDK_Input_InputSystemGlobalListener_InputSystem_ - commentId: Overload:XRTK.SDK.Input.InputSystemGlobalListener.InputSystem - isSpec: "True" - fullName: XRTK.SDK.Input.InputSystemGlobalListener.InputSystem - nameWithType: InputSystemGlobalListener.InputSystem -- uid: XRTK.SDK.Input.InputSystemGlobalListener.OnDestroy - name: OnDestroy() - href: api/XRTK.SDK.Input.InputSystemGlobalListener.html#XRTK_SDK_Input_InputSystemGlobalListener_OnDestroy - commentId: M:XRTK.SDK.Input.InputSystemGlobalListener.OnDestroy - fullName: XRTK.SDK.Input.InputSystemGlobalListener.OnDestroy() - nameWithType: InputSystemGlobalListener.OnDestroy() -- uid: XRTK.SDK.Input.InputSystemGlobalListener.OnDestroy* - name: OnDestroy - href: api/XRTK.SDK.Input.InputSystemGlobalListener.html#XRTK_SDK_Input_InputSystemGlobalListener_OnDestroy_ - commentId: Overload:XRTK.SDK.Input.InputSystemGlobalListener.OnDestroy - isSpec: "True" - fullName: XRTK.SDK.Input.InputSystemGlobalListener.OnDestroy - nameWithType: InputSystemGlobalListener.OnDestroy -- uid: XRTK.SDK.Input.InputSystemGlobalListener.OnDisable - name: OnDisable() - href: api/XRTK.SDK.Input.InputSystemGlobalListener.html#XRTK_SDK_Input_InputSystemGlobalListener_OnDisable - commentId: M:XRTK.SDK.Input.InputSystemGlobalListener.OnDisable - fullName: XRTK.SDK.Input.InputSystemGlobalListener.OnDisable() - nameWithType: InputSystemGlobalListener.OnDisable() -- uid: XRTK.SDK.Input.InputSystemGlobalListener.OnDisable* - name: OnDisable - href: api/XRTK.SDK.Input.InputSystemGlobalListener.html#XRTK_SDK_Input_InputSystemGlobalListener_OnDisable_ - commentId: Overload:XRTK.SDK.Input.InputSystemGlobalListener.OnDisable - isSpec: "True" - fullName: XRTK.SDK.Input.InputSystemGlobalListener.OnDisable - nameWithType: InputSystemGlobalListener.OnDisable -- uid: XRTK.SDK.Input.InputSystemGlobalListener.OnEnable - name: OnEnable() - href: api/XRTK.SDK.Input.InputSystemGlobalListener.html#XRTK_SDK_Input_InputSystemGlobalListener_OnEnable - commentId: M:XRTK.SDK.Input.InputSystemGlobalListener.OnEnable - fullName: XRTK.SDK.Input.InputSystemGlobalListener.OnEnable() - nameWithType: InputSystemGlobalListener.OnEnable() -- uid: XRTK.SDK.Input.InputSystemGlobalListener.OnEnable* - name: OnEnable - href: api/XRTK.SDK.Input.InputSystemGlobalListener.html#XRTK_SDK_Input_InputSystemGlobalListener_OnEnable_ - commentId: Overload:XRTK.SDK.Input.InputSystemGlobalListener.OnEnable - isSpec: "True" - fullName: XRTK.SDK.Input.InputSystemGlobalListener.OnEnable - nameWithType: InputSystemGlobalListener.OnEnable -- uid: XRTK.SDK.Input.InputSystemGlobalListener.Start - name: Start() - href: api/XRTK.SDK.Input.InputSystemGlobalListener.html#XRTK_SDK_Input_InputSystemGlobalListener_Start - commentId: M:XRTK.SDK.Input.InputSystemGlobalListener.Start - fullName: XRTK.SDK.Input.InputSystemGlobalListener.Start() - nameWithType: InputSystemGlobalListener.Start() -- uid: XRTK.SDK.Input.InputSystemGlobalListener.Start* - name: Start - href: api/XRTK.SDK.Input.InputSystemGlobalListener.html#XRTK_SDK_Input_InputSystemGlobalListener_Start_ - commentId: Overload:XRTK.SDK.Input.InputSystemGlobalListener.Start - isSpec: "True" - fullName: XRTK.SDK.Input.InputSystemGlobalListener.Start - nameWithType: InputSystemGlobalListener.Start -- uid: XRTK.SDK.TeleportSystem - name: XRTK.SDK.TeleportSystem - href: api/XRTK.SDK.TeleportSystem.html - commentId: N:XRTK.SDK.TeleportSystem - fullName: XRTK.SDK.TeleportSystem - nameWithType: XRTK.SDK.TeleportSystem -- uid: XRTK.SDK.TeleportSystem.BaseTeleportProvider - name: BaseTeleportProvider - href: api/XRTK.SDK.TeleportSystem.BaseTeleportProvider.html - commentId: T:XRTK.SDK.TeleportSystem.BaseTeleportProvider - fullName: XRTK.SDK.TeleportSystem.BaseTeleportProvider - nameWithType: BaseTeleportProvider -- uid: XRTK.SDK.TeleportSystem.BaseTeleportProvider.OnDisable - name: OnDisable() - href: api/XRTK.SDK.TeleportSystem.BaseTeleportProvider.html#XRTK_SDK_TeleportSystem_BaseTeleportProvider_OnDisable - commentId: M:XRTK.SDK.TeleportSystem.BaseTeleportProvider.OnDisable - fullName: XRTK.SDK.TeleportSystem.BaseTeleportProvider.OnDisable() - nameWithType: BaseTeleportProvider.OnDisable() -- uid: XRTK.SDK.TeleportSystem.BaseTeleportProvider.OnDisable* - name: OnDisable - href: api/XRTK.SDK.TeleportSystem.BaseTeleportProvider.html#XRTK_SDK_TeleportSystem_BaseTeleportProvider_OnDisable_ - commentId: Overload:XRTK.SDK.TeleportSystem.BaseTeleportProvider.OnDisable - isSpec: "True" - fullName: XRTK.SDK.TeleportSystem.BaseTeleportProvider.OnDisable - nameWithType: BaseTeleportProvider.OnDisable -- uid: XRTK.SDK.TeleportSystem.BaseTeleportProvider.OnEnable - name: OnEnable() - href: api/XRTK.SDK.TeleportSystem.BaseTeleportProvider.html#XRTK_SDK_TeleportSystem_BaseTeleportProvider_OnEnable - commentId: M:XRTK.SDK.TeleportSystem.BaseTeleportProvider.OnEnable - fullName: XRTK.SDK.TeleportSystem.BaseTeleportProvider.OnEnable() - nameWithType: BaseTeleportProvider.OnEnable() -- uid: XRTK.SDK.TeleportSystem.BaseTeleportProvider.OnEnable* - name: OnEnable - href: api/XRTK.SDK.TeleportSystem.BaseTeleportProvider.html#XRTK_SDK_TeleportSystem_BaseTeleportProvider_OnEnable_ - commentId: Overload:XRTK.SDK.TeleportSystem.BaseTeleportProvider.OnEnable - isSpec: "True" - fullName: XRTK.SDK.TeleportSystem.BaseTeleportProvider.OnEnable - nameWithType: BaseTeleportProvider.OnEnable -- uid: XRTK.SDK.TeleportSystem.BaseTeleportProvider.OnTeleportCanceled(XRTK.EventDatum.Teleport.TeleportEventData) - name: OnTeleportCanceled(TeleportEventData) - href: api/XRTK.SDK.TeleportSystem.BaseTeleportProvider.html#XRTK_SDK_TeleportSystem_BaseTeleportProvider_OnTeleportCanceled_XRTK_EventDatum_Teleport_TeleportEventData_ - commentId: M:XRTK.SDK.TeleportSystem.BaseTeleportProvider.OnTeleportCanceled(XRTK.EventDatum.Teleport.TeleportEventData) - fullName: XRTK.SDK.TeleportSystem.BaseTeleportProvider.OnTeleportCanceled(XRTK.EventDatum.Teleport.TeleportEventData) - nameWithType: BaseTeleportProvider.OnTeleportCanceled(TeleportEventData) -- uid: XRTK.SDK.TeleportSystem.BaseTeleportProvider.OnTeleportCanceled* - name: OnTeleportCanceled - href: api/XRTK.SDK.TeleportSystem.BaseTeleportProvider.html#XRTK_SDK_TeleportSystem_BaseTeleportProvider_OnTeleportCanceled_ - commentId: Overload:XRTK.SDK.TeleportSystem.BaseTeleportProvider.OnTeleportCanceled - isSpec: "True" - fullName: XRTK.SDK.TeleportSystem.BaseTeleportProvider.OnTeleportCanceled - nameWithType: BaseTeleportProvider.OnTeleportCanceled -- uid: XRTK.SDK.TeleportSystem.BaseTeleportProvider.OnTeleportCompleted(XRTK.EventDatum.Teleport.TeleportEventData) - name: OnTeleportCompleted(TeleportEventData) - href: api/XRTK.SDK.TeleportSystem.BaseTeleportProvider.html#XRTK_SDK_TeleportSystem_BaseTeleportProvider_OnTeleportCompleted_XRTK_EventDatum_Teleport_TeleportEventData_ - commentId: M:XRTK.SDK.TeleportSystem.BaseTeleportProvider.OnTeleportCompleted(XRTK.EventDatum.Teleport.TeleportEventData) - fullName: XRTK.SDK.TeleportSystem.BaseTeleportProvider.OnTeleportCompleted(XRTK.EventDatum.Teleport.TeleportEventData) - nameWithType: BaseTeleportProvider.OnTeleportCompleted(TeleportEventData) -- uid: XRTK.SDK.TeleportSystem.BaseTeleportProvider.OnTeleportCompleted* - name: OnTeleportCompleted - href: api/XRTK.SDK.TeleportSystem.BaseTeleportProvider.html#XRTK_SDK_TeleportSystem_BaseTeleportProvider_OnTeleportCompleted_ - commentId: Overload:XRTK.SDK.TeleportSystem.BaseTeleportProvider.OnTeleportCompleted - isSpec: "True" - fullName: XRTK.SDK.TeleportSystem.BaseTeleportProvider.OnTeleportCompleted - nameWithType: BaseTeleportProvider.OnTeleportCompleted -- uid: XRTK.SDK.TeleportSystem.BaseTeleportProvider.OnTeleportRequest(XRTK.EventDatum.Teleport.TeleportEventData) - name: OnTeleportRequest(TeleportEventData) - href: api/XRTK.SDK.TeleportSystem.BaseTeleportProvider.html#XRTK_SDK_TeleportSystem_BaseTeleportProvider_OnTeleportRequest_XRTK_EventDatum_Teleport_TeleportEventData_ - commentId: M:XRTK.SDK.TeleportSystem.BaseTeleportProvider.OnTeleportRequest(XRTK.EventDatum.Teleport.TeleportEventData) - fullName: XRTK.SDK.TeleportSystem.BaseTeleportProvider.OnTeleportRequest(XRTK.EventDatum.Teleport.TeleportEventData) - nameWithType: BaseTeleportProvider.OnTeleportRequest(TeleportEventData) -- uid: XRTK.SDK.TeleportSystem.BaseTeleportProvider.OnTeleportRequest* - name: OnTeleportRequest - href: api/XRTK.SDK.TeleportSystem.BaseTeleportProvider.html#XRTK_SDK_TeleportSystem_BaseTeleportProvider_OnTeleportRequest_ - commentId: Overload:XRTK.SDK.TeleportSystem.BaseTeleportProvider.OnTeleportRequest - isSpec: "True" - fullName: XRTK.SDK.TeleportSystem.BaseTeleportProvider.OnTeleportRequest - nameWithType: BaseTeleportProvider.OnTeleportRequest -- uid: XRTK.SDK.TeleportSystem.BaseTeleportProvider.OnTeleportStarted(XRTK.EventDatum.Teleport.TeleportEventData) - name: OnTeleportStarted(TeleportEventData) - href: api/XRTK.SDK.TeleportSystem.BaseTeleportProvider.html#XRTK_SDK_TeleportSystem_BaseTeleportProvider_OnTeleportStarted_XRTK_EventDatum_Teleport_TeleportEventData_ - commentId: M:XRTK.SDK.TeleportSystem.BaseTeleportProvider.OnTeleportStarted(XRTK.EventDatum.Teleport.TeleportEventData) - fullName: XRTK.SDK.TeleportSystem.BaseTeleportProvider.OnTeleportStarted(XRTK.EventDatum.Teleport.TeleportEventData) - nameWithType: BaseTeleportProvider.OnTeleportStarted(TeleportEventData) -- uid: XRTK.SDK.TeleportSystem.BaseTeleportProvider.OnTeleportStarted* - name: OnTeleportStarted - href: api/XRTK.SDK.TeleportSystem.BaseTeleportProvider.html#XRTK_SDK_TeleportSystem_BaseTeleportProvider_OnTeleportStarted_ - commentId: Overload:XRTK.SDK.TeleportSystem.BaseTeleportProvider.OnTeleportStarted - isSpec: "True" - fullName: XRTK.SDK.TeleportSystem.BaseTeleportProvider.OnTeleportStarted - nameWithType: BaseTeleportProvider.OnTeleportStarted -- uid: XRTK.SDK.TeleportSystem.BaseTeleportProvider.TeleportSystem - name: TeleportSystem - href: api/XRTK.SDK.TeleportSystem.BaseTeleportProvider.html#XRTK_SDK_TeleportSystem_BaseTeleportProvider_TeleportSystem - commentId: P:XRTK.SDK.TeleportSystem.BaseTeleportProvider.TeleportSystem - fullName: XRTK.SDK.TeleportSystem.BaseTeleportProvider.TeleportSystem - nameWithType: BaseTeleportProvider.TeleportSystem -- uid: XRTK.SDK.TeleportSystem.BaseTeleportProvider.TeleportSystem* - name: TeleportSystem - href: api/XRTK.SDK.TeleportSystem.BaseTeleportProvider.html#XRTK_SDK_TeleportSystem_BaseTeleportProvider_TeleportSystem_ - commentId: Overload:XRTK.SDK.TeleportSystem.BaseTeleportProvider.TeleportSystem - isSpec: "True" - fullName: XRTK.SDK.TeleportSystem.BaseTeleportProvider.TeleportSystem - nameWithType: BaseTeleportProvider.TeleportSystem -- uid: XRTK.SDK.TeleportSystem.FadingTeleportProvider - name: FadingTeleportProvider - href: api/XRTK.SDK.TeleportSystem.FadingTeleportProvider.html - commentId: T:XRTK.SDK.TeleportSystem.FadingTeleportProvider - fullName: XRTK.SDK.TeleportSystem.FadingTeleportProvider - nameWithType: FadingTeleportProvider -- uid: XRTK.SDK.TeleportSystem.FadingTeleportProvider.OnTeleportCanceled(XRTK.EventDatum.Teleport.TeleportEventData) - name: OnTeleportCanceled(TeleportEventData) - href: api/XRTK.SDK.TeleportSystem.FadingTeleportProvider.html#XRTK_SDK_TeleportSystem_FadingTeleportProvider_OnTeleportCanceled_XRTK_EventDatum_Teleport_TeleportEventData_ - commentId: M:XRTK.SDK.TeleportSystem.FadingTeleportProvider.OnTeleportCanceled(XRTK.EventDatum.Teleport.TeleportEventData) - fullName: XRTK.SDK.TeleportSystem.FadingTeleportProvider.OnTeleportCanceled(XRTK.EventDatum.Teleport.TeleportEventData) - nameWithType: FadingTeleportProvider.OnTeleportCanceled(TeleportEventData) -- uid: XRTK.SDK.TeleportSystem.FadingTeleportProvider.OnTeleportCanceled* - name: OnTeleportCanceled - href: api/XRTK.SDK.TeleportSystem.FadingTeleportProvider.html#XRTK_SDK_TeleportSystem_FadingTeleportProvider_OnTeleportCanceled_ - commentId: Overload:XRTK.SDK.TeleportSystem.FadingTeleportProvider.OnTeleportCanceled - isSpec: "True" - fullName: XRTK.SDK.TeleportSystem.FadingTeleportProvider.OnTeleportCanceled - nameWithType: FadingTeleportProvider.OnTeleportCanceled -- uid: XRTK.SDK.TeleportSystem.FadingTeleportProvider.OnTeleportCompleted(XRTK.EventDatum.Teleport.TeleportEventData) - name: OnTeleportCompleted(TeleportEventData) - href: api/XRTK.SDK.TeleportSystem.FadingTeleportProvider.html#XRTK_SDK_TeleportSystem_FadingTeleportProvider_OnTeleportCompleted_XRTK_EventDatum_Teleport_TeleportEventData_ - commentId: M:XRTK.SDK.TeleportSystem.FadingTeleportProvider.OnTeleportCompleted(XRTK.EventDatum.Teleport.TeleportEventData) - fullName: XRTK.SDK.TeleportSystem.FadingTeleportProvider.OnTeleportCompleted(XRTK.EventDatum.Teleport.TeleportEventData) - nameWithType: FadingTeleportProvider.OnTeleportCompleted(TeleportEventData) -- uid: XRTK.SDK.TeleportSystem.FadingTeleportProvider.OnTeleportCompleted* - name: OnTeleportCompleted - href: api/XRTK.SDK.TeleportSystem.FadingTeleportProvider.html#XRTK_SDK_TeleportSystem_FadingTeleportProvider_OnTeleportCompleted_ - commentId: Overload:XRTK.SDK.TeleportSystem.FadingTeleportProvider.OnTeleportCompleted - isSpec: "True" - fullName: XRTK.SDK.TeleportSystem.FadingTeleportProvider.OnTeleportCompleted - nameWithType: FadingTeleportProvider.OnTeleportCompleted -- uid: XRTK.SDK.TeleportSystem.FadingTeleportProvider.OnTeleportStarted(XRTK.EventDatum.Teleport.TeleportEventData) - name: OnTeleportStarted(TeleportEventData) - href: api/XRTK.SDK.TeleportSystem.FadingTeleportProvider.html#XRTK_SDK_TeleportSystem_FadingTeleportProvider_OnTeleportStarted_XRTK_EventDatum_Teleport_TeleportEventData_ - commentId: M:XRTK.SDK.TeleportSystem.FadingTeleportProvider.OnTeleportStarted(XRTK.EventDatum.Teleport.TeleportEventData) - fullName: XRTK.SDK.TeleportSystem.FadingTeleportProvider.OnTeleportStarted(XRTK.EventDatum.Teleport.TeleportEventData) - nameWithType: FadingTeleportProvider.OnTeleportStarted(TeleportEventData) -- uid: XRTK.SDK.TeleportSystem.FadingTeleportProvider.OnTeleportStarted* - name: OnTeleportStarted - href: api/XRTK.SDK.TeleportSystem.FadingTeleportProvider.html#XRTK_SDK_TeleportSystem_FadingTeleportProvider_OnTeleportStarted_ - commentId: Overload:XRTK.SDK.TeleportSystem.FadingTeleportProvider.OnTeleportStarted - isSpec: "True" - fullName: XRTK.SDK.TeleportSystem.FadingTeleportProvider.OnTeleportStarted - nameWithType: FadingTeleportProvider.OnTeleportStarted -- uid: XRTK.SDK.Utilities.Solvers - name: XRTK.SDK.Utilities.Solvers - href: api/XRTK.SDK.Utilities.Solvers.html - commentId: N:XRTK.SDK.Utilities.Solvers - fullName: XRTK.SDK.Utilities.Solvers - nameWithType: XRTK.SDK.Utilities.Solvers -- uid: XRTK.SDK.Utilities.Solvers.ConstantViewSize - name: ConstantViewSize - href: api/XRTK.SDK.Utilities.Solvers.ConstantViewSize.html - commentId: T:XRTK.SDK.Utilities.Solvers.ConstantViewSize - fullName: XRTK.SDK.Utilities.Solvers.ConstantViewSize - nameWithType: ConstantViewSize -- uid: XRTK.SDK.Utilities.Solvers.ConstantViewSize.CurrentDistancePercent - name: CurrentDistancePercent - href: api/XRTK.SDK.Utilities.Solvers.ConstantViewSize.html#XRTK_SDK_Utilities_Solvers_ConstantViewSize_CurrentDistancePercent - commentId: P:XRTK.SDK.Utilities.Solvers.ConstantViewSize.CurrentDistancePercent - fullName: XRTK.SDK.Utilities.Solvers.ConstantViewSize.CurrentDistancePercent - nameWithType: ConstantViewSize.CurrentDistancePercent -- uid: XRTK.SDK.Utilities.Solvers.ConstantViewSize.CurrentDistancePercent* - name: CurrentDistancePercent - href: api/XRTK.SDK.Utilities.Solvers.ConstantViewSize.html#XRTK_SDK_Utilities_Solvers_ConstantViewSize_CurrentDistancePercent_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.ConstantViewSize.CurrentDistancePercent - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.ConstantViewSize.CurrentDistancePercent - nameWithType: ConstantViewSize.CurrentDistancePercent -- uid: XRTK.SDK.Utilities.Solvers.ConstantViewSize.CurrentScalePercent - name: CurrentScalePercent - href: api/XRTK.SDK.Utilities.Solvers.ConstantViewSize.html#XRTK_SDK_Utilities_Solvers_ConstantViewSize_CurrentScalePercent - commentId: P:XRTK.SDK.Utilities.Solvers.ConstantViewSize.CurrentScalePercent - fullName: XRTK.SDK.Utilities.Solvers.ConstantViewSize.CurrentScalePercent - nameWithType: ConstantViewSize.CurrentScalePercent -- uid: XRTK.SDK.Utilities.Solvers.ConstantViewSize.CurrentScalePercent* - name: CurrentScalePercent - href: api/XRTK.SDK.Utilities.Solvers.ConstantViewSize.html#XRTK_SDK_Utilities_Solvers_ConstantViewSize_CurrentScalePercent_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.ConstantViewSize.CurrentScalePercent - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.ConstantViewSize.CurrentScalePercent - nameWithType: ConstantViewSize.CurrentScalePercent -- uid: XRTK.SDK.Utilities.Solvers.ConstantViewSize.FovScale - name: FovScale - href: api/XRTK.SDK.Utilities.Solvers.ConstantViewSize.html#XRTK_SDK_Utilities_Solvers_ConstantViewSize_FovScale - commentId: P:XRTK.SDK.Utilities.Solvers.ConstantViewSize.FovScale - fullName: XRTK.SDK.Utilities.Solvers.ConstantViewSize.FovScale - nameWithType: ConstantViewSize.FovScale -- uid: XRTK.SDK.Utilities.Solvers.ConstantViewSize.FovScale* - name: FovScale - href: api/XRTK.SDK.Utilities.Solvers.ConstantViewSize.html#XRTK_SDK_Utilities_Solvers_ConstantViewSize_FovScale_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.ConstantViewSize.FovScale - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.ConstantViewSize.FovScale - nameWithType: ConstantViewSize.FovScale -- uid: XRTK.SDK.Utilities.Solvers.ConstantViewSize.ScaleState - name: ScaleState - href: api/XRTK.SDK.Utilities.Solvers.ConstantViewSize.html#XRTK_SDK_Utilities_Solvers_ConstantViewSize_ScaleState - commentId: P:XRTK.SDK.Utilities.Solvers.ConstantViewSize.ScaleState - fullName: XRTK.SDK.Utilities.Solvers.ConstantViewSize.ScaleState - nameWithType: ConstantViewSize.ScaleState -- uid: XRTK.SDK.Utilities.Solvers.ConstantViewSize.ScaleState* - name: ScaleState - href: api/XRTK.SDK.Utilities.Solvers.ConstantViewSize.html#XRTK_SDK_Utilities_Solvers_ConstantViewSize_ScaleState_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.ConstantViewSize.ScaleState - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.ConstantViewSize.ScaleState - nameWithType: ConstantViewSize.ScaleState -- uid: XRTK.SDK.Utilities.Solvers.ConstantViewSize.SolverUpdate - name: SolverUpdate() - href: api/XRTK.SDK.Utilities.Solvers.ConstantViewSize.html#XRTK_SDK_Utilities_Solvers_ConstantViewSize_SolverUpdate - commentId: M:XRTK.SDK.Utilities.Solvers.ConstantViewSize.SolverUpdate - fullName: XRTK.SDK.Utilities.Solvers.ConstantViewSize.SolverUpdate() - nameWithType: ConstantViewSize.SolverUpdate() -- uid: XRTK.SDK.Utilities.Solvers.ConstantViewSize.SolverUpdate* - name: SolverUpdate - href: api/XRTK.SDK.Utilities.Solvers.ConstantViewSize.html#XRTK_SDK_Utilities_Solvers_ConstantViewSize_SolverUpdate_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.ConstantViewSize.SolverUpdate - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.ConstantViewSize.SolverUpdate - nameWithType: ConstantViewSize.SolverUpdate -- uid: XRTK.SDK.Utilities.Solvers.ConstantViewSize.Start - name: Start() - href: api/XRTK.SDK.Utilities.Solvers.ConstantViewSize.html#XRTK_SDK_Utilities_Solvers_ConstantViewSize_Start - commentId: M:XRTK.SDK.Utilities.Solvers.ConstantViewSize.Start - fullName: XRTK.SDK.Utilities.Solvers.ConstantViewSize.Start() - nameWithType: ConstantViewSize.Start() -- uid: XRTK.SDK.Utilities.Solvers.ConstantViewSize.Start* - name: Start - href: api/XRTK.SDK.Utilities.Solvers.ConstantViewSize.html#XRTK_SDK_Utilities_Solvers_ConstantViewSize_Start_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.ConstantViewSize.Start - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.ConstantViewSize.Start - nameWithType: ConstantViewSize.Start -- uid: XRTK.SDK.Utilities.Solvers.ControllerFinder - name: ControllerFinder - href: api/XRTK.SDK.Utilities.Solvers.ControllerFinder.html - commentId: T:XRTK.SDK.Utilities.Solvers.ControllerFinder - fullName: XRTK.SDK.Utilities.Solvers.ControllerFinder - nameWithType: ControllerFinder -- uid: XRTK.SDK.Utilities.Solvers.ControllerFinder.AddControllerTransform(XRTK.Interfaces.Providers.Controllers.IMixedRealityController) - name: AddControllerTransform(IMixedRealityController) - href: api/XRTK.SDK.Utilities.Solvers.ControllerFinder.html#XRTK_SDK_Utilities_Solvers_ControllerFinder_AddControllerTransform_XRTK_Interfaces_Providers_Controllers_IMixedRealityController_ - commentId: M:XRTK.SDK.Utilities.Solvers.ControllerFinder.AddControllerTransform(XRTK.Interfaces.Providers.Controllers.IMixedRealityController) - fullName: XRTK.SDK.Utilities.Solvers.ControllerFinder.AddControllerTransform(XRTK.Interfaces.Providers.Controllers.IMixedRealityController) - nameWithType: ControllerFinder.AddControllerTransform(IMixedRealityController) -- uid: XRTK.SDK.Utilities.Solvers.ControllerFinder.AddControllerTransform* - name: AddControllerTransform - href: api/XRTK.SDK.Utilities.Solvers.ControllerFinder.html#XRTK_SDK_Utilities_Solvers_ControllerFinder_AddControllerTransform_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.ControllerFinder.AddControllerTransform - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.ControllerFinder.AddControllerTransform - nameWithType: ControllerFinder.AddControllerTransform -- uid: XRTK.SDK.Utilities.Solvers.ControllerFinder.ControllerTransform - name: ControllerTransform - href: api/XRTK.SDK.Utilities.Solvers.ControllerFinder.html#XRTK_SDK_Utilities_Solvers_ControllerFinder_ControllerTransform - commentId: F:XRTK.SDK.Utilities.Solvers.ControllerFinder.ControllerTransform - fullName: XRTK.SDK.Utilities.Solvers.ControllerFinder.ControllerTransform - nameWithType: ControllerFinder.ControllerTransform -- uid: XRTK.SDK.Utilities.Solvers.ControllerFinder.Handedness - name: Handedness - href: api/XRTK.SDK.Utilities.Solvers.ControllerFinder.html#XRTK_SDK_Utilities_Solvers_ControllerFinder_Handedness - commentId: P:XRTK.SDK.Utilities.Solvers.ControllerFinder.Handedness - fullName: XRTK.SDK.Utilities.Solvers.ControllerFinder.Handedness - nameWithType: ControllerFinder.Handedness -- uid: XRTK.SDK.Utilities.Solvers.ControllerFinder.Handedness* - name: Handedness - href: api/XRTK.SDK.Utilities.Solvers.ControllerFinder.html#XRTK_SDK_Utilities_Solvers_ControllerFinder_Handedness_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.ControllerFinder.Handedness - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.ControllerFinder.Handedness - nameWithType: ControllerFinder.Handedness -- uid: XRTK.SDK.Utilities.Solvers.ControllerFinder.OnControllerFound - name: OnControllerFound() - href: api/XRTK.SDK.Utilities.Solvers.ControllerFinder.html#XRTK_SDK_Utilities_Solvers_ControllerFinder_OnControllerFound - commentId: M:XRTK.SDK.Utilities.Solvers.ControllerFinder.OnControllerFound - fullName: XRTK.SDK.Utilities.Solvers.ControllerFinder.OnControllerFound() - nameWithType: ControllerFinder.OnControllerFound() -- uid: XRTK.SDK.Utilities.Solvers.ControllerFinder.OnControllerFound* - name: OnControllerFound - href: api/XRTK.SDK.Utilities.Solvers.ControllerFinder.html#XRTK_SDK_Utilities_Solvers_ControllerFinder_OnControllerFound_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.ControllerFinder.OnControllerFound - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.ControllerFinder.OnControllerFound - nameWithType: ControllerFinder.OnControllerFound -- uid: XRTK.SDK.Utilities.Solvers.ControllerFinder.OnControllerLost - name: OnControllerLost() - href: api/XRTK.SDK.Utilities.Solvers.ControllerFinder.html#XRTK_SDK_Utilities_Solvers_ControllerFinder_OnControllerLost - commentId: M:XRTK.SDK.Utilities.Solvers.ControllerFinder.OnControllerLost - fullName: XRTK.SDK.Utilities.Solvers.ControllerFinder.OnControllerLost() - nameWithType: ControllerFinder.OnControllerLost() -- uid: XRTK.SDK.Utilities.Solvers.ControllerFinder.OnControllerLost* - name: OnControllerLost - href: api/XRTK.SDK.Utilities.Solvers.ControllerFinder.html#XRTK_SDK_Utilities_Solvers_ControllerFinder_OnControllerLost_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.ControllerFinder.OnControllerLost - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.ControllerFinder.OnControllerLost - nameWithType: ControllerFinder.OnControllerLost -- uid: XRTK.SDK.Utilities.Solvers.ControllerFinder.OnEnable - name: OnEnable() - href: api/XRTK.SDK.Utilities.Solvers.ControllerFinder.html#XRTK_SDK_Utilities_Solvers_ControllerFinder_OnEnable - commentId: M:XRTK.SDK.Utilities.Solvers.ControllerFinder.OnEnable - fullName: XRTK.SDK.Utilities.Solvers.ControllerFinder.OnEnable() - nameWithType: ControllerFinder.OnEnable() -- uid: XRTK.SDK.Utilities.Solvers.ControllerFinder.OnEnable* - name: OnEnable - href: api/XRTK.SDK.Utilities.Solvers.ControllerFinder.html#XRTK_SDK_Utilities_Solvers_ControllerFinder_OnEnable_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.ControllerFinder.OnEnable - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.ControllerFinder.OnEnable - nameWithType: ControllerFinder.OnEnable -- uid: XRTK.SDK.Utilities.Solvers.ControllerFinder.OnSourceDetected(XRTK.EventDatum.Input.SourceStateEventData) - name: OnSourceDetected(SourceStateEventData) - href: api/XRTK.SDK.Utilities.Solvers.ControllerFinder.html#XRTK_SDK_Utilities_Solvers_ControllerFinder_OnSourceDetected_XRTK_EventDatum_Input_SourceStateEventData_ - commentId: M:XRTK.SDK.Utilities.Solvers.ControllerFinder.OnSourceDetected(XRTK.EventDatum.Input.SourceStateEventData) - fullName: XRTK.SDK.Utilities.Solvers.ControllerFinder.OnSourceDetected(XRTK.EventDatum.Input.SourceStateEventData) - nameWithType: ControllerFinder.OnSourceDetected(SourceStateEventData) -- uid: XRTK.SDK.Utilities.Solvers.ControllerFinder.OnSourceDetected* - name: OnSourceDetected - href: api/XRTK.SDK.Utilities.Solvers.ControllerFinder.html#XRTK_SDK_Utilities_Solvers_ControllerFinder_OnSourceDetected_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.ControllerFinder.OnSourceDetected - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.ControllerFinder.OnSourceDetected - nameWithType: ControllerFinder.OnSourceDetected -- uid: XRTK.SDK.Utilities.Solvers.ControllerFinder.OnSourceLost(XRTK.EventDatum.Input.SourceStateEventData) - name: OnSourceLost(SourceStateEventData) - href: api/XRTK.SDK.Utilities.Solvers.ControllerFinder.html#XRTK_SDK_Utilities_Solvers_ControllerFinder_OnSourceLost_XRTK_EventDatum_Input_SourceStateEventData_ - commentId: M:XRTK.SDK.Utilities.Solvers.ControllerFinder.OnSourceLost(XRTK.EventDatum.Input.SourceStateEventData) - fullName: XRTK.SDK.Utilities.Solvers.ControllerFinder.OnSourceLost(XRTK.EventDatum.Input.SourceStateEventData) - nameWithType: ControllerFinder.OnSourceLost(SourceStateEventData) -- uid: XRTK.SDK.Utilities.Solvers.ControllerFinder.OnSourceLost* - name: OnSourceLost - href: api/XRTK.SDK.Utilities.Solvers.ControllerFinder.html#XRTK_SDK_Utilities_Solvers_ControllerFinder_OnSourceLost_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.ControllerFinder.OnSourceLost - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.ControllerFinder.OnSourceLost - nameWithType: ControllerFinder.OnSourceLost -- uid: XRTK.SDK.Utilities.Solvers.ControllerFinder.RefreshControllerTransform - name: RefreshControllerTransform() - href: api/XRTK.SDK.Utilities.Solvers.ControllerFinder.html#XRTK_SDK_Utilities_Solvers_ControllerFinder_RefreshControllerTransform - commentId: M:XRTK.SDK.Utilities.Solvers.ControllerFinder.RefreshControllerTransform - fullName: XRTK.SDK.Utilities.Solvers.ControllerFinder.RefreshControllerTransform() - nameWithType: ControllerFinder.RefreshControllerTransform() -- uid: XRTK.SDK.Utilities.Solvers.ControllerFinder.RefreshControllerTransform* - name: RefreshControllerTransform - href: api/XRTK.SDK.Utilities.Solvers.ControllerFinder.html#XRTK_SDK_Utilities_Solvers_ControllerFinder_RefreshControllerTransform_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.ControllerFinder.RefreshControllerTransform - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.ControllerFinder.RefreshControllerTransform - nameWithType: ControllerFinder.RefreshControllerTransform -- uid: XRTK.SDK.Utilities.Solvers.ControllerFinder.RemoveControllerTransform - name: RemoveControllerTransform() - href: api/XRTK.SDK.Utilities.Solvers.ControllerFinder.html#XRTK_SDK_Utilities_Solvers_ControllerFinder_RemoveControllerTransform - commentId: M:XRTK.SDK.Utilities.Solvers.ControllerFinder.RemoveControllerTransform - fullName: XRTK.SDK.Utilities.Solvers.ControllerFinder.RemoveControllerTransform() - nameWithType: ControllerFinder.RemoveControllerTransform() -- uid: XRTK.SDK.Utilities.Solvers.ControllerFinder.RemoveControllerTransform* - name: RemoveControllerTransform - href: api/XRTK.SDK.Utilities.Solvers.ControllerFinder.html#XRTK_SDK_Utilities_Solvers_ControllerFinder_RemoveControllerTransform_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.ControllerFinder.RemoveControllerTransform - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.ControllerFinder.RemoveControllerTransform - nameWithType: ControllerFinder.RemoveControllerTransform -- uid: XRTK.SDK.Utilities.Solvers.ControllerFinder.TryAndAddControllerTransform - name: TryAndAddControllerTransform() - href: api/XRTK.SDK.Utilities.Solvers.ControllerFinder.html#XRTK_SDK_Utilities_Solvers_ControllerFinder_TryAndAddControllerTransform - commentId: M:XRTK.SDK.Utilities.Solvers.ControllerFinder.TryAndAddControllerTransform - fullName: XRTK.SDK.Utilities.Solvers.ControllerFinder.TryAndAddControllerTransform() - nameWithType: ControllerFinder.TryAndAddControllerTransform() -- uid: XRTK.SDK.Utilities.Solvers.ControllerFinder.TryAndAddControllerTransform* - name: TryAndAddControllerTransform - href: api/XRTK.SDK.Utilities.Solvers.ControllerFinder.html#XRTK_SDK_Utilities_Solvers_ControllerFinder_TryAndAddControllerTransform_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.ControllerFinder.TryAndAddControllerTransform - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.ControllerFinder.TryAndAddControllerTransform - nameWithType: ControllerFinder.TryAndAddControllerTransform -- uid: XRTK.SDK.Utilities.Solvers.InBetween - name: InBetween - href: api/XRTK.SDK.Utilities.Solvers.InBetween.html - commentId: T:XRTK.SDK.Utilities.Solvers.InBetween - fullName: XRTK.SDK.Utilities.Solvers.InBetween - nameWithType: InBetween -- uid: XRTK.SDK.Utilities.Solvers.InBetween.AttachSecondTransformToNewTrackedObject - name: AttachSecondTransformToNewTrackedObject() - href: api/XRTK.SDK.Utilities.Solvers.InBetween.html#XRTK_SDK_Utilities_Solvers_InBetween_AttachSecondTransformToNewTrackedObject - commentId: M:XRTK.SDK.Utilities.Solvers.InBetween.AttachSecondTransformToNewTrackedObject - fullName: XRTK.SDK.Utilities.Solvers.InBetween.AttachSecondTransformToNewTrackedObject() - nameWithType: InBetween.AttachSecondTransformToNewTrackedObject() -- uid: XRTK.SDK.Utilities.Solvers.InBetween.AttachSecondTransformToNewTrackedObject* - name: AttachSecondTransformToNewTrackedObject - href: api/XRTK.SDK.Utilities.Solvers.InBetween.html#XRTK_SDK_Utilities_Solvers_InBetween_AttachSecondTransformToNewTrackedObject_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.InBetween.AttachSecondTransformToNewTrackedObject - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.InBetween.AttachSecondTransformToNewTrackedObject - nameWithType: InBetween.AttachSecondTransformToNewTrackedObject -- uid: XRTK.SDK.Utilities.Solvers.InBetween.OnValidate - name: OnValidate() - href: api/XRTK.SDK.Utilities.Solvers.InBetween.html#XRTK_SDK_Utilities_Solvers_InBetween_OnValidate - commentId: M:XRTK.SDK.Utilities.Solvers.InBetween.OnValidate - fullName: XRTK.SDK.Utilities.Solvers.InBetween.OnValidate() - nameWithType: InBetween.OnValidate() -- uid: XRTK.SDK.Utilities.Solvers.InBetween.OnValidate* - name: OnValidate - href: api/XRTK.SDK.Utilities.Solvers.InBetween.html#XRTK_SDK_Utilities_Solvers_InBetween_OnValidate_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.InBetween.OnValidate - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.InBetween.OnValidate - nameWithType: InBetween.OnValidate -- uid: XRTK.SDK.Utilities.Solvers.InBetween.PartwayOffset - name: PartwayOffset - href: api/XRTK.SDK.Utilities.Solvers.InBetween.html#XRTK_SDK_Utilities_Solvers_InBetween_PartwayOffset - commentId: P:XRTK.SDK.Utilities.Solvers.InBetween.PartwayOffset - fullName: XRTK.SDK.Utilities.Solvers.InBetween.PartwayOffset - nameWithType: InBetween.PartwayOffset -- uid: XRTK.SDK.Utilities.Solvers.InBetween.PartwayOffset* - name: PartwayOffset - href: api/XRTK.SDK.Utilities.Solvers.InBetween.html#XRTK_SDK_Utilities_Solvers_InBetween_PartwayOffset_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.InBetween.PartwayOffset - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.InBetween.PartwayOffset - nameWithType: InBetween.PartwayOffset -- uid: XRTK.SDK.Utilities.Solvers.InBetween.SolverUpdate - name: SolverUpdate() - href: api/XRTK.SDK.Utilities.Solvers.InBetween.html#XRTK_SDK_Utilities_Solvers_InBetween_SolverUpdate - commentId: M:XRTK.SDK.Utilities.Solvers.InBetween.SolverUpdate - fullName: XRTK.SDK.Utilities.Solvers.InBetween.SolverUpdate() - nameWithType: InBetween.SolverUpdate() -- uid: XRTK.SDK.Utilities.Solvers.InBetween.SolverUpdate* - name: SolverUpdate - href: api/XRTK.SDK.Utilities.Solvers.InBetween.html#XRTK_SDK_Utilities_Solvers_InBetween_SolverUpdate_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.InBetween.SolverUpdate - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.InBetween.SolverUpdate - nameWithType: InBetween.SolverUpdate -- uid: XRTK.SDK.Utilities.Solvers.InBetween.Start - name: Start() - href: api/XRTK.SDK.Utilities.Solvers.InBetween.html#XRTK_SDK_Utilities_Solvers_InBetween_Start - commentId: M:XRTK.SDK.Utilities.Solvers.InBetween.Start - fullName: XRTK.SDK.Utilities.Solvers.InBetween.Start() - nameWithType: InBetween.Start() -- uid: XRTK.SDK.Utilities.Solvers.InBetween.Start* - name: Start - href: api/XRTK.SDK.Utilities.Solvers.InBetween.html#XRTK_SDK_Utilities_Solvers_InBetween_Start_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.InBetween.Start - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.InBetween.Start - nameWithType: InBetween.Start -- uid: XRTK.SDK.Utilities.Solvers.InBetween.TrackedObjectForSecondTransform - name: TrackedObjectForSecondTransform - href: api/XRTK.SDK.Utilities.Solvers.InBetween.html#XRTK_SDK_Utilities_Solvers_InBetween_TrackedObjectForSecondTransform - commentId: P:XRTK.SDK.Utilities.Solvers.InBetween.TrackedObjectForSecondTransform - fullName: XRTK.SDK.Utilities.Solvers.InBetween.TrackedObjectForSecondTransform - nameWithType: InBetween.TrackedObjectForSecondTransform -- uid: XRTK.SDK.Utilities.Solvers.InBetween.TrackedObjectForSecondTransform* - name: TrackedObjectForSecondTransform - href: api/XRTK.SDK.Utilities.Solvers.InBetween.html#XRTK_SDK_Utilities_Solvers_InBetween_TrackedObjectForSecondTransform_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.InBetween.TrackedObjectForSecondTransform - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.InBetween.TrackedObjectForSecondTransform - nameWithType: InBetween.TrackedObjectForSecondTransform -- uid: XRTK.SDK.Utilities.Solvers.Momentum - name: Momentum - href: api/XRTK.SDK.Utilities.Solvers.Momentum.html - commentId: T:XRTK.SDK.Utilities.Solvers.Momentum - fullName: XRTK.SDK.Utilities.Solvers.Momentum - nameWithType: Momentum -- uid: XRTK.SDK.Utilities.Solvers.Momentum.OnEnable - name: OnEnable() - href: api/XRTK.SDK.Utilities.Solvers.Momentum.html#XRTK_SDK_Utilities_Solvers_Momentum_OnEnable - commentId: M:XRTK.SDK.Utilities.Solvers.Momentum.OnEnable - fullName: XRTK.SDK.Utilities.Solvers.Momentum.OnEnable() - nameWithType: Momentum.OnEnable() -- uid: XRTK.SDK.Utilities.Solvers.Momentum.OnEnable* - name: OnEnable - href: api/XRTK.SDK.Utilities.Solvers.Momentum.html#XRTK_SDK_Utilities_Solvers_Momentum_OnEnable_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.Momentum.OnEnable - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.Momentum.OnEnable - nameWithType: Momentum.OnEnable -- uid: XRTK.SDK.Utilities.Solvers.Momentum.SnapTo(UnityEngine.Vector3,UnityEngine.Quaternion) - name: SnapTo(Vector3, Quaternion) - href: api/XRTK.SDK.Utilities.Solvers.Momentum.html#XRTK_SDK_Utilities_Solvers_Momentum_SnapTo_UnityEngine_Vector3_UnityEngine_Quaternion_ - commentId: M:XRTK.SDK.Utilities.Solvers.Momentum.SnapTo(UnityEngine.Vector3,UnityEngine.Quaternion) - fullName: XRTK.SDK.Utilities.Solvers.Momentum.SnapTo(UnityEngine.Vector3, UnityEngine.Quaternion) - nameWithType: Momentum.SnapTo(Vector3, Quaternion) -- uid: XRTK.SDK.Utilities.Solvers.Momentum.SnapTo* - name: SnapTo - href: api/XRTK.SDK.Utilities.Solvers.Momentum.html#XRTK_SDK_Utilities_Solvers_Momentum_SnapTo_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.Momentum.SnapTo - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.Momentum.SnapTo - nameWithType: Momentum.SnapTo -- uid: XRTK.SDK.Utilities.Solvers.Momentum.SolverUpdate - name: SolverUpdate() - href: api/XRTK.SDK.Utilities.Solvers.Momentum.html#XRTK_SDK_Utilities_Solvers_Momentum_SolverUpdate - commentId: M:XRTK.SDK.Utilities.Solvers.Momentum.SolverUpdate - fullName: XRTK.SDK.Utilities.Solvers.Momentum.SolverUpdate() - nameWithType: Momentum.SolverUpdate() -- uid: XRTK.SDK.Utilities.Solvers.Momentum.SolverUpdate* - name: SolverUpdate - href: api/XRTK.SDK.Utilities.Solvers.Momentum.html#XRTK_SDK_Utilities_Solvers_Momentum_SolverUpdate_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.Momentum.SolverUpdate - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.Momentum.SolverUpdate - nameWithType: Momentum.SolverUpdate -- uid: XRTK.SDK.Utilities.Solvers.Orbital - name: Orbital - href: api/XRTK.SDK.Utilities.Solvers.Orbital.html - commentId: T:XRTK.SDK.Utilities.Solvers.Orbital - fullName: XRTK.SDK.Utilities.Solvers.Orbital - nameWithType: Orbital -- uid: XRTK.SDK.Utilities.Solvers.Orbital.LocalOffset - name: LocalOffset - href: api/XRTK.SDK.Utilities.Solvers.Orbital.html#XRTK_SDK_Utilities_Solvers_Orbital_LocalOffset - commentId: P:XRTK.SDK.Utilities.Solvers.Orbital.LocalOffset - fullName: XRTK.SDK.Utilities.Solvers.Orbital.LocalOffset - nameWithType: Orbital.LocalOffset -- uid: XRTK.SDK.Utilities.Solvers.Orbital.LocalOffset* - name: LocalOffset - href: api/XRTK.SDK.Utilities.Solvers.Orbital.html#XRTK_SDK_Utilities_Solvers_Orbital_LocalOffset_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.Orbital.LocalOffset - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.Orbital.LocalOffset - nameWithType: Orbital.LocalOffset -- uid: XRTK.SDK.Utilities.Solvers.Orbital.OrientationType - name: OrientationType - href: api/XRTK.SDK.Utilities.Solvers.Orbital.html#XRTK_SDK_Utilities_Solvers_Orbital_OrientationType - commentId: P:XRTK.SDK.Utilities.Solvers.Orbital.OrientationType - fullName: XRTK.SDK.Utilities.Solvers.Orbital.OrientationType - nameWithType: Orbital.OrientationType -- uid: XRTK.SDK.Utilities.Solvers.Orbital.OrientationType* - name: OrientationType - href: api/XRTK.SDK.Utilities.Solvers.Orbital.html#XRTK_SDK_Utilities_Solvers_Orbital_OrientationType_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.Orbital.OrientationType - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.Orbital.OrientationType - nameWithType: Orbital.OrientationType -- uid: XRTK.SDK.Utilities.Solvers.Orbital.SolverUpdate - name: SolverUpdate() - href: api/XRTK.SDK.Utilities.Solvers.Orbital.html#XRTK_SDK_Utilities_Solvers_Orbital_SolverUpdate - commentId: M:XRTK.SDK.Utilities.Solvers.Orbital.SolverUpdate - fullName: XRTK.SDK.Utilities.Solvers.Orbital.SolverUpdate() - nameWithType: Orbital.SolverUpdate() -- uid: XRTK.SDK.Utilities.Solvers.Orbital.SolverUpdate* - name: SolverUpdate - href: api/XRTK.SDK.Utilities.Solvers.Orbital.html#XRTK_SDK_Utilities_Solvers_Orbital_SolverUpdate_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.Orbital.SolverUpdate - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.Orbital.SolverUpdate - nameWithType: Orbital.SolverUpdate -- uid: XRTK.SDK.Utilities.Solvers.Orbital.TetherAngleSteps - name: TetherAngleSteps - href: api/XRTK.SDK.Utilities.Solvers.Orbital.html#XRTK_SDK_Utilities_Solvers_Orbital_TetherAngleSteps - commentId: P:XRTK.SDK.Utilities.Solvers.Orbital.TetherAngleSteps - fullName: XRTK.SDK.Utilities.Solvers.Orbital.TetherAngleSteps - nameWithType: Orbital.TetherAngleSteps -- uid: XRTK.SDK.Utilities.Solvers.Orbital.TetherAngleSteps* - name: TetherAngleSteps - href: api/XRTK.SDK.Utilities.Solvers.Orbital.html#XRTK_SDK_Utilities_Solvers_Orbital_TetherAngleSteps_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.Orbital.TetherAngleSteps - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.Orbital.TetherAngleSteps - nameWithType: Orbital.TetherAngleSteps -- uid: XRTK.SDK.Utilities.Solvers.Orbital.UseAngleSteppingForWorldOffset - name: UseAngleSteppingForWorldOffset - href: api/XRTK.SDK.Utilities.Solvers.Orbital.html#XRTK_SDK_Utilities_Solvers_Orbital_UseAngleSteppingForWorldOffset - commentId: P:XRTK.SDK.Utilities.Solvers.Orbital.UseAngleSteppingForWorldOffset - fullName: XRTK.SDK.Utilities.Solvers.Orbital.UseAngleSteppingForWorldOffset - nameWithType: Orbital.UseAngleSteppingForWorldOffset -- uid: XRTK.SDK.Utilities.Solvers.Orbital.UseAngleSteppingForWorldOffset* - name: UseAngleSteppingForWorldOffset - href: api/XRTK.SDK.Utilities.Solvers.Orbital.html#XRTK_SDK_Utilities_Solvers_Orbital_UseAngleSteppingForWorldOffset_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.Orbital.UseAngleSteppingForWorldOffset - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.Orbital.UseAngleSteppingForWorldOffset - nameWithType: Orbital.UseAngleSteppingForWorldOffset -- uid: XRTK.SDK.Utilities.Solvers.Orbital.WorldOffset - name: WorldOffset - href: api/XRTK.SDK.Utilities.Solvers.Orbital.html#XRTK_SDK_Utilities_Solvers_Orbital_WorldOffset - commentId: P:XRTK.SDK.Utilities.Solvers.Orbital.WorldOffset - fullName: XRTK.SDK.Utilities.Solvers.Orbital.WorldOffset - nameWithType: Orbital.WorldOffset -- uid: XRTK.SDK.Utilities.Solvers.Orbital.WorldOffset* - name: WorldOffset - href: api/XRTK.SDK.Utilities.Solvers.Orbital.html#XRTK_SDK_Utilities_Solvers_Orbital_WorldOffset_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.Orbital.WorldOffset - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.Orbital.WorldOffset - nameWithType: Orbital.WorldOffset -- uid: XRTK.SDK.Utilities.Solvers.Overlap - name: Overlap - href: api/XRTK.SDK.Utilities.Solvers.Overlap.html - commentId: T:XRTK.SDK.Utilities.Solvers.Overlap - fullName: XRTK.SDK.Utilities.Solvers.Overlap - nameWithType: Overlap -- uid: XRTK.SDK.Utilities.Solvers.Overlap.SolverUpdate - name: SolverUpdate() - href: api/XRTK.SDK.Utilities.Solvers.Overlap.html#XRTK_SDK_Utilities_Solvers_Overlap_SolverUpdate - commentId: M:XRTK.SDK.Utilities.Solvers.Overlap.SolverUpdate - fullName: XRTK.SDK.Utilities.Solvers.Overlap.SolverUpdate() - nameWithType: Overlap.SolverUpdate() -- uid: XRTK.SDK.Utilities.Solvers.Overlap.SolverUpdate* - name: SolverUpdate - href: api/XRTK.SDK.Utilities.Solvers.Overlap.html#XRTK_SDK_Utilities_Solvers_Overlap_SolverUpdate_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.Overlap.SolverUpdate - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.Overlap.SolverUpdate - nameWithType: Overlap.SolverUpdate -- uid: XRTK.SDK.Utilities.Solvers.RadialView - name: RadialView - href: api/XRTK.SDK.Utilities.Solvers.RadialView.html - commentId: T:XRTK.SDK.Utilities.Solvers.RadialView - fullName: XRTK.SDK.Utilities.Solvers.RadialView - nameWithType: RadialView -- uid: XRTK.SDK.Utilities.Solvers.RadialView.SolverUpdate - name: SolverUpdate() - href: api/XRTK.SDK.Utilities.Solvers.RadialView.html#XRTK_SDK_Utilities_Solvers_RadialView_SolverUpdate - commentId: M:XRTK.SDK.Utilities.Solvers.RadialView.SolverUpdate - fullName: XRTK.SDK.Utilities.Solvers.RadialView.SolverUpdate() - nameWithType: RadialView.SolverUpdate() -- uid: XRTK.SDK.Utilities.Solvers.RadialView.SolverUpdate* - name: SolverUpdate - href: api/XRTK.SDK.Utilities.Solvers.RadialView.html#XRTK_SDK_Utilities_Solvers_RadialView_SolverUpdate_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.RadialView.SolverUpdate - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.RadialView.SolverUpdate - nameWithType: RadialView.SolverUpdate -- uid: XRTK.SDK.Utilities.Solvers.Solver - name: Solver - href: api/XRTK.SDK.Utilities.Solvers.Solver.html - commentId: T:XRTK.SDK.Utilities.Solvers.Solver - fullName: XRTK.SDK.Utilities.Solvers.Solver - nameWithType: Solver -- uid: XRTK.SDK.Utilities.Solvers.Solver.AddOffset(UnityEngine.Vector3) - name: AddOffset(Vector3) - href: api/XRTK.SDK.Utilities.Solvers.Solver.html#XRTK_SDK_Utilities_Solvers_Solver_AddOffset_UnityEngine_Vector3_ - commentId: M:XRTK.SDK.Utilities.Solvers.Solver.AddOffset(UnityEngine.Vector3) - fullName: XRTK.SDK.Utilities.Solvers.Solver.AddOffset(UnityEngine.Vector3) - nameWithType: Solver.AddOffset(Vector3) -- uid: XRTK.SDK.Utilities.Solvers.Solver.AddOffset* - name: AddOffset - href: api/XRTK.SDK.Utilities.Solvers.Solver.html#XRTK_SDK_Utilities_Solvers_Solver_AddOffset_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.Solver.AddOffset - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.Solver.AddOffset - nameWithType: Solver.AddOffset -- uid: XRTK.SDK.Utilities.Solvers.Solver.Awake - name: Awake() - href: api/XRTK.SDK.Utilities.Solvers.Solver.html#XRTK_SDK_Utilities_Solvers_Solver_Awake - commentId: M:XRTK.SDK.Utilities.Solvers.Solver.Awake - fullName: XRTK.SDK.Utilities.Solvers.Solver.Awake() - nameWithType: Solver.Awake() -- uid: XRTK.SDK.Utilities.Solvers.Solver.Awake* - name: Awake - href: api/XRTK.SDK.Utilities.Solvers.Solver.html#XRTK_SDK_Utilities_Solvers_Solver_Awake_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.Solver.Awake - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.Solver.Awake - nameWithType: Solver.Awake -- uid: XRTK.SDK.Utilities.Solvers.Solver.GoalPosition - name: GoalPosition - href: api/XRTK.SDK.Utilities.Solvers.Solver.html#XRTK_SDK_Utilities_Solvers_Solver_GoalPosition - commentId: F:XRTK.SDK.Utilities.Solvers.Solver.GoalPosition - fullName: XRTK.SDK.Utilities.Solvers.Solver.GoalPosition - nameWithType: Solver.GoalPosition -- uid: XRTK.SDK.Utilities.Solvers.Solver.GoalRotation - name: GoalRotation - href: api/XRTK.SDK.Utilities.Solvers.Solver.html#XRTK_SDK_Utilities_Solvers_Solver_GoalRotation - commentId: F:XRTK.SDK.Utilities.Solvers.Solver.GoalRotation - fullName: XRTK.SDK.Utilities.Solvers.Solver.GoalRotation - nameWithType: Solver.GoalRotation -- uid: XRTK.SDK.Utilities.Solvers.Solver.GoalScale - name: GoalScale - href: api/XRTK.SDK.Utilities.Solvers.Solver.html#XRTK_SDK_Utilities_Solvers_Solver_GoalScale - commentId: F:XRTK.SDK.Utilities.Solvers.Solver.GoalScale - fullName: XRTK.SDK.Utilities.Solvers.Solver.GoalScale - nameWithType: Solver.GoalScale -- uid: XRTK.SDK.Utilities.Solvers.Solver.OnEnable - name: OnEnable() - href: api/XRTK.SDK.Utilities.Solvers.Solver.html#XRTK_SDK_Utilities_Solvers_Solver_OnEnable - commentId: M:XRTK.SDK.Utilities.Solvers.Solver.OnEnable - fullName: XRTK.SDK.Utilities.Solvers.Solver.OnEnable() - nameWithType: Solver.OnEnable() -- uid: XRTK.SDK.Utilities.Solvers.Solver.OnEnable* - name: OnEnable - href: api/XRTK.SDK.Utilities.Solvers.Solver.html#XRTK_SDK_Utilities_Solvers_Solver_OnEnable_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.Solver.OnEnable - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.Solver.OnEnable - nameWithType: Solver.OnEnable -- uid: XRTK.SDK.Utilities.Solvers.Solver.OnValidate - name: OnValidate() - href: api/XRTK.SDK.Utilities.Solvers.Solver.html#XRTK_SDK_Utilities_Solvers_Solver_OnValidate - commentId: M:XRTK.SDK.Utilities.Solvers.Solver.OnValidate - fullName: XRTK.SDK.Utilities.Solvers.Solver.OnValidate() - nameWithType: Solver.OnValidate() -- uid: XRTK.SDK.Utilities.Solvers.Solver.OnValidate* - name: OnValidate - href: api/XRTK.SDK.Utilities.Solvers.Solver.html#XRTK_SDK_Utilities_Solvers_Solver_OnValidate_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.Solver.OnValidate - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.Solver.OnValidate - nameWithType: Solver.OnValidate -- uid: XRTK.SDK.Utilities.Solvers.Solver.SnapGoalTo(UnityEngine.Vector3,UnityEngine.Quaternion) - name: SnapGoalTo(Vector3, Quaternion) - href: api/XRTK.SDK.Utilities.Solvers.Solver.html#XRTK_SDK_Utilities_Solvers_Solver_SnapGoalTo_UnityEngine_Vector3_UnityEngine_Quaternion_ - commentId: M:XRTK.SDK.Utilities.Solvers.Solver.SnapGoalTo(UnityEngine.Vector3,UnityEngine.Quaternion) - fullName: XRTK.SDK.Utilities.Solvers.Solver.SnapGoalTo(UnityEngine.Vector3, UnityEngine.Quaternion) - nameWithType: Solver.SnapGoalTo(Vector3, Quaternion) -- uid: XRTK.SDK.Utilities.Solvers.Solver.SnapGoalTo* - name: SnapGoalTo - href: api/XRTK.SDK.Utilities.Solvers.Solver.html#XRTK_SDK_Utilities_Solvers_Solver_SnapGoalTo_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.Solver.SnapGoalTo - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.Solver.SnapGoalTo - nameWithType: Solver.SnapGoalTo -- uid: XRTK.SDK.Utilities.Solvers.Solver.SnapTo(UnityEngine.Vector3,UnityEngine.Quaternion) - name: SnapTo(Vector3, Quaternion) - href: api/XRTK.SDK.Utilities.Solvers.Solver.html#XRTK_SDK_Utilities_Solvers_Solver_SnapTo_UnityEngine_Vector3_UnityEngine_Quaternion_ - commentId: M:XRTK.SDK.Utilities.Solvers.Solver.SnapTo(UnityEngine.Vector3,UnityEngine.Quaternion) - fullName: XRTK.SDK.Utilities.Solvers.Solver.SnapTo(UnityEngine.Vector3, UnityEngine.Quaternion) - nameWithType: Solver.SnapTo(Vector3, Quaternion) -- uid: XRTK.SDK.Utilities.Solvers.Solver.SnapTo* - name: SnapTo - href: api/XRTK.SDK.Utilities.Solvers.Solver.html#XRTK_SDK_Utilities_Solvers_Solver_SnapTo_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.Solver.SnapTo - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.Solver.SnapTo - nameWithType: Solver.SnapTo -- uid: XRTK.SDK.Utilities.Solvers.Solver.SolverHandler - name: SolverHandler - href: api/XRTK.SDK.Utilities.Solvers.Solver.html#XRTK_SDK_Utilities_Solvers_Solver_SolverHandler - commentId: F:XRTK.SDK.Utilities.Solvers.Solver.SolverHandler - fullName: XRTK.SDK.Utilities.Solvers.Solver.SolverHandler - nameWithType: Solver.SolverHandler -- uid: XRTK.SDK.Utilities.Solvers.Solver.SolverUpdate - name: SolverUpdate() - href: api/XRTK.SDK.Utilities.Solvers.Solver.html#XRTK_SDK_Utilities_Solvers_Solver_SolverUpdate - commentId: M:XRTK.SDK.Utilities.Solvers.Solver.SolverUpdate - fullName: XRTK.SDK.Utilities.Solvers.Solver.SolverUpdate() - nameWithType: Solver.SolverUpdate() -- uid: XRTK.SDK.Utilities.Solvers.Solver.SolverUpdate* - name: SolverUpdate - href: api/XRTK.SDK.Utilities.Solvers.Solver.html#XRTK_SDK_Utilities_Solvers_Solver_SolverUpdate_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.Solver.SolverUpdate - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.Solver.SolverUpdate - nameWithType: Solver.SolverUpdate -- uid: XRTK.SDK.Utilities.Solvers.Solver.SolverUpdateEntry - name: SolverUpdateEntry() - href: api/XRTK.SDK.Utilities.Solvers.Solver.html#XRTK_SDK_Utilities_Solvers_Solver_SolverUpdateEntry - commentId: M:XRTK.SDK.Utilities.Solvers.Solver.SolverUpdateEntry - fullName: XRTK.SDK.Utilities.Solvers.Solver.SolverUpdateEntry() - nameWithType: Solver.SolverUpdateEntry() -- uid: XRTK.SDK.Utilities.Solvers.Solver.SolverUpdateEntry* - name: SolverUpdateEntry - href: api/XRTK.SDK.Utilities.Solvers.Solver.html#XRTK_SDK_Utilities_Solvers_Solver_SolverUpdateEntry_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.Solver.SolverUpdateEntry - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.Solver.SolverUpdateEntry - nameWithType: Solver.SolverUpdateEntry -- uid: XRTK.SDK.Utilities.Solvers.Solver.UpdateTransformToGoal - name: UpdateTransformToGoal() - href: api/XRTK.SDK.Utilities.Solvers.Solver.html#XRTK_SDK_Utilities_Solvers_Solver_UpdateTransformToGoal - commentId: M:XRTK.SDK.Utilities.Solvers.Solver.UpdateTransformToGoal - fullName: XRTK.SDK.Utilities.Solvers.Solver.UpdateTransformToGoal() - nameWithType: Solver.UpdateTransformToGoal() -- uid: XRTK.SDK.Utilities.Solvers.Solver.UpdateTransformToGoal* - name: UpdateTransformToGoal - href: api/XRTK.SDK.Utilities.Solvers.Solver.html#XRTK_SDK_Utilities_Solvers_Solver_UpdateTransformToGoal_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.Solver.UpdateTransformToGoal - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.Solver.UpdateTransformToGoal - nameWithType: Solver.UpdateTransformToGoal -- uid: XRTK.SDK.Utilities.Solvers.Solver.UpdateWorkingPositionToGoal - name: UpdateWorkingPositionToGoal() - href: api/XRTK.SDK.Utilities.Solvers.Solver.html#XRTK_SDK_Utilities_Solvers_Solver_UpdateWorkingPositionToGoal - commentId: M:XRTK.SDK.Utilities.Solvers.Solver.UpdateWorkingPositionToGoal - fullName: XRTK.SDK.Utilities.Solvers.Solver.UpdateWorkingPositionToGoal() - nameWithType: Solver.UpdateWorkingPositionToGoal() -- uid: XRTK.SDK.Utilities.Solvers.Solver.UpdateWorkingPositionToGoal* - name: UpdateWorkingPositionToGoal - href: api/XRTK.SDK.Utilities.Solvers.Solver.html#XRTK_SDK_Utilities_Solvers_Solver_UpdateWorkingPositionToGoal_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.Solver.UpdateWorkingPositionToGoal - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.Solver.UpdateWorkingPositionToGoal - nameWithType: Solver.UpdateWorkingPositionToGoal -- uid: XRTK.SDK.Utilities.Solvers.Solver.UpdateWorkingRotationToGoal - name: UpdateWorkingRotationToGoal() - href: api/XRTK.SDK.Utilities.Solvers.Solver.html#XRTK_SDK_Utilities_Solvers_Solver_UpdateWorkingRotationToGoal - commentId: M:XRTK.SDK.Utilities.Solvers.Solver.UpdateWorkingRotationToGoal - fullName: XRTK.SDK.Utilities.Solvers.Solver.UpdateWorkingRotationToGoal() - nameWithType: Solver.UpdateWorkingRotationToGoal() -- uid: XRTK.SDK.Utilities.Solvers.Solver.UpdateWorkingRotationToGoal* - name: UpdateWorkingRotationToGoal - href: api/XRTK.SDK.Utilities.Solvers.Solver.html#XRTK_SDK_Utilities_Solvers_Solver_UpdateWorkingRotationToGoal_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.Solver.UpdateWorkingRotationToGoal - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.Solver.UpdateWorkingRotationToGoal - nameWithType: Solver.UpdateWorkingRotationToGoal -- uid: XRTK.SDK.Utilities.Solvers.Solver.UpdateWorkingScaleToGoal - name: UpdateWorkingScaleToGoal() - href: api/XRTK.SDK.Utilities.Solvers.Solver.html#XRTK_SDK_Utilities_Solvers_Solver_UpdateWorkingScaleToGoal - commentId: M:XRTK.SDK.Utilities.Solvers.Solver.UpdateWorkingScaleToGoal - fullName: XRTK.SDK.Utilities.Solvers.Solver.UpdateWorkingScaleToGoal() - nameWithType: Solver.UpdateWorkingScaleToGoal() -- uid: XRTK.SDK.Utilities.Solvers.Solver.UpdateWorkingScaleToGoal* - name: UpdateWorkingScaleToGoal - href: api/XRTK.SDK.Utilities.Solvers.Solver.html#XRTK_SDK_Utilities_Solvers_Solver_UpdateWorkingScaleToGoal_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.Solver.UpdateWorkingScaleToGoal - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.Solver.UpdateWorkingScaleToGoal - nameWithType: Solver.UpdateWorkingScaleToGoal -- uid: XRTK.SDK.Utilities.Solvers.Solver.UpdateWorkingToGoal - name: UpdateWorkingToGoal() - href: api/XRTK.SDK.Utilities.Solvers.Solver.html#XRTK_SDK_Utilities_Solvers_Solver_UpdateWorkingToGoal - commentId: M:XRTK.SDK.Utilities.Solvers.Solver.UpdateWorkingToGoal - fullName: XRTK.SDK.Utilities.Solvers.Solver.UpdateWorkingToGoal() - nameWithType: Solver.UpdateWorkingToGoal() -- uid: XRTK.SDK.Utilities.Solvers.Solver.UpdateWorkingToGoal* - name: UpdateWorkingToGoal - href: api/XRTK.SDK.Utilities.Solvers.Solver.html#XRTK_SDK_Utilities_Solvers_Solver_UpdateWorkingToGoal_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.Solver.UpdateWorkingToGoal - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.Solver.UpdateWorkingToGoal - nameWithType: Solver.UpdateWorkingToGoal -- uid: XRTK.SDK.Utilities.Solvers.Solver.WorkingPosition - name: WorkingPosition - href: api/XRTK.SDK.Utilities.Solvers.Solver.html#XRTK_SDK_Utilities_Solvers_Solver_WorkingPosition - commentId: P:XRTK.SDK.Utilities.Solvers.Solver.WorkingPosition - fullName: XRTK.SDK.Utilities.Solvers.Solver.WorkingPosition - nameWithType: Solver.WorkingPosition -- uid: XRTK.SDK.Utilities.Solvers.Solver.WorkingPosition* - name: WorkingPosition - href: api/XRTK.SDK.Utilities.Solvers.Solver.html#XRTK_SDK_Utilities_Solvers_Solver_WorkingPosition_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.Solver.WorkingPosition - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.Solver.WorkingPosition - nameWithType: Solver.WorkingPosition -- uid: XRTK.SDK.Utilities.Solvers.Solver.WorkingRotation - name: WorkingRotation - href: api/XRTK.SDK.Utilities.Solvers.Solver.html#XRTK_SDK_Utilities_Solvers_Solver_WorkingRotation - commentId: P:XRTK.SDK.Utilities.Solvers.Solver.WorkingRotation - fullName: XRTK.SDK.Utilities.Solvers.Solver.WorkingRotation - nameWithType: Solver.WorkingRotation -- uid: XRTK.SDK.Utilities.Solvers.Solver.WorkingRotation* - name: WorkingRotation - href: api/XRTK.SDK.Utilities.Solvers.Solver.html#XRTK_SDK_Utilities_Solvers_Solver_WorkingRotation_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.Solver.WorkingRotation - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.Solver.WorkingRotation - nameWithType: Solver.WorkingRotation -- uid: XRTK.SDK.Utilities.Solvers.Solver.WorkingScale - name: WorkingScale - href: api/XRTK.SDK.Utilities.Solvers.Solver.html#XRTK_SDK_Utilities_Solvers_Solver_WorkingScale - commentId: P:XRTK.SDK.Utilities.Solvers.Solver.WorkingScale - fullName: XRTK.SDK.Utilities.Solvers.Solver.WorkingScale - nameWithType: Solver.WorkingScale -- uid: XRTK.SDK.Utilities.Solvers.Solver.WorkingScale* - name: WorkingScale - href: api/XRTK.SDK.Utilities.Solvers.Solver.html#XRTK_SDK_Utilities_Solvers_Solver_WorkingScale_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.Solver.WorkingScale - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.Solver.WorkingScale - nameWithType: Solver.WorkingScale -- uid: XRTK.SDK.Utilities.Solvers.SolverHandler - name: SolverHandler - href: api/XRTK.SDK.Utilities.Solvers.SolverHandler.html - commentId: T:XRTK.SDK.Utilities.Solvers.SolverHandler - fullName: XRTK.SDK.Utilities.Solvers.SolverHandler - nameWithType: SolverHandler -- uid: XRTK.SDK.Utilities.Solvers.SolverHandler.AdditionalOffset - name: AdditionalOffset - href: api/XRTK.SDK.Utilities.Solvers.SolverHandler.html#XRTK_SDK_Utilities_Solvers_SolverHandler_AdditionalOffset - commentId: P:XRTK.SDK.Utilities.Solvers.SolverHandler.AdditionalOffset - fullName: XRTK.SDK.Utilities.Solvers.SolverHandler.AdditionalOffset - nameWithType: SolverHandler.AdditionalOffset -- uid: XRTK.SDK.Utilities.Solvers.SolverHandler.AdditionalOffset* - name: AdditionalOffset - href: api/XRTK.SDK.Utilities.Solvers.SolverHandler.html#XRTK_SDK_Utilities_Solvers_SolverHandler_AdditionalOffset_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.SolverHandler.AdditionalOffset - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.SolverHandler.AdditionalOffset - nameWithType: SolverHandler.AdditionalOffset -- uid: XRTK.SDK.Utilities.Solvers.SolverHandler.AdditionalRotation - name: AdditionalRotation - href: api/XRTK.SDK.Utilities.Solvers.SolverHandler.html#XRTK_SDK_Utilities_Solvers_SolverHandler_AdditionalRotation - commentId: P:XRTK.SDK.Utilities.Solvers.SolverHandler.AdditionalRotation - fullName: XRTK.SDK.Utilities.Solvers.SolverHandler.AdditionalRotation - nameWithType: SolverHandler.AdditionalRotation -- uid: XRTK.SDK.Utilities.Solvers.SolverHandler.AdditionalRotation* - name: AdditionalRotation - href: api/XRTK.SDK.Utilities.Solvers.SolverHandler.html#XRTK_SDK_Utilities_Solvers_SolverHandler_AdditionalRotation_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.SolverHandler.AdditionalRotation - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.SolverHandler.AdditionalRotation - nameWithType: SolverHandler.AdditionalRotation -- uid: XRTK.SDK.Utilities.Solvers.SolverHandler.AltScale - name: AltScale - href: api/XRTK.SDK.Utilities.Solvers.SolverHandler.html#XRTK_SDK_Utilities_Solvers_SolverHandler_AltScale - commentId: P:XRTK.SDK.Utilities.Solvers.SolverHandler.AltScale - fullName: XRTK.SDK.Utilities.Solvers.SolverHandler.AltScale - nameWithType: SolverHandler.AltScale -- uid: XRTK.SDK.Utilities.Solvers.SolverHandler.AltScale* - name: AltScale - href: api/XRTK.SDK.Utilities.Solvers.SolverHandler.html#XRTK_SDK_Utilities_Solvers_SolverHandler_AltScale_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.SolverHandler.AltScale - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.SolverHandler.AltScale - nameWithType: SolverHandler.AltScale -- uid: XRTK.SDK.Utilities.Solvers.SolverHandler.AttachToNewTrackedObject - name: AttachToNewTrackedObject() - href: api/XRTK.SDK.Utilities.Solvers.SolverHandler.html#XRTK_SDK_Utilities_Solvers_SolverHandler_AttachToNewTrackedObject - commentId: M:XRTK.SDK.Utilities.Solvers.SolverHandler.AttachToNewTrackedObject - fullName: XRTK.SDK.Utilities.Solvers.SolverHandler.AttachToNewTrackedObject() - nameWithType: SolverHandler.AttachToNewTrackedObject() -- uid: XRTK.SDK.Utilities.Solvers.SolverHandler.AttachToNewTrackedObject* - name: AttachToNewTrackedObject - href: api/XRTK.SDK.Utilities.Solvers.SolverHandler.html#XRTK_SDK_Utilities_Solvers_SolverHandler_AttachToNewTrackedObject_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.SolverHandler.AttachToNewTrackedObject - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.SolverHandler.AttachToNewTrackedObject - nameWithType: SolverHandler.AttachToNewTrackedObject -- uid: XRTK.SDK.Utilities.Solvers.SolverHandler.DeltaTime - name: DeltaTime - href: api/XRTK.SDK.Utilities.Solvers.SolverHandler.html#XRTK_SDK_Utilities_Solvers_SolverHandler_DeltaTime - commentId: P:XRTK.SDK.Utilities.Solvers.SolverHandler.DeltaTime - fullName: XRTK.SDK.Utilities.Solvers.SolverHandler.DeltaTime - nameWithType: SolverHandler.DeltaTime -- uid: XRTK.SDK.Utilities.Solvers.SolverHandler.DeltaTime* - name: DeltaTime - href: api/XRTK.SDK.Utilities.Solvers.SolverHandler.html#XRTK_SDK_Utilities_Solvers_SolverHandler_DeltaTime_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.SolverHandler.DeltaTime - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.SolverHandler.DeltaTime - nameWithType: SolverHandler.DeltaTime -- uid: XRTK.SDK.Utilities.Solvers.SolverHandler.DetachFromCurrentTrackedObject - name: DetachFromCurrentTrackedObject() - href: api/XRTK.SDK.Utilities.Solvers.SolverHandler.html#XRTK_SDK_Utilities_Solvers_SolverHandler_DetachFromCurrentTrackedObject - commentId: M:XRTK.SDK.Utilities.Solvers.SolverHandler.DetachFromCurrentTrackedObject - fullName: XRTK.SDK.Utilities.Solvers.SolverHandler.DetachFromCurrentTrackedObject() - nameWithType: SolverHandler.DetachFromCurrentTrackedObject() -- uid: XRTK.SDK.Utilities.Solvers.SolverHandler.DetachFromCurrentTrackedObject* - name: DetachFromCurrentTrackedObject - href: api/XRTK.SDK.Utilities.Solvers.SolverHandler.html#XRTK_SDK_Utilities_Solvers_SolverHandler_DetachFromCurrentTrackedObject_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.SolverHandler.DetachFromCurrentTrackedObject - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.SolverHandler.DetachFromCurrentTrackedObject - nameWithType: SolverHandler.DetachFromCurrentTrackedObject -- uid: XRTK.SDK.Utilities.Solvers.SolverHandler.GoalPosition - name: GoalPosition - href: api/XRTK.SDK.Utilities.Solvers.SolverHandler.html#XRTK_SDK_Utilities_Solvers_SolverHandler_GoalPosition - commentId: P:XRTK.SDK.Utilities.Solvers.SolverHandler.GoalPosition - fullName: XRTK.SDK.Utilities.Solvers.SolverHandler.GoalPosition - nameWithType: SolverHandler.GoalPosition -- uid: XRTK.SDK.Utilities.Solvers.SolverHandler.GoalPosition* - name: GoalPosition - href: api/XRTK.SDK.Utilities.Solvers.SolverHandler.html#XRTK_SDK_Utilities_Solvers_SolverHandler_GoalPosition_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.SolverHandler.GoalPosition - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.SolverHandler.GoalPosition - nameWithType: SolverHandler.GoalPosition -- uid: XRTK.SDK.Utilities.Solvers.SolverHandler.GoalRotation - name: GoalRotation - href: api/XRTK.SDK.Utilities.Solvers.SolverHandler.html#XRTK_SDK_Utilities_Solvers_SolverHandler_GoalRotation - commentId: P:XRTK.SDK.Utilities.Solvers.SolverHandler.GoalRotation - fullName: XRTK.SDK.Utilities.Solvers.SolverHandler.GoalRotation - nameWithType: SolverHandler.GoalRotation -- uid: XRTK.SDK.Utilities.Solvers.SolverHandler.GoalRotation* - name: GoalRotation - href: api/XRTK.SDK.Utilities.Solvers.SolverHandler.html#XRTK_SDK_Utilities_Solvers_SolverHandler_GoalRotation_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.SolverHandler.GoalRotation - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.SolverHandler.GoalRotation - nameWithType: SolverHandler.GoalRotation -- uid: XRTK.SDK.Utilities.Solvers.SolverHandler.GoalScale - name: GoalScale - href: api/XRTK.SDK.Utilities.Solvers.SolverHandler.html#XRTK_SDK_Utilities_Solvers_SolverHandler_GoalScale - commentId: P:XRTK.SDK.Utilities.Solvers.SolverHandler.GoalScale - fullName: XRTK.SDK.Utilities.Solvers.SolverHandler.GoalScale - nameWithType: SolverHandler.GoalScale -- uid: XRTK.SDK.Utilities.Solvers.SolverHandler.GoalScale* - name: GoalScale - href: api/XRTK.SDK.Utilities.Solvers.SolverHandler.html#XRTK_SDK_Utilities_Solvers_SolverHandler_GoalScale_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.SolverHandler.GoalScale - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.SolverHandler.GoalScale - nameWithType: SolverHandler.GoalScale -- uid: XRTK.SDK.Utilities.Solvers.SolverHandler.OnControllerFound - name: OnControllerFound() - href: api/XRTK.SDK.Utilities.Solvers.SolverHandler.html#XRTK_SDK_Utilities_Solvers_SolverHandler_OnControllerFound - commentId: M:XRTK.SDK.Utilities.Solvers.SolverHandler.OnControllerFound - fullName: XRTK.SDK.Utilities.Solvers.SolverHandler.OnControllerFound() - nameWithType: SolverHandler.OnControllerFound() -- uid: XRTK.SDK.Utilities.Solvers.SolverHandler.OnControllerFound* - name: OnControllerFound - href: api/XRTK.SDK.Utilities.Solvers.SolverHandler.html#XRTK_SDK_Utilities_Solvers_SolverHandler_OnControllerFound_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.SolverHandler.OnControllerFound - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.SolverHandler.OnControllerFound - nameWithType: SolverHandler.OnControllerFound -- uid: XRTK.SDK.Utilities.Solvers.SolverHandler.OnControllerLost - name: OnControllerLost() - href: api/XRTK.SDK.Utilities.Solvers.SolverHandler.html#XRTK_SDK_Utilities_Solvers_SolverHandler_OnControllerLost - commentId: M:XRTK.SDK.Utilities.Solvers.SolverHandler.OnControllerLost - fullName: XRTK.SDK.Utilities.Solvers.SolverHandler.OnControllerLost() - nameWithType: SolverHandler.OnControllerLost() -- uid: XRTK.SDK.Utilities.Solvers.SolverHandler.OnControllerLost* - name: OnControllerLost - href: api/XRTK.SDK.Utilities.Solvers.SolverHandler.html#XRTK_SDK_Utilities_Solvers_SolverHandler_OnControllerLost_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.SolverHandler.OnControllerLost - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.SolverHandler.OnControllerLost - nameWithType: SolverHandler.OnControllerLost -- uid: XRTK.SDK.Utilities.Solvers.SolverHandler.OnDestroy - name: OnDestroy() - href: api/XRTK.SDK.Utilities.Solvers.SolverHandler.html#XRTK_SDK_Utilities_Solvers_SolverHandler_OnDestroy - commentId: M:XRTK.SDK.Utilities.Solvers.SolverHandler.OnDestroy - fullName: XRTK.SDK.Utilities.Solvers.SolverHandler.OnDestroy() - nameWithType: SolverHandler.OnDestroy() -- uid: XRTK.SDK.Utilities.Solvers.SolverHandler.OnDestroy* - name: OnDestroy - href: api/XRTK.SDK.Utilities.Solvers.SolverHandler.html#XRTK_SDK_Utilities_Solvers_SolverHandler_OnDestroy_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.SolverHandler.OnDestroy - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.SolverHandler.OnDestroy - nameWithType: SolverHandler.OnDestroy -- uid: XRTK.SDK.Utilities.Solvers.SolverHandler.RefreshTrackedObject - name: RefreshTrackedObject() - href: api/XRTK.SDK.Utilities.Solvers.SolverHandler.html#XRTK_SDK_Utilities_Solvers_SolverHandler_RefreshTrackedObject - commentId: M:XRTK.SDK.Utilities.Solvers.SolverHandler.RefreshTrackedObject - fullName: XRTK.SDK.Utilities.Solvers.SolverHandler.RefreshTrackedObject() - nameWithType: SolverHandler.RefreshTrackedObject() -- uid: XRTK.SDK.Utilities.Solvers.SolverHandler.RefreshTrackedObject* - name: RefreshTrackedObject - href: api/XRTK.SDK.Utilities.Solvers.SolverHandler.html#XRTK_SDK_Utilities_Solvers_SolverHandler_RefreshTrackedObject_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.SolverHandler.RefreshTrackedObject - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.SolverHandler.RefreshTrackedObject - nameWithType: SolverHandler.RefreshTrackedObject -- uid: XRTK.SDK.Utilities.Solvers.SolverHandler.TrackedObjectToReference - name: TrackedObjectToReference - href: api/XRTK.SDK.Utilities.Solvers.SolverHandler.html#XRTK_SDK_Utilities_Solvers_SolverHandler_TrackedObjectToReference - commentId: P:XRTK.SDK.Utilities.Solvers.SolverHandler.TrackedObjectToReference - fullName: XRTK.SDK.Utilities.Solvers.SolverHandler.TrackedObjectToReference - nameWithType: SolverHandler.TrackedObjectToReference -- uid: XRTK.SDK.Utilities.Solvers.SolverHandler.TrackedObjectToReference* - name: TrackedObjectToReference - href: api/XRTK.SDK.Utilities.Solvers.SolverHandler.html#XRTK_SDK_Utilities_Solvers_SolverHandler_TrackedObjectToReference_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.SolverHandler.TrackedObjectToReference - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.SolverHandler.TrackedObjectToReference - nameWithType: SolverHandler.TrackedObjectToReference -- uid: XRTK.SDK.Utilities.Solvers.SolverHandler.TransformTarget - name: TransformTarget - href: api/XRTK.SDK.Utilities.Solvers.SolverHandler.html#XRTK_SDK_Utilities_Solvers_SolverHandler_TransformTarget - commentId: P:XRTK.SDK.Utilities.Solvers.SolverHandler.TransformTarget - fullName: XRTK.SDK.Utilities.Solvers.SolverHandler.TransformTarget - nameWithType: SolverHandler.TransformTarget -- uid: XRTK.SDK.Utilities.Solvers.SolverHandler.TransformTarget* - name: TransformTarget - href: api/XRTK.SDK.Utilities.Solvers.SolverHandler.html#XRTK_SDK_Utilities_Solvers_SolverHandler_TransformTarget_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.SolverHandler.TransformTarget - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.SolverHandler.TransformTarget - nameWithType: SolverHandler.TransformTarget -- uid: XRTK.SDK.Utilities.Solvers.SolverHandler.UpdateSolvers - name: UpdateSolvers - href: api/XRTK.SDK.Utilities.Solvers.SolverHandler.html#XRTK_SDK_Utilities_Solvers_SolverHandler_UpdateSolvers - commentId: P:XRTK.SDK.Utilities.Solvers.SolverHandler.UpdateSolvers - fullName: XRTK.SDK.Utilities.Solvers.SolverHandler.UpdateSolvers - nameWithType: SolverHandler.UpdateSolvers -- uid: XRTK.SDK.Utilities.Solvers.SolverHandler.UpdateSolvers* - name: UpdateSolvers - href: api/XRTK.SDK.Utilities.Solvers.SolverHandler.html#XRTK_SDK_Utilities_Solvers_SolverHandler_UpdateSolvers_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.SolverHandler.UpdateSolvers - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.SolverHandler.UpdateSolvers - nameWithType: SolverHandler.UpdateSolvers -- uid: XRTK.SDK.Utilities.Solvers.SurfaceMagnetism - name: SurfaceMagnetism - href: api/XRTK.SDK.Utilities.Solvers.SurfaceMagnetism.html - commentId: T:XRTK.SDK.Utilities.Solvers.SurfaceMagnetism - fullName: XRTK.SDK.Utilities.Solvers.SurfaceMagnetism - nameWithType: SurfaceMagnetism -- uid: XRTK.SDK.Utilities.Solvers.SurfaceMagnetism.OnSurface - name: OnSurface - href: api/XRTK.SDK.Utilities.Solvers.SurfaceMagnetism.html#XRTK_SDK_Utilities_Solvers_SurfaceMagnetism_OnSurface - commentId: P:XRTK.SDK.Utilities.Solvers.SurfaceMagnetism.OnSurface - fullName: XRTK.SDK.Utilities.Solvers.SurfaceMagnetism.OnSurface - nameWithType: SurfaceMagnetism.OnSurface -- uid: XRTK.SDK.Utilities.Solvers.SurfaceMagnetism.OnSurface* - name: OnSurface - href: api/XRTK.SDK.Utilities.Solvers.SurfaceMagnetism.html#XRTK_SDK_Utilities_Solvers_SurfaceMagnetism_OnSurface_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.SurfaceMagnetism.OnSurface - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.SurfaceMagnetism.OnSurface - nameWithType: SurfaceMagnetism.OnSurface -- uid: XRTK.SDK.Utilities.Solvers.SurfaceMagnetism.OnValidate - name: OnValidate() - href: api/XRTK.SDK.Utilities.Solvers.SurfaceMagnetism.html#XRTK_SDK_Utilities_Solvers_SurfaceMagnetism_OnValidate - commentId: M:XRTK.SDK.Utilities.Solvers.SurfaceMagnetism.OnValidate - fullName: XRTK.SDK.Utilities.Solvers.SurfaceMagnetism.OnValidate() - nameWithType: SurfaceMagnetism.OnValidate() -- uid: XRTK.SDK.Utilities.Solvers.SurfaceMagnetism.OnValidate* - name: OnValidate - href: api/XRTK.SDK.Utilities.Solvers.SurfaceMagnetism.html#XRTK_SDK_Utilities_Solvers_SurfaceMagnetism_OnValidate_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.SurfaceMagnetism.OnValidate - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.SurfaceMagnetism.OnValidate - nameWithType: SurfaceMagnetism.OnValidate -- uid: XRTK.SDK.Utilities.Solvers.SurfaceMagnetism.SolverUpdate - name: SolverUpdate() - href: api/XRTK.SDK.Utilities.Solvers.SurfaceMagnetism.html#XRTK_SDK_Utilities_Solvers_SurfaceMagnetism_SolverUpdate - commentId: M:XRTK.SDK.Utilities.Solvers.SurfaceMagnetism.SolverUpdate - fullName: XRTK.SDK.Utilities.Solvers.SurfaceMagnetism.SolverUpdate() - nameWithType: SurfaceMagnetism.SolverUpdate() -- uid: XRTK.SDK.Utilities.Solvers.SurfaceMagnetism.SolverUpdate* - name: SolverUpdate - href: api/XRTK.SDK.Utilities.Solvers.SurfaceMagnetism.html#XRTK_SDK_Utilities_Solvers_SurfaceMagnetism_SolverUpdate_ - commentId: Overload:XRTK.SDK.Utilities.Solvers.SurfaceMagnetism.SolverUpdate - isSpec: "True" - fullName: XRTK.SDK.Utilities.Solvers.SurfaceMagnetism.SolverUpdate - nameWithType: SurfaceMagnetism.SolverUpdate -- uid: XRTK.SDK.UX - name: XRTK.SDK.UX - href: api/XRTK.SDK.UX.html - commentId: N:XRTK.SDK.UX - fullName: XRTK.SDK.UX - nameWithType: XRTK.SDK.UX -- uid: XRTK.SDK.UX.BoundingBox - name: BoundingBox - href: api/XRTK.SDK.UX.BoundingBox.html - commentId: T:XRTK.SDK.UX.BoundingBox - fullName: XRTK.SDK.UX.BoundingBox - nameWithType: BoundingBox -- uid: XRTK.SDK.UX.BoundingBox.BoundingBoxCollider - name: BoundingBoxCollider - href: api/XRTK.SDK.UX.BoundingBox.html#XRTK_SDK_UX_BoundingBox_BoundingBoxCollider - commentId: P:XRTK.SDK.UX.BoundingBox.BoundingBoxCollider - fullName: XRTK.SDK.UX.BoundingBox.BoundingBoxCollider - nameWithType: BoundingBox.BoundingBoxCollider -- uid: XRTK.SDK.UX.BoundingBox.BoundingBoxCollider* - name: BoundingBoxCollider - href: api/XRTK.SDK.UX.BoundingBox.html#XRTK_SDK_UX_BoundingBox_BoundingBoxCollider_ - commentId: Overload:XRTK.SDK.UX.BoundingBox.BoundingBoxCollider - isSpec: "True" - fullName: XRTK.SDK.UX.BoundingBox.BoundingBoxCollider - nameWithType: BoundingBox.BoundingBoxCollider -- uid: XRTK.SDK.UX.BoundingBox.BoundsCorners - name: BoundsCorners - href: api/XRTK.SDK.UX.BoundingBox.html#XRTK_SDK_UX_BoundingBox_BoundsCorners - commentId: P:XRTK.SDK.UX.BoundingBox.BoundsCorners - fullName: XRTK.SDK.UX.BoundingBox.BoundsCorners - nameWithType: BoundingBox.BoundsCorners -- uid: XRTK.SDK.UX.BoundingBox.BoundsCorners* - name: BoundsCorners - href: api/XRTK.SDK.UX.BoundingBox.html#XRTK_SDK_UX_BoundingBox_BoundsCorners_ - commentId: Overload:XRTK.SDK.UX.BoundingBox.BoundsCorners - isSpec: "True" - fullName: XRTK.SDK.UX.BoundingBox.BoundsCorners - nameWithType: BoundingBox.BoundsCorners -- uid: XRTK.SDK.UX.BoundingBox.BoxColliderToUse - name: BoxColliderToUse - href: api/XRTK.SDK.UX.BoundingBox.html#XRTK_SDK_UX_BoundingBox_BoxColliderToUse - commentId: P:XRTK.SDK.UX.BoundingBox.BoxColliderToUse - fullName: XRTK.SDK.UX.BoundingBox.BoxColliderToUse - nameWithType: BoundingBox.BoxColliderToUse -- uid: XRTK.SDK.UX.BoundingBox.BoxColliderToUse* - name: BoxColliderToUse - href: api/XRTK.SDK.UX.BoundingBox.html#XRTK_SDK_UX_BoundingBox_BoxColliderToUse_ - commentId: Overload:XRTK.SDK.UX.BoundingBox.BoxColliderToUse - isSpec: "True" - fullName: XRTK.SDK.UX.BoundingBox.BoxColliderToUse - nameWithType: BoundingBox.BoxColliderToUse -- uid: XRTK.SDK.UX.BoundingBox.DisplayHandles - name: DisplayHandles - href: api/XRTK.SDK.UX.BoundingBox.html#XRTK_SDK_UX_BoundingBox_DisplayHandles - commentId: P:XRTK.SDK.UX.BoundingBox.DisplayHandles - fullName: XRTK.SDK.UX.BoundingBox.DisplayHandles - nameWithType: BoundingBox.DisplayHandles -- uid: XRTK.SDK.UX.BoundingBox.DisplayHandles* - name: DisplayHandles - href: api/XRTK.SDK.UX.BoundingBox.html#XRTK_SDK_UX_BoundingBox_DisplayHandles_ - commentId: Overload:XRTK.SDK.UX.BoundingBox.DisplayHandles - isSpec: "True" - fullName: XRTK.SDK.UX.BoundingBox.DisplayHandles - nameWithType: BoundingBox.DisplayHandles -- uid: XRTK.SDK.UX.BoundingBox.FlattenAxis - name: FlattenAxis - href: api/XRTK.SDK.UX.BoundingBox.html#XRTK_SDK_UX_BoundingBox_FlattenAxis - commentId: P:XRTK.SDK.UX.BoundingBox.FlattenAxis - fullName: XRTK.SDK.UX.BoundingBox.FlattenAxis - nameWithType: BoundingBox.FlattenAxis -- uid: XRTK.SDK.UX.BoundingBox.FlattenAxis* - name: FlattenAxis - href: api/XRTK.SDK.UX.BoundingBox.html#XRTK_SDK_UX_BoundingBox_FlattenAxis_ - commentId: Overload:XRTK.SDK.UX.BoundingBox.FlattenAxis - isSpec: "True" - fullName: XRTK.SDK.UX.BoundingBox.FlattenAxis - nameWithType: BoundingBox.FlattenAxis -- uid: XRTK.SDK.UX.BoundingBox.HandleGrabbedMaterial - name: HandleGrabbedMaterial - href: api/XRTK.SDK.UX.BoundingBox.html#XRTK_SDK_UX_BoundingBox_HandleGrabbedMaterial - commentId: P:XRTK.SDK.UX.BoundingBox.HandleGrabbedMaterial - fullName: XRTK.SDK.UX.BoundingBox.HandleGrabbedMaterial - nameWithType: BoundingBox.HandleGrabbedMaterial -- uid: XRTK.SDK.UX.BoundingBox.HandleGrabbedMaterial* - name: HandleGrabbedMaterial - href: api/XRTK.SDK.UX.BoundingBox.html#XRTK_SDK_UX_BoundingBox_HandleGrabbedMaterial_ - commentId: Overload:XRTK.SDK.UX.BoundingBox.HandleGrabbedMaterial - isSpec: "True" - fullName: XRTK.SDK.UX.BoundingBox.HandleGrabbedMaterial - nameWithType: BoundingBox.HandleGrabbedMaterial -- uid: XRTK.SDK.UX.BoundingBox.HandleMaterial - name: HandleMaterial - href: api/XRTK.SDK.UX.BoundingBox.html#XRTK_SDK_UX_BoundingBox_HandleMaterial - commentId: P:XRTK.SDK.UX.BoundingBox.HandleMaterial - fullName: XRTK.SDK.UX.BoundingBox.HandleMaterial - nameWithType: BoundingBox.HandleMaterial -- uid: XRTK.SDK.UX.BoundingBox.HandleMaterial* - name: HandleMaterial - href: api/XRTK.SDK.UX.BoundingBox.html#XRTK_SDK_UX_BoundingBox_HandleMaterial_ - commentId: Overload:XRTK.SDK.UX.BoundingBox.HandleMaterial - isSpec: "True" - fullName: XRTK.SDK.UX.BoundingBox.HandleMaterial - nameWithType: BoundingBox.HandleMaterial -- uid: XRTK.SDK.UX.BoundingBox.InputSystem - name: InputSystem - href: api/XRTK.SDK.UX.BoundingBox.html#XRTK_SDK_UX_BoundingBox_InputSystem - commentId: P:XRTK.SDK.UX.BoundingBox.InputSystem - fullName: XRTK.SDK.UX.BoundingBox.InputSystem - nameWithType: BoundingBox.InputSystem -- uid: XRTK.SDK.UX.BoundingBox.InputSystem* - name: InputSystem - href: api/XRTK.SDK.UX.BoundingBox.html#XRTK_SDK_UX_BoundingBox_InputSystem_ - commentId: Overload:XRTK.SDK.UX.BoundingBox.InputSystem - isSpec: "True" - fullName: XRTK.SDK.UX.BoundingBox.InputSystem - nameWithType: BoundingBox.InputSystem -- uid: XRTK.SDK.UX.BoundingBox.IsVisible - name: IsVisible - href: api/XRTK.SDK.UX.BoundingBox.html#XRTK_SDK_UX_BoundingBox_IsVisible - commentId: P:XRTK.SDK.UX.BoundingBox.IsVisible - fullName: XRTK.SDK.UX.BoundingBox.IsVisible - nameWithType: BoundingBox.IsVisible -- uid: XRTK.SDK.UX.BoundingBox.IsVisible* - name: IsVisible - href: api/XRTK.SDK.UX.BoundingBox.html#XRTK_SDK_UX_BoundingBox_IsVisible_ - commentId: Overload:XRTK.SDK.UX.BoundingBox.IsVisible - isSpec: "True" - fullName: XRTK.SDK.UX.BoundingBox.IsVisible - nameWithType: BoundingBox.IsVisible -- uid: XRTK.SDK.UX.BoundingBox.LinkRadius - name: LinkRadius - href: api/XRTK.SDK.UX.BoundingBox.html#XRTK_SDK_UX_BoundingBox_LinkRadius - commentId: P:XRTK.SDK.UX.BoundingBox.LinkRadius - fullName: XRTK.SDK.UX.BoundingBox.LinkRadius - nameWithType: BoundingBox.LinkRadius -- uid: XRTK.SDK.UX.BoundingBox.LinkRadius* - name: LinkRadius - href: api/XRTK.SDK.UX.BoundingBox.html#XRTK_SDK_UX_BoundingBox_LinkRadius_ - commentId: Overload:XRTK.SDK.UX.BoundingBox.LinkRadius - isSpec: "True" - fullName: XRTK.SDK.UX.BoundingBox.LinkRadius - nameWithType: BoundingBox.LinkRadius -- uid: XRTK.SDK.UX.BoundingBox.ResetBoundingBoxBounds - name: ResetBoundingBoxBounds() - href: api/XRTK.SDK.UX.BoundingBox.html#XRTK_SDK_UX_BoundingBox_ResetBoundingBoxBounds - commentId: M:XRTK.SDK.UX.BoundingBox.ResetBoundingBoxBounds - fullName: XRTK.SDK.UX.BoundingBox.ResetBoundingBoxBounds() - nameWithType: BoundingBox.ResetBoundingBoxBounds() -- uid: XRTK.SDK.UX.BoundingBox.ResetBoundingBoxBounds* - name: ResetBoundingBoxBounds - href: api/XRTK.SDK.UX.BoundingBox.html#XRTK_SDK_UX_BoundingBox_ResetBoundingBoxBounds_ - commentId: Overload:XRTK.SDK.UX.BoundingBox.ResetBoundingBoxBounds - isSpec: "True" - fullName: XRTK.SDK.UX.BoundingBox.ResetBoundingBoxBounds - nameWithType: BoundingBox.ResetBoundingBoxBounds -- uid: XRTK.SDK.UX.BoundingBox.RotationHandleRadius - name: RotationHandleRadius - href: api/XRTK.SDK.UX.BoundingBox.html#XRTK_SDK_UX_BoundingBox_RotationHandleRadius - commentId: P:XRTK.SDK.UX.BoundingBox.RotationHandleRadius - fullName: XRTK.SDK.UX.BoundingBox.RotationHandleRadius - nameWithType: BoundingBox.RotationHandleRadius -- uid: XRTK.SDK.UX.BoundingBox.RotationHandleRadius* - name: RotationHandleRadius - href: api/XRTK.SDK.UX.BoundingBox.html#XRTK_SDK_UX_BoundingBox_RotationHandleRadius_ - commentId: Overload:XRTK.SDK.UX.BoundingBox.RotationHandleRadius - isSpec: "True" - fullName: XRTK.SDK.UX.BoundingBox.RotationHandleRadius - nameWithType: BoundingBox.RotationHandleRadius -- uid: XRTK.SDK.UX.BoundingBox.ScaleHandleRadius - name: ScaleHandleRadius - href: api/XRTK.SDK.UX.BoundingBox.html#XRTK_SDK_UX_BoundingBox_ScaleHandleRadius - commentId: P:XRTK.SDK.UX.BoundingBox.ScaleHandleRadius - fullName: XRTK.SDK.UX.BoundingBox.ScaleHandleRadius - nameWithType: BoundingBox.ScaleHandleRadius -- uid: XRTK.SDK.UX.BoundingBox.ScaleHandleRadius* - name: ScaleHandleRadius - href: api/XRTK.SDK.UX.BoundingBox.html#XRTK_SDK_UX_BoundingBox_ScaleHandleRadius_ - commentId: Overload:XRTK.SDK.UX.BoundingBox.ScaleHandleRadius - isSpec: "True" - fullName: XRTK.SDK.UX.BoundingBox.ScaleHandleRadius - nameWithType: BoundingBox.ScaleHandleRadius -- uid: XRTK.SDK.UX.BoundingBox.ShowRotateHandles - name: ShowRotateHandles - href: api/XRTK.SDK.UX.BoundingBox.html#XRTK_SDK_UX_BoundingBox_ShowRotateHandles - commentId: P:XRTK.SDK.UX.BoundingBox.ShowRotateHandles - fullName: XRTK.SDK.UX.BoundingBox.ShowRotateHandles - nameWithType: BoundingBox.ShowRotateHandles -- uid: XRTK.SDK.UX.BoundingBox.ShowRotateHandles* - name: ShowRotateHandles - href: api/XRTK.SDK.UX.BoundingBox.html#XRTK_SDK_UX_BoundingBox_ShowRotateHandles_ - commentId: Overload:XRTK.SDK.UX.BoundingBox.ShowRotateHandles - isSpec: "True" - fullName: XRTK.SDK.UX.BoundingBox.ShowRotateHandles - nameWithType: BoundingBox.ShowRotateHandles -- uid: XRTK.SDK.UX.BoundingBox.ShowRotationHandlesPerAxis - name: ShowRotationHandlesPerAxis - href: api/XRTK.SDK.UX.BoundingBox.html#XRTK_SDK_UX_BoundingBox_ShowRotationHandlesPerAxis - commentId: P:XRTK.SDK.UX.BoundingBox.ShowRotationHandlesPerAxis - fullName: XRTK.SDK.UX.BoundingBox.ShowRotationHandlesPerAxis - nameWithType: BoundingBox.ShowRotationHandlesPerAxis -- uid: XRTK.SDK.UX.BoundingBox.ShowRotationHandlesPerAxis* - name: ShowRotationHandlesPerAxis - href: api/XRTK.SDK.UX.BoundingBox.html#XRTK_SDK_UX_BoundingBox_ShowRotationHandlesPerAxis_ - commentId: Overload:XRTK.SDK.UX.BoundingBox.ShowRotationHandlesPerAxis - isSpec: "True" - fullName: XRTK.SDK.UX.BoundingBox.ShowRotationHandlesPerAxis - nameWithType: BoundingBox.ShowRotationHandlesPerAxis -- uid: XRTK.SDK.UX.BoundingBox.ShowScaleHandles - name: ShowScaleHandles - href: api/XRTK.SDK.UX.BoundingBox.html#XRTK_SDK_UX_BoundingBox_ShowScaleHandles - commentId: P:XRTK.SDK.UX.BoundingBox.ShowScaleHandles - fullName: XRTK.SDK.UX.BoundingBox.ShowScaleHandles - nameWithType: BoundingBox.ShowScaleHandles -- uid: XRTK.SDK.UX.BoundingBox.ShowScaleHandles* - name: ShowScaleHandles - href: api/XRTK.SDK.UX.BoundingBox.html#XRTK_SDK_UX_BoundingBox_ShowScaleHandles_ - commentId: Overload:XRTK.SDK.UX.BoundingBox.ShowScaleHandles - isSpec: "True" - fullName: XRTK.SDK.UX.BoundingBox.ShowScaleHandles - nameWithType: BoundingBox.ShowScaleHandles -- uid: XRTK.SDK.UX.BoundingBox.UpdateBounds(System.Boolean) - name: UpdateBounds(Boolean) - href: api/XRTK.SDK.UX.BoundingBox.html#XRTK_SDK_UX_BoundingBox_UpdateBounds_System_Boolean_ - commentId: M:XRTK.SDK.UX.BoundingBox.UpdateBounds(System.Boolean) - fullName: XRTK.SDK.UX.BoundingBox.UpdateBounds(System.Boolean) - nameWithType: BoundingBox.UpdateBounds(Boolean) -- uid: XRTK.SDK.UX.BoundingBox.UpdateBounds* - name: UpdateBounds - href: api/XRTK.SDK.UX.BoundingBox.html#XRTK_SDK_UX_BoundingBox_UpdateBounds_ - commentId: Overload:XRTK.SDK.UX.BoundingBox.UpdateBounds - isSpec: "True" - fullName: XRTK.SDK.UX.BoundingBox.UpdateBounds - nameWithType: BoundingBox.UpdateBounds -- uid: XRTK.SDK.UX.BoundingBox.UpdateRigTransform - name: UpdateRigTransform() - href: api/XRTK.SDK.UX.BoundingBox.html#XRTK_SDK_UX_BoundingBox_UpdateRigTransform - commentId: M:XRTK.SDK.UX.BoundingBox.UpdateRigTransform - fullName: XRTK.SDK.UX.BoundingBox.UpdateRigTransform() - nameWithType: BoundingBox.UpdateRigTransform() -- uid: XRTK.SDK.UX.BoundingBox.UpdateRigTransform* - name: UpdateRigTransform - href: api/XRTK.SDK.UX.BoundingBox.html#XRTK_SDK_UX_BoundingBox_UpdateRigTransform_ - commentId: Overload:XRTK.SDK.UX.BoundingBox.UpdateRigTransform - isSpec: "True" - fullName: XRTK.SDK.UX.BoundingBox.UpdateRigTransform - nameWithType: BoundingBox.UpdateRigTransform -- uid: XRTK.SDK.UX.BoundingBox.WireframeMaterial - name: WireframeMaterial - href: api/XRTK.SDK.UX.BoundingBox.html#XRTK_SDK_UX_BoundingBox_WireframeMaterial - commentId: P:XRTK.SDK.UX.BoundingBox.WireframeMaterial - fullName: XRTK.SDK.UX.BoundingBox.WireframeMaterial - nameWithType: BoundingBox.WireframeMaterial -- uid: XRTK.SDK.UX.BoundingBox.WireframeMaterial* - name: WireframeMaterial - href: api/XRTK.SDK.UX.BoundingBox.html#XRTK_SDK_UX_BoundingBox_WireframeMaterial_ - commentId: Overload:XRTK.SDK.UX.BoundingBox.WireframeMaterial - isSpec: "True" - fullName: XRTK.SDK.UX.BoundingBox.WireframeMaterial - nameWithType: BoundingBox.WireframeMaterial -- uid: XRTK.SDK.UX.BoundingBox.WireFramePadding - name: WireFramePadding - href: api/XRTK.SDK.UX.BoundingBox.html#XRTK_SDK_UX_BoundingBox_WireFramePadding - commentId: P:XRTK.SDK.UX.BoundingBox.WireFramePadding - fullName: XRTK.SDK.UX.BoundingBox.WireFramePadding - nameWithType: BoundingBox.WireFramePadding -- uid: XRTK.SDK.UX.BoundingBox.WireFramePadding* - name: WireFramePadding - href: api/XRTK.SDK.UX.BoundingBox.html#XRTK_SDK_UX_BoundingBox_WireFramePadding_ - commentId: Overload:XRTK.SDK.UX.BoundingBox.WireFramePadding - isSpec: "True" - fullName: XRTK.SDK.UX.BoundingBox.WireFramePadding - nameWithType: BoundingBox.WireFramePadding -- uid: XRTK.SDK.UX.Collections - name: XRTK.SDK.UX.Collections - href: api/XRTK.SDK.UX.Collections.html - commentId: N:XRTK.SDK.UX.Collections - fullName: XRTK.SDK.UX.Collections - nameWithType: XRTK.SDK.UX.Collections -- uid: XRTK.SDK.UX.Collections.BaseObjectCollection - name: BaseObjectCollection - href: api/XRTK.SDK.UX.Collections.BaseObjectCollection.html - commentId: T:XRTK.SDK.UX.Collections.BaseObjectCollection - fullName: XRTK.SDK.UX.Collections.BaseObjectCollection - nameWithType: BaseObjectCollection -- uid: XRTK.SDK.UX.Collections.BaseObjectCollection.ContainsNode(UnityEngine.Transform) - name: ContainsNode(Transform) - href: api/XRTK.SDK.UX.Collections.BaseObjectCollection.html#XRTK_SDK_UX_Collections_BaseObjectCollection_ContainsNode_UnityEngine_Transform_ - commentId: M:XRTK.SDK.UX.Collections.BaseObjectCollection.ContainsNode(UnityEngine.Transform) - fullName: XRTK.SDK.UX.Collections.BaseObjectCollection.ContainsNode(UnityEngine.Transform) - nameWithType: BaseObjectCollection.ContainsNode(Transform) -- uid: XRTK.SDK.UX.Collections.BaseObjectCollection.ContainsNode* - name: ContainsNode - href: api/XRTK.SDK.UX.Collections.BaseObjectCollection.html#XRTK_SDK_UX_Collections_BaseObjectCollection_ContainsNode_ - commentId: Overload:XRTK.SDK.UX.Collections.BaseObjectCollection.ContainsNode - isSpec: "True" - fullName: XRTK.SDK.UX.Collections.BaseObjectCollection.ContainsNode - nameWithType: BaseObjectCollection.ContainsNode -- uid: XRTK.SDK.UX.Collections.BaseObjectCollection.GetCollection - name: GetCollection() - href: api/XRTK.SDK.UX.Collections.BaseObjectCollection.html#XRTK_SDK_UX_Collections_BaseObjectCollection_GetCollection - commentId: M:XRTK.SDK.UX.Collections.BaseObjectCollection.GetCollection - fullName: XRTK.SDK.UX.Collections.BaseObjectCollection.GetCollection() - nameWithType: BaseObjectCollection.GetCollection() -- uid: XRTK.SDK.UX.Collections.BaseObjectCollection.GetCollection* - name: GetCollection - href: api/XRTK.SDK.UX.Collections.BaseObjectCollection.html#XRTK_SDK_UX_Collections_BaseObjectCollection_GetCollection_ - commentId: Overload:XRTK.SDK.UX.Collections.BaseObjectCollection.GetCollection - isSpec: "True" - fullName: XRTK.SDK.UX.Collections.BaseObjectCollection.GetCollection - nameWithType: BaseObjectCollection.GetCollection -- uid: XRTK.SDK.UX.Collections.BaseObjectCollection.IgnoreInactiveTransforms - name: IgnoreInactiveTransforms - href: api/XRTK.SDK.UX.Collections.BaseObjectCollection.html#XRTK_SDK_UX_Collections_BaseObjectCollection_IgnoreInactiveTransforms - commentId: P:XRTK.SDK.UX.Collections.BaseObjectCollection.IgnoreInactiveTransforms - fullName: XRTK.SDK.UX.Collections.BaseObjectCollection.IgnoreInactiveTransforms - nameWithType: BaseObjectCollection.IgnoreInactiveTransforms -- uid: XRTK.SDK.UX.Collections.BaseObjectCollection.IgnoreInactiveTransforms* - name: IgnoreInactiveTransforms - href: api/XRTK.SDK.UX.Collections.BaseObjectCollection.html#XRTK_SDK_UX_Collections_BaseObjectCollection_IgnoreInactiveTransforms_ - commentId: Overload:XRTK.SDK.UX.Collections.BaseObjectCollection.IgnoreInactiveTransforms - isSpec: "True" - fullName: XRTK.SDK.UX.Collections.BaseObjectCollection.IgnoreInactiveTransforms - nameWithType: BaseObjectCollection.IgnoreInactiveTransforms -- uid: XRTK.SDK.UX.Collections.BaseObjectCollection.LayoutChildren - name: LayoutChildren() - href: api/XRTK.SDK.UX.Collections.BaseObjectCollection.html#XRTK_SDK_UX_Collections_BaseObjectCollection_LayoutChildren - commentId: M:XRTK.SDK.UX.Collections.BaseObjectCollection.LayoutChildren - fullName: XRTK.SDK.UX.Collections.BaseObjectCollection.LayoutChildren() - nameWithType: BaseObjectCollection.LayoutChildren() -- uid: XRTK.SDK.UX.Collections.BaseObjectCollection.LayoutChildren* - name: LayoutChildren - href: api/XRTK.SDK.UX.Collections.BaseObjectCollection.html#XRTK_SDK_UX_Collections_BaseObjectCollection_LayoutChildren_ - commentId: Overload:XRTK.SDK.UX.Collections.BaseObjectCollection.LayoutChildren - isSpec: "True" - fullName: XRTK.SDK.UX.Collections.BaseObjectCollection.LayoutChildren - nameWithType: BaseObjectCollection.LayoutChildren -- uid: XRTK.SDK.UX.Collections.BaseObjectCollection.nodeList - name: nodeList - href: api/XRTK.SDK.UX.Collections.BaseObjectCollection.html#XRTK_SDK_UX_Collections_BaseObjectCollection_nodeList - commentId: F:XRTK.SDK.UX.Collections.BaseObjectCollection.nodeList - fullName: XRTK.SDK.UX.Collections.BaseObjectCollection.nodeList - nameWithType: BaseObjectCollection.nodeList -- uid: XRTK.SDK.UX.Collections.BaseObjectCollection.OnCollectionUpdated - name: OnCollectionUpdated - href: api/XRTK.SDK.UX.Collections.BaseObjectCollection.html#XRTK_SDK_UX_Collections_BaseObjectCollection_OnCollectionUpdated - commentId: P:XRTK.SDK.UX.Collections.BaseObjectCollection.OnCollectionUpdated - fullName: XRTK.SDK.UX.Collections.BaseObjectCollection.OnCollectionUpdated - nameWithType: BaseObjectCollection.OnCollectionUpdated -- uid: XRTK.SDK.UX.Collections.BaseObjectCollection.OnCollectionUpdated* - name: OnCollectionUpdated - href: api/XRTK.SDK.UX.Collections.BaseObjectCollection.html#XRTK_SDK_UX_Collections_BaseObjectCollection_OnCollectionUpdated_ - commentId: Overload:XRTK.SDK.UX.Collections.BaseObjectCollection.OnCollectionUpdated - isSpec: "True" - fullName: XRTK.SDK.UX.Collections.BaseObjectCollection.OnCollectionUpdated - nameWithType: BaseObjectCollection.OnCollectionUpdated -- uid: XRTK.SDK.UX.Collections.BaseObjectCollection.SortType - name: SortType - href: api/XRTK.SDK.UX.Collections.BaseObjectCollection.html#XRTK_SDK_UX_Collections_BaseObjectCollection_SortType - commentId: P:XRTK.SDK.UX.Collections.BaseObjectCollection.SortType - fullName: XRTK.SDK.UX.Collections.BaseObjectCollection.SortType - nameWithType: BaseObjectCollection.SortType -- uid: XRTK.SDK.UX.Collections.BaseObjectCollection.SortType* - name: SortType - href: api/XRTK.SDK.UX.Collections.BaseObjectCollection.html#XRTK_SDK_UX_Collections_BaseObjectCollection_SortType_ - commentId: Overload:XRTK.SDK.UX.Collections.BaseObjectCollection.SortType - isSpec: "True" - fullName: XRTK.SDK.UX.Collections.BaseObjectCollection.SortType - nameWithType: BaseObjectCollection.SortType -- uid: XRTK.SDK.UX.Collections.BaseObjectCollection.UpdateCollection - name: UpdateCollection() - href: api/XRTK.SDK.UX.Collections.BaseObjectCollection.html#XRTK_SDK_UX_Collections_BaseObjectCollection_UpdateCollection - commentId: M:XRTK.SDK.UX.Collections.BaseObjectCollection.UpdateCollection - fullName: XRTK.SDK.UX.Collections.BaseObjectCollection.UpdateCollection() - nameWithType: BaseObjectCollection.UpdateCollection() -- uid: XRTK.SDK.UX.Collections.BaseObjectCollection.UpdateCollection* - name: UpdateCollection - href: api/XRTK.SDK.UX.Collections.BaseObjectCollection.html#XRTK_SDK_UX_Collections_BaseObjectCollection_UpdateCollection_ - commentId: Overload:XRTK.SDK.UX.Collections.BaseObjectCollection.UpdateCollection - isSpec: "True" - fullName: XRTK.SDK.UX.Collections.BaseObjectCollection.UpdateCollection - nameWithType: BaseObjectCollection.UpdateCollection -- uid: XRTK.SDK.UX.Collections.GridObjectCollection - name: GridObjectCollection - href: api/XRTK.SDK.UX.Collections.GridObjectCollection.html - commentId: T:XRTK.SDK.UX.Collections.GridObjectCollection - fullName: XRTK.SDK.UX.Collections.GridObjectCollection - nameWithType: GridObjectCollection -- uid: XRTK.SDK.UX.Collections.GridObjectCollection.CellHeight - name: CellHeight - href: api/XRTK.SDK.UX.Collections.GridObjectCollection.html#XRTK_SDK_UX_Collections_GridObjectCollection_CellHeight - commentId: P:XRTK.SDK.UX.Collections.GridObjectCollection.CellHeight - fullName: XRTK.SDK.UX.Collections.GridObjectCollection.CellHeight - nameWithType: GridObjectCollection.CellHeight -- uid: XRTK.SDK.UX.Collections.GridObjectCollection.CellHeight* - name: CellHeight - href: api/XRTK.SDK.UX.Collections.GridObjectCollection.html#XRTK_SDK_UX_Collections_GridObjectCollection_CellHeight_ - commentId: Overload:XRTK.SDK.UX.Collections.GridObjectCollection.CellHeight - isSpec: "True" - fullName: XRTK.SDK.UX.Collections.GridObjectCollection.CellHeight - nameWithType: GridObjectCollection.CellHeight -- uid: XRTK.SDK.UX.Collections.GridObjectCollection.CellWidth - name: CellWidth - href: api/XRTK.SDK.UX.Collections.GridObjectCollection.html#XRTK_SDK_UX_Collections_GridObjectCollection_CellWidth - commentId: P:XRTK.SDK.UX.Collections.GridObjectCollection.CellWidth - fullName: XRTK.SDK.UX.Collections.GridObjectCollection.CellWidth - nameWithType: GridObjectCollection.CellWidth -- uid: XRTK.SDK.UX.Collections.GridObjectCollection.CellWidth* - name: CellWidth - href: api/XRTK.SDK.UX.Collections.GridObjectCollection.html#XRTK_SDK_UX_Collections_GridObjectCollection_CellWidth_ - commentId: Overload:XRTK.SDK.UX.Collections.GridObjectCollection.CellWidth - isSpec: "True" - fullName: XRTK.SDK.UX.Collections.GridObjectCollection.CellWidth - nameWithType: GridObjectCollection.CellWidth -- uid: XRTK.SDK.UX.Collections.GridObjectCollection.Columns - name: Columns - href: api/XRTK.SDK.UX.Collections.GridObjectCollection.html#XRTK_SDK_UX_Collections_GridObjectCollection_Columns - commentId: F:XRTK.SDK.UX.Collections.GridObjectCollection.Columns - fullName: XRTK.SDK.UX.Collections.GridObjectCollection.Columns - nameWithType: GridObjectCollection.Columns -- uid: XRTK.SDK.UX.Collections.GridObjectCollection.CylinderMesh - name: CylinderMesh - href: api/XRTK.SDK.UX.Collections.GridObjectCollection.html#XRTK_SDK_UX_Collections_GridObjectCollection_CylinderMesh - commentId: P:XRTK.SDK.UX.Collections.GridObjectCollection.CylinderMesh - fullName: XRTK.SDK.UX.Collections.GridObjectCollection.CylinderMesh - nameWithType: GridObjectCollection.CylinderMesh -- uid: XRTK.SDK.UX.Collections.GridObjectCollection.CylinderMesh* - name: CylinderMesh - href: api/XRTK.SDK.UX.Collections.GridObjectCollection.html#XRTK_SDK_UX_Collections_GridObjectCollection_CylinderMesh_ - commentId: Overload:XRTK.SDK.UX.Collections.GridObjectCollection.CylinderMesh - isSpec: "True" - fullName: XRTK.SDK.UX.Collections.GridObjectCollection.CylinderMesh - nameWithType: GridObjectCollection.CylinderMesh -- uid: XRTK.SDK.UX.Collections.GridObjectCollection.HalfCell - name: HalfCell - href: api/XRTK.SDK.UX.Collections.GridObjectCollection.html#XRTK_SDK_UX_Collections_GridObjectCollection_HalfCell - commentId: F:XRTK.SDK.UX.Collections.GridObjectCollection.HalfCell - fullName: XRTK.SDK.UX.Collections.GridObjectCollection.HalfCell - nameWithType: GridObjectCollection.HalfCell -- uid: XRTK.SDK.UX.Collections.GridObjectCollection.Height - name: Height - href: api/XRTK.SDK.UX.Collections.GridObjectCollection.html#XRTK_SDK_UX_Collections_GridObjectCollection_Height - commentId: P:XRTK.SDK.UX.Collections.GridObjectCollection.Height - fullName: XRTK.SDK.UX.Collections.GridObjectCollection.Height - nameWithType: GridObjectCollection.Height -- uid: XRTK.SDK.UX.Collections.GridObjectCollection.Height* - name: Height - href: api/XRTK.SDK.UX.Collections.GridObjectCollection.html#XRTK_SDK_UX_Collections_GridObjectCollection_Height_ - commentId: Overload:XRTK.SDK.UX.Collections.GridObjectCollection.Height - isSpec: "True" - fullName: XRTK.SDK.UX.Collections.GridObjectCollection.Height - nameWithType: GridObjectCollection.Height -- uid: XRTK.SDK.UX.Collections.GridObjectCollection.Layout - name: Layout - href: api/XRTK.SDK.UX.Collections.GridObjectCollection.html#XRTK_SDK_UX_Collections_GridObjectCollection_Layout - commentId: P:XRTK.SDK.UX.Collections.GridObjectCollection.Layout - fullName: XRTK.SDK.UX.Collections.GridObjectCollection.Layout - nameWithType: GridObjectCollection.Layout -- uid: XRTK.SDK.UX.Collections.GridObjectCollection.Layout* - name: Layout - href: api/XRTK.SDK.UX.Collections.GridObjectCollection.html#XRTK_SDK_UX_Collections_GridObjectCollection_Layout_ - commentId: Overload:XRTK.SDK.UX.Collections.GridObjectCollection.Layout - isSpec: "True" - fullName: XRTK.SDK.UX.Collections.GridObjectCollection.Layout - nameWithType: GridObjectCollection.Layout -- uid: XRTK.SDK.UX.Collections.GridObjectCollection.LayoutChildren - name: LayoutChildren() - href: api/XRTK.SDK.UX.Collections.GridObjectCollection.html#XRTK_SDK_UX_Collections_GridObjectCollection_LayoutChildren - commentId: M:XRTK.SDK.UX.Collections.GridObjectCollection.LayoutChildren - fullName: XRTK.SDK.UX.Collections.GridObjectCollection.LayoutChildren() - nameWithType: GridObjectCollection.LayoutChildren() -- uid: XRTK.SDK.UX.Collections.GridObjectCollection.LayoutChildren* - name: LayoutChildren - href: api/XRTK.SDK.UX.Collections.GridObjectCollection.html#XRTK_SDK_UX_Collections_GridObjectCollection_LayoutChildren_ - commentId: Overload:XRTK.SDK.UX.Collections.GridObjectCollection.LayoutChildren - isSpec: "True" - fullName: XRTK.SDK.UX.Collections.GridObjectCollection.LayoutChildren - nameWithType: GridObjectCollection.LayoutChildren -- uid: XRTK.SDK.UX.Collections.GridObjectCollection.OnDrawGizmosSelected - name: OnDrawGizmosSelected() - href: api/XRTK.SDK.UX.Collections.GridObjectCollection.html#XRTK_SDK_UX_Collections_GridObjectCollection_OnDrawGizmosSelected - commentId: M:XRTK.SDK.UX.Collections.GridObjectCollection.OnDrawGizmosSelected - fullName: XRTK.SDK.UX.Collections.GridObjectCollection.OnDrawGizmosSelected() - nameWithType: GridObjectCollection.OnDrawGizmosSelected() -- uid: XRTK.SDK.UX.Collections.GridObjectCollection.OnDrawGizmosSelected* - name: OnDrawGizmosSelected - href: api/XRTK.SDK.UX.Collections.GridObjectCollection.html#XRTK_SDK_UX_Collections_GridObjectCollection_OnDrawGizmosSelected_ - commentId: Overload:XRTK.SDK.UX.Collections.GridObjectCollection.OnDrawGizmosSelected - isSpec: "True" - fullName: XRTK.SDK.UX.Collections.GridObjectCollection.OnDrawGizmosSelected - nameWithType: GridObjectCollection.OnDrawGizmosSelected -- uid: XRTK.SDK.UX.Collections.GridObjectCollection.OrientType - name: OrientType - href: api/XRTK.SDK.UX.Collections.GridObjectCollection.html#XRTK_SDK_UX_Collections_GridObjectCollection_OrientType - commentId: P:XRTK.SDK.UX.Collections.GridObjectCollection.OrientType - fullName: XRTK.SDK.UX.Collections.GridObjectCollection.OrientType - nameWithType: GridObjectCollection.OrientType -- uid: XRTK.SDK.UX.Collections.GridObjectCollection.OrientType* - name: OrientType - href: api/XRTK.SDK.UX.Collections.GridObjectCollection.html#XRTK_SDK_UX_Collections_GridObjectCollection_OrientType_ - commentId: Overload:XRTK.SDK.UX.Collections.GridObjectCollection.OrientType - isSpec: "True" - fullName: XRTK.SDK.UX.Collections.GridObjectCollection.OrientType - nameWithType: GridObjectCollection.OrientType -- uid: XRTK.SDK.UX.Collections.GridObjectCollection.RadialOffset - name: RadialOffset - href: api/XRTK.SDK.UX.Collections.GridObjectCollection.html#XRTK_SDK_UX_Collections_GridObjectCollection_RadialOffset - commentId: P:XRTK.SDK.UX.Collections.GridObjectCollection.RadialOffset - fullName: XRTK.SDK.UX.Collections.GridObjectCollection.RadialOffset - nameWithType: GridObjectCollection.RadialOffset -- uid: XRTK.SDK.UX.Collections.GridObjectCollection.RadialOffset* - name: RadialOffset - href: api/XRTK.SDK.UX.Collections.GridObjectCollection.html#XRTK_SDK_UX_Collections_GridObjectCollection_RadialOffset_ - commentId: Overload:XRTK.SDK.UX.Collections.GridObjectCollection.RadialOffset - isSpec: "True" - fullName: XRTK.SDK.UX.Collections.GridObjectCollection.RadialOffset - nameWithType: GridObjectCollection.RadialOffset -- uid: XRTK.SDK.UX.Collections.GridObjectCollection.RadialRange - name: RadialRange - href: api/XRTK.SDK.UX.Collections.GridObjectCollection.html#XRTK_SDK_UX_Collections_GridObjectCollection_RadialRange - commentId: P:XRTK.SDK.UX.Collections.GridObjectCollection.RadialRange - fullName: XRTK.SDK.UX.Collections.GridObjectCollection.RadialRange - nameWithType: GridObjectCollection.RadialRange -- uid: XRTK.SDK.UX.Collections.GridObjectCollection.RadialRange* - name: RadialRange - href: api/XRTK.SDK.UX.Collections.GridObjectCollection.html#XRTK_SDK_UX_Collections_GridObjectCollection_RadialRange_ - commentId: Overload:XRTK.SDK.UX.Collections.GridObjectCollection.RadialRange - isSpec: "True" - fullName: XRTK.SDK.UX.Collections.GridObjectCollection.RadialRange - nameWithType: GridObjectCollection.RadialRange -- uid: XRTK.SDK.UX.Collections.GridObjectCollection.Radius - name: Radius - href: api/XRTK.SDK.UX.Collections.GridObjectCollection.html#XRTK_SDK_UX_Collections_GridObjectCollection_Radius - commentId: P:XRTK.SDK.UX.Collections.GridObjectCollection.Radius - fullName: XRTK.SDK.UX.Collections.GridObjectCollection.Radius - nameWithType: GridObjectCollection.Radius -- uid: XRTK.SDK.UX.Collections.GridObjectCollection.Radius* - name: Radius - href: api/XRTK.SDK.UX.Collections.GridObjectCollection.html#XRTK_SDK_UX_Collections_GridObjectCollection_Radius_ - commentId: Overload:XRTK.SDK.UX.Collections.GridObjectCollection.Radius - isSpec: "True" - fullName: XRTK.SDK.UX.Collections.GridObjectCollection.Radius - nameWithType: GridObjectCollection.Radius -- uid: XRTK.SDK.UX.Collections.GridObjectCollection.ResolveGridLayout(UnityEngine.Vector3[],System.Single,System.Single,XRTK.SDK.UX.Collections.LayoutOrderType) - name: ResolveGridLayout(Vector3[], Single, Single, LayoutOrderType) - href: api/XRTK.SDK.UX.Collections.GridObjectCollection.html#XRTK_SDK_UX_Collections_GridObjectCollection_ResolveGridLayout_UnityEngine_Vector3___System_Single_System_Single_XRTK_SDK_UX_Collections_LayoutOrderType_ - commentId: M:XRTK.SDK.UX.Collections.GridObjectCollection.ResolveGridLayout(UnityEngine.Vector3[],System.Single,System.Single,XRTK.SDK.UX.Collections.LayoutOrderType) - name.vb: ResolveGridLayout(Vector3(), Single, Single, LayoutOrderType) - fullName: XRTK.SDK.UX.Collections.GridObjectCollection.ResolveGridLayout(UnityEngine.Vector3[], System.Single, System.Single, XRTK.SDK.UX.Collections.LayoutOrderType) - fullName.vb: XRTK.SDK.UX.Collections.GridObjectCollection.ResolveGridLayout(UnityEngine.Vector3(), System.Single, System.Single, XRTK.SDK.UX.Collections.LayoutOrderType) - nameWithType: GridObjectCollection.ResolveGridLayout(Vector3[], Single, Single, LayoutOrderType) - nameWithType.vb: GridObjectCollection.ResolveGridLayout(Vector3(), Single, Single, LayoutOrderType) -- uid: XRTK.SDK.UX.Collections.GridObjectCollection.ResolveGridLayout* - name: ResolveGridLayout - href: api/XRTK.SDK.UX.Collections.GridObjectCollection.html#XRTK_SDK_UX_Collections_GridObjectCollection_ResolveGridLayout_ - commentId: Overload:XRTK.SDK.UX.Collections.GridObjectCollection.ResolveGridLayout - isSpec: "True" - fullName: XRTK.SDK.UX.Collections.GridObjectCollection.ResolveGridLayout - nameWithType: GridObjectCollection.ResolveGridLayout -- uid: XRTK.SDK.UX.Collections.GridObjectCollection.Rows - name: Rows - href: api/XRTK.SDK.UX.Collections.GridObjectCollection.html#XRTK_SDK_UX_Collections_GridObjectCollection_Rows - commentId: P:XRTK.SDK.UX.Collections.GridObjectCollection.Rows - fullName: XRTK.SDK.UX.Collections.GridObjectCollection.Rows - nameWithType: GridObjectCollection.Rows -- uid: XRTK.SDK.UX.Collections.GridObjectCollection.Rows* - name: Rows - href: api/XRTK.SDK.UX.Collections.GridObjectCollection.html#XRTK_SDK_UX_Collections_GridObjectCollection_Rows_ - commentId: Overload:XRTK.SDK.UX.Collections.GridObjectCollection.Rows - isSpec: "True" - fullName: XRTK.SDK.UX.Collections.GridObjectCollection.Rows - nameWithType: GridObjectCollection.Rows -- uid: XRTK.SDK.UX.Collections.GridObjectCollection.SphereMesh - name: SphereMesh - href: api/XRTK.SDK.UX.Collections.GridObjectCollection.html#XRTK_SDK_UX_Collections_GridObjectCollection_SphereMesh - commentId: P:XRTK.SDK.UX.Collections.GridObjectCollection.SphereMesh - fullName: XRTK.SDK.UX.Collections.GridObjectCollection.SphereMesh - nameWithType: GridObjectCollection.SphereMesh -- uid: XRTK.SDK.UX.Collections.GridObjectCollection.SphereMesh* - name: SphereMesh - href: api/XRTK.SDK.UX.Collections.GridObjectCollection.html#XRTK_SDK_UX_Collections_GridObjectCollection_SphereMesh_ - commentId: Overload:XRTK.SDK.UX.Collections.GridObjectCollection.SphereMesh - isSpec: "True" - fullName: XRTK.SDK.UX.Collections.GridObjectCollection.SphereMesh - nameWithType: GridObjectCollection.SphereMesh -- uid: XRTK.SDK.UX.Collections.GridObjectCollection.SurfaceType - name: SurfaceType - href: api/XRTK.SDK.UX.Collections.GridObjectCollection.html#XRTK_SDK_UX_Collections_GridObjectCollection_SurfaceType - commentId: P:XRTK.SDK.UX.Collections.GridObjectCollection.SurfaceType - fullName: XRTK.SDK.UX.Collections.GridObjectCollection.SurfaceType - nameWithType: GridObjectCollection.SurfaceType -- uid: XRTK.SDK.UX.Collections.GridObjectCollection.SurfaceType* - name: SurfaceType - href: api/XRTK.SDK.UX.Collections.GridObjectCollection.html#XRTK_SDK_UX_Collections_GridObjectCollection_SurfaceType_ - commentId: Overload:XRTK.SDK.UX.Collections.GridObjectCollection.SurfaceType - isSpec: "True" - fullName: XRTK.SDK.UX.Collections.GridObjectCollection.SurfaceType - nameWithType: GridObjectCollection.SurfaceType -- uid: XRTK.SDK.UX.Collections.GridObjectCollection.UpdateNodeFacing(XRTK.SDK.UX.Collections.ObjectCollectionNode) - name: UpdateNodeFacing(ObjectCollectionNode) - href: api/XRTK.SDK.UX.Collections.GridObjectCollection.html#XRTK_SDK_UX_Collections_GridObjectCollection_UpdateNodeFacing_XRTK_SDK_UX_Collections_ObjectCollectionNode_ - commentId: M:XRTK.SDK.UX.Collections.GridObjectCollection.UpdateNodeFacing(XRTK.SDK.UX.Collections.ObjectCollectionNode) - fullName: XRTK.SDK.UX.Collections.GridObjectCollection.UpdateNodeFacing(XRTK.SDK.UX.Collections.ObjectCollectionNode) - nameWithType: GridObjectCollection.UpdateNodeFacing(ObjectCollectionNode) -- uid: XRTK.SDK.UX.Collections.GridObjectCollection.UpdateNodeFacing* - name: UpdateNodeFacing - href: api/XRTK.SDK.UX.Collections.GridObjectCollection.html#XRTK_SDK_UX_Collections_GridObjectCollection_UpdateNodeFacing_ - commentId: Overload:XRTK.SDK.UX.Collections.GridObjectCollection.UpdateNodeFacing - isSpec: "True" - fullName: XRTK.SDK.UX.Collections.GridObjectCollection.UpdateNodeFacing - nameWithType: GridObjectCollection.UpdateNodeFacing -- uid: XRTK.SDK.UX.Collections.GridObjectCollection.Width - name: Width - href: api/XRTK.SDK.UX.Collections.GridObjectCollection.html#XRTK_SDK_UX_Collections_GridObjectCollection_Width - commentId: P:XRTK.SDK.UX.Collections.GridObjectCollection.Width - fullName: XRTK.SDK.UX.Collections.GridObjectCollection.Width - nameWithType: GridObjectCollection.Width -- uid: XRTK.SDK.UX.Collections.GridObjectCollection.Width* - name: Width - href: api/XRTK.SDK.UX.Collections.GridObjectCollection.html#XRTK_SDK_UX_Collections_GridObjectCollection_Width_ - commentId: Overload:XRTK.SDK.UX.Collections.GridObjectCollection.Width - isSpec: "True" - fullName: XRTK.SDK.UX.Collections.GridObjectCollection.Width - nameWithType: GridObjectCollection.Width -- uid: XRTK.SDK.UX.Collections.LayoutOrderType - name: LayoutOrderType - href: api/XRTK.SDK.UX.Collections.LayoutOrderType.html - commentId: T:XRTK.SDK.UX.Collections.LayoutOrderType - fullName: XRTK.SDK.UX.Collections.LayoutOrderType - nameWithType: LayoutOrderType -- uid: XRTK.SDK.UX.Collections.LayoutOrderType.ColumnThenRow - name: ColumnThenRow - href: api/XRTK.SDK.UX.Collections.LayoutOrderType.html#XRTK_SDK_UX_Collections_LayoutOrderType_ColumnThenRow - commentId: F:XRTK.SDK.UX.Collections.LayoutOrderType.ColumnThenRow - fullName: XRTK.SDK.UX.Collections.LayoutOrderType.ColumnThenRow - nameWithType: LayoutOrderType.ColumnThenRow -- uid: XRTK.SDK.UX.Collections.LayoutOrderType.Horizontal - name: Horizontal - href: api/XRTK.SDK.UX.Collections.LayoutOrderType.html#XRTK_SDK_UX_Collections_LayoutOrderType_Horizontal - commentId: F:XRTK.SDK.UX.Collections.LayoutOrderType.Horizontal - fullName: XRTK.SDK.UX.Collections.LayoutOrderType.Horizontal - nameWithType: LayoutOrderType.Horizontal -- uid: XRTK.SDK.UX.Collections.LayoutOrderType.RowThenColumn - name: RowThenColumn - href: api/XRTK.SDK.UX.Collections.LayoutOrderType.html#XRTK_SDK_UX_Collections_LayoutOrderType_RowThenColumn - commentId: F:XRTK.SDK.UX.Collections.LayoutOrderType.RowThenColumn - fullName: XRTK.SDK.UX.Collections.LayoutOrderType.RowThenColumn - nameWithType: LayoutOrderType.RowThenColumn -- uid: XRTK.SDK.UX.Collections.LayoutOrderType.Vertical - name: Vertical - href: api/XRTK.SDK.UX.Collections.LayoutOrderType.html#XRTK_SDK_UX_Collections_LayoutOrderType_Vertical - commentId: F:XRTK.SDK.UX.Collections.LayoutOrderType.Vertical - fullName: XRTK.SDK.UX.Collections.LayoutOrderType.Vertical - nameWithType: LayoutOrderType.Vertical -- uid: XRTK.SDK.UX.Collections.ObjectCollectionNode - name: ObjectCollectionNode - href: api/XRTK.SDK.UX.Collections.ObjectCollectionNode.html - commentId: T:XRTK.SDK.UX.Collections.ObjectCollectionNode - fullName: XRTK.SDK.UX.Collections.ObjectCollectionNode - nameWithType: ObjectCollectionNode -- uid: XRTK.SDK.UX.Collections.ObjectCollectionNode.Name - name: Name - href: api/XRTK.SDK.UX.Collections.ObjectCollectionNode.html#XRTK_SDK_UX_Collections_ObjectCollectionNode_Name - commentId: F:XRTK.SDK.UX.Collections.ObjectCollectionNode.Name - fullName: XRTK.SDK.UX.Collections.ObjectCollectionNode.Name - nameWithType: ObjectCollectionNode.Name -- uid: XRTK.SDK.UX.Collections.ObjectCollectionNode.Offset - name: Offset - href: api/XRTK.SDK.UX.Collections.ObjectCollectionNode.html#XRTK_SDK_UX_Collections_ObjectCollectionNode_Offset - commentId: F:XRTK.SDK.UX.Collections.ObjectCollectionNode.Offset - fullName: XRTK.SDK.UX.Collections.ObjectCollectionNode.Offset - nameWithType: ObjectCollectionNode.Offset -- uid: XRTK.SDK.UX.Collections.ObjectCollectionNode.Radius - name: Radius - href: api/XRTK.SDK.UX.Collections.ObjectCollectionNode.html#XRTK_SDK_UX_Collections_ObjectCollectionNode_Radius - commentId: F:XRTK.SDK.UX.Collections.ObjectCollectionNode.Radius - fullName: XRTK.SDK.UX.Collections.ObjectCollectionNode.Radius - nameWithType: ObjectCollectionNode.Radius -- uid: XRTK.SDK.UX.Collections.ObjectCollectionNode.Transform - name: Transform - href: api/XRTK.SDK.UX.Collections.ObjectCollectionNode.html#XRTK_SDK_UX_Collections_ObjectCollectionNode_Transform - commentId: F:XRTK.SDK.UX.Collections.ObjectCollectionNode.Transform - fullName: XRTK.SDK.UX.Collections.ObjectCollectionNode.Transform - nameWithType: ObjectCollectionNode.Transform -- uid: XRTK.SDK.UX.Collections.ObjectOrientationSurfaceType - name: ObjectOrientationSurfaceType - href: api/XRTK.SDK.UX.Collections.ObjectOrientationSurfaceType.html - commentId: T:XRTK.SDK.UX.Collections.ObjectOrientationSurfaceType - fullName: XRTK.SDK.UX.Collections.ObjectOrientationSurfaceType - nameWithType: ObjectOrientationSurfaceType -- uid: XRTK.SDK.UX.Collections.ObjectOrientationSurfaceType.Cylinder - name: Cylinder - href: api/XRTK.SDK.UX.Collections.ObjectOrientationSurfaceType.html#XRTK_SDK_UX_Collections_ObjectOrientationSurfaceType_Cylinder - commentId: F:XRTK.SDK.UX.Collections.ObjectOrientationSurfaceType.Cylinder - fullName: XRTK.SDK.UX.Collections.ObjectOrientationSurfaceType.Cylinder - nameWithType: ObjectOrientationSurfaceType.Cylinder -- uid: XRTK.SDK.UX.Collections.ObjectOrientationSurfaceType.Plane - name: Plane - href: api/XRTK.SDK.UX.Collections.ObjectOrientationSurfaceType.html#XRTK_SDK_UX_Collections_ObjectOrientationSurfaceType_Plane - commentId: F:XRTK.SDK.UX.Collections.ObjectOrientationSurfaceType.Plane - fullName: XRTK.SDK.UX.Collections.ObjectOrientationSurfaceType.Plane - nameWithType: ObjectOrientationSurfaceType.Plane -- uid: XRTK.SDK.UX.Collections.ObjectOrientationSurfaceType.Radial - name: Radial - href: api/XRTK.SDK.UX.Collections.ObjectOrientationSurfaceType.html#XRTK_SDK_UX_Collections_ObjectOrientationSurfaceType_Radial - commentId: F:XRTK.SDK.UX.Collections.ObjectOrientationSurfaceType.Radial - fullName: XRTK.SDK.UX.Collections.ObjectOrientationSurfaceType.Radial - nameWithType: ObjectOrientationSurfaceType.Radial -- uid: XRTK.SDK.UX.Collections.ObjectOrientationSurfaceType.Sphere - name: Sphere - href: api/XRTK.SDK.UX.Collections.ObjectOrientationSurfaceType.html#XRTK_SDK_UX_Collections_ObjectOrientationSurfaceType_Sphere - commentId: F:XRTK.SDK.UX.Collections.ObjectOrientationSurfaceType.Sphere - fullName: XRTK.SDK.UX.Collections.ObjectOrientationSurfaceType.Sphere - nameWithType: ObjectOrientationSurfaceType.Sphere -- uid: XRTK.SDK.UX.Collections.ScatterObjectCollection - name: ScatterObjectCollection - href: api/XRTK.SDK.UX.Collections.ScatterObjectCollection.html - commentId: T:XRTK.SDK.UX.Collections.ScatterObjectCollection - fullName: XRTK.SDK.UX.Collections.ScatterObjectCollection - nameWithType: ScatterObjectCollection -- uid: XRTK.SDK.UX.Collections.ScatterObjectCollection.LayoutChildren - name: LayoutChildren() - href: api/XRTK.SDK.UX.Collections.ScatterObjectCollection.html#XRTK_SDK_UX_Collections_ScatterObjectCollection_LayoutChildren - commentId: M:XRTK.SDK.UX.Collections.ScatterObjectCollection.LayoutChildren - fullName: XRTK.SDK.UX.Collections.ScatterObjectCollection.LayoutChildren() - nameWithType: ScatterObjectCollection.LayoutChildren() -- uid: XRTK.SDK.UX.Collections.ScatterObjectCollection.LayoutChildren* - name: LayoutChildren - href: api/XRTK.SDK.UX.Collections.ScatterObjectCollection.html#XRTK_SDK_UX_Collections_ScatterObjectCollection_LayoutChildren_ - commentId: Overload:XRTK.SDK.UX.Collections.ScatterObjectCollection.LayoutChildren - isSpec: "True" - fullName: XRTK.SDK.UX.Collections.ScatterObjectCollection.LayoutChildren - nameWithType: ScatterObjectCollection.LayoutChildren -- uid: XRTK.SDK.UX.Controllers - name: XRTK.SDK.UX.Controllers - href: api/XRTK.SDK.UX.Controllers.html - commentId: N:XRTK.SDK.UX.Controllers - fullName: XRTK.SDK.UX.Controllers - nameWithType: XRTK.SDK.UX.Controllers -- uid: XRTK.SDK.UX.Controllers.DefaultMixedRealityControllerVisualizer - name: DefaultMixedRealityControllerVisualizer - href: api/XRTK.SDK.UX.Controllers.DefaultMixedRealityControllerVisualizer.html - commentId: T:XRTK.SDK.UX.Controllers.DefaultMixedRealityControllerVisualizer - fullName: XRTK.SDK.UX.Controllers.DefaultMixedRealityControllerVisualizer - nameWithType: DefaultMixedRealityControllerVisualizer -- uid: XRTK.SDK.UX.Controllers.DefaultMixedRealityControllerVisualizer.GameObject - name: GameObject - href: api/XRTK.SDK.UX.Controllers.DefaultMixedRealityControllerVisualizer.html#XRTK_SDK_UX_Controllers_DefaultMixedRealityControllerVisualizer_GameObject - commentId: P:XRTK.SDK.UX.Controllers.DefaultMixedRealityControllerVisualizer.GameObject - fullName: XRTK.SDK.UX.Controllers.DefaultMixedRealityControllerVisualizer.GameObject - nameWithType: DefaultMixedRealityControllerVisualizer.GameObject -- uid: XRTK.SDK.UX.Controllers.DefaultMixedRealityControllerVisualizer.GameObject* - name: GameObject - href: api/XRTK.SDK.UX.Controllers.DefaultMixedRealityControllerVisualizer.html#XRTK_SDK_UX_Controllers_DefaultMixedRealityControllerVisualizer_GameObject_ - commentId: Overload:XRTK.SDK.UX.Controllers.DefaultMixedRealityControllerVisualizer.GameObject - isSpec: "True" - fullName: XRTK.SDK.UX.Controllers.DefaultMixedRealityControllerVisualizer.GameObject - nameWithType: DefaultMixedRealityControllerVisualizer.GameObject -- uid: XRTK.SDK.UX.Controllers.Hands - name: XRTK.SDK.UX.Controllers.Hands - href: api/XRTK.SDK.UX.Controllers.Hands.html - commentId: N:XRTK.SDK.UX.Controllers.Hands - fullName: XRTK.SDK.UX.Controllers.Hands - nameWithType: XRTK.SDK.UX.Controllers.Hands -- uid: XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer - name: DefaultHandControllerVisualizer - href: api/XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer.html - commentId: T:XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer - fullName: XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer - nameWithType: DefaultHandControllerVisualizer -- uid: XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer.GameObject - name: GameObject - href: api/XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer.html#XRTK_SDK_UX_Controllers_Hands_DefaultHandControllerVisualizer_GameObject - commentId: P:XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer.GameObject - fullName: XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer.GameObject - nameWithType: DefaultHandControllerVisualizer.GameObject -- uid: XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer.GameObject* - name: GameObject - href: api/XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer.html#XRTK_SDK_UX_Controllers_Hands_DefaultHandControllerVisualizer_GameObject_ - commentId: Overload:XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer.GameObject - isSpec: "True" - fullName: XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer.GameObject - nameWithType: DefaultHandControllerVisualizer.GameObject -- uid: XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer.GetOrCreateJointTransform(XRTK.Definitions.Controllers.Hands.TrackedHandJoint) - name: GetOrCreateJointTransform(TrackedHandJoint) - href: api/XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer.html#XRTK_SDK_UX_Controllers_Hands_DefaultHandControllerVisualizer_GetOrCreateJointTransform_XRTK_Definitions_Controllers_Hands_TrackedHandJoint_ - commentId: M:XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer.GetOrCreateJointTransform(XRTK.Definitions.Controllers.Hands.TrackedHandJoint) - fullName: XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer.GetOrCreateJointTransform(XRTK.Definitions.Controllers.Hands.TrackedHandJoint) - nameWithType: DefaultHandControllerVisualizer.GetOrCreateJointTransform(TrackedHandJoint) -- uid: XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer.GetOrCreateJointTransform* - name: GetOrCreateJointTransform - href: api/XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer.html#XRTK_SDK_UX_Controllers_Hands_DefaultHandControllerVisualizer_GetOrCreateJointTransform_ - commentId: Overload:XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer.GetOrCreateJointTransform - isSpec: "True" - fullName: XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer.GetOrCreateJointTransform - nameWithType: DefaultHandControllerVisualizer.GetOrCreateJointTransform -- uid: XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer.HandControllerDataProvider - name: HandControllerDataProvider - href: api/XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer.html#XRTK_SDK_UX_Controllers_Hands_DefaultHandControllerVisualizer_HandControllerDataProvider - commentId: P:XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer.HandControllerDataProvider - fullName: XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer.HandControllerDataProvider - nameWithType: DefaultHandControllerVisualizer.HandControllerDataProvider -- uid: XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer.HandControllerDataProvider* - name: HandControllerDataProvider - href: api/XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer.html#XRTK_SDK_UX_Controllers_Hands_DefaultHandControllerVisualizer_HandControllerDataProvider_ - commentId: Overload:XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer.HandControllerDataProvider - isSpec: "True" - fullName: XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer.HandControllerDataProvider - nameWithType: DefaultHandControllerVisualizer.HandControllerDataProvider -- uid: XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer.HandVisualizationGameObject - name: HandVisualizationGameObject - href: api/XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer.html#XRTK_SDK_UX_Controllers_Hands_DefaultHandControllerVisualizer_HandVisualizationGameObject - commentId: P:XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer.HandVisualizationGameObject - fullName: XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer.HandVisualizationGameObject - nameWithType: DefaultHandControllerVisualizer.HandVisualizationGameObject -- uid: XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer.HandVisualizationGameObject* - name: HandVisualizationGameObject - href: api/XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer.html#XRTK_SDK_UX_Controllers_Hands_DefaultHandControllerVisualizer_HandVisualizationGameObject_ - commentId: Overload:XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer.HandVisualizationGameObject - isSpec: "True" - fullName: XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer.HandVisualizationGameObject - nameWithType: DefaultHandControllerVisualizer.HandVisualizationGameObject -- uid: XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer.OnDestroy - name: OnDestroy() - href: api/XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer.html#XRTK_SDK_UX_Controllers_Hands_DefaultHandControllerVisualizer_OnDestroy - commentId: M:XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer.OnDestroy - fullName: XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer.OnDestroy() - nameWithType: DefaultHandControllerVisualizer.OnDestroy() -- uid: XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer.OnDestroy* - name: OnDestroy - href: api/XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer.html#XRTK_SDK_UX_Controllers_Hands_DefaultHandControllerVisualizer_OnDestroy_ - commentId: Overload:XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer.OnDestroy - isSpec: "True" - fullName: XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer.OnDestroy - nameWithType: DefaultHandControllerVisualizer.OnDestroy -- uid: XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer.OnInputChanged(XRTK.EventDatum.Input.InputEventData{XRTK.Definitions.Utilities.MixedRealityPose}) - name: OnInputChanged(InputEventData) - href: api/XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer.html#XRTK_SDK_UX_Controllers_Hands_DefaultHandControllerVisualizer_OnInputChanged_XRTK_EventDatum_Input_InputEventData_XRTK_Definitions_Utilities_MixedRealityPose__ - commentId: M:XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer.OnInputChanged(XRTK.EventDatum.Input.InputEventData{XRTK.Definitions.Utilities.MixedRealityPose}) - name.vb: OnInputChanged(InputEventData(Of MixedRealityPose)) - fullName: XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer.OnInputChanged(XRTK.EventDatum.Input.InputEventData) - fullName.vb: XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer.OnInputChanged(XRTK.EventDatum.Input.InputEventData(Of XRTK.Definitions.Utilities.MixedRealityPose)) - nameWithType: DefaultHandControllerVisualizer.OnInputChanged(InputEventData) - nameWithType.vb: DefaultHandControllerVisualizer.OnInputChanged(InputEventData(Of MixedRealityPose)) -- uid: XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer.OnInputChanged* - name: OnInputChanged - href: api/XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer.html#XRTK_SDK_UX_Controllers_Hands_DefaultHandControllerVisualizer_OnInputChanged_ - commentId: Overload:XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer.OnInputChanged - isSpec: "True" - fullName: XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer.OnInputChanged - nameWithType: DefaultHandControllerVisualizer.OnInputChanged -- uid: XRTK.SDK.UX.Controllers.Hands.HandControllerJointsVisualizer - name: HandControllerJointsVisualizer - href: api/XRTK.SDK.UX.Controllers.Hands.HandControllerJointsVisualizer.html - commentId: T:XRTK.SDK.UX.Controllers.Hands.HandControllerJointsVisualizer - fullName: XRTK.SDK.UX.Controllers.Hands.HandControllerJointsVisualizer - nameWithType: HandControllerJointsVisualizer -- uid: XRTK.SDK.UX.Controllers.Hands.HandControllerJointsVisualizer.UpdateVisualization(XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer) - name: UpdateVisualization(DefaultHandControllerVisualizer) - href: api/XRTK.SDK.UX.Controllers.Hands.HandControllerJointsVisualizer.html#XRTK_SDK_UX_Controllers_Hands_HandControllerJointsVisualizer_UpdateVisualization_XRTK_SDK_UX_Controllers_Hands_DefaultHandControllerVisualizer_ - commentId: M:XRTK.SDK.UX.Controllers.Hands.HandControllerJointsVisualizer.UpdateVisualization(XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer) - fullName: XRTK.SDK.UX.Controllers.Hands.HandControllerJointsVisualizer.UpdateVisualization(XRTK.SDK.UX.Controllers.Hands.DefaultHandControllerVisualizer) - nameWithType: HandControllerJointsVisualizer.UpdateVisualization(DefaultHandControllerVisualizer) -- uid: XRTK.SDK.UX.Controllers.Hands.HandControllerJointsVisualizer.UpdateVisualization* - name: UpdateVisualization - href: api/XRTK.SDK.UX.Controllers.Hands.HandControllerJointsVisualizer.html#XRTK_SDK_UX_Controllers_Hands_HandControllerJointsVisualizer_UpdateVisualization_ - commentId: Overload:XRTK.SDK.UX.Controllers.Hands.HandControllerJointsVisualizer.UpdateVisualization - isSpec: "True" - fullName: XRTK.SDK.UX.Controllers.Hands.HandControllerJointsVisualizer.UpdateVisualization - nameWithType: HandControllerJointsVisualizer.UpdateVisualization -- uid: XRTK.SDK.UX.Controllers.Hands.HandControllerMeshVisualizer - name: HandControllerMeshVisualizer - href: api/XRTK.SDK.UX.Controllers.Hands.HandControllerMeshVisualizer.html - commentId: T:XRTK.SDK.UX.Controllers.Hands.HandControllerMeshVisualizer - fullName: XRTK.SDK.UX.Controllers.Hands.HandControllerMeshVisualizer - nameWithType: HandControllerMeshVisualizer -- uid: XRTK.SDK.UX.Controllers.Hands.HandControllerMeshVisualizer.UpdateVisualization(XRTK.Definitions.Controllers.Hands.HandMeshData) - name: UpdateVisualization(HandMeshData) - href: api/XRTK.SDK.UX.Controllers.Hands.HandControllerMeshVisualizer.html#XRTK_SDK_UX_Controllers_Hands_HandControllerMeshVisualizer_UpdateVisualization_XRTK_Definitions_Controllers_Hands_HandMeshData_ - commentId: M:XRTK.SDK.UX.Controllers.Hands.HandControllerMeshVisualizer.UpdateVisualization(XRTK.Definitions.Controllers.Hands.HandMeshData) - fullName: XRTK.SDK.UX.Controllers.Hands.HandControllerMeshVisualizer.UpdateVisualization(XRTK.Definitions.Controllers.Hands.HandMeshData) - nameWithType: HandControllerMeshVisualizer.UpdateVisualization(HandMeshData) -- uid: XRTK.SDK.UX.Controllers.Hands.HandControllerMeshVisualizer.UpdateVisualization* - name: UpdateVisualization - href: api/XRTK.SDK.UX.Controllers.Hands.HandControllerMeshVisualizer.html#XRTK_SDK_UX_Controllers_Hands_HandControllerMeshVisualizer_UpdateVisualization_ - commentId: Overload:XRTK.SDK.UX.Controllers.Hands.HandControllerMeshVisualizer.UpdateVisualization - isSpec: "True" - fullName: XRTK.SDK.UX.Controllers.Hands.HandControllerMeshVisualizer.UpdateVisualization - nameWithType: HandControllerMeshVisualizer.UpdateVisualization -- uid: XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer - name: WindowsMixedRealityControllerVisualizer - href: api/XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.html - commentId: T:XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer - fullName: XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer - nameWithType: WindowsMixedRealityControllerVisualizer -- uid: XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.Controller - name: Controller - href: api/XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.html#XRTK_SDK_UX_Controllers_WindowsMixedRealityControllerVisualizer_Controller - commentId: P:XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.Controller - fullName: XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.Controller - nameWithType: WindowsMixedRealityControllerVisualizer.Controller -- uid: XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.Controller* - name: Controller - href: api/XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.html#XRTK_SDK_UX_Controllers_WindowsMixedRealityControllerVisualizer_Controller_ - commentId: Overload:XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.Controller - isSpec: "True" - fullName: XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.Controller - nameWithType: WindowsMixedRealityControllerVisualizer.Controller -- uid: XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.OnInputChanged(XRTK.EventDatum.Input.InputEventData{System.Single}) - name: OnInputChanged(InputEventData) - href: api/XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.html#XRTK_SDK_UX_Controllers_WindowsMixedRealityControllerVisualizer_OnInputChanged_XRTK_EventDatum_Input_InputEventData_System_Single__ - commentId: M:XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.OnInputChanged(XRTK.EventDatum.Input.InputEventData{System.Single}) - name.vb: OnInputChanged(InputEventData(Of Single)) - fullName: XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.OnInputChanged(XRTK.EventDatum.Input.InputEventData) - fullName.vb: XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.OnInputChanged(XRTK.EventDatum.Input.InputEventData(Of System.Single)) - nameWithType: WindowsMixedRealityControllerVisualizer.OnInputChanged(InputEventData) - nameWithType.vb: WindowsMixedRealityControllerVisualizer.OnInputChanged(InputEventData(Of Single)) -- uid: XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.OnInputChanged(XRTK.EventDatum.Input.InputEventData{UnityEngine.Quaternion}) - name: OnInputChanged(InputEventData) - href: api/XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.html#XRTK_SDK_UX_Controllers_WindowsMixedRealityControllerVisualizer_OnInputChanged_XRTK_EventDatum_Input_InputEventData_UnityEngine_Quaternion__ - commentId: M:XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.OnInputChanged(XRTK.EventDatum.Input.InputEventData{UnityEngine.Quaternion}) - name.vb: OnInputChanged(InputEventData(Of Quaternion)) - fullName: XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.OnInputChanged(XRTK.EventDatum.Input.InputEventData) - fullName.vb: XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.OnInputChanged(XRTK.EventDatum.Input.InputEventData(Of UnityEngine.Quaternion)) - nameWithType: WindowsMixedRealityControllerVisualizer.OnInputChanged(InputEventData) - nameWithType.vb: WindowsMixedRealityControllerVisualizer.OnInputChanged(InputEventData(Of Quaternion)) -- uid: XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.OnInputChanged(XRTK.EventDatum.Input.InputEventData{UnityEngine.Vector2}) - name: OnInputChanged(InputEventData) - href: api/XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.html#XRTK_SDK_UX_Controllers_WindowsMixedRealityControllerVisualizer_OnInputChanged_XRTK_EventDatum_Input_InputEventData_UnityEngine_Vector2__ - commentId: M:XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.OnInputChanged(XRTK.EventDatum.Input.InputEventData{UnityEngine.Vector2}) - name.vb: OnInputChanged(InputEventData(Of Vector2)) - fullName: XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.OnInputChanged(XRTK.EventDatum.Input.InputEventData) - fullName.vb: XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.OnInputChanged(XRTK.EventDatum.Input.InputEventData(Of UnityEngine.Vector2)) - nameWithType: WindowsMixedRealityControllerVisualizer.OnInputChanged(InputEventData) - nameWithType.vb: WindowsMixedRealityControllerVisualizer.OnInputChanged(InputEventData(Of Vector2)) -- uid: XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.OnInputChanged(XRTK.EventDatum.Input.InputEventData{UnityEngine.Vector3}) - name: OnInputChanged(InputEventData) - href: api/XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.html#XRTK_SDK_UX_Controllers_WindowsMixedRealityControllerVisualizer_OnInputChanged_XRTK_EventDatum_Input_InputEventData_UnityEngine_Vector3__ - commentId: M:XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.OnInputChanged(XRTK.EventDatum.Input.InputEventData{UnityEngine.Vector3}) - name.vb: OnInputChanged(InputEventData(Of Vector3)) - fullName: XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.OnInputChanged(XRTK.EventDatum.Input.InputEventData) - fullName.vb: XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.OnInputChanged(XRTK.EventDatum.Input.InputEventData(Of UnityEngine.Vector3)) - nameWithType: WindowsMixedRealityControllerVisualizer.OnInputChanged(InputEventData) - nameWithType.vb: WindowsMixedRealityControllerVisualizer.OnInputChanged(InputEventData(Of Vector3)) -- uid: XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.OnInputChanged(XRTK.EventDatum.Input.InputEventData{XRTK.Definitions.Utilities.MixedRealityPose}) - name: OnInputChanged(InputEventData) - href: api/XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.html#XRTK_SDK_UX_Controllers_WindowsMixedRealityControllerVisualizer_OnInputChanged_XRTK_EventDatum_Input_InputEventData_XRTK_Definitions_Utilities_MixedRealityPose__ - commentId: M:XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.OnInputChanged(XRTK.EventDatum.Input.InputEventData{XRTK.Definitions.Utilities.MixedRealityPose}) - name.vb: OnInputChanged(InputEventData(Of MixedRealityPose)) - fullName: XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.OnInputChanged(XRTK.EventDatum.Input.InputEventData) - fullName.vb: XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.OnInputChanged(XRTK.EventDatum.Input.InputEventData(Of XRTK.Definitions.Utilities.MixedRealityPose)) - nameWithType: WindowsMixedRealityControllerVisualizer.OnInputChanged(InputEventData) - nameWithType.vb: WindowsMixedRealityControllerVisualizer.OnInputChanged(InputEventData(Of MixedRealityPose)) -- uid: XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.OnInputChanged* - name: OnInputChanged - href: api/XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.html#XRTK_SDK_UX_Controllers_WindowsMixedRealityControllerVisualizer_OnInputChanged_ - commentId: Overload:XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.OnInputChanged - isSpec: "True" - fullName: XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.OnInputChanged - nameWithType: WindowsMixedRealityControllerVisualizer.OnInputChanged -- uid: XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.OnInputDown(XRTK.EventDatum.Input.InputEventData) - name: OnInputDown(InputEventData) - href: api/XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.html#XRTK_SDK_UX_Controllers_WindowsMixedRealityControllerVisualizer_OnInputDown_XRTK_EventDatum_Input_InputEventData_ - commentId: M:XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.OnInputDown(XRTK.EventDatum.Input.InputEventData) - fullName: XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.OnInputDown(XRTK.EventDatum.Input.InputEventData) - nameWithType: WindowsMixedRealityControllerVisualizer.OnInputDown(InputEventData) -- uid: XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.OnInputDown* - name: OnInputDown - href: api/XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.html#XRTK_SDK_UX_Controllers_WindowsMixedRealityControllerVisualizer_OnInputDown_ - commentId: Overload:XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.OnInputDown - isSpec: "True" - fullName: XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.OnInputDown - nameWithType: WindowsMixedRealityControllerVisualizer.OnInputDown -- uid: XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.OnInputUp(XRTK.EventDatum.Input.InputEventData) - name: OnInputUp(InputEventData) - href: api/XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.html#XRTK_SDK_UX_Controllers_WindowsMixedRealityControllerVisualizer_OnInputUp_XRTK_EventDatum_Input_InputEventData_ - commentId: M:XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.OnInputUp(XRTK.EventDatum.Input.InputEventData) - fullName: XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.OnInputUp(XRTK.EventDatum.Input.InputEventData) - nameWithType: WindowsMixedRealityControllerVisualizer.OnInputUp(InputEventData) -- uid: XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.OnInputUp* - name: OnInputUp - href: api/XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.html#XRTK_SDK_UX_Controllers_WindowsMixedRealityControllerVisualizer_OnInputUp_ - commentId: Overload:XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.OnInputUp - isSpec: "True" - fullName: XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.OnInputUp - nameWithType: WindowsMixedRealityControllerVisualizer.OnInputUp -- uid: XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.TouchpadTouchVisualizer - name: TouchpadTouchVisualizer - href: api/XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.html#XRTK_SDK_UX_Controllers_WindowsMixedRealityControllerVisualizer_TouchpadTouchVisualizer - commentId: P:XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.TouchpadTouchVisualizer - fullName: XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.TouchpadTouchVisualizer - nameWithType: WindowsMixedRealityControllerVisualizer.TouchpadTouchVisualizer -- uid: XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.TouchpadTouchVisualizer* - name: TouchpadTouchVisualizer - href: api/XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.html#XRTK_SDK_UX_Controllers_WindowsMixedRealityControllerVisualizer_TouchpadTouchVisualizer_ - commentId: Overload:XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.TouchpadTouchVisualizer - isSpec: "True" - fullName: XRTK.SDK.UX.Controllers.WindowsMixedRealityControllerVisualizer.TouchpadTouchVisualizer - nameWithType: WindowsMixedRealityControllerVisualizer.TouchpadTouchVisualizer -- uid: XRTK.SDK.UX.Cursors - name: XRTK.SDK.UX.Cursors - href: api/XRTK.SDK.UX.Cursors.html - commentId: N:XRTK.SDK.UX.Cursors - fullName: XRTK.SDK.UX.Cursors - nameWithType: XRTK.SDK.UX.Cursors -- uid: XRTK.SDK.UX.Cursors.AnimatedCursor - name: AnimatedCursor - href: api/XRTK.SDK.UX.Cursors.AnimatedCursor.html - commentId: T:XRTK.SDK.UX.Cursors.AnimatedCursor - fullName: XRTK.SDK.UX.Cursors.AnimatedCursor - nameWithType: AnimatedCursor -- uid: XRTK.SDK.UX.Cursors.AnimatedCursor.OnCursorStateChange(XRTK.Definitions.InputSystem.CursorStateEnum) - name: OnCursorStateChange(CursorStateEnum) - href: api/XRTK.SDK.UX.Cursors.AnimatedCursor.html#XRTK_SDK_UX_Cursors_AnimatedCursor_OnCursorStateChange_XRTK_Definitions_InputSystem_CursorStateEnum_ - commentId: M:XRTK.SDK.UX.Cursors.AnimatedCursor.OnCursorStateChange(XRTK.Definitions.InputSystem.CursorStateEnum) - fullName: XRTK.SDK.UX.Cursors.AnimatedCursor.OnCursorStateChange(XRTK.Definitions.InputSystem.CursorStateEnum) - nameWithType: AnimatedCursor.OnCursorStateChange(CursorStateEnum) -- uid: XRTK.SDK.UX.Cursors.AnimatedCursor.OnCursorStateChange* - name: OnCursorStateChange - href: api/XRTK.SDK.UX.Cursors.AnimatedCursor.html#XRTK_SDK_UX_Cursors_AnimatedCursor_OnCursorStateChange_ - commentId: Overload:XRTK.SDK.UX.Cursors.AnimatedCursor.OnCursorStateChange - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.AnimatedCursor.OnCursorStateChange - nameWithType: AnimatedCursor.OnCursorStateChange -- uid: XRTK.SDK.UX.Cursors.AnimatedCursor.OnFocusChanged(XRTK.EventDatum.Input.FocusEventData) - name: OnFocusChanged(FocusEventData) - href: api/XRTK.SDK.UX.Cursors.AnimatedCursor.html#XRTK_SDK_UX_Cursors_AnimatedCursor_OnFocusChanged_XRTK_EventDatum_Input_FocusEventData_ - commentId: M:XRTK.SDK.UX.Cursors.AnimatedCursor.OnFocusChanged(XRTK.EventDatum.Input.FocusEventData) - fullName: XRTK.SDK.UX.Cursors.AnimatedCursor.OnFocusChanged(XRTK.EventDatum.Input.FocusEventData) - nameWithType: AnimatedCursor.OnFocusChanged(FocusEventData) -- uid: XRTK.SDK.UX.Cursors.AnimatedCursor.OnFocusChanged* - name: OnFocusChanged - href: api/XRTK.SDK.UX.Cursors.AnimatedCursor.html#XRTK_SDK_UX_Cursors_AnimatedCursor_OnFocusChanged_ - commentId: Overload:XRTK.SDK.UX.Cursors.AnimatedCursor.OnFocusChanged - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.AnimatedCursor.OnFocusChanged - nameWithType: AnimatedCursor.OnFocusChanged -- uid: XRTK.SDK.UX.Cursors.AnimatedCursor.OnInputDisabled - name: OnInputDisabled() - href: api/XRTK.SDK.UX.Cursors.AnimatedCursor.html#XRTK_SDK_UX_Cursors_AnimatedCursor_OnInputDisabled - commentId: M:XRTK.SDK.UX.Cursors.AnimatedCursor.OnInputDisabled - fullName: XRTK.SDK.UX.Cursors.AnimatedCursor.OnInputDisabled() - nameWithType: AnimatedCursor.OnInputDisabled() -- uid: XRTK.SDK.UX.Cursors.AnimatedCursor.OnInputDisabled* - name: OnInputDisabled - href: api/XRTK.SDK.UX.Cursors.AnimatedCursor.html#XRTK_SDK_UX_Cursors_AnimatedCursor_OnInputDisabled_ - commentId: Overload:XRTK.SDK.UX.Cursors.AnimatedCursor.OnInputDisabled - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.AnimatedCursor.OnInputDisabled - nameWithType: AnimatedCursor.OnInputDisabled -- uid: XRTK.SDK.UX.Cursors.AnimatedCursor.OnInputEnabled - name: OnInputEnabled() - href: api/XRTK.SDK.UX.Cursors.AnimatedCursor.html#XRTK_SDK_UX_Cursors_AnimatedCursor_OnInputEnabled - commentId: M:XRTK.SDK.UX.Cursors.AnimatedCursor.OnInputEnabled - fullName: XRTK.SDK.UX.Cursors.AnimatedCursor.OnInputEnabled() - nameWithType: AnimatedCursor.OnInputEnabled() -- uid: XRTK.SDK.UX.Cursors.AnimatedCursor.OnInputEnabled* - name: OnInputEnabled - href: api/XRTK.SDK.UX.Cursors.AnimatedCursor.html#XRTK_SDK_UX_Cursors_AnimatedCursor_OnInputEnabled_ - commentId: Overload:XRTK.SDK.UX.Cursors.AnimatedCursor.OnInputEnabled - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.AnimatedCursor.OnInputEnabled - nameWithType: AnimatedCursor.OnInputEnabled -- uid: XRTK.SDK.UX.Cursors.BaseCursor - name: BaseCursor - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html - commentId: T:XRTK.SDK.UX.Cursors.BaseCursor - fullName: XRTK.SDK.UX.Cursors.BaseCursor - nameWithType: BaseCursor -- uid: XRTK.SDK.UX.Cursors.BaseCursor.CheckCursorState - name: CheckCursorState() - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_CheckCursorState - commentId: M:XRTK.SDK.UX.Cursors.BaseCursor.CheckCursorState - fullName: XRTK.SDK.UX.Cursors.BaseCursor.CheckCursorState() - nameWithType: BaseCursor.CheckCursorState() -- uid: XRTK.SDK.UX.Cursors.BaseCursor.CheckCursorState* - name: CheckCursorState - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_CheckCursorState_ - commentId: Overload:XRTK.SDK.UX.Cursors.BaseCursor.CheckCursorState - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.BaseCursor.CheckCursorState - nameWithType: BaseCursor.CheckCursorState -- uid: XRTK.SDK.UX.Cursors.BaseCursor.CursorState - name: CursorState - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_CursorState - commentId: P:XRTK.SDK.UX.Cursors.BaseCursor.CursorState - fullName: XRTK.SDK.UX.Cursors.BaseCursor.CursorState - nameWithType: BaseCursor.CursorState -- uid: XRTK.SDK.UX.Cursors.BaseCursor.CursorState* - name: CursorState - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_CursorState_ - commentId: Overload:XRTK.SDK.UX.Cursors.BaseCursor.CursorState - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.BaseCursor.CursorState - nameWithType: BaseCursor.CursorState -- uid: XRTK.SDK.UX.Cursors.BaseCursor.GameObjectReference - name: GameObjectReference - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_GameObjectReference - commentId: P:XRTK.SDK.UX.Cursors.BaseCursor.GameObjectReference - fullName: XRTK.SDK.UX.Cursors.BaseCursor.GameObjectReference - nameWithType: BaseCursor.GameObjectReference -- uid: XRTK.SDK.UX.Cursors.BaseCursor.GameObjectReference* - name: GameObjectReference - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_GameObjectReference_ - commentId: Overload:XRTK.SDK.UX.Cursors.BaseCursor.GameObjectReference - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.BaseCursor.GameObjectReference - nameWithType: BaseCursor.GameObjectReference -- uid: XRTK.SDK.UX.Cursors.BaseCursor.IsPointerDown - name: IsPointerDown - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_IsPointerDown - commentId: F:XRTK.SDK.UX.Cursors.BaseCursor.IsPointerDown - fullName: XRTK.SDK.UX.Cursors.BaseCursor.IsPointerDown - nameWithType: BaseCursor.IsPointerDown -- uid: XRTK.SDK.UX.Cursors.BaseCursor.IsSourceDetected - name: IsSourceDetected - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_IsSourceDetected - commentId: P:XRTK.SDK.UX.Cursors.BaseCursor.IsSourceDetected - fullName: XRTK.SDK.UX.Cursors.BaseCursor.IsSourceDetected - nameWithType: BaseCursor.IsSourceDetected -- uid: XRTK.SDK.UX.Cursors.BaseCursor.IsSourceDetected* - name: IsSourceDetected - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_IsSourceDetected_ - commentId: Overload:XRTK.SDK.UX.Cursors.BaseCursor.IsSourceDetected - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.BaseCursor.IsSourceDetected - nameWithType: BaseCursor.IsSourceDetected -- uid: XRTK.SDK.UX.Cursors.BaseCursor.IsVisible - name: IsVisible - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_IsVisible - commentId: P:XRTK.SDK.UX.Cursors.BaseCursor.IsVisible - fullName: XRTK.SDK.UX.Cursors.BaseCursor.IsVisible - nameWithType: BaseCursor.IsVisible -- uid: XRTK.SDK.UX.Cursors.BaseCursor.IsVisible* - name: IsVisible - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_IsVisible_ - commentId: Overload:XRTK.SDK.UX.Cursors.BaseCursor.IsVisible - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.BaseCursor.IsVisible - nameWithType: BaseCursor.IsVisible -- uid: XRTK.SDK.UX.Cursors.BaseCursor.LocalScale - name: LocalScale - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_LocalScale - commentId: P:XRTK.SDK.UX.Cursors.BaseCursor.LocalScale - fullName: XRTK.SDK.UX.Cursors.BaseCursor.LocalScale - nameWithType: BaseCursor.LocalScale -- uid: XRTK.SDK.UX.Cursors.BaseCursor.LocalScale* - name: LocalScale - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_LocalScale_ - commentId: Overload:XRTK.SDK.UX.Cursors.BaseCursor.LocalScale - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.BaseCursor.LocalScale - nameWithType: BaseCursor.LocalScale -- uid: XRTK.SDK.UX.Cursors.BaseCursor.LookRotationBlend - name: LookRotationBlend - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_LookRotationBlend - commentId: P:XRTK.SDK.UX.Cursors.BaseCursor.LookRotationBlend - fullName: XRTK.SDK.UX.Cursors.BaseCursor.LookRotationBlend - nameWithType: BaseCursor.LookRotationBlend -- uid: XRTK.SDK.UX.Cursors.BaseCursor.LookRotationBlend* - name: LookRotationBlend - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_LookRotationBlend_ - commentId: Overload:XRTK.SDK.UX.Cursors.BaseCursor.LookRotationBlend - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.BaseCursor.LookRotationBlend - nameWithType: BaseCursor.LookRotationBlend -- uid: XRTK.SDK.UX.Cursors.BaseCursor.OnBeforeFocusChange(XRTK.EventDatum.Input.FocusEventData) - name: OnBeforeFocusChange(FocusEventData) - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_OnBeforeFocusChange_XRTK_EventDatum_Input_FocusEventData_ - commentId: M:XRTK.SDK.UX.Cursors.BaseCursor.OnBeforeFocusChange(XRTK.EventDatum.Input.FocusEventData) - fullName: XRTK.SDK.UX.Cursors.BaseCursor.OnBeforeFocusChange(XRTK.EventDatum.Input.FocusEventData) - nameWithType: BaseCursor.OnBeforeFocusChange(FocusEventData) -- uid: XRTK.SDK.UX.Cursors.BaseCursor.OnBeforeFocusChange* - name: OnBeforeFocusChange - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_OnBeforeFocusChange_ - commentId: Overload:XRTK.SDK.UX.Cursors.BaseCursor.OnBeforeFocusChange - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.BaseCursor.OnBeforeFocusChange - nameWithType: BaseCursor.OnBeforeFocusChange -- uid: XRTK.SDK.UX.Cursors.BaseCursor.OnCursorStateChange(XRTK.Definitions.InputSystem.CursorStateEnum) - name: OnCursorStateChange(CursorStateEnum) - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_OnCursorStateChange_XRTK_Definitions_InputSystem_CursorStateEnum_ - commentId: M:XRTK.SDK.UX.Cursors.BaseCursor.OnCursorStateChange(XRTK.Definitions.InputSystem.CursorStateEnum) - fullName: XRTK.SDK.UX.Cursors.BaseCursor.OnCursorStateChange(XRTK.Definitions.InputSystem.CursorStateEnum) - nameWithType: BaseCursor.OnCursorStateChange(CursorStateEnum) -- uid: XRTK.SDK.UX.Cursors.BaseCursor.OnCursorStateChange* - name: OnCursorStateChange - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_OnCursorStateChange_ - commentId: Overload:XRTK.SDK.UX.Cursors.BaseCursor.OnCursorStateChange - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.BaseCursor.OnCursorStateChange - nameWithType: BaseCursor.OnCursorStateChange -- uid: XRTK.SDK.UX.Cursors.BaseCursor.OnDestroy - name: OnDestroy() - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_OnDestroy - commentId: M:XRTK.SDK.UX.Cursors.BaseCursor.OnDestroy - fullName: XRTK.SDK.UX.Cursors.BaseCursor.OnDestroy() - nameWithType: BaseCursor.OnDestroy() -- uid: XRTK.SDK.UX.Cursors.BaseCursor.OnDestroy* - name: OnDestroy - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_OnDestroy_ - commentId: Overload:XRTK.SDK.UX.Cursors.BaseCursor.OnDestroy - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.BaseCursor.OnDestroy - nameWithType: BaseCursor.OnDestroy -- uid: XRTK.SDK.UX.Cursors.BaseCursor.OnDisable - name: OnDisable() - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_OnDisable - commentId: M:XRTK.SDK.UX.Cursors.BaseCursor.OnDisable - fullName: XRTK.SDK.UX.Cursors.BaseCursor.OnDisable() - nameWithType: BaseCursor.OnDisable() -- uid: XRTK.SDK.UX.Cursors.BaseCursor.OnDisable* - name: OnDisable - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_OnDisable_ - commentId: Overload:XRTK.SDK.UX.Cursors.BaseCursor.OnDisable - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.BaseCursor.OnDisable - nameWithType: BaseCursor.OnDisable -- uid: XRTK.SDK.UX.Cursors.BaseCursor.OnEnable - name: OnEnable() - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_OnEnable - commentId: M:XRTK.SDK.UX.Cursors.BaseCursor.OnEnable - fullName: XRTK.SDK.UX.Cursors.BaseCursor.OnEnable() - nameWithType: BaseCursor.OnEnable() -- uid: XRTK.SDK.UX.Cursors.BaseCursor.OnEnable* - name: OnEnable - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_OnEnable_ - commentId: Overload:XRTK.SDK.UX.Cursors.BaseCursor.OnEnable - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.BaseCursor.OnEnable - nameWithType: BaseCursor.OnEnable -- uid: XRTK.SDK.UX.Cursors.BaseCursor.OnFocusChanged(XRTK.EventDatum.Input.FocusEventData) - name: OnFocusChanged(FocusEventData) - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_OnFocusChanged_XRTK_EventDatum_Input_FocusEventData_ - commentId: M:XRTK.SDK.UX.Cursors.BaseCursor.OnFocusChanged(XRTK.EventDatum.Input.FocusEventData) - fullName: XRTK.SDK.UX.Cursors.BaseCursor.OnFocusChanged(XRTK.EventDatum.Input.FocusEventData) - nameWithType: BaseCursor.OnFocusChanged(FocusEventData) -- uid: XRTK.SDK.UX.Cursors.BaseCursor.OnFocusChanged* - name: OnFocusChanged - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_OnFocusChanged_ - commentId: Overload:XRTK.SDK.UX.Cursors.BaseCursor.OnFocusChanged - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.BaseCursor.OnFocusChanged - nameWithType: BaseCursor.OnFocusChanged -- uid: XRTK.SDK.UX.Cursors.BaseCursor.OnInputDisabled - name: OnInputDisabled() - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_OnInputDisabled - commentId: M:XRTK.SDK.UX.Cursors.BaseCursor.OnInputDisabled - fullName: XRTK.SDK.UX.Cursors.BaseCursor.OnInputDisabled() - nameWithType: BaseCursor.OnInputDisabled() -- uid: XRTK.SDK.UX.Cursors.BaseCursor.OnInputDisabled* - name: OnInputDisabled - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_OnInputDisabled_ - commentId: Overload:XRTK.SDK.UX.Cursors.BaseCursor.OnInputDisabled - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.BaseCursor.OnInputDisabled - nameWithType: BaseCursor.OnInputDisabled -- uid: XRTK.SDK.UX.Cursors.BaseCursor.OnInputEnabled - name: OnInputEnabled() - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_OnInputEnabled - commentId: M:XRTK.SDK.UX.Cursors.BaseCursor.OnInputEnabled - fullName: XRTK.SDK.UX.Cursors.BaseCursor.OnInputEnabled() - nameWithType: BaseCursor.OnInputEnabled() -- uid: XRTK.SDK.UX.Cursors.BaseCursor.OnInputEnabled* - name: OnInputEnabled - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_OnInputEnabled_ - commentId: Overload:XRTK.SDK.UX.Cursors.BaseCursor.OnInputEnabled - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.BaseCursor.OnInputEnabled - nameWithType: BaseCursor.OnInputEnabled -- uid: XRTK.SDK.UX.Cursors.BaseCursor.OnPointerClicked(XRTK.EventDatum.Input.MixedRealityPointerEventData) - name: OnPointerClicked(MixedRealityPointerEventData) - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_OnPointerClicked_XRTK_EventDatum_Input_MixedRealityPointerEventData_ - commentId: M:XRTK.SDK.UX.Cursors.BaseCursor.OnPointerClicked(XRTK.EventDatum.Input.MixedRealityPointerEventData) - fullName: XRTK.SDK.UX.Cursors.BaseCursor.OnPointerClicked(XRTK.EventDatum.Input.MixedRealityPointerEventData) - nameWithType: BaseCursor.OnPointerClicked(MixedRealityPointerEventData) -- uid: XRTK.SDK.UX.Cursors.BaseCursor.OnPointerClicked* - name: OnPointerClicked - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_OnPointerClicked_ - commentId: Overload:XRTK.SDK.UX.Cursors.BaseCursor.OnPointerClicked - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.BaseCursor.OnPointerClicked - nameWithType: BaseCursor.OnPointerClicked -- uid: XRTK.SDK.UX.Cursors.BaseCursor.OnPointerDown(XRTK.EventDatum.Input.MixedRealityPointerEventData) - name: OnPointerDown(MixedRealityPointerEventData) - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_OnPointerDown_XRTK_EventDatum_Input_MixedRealityPointerEventData_ - commentId: M:XRTK.SDK.UX.Cursors.BaseCursor.OnPointerDown(XRTK.EventDatum.Input.MixedRealityPointerEventData) - fullName: XRTK.SDK.UX.Cursors.BaseCursor.OnPointerDown(XRTK.EventDatum.Input.MixedRealityPointerEventData) - nameWithType: BaseCursor.OnPointerDown(MixedRealityPointerEventData) -- uid: XRTK.SDK.UX.Cursors.BaseCursor.OnPointerDown* - name: OnPointerDown - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_OnPointerDown_ - commentId: Overload:XRTK.SDK.UX.Cursors.BaseCursor.OnPointerDown - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.BaseCursor.OnPointerDown - nameWithType: BaseCursor.OnPointerDown -- uid: XRTK.SDK.UX.Cursors.BaseCursor.OnPointerUp(XRTK.EventDatum.Input.MixedRealityPointerEventData) - name: OnPointerUp(MixedRealityPointerEventData) - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_OnPointerUp_XRTK_EventDatum_Input_MixedRealityPointerEventData_ - commentId: M:XRTK.SDK.UX.Cursors.BaseCursor.OnPointerUp(XRTK.EventDatum.Input.MixedRealityPointerEventData) - fullName: XRTK.SDK.UX.Cursors.BaseCursor.OnPointerUp(XRTK.EventDatum.Input.MixedRealityPointerEventData) - nameWithType: BaseCursor.OnPointerUp(MixedRealityPointerEventData) -- uid: XRTK.SDK.UX.Cursors.BaseCursor.OnPointerUp* - name: OnPointerUp - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_OnPointerUp_ - commentId: Overload:XRTK.SDK.UX.Cursors.BaseCursor.OnPointerUp - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.BaseCursor.OnPointerUp - nameWithType: BaseCursor.OnPointerUp -- uid: XRTK.SDK.UX.Cursors.BaseCursor.OnSourceDetected(XRTK.EventDatum.Input.SourceStateEventData) - name: OnSourceDetected(SourceStateEventData) - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_OnSourceDetected_XRTK_EventDatum_Input_SourceStateEventData_ - commentId: M:XRTK.SDK.UX.Cursors.BaseCursor.OnSourceDetected(XRTK.EventDatum.Input.SourceStateEventData) - fullName: XRTK.SDK.UX.Cursors.BaseCursor.OnSourceDetected(XRTK.EventDatum.Input.SourceStateEventData) - nameWithType: BaseCursor.OnSourceDetected(SourceStateEventData) -- uid: XRTK.SDK.UX.Cursors.BaseCursor.OnSourceDetected* - name: OnSourceDetected - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_OnSourceDetected_ - commentId: Overload:XRTK.SDK.UX.Cursors.BaseCursor.OnSourceDetected - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.BaseCursor.OnSourceDetected - nameWithType: BaseCursor.OnSourceDetected -- uid: XRTK.SDK.UX.Cursors.BaseCursor.OnSourceLost(XRTK.EventDatum.Input.SourceStateEventData) - name: OnSourceLost(SourceStateEventData) - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_OnSourceLost_XRTK_EventDatum_Input_SourceStateEventData_ - commentId: M:XRTK.SDK.UX.Cursors.BaseCursor.OnSourceLost(XRTK.EventDatum.Input.SourceStateEventData) - fullName: XRTK.SDK.UX.Cursors.BaseCursor.OnSourceLost(XRTK.EventDatum.Input.SourceStateEventData) - nameWithType: BaseCursor.OnSourceLost(SourceStateEventData) -- uid: XRTK.SDK.UX.Cursors.BaseCursor.OnSourceLost* - name: OnSourceLost - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_OnSourceLost_ - commentId: Overload:XRTK.SDK.UX.Cursors.BaseCursor.OnSourceLost - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.BaseCursor.OnSourceLost - nameWithType: BaseCursor.OnSourceLost -- uid: XRTK.SDK.UX.Cursors.BaseCursor.Pointer - name: Pointer - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_Pointer - commentId: P:XRTK.SDK.UX.Cursors.BaseCursor.Pointer - fullName: XRTK.SDK.UX.Cursors.BaseCursor.Pointer - nameWithType: BaseCursor.Pointer -- uid: XRTK.SDK.UX.Cursors.BaseCursor.Pointer* - name: Pointer - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_Pointer_ - commentId: Overload:XRTK.SDK.UX.Cursors.BaseCursor.Pointer - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.BaseCursor.Pointer - nameWithType: BaseCursor.Pointer -- uid: XRTK.SDK.UX.Cursors.BaseCursor.Position - name: Position - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_Position - commentId: P:XRTK.SDK.UX.Cursors.BaseCursor.Position - fullName: XRTK.SDK.UX.Cursors.BaseCursor.Position - nameWithType: BaseCursor.Position -- uid: XRTK.SDK.UX.Cursors.BaseCursor.Position* - name: Position - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_Position_ - commentId: Overload:XRTK.SDK.UX.Cursors.BaseCursor.Position - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.BaseCursor.Position - nameWithType: BaseCursor.Position -- uid: XRTK.SDK.UX.Cursors.BaseCursor.PositionLerpTime - name: PositionLerpTime - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_PositionLerpTime - commentId: P:XRTK.SDK.UX.Cursors.BaseCursor.PositionLerpTime - fullName: XRTK.SDK.UX.Cursors.BaseCursor.PositionLerpTime - nameWithType: BaseCursor.PositionLerpTime -- uid: XRTK.SDK.UX.Cursors.BaseCursor.PositionLerpTime* - name: PositionLerpTime - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_PositionLerpTime_ - commentId: Overload:XRTK.SDK.UX.Cursors.BaseCursor.PositionLerpTime - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.BaseCursor.PositionLerpTime - nameWithType: BaseCursor.PositionLerpTime -- uid: XRTK.SDK.UX.Cursors.BaseCursor.PrimaryCursorVisual - name: PrimaryCursorVisual - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_PrimaryCursorVisual - commentId: F:XRTK.SDK.UX.Cursors.BaseCursor.PrimaryCursorVisual - fullName: XRTK.SDK.UX.Cursors.BaseCursor.PrimaryCursorVisual - nameWithType: BaseCursor.PrimaryCursorVisual -- uid: XRTK.SDK.UX.Cursors.BaseCursor.RegisterManagers - name: RegisterManagers() - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_RegisterManagers - commentId: M:XRTK.SDK.UX.Cursors.BaseCursor.RegisterManagers - fullName: XRTK.SDK.UX.Cursors.BaseCursor.RegisterManagers() - nameWithType: BaseCursor.RegisterManagers() -- uid: XRTK.SDK.UX.Cursors.BaseCursor.RegisterManagers* - name: RegisterManagers - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_RegisterManagers_ - commentId: Overload:XRTK.SDK.UX.Cursors.BaseCursor.RegisterManagers - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.BaseCursor.RegisterManagers - nameWithType: BaseCursor.RegisterManagers -- uid: XRTK.SDK.UX.Cursors.BaseCursor.Rotation - name: Rotation - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_Rotation - commentId: P:XRTK.SDK.UX.Cursors.BaseCursor.Rotation - fullName: XRTK.SDK.UX.Cursors.BaseCursor.Rotation - nameWithType: BaseCursor.Rotation -- uid: XRTK.SDK.UX.Cursors.BaseCursor.Rotation* - name: Rotation - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_Rotation_ - commentId: Overload:XRTK.SDK.UX.Cursors.BaseCursor.Rotation - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.BaseCursor.Rotation - nameWithType: BaseCursor.Rotation -- uid: XRTK.SDK.UX.Cursors.BaseCursor.RotationLerpTime - name: RotationLerpTime - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_RotationLerpTime - commentId: P:XRTK.SDK.UX.Cursors.BaseCursor.RotationLerpTime - fullName: XRTK.SDK.UX.Cursors.BaseCursor.RotationLerpTime - nameWithType: BaseCursor.RotationLerpTime -- uid: XRTK.SDK.UX.Cursors.BaseCursor.RotationLerpTime* - name: RotationLerpTime - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_RotationLerpTime_ - commentId: Overload:XRTK.SDK.UX.Cursors.BaseCursor.RotationLerpTime - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.BaseCursor.RotationLerpTime - nameWithType: BaseCursor.RotationLerpTime -- uid: XRTK.SDK.UX.Cursors.BaseCursor.ScaleLerpTime - name: ScaleLerpTime - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_ScaleLerpTime - commentId: P:XRTK.SDK.UX.Cursors.BaseCursor.ScaleLerpTime - fullName: XRTK.SDK.UX.Cursors.BaseCursor.ScaleLerpTime - nameWithType: BaseCursor.ScaleLerpTime -- uid: XRTK.SDK.UX.Cursors.BaseCursor.ScaleLerpTime* - name: ScaleLerpTime - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_ScaleLerpTime_ - commentId: Overload:XRTK.SDK.UX.Cursors.BaseCursor.ScaleLerpTime - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.BaseCursor.ScaleLerpTime - nameWithType: BaseCursor.ScaleLerpTime -- uid: XRTK.SDK.UX.Cursors.BaseCursor.SetVisibility(System.Boolean) - name: SetVisibility(Boolean) - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_SetVisibility_System_Boolean_ - commentId: M:XRTK.SDK.UX.Cursors.BaseCursor.SetVisibility(System.Boolean) - fullName: XRTK.SDK.UX.Cursors.BaseCursor.SetVisibility(System.Boolean) - nameWithType: BaseCursor.SetVisibility(Boolean) -- uid: XRTK.SDK.UX.Cursors.BaseCursor.SetVisibility* - name: SetVisibility - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_SetVisibility_ - commentId: Overload:XRTK.SDK.UX.Cursors.BaseCursor.SetVisibility - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.BaseCursor.SetVisibility - nameWithType: BaseCursor.SetVisibility -- uid: XRTK.SDK.UX.Cursors.BaseCursor.SetVisibilityOnSourceDetected - name: SetVisibilityOnSourceDetected - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_SetVisibilityOnSourceDetected - commentId: P:XRTK.SDK.UX.Cursors.BaseCursor.SetVisibilityOnSourceDetected - fullName: XRTK.SDK.UX.Cursors.BaseCursor.SetVisibilityOnSourceDetected - nameWithType: BaseCursor.SetVisibilityOnSourceDetected -- uid: XRTK.SDK.UX.Cursors.BaseCursor.SetVisibilityOnSourceDetected* - name: SetVisibilityOnSourceDetected - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_SetVisibilityOnSourceDetected_ - commentId: Overload:XRTK.SDK.UX.Cursors.BaseCursor.SetVisibilityOnSourceDetected - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.BaseCursor.SetVisibilityOnSourceDetected - nameWithType: BaseCursor.SetVisibilityOnSourceDetected -- uid: XRTK.SDK.UX.Cursors.BaseCursor.SurfaceCursorDistance - name: SurfaceCursorDistance - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_SurfaceCursorDistance - commentId: P:XRTK.SDK.UX.Cursors.BaseCursor.SurfaceCursorDistance - fullName: XRTK.SDK.UX.Cursors.BaseCursor.SurfaceCursorDistance - nameWithType: BaseCursor.SurfaceCursorDistance -- uid: XRTK.SDK.UX.Cursors.BaseCursor.SurfaceCursorDistance* - name: SurfaceCursorDistance - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_SurfaceCursorDistance_ - commentId: Overload:XRTK.SDK.UX.Cursors.BaseCursor.SurfaceCursorDistance - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.BaseCursor.SurfaceCursorDistance - nameWithType: BaseCursor.SurfaceCursorDistance -- uid: XRTK.SDK.UX.Cursors.BaseCursor.TargetedObject - name: TargetedObject - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_TargetedObject - commentId: F:XRTK.SDK.UX.Cursors.BaseCursor.TargetedObject - fullName: XRTK.SDK.UX.Cursors.BaseCursor.TargetedObject - nameWithType: BaseCursor.TargetedObject -- uid: XRTK.SDK.UX.Cursors.BaseCursor.UnregisterManagers - name: UnregisterManagers() - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_UnregisterManagers - commentId: M:XRTK.SDK.UX.Cursors.BaseCursor.UnregisterManagers - fullName: XRTK.SDK.UX.Cursors.BaseCursor.UnregisterManagers() - nameWithType: BaseCursor.UnregisterManagers() -- uid: XRTK.SDK.UX.Cursors.BaseCursor.UnregisterManagers* - name: UnregisterManagers - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_UnregisterManagers_ - commentId: Overload:XRTK.SDK.UX.Cursors.BaseCursor.UnregisterManagers - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.BaseCursor.UnregisterManagers - nameWithType: BaseCursor.UnregisterManagers -- uid: XRTK.SDK.UX.Cursors.BaseCursor.UpdateCursorTransform - name: UpdateCursorTransform() - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_UpdateCursorTransform - commentId: M:XRTK.SDK.UX.Cursors.BaseCursor.UpdateCursorTransform - fullName: XRTK.SDK.UX.Cursors.BaseCursor.UpdateCursorTransform() - nameWithType: BaseCursor.UpdateCursorTransform() -- uid: XRTK.SDK.UX.Cursors.BaseCursor.UpdateCursorTransform* - name: UpdateCursorTransform - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_UpdateCursorTransform_ - commentId: Overload:XRTK.SDK.UX.Cursors.BaseCursor.UpdateCursorTransform - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.BaseCursor.UpdateCursorTransform - nameWithType: BaseCursor.UpdateCursorTransform -- uid: XRTK.SDK.UX.Cursors.BaseCursor.UseUnscaledTime - name: UseUnscaledTime - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_UseUnscaledTime - commentId: P:XRTK.SDK.UX.Cursors.BaseCursor.UseUnscaledTime - fullName: XRTK.SDK.UX.Cursors.BaseCursor.UseUnscaledTime - nameWithType: BaseCursor.UseUnscaledTime -- uid: XRTK.SDK.UX.Cursors.BaseCursor.UseUnscaledTime* - name: UseUnscaledTime - href: api/XRTK.SDK.UX.Cursors.BaseCursor.html#XRTK_SDK_UX_Cursors_BaseCursor_UseUnscaledTime_ - commentId: Overload:XRTK.SDK.UX.Cursors.BaseCursor.UseUnscaledTime - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.BaseCursor.UseUnscaledTime - nameWithType: BaseCursor.UseUnscaledTime -- uid: XRTK.SDK.UX.Cursors.CursorModifier - name: CursorModifier - href: api/XRTK.SDK.UX.Cursors.CursorModifier.html - commentId: T:XRTK.SDK.UX.Cursors.CursorModifier - fullName: XRTK.SDK.UX.Cursors.CursorModifier - nameWithType: CursorModifier -- uid: XRTK.SDK.UX.Cursors.CursorModifier.CursorNormalOffset - name: CursorNormalOffset - href: api/XRTK.SDK.UX.Cursors.CursorModifier.html#XRTK_SDK_UX_Cursors_CursorModifier_CursorNormalOffset - commentId: P:XRTK.SDK.UX.Cursors.CursorModifier.CursorNormalOffset - fullName: XRTK.SDK.UX.Cursors.CursorModifier.CursorNormalOffset - nameWithType: CursorModifier.CursorNormalOffset -- uid: XRTK.SDK.UX.Cursors.CursorModifier.CursorNormalOffset* - name: CursorNormalOffset - href: api/XRTK.SDK.UX.Cursors.CursorModifier.html#XRTK_SDK_UX_Cursors_CursorModifier_CursorNormalOffset_ - commentId: Overload:XRTK.SDK.UX.Cursors.CursorModifier.CursorNormalOffset - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.CursorModifier.CursorNormalOffset - nameWithType: CursorModifier.CursorNormalOffset -- uid: XRTK.SDK.UX.Cursors.CursorModifier.CursorParameters - name: CursorParameters - href: api/XRTK.SDK.UX.Cursors.CursorModifier.html#XRTK_SDK_UX_Cursors_CursorModifier_CursorParameters - commentId: P:XRTK.SDK.UX.Cursors.CursorModifier.CursorParameters - fullName: XRTK.SDK.UX.Cursors.CursorModifier.CursorParameters - nameWithType: CursorModifier.CursorParameters -- uid: XRTK.SDK.UX.Cursors.CursorModifier.CursorParameters* - name: CursorParameters - href: api/XRTK.SDK.UX.Cursors.CursorModifier.html#XRTK_SDK_UX_Cursors_CursorModifier_CursorParameters_ - commentId: Overload:XRTK.SDK.UX.Cursors.CursorModifier.CursorParameters - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.CursorModifier.CursorParameters - nameWithType: CursorModifier.CursorParameters -- uid: XRTK.SDK.UX.Cursors.CursorModifier.CursorPositionOffset - name: CursorPositionOffset - href: api/XRTK.SDK.UX.Cursors.CursorModifier.html#XRTK_SDK_UX_Cursors_CursorModifier_CursorPositionOffset - commentId: P:XRTK.SDK.UX.Cursors.CursorModifier.CursorPositionOffset - fullName: XRTK.SDK.UX.Cursors.CursorModifier.CursorPositionOffset - nameWithType: CursorModifier.CursorPositionOffset -- uid: XRTK.SDK.UX.Cursors.CursorModifier.CursorPositionOffset* - name: CursorPositionOffset - href: api/XRTK.SDK.UX.Cursors.CursorModifier.html#XRTK_SDK_UX_Cursors_CursorModifier_CursorPositionOffset_ - commentId: Overload:XRTK.SDK.UX.Cursors.CursorModifier.CursorPositionOffset - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.CursorModifier.CursorPositionOffset - nameWithType: CursorModifier.CursorPositionOffset -- uid: XRTK.SDK.UX.Cursors.CursorModifier.CursorScaleOffset - name: CursorScaleOffset - href: api/XRTK.SDK.UX.Cursors.CursorModifier.html#XRTK_SDK_UX_Cursors_CursorModifier_CursorScaleOffset - commentId: P:XRTK.SDK.UX.Cursors.CursorModifier.CursorScaleOffset - fullName: XRTK.SDK.UX.Cursors.CursorModifier.CursorScaleOffset - nameWithType: CursorModifier.CursorScaleOffset -- uid: XRTK.SDK.UX.Cursors.CursorModifier.CursorScaleOffset* - name: CursorScaleOffset - href: api/XRTK.SDK.UX.Cursors.CursorModifier.html#XRTK_SDK_UX_Cursors_CursorModifier_CursorScaleOffset_ - commentId: Overload:XRTK.SDK.UX.Cursors.CursorModifier.CursorScaleOffset - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.CursorModifier.CursorScaleOffset - nameWithType: CursorModifier.CursorScaleOffset -- uid: XRTK.SDK.UX.Cursors.CursorModifier.GetCursorVisibility - name: GetCursorVisibility() - href: api/XRTK.SDK.UX.Cursors.CursorModifier.html#XRTK_SDK_UX_Cursors_CursorModifier_GetCursorVisibility - commentId: M:XRTK.SDK.UX.Cursors.CursorModifier.GetCursorVisibility - fullName: XRTK.SDK.UX.Cursors.CursorModifier.GetCursorVisibility() - nameWithType: CursorModifier.GetCursorVisibility() -- uid: XRTK.SDK.UX.Cursors.CursorModifier.GetCursorVisibility* - name: GetCursorVisibility - href: api/XRTK.SDK.UX.Cursors.CursorModifier.html#XRTK_SDK_UX_Cursors_CursorModifier_GetCursorVisibility_ - commentId: Overload:XRTK.SDK.UX.Cursors.CursorModifier.GetCursorVisibility - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.CursorModifier.GetCursorVisibility - nameWithType: CursorModifier.GetCursorVisibility -- uid: XRTK.SDK.UX.Cursors.CursorModifier.GetModifiedPosition(XRTK.Interfaces.InputSystem.IMixedRealityCursor) - name: GetModifiedPosition(IMixedRealityCursor) - href: api/XRTK.SDK.UX.Cursors.CursorModifier.html#XRTK_SDK_UX_Cursors_CursorModifier_GetModifiedPosition_XRTK_Interfaces_InputSystem_IMixedRealityCursor_ - commentId: M:XRTK.SDK.UX.Cursors.CursorModifier.GetModifiedPosition(XRTK.Interfaces.InputSystem.IMixedRealityCursor) - fullName: XRTK.SDK.UX.Cursors.CursorModifier.GetModifiedPosition(XRTK.Interfaces.InputSystem.IMixedRealityCursor) - nameWithType: CursorModifier.GetModifiedPosition(IMixedRealityCursor) -- uid: XRTK.SDK.UX.Cursors.CursorModifier.GetModifiedPosition* - name: GetModifiedPosition - href: api/XRTK.SDK.UX.Cursors.CursorModifier.html#XRTK_SDK_UX_Cursors_CursorModifier_GetModifiedPosition_ - commentId: Overload:XRTK.SDK.UX.Cursors.CursorModifier.GetModifiedPosition - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.CursorModifier.GetModifiedPosition - nameWithType: CursorModifier.GetModifiedPosition -- uid: XRTK.SDK.UX.Cursors.CursorModifier.GetModifiedRotation(XRTK.Interfaces.InputSystem.IMixedRealityCursor) - name: GetModifiedRotation(IMixedRealityCursor) - href: api/XRTK.SDK.UX.Cursors.CursorModifier.html#XRTK_SDK_UX_Cursors_CursorModifier_GetModifiedRotation_XRTK_Interfaces_InputSystem_IMixedRealityCursor_ - commentId: M:XRTK.SDK.UX.Cursors.CursorModifier.GetModifiedRotation(XRTK.Interfaces.InputSystem.IMixedRealityCursor) - fullName: XRTK.SDK.UX.Cursors.CursorModifier.GetModifiedRotation(XRTK.Interfaces.InputSystem.IMixedRealityCursor) - nameWithType: CursorModifier.GetModifiedRotation(IMixedRealityCursor) -- uid: XRTK.SDK.UX.Cursors.CursorModifier.GetModifiedRotation* - name: GetModifiedRotation - href: api/XRTK.SDK.UX.Cursors.CursorModifier.html#XRTK_SDK_UX_Cursors_CursorModifier_GetModifiedRotation_ - commentId: Overload:XRTK.SDK.UX.Cursors.CursorModifier.GetModifiedRotation - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.CursorModifier.GetModifiedRotation - nameWithType: CursorModifier.GetModifiedRotation -- uid: XRTK.SDK.UX.Cursors.CursorModifier.GetModifiedScale(XRTK.Interfaces.InputSystem.IMixedRealityCursor) - name: GetModifiedScale(IMixedRealityCursor) - href: api/XRTK.SDK.UX.Cursors.CursorModifier.html#XRTK_SDK_UX_Cursors_CursorModifier_GetModifiedScale_XRTK_Interfaces_InputSystem_IMixedRealityCursor_ - commentId: M:XRTK.SDK.UX.Cursors.CursorModifier.GetModifiedScale(XRTK.Interfaces.InputSystem.IMixedRealityCursor) - fullName: XRTK.SDK.UX.Cursors.CursorModifier.GetModifiedScale(XRTK.Interfaces.InputSystem.IMixedRealityCursor) - nameWithType: CursorModifier.GetModifiedScale(IMixedRealityCursor) -- uid: XRTK.SDK.UX.Cursors.CursorModifier.GetModifiedScale* - name: GetModifiedScale - href: api/XRTK.SDK.UX.Cursors.CursorModifier.html#XRTK_SDK_UX_Cursors_CursorModifier_GetModifiedScale_ - commentId: Overload:XRTK.SDK.UX.Cursors.CursorModifier.GetModifiedScale - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.CursorModifier.GetModifiedScale - nameWithType: CursorModifier.GetModifiedScale -- uid: XRTK.SDK.UX.Cursors.CursorModifier.GetModifiedTransform(XRTK.Interfaces.InputSystem.IMixedRealityCursor,UnityEngine.Vector3@,UnityEngine.Quaternion@,UnityEngine.Vector3@) - name: GetModifiedTransform(IMixedRealityCursor, out Vector3, out Quaternion, out Vector3) - href: api/XRTK.SDK.UX.Cursors.CursorModifier.html#XRTK_SDK_UX_Cursors_CursorModifier_GetModifiedTransform_XRTK_Interfaces_InputSystem_IMixedRealityCursor_UnityEngine_Vector3__UnityEngine_Quaternion__UnityEngine_Vector3__ - commentId: M:XRTK.SDK.UX.Cursors.CursorModifier.GetModifiedTransform(XRTK.Interfaces.InputSystem.IMixedRealityCursor,UnityEngine.Vector3@,UnityEngine.Quaternion@,UnityEngine.Vector3@) - name.vb: GetModifiedTransform(IMixedRealityCursor, ByRef Vector3, ByRef Quaternion, ByRef Vector3) - fullName: XRTK.SDK.UX.Cursors.CursorModifier.GetModifiedTransform(XRTK.Interfaces.InputSystem.IMixedRealityCursor, out UnityEngine.Vector3, out UnityEngine.Quaternion, out UnityEngine.Vector3) - fullName.vb: XRTK.SDK.UX.Cursors.CursorModifier.GetModifiedTransform(XRTK.Interfaces.InputSystem.IMixedRealityCursor, ByRef UnityEngine.Vector3, ByRef UnityEngine.Quaternion, ByRef UnityEngine.Vector3) - nameWithType: CursorModifier.GetModifiedTransform(IMixedRealityCursor, out Vector3, out Quaternion, out Vector3) - nameWithType.vb: CursorModifier.GetModifiedTransform(IMixedRealityCursor, ByRef Vector3, ByRef Quaternion, ByRef Vector3) -- uid: XRTK.SDK.UX.Cursors.CursorModifier.GetModifiedTransform* - name: GetModifiedTransform - href: api/XRTK.SDK.UX.Cursors.CursorModifier.html#XRTK_SDK_UX_Cursors_CursorModifier_GetModifiedTransform_ - commentId: Overload:XRTK.SDK.UX.Cursors.CursorModifier.GetModifiedTransform - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.CursorModifier.GetModifiedTransform - nameWithType: CursorModifier.GetModifiedTransform -- uid: XRTK.SDK.UX.Cursors.CursorModifier.HideCursorOnFocus - name: HideCursorOnFocus - href: api/XRTK.SDK.UX.Cursors.CursorModifier.html#XRTK_SDK_UX_Cursors_CursorModifier_HideCursorOnFocus - commentId: P:XRTK.SDK.UX.Cursors.CursorModifier.HideCursorOnFocus - fullName: XRTK.SDK.UX.Cursors.CursorModifier.HideCursorOnFocus - nameWithType: CursorModifier.HideCursorOnFocus -- uid: XRTK.SDK.UX.Cursors.CursorModifier.HideCursorOnFocus* - name: HideCursorOnFocus - href: api/XRTK.SDK.UX.Cursors.CursorModifier.html#XRTK_SDK_UX_Cursors_CursorModifier_HideCursorOnFocus_ - commentId: Overload:XRTK.SDK.UX.Cursors.CursorModifier.HideCursorOnFocus - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.CursorModifier.HideCursorOnFocus - nameWithType: CursorModifier.HideCursorOnFocus -- uid: XRTK.SDK.UX.Cursors.CursorModifier.HostTransform - name: HostTransform - href: api/XRTK.SDK.UX.Cursors.CursorModifier.html#XRTK_SDK_UX_Cursors_CursorModifier_HostTransform - commentId: P:XRTK.SDK.UX.Cursors.CursorModifier.HostTransform - fullName: XRTK.SDK.UX.Cursors.CursorModifier.HostTransform - nameWithType: CursorModifier.HostTransform -- uid: XRTK.SDK.UX.Cursors.CursorModifier.HostTransform* - name: HostTransform - href: api/XRTK.SDK.UX.Cursors.CursorModifier.html#XRTK_SDK_UX_Cursors_CursorModifier_HostTransform_ - commentId: Overload:XRTK.SDK.UX.Cursors.CursorModifier.HostTransform - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.CursorModifier.HostTransform - nameWithType: CursorModifier.HostTransform -- uid: XRTK.SDK.UX.Cursors.CursorModifier.SnapCursorPosition - name: SnapCursorPosition - href: api/XRTK.SDK.UX.Cursors.CursorModifier.html#XRTK_SDK_UX_Cursors_CursorModifier_SnapCursorPosition - commentId: P:XRTK.SDK.UX.Cursors.CursorModifier.SnapCursorPosition - fullName: XRTK.SDK.UX.Cursors.CursorModifier.SnapCursorPosition - nameWithType: CursorModifier.SnapCursorPosition -- uid: XRTK.SDK.UX.Cursors.CursorModifier.SnapCursorPosition* - name: SnapCursorPosition - href: api/XRTK.SDK.UX.Cursors.CursorModifier.html#XRTK_SDK_UX_Cursors_CursorModifier_SnapCursorPosition_ - commentId: Overload:XRTK.SDK.UX.Cursors.CursorModifier.SnapCursorPosition - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.CursorModifier.SnapCursorPosition - nameWithType: CursorModifier.SnapCursorPosition -- uid: XRTK.SDK.UX.Cursors.CursorModifier.UseGazeBasedNormal - name: UseGazeBasedNormal - href: api/XRTK.SDK.UX.Cursors.CursorModifier.html#XRTK_SDK_UX_Cursors_CursorModifier_UseGazeBasedNormal - commentId: P:XRTK.SDK.UX.Cursors.CursorModifier.UseGazeBasedNormal - fullName: XRTK.SDK.UX.Cursors.CursorModifier.UseGazeBasedNormal - nameWithType: CursorModifier.UseGazeBasedNormal -- uid: XRTK.SDK.UX.Cursors.CursorModifier.UseGazeBasedNormal* - name: UseGazeBasedNormal - href: api/XRTK.SDK.UX.Cursors.CursorModifier.html#XRTK_SDK_UX_Cursors_CursorModifier_UseGazeBasedNormal_ - commentId: Overload:XRTK.SDK.UX.Cursors.CursorModifier.UseGazeBasedNormal - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.CursorModifier.UseGazeBasedNormal - nameWithType: CursorModifier.UseGazeBasedNormal -- uid: XRTK.SDK.UX.Cursors.CursorModifier.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityFocusChangedHandler#OnBeforeFocusChange(XRTK.EventDatum.Input.FocusEventData) - name: IMixedRealityFocusChangedHandler.OnBeforeFocusChange(FocusEventData) - href: api/XRTK.SDK.UX.Cursors.CursorModifier.html#XRTK_SDK_UX_Cursors_CursorModifier_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityFocusChangedHandler_OnBeforeFocusChange_XRTK_EventDatum_Input_FocusEventData_ - commentId: M:XRTK.SDK.UX.Cursors.CursorModifier.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityFocusChangedHandler#OnBeforeFocusChange(XRTK.EventDatum.Input.FocusEventData) - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusChangedHandler.OnBeforeFocusChange(FocusEventData) - fullName: XRTK.SDK.UX.Cursors.CursorModifier.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusChangedHandler.OnBeforeFocusChange(XRTK.EventDatum.Input.FocusEventData) - nameWithType: CursorModifier.IMixedRealityFocusChangedHandler.OnBeforeFocusChange(FocusEventData) - nameWithType.vb: CursorModifier.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusChangedHandler.OnBeforeFocusChange(FocusEventData) -- uid: XRTK.SDK.UX.Cursors.CursorModifier.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityFocusChangedHandler#OnBeforeFocusChange* - name: IMixedRealityFocusChangedHandler.OnBeforeFocusChange - href: api/XRTK.SDK.UX.Cursors.CursorModifier.html#XRTK_SDK_UX_Cursors_CursorModifier_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityFocusChangedHandler_OnBeforeFocusChange_ - commentId: Overload:XRTK.SDK.UX.Cursors.CursorModifier.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityFocusChangedHandler#OnBeforeFocusChange - isSpec: "True" - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusChangedHandler.OnBeforeFocusChange - fullName: XRTK.SDK.UX.Cursors.CursorModifier.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusChangedHandler.OnBeforeFocusChange - nameWithType: CursorModifier.IMixedRealityFocusChangedHandler.OnBeforeFocusChange - nameWithType.vb: CursorModifier.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusChangedHandler.OnBeforeFocusChange -- uid: XRTK.SDK.UX.Cursors.CursorModifier.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityFocusChangedHandler#OnFocusChanged(XRTK.EventDatum.Input.FocusEventData) - name: IMixedRealityFocusChangedHandler.OnFocusChanged(FocusEventData) - href: api/XRTK.SDK.UX.Cursors.CursorModifier.html#XRTK_SDK_UX_Cursors_CursorModifier_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityFocusChangedHandler_OnFocusChanged_XRTK_EventDatum_Input_FocusEventData_ - commentId: M:XRTK.SDK.UX.Cursors.CursorModifier.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityFocusChangedHandler#OnFocusChanged(XRTK.EventDatum.Input.FocusEventData) - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusChangedHandler.OnFocusChanged(FocusEventData) - fullName: XRTK.SDK.UX.Cursors.CursorModifier.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusChangedHandler.OnFocusChanged(XRTK.EventDatum.Input.FocusEventData) - nameWithType: CursorModifier.IMixedRealityFocusChangedHandler.OnFocusChanged(FocusEventData) - nameWithType.vb: CursorModifier.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusChangedHandler.OnFocusChanged(FocusEventData) -- uid: XRTK.SDK.UX.Cursors.CursorModifier.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityFocusChangedHandler#OnFocusChanged* - name: IMixedRealityFocusChangedHandler.OnFocusChanged - href: api/XRTK.SDK.UX.Cursors.CursorModifier.html#XRTK_SDK_UX_Cursors_CursorModifier_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityFocusChangedHandler_OnFocusChanged_ - commentId: Overload:XRTK.SDK.UX.Cursors.CursorModifier.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityFocusChangedHandler#OnFocusChanged - isSpec: "True" - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusChangedHandler.OnFocusChanged - fullName: XRTK.SDK.UX.Cursors.CursorModifier.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusChangedHandler.OnFocusChanged - nameWithType: CursorModifier.IMixedRealityFocusChangedHandler.OnFocusChanged - nameWithType.vb: CursorModifier.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusChangedHandler.OnFocusChanged -- uid: XRTK.SDK.UX.Cursors.InteractiveMeshCursor - name: InteractiveMeshCursor - href: api/XRTK.SDK.UX.Cursors.InteractiveMeshCursor.html - commentId: T:XRTK.SDK.UX.Cursors.InteractiveMeshCursor - fullName: XRTK.SDK.UX.Cursors.InteractiveMeshCursor - nameWithType: InteractiveMeshCursor -- uid: XRTK.SDK.UX.Cursors.InteractiveMeshCursor.OnCursorStateChange(XRTK.Definitions.InputSystem.CursorStateEnum) - name: OnCursorStateChange(CursorStateEnum) - href: api/XRTK.SDK.UX.Cursors.InteractiveMeshCursor.html#XRTK_SDK_UX_Cursors_InteractiveMeshCursor_OnCursorStateChange_XRTK_Definitions_InputSystem_CursorStateEnum_ - commentId: M:XRTK.SDK.UX.Cursors.InteractiveMeshCursor.OnCursorStateChange(XRTK.Definitions.InputSystem.CursorStateEnum) - fullName: XRTK.SDK.UX.Cursors.InteractiveMeshCursor.OnCursorStateChange(XRTK.Definitions.InputSystem.CursorStateEnum) - nameWithType: InteractiveMeshCursor.OnCursorStateChange(CursorStateEnum) -- uid: XRTK.SDK.UX.Cursors.InteractiveMeshCursor.OnCursorStateChange* - name: OnCursorStateChange - href: api/XRTK.SDK.UX.Cursors.InteractiveMeshCursor.html#XRTK_SDK_UX_Cursors_InteractiveMeshCursor_OnCursorStateChange_ - commentId: Overload:XRTK.SDK.UX.Cursors.InteractiveMeshCursor.OnCursorStateChange - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.InteractiveMeshCursor.OnCursorStateChange - nameWithType: InteractiveMeshCursor.OnCursorStateChange -- uid: XRTK.SDK.UX.Cursors.InteractiveMeshCursor.SetVisibility(System.Boolean) - name: SetVisibility(Boolean) - href: api/XRTK.SDK.UX.Cursors.InteractiveMeshCursor.html#XRTK_SDK_UX_Cursors_InteractiveMeshCursor_SetVisibility_System_Boolean_ - commentId: M:XRTK.SDK.UX.Cursors.InteractiveMeshCursor.SetVisibility(System.Boolean) - fullName: XRTK.SDK.UX.Cursors.InteractiveMeshCursor.SetVisibility(System.Boolean) - nameWithType: InteractiveMeshCursor.SetVisibility(Boolean) -- uid: XRTK.SDK.UX.Cursors.InteractiveMeshCursor.SetVisibility* - name: SetVisibility - href: api/XRTK.SDK.UX.Cursors.InteractiveMeshCursor.html#XRTK_SDK_UX_Cursors_InteractiveMeshCursor_SetVisibility_ - commentId: Overload:XRTK.SDK.UX.Cursors.InteractiveMeshCursor.SetVisibility - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.InteractiveMeshCursor.SetVisibility - nameWithType: InteractiveMeshCursor.SetVisibility -- uid: XRTK.SDK.UX.Cursors.InteractiveMeshCursor.UpdateCursorTransform - name: UpdateCursorTransform() - href: api/XRTK.SDK.UX.Cursors.InteractiveMeshCursor.html#XRTK_SDK_UX_Cursors_InteractiveMeshCursor_UpdateCursorTransform - commentId: M:XRTK.SDK.UX.Cursors.InteractiveMeshCursor.UpdateCursorTransform - fullName: XRTK.SDK.UX.Cursors.InteractiveMeshCursor.UpdateCursorTransform() - nameWithType: InteractiveMeshCursor.UpdateCursorTransform() -- uid: XRTK.SDK.UX.Cursors.InteractiveMeshCursor.UpdateCursorTransform* - name: UpdateCursorTransform - href: api/XRTK.SDK.UX.Cursors.InteractiveMeshCursor.html#XRTK_SDK_UX_Cursors_InteractiveMeshCursor_UpdateCursorTransform_ - commentId: Overload:XRTK.SDK.UX.Cursors.InteractiveMeshCursor.UpdateCursorTransform - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.InteractiveMeshCursor.UpdateCursorTransform - nameWithType: InteractiveMeshCursor.UpdateCursorTransform -- uid: XRTK.SDK.UX.Cursors.MeshCursor - name: MeshCursor - href: api/XRTK.SDK.UX.Cursors.MeshCursor.html - commentId: T:XRTK.SDK.UX.Cursors.MeshCursor - fullName: XRTK.SDK.UX.Cursors.MeshCursor - nameWithType: MeshCursor -- uid: XRTK.SDK.UX.Cursors.MeshCursor.CursorStateData - name: CursorStateData - href: api/XRTK.SDK.UX.Cursors.MeshCursor.html#XRTK_SDK_UX_Cursors_MeshCursor_CursorStateData - commentId: F:XRTK.SDK.UX.Cursors.MeshCursor.CursorStateData - fullName: XRTK.SDK.UX.Cursors.MeshCursor.CursorStateData - nameWithType: MeshCursor.CursorStateData -- uid: XRTK.SDK.UX.Cursors.MeshCursor.MeshCursorDatum - name: MeshCursor.MeshCursorDatum - href: api/XRTK.SDK.UX.Cursors.MeshCursor.MeshCursorDatum.html - commentId: T:XRTK.SDK.UX.Cursors.MeshCursor.MeshCursorDatum - fullName: XRTK.SDK.UX.Cursors.MeshCursor.MeshCursorDatum - nameWithType: MeshCursor.MeshCursorDatum -- uid: XRTK.SDK.UX.Cursors.MeshCursor.MeshCursorDatum.CursorMesh - name: CursorMesh - href: api/XRTK.SDK.UX.Cursors.MeshCursor.MeshCursorDatum.html#XRTK_SDK_UX_Cursors_MeshCursor_MeshCursorDatum_CursorMesh - commentId: F:XRTK.SDK.UX.Cursors.MeshCursor.MeshCursorDatum.CursorMesh - fullName: XRTK.SDK.UX.Cursors.MeshCursor.MeshCursorDatum.CursorMesh - nameWithType: MeshCursor.MeshCursorDatum.CursorMesh -- uid: XRTK.SDK.UX.Cursors.MeshCursor.MeshCursorDatum.CursorState - name: CursorState - href: api/XRTK.SDK.UX.Cursors.MeshCursor.MeshCursorDatum.html#XRTK_SDK_UX_Cursors_MeshCursor_MeshCursorDatum_CursorState - commentId: F:XRTK.SDK.UX.Cursors.MeshCursor.MeshCursorDatum.CursorState - fullName: XRTK.SDK.UX.Cursors.MeshCursor.MeshCursorDatum.CursorState - nameWithType: MeshCursor.MeshCursorDatum.CursorState -- uid: XRTK.SDK.UX.Cursors.MeshCursor.MeshCursorDatum.LocalOffset - name: LocalOffset - href: api/XRTK.SDK.UX.Cursors.MeshCursor.MeshCursorDatum.html#XRTK_SDK_UX_Cursors_MeshCursor_MeshCursorDatum_LocalOffset - commentId: F:XRTK.SDK.UX.Cursors.MeshCursor.MeshCursorDatum.LocalOffset - fullName: XRTK.SDK.UX.Cursors.MeshCursor.MeshCursorDatum.LocalOffset - nameWithType: MeshCursor.MeshCursorDatum.LocalOffset -- uid: XRTK.SDK.UX.Cursors.MeshCursor.MeshCursorDatum.LocalScale - name: LocalScale - href: api/XRTK.SDK.UX.Cursors.MeshCursor.MeshCursorDatum.html#XRTK_SDK_UX_Cursors_MeshCursor_MeshCursorDatum_LocalScale - commentId: F:XRTK.SDK.UX.Cursors.MeshCursor.MeshCursorDatum.LocalScale - fullName: XRTK.SDK.UX.Cursors.MeshCursor.MeshCursorDatum.LocalScale - nameWithType: MeshCursor.MeshCursorDatum.LocalScale -- uid: XRTK.SDK.UX.Cursors.MeshCursor.MeshCursorDatum.Name - name: Name - href: api/XRTK.SDK.UX.Cursors.MeshCursor.MeshCursorDatum.html#XRTK_SDK_UX_Cursors_MeshCursor_MeshCursorDatum_Name - commentId: F:XRTK.SDK.UX.Cursors.MeshCursor.MeshCursorDatum.Name - fullName: XRTK.SDK.UX.Cursors.MeshCursor.MeshCursorDatum.Name - nameWithType: MeshCursor.MeshCursorDatum.Name -- uid: XRTK.SDK.UX.Cursors.MeshCursor.OnCursorStateChange(XRTK.Definitions.InputSystem.CursorStateEnum) - name: OnCursorStateChange(CursorStateEnum) - href: api/XRTK.SDK.UX.Cursors.MeshCursor.html#XRTK_SDK_UX_Cursors_MeshCursor_OnCursorStateChange_XRTK_Definitions_InputSystem_CursorStateEnum_ - commentId: M:XRTK.SDK.UX.Cursors.MeshCursor.OnCursorStateChange(XRTK.Definitions.InputSystem.CursorStateEnum) - fullName: XRTK.SDK.UX.Cursors.MeshCursor.OnCursorStateChange(XRTK.Definitions.InputSystem.CursorStateEnum) - nameWithType: MeshCursor.OnCursorStateChange(CursorStateEnum) -- uid: XRTK.SDK.UX.Cursors.MeshCursor.OnCursorStateChange* - name: OnCursorStateChange - href: api/XRTK.SDK.UX.Cursors.MeshCursor.html#XRTK_SDK_UX_Cursors_MeshCursor_OnCursorStateChange_ - commentId: Overload:XRTK.SDK.UX.Cursors.MeshCursor.OnCursorStateChange - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.MeshCursor.OnCursorStateChange - nameWithType: MeshCursor.OnCursorStateChange -- uid: XRTK.SDK.UX.Cursors.MeshCursor.OnEnable - name: OnEnable() - href: api/XRTK.SDK.UX.Cursors.MeshCursor.html#XRTK_SDK_UX_Cursors_MeshCursor_OnEnable - commentId: M:XRTK.SDK.UX.Cursors.MeshCursor.OnEnable - fullName: XRTK.SDK.UX.Cursors.MeshCursor.OnEnable() - nameWithType: MeshCursor.OnEnable() -- uid: XRTK.SDK.UX.Cursors.MeshCursor.OnEnable* - name: OnEnable - href: api/XRTK.SDK.UX.Cursors.MeshCursor.html#XRTK_SDK_UX_Cursors_MeshCursor_OnEnable_ - commentId: Overload:XRTK.SDK.UX.Cursors.MeshCursor.OnEnable - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.MeshCursor.OnEnable - nameWithType: MeshCursor.OnEnable -- uid: XRTK.SDK.UX.Cursors.ObjectCursor - name: ObjectCursor - href: api/XRTK.SDK.UX.Cursors.ObjectCursor.html - commentId: T:XRTK.SDK.UX.Cursors.ObjectCursor - fullName: XRTK.SDK.UX.Cursors.ObjectCursor - nameWithType: ObjectCursor -- uid: XRTK.SDK.UX.Cursors.ObjectCursor.CursorStateData - name: CursorStateData - href: api/XRTK.SDK.UX.Cursors.ObjectCursor.html#XRTK_SDK_UX_Cursors_ObjectCursor_CursorStateData - commentId: F:XRTK.SDK.UX.Cursors.ObjectCursor.CursorStateData - fullName: XRTK.SDK.UX.Cursors.ObjectCursor.CursorStateData - nameWithType: ObjectCursor.CursorStateData -- uid: XRTK.SDK.UX.Cursors.ObjectCursor.ObjectCursorDatum - name: ObjectCursor.ObjectCursorDatum - href: api/XRTK.SDK.UX.Cursors.ObjectCursor.ObjectCursorDatum.html - commentId: T:XRTK.SDK.UX.Cursors.ObjectCursor.ObjectCursorDatum - fullName: XRTK.SDK.UX.Cursors.ObjectCursor.ObjectCursorDatum - nameWithType: ObjectCursor.ObjectCursorDatum -- uid: XRTK.SDK.UX.Cursors.ObjectCursor.ObjectCursorDatum.CursorObject - name: CursorObject - href: api/XRTK.SDK.UX.Cursors.ObjectCursor.ObjectCursorDatum.html#XRTK_SDK_UX_Cursors_ObjectCursor_ObjectCursorDatum_CursorObject - commentId: F:XRTK.SDK.UX.Cursors.ObjectCursor.ObjectCursorDatum.CursorObject - fullName: XRTK.SDK.UX.Cursors.ObjectCursor.ObjectCursorDatum.CursorObject - nameWithType: ObjectCursor.ObjectCursorDatum.CursorObject -- uid: XRTK.SDK.UX.Cursors.ObjectCursor.ObjectCursorDatum.CursorState - name: CursorState - href: api/XRTK.SDK.UX.Cursors.ObjectCursor.ObjectCursorDatum.html#XRTK_SDK_UX_Cursors_ObjectCursor_ObjectCursorDatum_CursorState - commentId: F:XRTK.SDK.UX.Cursors.ObjectCursor.ObjectCursorDatum.CursorState - fullName: XRTK.SDK.UX.Cursors.ObjectCursor.ObjectCursorDatum.CursorState - nameWithType: ObjectCursor.ObjectCursorDatum.CursorState -- uid: XRTK.SDK.UX.Cursors.ObjectCursor.ObjectCursorDatum.Name - name: Name - href: api/XRTK.SDK.UX.Cursors.ObjectCursor.ObjectCursorDatum.html#XRTK_SDK_UX_Cursors_ObjectCursor_ObjectCursorDatum_Name - commentId: F:XRTK.SDK.UX.Cursors.ObjectCursor.ObjectCursorDatum.Name - fullName: XRTK.SDK.UX.Cursors.ObjectCursor.ObjectCursorDatum.Name - nameWithType: ObjectCursor.ObjectCursorDatum.Name -- uid: XRTK.SDK.UX.Cursors.ObjectCursor.OnCursorStateChange(XRTK.Definitions.InputSystem.CursorStateEnum) - name: OnCursorStateChange(CursorStateEnum) - href: api/XRTK.SDK.UX.Cursors.ObjectCursor.html#XRTK_SDK_UX_Cursors_ObjectCursor_OnCursorStateChange_XRTK_Definitions_InputSystem_CursorStateEnum_ - commentId: M:XRTK.SDK.UX.Cursors.ObjectCursor.OnCursorStateChange(XRTK.Definitions.InputSystem.CursorStateEnum) - fullName: XRTK.SDK.UX.Cursors.ObjectCursor.OnCursorStateChange(XRTK.Definitions.InputSystem.CursorStateEnum) - nameWithType: ObjectCursor.OnCursorStateChange(CursorStateEnum) -- uid: XRTK.SDK.UX.Cursors.ObjectCursor.OnCursorStateChange* - name: OnCursorStateChange - href: api/XRTK.SDK.UX.Cursors.ObjectCursor.html#XRTK_SDK_UX_Cursors_ObjectCursor_OnCursorStateChange_ - commentId: Overload:XRTK.SDK.UX.Cursors.ObjectCursor.OnCursorStateChange - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.ObjectCursor.OnCursorStateChange - nameWithType: ObjectCursor.OnCursorStateChange -- uid: XRTK.SDK.UX.Cursors.ObjectCursor.OnEnable - name: OnEnable() - href: api/XRTK.SDK.UX.Cursors.ObjectCursor.html#XRTK_SDK_UX_Cursors_ObjectCursor_OnEnable - commentId: M:XRTK.SDK.UX.Cursors.ObjectCursor.OnEnable - fullName: XRTK.SDK.UX.Cursors.ObjectCursor.OnEnable() - nameWithType: ObjectCursor.OnEnable() -- uid: XRTK.SDK.UX.Cursors.ObjectCursor.OnEnable* - name: OnEnable - href: api/XRTK.SDK.UX.Cursors.ObjectCursor.html#XRTK_SDK_UX_Cursors_ObjectCursor_OnEnable_ - commentId: Overload:XRTK.SDK.UX.Cursors.ObjectCursor.OnEnable - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.ObjectCursor.OnEnable - nameWithType: ObjectCursor.OnEnable -- uid: XRTK.SDK.UX.Cursors.ObjectCursor.ParentTransform - name: ParentTransform - href: api/XRTK.SDK.UX.Cursors.ObjectCursor.html#XRTK_SDK_UX_Cursors_ObjectCursor_ParentTransform - commentId: F:XRTK.SDK.UX.Cursors.ObjectCursor.ParentTransform - fullName: XRTK.SDK.UX.Cursors.ObjectCursor.ParentTransform - nameWithType: ObjectCursor.ParentTransform -- uid: XRTK.SDK.UX.Cursors.SpriteCursor - name: SpriteCursor - href: api/XRTK.SDK.UX.Cursors.SpriteCursor.html - commentId: T:XRTK.SDK.UX.Cursors.SpriteCursor - fullName: XRTK.SDK.UX.Cursors.SpriteCursor - nameWithType: SpriteCursor -- uid: XRTK.SDK.UX.Cursors.SpriteCursor.CursorStateData - name: CursorStateData - href: api/XRTK.SDK.UX.Cursors.SpriteCursor.html#XRTK_SDK_UX_Cursors_SpriteCursor_CursorStateData - commentId: F:XRTK.SDK.UX.Cursors.SpriteCursor.CursorStateData - fullName: XRTK.SDK.UX.Cursors.SpriteCursor.CursorStateData - nameWithType: SpriteCursor.CursorStateData -- uid: XRTK.SDK.UX.Cursors.SpriteCursor.OnCursorStateChange(XRTK.Definitions.InputSystem.CursorStateEnum) - name: OnCursorStateChange(CursorStateEnum) - href: api/XRTK.SDK.UX.Cursors.SpriteCursor.html#XRTK_SDK_UX_Cursors_SpriteCursor_OnCursorStateChange_XRTK_Definitions_InputSystem_CursorStateEnum_ - commentId: M:XRTK.SDK.UX.Cursors.SpriteCursor.OnCursorStateChange(XRTK.Definitions.InputSystem.CursorStateEnum) - fullName: XRTK.SDK.UX.Cursors.SpriteCursor.OnCursorStateChange(XRTK.Definitions.InputSystem.CursorStateEnum) - nameWithType: SpriteCursor.OnCursorStateChange(CursorStateEnum) -- uid: XRTK.SDK.UX.Cursors.SpriteCursor.OnCursorStateChange* - name: OnCursorStateChange - href: api/XRTK.SDK.UX.Cursors.SpriteCursor.html#XRTK_SDK_UX_Cursors_SpriteCursor_OnCursorStateChange_ - commentId: Overload:XRTK.SDK.UX.Cursors.SpriteCursor.OnCursorStateChange - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.SpriteCursor.OnCursorStateChange - nameWithType: SpriteCursor.OnCursorStateChange -- uid: XRTK.SDK.UX.Cursors.SpriteCursor.OnEnable - name: OnEnable() - href: api/XRTK.SDK.UX.Cursors.SpriteCursor.html#XRTK_SDK_UX_Cursors_SpriteCursor_OnEnable - commentId: M:XRTK.SDK.UX.Cursors.SpriteCursor.OnEnable - fullName: XRTK.SDK.UX.Cursors.SpriteCursor.OnEnable() - nameWithType: SpriteCursor.OnEnable() -- uid: XRTK.SDK.UX.Cursors.SpriteCursor.OnEnable* - name: OnEnable - href: api/XRTK.SDK.UX.Cursors.SpriteCursor.html#XRTK_SDK_UX_Cursors_SpriteCursor_OnEnable_ - commentId: Overload:XRTK.SDK.UX.Cursors.SpriteCursor.OnEnable - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.SpriteCursor.OnEnable - nameWithType: SpriteCursor.OnEnable -- uid: XRTK.SDK.UX.Cursors.SpriteCursor.SpriteCursorDatum - name: SpriteCursor.SpriteCursorDatum - href: api/XRTK.SDK.UX.Cursors.SpriteCursor.SpriteCursorDatum.html - commentId: T:XRTK.SDK.UX.Cursors.SpriteCursor.SpriteCursorDatum - fullName: XRTK.SDK.UX.Cursors.SpriteCursor.SpriteCursorDatum - nameWithType: SpriteCursor.SpriteCursorDatum -- uid: XRTK.SDK.UX.Cursors.SpriteCursor.SpriteCursorDatum.CursorColor - name: CursorColor - href: api/XRTK.SDK.UX.Cursors.SpriteCursor.SpriteCursorDatum.html#XRTK_SDK_UX_Cursors_SpriteCursor_SpriteCursorDatum_CursorColor - commentId: F:XRTK.SDK.UX.Cursors.SpriteCursor.SpriteCursorDatum.CursorColor - fullName: XRTK.SDK.UX.Cursors.SpriteCursor.SpriteCursorDatum.CursorColor - nameWithType: SpriteCursor.SpriteCursorDatum.CursorColor -- uid: XRTK.SDK.UX.Cursors.SpriteCursor.SpriteCursorDatum.CursorSprite - name: CursorSprite - href: api/XRTK.SDK.UX.Cursors.SpriteCursor.SpriteCursorDatum.html#XRTK_SDK_UX_Cursors_SpriteCursor_SpriteCursorDatum_CursorSprite - commentId: F:XRTK.SDK.UX.Cursors.SpriteCursor.SpriteCursorDatum.CursorSprite - fullName: XRTK.SDK.UX.Cursors.SpriteCursor.SpriteCursorDatum.CursorSprite - nameWithType: SpriteCursor.SpriteCursorDatum.CursorSprite -- uid: XRTK.SDK.UX.Cursors.SpriteCursor.SpriteCursorDatum.CursorState - name: CursorState - href: api/XRTK.SDK.UX.Cursors.SpriteCursor.SpriteCursorDatum.html#XRTK_SDK_UX_Cursors_SpriteCursor_SpriteCursorDatum_CursorState - commentId: F:XRTK.SDK.UX.Cursors.SpriteCursor.SpriteCursorDatum.CursorState - fullName: XRTK.SDK.UX.Cursors.SpriteCursor.SpriteCursorDatum.CursorState - nameWithType: SpriteCursor.SpriteCursorDatum.CursorState -- uid: XRTK.SDK.UX.Cursors.SpriteCursor.SpriteCursorDatum.Name - name: Name - href: api/XRTK.SDK.UX.Cursors.SpriteCursor.SpriteCursorDatum.html#XRTK_SDK_UX_Cursors_SpriteCursor_SpriteCursorDatum_Name - commentId: F:XRTK.SDK.UX.Cursors.SpriteCursor.SpriteCursorDatum.Name - fullName: XRTK.SDK.UX.Cursors.SpriteCursor.SpriteCursorDatum.Name - nameWithType: SpriteCursor.SpriteCursorDatum.Name -- uid: XRTK.SDK.UX.Cursors.SpriteCursor.TargetRenderer - name: TargetRenderer - href: api/XRTK.SDK.UX.Cursors.SpriteCursor.html#XRTK_SDK_UX_Cursors_SpriteCursor_TargetRenderer - commentId: F:XRTK.SDK.UX.Cursors.SpriteCursor.TargetRenderer - fullName: XRTK.SDK.UX.Cursors.SpriteCursor.TargetRenderer - nameWithType: SpriteCursor.TargetRenderer -- uid: XRTK.SDK.UX.Cursors.TeleportCursor - name: TeleportCursor - href: api/XRTK.SDK.UX.Cursors.TeleportCursor.html - commentId: T:XRTK.SDK.UX.Cursors.TeleportCursor - fullName: XRTK.SDK.UX.Cursors.TeleportCursor - nameWithType: TeleportCursor -- uid: XRTK.SDK.UX.Cursors.TeleportCursor.CheckCursorState - name: CheckCursorState() - href: api/XRTK.SDK.UX.Cursors.TeleportCursor.html#XRTK_SDK_UX_Cursors_TeleportCursor_CheckCursorState - commentId: M:XRTK.SDK.UX.Cursors.TeleportCursor.CheckCursorState - fullName: XRTK.SDK.UX.Cursors.TeleportCursor.CheckCursorState() - nameWithType: TeleportCursor.CheckCursorState() -- uid: XRTK.SDK.UX.Cursors.TeleportCursor.CheckCursorState* - name: CheckCursorState - href: api/XRTK.SDK.UX.Cursors.TeleportCursor.html#XRTK_SDK_UX_Cursors_TeleportCursor_CheckCursorState_ - commentId: Overload:XRTK.SDK.UX.Cursors.TeleportCursor.CheckCursorState - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.TeleportCursor.CheckCursorState - nameWithType: TeleportCursor.CheckCursorState -- uid: XRTK.SDK.UX.Cursors.TeleportCursor.LocalScale - name: LocalScale - href: api/XRTK.SDK.UX.Cursors.TeleportCursor.html#XRTK_SDK_UX_Cursors_TeleportCursor_LocalScale - commentId: P:XRTK.SDK.UX.Cursors.TeleportCursor.LocalScale - fullName: XRTK.SDK.UX.Cursors.TeleportCursor.LocalScale - nameWithType: TeleportCursor.LocalScale -- uid: XRTK.SDK.UX.Cursors.TeleportCursor.LocalScale* - name: LocalScale - href: api/XRTK.SDK.UX.Cursors.TeleportCursor.html#XRTK_SDK_UX_Cursors_TeleportCursor_LocalScale_ - commentId: Overload:XRTK.SDK.UX.Cursors.TeleportCursor.LocalScale - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.TeleportCursor.LocalScale - nameWithType: TeleportCursor.LocalScale -- uid: XRTK.SDK.UX.Cursors.TeleportCursor.OnTeleportCanceled(XRTK.EventDatum.Teleport.TeleportEventData) - name: OnTeleportCanceled(TeleportEventData) - href: api/XRTK.SDK.UX.Cursors.TeleportCursor.html#XRTK_SDK_UX_Cursors_TeleportCursor_OnTeleportCanceled_XRTK_EventDatum_Teleport_TeleportEventData_ - commentId: M:XRTK.SDK.UX.Cursors.TeleportCursor.OnTeleportCanceled(XRTK.EventDatum.Teleport.TeleportEventData) - fullName: XRTK.SDK.UX.Cursors.TeleportCursor.OnTeleportCanceled(XRTK.EventDatum.Teleport.TeleportEventData) - nameWithType: TeleportCursor.OnTeleportCanceled(TeleportEventData) -- uid: XRTK.SDK.UX.Cursors.TeleportCursor.OnTeleportCanceled* - name: OnTeleportCanceled - href: api/XRTK.SDK.UX.Cursors.TeleportCursor.html#XRTK_SDK_UX_Cursors_TeleportCursor_OnTeleportCanceled_ - commentId: Overload:XRTK.SDK.UX.Cursors.TeleportCursor.OnTeleportCanceled - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.TeleportCursor.OnTeleportCanceled - nameWithType: TeleportCursor.OnTeleportCanceled -- uid: XRTK.SDK.UX.Cursors.TeleportCursor.OnTeleportCompleted(XRTK.EventDatum.Teleport.TeleportEventData) - name: OnTeleportCompleted(TeleportEventData) - href: api/XRTK.SDK.UX.Cursors.TeleportCursor.html#XRTK_SDK_UX_Cursors_TeleportCursor_OnTeleportCompleted_XRTK_EventDatum_Teleport_TeleportEventData_ - commentId: M:XRTK.SDK.UX.Cursors.TeleportCursor.OnTeleportCompleted(XRTK.EventDatum.Teleport.TeleportEventData) - fullName: XRTK.SDK.UX.Cursors.TeleportCursor.OnTeleportCompleted(XRTK.EventDatum.Teleport.TeleportEventData) - nameWithType: TeleportCursor.OnTeleportCompleted(TeleportEventData) -- uid: XRTK.SDK.UX.Cursors.TeleportCursor.OnTeleportCompleted* - name: OnTeleportCompleted - href: api/XRTK.SDK.UX.Cursors.TeleportCursor.html#XRTK_SDK_UX_Cursors_TeleportCursor_OnTeleportCompleted_ - commentId: Overload:XRTK.SDK.UX.Cursors.TeleportCursor.OnTeleportCompleted - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.TeleportCursor.OnTeleportCompleted - nameWithType: TeleportCursor.OnTeleportCompleted -- uid: XRTK.SDK.UX.Cursors.TeleportCursor.OnTeleportRequest(XRTK.EventDatum.Teleport.TeleportEventData) - name: OnTeleportRequest(TeleportEventData) - href: api/XRTK.SDK.UX.Cursors.TeleportCursor.html#XRTK_SDK_UX_Cursors_TeleportCursor_OnTeleportRequest_XRTK_EventDatum_Teleport_TeleportEventData_ - commentId: M:XRTK.SDK.UX.Cursors.TeleportCursor.OnTeleportRequest(XRTK.EventDatum.Teleport.TeleportEventData) - fullName: XRTK.SDK.UX.Cursors.TeleportCursor.OnTeleportRequest(XRTK.EventDatum.Teleport.TeleportEventData) - nameWithType: TeleportCursor.OnTeleportRequest(TeleportEventData) -- uid: XRTK.SDK.UX.Cursors.TeleportCursor.OnTeleportRequest* - name: OnTeleportRequest - href: api/XRTK.SDK.UX.Cursors.TeleportCursor.html#XRTK_SDK_UX_Cursors_TeleportCursor_OnTeleportRequest_ - commentId: Overload:XRTK.SDK.UX.Cursors.TeleportCursor.OnTeleportRequest - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.TeleportCursor.OnTeleportRequest - nameWithType: TeleportCursor.OnTeleportRequest -- uid: XRTK.SDK.UX.Cursors.TeleportCursor.OnTeleportStarted(XRTK.EventDatum.Teleport.TeleportEventData) - name: OnTeleportStarted(TeleportEventData) - href: api/XRTK.SDK.UX.Cursors.TeleportCursor.html#XRTK_SDK_UX_Cursors_TeleportCursor_OnTeleportStarted_XRTK_EventDatum_Teleport_TeleportEventData_ - commentId: M:XRTK.SDK.UX.Cursors.TeleportCursor.OnTeleportStarted(XRTK.EventDatum.Teleport.TeleportEventData) - fullName: XRTK.SDK.UX.Cursors.TeleportCursor.OnTeleportStarted(XRTK.EventDatum.Teleport.TeleportEventData) - nameWithType: TeleportCursor.OnTeleportStarted(TeleportEventData) -- uid: XRTK.SDK.UX.Cursors.TeleportCursor.OnTeleportStarted* - name: OnTeleportStarted - href: api/XRTK.SDK.UX.Cursors.TeleportCursor.html#XRTK_SDK_UX_Cursors_TeleportCursor_OnTeleportStarted_ - commentId: Overload:XRTK.SDK.UX.Cursors.TeleportCursor.OnTeleportStarted - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.TeleportCursor.OnTeleportStarted - nameWithType: TeleportCursor.OnTeleportStarted -- uid: XRTK.SDK.UX.Cursors.TeleportCursor.Pointer - name: Pointer - href: api/XRTK.SDK.UX.Cursors.TeleportCursor.html#XRTK_SDK_UX_Cursors_TeleportCursor_Pointer - commentId: P:XRTK.SDK.UX.Cursors.TeleportCursor.Pointer - fullName: XRTK.SDK.UX.Cursors.TeleportCursor.Pointer - nameWithType: TeleportCursor.Pointer -- uid: XRTK.SDK.UX.Cursors.TeleportCursor.Pointer* - name: Pointer - href: api/XRTK.SDK.UX.Cursors.TeleportCursor.html#XRTK_SDK_UX_Cursors_TeleportCursor_Pointer_ - commentId: Overload:XRTK.SDK.UX.Cursors.TeleportCursor.Pointer - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.TeleportCursor.Pointer - nameWithType: TeleportCursor.Pointer -- uid: XRTK.SDK.UX.Cursors.TeleportCursor.Position - name: Position - href: api/XRTK.SDK.UX.Cursors.TeleportCursor.html#XRTK_SDK_UX_Cursors_TeleportCursor_Position - commentId: P:XRTK.SDK.UX.Cursors.TeleportCursor.Position - fullName: XRTK.SDK.UX.Cursors.TeleportCursor.Position - nameWithType: TeleportCursor.Position -- uid: XRTK.SDK.UX.Cursors.TeleportCursor.Position* - name: Position - href: api/XRTK.SDK.UX.Cursors.TeleportCursor.html#XRTK_SDK_UX_Cursors_TeleportCursor_Position_ - commentId: Overload:XRTK.SDK.UX.Cursors.TeleportCursor.Position - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.TeleportCursor.Position - nameWithType: TeleportCursor.Position -- uid: XRTK.SDK.UX.Cursors.TeleportCursor.Rotation - name: Rotation - href: api/XRTK.SDK.UX.Cursors.TeleportCursor.html#XRTK_SDK_UX_Cursors_TeleportCursor_Rotation - commentId: P:XRTK.SDK.UX.Cursors.TeleportCursor.Rotation - fullName: XRTK.SDK.UX.Cursors.TeleportCursor.Rotation - nameWithType: TeleportCursor.Rotation -- uid: XRTK.SDK.UX.Cursors.TeleportCursor.Rotation* - name: Rotation - href: api/XRTK.SDK.UX.Cursors.TeleportCursor.html#XRTK_SDK_UX_Cursors_TeleportCursor_Rotation_ - commentId: Overload:XRTK.SDK.UX.Cursors.TeleportCursor.Rotation - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.TeleportCursor.Rotation - nameWithType: TeleportCursor.Rotation -- uid: XRTK.SDK.UX.Cursors.TeleportCursor.UpdateCursorTransform - name: UpdateCursorTransform() - href: api/XRTK.SDK.UX.Cursors.TeleportCursor.html#XRTK_SDK_UX_Cursors_TeleportCursor_UpdateCursorTransform - commentId: M:XRTK.SDK.UX.Cursors.TeleportCursor.UpdateCursorTransform - fullName: XRTK.SDK.UX.Cursors.TeleportCursor.UpdateCursorTransform() - nameWithType: TeleportCursor.UpdateCursorTransform() -- uid: XRTK.SDK.UX.Cursors.TeleportCursor.UpdateCursorTransform* - name: UpdateCursorTransform - href: api/XRTK.SDK.UX.Cursors.TeleportCursor.html#XRTK_SDK_UX_Cursors_TeleportCursor_UpdateCursorTransform_ - commentId: Overload:XRTK.SDK.UX.Cursors.TeleportCursor.UpdateCursorTransform - isSpec: "True" - fullName: XRTK.SDK.UX.Cursors.TeleportCursor.UpdateCursorTransform - nameWithType: TeleportCursor.UpdateCursorTransform -- uid: XRTK.SDK.UX.Pointers - name: XRTK.SDK.UX.Pointers - href: api/XRTK.SDK.UX.Pointers.html - commentId: N:XRTK.SDK.UX.Pointers - fullName: XRTK.SDK.UX.Pointers - nameWithType: XRTK.SDK.UX.Pointers -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer - name: BaseControllerPointer - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html - commentId: T:XRTK.SDK.UX.Pointers.BaseControllerPointer - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer - nameWithType: BaseControllerPointer -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.BaseCursor - name: BaseCursor - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_BaseCursor - commentId: P:XRTK.SDK.UX.Pointers.BaseControllerPointer.BaseCursor - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.BaseCursor - nameWithType: BaseControllerPointer.BaseCursor -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.BaseCursor* - name: BaseCursor - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_BaseCursor_ - commentId: Overload:XRTK.SDK.UX.Pointers.BaseControllerPointer.BaseCursor - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.BaseCursor - nameWithType: BaseControllerPointer.BaseCursor -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.CameraSystem - name: CameraSystem - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_CameraSystem - commentId: P:XRTK.SDK.UX.Pointers.BaseControllerPointer.CameraSystem - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.CameraSystem - nameWithType: BaseControllerPointer.CameraSystem -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.CameraSystem* - name: CameraSystem - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_CameraSystem_ - commentId: Overload:XRTK.SDK.UX.Pointers.BaseControllerPointer.CameraSystem - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.CameraSystem - nameWithType: BaseControllerPointer.CameraSystem -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.CapturedNearInteractionObject - name: CapturedNearInteractionObject - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_CapturedNearInteractionObject - commentId: P:XRTK.SDK.UX.Pointers.BaseControllerPointer.CapturedNearInteractionObject - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.CapturedNearInteractionObject - nameWithType: BaseControllerPointer.CapturedNearInteractionObject -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.CapturedNearInteractionObject* - name: CapturedNearInteractionObject - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_CapturedNearInteractionObject_ - commentId: Overload:XRTK.SDK.UX.Pointers.BaseControllerPointer.CapturedNearInteractionObject - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.CapturedNearInteractionObject - nameWithType: BaseControllerPointer.CapturedNearInteractionObject -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.Controller - name: Controller - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_Controller - commentId: P:XRTK.SDK.UX.Pointers.BaseControllerPointer.Controller - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.Controller - nameWithType: BaseControllerPointer.Controller -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.Controller* - name: Controller - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_Controller_ - commentId: Overload:XRTK.SDK.UX.Pointers.BaseControllerPointer.Controller - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.Controller - nameWithType: BaseControllerPointer.Controller -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.CursorModifier - name: CursorModifier - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_CursorModifier - commentId: P:XRTK.SDK.UX.Pointers.BaseControllerPointer.CursorModifier - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.CursorModifier - nameWithType: BaseControllerPointer.CursorModifier -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.CursorModifier* - name: CursorModifier - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_CursorModifier_ - commentId: Overload:XRTK.SDK.UX.Pointers.BaseControllerPointer.CursorModifier - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.CursorModifier - nameWithType: BaseControllerPointer.CursorModifier -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.DefaultPointerExtent - name: DefaultPointerExtent - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_DefaultPointerExtent - commentId: P:XRTK.SDK.UX.Pointers.BaseControllerPointer.DefaultPointerExtent - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.DefaultPointerExtent - nameWithType: BaseControllerPointer.DefaultPointerExtent -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.DefaultPointerExtent* - name: DefaultPointerExtent - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_DefaultPointerExtent_ - commentId: Overload:XRTK.SDK.UX.Pointers.BaseControllerPointer.DefaultPointerExtent - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.DefaultPointerExtent - nameWithType: BaseControllerPointer.DefaultPointerExtent -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.DisableCursorOnStart - name: DisableCursorOnStart - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_DisableCursorOnStart - commentId: P:XRTK.SDK.UX.Pointers.BaseControllerPointer.DisableCursorOnStart - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.DisableCursorOnStart - nameWithType: BaseControllerPointer.DisableCursorOnStart -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.DisableCursorOnStart* - name: DisableCursorOnStart - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_DisableCursorOnStart_ - commentId: Overload:XRTK.SDK.UX.Pointers.BaseControllerPointer.DisableCursorOnStart - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.DisableCursorOnStart - nameWithType: BaseControllerPointer.DisableCursorOnStart -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.Equals(System.Object) - name: Equals(Object) - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_Equals_System_Object_ - commentId: M:XRTK.SDK.UX.Pointers.BaseControllerPointer.Equals(System.Object) - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.Equals(System.Object) - nameWithType: BaseControllerPointer.Equals(Object) -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.Equals* - name: Equals - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_Equals_ - commentId: Overload:XRTK.SDK.UX.Pointers.BaseControllerPointer.Equals - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.Equals - nameWithType: BaseControllerPointer.Equals -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.FocusHandler - name: FocusHandler - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_FocusHandler - commentId: P:XRTK.SDK.UX.Pointers.BaseControllerPointer.FocusHandler - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.FocusHandler - nameWithType: BaseControllerPointer.FocusHandler -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.FocusHandler* - name: FocusHandler - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_FocusHandler_ - commentId: Overload:XRTK.SDK.UX.Pointers.BaseControllerPointer.FocusHandler - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.FocusHandler - nameWithType: BaseControllerPointer.FocusHandler -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.GetHashCode - name: GetHashCode() - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_GetHashCode - commentId: M:XRTK.SDK.UX.Pointers.BaseControllerPointer.GetHashCode - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.GetHashCode() - nameWithType: BaseControllerPointer.GetHashCode() -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.GetHashCode* - name: GetHashCode - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_GetHashCode_ - commentId: Overload:XRTK.SDK.UX.Pointers.BaseControllerPointer.GetHashCode - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.GetHashCode - nameWithType: BaseControllerPointer.GetHashCode -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.HasSelectPressedOnce - name: HasSelectPressedOnce - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_HasSelectPressedOnce - commentId: F:XRTK.SDK.UX.Pointers.BaseControllerPointer.HasSelectPressedOnce - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.HasSelectPressedOnce - nameWithType: BaseControllerPointer.HasSelectPressedOnce -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.InputHandler - name: InputHandler - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_InputHandler - commentId: P:XRTK.SDK.UX.Pointers.BaseControllerPointer.InputHandler - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.InputHandler - nameWithType: BaseControllerPointer.InputHandler -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.InputHandler* - name: InputHandler - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_InputHandler_ - commentId: Overload:XRTK.SDK.UX.Pointers.BaseControllerPointer.InputHandler - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.InputHandler - nameWithType: BaseControllerPointer.InputHandler -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.InputSourceParent - name: InputSourceParent - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_InputSourceParent - commentId: P:XRTK.SDK.UX.Pointers.BaseControllerPointer.InputSourceParent - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.InputSourceParent - nameWithType: BaseControllerPointer.InputSourceParent -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.InputSourceParent* - name: InputSourceParent - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_InputSourceParent_ - commentId: Overload:XRTK.SDK.UX.Pointers.BaseControllerPointer.InputSourceParent - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.InputSourceParent - nameWithType: BaseControllerPointer.InputSourceParent -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.InteractionMode - name: InteractionMode - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_InteractionMode - commentId: P:XRTK.SDK.UX.Pointers.BaseControllerPointer.InteractionMode - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.InteractionMode - nameWithType: BaseControllerPointer.InteractionMode -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.InteractionMode* - name: InteractionMode - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_InteractionMode_ - commentId: Overload:XRTK.SDK.UX.Pointers.BaseControllerPointer.InteractionMode - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.InteractionMode - nameWithType: BaseControllerPointer.InteractionMode -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.IsFocusLocked - name: IsFocusLocked - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_IsFocusLocked - commentId: P:XRTK.SDK.UX.Pointers.BaseControllerPointer.IsFocusLocked - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.IsFocusLocked - nameWithType: BaseControllerPointer.IsFocusLocked -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.IsFocusLocked* - name: IsFocusLocked - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_IsFocusLocked_ - commentId: Overload:XRTK.SDK.UX.Pointers.BaseControllerPointer.IsFocusLocked - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.IsFocusLocked - nameWithType: BaseControllerPointer.IsFocusLocked -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.IsHoldPressed - name: IsHoldPressed - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_IsHoldPressed - commentId: F:XRTK.SDK.UX.Pointers.BaseControllerPointer.IsHoldPressed - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.IsHoldPressed - nameWithType: BaseControllerPointer.IsHoldPressed -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.IsInteractionEnabled - name: IsInteractionEnabled - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_IsInteractionEnabled - commentId: P:XRTK.SDK.UX.Pointers.BaseControllerPointer.IsInteractionEnabled - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.IsInteractionEnabled - nameWithType: BaseControllerPointer.IsInteractionEnabled -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.IsInteractionEnabled* - name: IsInteractionEnabled - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_IsInteractionEnabled_ - commentId: Overload:XRTK.SDK.UX.Pointers.BaseControllerPointer.IsInteractionEnabled - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.IsInteractionEnabled - nameWithType: BaseControllerPointer.IsInteractionEnabled -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.IsSelectPressed - name: IsSelectPressed - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_IsSelectPressed - commentId: F:XRTK.SDK.UX.Pointers.BaseControllerPointer.IsSelectPressed - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.IsSelectPressed - nameWithType: BaseControllerPointer.IsSelectPressed -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.IsTeleportRequestActive - name: IsTeleportRequestActive - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_IsTeleportRequestActive - commentId: F:XRTK.SDK.UX.Pointers.BaseControllerPointer.IsTeleportRequestActive - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.IsTeleportRequestActive - nameWithType: BaseControllerPointer.IsTeleportRequestActive -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.NearInteractionCollider - name: NearInteractionCollider - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_NearInteractionCollider - commentId: P:XRTK.SDK.UX.Pointers.BaseControllerPointer.NearInteractionCollider - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.NearInteractionCollider - nameWithType: BaseControllerPointer.NearInteractionCollider -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.NearInteractionCollider* - name: NearInteractionCollider - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_NearInteractionCollider_ - commentId: Overload:XRTK.SDK.UX.Pointers.BaseControllerPointer.NearInteractionCollider - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.NearInteractionCollider - nameWithType: BaseControllerPointer.NearInteractionCollider -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnDisable - name: OnDisable() - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_OnDisable - commentId: M:XRTK.SDK.UX.Pointers.BaseControllerPointer.OnDisable - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnDisable() - nameWithType: BaseControllerPointer.OnDisable() -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnDisable* - name: OnDisable - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_OnDisable_ - commentId: Overload:XRTK.SDK.UX.Pointers.BaseControllerPointer.OnDisable - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnDisable - nameWithType: BaseControllerPointer.OnDisable -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnEnable - name: OnEnable() - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_OnEnable - commentId: M:XRTK.SDK.UX.Pointers.BaseControllerPointer.OnEnable - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnEnable() - nameWithType: BaseControllerPointer.OnEnable() -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnEnable* - name: OnEnable - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_OnEnable_ - commentId: Overload:XRTK.SDK.UX.Pointers.BaseControllerPointer.OnEnable - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnEnable - nameWithType: BaseControllerPointer.OnEnable -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnInputDown(XRTK.EventDatum.Input.InputEventData) - name: OnInputDown(InputEventData) - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_OnInputDown_XRTK_EventDatum_Input_InputEventData_ - commentId: M:XRTK.SDK.UX.Pointers.BaseControllerPointer.OnInputDown(XRTK.EventDatum.Input.InputEventData) - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnInputDown(XRTK.EventDatum.Input.InputEventData) - nameWithType: BaseControllerPointer.OnInputDown(InputEventData) -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnInputDown* - name: OnInputDown - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_OnInputDown_ - commentId: Overload:XRTK.SDK.UX.Pointers.BaseControllerPointer.OnInputDown - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnInputDown - nameWithType: BaseControllerPointer.OnInputDown -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnInputUp(XRTK.EventDatum.Input.InputEventData) - name: OnInputUp(InputEventData) - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_OnInputUp_XRTK_EventDatum_Input_InputEventData_ - commentId: M:XRTK.SDK.UX.Pointers.BaseControllerPointer.OnInputUp(XRTK.EventDatum.Input.InputEventData) - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnInputUp(XRTK.EventDatum.Input.InputEventData) - nameWithType: BaseControllerPointer.OnInputUp(InputEventData) -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnInputUp* - name: OnInputUp - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_OnInputUp_ - commentId: Overload:XRTK.SDK.UX.Pointers.BaseControllerPointer.OnInputUp - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnInputUp - nameWithType: BaseControllerPointer.OnInputUp -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnPostRaycast - name: OnPostRaycast() - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_OnPostRaycast - commentId: M:XRTK.SDK.UX.Pointers.BaseControllerPointer.OnPostRaycast - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnPostRaycast() - nameWithType: BaseControllerPointer.OnPostRaycast() -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnPostRaycast* - name: OnPostRaycast - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_OnPostRaycast_ - commentId: Overload:XRTK.SDK.UX.Pointers.BaseControllerPointer.OnPostRaycast - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnPostRaycast - nameWithType: BaseControllerPointer.OnPostRaycast -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnPreRaycast - name: OnPreRaycast() - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_OnPreRaycast - commentId: M:XRTK.SDK.UX.Pointers.BaseControllerPointer.OnPreRaycast - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnPreRaycast() - nameWithType: BaseControllerPointer.OnPreRaycast() -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnPreRaycast* - name: OnPreRaycast - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_OnPreRaycast_ - commentId: Overload:XRTK.SDK.UX.Pointers.BaseControllerPointer.OnPreRaycast - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnPreRaycast - nameWithType: BaseControllerPointer.OnPreRaycast -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnSourceLost(XRTK.EventDatum.Input.SourceStateEventData) - name: OnSourceLost(SourceStateEventData) - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_OnSourceLost_XRTK_EventDatum_Input_SourceStateEventData_ - commentId: M:XRTK.SDK.UX.Pointers.BaseControllerPointer.OnSourceLost(XRTK.EventDatum.Input.SourceStateEventData) - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnSourceLost(XRTK.EventDatum.Input.SourceStateEventData) - nameWithType: BaseControllerPointer.OnSourceLost(SourceStateEventData) -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnSourceLost* - name: OnSourceLost - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_OnSourceLost_ - commentId: Overload:XRTK.SDK.UX.Pointers.BaseControllerPointer.OnSourceLost - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnSourceLost - nameWithType: BaseControllerPointer.OnSourceLost -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnTeleportCanceled(XRTK.EventDatum.Teleport.TeleportEventData) - name: OnTeleportCanceled(TeleportEventData) - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_OnTeleportCanceled_XRTK_EventDatum_Teleport_TeleportEventData_ - commentId: M:XRTK.SDK.UX.Pointers.BaseControllerPointer.OnTeleportCanceled(XRTK.EventDatum.Teleport.TeleportEventData) - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnTeleportCanceled(XRTK.EventDatum.Teleport.TeleportEventData) - nameWithType: BaseControllerPointer.OnTeleportCanceled(TeleportEventData) -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnTeleportCanceled* - name: OnTeleportCanceled - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_OnTeleportCanceled_ - commentId: Overload:XRTK.SDK.UX.Pointers.BaseControllerPointer.OnTeleportCanceled - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnTeleportCanceled - nameWithType: BaseControllerPointer.OnTeleportCanceled -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnTeleportCompleted(XRTK.EventDatum.Teleport.TeleportEventData) - name: OnTeleportCompleted(TeleportEventData) - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_OnTeleportCompleted_XRTK_EventDatum_Teleport_TeleportEventData_ - commentId: M:XRTK.SDK.UX.Pointers.BaseControllerPointer.OnTeleportCompleted(XRTK.EventDatum.Teleport.TeleportEventData) - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnTeleportCompleted(XRTK.EventDatum.Teleport.TeleportEventData) - nameWithType: BaseControllerPointer.OnTeleportCompleted(TeleportEventData) -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnTeleportCompleted* - name: OnTeleportCompleted - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_OnTeleportCompleted_ - commentId: Overload:XRTK.SDK.UX.Pointers.BaseControllerPointer.OnTeleportCompleted - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnTeleportCompleted - nameWithType: BaseControllerPointer.OnTeleportCompleted -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnTeleportRequest(XRTK.EventDatum.Teleport.TeleportEventData) - name: OnTeleportRequest(TeleportEventData) - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_OnTeleportRequest_XRTK_EventDatum_Teleport_TeleportEventData_ - commentId: M:XRTK.SDK.UX.Pointers.BaseControllerPointer.OnTeleportRequest(XRTK.EventDatum.Teleport.TeleportEventData) - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnTeleportRequest(XRTK.EventDatum.Teleport.TeleportEventData) - nameWithType: BaseControllerPointer.OnTeleportRequest(TeleportEventData) -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnTeleportRequest* - name: OnTeleportRequest - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_OnTeleportRequest_ - commentId: Overload:XRTK.SDK.UX.Pointers.BaseControllerPointer.OnTeleportRequest - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnTeleportRequest - nameWithType: BaseControllerPointer.OnTeleportRequest -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnTeleportStarted(XRTK.EventDatum.Teleport.TeleportEventData) - name: OnTeleportStarted(TeleportEventData) - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_OnTeleportStarted_XRTK_EventDatum_Teleport_TeleportEventData_ - commentId: M:XRTK.SDK.UX.Pointers.BaseControllerPointer.OnTeleportStarted(XRTK.EventDatum.Teleport.TeleportEventData) - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnTeleportStarted(XRTK.EventDatum.Teleport.TeleportEventData) - nameWithType: BaseControllerPointer.OnTeleportStarted(TeleportEventData) -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnTeleportStarted* - name: OnTeleportStarted - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_OnTeleportStarted_ - commentId: Overload:XRTK.SDK.UX.Pointers.BaseControllerPointer.OnTeleportStarted - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnTeleportStarted - nameWithType: BaseControllerPointer.OnTeleportStarted -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnTriggerEnter(UnityEngine.Collider) - name: OnTriggerEnter(Collider) - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_OnTriggerEnter_UnityEngine_Collider_ - commentId: M:XRTK.SDK.UX.Pointers.BaseControllerPointer.OnTriggerEnter(UnityEngine.Collider) - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnTriggerEnter(UnityEngine.Collider) - nameWithType: BaseControllerPointer.OnTriggerEnter(Collider) -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnTriggerEnter* - name: OnTriggerEnter - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_OnTriggerEnter_ - commentId: Overload:XRTK.SDK.UX.Pointers.BaseControllerPointer.OnTriggerEnter - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnTriggerEnter - nameWithType: BaseControllerPointer.OnTriggerEnter -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnTriggerExit(UnityEngine.Collider) - name: OnTriggerExit(Collider) - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_OnTriggerExit_UnityEngine_Collider_ - commentId: M:XRTK.SDK.UX.Pointers.BaseControllerPointer.OnTriggerExit(UnityEngine.Collider) - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnTriggerExit(UnityEngine.Collider) - nameWithType: BaseControllerPointer.OnTriggerExit(Collider) -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnTriggerExit* - name: OnTriggerExit - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_OnTriggerExit_ - commentId: Overload:XRTK.SDK.UX.Pointers.BaseControllerPointer.OnTriggerExit - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnTriggerExit - nameWithType: BaseControllerPointer.OnTriggerExit -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnTriggerStay(UnityEngine.Collider) - name: OnTriggerStay(Collider) - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_OnTriggerStay_UnityEngine_Collider_ - commentId: M:XRTK.SDK.UX.Pointers.BaseControllerPointer.OnTriggerStay(UnityEngine.Collider) - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnTriggerStay(UnityEngine.Collider) - nameWithType: BaseControllerPointer.OnTriggerStay(Collider) -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnTriggerStay* - name: OnTriggerStay - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_OnTriggerStay_ - commentId: Overload:XRTK.SDK.UX.Pointers.BaseControllerPointer.OnTriggerStay - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.OnTriggerStay - nameWithType: BaseControllerPointer.OnTriggerStay -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.OverrideGrabPoint - name: OverrideGrabPoint - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_OverrideGrabPoint - commentId: P:XRTK.SDK.UX.Pointers.BaseControllerPointer.OverrideGrabPoint - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.OverrideGrabPoint - nameWithType: BaseControllerPointer.OverrideGrabPoint -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.OverrideGrabPoint* - name: OverrideGrabPoint - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_OverrideGrabPoint_ - commentId: Overload:XRTK.SDK.UX.Pointers.BaseControllerPointer.OverrideGrabPoint - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.OverrideGrabPoint - nameWithType: BaseControllerPointer.OverrideGrabPoint -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.PointerDirection - name: PointerDirection - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_PointerDirection - commentId: P:XRTK.SDK.UX.Pointers.BaseControllerPointer.PointerDirection - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.PointerDirection - nameWithType: BaseControllerPointer.PointerDirection -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.PointerDirection* - name: PointerDirection - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_PointerDirection_ - commentId: Overload:XRTK.SDK.UX.Pointers.BaseControllerPointer.PointerDirection - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.PointerDirection - nameWithType: BaseControllerPointer.PointerDirection -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.PointerExtent - name: PointerExtent - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_PointerExtent - commentId: P:XRTK.SDK.UX.Pointers.BaseControllerPointer.PointerExtent - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.PointerExtent - nameWithType: BaseControllerPointer.PointerExtent -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.PointerExtent* - name: PointerExtent - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_PointerExtent_ - commentId: Overload:XRTK.SDK.UX.Pointers.BaseControllerPointer.PointerExtent - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.PointerExtent - nameWithType: BaseControllerPointer.PointerExtent -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.PointerId - name: PointerId - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_PointerId - commentId: P:XRTK.SDK.UX.Pointers.BaseControllerPointer.PointerId - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.PointerId - nameWithType: BaseControllerPointer.PointerId -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.PointerId* - name: PointerId - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_PointerId_ - commentId: Overload:XRTK.SDK.UX.Pointers.BaseControllerPointer.PointerId - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.PointerId - nameWithType: BaseControllerPointer.PointerId -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.PointerName - name: PointerName - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_PointerName - commentId: P:XRTK.SDK.UX.Pointers.BaseControllerPointer.PointerName - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.PointerName - nameWithType: BaseControllerPointer.PointerName -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.PointerName* - name: PointerName - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_PointerName_ - commentId: Overload:XRTK.SDK.UX.Pointers.BaseControllerPointer.PointerName - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.PointerName - nameWithType: BaseControllerPointer.PointerName -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.PointerOrientation - name: PointerOrientation - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_PointerOrientation - commentId: P:XRTK.SDK.UX.Pointers.BaseControllerPointer.PointerOrientation - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.PointerOrientation - nameWithType: BaseControllerPointer.PointerOrientation -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.PointerOrientation* - name: PointerOrientation - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_PointerOrientation_ - commentId: Overload:XRTK.SDK.UX.Pointers.BaseControllerPointer.PointerOrientation - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.PointerOrientation - nameWithType: BaseControllerPointer.PointerOrientation -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.PointerRaycastLayerMasksOverride - name: PointerRaycastLayerMasksOverride - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_PointerRaycastLayerMasksOverride - commentId: P:XRTK.SDK.UX.Pointers.BaseControllerPointer.PointerRaycastLayerMasksOverride - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.PointerRaycastLayerMasksOverride - nameWithType: BaseControllerPointer.PointerRaycastLayerMasksOverride -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.PointerRaycastLayerMasksOverride* - name: PointerRaycastLayerMasksOverride - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_PointerRaycastLayerMasksOverride_ - commentId: Overload:XRTK.SDK.UX.Pointers.BaseControllerPointer.PointerRaycastLayerMasksOverride - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.PointerRaycastLayerMasksOverride - nameWithType: BaseControllerPointer.PointerRaycastLayerMasksOverride -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.RaycastMode - name: RaycastMode - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_RaycastMode - commentId: P:XRTK.SDK.UX.Pointers.BaseControllerPointer.RaycastMode - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.RaycastMode - nameWithType: BaseControllerPointer.RaycastMode -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.RaycastMode* - name: RaycastMode - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_RaycastMode_ - commentId: Overload:XRTK.SDK.UX.Pointers.BaseControllerPointer.RaycastMode - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.RaycastMode - nameWithType: BaseControllerPointer.RaycastMode -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.RaycastOrigin - name: RaycastOrigin - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_RaycastOrigin - commentId: P:XRTK.SDK.UX.Pointers.BaseControllerPointer.RaycastOrigin - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.RaycastOrigin - nameWithType: BaseControllerPointer.RaycastOrigin -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.RaycastOrigin* - name: RaycastOrigin - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_RaycastOrigin_ - commentId: Overload:XRTK.SDK.UX.Pointers.BaseControllerPointer.RaycastOrigin - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.RaycastOrigin - nameWithType: BaseControllerPointer.RaycastOrigin -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.Rays - name: Rays - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_Rays - commentId: P:XRTK.SDK.UX.Pointers.BaseControllerPointer.Rays - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.Rays - nameWithType: BaseControllerPointer.Rays -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.Rays* - name: Rays - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_Rays_ - commentId: Overload:XRTK.SDK.UX.Pointers.BaseControllerPointer.Rays - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.Rays - nameWithType: BaseControllerPointer.Rays -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.RayStabilizer - name: RayStabilizer - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_RayStabilizer - commentId: P:XRTK.SDK.UX.Pointers.BaseControllerPointer.RayStabilizer - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.RayStabilizer - nameWithType: BaseControllerPointer.RayStabilizer -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.RayStabilizer* - name: RayStabilizer - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_RayStabilizer_ - commentId: Overload:XRTK.SDK.UX.Pointers.BaseControllerPointer.RayStabilizer - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.RayStabilizer - nameWithType: BaseControllerPointer.RayStabilizer -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.Result - name: Result - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_Result - commentId: P:XRTK.SDK.UX.Pointers.BaseControllerPointer.Result - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.Result - nameWithType: BaseControllerPointer.Result -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.Result* - name: Result - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_Result_ - commentId: Overload:XRTK.SDK.UX.Pointers.BaseControllerPointer.Result - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.Result - nameWithType: BaseControllerPointer.Result -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.SetCursor(UnityEngine.GameObject) - name: SetCursor(GameObject) - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_SetCursor_UnityEngine_GameObject_ - commentId: M:XRTK.SDK.UX.Pointers.BaseControllerPointer.SetCursor(UnityEngine.GameObject) - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.SetCursor(UnityEngine.GameObject) - nameWithType: BaseControllerPointer.SetCursor(GameObject) -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.SetCursor* - name: SetCursor - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_SetCursor_ - commentId: Overload:XRTK.SDK.UX.Pointers.BaseControllerPointer.SetCursor - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.SetCursor - nameWithType: BaseControllerPointer.SetCursor -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.SphereCastRadius - name: SphereCastRadius - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_SphereCastRadius - commentId: P:XRTK.SDK.UX.Pointers.BaseControllerPointer.SphereCastRadius - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.SphereCastRadius - nameWithType: BaseControllerPointer.SphereCastRadius -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.SphereCastRadius* - name: SphereCastRadius - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_SphereCastRadius_ - commentId: Overload:XRTK.SDK.UX.Pointers.BaseControllerPointer.SphereCastRadius - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.SphereCastRadius - nameWithType: BaseControllerPointer.SphereCastRadius -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.Start - name: Start() - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_Start - commentId: M:XRTK.SDK.UX.Pointers.BaseControllerPointer.Start - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.Start() - nameWithType: BaseControllerPointer.Start() -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.Start* - name: Start - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_Start_ - commentId: Overload:XRTK.SDK.UX.Pointers.BaseControllerPointer.Start - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.Start - nameWithType: BaseControllerPointer.Start -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.SyncedTarget - name: SyncedTarget - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_SyncedTarget - commentId: P:XRTK.SDK.UX.Pointers.BaseControllerPointer.SyncedTarget - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.SyncedTarget - nameWithType: BaseControllerPointer.SyncedTarget -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.SyncedTarget* - name: SyncedTarget - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_SyncedTarget_ - commentId: Overload:XRTK.SDK.UX.Pointers.BaseControllerPointer.SyncedTarget - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.SyncedTarget - nameWithType: BaseControllerPointer.SyncedTarget -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.System#Collections#IEqualityComparer#Equals(System.Object,System.Object) - name: IEqualityComparer.Equals(Object, Object) - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_System_Collections_IEqualityComparer_Equals_System_Object_System_Object_ - commentId: M:XRTK.SDK.UX.Pointers.BaseControllerPointer.System#Collections#IEqualityComparer#Equals(System.Object,System.Object) - name.vb: System.Collections.IEqualityComparer.Equals(Object, Object) - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.System.Collections.IEqualityComparer.Equals(System.Object, System.Object) - nameWithType: BaseControllerPointer.IEqualityComparer.Equals(Object, Object) - nameWithType.vb: BaseControllerPointer.System.Collections.IEqualityComparer.Equals(Object, Object) -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.System#Collections#IEqualityComparer#Equals* - name: IEqualityComparer.Equals - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_System_Collections_IEqualityComparer_Equals_ - commentId: Overload:XRTK.SDK.UX.Pointers.BaseControllerPointer.System#Collections#IEqualityComparer#Equals - isSpec: "True" - name.vb: System.Collections.IEqualityComparer.Equals - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.System.Collections.IEqualityComparer.Equals - nameWithType: BaseControllerPointer.IEqualityComparer.Equals - nameWithType.vb: BaseControllerPointer.System.Collections.IEqualityComparer.Equals -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.System#Collections#IEqualityComparer#GetHashCode(System.Object) - name: IEqualityComparer.GetHashCode(Object) - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_System_Collections_IEqualityComparer_GetHashCode_System_Object_ - commentId: M:XRTK.SDK.UX.Pointers.BaseControllerPointer.System#Collections#IEqualityComparer#GetHashCode(System.Object) - name.vb: System.Collections.IEqualityComparer.GetHashCode(Object) - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.System.Collections.IEqualityComparer.GetHashCode(System.Object) - nameWithType: BaseControllerPointer.IEqualityComparer.GetHashCode(Object) - nameWithType.vb: BaseControllerPointer.System.Collections.IEqualityComparer.GetHashCode(Object) -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.System#Collections#IEqualityComparer#GetHashCode* - name: IEqualityComparer.GetHashCode - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_System_Collections_IEqualityComparer_GetHashCode_ - commentId: Overload:XRTK.SDK.UX.Pointers.BaseControllerPointer.System#Collections#IEqualityComparer#GetHashCode - isSpec: "True" - name.vb: System.Collections.IEqualityComparer.GetHashCode - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.System.Collections.IEqualityComparer.GetHashCode - nameWithType: BaseControllerPointer.IEqualityComparer.GetHashCode - nameWithType.vb: BaseControllerPointer.System.Collections.IEqualityComparer.GetHashCode -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.TeleportHotSpot - name: TeleportHotSpot - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_TeleportHotSpot - commentId: P:XRTK.SDK.UX.Pointers.BaseControllerPointer.TeleportHotSpot - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.TeleportHotSpot - nameWithType: BaseControllerPointer.TeleportHotSpot -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.TeleportHotSpot* - name: TeleportHotSpot - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_TeleportHotSpot_ - commentId: Overload:XRTK.SDK.UX.Pointers.BaseControllerPointer.TeleportHotSpot - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.TeleportHotSpot - nameWithType: BaseControllerPointer.TeleportHotSpot -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.TeleportSystem - name: TeleportSystem - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_TeleportSystem - commentId: P:XRTK.SDK.UX.Pointers.BaseControllerPointer.TeleportSystem - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.TeleportSystem - nameWithType: BaseControllerPointer.TeleportSystem -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.TeleportSystem* - name: TeleportSystem - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_TeleportSystem_ - commentId: Overload:XRTK.SDK.UX.Pointers.BaseControllerPointer.TeleportSystem - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.TeleportSystem - nameWithType: BaseControllerPointer.TeleportSystem -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.TryGetPointerPosition(UnityEngine.Vector3@) - name: TryGetPointerPosition(out Vector3) - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_TryGetPointerPosition_UnityEngine_Vector3__ - commentId: M:XRTK.SDK.UX.Pointers.BaseControllerPointer.TryGetPointerPosition(UnityEngine.Vector3@) - name.vb: TryGetPointerPosition(ByRef Vector3) - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.TryGetPointerPosition(out UnityEngine.Vector3) - fullName.vb: XRTK.SDK.UX.Pointers.BaseControllerPointer.TryGetPointerPosition(ByRef UnityEngine.Vector3) - nameWithType: BaseControllerPointer.TryGetPointerPosition(out Vector3) - nameWithType.vb: BaseControllerPointer.TryGetPointerPosition(ByRef Vector3) -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.TryGetPointerPosition* - name: TryGetPointerPosition - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_TryGetPointerPosition_ - commentId: Overload:XRTK.SDK.UX.Pointers.BaseControllerPointer.TryGetPointerPosition - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.TryGetPointerPosition - nameWithType: BaseControllerPointer.TryGetPointerPosition -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.TryGetPointerRotation(UnityEngine.Quaternion@) - name: TryGetPointerRotation(out Quaternion) - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_TryGetPointerRotation_UnityEngine_Quaternion__ - commentId: M:XRTK.SDK.UX.Pointers.BaseControllerPointer.TryGetPointerRotation(UnityEngine.Quaternion@) - name.vb: TryGetPointerRotation(ByRef Quaternion) - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.TryGetPointerRotation(out UnityEngine.Quaternion) - fullName.vb: XRTK.SDK.UX.Pointers.BaseControllerPointer.TryGetPointerRotation(ByRef UnityEngine.Quaternion) - nameWithType: BaseControllerPointer.TryGetPointerRotation(out Quaternion) - nameWithType.vb: BaseControllerPointer.TryGetPointerRotation(ByRef Quaternion) -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.TryGetPointerRotation* - name: TryGetPointerRotation - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_TryGetPointerRotation_ - commentId: Overload:XRTK.SDK.UX.Pointers.BaseControllerPointer.TryGetPointerRotation - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.TryGetPointerRotation - nameWithType: BaseControllerPointer.TryGetPointerRotation -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.TryGetPointingRay(UnityEngine.Ray@) - name: TryGetPointingRay(out Ray) - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_TryGetPointingRay_UnityEngine_Ray__ - commentId: M:XRTK.SDK.UX.Pointers.BaseControllerPointer.TryGetPointingRay(UnityEngine.Ray@) - name.vb: TryGetPointingRay(ByRef Ray) - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.TryGetPointingRay(out UnityEngine.Ray) - fullName.vb: XRTK.SDK.UX.Pointers.BaseControllerPointer.TryGetPointingRay(ByRef UnityEngine.Ray) - nameWithType: BaseControllerPointer.TryGetPointingRay(out Ray) - nameWithType.vb: BaseControllerPointer.TryGetPointingRay(ByRef Ray) -- uid: XRTK.SDK.UX.Pointers.BaseControllerPointer.TryGetPointingRay* - name: TryGetPointingRay - href: api/XRTK.SDK.UX.Pointers.BaseControllerPointer.html#XRTK_SDK_UX_Pointers_BaseControllerPointer_TryGetPointingRay_ - commentId: Overload:XRTK.SDK.UX.Pointers.BaseControllerPointer.TryGetPointingRay - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.BaseControllerPointer.TryGetPointingRay - nameWithType: BaseControllerPointer.TryGetPointingRay -- uid: XRTK.SDK.UX.Pointers.HandNearPointer - name: HandNearPointer - href: api/XRTK.SDK.UX.Pointers.HandNearPointer.html - commentId: T:XRTK.SDK.UX.Pointers.HandNearPointer - fullName: XRTK.SDK.UX.Pointers.HandNearPointer - nameWithType: HandNearPointer -- uid: XRTK.SDK.UX.Pointers.HandNearPointer.InteractionMode - name: InteractionMode - href: api/XRTK.SDK.UX.Pointers.HandNearPointer.html#XRTK_SDK_UX_Pointers_HandNearPointer_InteractionMode - commentId: P:XRTK.SDK.UX.Pointers.HandNearPointer.InteractionMode - fullName: XRTK.SDK.UX.Pointers.HandNearPointer.InteractionMode - nameWithType: HandNearPointer.InteractionMode -- uid: XRTK.SDK.UX.Pointers.HandNearPointer.InteractionMode* - name: InteractionMode - href: api/XRTK.SDK.UX.Pointers.HandNearPointer.html#XRTK_SDK_UX_Pointers_HandNearPointer_InteractionMode_ - commentId: Overload:XRTK.SDK.UX.Pointers.HandNearPointer.InteractionMode - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.HandNearPointer.InteractionMode - nameWithType: HandNearPointer.InteractionMode -- uid: XRTK.SDK.UX.Pointers.HandNearPointer.IsInteractionEnabled - name: IsInteractionEnabled - href: api/XRTK.SDK.UX.Pointers.HandNearPointer.html#XRTK_SDK_UX_Pointers_HandNearPointer_IsInteractionEnabled - commentId: P:XRTK.SDK.UX.Pointers.HandNearPointer.IsInteractionEnabled - fullName: XRTK.SDK.UX.Pointers.HandNearPointer.IsInteractionEnabled - nameWithType: HandNearPointer.IsInteractionEnabled -- uid: XRTK.SDK.UX.Pointers.HandNearPointer.IsInteractionEnabled* - name: IsInteractionEnabled - href: api/XRTK.SDK.UX.Pointers.HandNearPointer.html#XRTK_SDK_UX_Pointers_HandNearPointer_IsInteractionEnabled_ - commentId: Overload:XRTK.SDK.UX.Pointers.HandNearPointer.IsInteractionEnabled - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.HandNearPointer.IsInteractionEnabled - nameWithType: HandNearPointer.IsInteractionEnabled -- uid: XRTK.SDK.UX.Pointers.HandNearPointer.OnPreRaycast - name: OnPreRaycast() - href: api/XRTK.SDK.UX.Pointers.HandNearPointer.html#XRTK_SDK_UX_Pointers_HandNearPointer_OnPreRaycast - commentId: M:XRTK.SDK.UX.Pointers.HandNearPointer.OnPreRaycast - fullName: XRTK.SDK.UX.Pointers.HandNearPointer.OnPreRaycast() - nameWithType: HandNearPointer.OnPreRaycast() -- uid: XRTK.SDK.UX.Pointers.HandNearPointer.OnPreRaycast* - name: OnPreRaycast - href: api/XRTK.SDK.UX.Pointers.HandNearPointer.html#XRTK_SDK_UX_Pointers_HandNearPointer_OnPreRaycast_ - commentId: Overload:XRTK.SDK.UX.Pointers.HandNearPointer.OnPreRaycast - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.HandNearPointer.OnPreRaycast - nameWithType: HandNearPointer.OnPreRaycast -- uid: XRTK.SDK.UX.Pointers.HandSpatialPointer - name: HandSpatialPointer - href: api/XRTK.SDK.UX.Pointers.HandSpatialPointer.html - commentId: T:XRTK.SDK.UX.Pointers.HandSpatialPointer - fullName: XRTK.SDK.UX.Pointers.HandSpatialPointer - nameWithType: HandSpatialPointer -- uid: XRTK.SDK.UX.Pointers.HandSpatialPointer.InteractionMode - name: InteractionMode - href: api/XRTK.SDK.UX.Pointers.HandSpatialPointer.html#XRTK_SDK_UX_Pointers_HandSpatialPointer_InteractionMode - commentId: P:XRTK.SDK.UX.Pointers.HandSpatialPointer.InteractionMode - fullName: XRTK.SDK.UX.Pointers.HandSpatialPointer.InteractionMode - nameWithType: HandSpatialPointer.InteractionMode -- uid: XRTK.SDK.UX.Pointers.HandSpatialPointer.InteractionMode* - name: InteractionMode - href: api/XRTK.SDK.UX.Pointers.HandSpatialPointer.html#XRTK_SDK_UX_Pointers_HandSpatialPointer_InteractionMode_ - commentId: Overload:XRTK.SDK.UX.Pointers.HandSpatialPointer.InteractionMode - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.HandSpatialPointer.InteractionMode - nameWithType: HandSpatialPointer.InteractionMode -- uid: XRTK.SDK.UX.Pointers.HandSpatialPointer.IsInteractionEnabled - name: IsInteractionEnabled - href: api/XRTK.SDK.UX.Pointers.HandSpatialPointer.html#XRTK_SDK_UX_Pointers_HandSpatialPointer_IsInteractionEnabled - commentId: P:XRTK.SDK.UX.Pointers.HandSpatialPointer.IsInteractionEnabled - fullName: XRTK.SDK.UX.Pointers.HandSpatialPointer.IsInteractionEnabled - nameWithType: HandSpatialPointer.IsInteractionEnabled -- uid: XRTK.SDK.UX.Pointers.HandSpatialPointer.IsInteractionEnabled* - name: IsInteractionEnabled - href: api/XRTK.SDK.UX.Pointers.HandSpatialPointer.html#XRTK_SDK_UX_Pointers_HandSpatialPointer_IsInteractionEnabled_ - commentId: Overload:XRTK.SDK.UX.Pointers.HandSpatialPointer.IsInteractionEnabled - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.HandSpatialPointer.IsInteractionEnabled - nameWithType: HandSpatialPointer.IsInteractionEnabled -- uid: XRTK.SDK.UX.Pointers.HandSpatialPointer.OnInputChanged(XRTK.EventDatum.Input.InputEventData{XRTK.Definitions.Utilities.MixedRealityPose}) - name: OnInputChanged(InputEventData) - href: api/XRTK.SDK.UX.Pointers.HandSpatialPointer.html#XRTK_SDK_UX_Pointers_HandSpatialPointer_OnInputChanged_XRTK_EventDatum_Input_InputEventData_XRTK_Definitions_Utilities_MixedRealityPose__ - commentId: M:XRTK.SDK.UX.Pointers.HandSpatialPointer.OnInputChanged(XRTK.EventDatum.Input.InputEventData{XRTK.Definitions.Utilities.MixedRealityPose}) - name.vb: OnInputChanged(InputEventData(Of MixedRealityPose)) - fullName: XRTK.SDK.UX.Pointers.HandSpatialPointer.OnInputChanged(XRTK.EventDatum.Input.InputEventData) - fullName.vb: XRTK.SDK.UX.Pointers.HandSpatialPointer.OnInputChanged(XRTK.EventDatum.Input.InputEventData(Of XRTK.Definitions.Utilities.MixedRealityPose)) - nameWithType: HandSpatialPointer.OnInputChanged(InputEventData) - nameWithType.vb: HandSpatialPointer.OnInputChanged(InputEventData(Of MixedRealityPose)) -- uid: XRTK.SDK.UX.Pointers.HandSpatialPointer.OnInputChanged* - name: OnInputChanged - href: api/XRTK.SDK.UX.Pointers.HandSpatialPointer.html#XRTK_SDK_UX_Pointers_HandSpatialPointer_OnInputChanged_ - commentId: Overload:XRTK.SDK.UX.Pointers.HandSpatialPointer.OnInputChanged - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.HandSpatialPointer.OnInputChanged - nameWithType: HandSpatialPointer.OnInputChanged -- uid: XRTK.SDK.UX.Pointers.LinePointer - name: LinePointer - href: api/XRTK.SDK.UX.Pointers.LinePointer.html - commentId: T:XRTK.SDK.UX.Pointers.LinePointer - fullName: XRTK.SDK.UX.Pointers.LinePointer - nameWithType: LinePointer -- uid: XRTK.SDK.UX.Pointers.LinePointer.LineBase - name: LineBase - href: api/XRTK.SDK.UX.Pointers.LinePointer.html#XRTK_SDK_UX_Pointers_LinePointer_LineBase - commentId: P:XRTK.SDK.UX.Pointers.LinePointer.LineBase - fullName: XRTK.SDK.UX.Pointers.LinePointer.LineBase - nameWithType: LinePointer.LineBase -- uid: XRTK.SDK.UX.Pointers.LinePointer.LineBase* - name: LineBase - href: api/XRTK.SDK.UX.Pointers.LinePointer.html#XRTK_SDK_UX_Pointers_LinePointer_LineBase_ - commentId: Overload:XRTK.SDK.UX.Pointers.LinePointer.LineBase - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.LinePointer.LineBase - nameWithType: LinePointer.LineBase -- uid: XRTK.SDK.UX.Pointers.LinePointer.LineCastResolution - name: LineCastResolution - href: api/XRTK.SDK.UX.Pointers.LinePointer.html#XRTK_SDK_UX_Pointers_LinePointer_LineCastResolution - commentId: P:XRTK.SDK.UX.Pointers.LinePointer.LineCastResolution - fullName: XRTK.SDK.UX.Pointers.LinePointer.LineCastResolution - nameWithType: LinePointer.LineCastResolution -- uid: XRTK.SDK.UX.Pointers.LinePointer.LineCastResolution* - name: LineCastResolution - href: api/XRTK.SDK.UX.Pointers.LinePointer.html#XRTK_SDK_UX_Pointers_LinePointer_LineCastResolution_ - commentId: Overload:XRTK.SDK.UX.Pointers.LinePointer.LineCastResolution - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.LinePointer.LineCastResolution - nameWithType: LinePointer.LineCastResolution -- uid: XRTK.SDK.UX.Pointers.LinePointer.LineColorInvalid - name: LineColorInvalid - href: api/XRTK.SDK.UX.Pointers.LinePointer.html#XRTK_SDK_UX_Pointers_LinePointer_LineColorInvalid - commentId: P:XRTK.SDK.UX.Pointers.LinePointer.LineColorInvalid - fullName: XRTK.SDK.UX.Pointers.LinePointer.LineColorInvalid - nameWithType: LinePointer.LineColorInvalid -- uid: XRTK.SDK.UX.Pointers.LinePointer.LineColorInvalid* - name: LineColorInvalid - href: api/XRTK.SDK.UX.Pointers.LinePointer.html#XRTK_SDK_UX_Pointers_LinePointer_LineColorInvalid_ - commentId: Overload:XRTK.SDK.UX.Pointers.LinePointer.LineColorInvalid - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.LinePointer.LineColorInvalid - nameWithType: LinePointer.LineColorInvalid -- uid: XRTK.SDK.UX.Pointers.LinePointer.LineColorLockFocus - name: LineColorLockFocus - href: api/XRTK.SDK.UX.Pointers.LinePointer.html#XRTK_SDK_UX_Pointers_LinePointer_LineColorLockFocus - commentId: P:XRTK.SDK.UX.Pointers.LinePointer.LineColorLockFocus - fullName: XRTK.SDK.UX.Pointers.LinePointer.LineColorLockFocus - nameWithType: LinePointer.LineColorLockFocus -- uid: XRTK.SDK.UX.Pointers.LinePointer.LineColorLockFocus* - name: LineColorLockFocus - href: api/XRTK.SDK.UX.Pointers.LinePointer.html#XRTK_SDK_UX_Pointers_LinePointer_LineColorLockFocus_ - commentId: Overload:XRTK.SDK.UX.Pointers.LinePointer.LineColorLockFocus - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.LinePointer.LineColorLockFocus - nameWithType: LinePointer.LineColorLockFocus -- uid: XRTK.SDK.UX.Pointers.LinePointer.LineColorNoTarget - name: LineColorNoTarget - href: api/XRTK.SDK.UX.Pointers.LinePointer.html#XRTK_SDK_UX_Pointers_LinePointer_LineColorNoTarget - commentId: P:XRTK.SDK.UX.Pointers.LinePointer.LineColorNoTarget - fullName: XRTK.SDK.UX.Pointers.LinePointer.LineColorNoTarget - nameWithType: LinePointer.LineColorNoTarget -- uid: XRTK.SDK.UX.Pointers.LinePointer.LineColorNoTarget* - name: LineColorNoTarget - href: api/XRTK.SDK.UX.Pointers.LinePointer.html#XRTK_SDK_UX_Pointers_LinePointer_LineColorNoTarget_ - commentId: Overload:XRTK.SDK.UX.Pointers.LinePointer.LineColorNoTarget - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.LinePointer.LineColorNoTarget - nameWithType: LinePointer.LineColorNoTarget -- uid: XRTK.SDK.UX.Pointers.LinePointer.LineColorSelected - name: LineColorSelected - href: api/XRTK.SDK.UX.Pointers.LinePointer.html#XRTK_SDK_UX_Pointers_LinePointer_LineColorSelected - commentId: P:XRTK.SDK.UX.Pointers.LinePointer.LineColorSelected - fullName: XRTK.SDK.UX.Pointers.LinePointer.LineColorSelected - nameWithType: LinePointer.LineColorSelected -- uid: XRTK.SDK.UX.Pointers.LinePointer.LineColorSelected* - name: LineColorSelected - href: api/XRTK.SDK.UX.Pointers.LinePointer.html#XRTK_SDK_UX_Pointers_LinePointer_LineColorSelected_ - commentId: Overload:XRTK.SDK.UX.Pointers.LinePointer.LineColorSelected - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.LinePointer.LineColorSelected - nameWithType: LinePointer.LineColorSelected -- uid: XRTK.SDK.UX.Pointers.LinePointer.LineColorValid - name: LineColorValid - href: api/XRTK.SDK.UX.Pointers.LinePointer.html#XRTK_SDK_UX_Pointers_LinePointer_LineColorValid - commentId: P:XRTK.SDK.UX.Pointers.LinePointer.LineColorValid - fullName: XRTK.SDK.UX.Pointers.LinePointer.LineColorValid - nameWithType: LinePointer.LineColorValid -- uid: XRTK.SDK.UX.Pointers.LinePointer.LineColorValid* - name: LineColorValid - href: api/XRTK.SDK.UX.Pointers.LinePointer.html#XRTK_SDK_UX_Pointers_LinePointer_LineColorValid_ - commentId: Overload:XRTK.SDK.UX.Pointers.LinePointer.LineColorValid - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.LinePointer.LineColorValid - nameWithType: LinePointer.LineColorValid -- uid: XRTK.SDK.UX.Pointers.LinePointer.LineRenderers - name: LineRenderers - href: api/XRTK.SDK.UX.Pointers.LinePointer.html#XRTK_SDK_UX_Pointers_LinePointer_LineRenderers - commentId: P:XRTK.SDK.UX.Pointers.LinePointer.LineRenderers - fullName: XRTK.SDK.UX.Pointers.LinePointer.LineRenderers - nameWithType: LinePointer.LineRenderers -- uid: XRTK.SDK.UX.Pointers.LinePointer.LineRenderers* - name: LineRenderers - href: api/XRTK.SDK.UX.Pointers.LinePointer.html#XRTK_SDK_UX_Pointers_LinePointer_LineRenderers_ - commentId: Overload:XRTK.SDK.UX.Pointers.LinePointer.LineRenderers - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.LinePointer.LineRenderers - nameWithType: LinePointer.LineRenderers -- uid: XRTK.SDK.UX.Pointers.LinePointer.OnEnable - name: OnEnable() - href: api/XRTK.SDK.UX.Pointers.LinePointer.html#XRTK_SDK_UX_Pointers_LinePointer_OnEnable - commentId: M:XRTK.SDK.UX.Pointers.LinePointer.OnEnable - fullName: XRTK.SDK.UX.Pointers.LinePointer.OnEnable() - nameWithType: LinePointer.OnEnable() -- uid: XRTK.SDK.UX.Pointers.LinePointer.OnEnable* - name: OnEnable - href: api/XRTK.SDK.UX.Pointers.LinePointer.html#XRTK_SDK_UX_Pointers_LinePointer_OnEnable_ - commentId: Overload:XRTK.SDK.UX.Pointers.LinePointer.OnEnable - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.LinePointer.OnEnable - nameWithType: LinePointer.OnEnable -- uid: XRTK.SDK.UX.Pointers.LinePointer.OnPostRaycast - name: OnPostRaycast() - href: api/XRTK.SDK.UX.Pointers.LinePointer.html#XRTK_SDK_UX_Pointers_LinePointer_OnPostRaycast - commentId: M:XRTK.SDK.UX.Pointers.LinePointer.OnPostRaycast - fullName: XRTK.SDK.UX.Pointers.LinePointer.OnPostRaycast() - nameWithType: LinePointer.OnPostRaycast() -- uid: XRTK.SDK.UX.Pointers.LinePointer.OnPostRaycast* - name: OnPostRaycast - href: api/XRTK.SDK.UX.Pointers.LinePointer.html#XRTK_SDK_UX_Pointers_LinePointer_OnPostRaycast_ - commentId: Overload:XRTK.SDK.UX.Pointers.LinePointer.OnPostRaycast - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.LinePointer.OnPostRaycast - nameWithType: LinePointer.OnPostRaycast -- uid: XRTK.SDK.UX.Pointers.LinePointer.OnPreRaycast - name: OnPreRaycast() - href: api/XRTK.SDK.UX.Pointers.LinePointer.html#XRTK_SDK_UX_Pointers_LinePointer_OnPreRaycast - commentId: M:XRTK.SDK.UX.Pointers.LinePointer.OnPreRaycast - fullName: XRTK.SDK.UX.Pointers.LinePointer.OnPreRaycast() - nameWithType: LinePointer.OnPreRaycast() -- uid: XRTK.SDK.UX.Pointers.LinePointer.OnPreRaycast* - name: OnPreRaycast - href: api/XRTK.SDK.UX.Pointers.LinePointer.html#XRTK_SDK_UX_Pointers_LinePointer_OnPreRaycast_ - commentId: Overload:XRTK.SDK.UX.Pointers.LinePointer.OnPreRaycast - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.LinePointer.OnPreRaycast - nameWithType: LinePointer.OnPreRaycast -- uid: XRTK.SDK.UX.Pointers.LinePointer.OnValidate - name: OnValidate() - href: api/XRTK.SDK.UX.Pointers.LinePointer.html#XRTK_SDK_UX_Pointers_LinePointer_OnValidate - commentId: M:XRTK.SDK.UX.Pointers.LinePointer.OnValidate - fullName: XRTK.SDK.UX.Pointers.LinePointer.OnValidate() - nameWithType: LinePointer.OnValidate() -- uid: XRTK.SDK.UX.Pointers.LinePointer.OnValidate* - name: OnValidate - href: api/XRTK.SDK.UX.Pointers.LinePointer.html#XRTK_SDK_UX_Pointers_LinePointer_OnValidate_ - commentId: Overload:XRTK.SDK.UX.Pointers.LinePointer.OnValidate - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.LinePointer.OnValidate - nameWithType: LinePointer.OnValidate -- uid: XRTK.SDK.UX.Pointers.MousePointer - name: MousePointer - href: api/XRTK.SDK.UX.Pointers.MousePointer.html - commentId: T:XRTK.SDK.UX.Pointers.MousePointer - fullName: XRTK.SDK.UX.Pointers.MousePointer - nameWithType: MousePointer -- uid: XRTK.SDK.UX.Pointers.MousePointer.Controller - name: Controller - href: api/XRTK.SDK.UX.Pointers.MousePointer.html#XRTK_SDK_UX_Pointers_MousePointer_Controller - commentId: P:XRTK.SDK.UX.Pointers.MousePointer.Controller - fullName: XRTK.SDK.UX.Pointers.MousePointer.Controller - nameWithType: MousePointer.Controller -- uid: XRTK.SDK.UX.Pointers.MousePointer.Controller* - name: Controller - href: api/XRTK.SDK.UX.Pointers.MousePointer.html#XRTK_SDK_UX_Pointers_MousePointer_Controller_ - commentId: Overload:XRTK.SDK.UX.Pointers.MousePointer.Controller - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.MousePointer.Controller - nameWithType: MousePointer.Controller -- uid: XRTK.SDK.UX.Pointers.MousePointer.IsInteractionEnabled - name: IsInteractionEnabled - href: api/XRTK.SDK.UX.Pointers.MousePointer.html#XRTK_SDK_UX_Pointers_MousePointer_IsInteractionEnabled - commentId: P:XRTK.SDK.UX.Pointers.MousePointer.IsInteractionEnabled - fullName: XRTK.SDK.UX.Pointers.MousePointer.IsInteractionEnabled - nameWithType: MousePointer.IsInteractionEnabled -- uid: XRTK.SDK.UX.Pointers.MousePointer.IsInteractionEnabled* - name: IsInteractionEnabled - href: api/XRTK.SDK.UX.Pointers.MousePointer.html#XRTK_SDK_UX_Pointers_MousePointer_IsInteractionEnabled_ - commentId: Overload:XRTK.SDK.UX.Pointers.MousePointer.IsInteractionEnabled - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.MousePointer.IsInteractionEnabled - nameWithType: MousePointer.IsInteractionEnabled -- uid: XRTK.SDK.UX.Pointers.MousePointer.OnInputChanged(XRTK.EventDatum.Input.InputEventData{UnityEngine.Vector2}) - name: OnInputChanged(InputEventData) - href: api/XRTK.SDK.UX.Pointers.MousePointer.html#XRTK_SDK_UX_Pointers_MousePointer_OnInputChanged_XRTK_EventDatum_Input_InputEventData_UnityEngine_Vector2__ - commentId: M:XRTK.SDK.UX.Pointers.MousePointer.OnInputChanged(XRTK.EventDatum.Input.InputEventData{UnityEngine.Vector2}) - name.vb: OnInputChanged(InputEventData(Of Vector2)) - fullName: XRTK.SDK.UX.Pointers.MousePointer.OnInputChanged(XRTK.EventDatum.Input.InputEventData) - fullName.vb: XRTK.SDK.UX.Pointers.MousePointer.OnInputChanged(XRTK.EventDatum.Input.InputEventData(Of UnityEngine.Vector2)) - nameWithType: MousePointer.OnInputChanged(InputEventData) - nameWithType.vb: MousePointer.OnInputChanged(InputEventData(Of Vector2)) -- uid: XRTK.SDK.UX.Pointers.MousePointer.OnInputChanged* - name: OnInputChanged - href: api/XRTK.SDK.UX.Pointers.MousePointer.html#XRTK_SDK_UX_Pointers_MousePointer_OnInputChanged_ - commentId: Overload:XRTK.SDK.UX.Pointers.MousePointer.OnInputChanged - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.MousePointer.OnInputChanged - nameWithType: MousePointer.OnInputChanged -- uid: XRTK.SDK.UX.Pointers.MousePointer.OnInputDown(XRTK.EventDatum.Input.InputEventData) - name: OnInputDown(InputEventData) - href: api/XRTK.SDK.UX.Pointers.MousePointer.html#XRTK_SDK_UX_Pointers_MousePointer_OnInputDown_XRTK_EventDatum_Input_InputEventData_ - commentId: M:XRTK.SDK.UX.Pointers.MousePointer.OnInputDown(XRTK.EventDatum.Input.InputEventData) - fullName: XRTK.SDK.UX.Pointers.MousePointer.OnInputDown(XRTK.EventDatum.Input.InputEventData) - nameWithType: MousePointer.OnInputDown(InputEventData) -- uid: XRTK.SDK.UX.Pointers.MousePointer.OnInputDown* - name: OnInputDown - href: api/XRTK.SDK.UX.Pointers.MousePointer.html#XRTK_SDK_UX_Pointers_MousePointer_OnInputDown_ - commentId: Overload:XRTK.SDK.UX.Pointers.MousePointer.OnInputDown - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.MousePointer.OnInputDown - nameWithType: MousePointer.OnInputDown -- uid: XRTK.SDK.UX.Pointers.MousePointer.OnInputUp(XRTK.EventDatum.Input.InputEventData) - name: OnInputUp(InputEventData) - href: api/XRTK.SDK.UX.Pointers.MousePointer.html#XRTK_SDK_UX_Pointers_MousePointer_OnInputUp_XRTK_EventDatum_Input_InputEventData_ - commentId: M:XRTK.SDK.UX.Pointers.MousePointer.OnInputUp(XRTK.EventDatum.Input.InputEventData) - fullName: XRTK.SDK.UX.Pointers.MousePointer.OnInputUp(XRTK.EventDatum.Input.InputEventData) - nameWithType: MousePointer.OnInputUp(InputEventData) -- uid: XRTK.SDK.UX.Pointers.MousePointer.OnInputUp* - name: OnInputUp - href: api/XRTK.SDK.UX.Pointers.MousePointer.html#XRTK_SDK_UX_Pointers_MousePointer_OnInputUp_ - commentId: Overload:XRTK.SDK.UX.Pointers.MousePointer.OnInputUp - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.MousePointer.OnInputUp - nameWithType: MousePointer.OnInputUp -- uid: XRTK.SDK.UX.Pointers.MousePointer.OnPostRaycast - name: OnPostRaycast() - href: api/XRTK.SDK.UX.Pointers.MousePointer.html#XRTK_SDK_UX_Pointers_MousePointer_OnPostRaycast - commentId: M:XRTK.SDK.UX.Pointers.MousePointer.OnPostRaycast - fullName: XRTK.SDK.UX.Pointers.MousePointer.OnPostRaycast() - nameWithType: MousePointer.OnPostRaycast() -- uid: XRTK.SDK.UX.Pointers.MousePointer.OnPostRaycast* - name: OnPostRaycast - href: api/XRTK.SDK.UX.Pointers.MousePointer.html#XRTK_SDK_UX_Pointers_MousePointer_OnPostRaycast_ - commentId: Overload:XRTK.SDK.UX.Pointers.MousePointer.OnPostRaycast - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.MousePointer.OnPostRaycast - nameWithType: MousePointer.OnPostRaycast -- uid: XRTK.SDK.UX.Pointers.MousePointer.OnPreRaycast - name: OnPreRaycast() - href: api/XRTK.SDK.UX.Pointers.MousePointer.html#XRTK_SDK_UX_Pointers_MousePointer_OnPreRaycast - commentId: M:XRTK.SDK.UX.Pointers.MousePointer.OnPreRaycast - fullName: XRTK.SDK.UX.Pointers.MousePointer.OnPreRaycast() - nameWithType: MousePointer.OnPreRaycast() -- uid: XRTK.SDK.UX.Pointers.MousePointer.OnPreRaycast* - name: OnPreRaycast - href: api/XRTK.SDK.UX.Pointers.MousePointer.html#XRTK_SDK_UX_Pointers_MousePointer_OnPreRaycast_ - commentId: Overload:XRTK.SDK.UX.Pointers.MousePointer.OnPreRaycast - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.MousePointer.OnPreRaycast - nameWithType: MousePointer.OnPreRaycast -- uid: XRTK.SDK.UX.Pointers.MousePointer.OnSourceDetected(XRTK.EventDatum.Input.SourceStateEventData) - name: OnSourceDetected(SourceStateEventData) - href: api/XRTK.SDK.UX.Pointers.MousePointer.html#XRTK_SDK_UX_Pointers_MousePointer_OnSourceDetected_XRTK_EventDatum_Input_SourceStateEventData_ - commentId: M:XRTK.SDK.UX.Pointers.MousePointer.OnSourceDetected(XRTK.EventDatum.Input.SourceStateEventData) - fullName: XRTK.SDK.UX.Pointers.MousePointer.OnSourceDetected(XRTK.EventDatum.Input.SourceStateEventData) - nameWithType: MousePointer.OnSourceDetected(SourceStateEventData) -- uid: XRTK.SDK.UX.Pointers.MousePointer.OnSourceDetected* - name: OnSourceDetected - href: api/XRTK.SDK.UX.Pointers.MousePointer.html#XRTK_SDK_UX_Pointers_MousePointer_OnSourceDetected_ - commentId: Overload:XRTK.SDK.UX.Pointers.MousePointer.OnSourceDetected - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.MousePointer.OnSourceDetected - nameWithType: MousePointer.OnSourceDetected -- uid: XRTK.SDK.UX.Pointers.MousePointer.OnSourceLost(XRTK.EventDatum.Input.SourceStateEventData) - name: OnSourceLost(SourceStateEventData) - href: api/XRTK.SDK.UX.Pointers.MousePointer.html#XRTK_SDK_UX_Pointers_MousePointer_OnSourceLost_XRTK_EventDatum_Input_SourceStateEventData_ - commentId: M:XRTK.SDK.UX.Pointers.MousePointer.OnSourceLost(XRTK.EventDatum.Input.SourceStateEventData) - fullName: XRTK.SDK.UX.Pointers.MousePointer.OnSourceLost(XRTK.EventDatum.Input.SourceStateEventData) - nameWithType: MousePointer.OnSourceLost(SourceStateEventData) -- uid: XRTK.SDK.UX.Pointers.MousePointer.OnSourceLost* - name: OnSourceLost - href: api/XRTK.SDK.UX.Pointers.MousePointer.html#XRTK_SDK_UX_Pointers_MousePointer_OnSourceLost_ - commentId: Overload:XRTK.SDK.UX.Pointers.MousePointer.OnSourceLost - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.MousePointer.OnSourceLost - nameWithType: MousePointer.OnSourceLost -- uid: XRTK.SDK.UX.Pointers.MousePointer.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData{UnityEngine.Vector2}) - name: OnSourcePoseChanged(SourcePoseEventData) - href: api/XRTK.SDK.UX.Pointers.MousePointer.html#XRTK_SDK_UX_Pointers_MousePointer_OnSourcePoseChanged_XRTK_EventDatum_Input_SourcePoseEventData_UnityEngine_Vector2__ - commentId: M:XRTK.SDK.UX.Pointers.MousePointer.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData{UnityEngine.Vector2}) - name.vb: OnSourcePoseChanged(SourcePoseEventData(Of Vector2)) - fullName: XRTK.SDK.UX.Pointers.MousePointer.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData) - fullName.vb: XRTK.SDK.UX.Pointers.MousePointer.OnSourcePoseChanged(XRTK.EventDatum.Input.SourcePoseEventData(Of UnityEngine.Vector2)) - nameWithType: MousePointer.OnSourcePoseChanged(SourcePoseEventData) - nameWithType.vb: MousePointer.OnSourcePoseChanged(SourcePoseEventData(Of Vector2)) -- uid: XRTK.SDK.UX.Pointers.MousePointer.OnSourcePoseChanged* - name: OnSourcePoseChanged - href: api/XRTK.SDK.UX.Pointers.MousePointer.html#XRTK_SDK_UX_Pointers_MousePointer_OnSourcePoseChanged_ - commentId: Overload:XRTK.SDK.UX.Pointers.MousePointer.OnSourcePoseChanged - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.MousePointer.OnSourcePoseChanged - nameWithType: MousePointer.OnSourcePoseChanged -- uid: XRTK.SDK.UX.Pointers.MousePointer.Start - name: Start() - href: api/XRTK.SDK.UX.Pointers.MousePointer.html#XRTK_SDK_UX_Pointers_MousePointer_Start - commentId: M:XRTK.SDK.UX.Pointers.MousePointer.Start - fullName: XRTK.SDK.UX.Pointers.MousePointer.Start() - nameWithType: MousePointer.Start() -- uid: XRTK.SDK.UX.Pointers.MousePointer.Start* - name: Start - href: api/XRTK.SDK.UX.Pointers.MousePointer.html#XRTK_SDK_UX_Pointers_MousePointer_Start_ - commentId: Overload:XRTK.SDK.UX.Pointers.MousePointer.Start - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.MousePointer.Start - nameWithType: MousePointer.Start -- uid: XRTK.SDK.UX.Pointers.MousePointer.TryGetPointerPosition(UnityEngine.Vector3@) - name: TryGetPointerPosition(out Vector3) - href: api/XRTK.SDK.UX.Pointers.MousePointer.html#XRTK_SDK_UX_Pointers_MousePointer_TryGetPointerPosition_UnityEngine_Vector3__ - commentId: M:XRTK.SDK.UX.Pointers.MousePointer.TryGetPointerPosition(UnityEngine.Vector3@) - name.vb: TryGetPointerPosition(ByRef Vector3) - fullName: XRTK.SDK.UX.Pointers.MousePointer.TryGetPointerPosition(out UnityEngine.Vector3) - fullName.vb: XRTK.SDK.UX.Pointers.MousePointer.TryGetPointerPosition(ByRef UnityEngine.Vector3) - nameWithType: MousePointer.TryGetPointerPosition(out Vector3) - nameWithType.vb: MousePointer.TryGetPointerPosition(ByRef Vector3) -- uid: XRTK.SDK.UX.Pointers.MousePointer.TryGetPointerPosition* - name: TryGetPointerPosition - href: api/XRTK.SDK.UX.Pointers.MousePointer.html#XRTK_SDK_UX_Pointers_MousePointer_TryGetPointerPosition_ - commentId: Overload:XRTK.SDK.UX.Pointers.MousePointer.TryGetPointerPosition - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.MousePointer.TryGetPointerPosition - nameWithType: MousePointer.TryGetPointerPosition -- uid: XRTK.SDK.UX.Pointers.MousePointer.TryGetPointerRotation(UnityEngine.Quaternion@) - name: TryGetPointerRotation(out Quaternion) - href: api/XRTK.SDK.UX.Pointers.MousePointer.html#XRTK_SDK_UX_Pointers_MousePointer_TryGetPointerRotation_UnityEngine_Quaternion__ - commentId: M:XRTK.SDK.UX.Pointers.MousePointer.TryGetPointerRotation(UnityEngine.Quaternion@) - name.vb: TryGetPointerRotation(ByRef Quaternion) - fullName: XRTK.SDK.UX.Pointers.MousePointer.TryGetPointerRotation(out UnityEngine.Quaternion) - fullName.vb: XRTK.SDK.UX.Pointers.MousePointer.TryGetPointerRotation(ByRef UnityEngine.Quaternion) - nameWithType: MousePointer.TryGetPointerRotation(out Quaternion) - nameWithType.vb: MousePointer.TryGetPointerRotation(ByRef Quaternion) -- uid: XRTK.SDK.UX.Pointers.MousePointer.TryGetPointerRotation* - name: TryGetPointerRotation - href: api/XRTK.SDK.UX.Pointers.MousePointer.html#XRTK_SDK_UX_Pointers_MousePointer_TryGetPointerRotation_ - commentId: Overload:XRTK.SDK.UX.Pointers.MousePointer.TryGetPointerRotation - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.MousePointer.TryGetPointerRotation - nameWithType: MousePointer.TryGetPointerRotation -- uid: XRTK.SDK.UX.Pointers.MousePointer.TryGetPointingRay(UnityEngine.Ray@) - name: TryGetPointingRay(out Ray) - href: api/XRTK.SDK.UX.Pointers.MousePointer.html#XRTK_SDK_UX_Pointers_MousePointer_TryGetPointingRay_UnityEngine_Ray__ - commentId: M:XRTK.SDK.UX.Pointers.MousePointer.TryGetPointingRay(UnityEngine.Ray@) - name.vb: TryGetPointingRay(ByRef Ray) - fullName: XRTK.SDK.UX.Pointers.MousePointer.TryGetPointingRay(out UnityEngine.Ray) - fullName.vb: XRTK.SDK.UX.Pointers.MousePointer.TryGetPointingRay(ByRef UnityEngine.Ray) - nameWithType: MousePointer.TryGetPointingRay(out Ray) - nameWithType.vb: MousePointer.TryGetPointingRay(ByRef Ray) -- uid: XRTK.SDK.UX.Pointers.MousePointer.TryGetPointingRay* - name: TryGetPointingRay - href: api/XRTK.SDK.UX.Pointers.MousePointer.html#XRTK_SDK_UX_Pointers_MousePointer_TryGetPointingRay_ - commentId: Overload:XRTK.SDK.UX.Pointers.MousePointer.TryGetPointingRay - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.MousePointer.TryGetPointingRay - nameWithType: MousePointer.TryGetPointingRay -- uid: XRTK.SDK.UX.Pointers.MousePointer.XRTK#Interfaces#InputSystem#IMixedRealityMousePointer#HideCursorWhenInactive - name: IMixedRealityMousePointer.HideCursorWhenInactive - href: api/XRTK.SDK.UX.Pointers.MousePointer.html#XRTK_SDK_UX_Pointers_MousePointer_XRTK_Interfaces_InputSystem_IMixedRealityMousePointer_HideCursorWhenInactive - commentId: P:XRTK.SDK.UX.Pointers.MousePointer.XRTK#Interfaces#InputSystem#IMixedRealityMousePointer#HideCursorWhenInactive - name.vb: XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.HideCursorWhenInactive - fullName: XRTK.SDK.UX.Pointers.MousePointer.XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.HideCursorWhenInactive - nameWithType: MousePointer.IMixedRealityMousePointer.HideCursorWhenInactive - nameWithType.vb: MousePointer.XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.HideCursorWhenInactive -- uid: XRTK.SDK.UX.Pointers.MousePointer.XRTK#Interfaces#InputSystem#IMixedRealityMousePointer#HideCursorWhenInactive* - name: IMixedRealityMousePointer.HideCursorWhenInactive - href: api/XRTK.SDK.UX.Pointers.MousePointer.html#XRTK_SDK_UX_Pointers_MousePointer_XRTK_Interfaces_InputSystem_IMixedRealityMousePointer_HideCursorWhenInactive_ - commentId: Overload:XRTK.SDK.UX.Pointers.MousePointer.XRTK#Interfaces#InputSystem#IMixedRealityMousePointer#HideCursorWhenInactive - isSpec: "True" - name.vb: XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.HideCursorWhenInactive - fullName: XRTK.SDK.UX.Pointers.MousePointer.XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.HideCursorWhenInactive - nameWithType: MousePointer.IMixedRealityMousePointer.HideCursorWhenInactive - nameWithType.vb: MousePointer.XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.HideCursorWhenInactive -- uid: XRTK.SDK.UX.Pointers.MousePointer.XRTK#Interfaces#InputSystem#IMixedRealityMousePointer#HideTimeout - name: IMixedRealityMousePointer.HideTimeout - href: api/XRTK.SDK.UX.Pointers.MousePointer.html#XRTK_SDK_UX_Pointers_MousePointer_XRTK_Interfaces_InputSystem_IMixedRealityMousePointer_HideTimeout - commentId: P:XRTK.SDK.UX.Pointers.MousePointer.XRTK#Interfaces#InputSystem#IMixedRealityMousePointer#HideTimeout - name.vb: XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.HideTimeout - fullName: XRTK.SDK.UX.Pointers.MousePointer.XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.HideTimeout - nameWithType: MousePointer.IMixedRealityMousePointer.HideTimeout - nameWithType.vb: MousePointer.XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.HideTimeout -- uid: XRTK.SDK.UX.Pointers.MousePointer.XRTK#Interfaces#InputSystem#IMixedRealityMousePointer#HideTimeout* - name: IMixedRealityMousePointer.HideTimeout - href: api/XRTK.SDK.UX.Pointers.MousePointer.html#XRTK_SDK_UX_Pointers_MousePointer_XRTK_Interfaces_InputSystem_IMixedRealityMousePointer_HideTimeout_ - commentId: Overload:XRTK.SDK.UX.Pointers.MousePointer.XRTK#Interfaces#InputSystem#IMixedRealityMousePointer#HideTimeout - isSpec: "True" - name.vb: XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.HideTimeout - fullName: XRTK.SDK.UX.Pointers.MousePointer.XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.HideTimeout - nameWithType: MousePointer.IMixedRealityMousePointer.HideTimeout - nameWithType.vb: MousePointer.XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.HideTimeout -- uid: XRTK.SDK.UX.Pointers.MousePointer.XRTK#Interfaces#InputSystem#IMixedRealityMousePointer#MovementThresholdToUnHide - name: IMixedRealityMousePointer.MovementThresholdToUnHide - href: api/XRTK.SDK.UX.Pointers.MousePointer.html#XRTK_SDK_UX_Pointers_MousePointer_XRTK_Interfaces_InputSystem_IMixedRealityMousePointer_MovementThresholdToUnHide - commentId: P:XRTK.SDK.UX.Pointers.MousePointer.XRTK#Interfaces#InputSystem#IMixedRealityMousePointer#MovementThresholdToUnHide - name.vb: XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.MovementThresholdToUnHide - fullName: XRTK.SDK.UX.Pointers.MousePointer.XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.MovementThresholdToUnHide - nameWithType: MousePointer.IMixedRealityMousePointer.MovementThresholdToUnHide - nameWithType.vb: MousePointer.XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.MovementThresholdToUnHide -- uid: XRTK.SDK.UX.Pointers.MousePointer.XRTK#Interfaces#InputSystem#IMixedRealityMousePointer#MovementThresholdToUnHide* - name: IMixedRealityMousePointer.MovementThresholdToUnHide - href: api/XRTK.SDK.UX.Pointers.MousePointer.html#XRTK_SDK_UX_Pointers_MousePointer_XRTK_Interfaces_InputSystem_IMixedRealityMousePointer_MovementThresholdToUnHide_ - commentId: Overload:XRTK.SDK.UX.Pointers.MousePointer.XRTK#Interfaces#InputSystem#IMixedRealityMousePointer#MovementThresholdToUnHide - isSpec: "True" - name.vb: XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.MovementThresholdToUnHide - fullName: XRTK.SDK.UX.Pointers.MousePointer.XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.MovementThresholdToUnHide - nameWithType: MousePointer.IMixedRealityMousePointer.MovementThresholdToUnHide - nameWithType.vb: MousePointer.XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.MovementThresholdToUnHide -- uid: XRTK.SDK.UX.Pointers.MousePointer.XRTK#Interfaces#InputSystem#IMixedRealityMousePointer#Speed - name: IMixedRealityMousePointer.Speed - href: api/XRTK.SDK.UX.Pointers.MousePointer.html#XRTK_SDK_UX_Pointers_MousePointer_XRTK_Interfaces_InputSystem_IMixedRealityMousePointer_Speed - commentId: P:XRTK.SDK.UX.Pointers.MousePointer.XRTK#Interfaces#InputSystem#IMixedRealityMousePointer#Speed - name.vb: XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.Speed - fullName: XRTK.SDK.UX.Pointers.MousePointer.XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.Speed - nameWithType: MousePointer.IMixedRealityMousePointer.Speed - nameWithType.vb: MousePointer.XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.Speed -- uid: XRTK.SDK.UX.Pointers.MousePointer.XRTK#Interfaces#InputSystem#IMixedRealityMousePointer#Speed* - name: IMixedRealityMousePointer.Speed - href: api/XRTK.SDK.UX.Pointers.MousePointer.html#XRTK_SDK_UX_Pointers_MousePointer_XRTK_Interfaces_InputSystem_IMixedRealityMousePointer_Speed_ - commentId: Overload:XRTK.SDK.UX.Pointers.MousePointer.XRTK#Interfaces#InputSystem#IMixedRealityMousePointer#Speed - isSpec: "True" - name.vb: XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.Speed - fullName: XRTK.SDK.UX.Pointers.MousePointer.XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.Speed - nameWithType: MousePointer.IMixedRealityMousePointer.Speed - nameWithType.vb: MousePointer.XRTK.Interfaces.InputSystem.IMixedRealityMousePointer.Speed -- uid: XRTK.SDK.UX.Pointers.ParabolicTeleportPointer - name: ParabolicTeleportPointer - href: api/XRTK.SDK.UX.Pointers.ParabolicTeleportPointer.html - commentId: T:XRTK.SDK.UX.Pointers.ParabolicTeleportPointer - fullName: XRTK.SDK.UX.Pointers.ParabolicTeleportPointer - nameWithType: ParabolicTeleportPointer -- uid: XRTK.SDK.UX.Pointers.ParabolicTeleportPointer.OnEnable - name: OnEnable() - href: api/XRTK.SDK.UX.Pointers.ParabolicTeleportPointer.html#XRTK_SDK_UX_Pointers_ParabolicTeleportPointer_OnEnable - commentId: M:XRTK.SDK.UX.Pointers.ParabolicTeleportPointer.OnEnable - fullName: XRTK.SDK.UX.Pointers.ParabolicTeleportPointer.OnEnable() - nameWithType: ParabolicTeleportPointer.OnEnable() -- uid: XRTK.SDK.UX.Pointers.ParabolicTeleportPointer.OnEnable* - name: OnEnable - href: api/XRTK.SDK.UX.Pointers.ParabolicTeleportPointer.html#XRTK_SDK_UX_Pointers_ParabolicTeleportPointer_OnEnable_ - commentId: Overload:XRTK.SDK.UX.Pointers.ParabolicTeleportPointer.OnEnable - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.ParabolicTeleportPointer.OnEnable - nameWithType: ParabolicTeleportPointer.OnEnable -- uid: XRTK.SDK.UX.Pointers.ParabolicTeleportPointer.OnPreRaycast - name: OnPreRaycast() - href: api/XRTK.SDK.UX.Pointers.ParabolicTeleportPointer.html#XRTK_SDK_UX_Pointers_ParabolicTeleportPointer_OnPreRaycast - commentId: M:XRTK.SDK.UX.Pointers.ParabolicTeleportPointer.OnPreRaycast - fullName: XRTK.SDK.UX.Pointers.ParabolicTeleportPointer.OnPreRaycast() - nameWithType: ParabolicTeleportPointer.OnPreRaycast() -- uid: XRTK.SDK.UX.Pointers.ParabolicTeleportPointer.OnPreRaycast* - name: OnPreRaycast - href: api/XRTK.SDK.UX.Pointers.ParabolicTeleportPointer.html#XRTK_SDK_UX_Pointers_ParabolicTeleportPointer_OnPreRaycast_ - commentId: Overload:XRTK.SDK.UX.Pointers.ParabolicTeleportPointer.OnPreRaycast - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.ParabolicTeleportPointer.OnPreRaycast - nameWithType: ParabolicTeleportPointer.OnPreRaycast -- uid: XRTK.SDK.UX.Pointers.ParabolicTeleportPointer.OnValidate - name: OnValidate() - href: api/XRTK.SDK.UX.Pointers.ParabolicTeleportPointer.html#XRTK_SDK_UX_Pointers_ParabolicTeleportPointer_OnValidate - commentId: M:XRTK.SDK.UX.Pointers.ParabolicTeleportPointer.OnValidate - fullName: XRTK.SDK.UX.Pointers.ParabolicTeleportPointer.OnValidate() - nameWithType: ParabolicTeleportPointer.OnValidate() -- uid: XRTK.SDK.UX.Pointers.ParabolicTeleportPointer.OnValidate* - name: OnValidate - href: api/XRTK.SDK.UX.Pointers.ParabolicTeleportPointer.html#XRTK_SDK_UX_Pointers_ParabolicTeleportPointer_OnValidate_ - commentId: Overload:XRTK.SDK.UX.Pointers.ParabolicTeleportPointer.OnValidate - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.ParabolicTeleportPointer.OnValidate - nameWithType: ParabolicTeleportPointer.OnValidate -- uid: XRTK.SDK.UX.Pointers.TeleportPointer - name: TeleportPointer - href: api/XRTK.SDK.UX.Pointers.TeleportPointer.html - commentId: T:XRTK.SDK.UX.Pointers.TeleportPointer - fullName: XRTK.SDK.UX.Pointers.TeleportPointer - nameWithType: TeleportPointer -- uid: XRTK.SDK.UX.Pointers.TeleportPointer.GetLineGradient(XRTK.Services.Teleportation.TeleportValidationResult) - name: GetLineGradient(TeleportValidationResult) - href: api/XRTK.SDK.UX.Pointers.TeleportPointer.html#XRTK_SDK_UX_Pointers_TeleportPointer_GetLineGradient_XRTK_Services_Teleportation_TeleportValidationResult_ - commentId: M:XRTK.SDK.UX.Pointers.TeleportPointer.GetLineGradient(XRTK.Services.Teleportation.TeleportValidationResult) - fullName: XRTK.SDK.UX.Pointers.TeleportPointer.GetLineGradient(XRTK.Services.Teleportation.TeleportValidationResult) - nameWithType: TeleportPointer.GetLineGradient(TeleportValidationResult) -- uid: XRTK.SDK.UX.Pointers.TeleportPointer.GetLineGradient* - name: GetLineGradient - href: api/XRTK.SDK.UX.Pointers.TeleportPointer.html#XRTK_SDK_UX_Pointers_TeleportPointer_GetLineGradient_ - commentId: Overload:XRTK.SDK.UX.Pointers.TeleportPointer.GetLineGradient - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.TeleportPointer.GetLineGradient - nameWithType: TeleportPointer.GetLineGradient -- uid: XRTK.SDK.UX.Pointers.TeleportPointer.IsInteractionEnabled - name: IsInteractionEnabled - href: api/XRTK.SDK.UX.Pointers.TeleportPointer.html#XRTK_SDK_UX_Pointers_TeleportPointer_IsInteractionEnabled - commentId: P:XRTK.SDK.UX.Pointers.TeleportPointer.IsInteractionEnabled - fullName: XRTK.SDK.UX.Pointers.TeleportPointer.IsInteractionEnabled - nameWithType: TeleportPointer.IsInteractionEnabled -- uid: XRTK.SDK.UX.Pointers.TeleportPointer.IsInteractionEnabled* - name: IsInteractionEnabled - href: api/XRTK.SDK.UX.Pointers.TeleportPointer.html#XRTK_SDK_UX_Pointers_TeleportPointer_IsInteractionEnabled_ - commentId: Overload:XRTK.SDK.UX.Pointers.TeleportPointer.IsInteractionEnabled - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.TeleportPointer.IsInteractionEnabled - nameWithType: TeleportPointer.IsInteractionEnabled -- uid: XRTK.SDK.UX.Pointers.TeleportPointer.LineColorHotSpot - name: LineColorHotSpot - href: api/XRTK.SDK.UX.Pointers.TeleportPointer.html#XRTK_SDK_UX_Pointers_TeleportPointer_LineColorHotSpot - commentId: P:XRTK.SDK.UX.Pointers.TeleportPointer.LineColorHotSpot - fullName: XRTK.SDK.UX.Pointers.TeleportPointer.LineColorHotSpot - nameWithType: TeleportPointer.LineColorHotSpot -- uid: XRTK.SDK.UX.Pointers.TeleportPointer.LineColorHotSpot* - name: LineColorHotSpot - href: api/XRTK.SDK.UX.Pointers.TeleportPointer.html#XRTK_SDK_UX_Pointers_TeleportPointer_LineColorHotSpot_ - commentId: Overload:XRTK.SDK.UX.Pointers.TeleportPointer.LineColorHotSpot - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.TeleportPointer.LineColorHotSpot - nameWithType: TeleportPointer.LineColorHotSpot -- uid: XRTK.SDK.UX.Pointers.TeleportPointer.OnInputChanged(XRTK.EventDatum.Input.InputEventData{System.Single}) - name: OnInputChanged(InputEventData) - href: api/XRTK.SDK.UX.Pointers.TeleportPointer.html#XRTK_SDK_UX_Pointers_TeleportPointer_OnInputChanged_XRTK_EventDatum_Input_InputEventData_System_Single__ - commentId: M:XRTK.SDK.UX.Pointers.TeleportPointer.OnInputChanged(XRTK.EventDatum.Input.InputEventData{System.Single}) - name.vb: OnInputChanged(InputEventData(Of Single)) - fullName: XRTK.SDK.UX.Pointers.TeleportPointer.OnInputChanged(XRTK.EventDatum.Input.InputEventData) - fullName.vb: XRTK.SDK.UX.Pointers.TeleportPointer.OnInputChanged(XRTK.EventDatum.Input.InputEventData(Of System.Single)) - nameWithType: TeleportPointer.OnInputChanged(InputEventData) - nameWithType.vb: TeleportPointer.OnInputChanged(InputEventData(Of Single)) -- uid: XRTK.SDK.UX.Pointers.TeleportPointer.OnInputChanged(XRTK.EventDatum.Input.InputEventData{UnityEngine.Vector2}) - name: OnInputChanged(InputEventData) - href: api/XRTK.SDK.UX.Pointers.TeleportPointer.html#XRTK_SDK_UX_Pointers_TeleportPointer_OnInputChanged_XRTK_EventDatum_Input_InputEventData_UnityEngine_Vector2__ - commentId: M:XRTK.SDK.UX.Pointers.TeleportPointer.OnInputChanged(XRTK.EventDatum.Input.InputEventData{UnityEngine.Vector2}) - name.vb: OnInputChanged(InputEventData(Of Vector2)) - fullName: XRTK.SDK.UX.Pointers.TeleportPointer.OnInputChanged(XRTK.EventDatum.Input.InputEventData) - fullName.vb: XRTK.SDK.UX.Pointers.TeleportPointer.OnInputChanged(XRTK.EventDatum.Input.InputEventData(Of UnityEngine.Vector2)) - nameWithType: TeleportPointer.OnInputChanged(InputEventData) - nameWithType.vb: TeleportPointer.OnInputChanged(InputEventData(Of Vector2)) -- uid: XRTK.SDK.UX.Pointers.TeleportPointer.OnInputChanged* - name: OnInputChanged - href: api/XRTK.SDK.UX.Pointers.TeleportPointer.html#XRTK_SDK_UX_Pointers_TeleportPointer_OnInputChanged_ - commentId: Overload:XRTK.SDK.UX.Pointers.TeleportPointer.OnInputChanged - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.TeleportPointer.OnInputChanged - nameWithType: TeleportPointer.OnInputChanged -- uid: XRTK.SDK.UX.Pointers.TeleportPointer.OnInputDown(XRTK.EventDatum.Input.InputEventData) - name: OnInputDown(InputEventData) - href: api/XRTK.SDK.UX.Pointers.TeleportPointer.html#XRTK_SDK_UX_Pointers_TeleportPointer_OnInputDown_XRTK_EventDatum_Input_InputEventData_ - commentId: M:XRTK.SDK.UX.Pointers.TeleportPointer.OnInputDown(XRTK.EventDatum.Input.InputEventData) - fullName: XRTK.SDK.UX.Pointers.TeleportPointer.OnInputDown(XRTK.EventDatum.Input.InputEventData) - nameWithType: TeleportPointer.OnInputDown(InputEventData) -- uid: XRTK.SDK.UX.Pointers.TeleportPointer.OnInputDown* - name: OnInputDown - href: api/XRTK.SDK.UX.Pointers.TeleportPointer.html#XRTK_SDK_UX_Pointers_TeleportPointer_OnInputDown_ - commentId: Overload:XRTK.SDK.UX.Pointers.TeleportPointer.OnInputDown - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.TeleportPointer.OnInputDown - nameWithType: TeleportPointer.OnInputDown -- uid: XRTK.SDK.UX.Pointers.TeleportPointer.OnInputUp(XRTK.EventDatum.Input.InputEventData) - name: OnInputUp(InputEventData) - href: api/XRTK.SDK.UX.Pointers.TeleportPointer.html#XRTK_SDK_UX_Pointers_TeleportPointer_OnInputUp_XRTK_EventDatum_Input_InputEventData_ - commentId: M:XRTK.SDK.UX.Pointers.TeleportPointer.OnInputUp(XRTK.EventDatum.Input.InputEventData) - fullName: XRTK.SDK.UX.Pointers.TeleportPointer.OnInputUp(XRTK.EventDatum.Input.InputEventData) - nameWithType: TeleportPointer.OnInputUp(InputEventData) -- uid: XRTK.SDK.UX.Pointers.TeleportPointer.OnInputUp* - name: OnInputUp - href: api/XRTK.SDK.UX.Pointers.TeleportPointer.html#XRTK_SDK_UX_Pointers_TeleportPointer_OnInputUp_ - commentId: Overload:XRTK.SDK.UX.Pointers.TeleportPointer.OnInputUp - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.TeleportPointer.OnInputUp - nameWithType: TeleportPointer.OnInputUp -- uid: XRTK.SDK.UX.Pointers.TeleportPointer.OnPostRaycast - name: OnPostRaycast() - href: api/XRTK.SDK.UX.Pointers.TeleportPointer.html#XRTK_SDK_UX_Pointers_TeleportPointer_OnPostRaycast - commentId: M:XRTK.SDK.UX.Pointers.TeleportPointer.OnPostRaycast - fullName: XRTK.SDK.UX.Pointers.TeleportPointer.OnPostRaycast() - nameWithType: TeleportPointer.OnPostRaycast() -- uid: XRTK.SDK.UX.Pointers.TeleportPointer.OnPostRaycast* - name: OnPostRaycast - href: api/XRTK.SDK.UX.Pointers.TeleportPointer.html#XRTK_SDK_UX_Pointers_TeleportPointer_OnPostRaycast_ - commentId: Overload:XRTK.SDK.UX.Pointers.TeleportPointer.OnPostRaycast - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.TeleportPointer.OnPostRaycast - nameWithType: TeleportPointer.OnPostRaycast -- uid: XRTK.SDK.UX.Pointers.TeleportPointer.OnPreRaycast - name: OnPreRaycast() - href: api/XRTK.SDK.UX.Pointers.TeleportPointer.html#XRTK_SDK_UX_Pointers_TeleportPointer_OnPreRaycast - commentId: M:XRTK.SDK.UX.Pointers.TeleportPointer.OnPreRaycast - fullName: XRTK.SDK.UX.Pointers.TeleportPointer.OnPreRaycast() - nameWithType: TeleportPointer.OnPreRaycast() -- uid: XRTK.SDK.UX.Pointers.TeleportPointer.OnPreRaycast* - name: OnPreRaycast - href: api/XRTK.SDK.UX.Pointers.TeleportPointer.html#XRTK_SDK_UX_Pointers_TeleportPointer_OnPreRaycast_ - commentId: Overload:XRTK.SDK.UX.Pointers.TeleportPointer.OnPreRaycast - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.TeleportPointer.OnPreRaycast - nameWithType: TeleportPointer.OnPreRaycast -- uid: XRTK.SDK.UX.Pointers.TeleportPointer.OnTeleportCanceled(XRTK.EventDatum.Teleport.TeleportEventData) - name: OnTeleportCanceled(TeleportEventData) - href: api/XRTK.SDK.UX.Pointers.TeleportPointer.html#XRTK_SDK_UX_Pointers_TeleportPointer_OnTeleportCanceled_XRTK_EventDatum_Teleport_TeleportEventData_ - commentId: M:XRTK.SDK.UX.Pointers.TeleportPointer.OnTeleportCanceled(XRTK.EventDatum.Teleport.TeleportEventData) - fullName: XRTK.SDK.UX.Pointers.TeleportPointer.OnTeleportCanceled(XRTK.EventDatum.Teleport.TeleportEventData) - nameWithType: TeleportPointer.OnTeleportCanceled(TeleportEventData) -- uid: XRTK.SDK.UX.Pointers.TeleportPointer.OnTeleportCanceled* - name: OnTeleportCanceled - href: api/XRTK.SDK.UX.Pointers.TeleportPointer.html#XRTK_SDK_UX_Pointers_TeleportPointer_OnTeleportCanceled_ - commentId: Overload:XRTK.SDK.UX.Pointers.TeleportPointer.OnTeleportCanceled - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.TeleportPointer.OnTeleportCanceled - nameWithType: TeleportPointer.OnTeleportCanceled -- uid: XRTK.SDK.UX.Pointers.TeleportPointer.OnTeleportCompleted(XRTK.EventDatum.Teleport.TeleportEventData) - name: OnTeleportCompleted(TeleportEventData) - href: api/XRTK.SDK.UX.Pointers.TeleportPointer.html#XRTK_SDK_UX_Pointers_TeleportPointer_OnTeleportCompleted_XRTK_EventDatum_Teleport_TeleportEventData_ - commentId: M:XRTK.SDK.UX.Pointers.TeleportPointer.OnTeleportCompleted(XRTK.EventDatum.Teleport.TeleportEventData) - fullName: XRTK.SDK.UX.Pointers.TeleportPointer.OnTeleportCompleted(XRTK.EventDatum.Teleport.TeleportEventData) - nameWithType: TeleportPointer.OnTeleportCompleted(TeleportEventData) -- uid: XRTK.SDK.UX.Pointers.TeleportPointer.OnTeleportCompleted* - name: OnTeleportCompleted - href: api/XRTK.SDK.UX.Pointers.TeleportPointer.html#XRTK_SDK_UX_Pointers_TeleportPointer_OnTeleportCompleted_ - commentId: Overload:XRTK.SDK.UX.Pointers.TeleportPointer.OnTeleportCompleted - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.TeleportPointer.OnTeleportCompleted - nameWithType: TeleportPointer.OnTeleportCompleted -- uid: XRTK.SDK.UX.Pointers.TeleportPointer.OnTeleportRequest(XRTK.EventDatum.Teleport.TeleportEventData) - name: OnTeleportRequest(TeleportEventData) - href: api/XRTK.SDK.UX.Pointers.TeleportPointer.html#XRTK_SDK_UX_Pointers_TeleportPointer_OnTeleportRequest_XRTK_EventDatum_Teleport_TeleportEventData_ - commentId: M:XRTK.SDK.UX.Pointers.TeleportPointer.OnTeleportRequest(XRTK.EventDatum.Teleport.TeleportEventData) - fullName: XRTK.SDK.UX.Pointers.TeleportPointer.OnTeleportRequest(XRTK.EventDatum.Teleport.TeleportEventData) - nameWithType: TeleportPointer.OnTeleportRequest(TeleportEventData) -- uid: XRTK.SDK.UX.Pointers.TeleportPointer.OnTeleportRequest* - name: OnTeleportRequest - href: api/XRTK.SDK.UX.Pointers.TeleportPointer.html#XRTK_SDK_UX_Pointers_TeleportPointer_OnTeleportRequest_ - commentId: Overload:XRTK.SDK.UX.Pointers.TeleportPointer.OnTeleportRequest - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.TeleportPointer.OnTeleportRequest - nameWithType: TeleportPointer.OnTeleportRequest -- uid: XRTK.SDK.UX.Pointers.TeleportPointer.PointerOrientation - name: PointerOrientation - href: api/XRTK.SDK.UX.Pointers.TeleportPointer.html#XRTK_SDK_UX_Pointers_TeleportPointer_PointerOrientation - commentId: P:XRTK.SDK.UX.Pointers.TeleportPointer.PointerOrientation - fullName: XRTK.SDK.UX.Pointers.TeleportPointer.PointerOrientation - nameWithType: TeleportPointer.PointerOrientation -- uid: XRTK.SDK.UX.Pointers.TeleportPointer.PointerOrientation* - name: PointerOrientation - href: api/XRTK.SDK.UX.Pointers.TeleportPointer.html#XRTK_SDK_UX_Pointers_TeleportPointer_PointerOrientation_ - commentId: Overload:XRTK.SDK.UX.Pointers.TeleportPointer.PointerOrientation - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.TeleportPointer.PointerOrientation - nameWithType: TeleportPointer.PointerOrientation -- uid: XRTK.SDK.UX.Pointers.TeleportPointer.TeleportValidationResult - name: TeleportValidationResult - href: api/XRTK.SDK.UX.Pointers.TeleportPointer.html#XRTK_SDK_UX_Pointers_TeleportPointer_TeleportValidationResult - commentId: P:XRTK.SDK.UX.Pointers.TeleportPointer.TeleportValidationResult - fullName: XRTK.SDK.UX.Pointers.TeleportPointer.TeleportValidationResult - nameWithType: TeleportPointer.TeleportValidationResult -- uid: XRTK.SDK.UX.Pointers.TeleportPointer.TeleportValidationResult* - name: TeleportValidationResult - href: api/XRTK.SDK.UX.Pointers.TeleportPointer.html#XRTK_SDK_UX_Pointers_TeleportPointer_TeleportValidationResult_ - commentId: Overload:XRTK.SDK.UX.Pointers.TeleportPointer.TeleportValidationResult - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.TeleportPointer.TeleportValidationResult - nameWithType: TeleportPointer.TeleportValidationResult -- uid: XRTK.SDK.UX.Pointers.TouchPointer - name: TouchPointer - href: api/XRTK.SDK.UX.Pointers.TouchPointer.html - commentId: T:XRTK.SDK.UX.Pointers.TouchPointer - fullName: XRTK.SDK.UX.Pointers.TouchPointer - nameWithType: TouchPointer -- uid: XRTK.SDK.UX.Pointers.TouchPointer.FingerId - name: FingerId - href: api/XRTK.SDK.UX.Pointers.TouchPointer.html#XRTK_SDK_UX_Pointers_TouchPointer_FingerId - commentId: P:XRTK.SDK.UX.Pointers.TouchPointer.FingerId - fullName: XRTK.SDK.UX.Pointers.TouchPointer.FingerId - nameWithType: TouchPointer.FingerId -- uid: XRTK.SDK.UX.Pointers.TouchPointer.FingerId* - name: FingerId - href: api/XRTK.SDK.UX.Pointers.TouchPointer.html#XRTK_SDK_UX_Pointers_TouchPointer_FingerId_ - commentId: Overload:XRTK.SDK.UX.Pointers.TouchPointer.FingerId - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.TouchPointer.FingerId - nameWithType: TouchPointer.FingerId -- uid: XRTK.SDK.UX.Pointers.TouchPointer.IsInteractionEnabled - name: IsInteractionEnabled - href: api/XRTK.SDK.UX.Pointers.TouchPointer.html#XRTK_SDK_UX_Pointers_TouchPointer_IsInteractionEnabled - commentId: P:XRTK.SDK.UX.Pointers.TouchPointer.IsInteractionEnabled - fullName: XRTK.SDK.UX.Pointers.TouchPointer.IsInteractionEnabled - nameWithType: TouchPointer.IsInteractionEnabled -- uid: XRTK.SDK.UX.Pointers.TouchPointer.IsInteractionEnabled* - name: IsInteractionEnabled - href: api/XRTK.SDK.UX.Pointers.TouchPointer.html#XRTK_SDK_UX_Pointers_TouchPointer_IsInteractionEnabled_ - commentId: Overload:XRTK.SDK.UX.Pointers.TouchPointer.IsInteractionEnabled - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.TouchPointer.IsInteractionEnabled - nameWithType: TouchPointer.IsInteractionEnabled -- uid: XRTK.SDK.UX.Pointers.TouchPointer.OnPreRaycast - name: OnPreRaycast() - href: api/XRTK.SDK.UX.Pointers.TouchPointer.html#XRTK_SDK_UX_Pointers_TouchPointer_OnPreRaycast - commentId: M:XRTK.SDK.UX.Pointers.TouchPointer.OnPreRaycast - fullName: XRTK.SDK.UX.Pointers.TouchPointer.OnPreRaycast() - nameWithType: TouchPointer.OnPreRaycast() -- uid: XRTK.SDK.UX.Pointers.TouchPointer.OnPreRaycast* - name: OnPreRaycast - href: api/XRTK.SDK.UX.Pointers.TouchPointer.html#XRTK_SDK_UX_Pointers_TouchPointer_OnPreRaycast_ - commentId: Overload:XRTK.SDK.UX.Pointers.TouchPointer.OnPreRaycast - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.TouchPointer.OnPreRaycast - nameWithType: TouchPointer.OnPreRaycast -- uid: XRTK.SDK.UX.Pointers.TouchPointer.OnSourceDetected(XRTK.EventDatum.Input.SourceStateEventData) - name: OnSourceDetected(SourceStateEventData) - href: api/XRTK.SDK.UX.Pointers.TouchPointer.html#XRTK_SDK_UX_Pointers_TouchPointer_OnSourceDetected_XRTK_EventDatum_Input_SourceStateEventData_ - commentId: M:XRTK.SDK.UX.Pointers.TouchPointer.OnSourceDetected(XRTK.EventDatum.Input.SourceStateEventData) - fullName: XRTK.SDK.UX.Pointers.TouchPointer.OnSourceDetected(XRTK.EventDatum.Input.SourceStateEventData) - nameWithType: TouchPointer.OnSourceDetected(SourceStateEventData) -- uid: XRTK.SDK.UX.Pointers.TouchPointer.OnSourceDetected* - name: OnSourceDetected - href: api/XRTK.SDK.UX.Pointers.TouchPointer.html#XRTK_SDK_UX_Pointers_TouchPointer_OnSourceDetected_ - commentId: Overload:XRTK.SDK.UX.Pointers.TouchPointer.OnSourceDetected - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.TouchPointer.OnSourceDetected - nameWithType: TouchPointer.OnSourceDetected -- uid: XRTK.SDK.UX.Pointers.TouchPointer.OnSourceLost(XRTK.EventDatum.Input.SourceStateEventData) - name: OnSourceLost(SourceStateEventData) - href: api/XRTK.SDK.UX.Pointers.TouchPointer.html#XRTK_SDK_UX_Pointers_TouchPointer_OnSourceLost_XRTK_EventDatum_Input_SourceStateEventData_ - commentId: M:XRTK.SDK.UX.Pointers.TouchPointer.OnSourceLost(XRTK.EventDatum.Input.SourceStateEventData) - fullName: XRTK.SDK.UX.Pointers.TouchPointer.OnSourceLost(XRTK.EventDatum.Input.SourceStateEventData) - nameWithType: TouchPointer.OnSourceLost(SourceStateEventData) -- uid: XRTK.SDK.UX.Pointers.TouchPointer.OnSourceLost* - name: OnSourceLost - href: api/XRTK.SDK.UX.Pointers.TouchPointer.html#XRTK_SDK_UX_Pointers_TouchPointer_OnSourceLost_ - commentId: Overload:XRTK.SDK.UX.Pointers.TouchPointer.OnSourceLost - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.TouchPointer.OnSourceLost - nameWithType: TouchPointer.OnSourceLost -- uid: XRTK.SDK.UX.Pointers.TouchPointer.TouchRay - name: TouchRay - href: api/XRTK.SDK.UX.Pointers.TouchPointer.html#XRTK_SDK_UX_Pointers_TouchPointer_TouchRay - commentId: P:XRTK.SDK.UX.Pointers.TouchPointer.TouchRay - fullName: XRTK.SDK.UX.Pointers.TouchPointer.TouchRay - nameWithType: TouchPointer.TouchRay -- uid: XRTK.SDK.UX.Pointers.TouchPointer.TouchRay* - name: TouchRay - href: api/XRTK.SDK.UX.Pointers.TouchPointer.html#XRTK_SDK_UX_Pointers_TouchPointer_TouchRay_ - commentId: Overload:XRTK.SDK.UX.Pointers.TouchPointer.TouchRay - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.TouchPointer.TouchRay - nameWithType: TouchPointer.TouchRay -- uid: XRTK.SDK.UX.Pointers.TouchPointer.TryGetPointerPosition(UnityEngine.Vector3@) - name: TryGetPointerPosition(out Vector3) - href: api/XRTK.SDK.UX.Pointers.TouchPointer.html#XRTK_SDK_UX_Pointers_TouchPointer_TryGetPointerPosition_UnityEngine_Vector3__ - commentId: M:XRTK.SDK.UX.Pointers.TouchPointer.TryGetPointerPosition(UnityEngine.Vector3@) - name.vb: TryGetPointerPosition(ByRef Vector3) - fullName: XRTK.SDK.UX.Pointers.TouchPointer.TryGetPointerPosition(out UnityEngine.Vector3) - fullName.vb: XRTK.SDK.UX.Pointers.TouchPointer.TryGetPointerPosition(ByRef UnityEngine.Vector3) - nameWithType: TouchPointer.TryGetPointerPosition(out Vector3) - nameWithType.vb: TouchPointer.TryGetPointerPosition(ByRef Vector3) -- uid: XRTK.SDK.UX.Pointers.TouchPointer.TryGetPointerPosition* - name: TryGetPointerPosition - href: api/XRTK.SDK.UX.Pointers.TouchPointer.html#XRTK_SDK_UX_Pointers_TouchPointer_TryGetPointerPosition_ - commentId: Overload:XRTK.SDK.UX.Pointers.TouchPointer.TryGetPointerPosition - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.TouchPointer.TryGetPointerPosition - nameWithType: TouchPointer.TryGetPointerPosition -- uid: XRTK.SDK.UX.Pointers.TouchPointer.TryGetPointerRotation(UnityEngine.Quaternion@) - name: TryGetPointerRotation(out Quaternion) - href: api/XRTK.SDK.UX.Pointers.TouchPointer.html#XRTK_SDK_UX_Pointers_TouchPointer_TryGetPointerRotation_UnityEngine_Quaternion__ - commentId: M:XRTK.SDK.UX.Pointers.TouchPointer.TryGetPointerRotation(UnityEngine.Quaternion@) - name.vb: TryGetPointerRotation(ByRef Quaternion) - fullName: XRTK.SDK.UX.Pointers.TouchPointer.TryGetPointerRotation(out UnityEngine.Quaternion) - fullName.vb: XRTK.SDK.UX.Pointers.TouchPointer.TryGetPointerRotation(ByRef UnityEngine.Quaternion) - nameWithType: TouchPointer.TryGetPointerRotation(out Quaternion) - nameWithType.vb: TouchPointer.TryGetPointerRotation(ByRef Quaternion) -- uid: XRTK.SDK.UX.Pointers.TouchPointer.TryGetPointerRotation* - name: TryGetPointerRotation - href: api/XRTK.SDK.UX.Pointers.TouchPointer.html#XRTK_SDK_UX_Pointers_TouchPointer_TryGetPointerRotation_ - commentId: Overload:XRTK.SDK.UX.Pointers.TouchPointer.TryGetPointerRotation - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.TouchPointer.TryGetPointerRotation - nameWithType: TouchPointer.TryGetPointerRotation -- uid: XRTK.SDK.UX.Pointers.TouchPointer.TryGetPointingRay(UnityEngine.Ray@) - name: TryGetPointingRay(out Ray) - href: api/XRTK.SDK.UX.Pointers.TouchPointer.html#XRTK_SDK_UX_Pointers_TouchPointer_TryGetPointingRay_UnityEngine_Ray__ - commentId: M:XRTK.SDK.UX.Pointers.TouchPointer.TryGetPointingRay(UnityEngine.Ray@) - name.vb: TryGetPointingRay(ByRef Ray) - fullName: XRTK.SDK.UX.Pointers.TouchPointer.TryGetPointingRay(out UnityEngine.Ray) - fullName.vb: XRTK.SDK.UX.Pointers.TouchPointer.TryGetPointingRay(ByRef UnityEngine.Ray) - nameWithType: TouchPointer.TryGetPointingRay(out Ray) - nameWithType.vb: TouchPointer.TryGetPointingRay(ByRef Ray) -- uid: XRTK.SDK.UX.Pointers.TouchPointer.TryGetPointingRay* - name: TryGetPointingRay - href: api/XRTK.SDK.UX.Pointers.TouchPointer.html#XRTK_SDK_UX_Pointers_TouchPointer_TryGetPointingRay_ - commentId: Overload:XRTK.SDK.UX.Pointers.TouchPointer.TryGetPointingRay - isSpec: "True" - fullName: XRTK.SDK.UX.Pointers.TouchPointer.TryGetPointingRay - nameWithType: TouchPointer.TryGetPointingRay -- uid: XRTK.SDK.UX.Receivers - name: XRTK.SDK.UX.Receivers - href: api/XRTK.SDK.UX.Receivers.html - commentId: N:XRTK.SDK.UX.Receivers - fullName: XRTK.SDK.UX.Receivers - nameWithType: XRTK.SDK.UX.Receivers -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver - name: InteractionReceiver - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html - commentId: T:XRTK.SDK.UX.Receivers.InteractionReceiver - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver - nameWithType: InteractionReceiver -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.ClearInteractables - name: ClearInteractables() - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_ClearInteractables - commentId: M:XRTK.SDK.UX.Receivers.InteractionReceiver.ClearInteractables - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.ClearInteractables() - nameWithType: InteractionReceiver.ClearInteractables() -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.ClearInteractables* - name: ClearInteractables - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_ClearInteractables_ - commentId: Overload:XRTK.SDK.UX.Receivers.InteractionReceiver.ClearInteractables - isSpec: "True" - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.ClearInteractables - nameWithType: InteractionReceiver.ClearInteractables -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.FocusEnter(UnityEngine.GameObject,XRTK.EventDatum.Input.FocusEventData) - name: FocusEnter(GameObject, FocusEventData) - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_FocusEnter_UnityEngine_GameObject_XRTK_EventDatum_Input_FocusEventData_ - commentId: M:XRTK.SDK.UX.Receivers.InteractionReceiver.FocusEnter(UnityEngine.GameObject,XRTK.EventDatum.Input.FocusEventData) - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.FocusEnter(UnityEngine.GameObject, XRTK.EventDatum.Input.FocusEventData) - nameWithType: InteractionReceiver.FocusEnter(GameObject, FocusEventData) -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.FocusEnter* - name: FocusEnter - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_FocusEnter_ - commentId: Overload:XRTK.SDK.UX.Receivers.InteractionReceiver.FocusEnter - isSpec: "True" - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.FocusEnter - nameWithType: InteractionReceiver.FocusEnter -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.FocusExit(UnityEngine.GameObject,XRTK.EventDatum.Input.FocusEventData) - name: FocusExit(GameObject, FocusEventData) - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_FocusExit_UnityEngine_GameObject_XRTK_EventDatum_Input_FocusEventData_ - commentId: M:XRTK.SDK.UX.Receivers.InteractionReceiver.FocusExit(UnityEngine.GameObject,XRTK.EventDatum.Input.FocusEventData) - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.FocusExit(UnityEngine.GameObject, XRTK.EventDatum.Input.FocusEventData) - nameWithType: InteractionReceiver.FocusExit(GameObject, FocusEventData) -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.FocusExit* - name: FocusExit - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_FocusExit_ - commentId: Overload:XRTK.SDK.UX.Receivers.InteractionReceiver.FocusExit - isSpec: "True" - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.FocusExit - nameWithType: InteractionReceiver.FocusExit -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.GestureCanceled(UnityEngine.GameObject,XRTK.EventDatum.Input.InputEventData) - name: GestureCanceled(GameObject, InputEventData) - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_GestureCanceled_UnityEngine_GameObject_XRTK_EventDatum_Input_InputEventData_ - commentId: M:XRTK.SDK.UX.Receivers.InteractionReceiver.GestureCanceled(UnityEngine.GameObject,XRTK.EventDatum.Input.InputEventData) - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.GestureCanceled(UnityEngine.GameObject, XRTK.EventDatum.Input.InputEventData) - nameWithType: InteractionReceiver.GestureCanceled(GameObject, InputEventData) -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.GestureCanceled* - name: GestureCanceled - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_GestureCanceled_ - commentId: Overload:XRTK.SDK.UX.Receivers.InteractionReceiver.GestureCanceled - isSpec: "True" - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.GestureCanceled - nameWithType: InteractionReceiver.GestureCanceled -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.GestureCompleted(UnityEngine.GameObject,XRTK.EventDatum.Input.InputEventData) - name: GestureCompleted(GameObject, InputEventData) - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_GestureCompleted_UnityEngine_GameObject_XRTK_EventDatum_Input_InputEventData_ - commentId: M:XRTK.SDK.UX.Receivers.InteractionReceiver.GestureCompleted(UnityEngine.GameObject,XRTK.EventDatum.Input.InputEventData) - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.GestureCompleted(UnityEngine.GameObject, XRTK.EventDatum.Input.InputEventData) - nameWithType: InteractionReceiver.GestureCompleted(GameObject, InputEventData) -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.GestureCompleted(UnityEngine.GameObject,XRTK.EventDatum.Input.InputEventData{UnityEngine.Quaternion}) - name: GestureCompleted(GameObject, InputEventData) - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_GestureCompleted_UnityEngine_GameObject_XRTK_EventDatum_Input_InputEventData_UnityEngine_Quaternion__ - commentId: M:XRTK.SDK.UX.Receivers.InteractionReceiver.GestureCompleted(UnityEngine.GameObject,XRTK.EventDatum.Input.InputEventData{UnityEngine.Quaternion}) - name.vb: GestureCompleted(GameObject, InputEventData(Of Quaternion)) - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.GestureCompleted(UnityEngine.GameObject, XRTK.EventDatum.Input.InputEventData) - fullName.vb: XRTK.SDK.UX.Receivers.InteractionReceiver.GestureCompleted(UnityEngine.GameObject, XRTK.EventDatum.Input.InputEventData(Of UnityEngine.Quaternion)) - nameWithType: InteractionReceiver.GestureCompleted(GameObject, InputEventData) - nameWithType.vb: InteractionReceiver.GestureCompleted(GameObject, InputEventData(Of Quaternion)) -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.GestureCompleted(UnityEngine.GameObject,XRTK.EventDatum.Input.InputEventData{UnityEngine.Vector2}) - name: GestureCompleted(GameObject, InputEventData) - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_GestureCompleted_UnityEngine_GameObject_XRTK_EventDatum_Input_InputEventData_UnityEngine_Vector2__ - commentId: M:XRTK.SDK.UX.Receivers.InteractionReceiver.GestureCompleted(UnityEngine.GameObject,XRTK.EventDatum.Input.InputEventData{UnityEngine.Vector2}) - name.vb: GestureCompleted(GameObject, InputEventData(Of Vector2)) - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.GestureCompleted(UnityEngine.GameObject, XRTK.EventDatum.Input.InputEventData) - fullName.vb: XRTK.SDK.UX.Receivers.InteractionReceiver.GestureCompleted(UnityEngine.GameObject, XRTK.EventDatum.Input.InputEventData(Of UnityEngine.Vector2)) - nameWithType: InteractionReceiver.GestureCompleted(GameObject, InputEventData) - nameWithType.vb: InteractionReceiver.GestureCompleted(GameObject, InputEventData(Of Vector2)) -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.GestureCompleted(UnityEngine.GameObject,XRTK.EventDatum.Input.InputEventData{UnityEngine.Vector3}) - name: GestureCompleted(GameObject, InputEventData) - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_GestureCompleted_UnityEngine_GameObject_XRTK_EventDatum_Input_InputEventData_UnityEngine_Vector3__ - commentId: M:XRTK.SDK.UX.Receivers.InteractionReceiver.GestureCompleted(UnityEngine.GameObject,XRTK.EventDatum.Input.InputEventData{UnityEngine.Vector3}) - name.vb: GestureCompleted(GameObject, InputEventData(Of Vector3)) - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.GestureCompleted(UnityEngine.GameObject, XRTK.EventDatum.Input.InputEventData) - fullName.vb: XRTK.SDK.UX.Receivers.InteractionReceiver.GestureCompleted(UnityEngine.GameObject, XRTK.EventDatum.Input.InputEventData(Of UnityEngine.Vector3)) - nameWithType: InteractionReceiver.GestureCompleted(GameObject, InputEventData) - nameWithType.vb: InteractionReceiver.GestureCompleted(GameObject, InputEventData(Of Vector3)) -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.GestureCompleted* - name: GestureCompleted - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_GestureCompleted_ - commentId: Overload:XRTK.SDK.UX.Receivers.InteractionReceiver.GestureCompleted - isSpec: "True" - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.GestureCompleted - nameWithType: InteractionReceiver.GestureCompleted -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.GestureStarted(UnityEngine.GameObject,XRTK.EventDatum.Input.InputEventData) - name: GestureStarted(GameObject, InputEventData) - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_GestureStarted_UnityEngine_GameObject_XRTK_EventDatum_Input_InputEventData_ - commentId: M:XRTK.SDK.UX.Receivers.InteractionReceiver.GestureStarted(UnityEngine.GameObject,XRTK.EventDatum.Input.InputEventData) - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.GestureStarted(UnityEngine.GameObject, XRTK.EventDatum.Input.InputEventData) - nameWithType: InteractionReceiver.GestureStarted(GameObject, InputEventData) -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.GestureStarted* - name: GestureStarted - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_GestureStarted_ - commentId: Overload:XRTK.SDK.UX.Receivers.InteractionReceiver.GestureStarted - isSpec: "True" - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.GestureStarted - nameWithType: InteractionReceiver.GestureStarted -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.GestureUpdated(UnityEngine.GameObject,XRTK.EventDatum.Input.InputEventData) - name: GestureUpdated(GameObject, InputEventData) - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_GestureUpdated_UnityEngine_GameObject_XRTK_EventDatum_Input_InputEventData_ - commentId: M:XRTK.SDK.UX.Receivers.InteractionReceiver.GestureUpdated(UnityEngine.GameObject,XRTK.EventDatum.Input.InputEventData) - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.GestureUpdated(UnityEngine.GameObject, XRTK.EventDatum.Input.InputEventData) - nameWithType: InteractionReceiver.GestureUpdated(GameObject, InputEventData) -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.GestureUpdated(UnityEngine.GameObject,XRTK.EventDatum.Input.InputEventData{UnityEngine.Quaternion}) - name: GestureUpdated(GameObject, InputEventData) - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_GestureUpdated_UnityEngine_GameObject_XRTK_EventDatum_Input_InputEventData_UnityEngine_Quaternion__ - commentId: M:XRTK.SDK.UX.Receivers.InteractionReceiver.GestureUpdated(UnityEngine.GameObject,XRTK.EventDatum.Input.InputEventData{UnityEngine.Quaternion}) - name.vb: GestureUpdated(GameObject, InputEventData(Of Quaternion)) - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.GestureUpdated(UnityEngine.GameObject, XRTK.EventDatum.Input.InputEventData) - fullName.vb: XRTK.SDK.UX.Receivers.InteractionReceiver.GestureUpdated(UnityEngine.GameObject, XRTK.EventDatum.Input.InputEventData(Of UnityEngine.Quaternion)) - nameWithType: InteractionReceiver.GestureUpdated(GameObject, InputEventData) - nameWithType.vb: InteractionReceiver.GestureUpdated(GameObject, InputEventData(Of Quaternion)) -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.GestureUpdated(UnityEngine.GameObject,XRTK.EventDatum.Input.InputEventData{UnityEngine.Vector2}) - name: GestureUpdated(GameObject, InputEventData) - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_GestureUpdated_UnityEngine_GameObject_XRTK_EventDatum_Input_InputEventData_UnityEngine_Vector2__ - commentId: M:XRTK.SDK.UX.Receivers.InteractionReceiver.GestureUpdated(UnityEngine.GameObject,XRTK.EventDatum.Input.InputEventData{UnityEngine.Vector2}) - name.vb: GestureUpdated(GameObject, InputEventData(Of Vector2)) - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.GestureUpdated(UnityEngine.GameObject, XRTK.EventDatum.Input.InputEventData) - fullName.vb: XRTK.SDK.UX.Receivers.InteractionReceiver.GestureUpdated(UnityEngine.GameObject, XRTK.EventDatum.Input.InputEventData(Of UnityEngine.Vector2)) - nameWithType: InteractionReceiver.GestureUpdated(GameObject, InputEventData) - nameWithType.vb: InteractionReceiver.GestureUpdated(GameObject, InputEventData(Of Vector2)) -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.GestureUpdated(UnityEngine.GameObject,XRTK.EventDatum.Input.InputEventData{UnityEngine.Vector3}) - name: GestureUpdated(GameObject, InputEventData) - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_GestureUpdated_UnityEngine_GameObject_XRTK_EventDatum_Input_InputEventData_UnityEngine_Vector3__ - commentId: M:XRTK.SDK.UX.Receivers.InteractionReceiver.GestureUpdated(UnityEngine.GameObject,XRTK.EventDatum.Input.InputEventData{UnityEngine.Vector3}) - name.vb: GestureUpdated(GameObject, InputEventData(Of Vector3)) - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.GestureUpdated(UnityEngine.GameObject, XRTK.EventDatum.Input.InputEventData) - fullName.vb: XRTK.SDK.UX.Receivers.InteractionReceiver.GestureUpdated(UnityEngine.GameObject, XRTK.EventDatum.Input.InputEventData(Of UnityEngine.Vector3)) - nameWithType: InteractionReceiver.GestureUpdated(GameObject, InputEventData) - nameWithType.vb: InteractionReceiver.GestureUpdated(GameObject, InputEventData(Of Vector3)) -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.GestureUpdated* - name: GestureUpdated - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_GestureUpdated_ - commentId: Overload:XRTK.SDK.UX.Receivers.InteractionReceiver.GestureUpdated - isSpec: "True" - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.GestureUpdated - nameWithType: InteractionReceiver.GestureUpdated -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.InputDown(UnityEngine.GameObject,XRTK.EventDatum.Input.InputEventData) - name: InputDown(GameObject, InputEventData) - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_InputDown_UnityEngine_GameObject_XRTK_EventDatum_Input_InputEventData_ - commentId: M:XRTK.SDK.UX.Receivers.InteractionReceiver.InputDown(UnityEngine.GameObject,XRTK.EventDatum.Input.InputEventData) - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.InputDown(UnityEngine.GameObject, XRTK.EventDatum.Input.InputEventData) - nameWithType: InteractionReceiver.InputDown(GameObject, InputEventData) -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.InputDown* - name: InputDown - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_InputDown_ - commentId: Overload:XRTK.SDK.UX.Receivers.InteractionReceiver.InputDown - isSpec: "True" - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.InputDown - nameWithType: InteractionReceiver.InputDown -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.InputPressed(UnityEngine.GameObject,XRTK.EventDatum.Input.InputEventData{System.Single}) - name: InputPressed(GameObject, InputEventData) - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_InputPressed_UnityEngine_GameObject_XRTK_EventDatum_Input_InputEventData_System_Single__ - commentId: M:XRTK.SDK.UX.Receivers.InteractionReceiver.InputPressed(UnityEngine.GameObject,XRTK.EventDatum.Input.InputEventData{System.Single}) - name.vb: InputPressed(GameObject, InputEventData(Of Single)) - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.InputPressed(UnityEngine.GameObject, XRTK.EventDatum.Input.InputEventData) - fullName.vb: XRTK.SDK.UX.Receivers.InteractionReceiver.InputPressed(UnityEngine.GameObject, XRTK.EventDatum.Input.InputEventData(Of System.Single)) - nameWithType: InteractionReceiver.InputPressed(GameObject, InputEventData) - nameWithType.vb: InteractionReceiver.InputPressed(GameObject, InputEventData(Of Single)) -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.InputPressed* - name: InputPressed - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_InputPressed_ - commentId: Overload:XRTK.SDK.UX.Receivers.InteractionReceiver.InputPressed - isSpec: "True" - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.InputPressed - nameWithType: InteractionReceiver.InputPressed -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.InputUp(UnityEngine.GameObject,XRTK.EventDatum.Input.InputEventData) - name: InputUp(GameObject, InputEventData) - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_InputUp_UnityEngine_GameObject_XRTK_EventDatum_Input_InputEventData_ - commentId: M:XRTK.SDK.UX.Receivers.InteractionReceiver.InputUp(UnityEngine.GameObject,XRTK.EventDatum.Input.InputEventData) - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.InputUp(UnityEngine.GameObject, XRTK.EventDatum.Input.InputEventData) - nameWithType: InteractionReceiver.InputUp(GameObject, InputEventData) -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.InputUp* - name: InputUp - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_InputUp_ - commentId: Overload:XRTK.SDK.UX.Receivers.InteractionReceiver.InputUp - isSpec: "True" - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.InputUp - nameWithType: InteractionReceiver.InputUp -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.Interactables - name: Interactables - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_Interactables - commentId: P:XRTK.SDK.UX.Receivers.InteractionReceiver.Interactables - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.Interactables - nameWithType: InteractionReceiver.Interactables -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.Interactables* - name: Interactables - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_Interactables_ - commentId: Overload:XRTK.SDK.UX.Receivers.InteractionReceiver.Interactables - isSpec: "True" - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.Interactables - nameWithType: InteractionReceiver.Interactables -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.IsInteractable(UnityEngine.GameObject) - name: IsInteractable(GameObject) - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_IsInteractable_UnityEngine_GameObject_ - commentId: M:XRTK.SDK.UX.Receivers.InteractionReceiver.IsInteractable(UnityEngine.GameObject) - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.IsInteractable(UnityEngine.GameObject) - nameWithType: InteractionReceiver.IsInteractable(GameObject) -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.IsInteractable* - name: IsInteractable - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_IsInteractable_ - commentId: Overload:XRTK.SDK.UX.Receivers.InteractionReceiver.IsInteractable - isSpec: "True" - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.IsInteractable - nameWithType: InteractionReceiver.IsInteractable -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.OnDrawGizmosSelected - name: OnDrawGizmosSelected() - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_OnDrawGizmosSelected - commentId: M:XRTK.SDK.UX.Receivers.InteractionReceiver.OnDrawGizmosSelected - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.OnDrawGizmosSelected() - nameWithType: InteractionReceiver.OnDrawGizmosSelected() -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.OnDrawGizmosSelected* - name: OnDrawGizmosSelected - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_OnDrawGizmosSelected_ - commentId: Overload:XRTK.SDK.UX.Receivers.InteractionReceiver.OnDrawGizmosSelected - isSpec: "True" - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.OnDrawGizmosSelected - nameWithType: InteractionReceiver.OnDrawGizmosSelected -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.OnEnable - name: OnEnable() - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_OnEnable - commentId: M:XRTK.SDK.UX.Receivers.InteractionReceiver.OnEnable - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.OnEnable() - nameWithType: InteractionReceiver.OnEnable() -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.OnEnable* - name: OnEnable - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_OnEnable_ - commentId: Overload:XRTK.SDK.UX.Receivers.InteractionReceiver.OnEnable - isSpec: "True" - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.OnEnable - nameWithType: InteractionReceiver.OnEnable -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.PositionInputChanged(UnityEngine.GameObject,XRTK.EventDatum.Input.InputEventData{UnityEngine.Quaternion}) - name: PositionInputChanged(GameObject, InputEventData) - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_PositionInputChanged_UnityEngine_GameObject_XRTK_EventDatum_Input_InputEventData_UnityEngine_Quaternion__ - commentId: M:XRTK.SDK.UX.Receivers.InteractionReceiver.PositionInputChanged(UnityEngine.GameObject,XRTK.EventDatum.Input.InputEventData{UnityEngine.Quaternion}) - name.vb: PositionInputChanged(GameObject, InputEventData(Of Quaternion)) - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.PositionInputChanged(UnityEngine.GameObject, XRTK.EventDatum.Input.InputEventData) - fullName.vb: XRTK.SDK.UX.Receivers.InteractionReceiver.PositionInputChanged(UnityEngine.GameObject, XRTK.EventDatum.Input.InputEventData(Of UnityEngine.Quaternion)) - nameWithType: InteractionReceiver.PositionInputChanged(GameObject, InputEventData) - nameWithType.vb: InteractionReceiver.PositionInputChanged(GameObject, InputEventData(Of Quaternion)) -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.PositionInputChanged(UnityEngine.GameObject,XRTK.EventDatum.Input.InputEventData{UnityEngine.Vector2}) - name: PositionInputChanged(GameObject, InputEventData) - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_PositionInputChanged_UnityEngine_GameObject_XRTK_EventDatum_Input_InputEventData_UnityEngine_Vector2__ - commentId: M:XRTK.SDK.UX.Receivers.InteractionReceiver.PositionInputChanged(UnityEngine.GameObject,XRTK.EventDatum.Input.InputEventData{UnityEngine.Vector2}) - name.vb: PositionInputChanged(GameObject, InputEventData(Of Vector2)) - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.PositionInputChanged(UnityEngine.GameObject, XRTK.EventDatum.Input.InputEventData) - fullName.vb: XRTK.SDK.UX.Receivers.InteractionReceiver.PositionInputChanged(UnityEngine.GameObject, XRTK.EventDatum.Input.InputEventData(Of UnityEngine.Vector2)) - nameWithType: InteractionReceiver.PositionInputChanged(GameObject, InputEventData) - nameWithType.vb: InteractionReceiver.PositionInputChanged(GameObject, InputEventData(Of Vector2)) -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.PositionInputChanged(UnityEngine.GameObject,XRTK.EventDatum.Input.InputEventData{UnityEngine.Vector3}) - name: PositionInputChanged(GameObject, InputEventData) - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_PositionInputChanged_UnityEngine_GameObject_XRTK_EventDatum_Input_InputEventData_UnityEngine_Vector3__ - commentId: M:XRTK.SDK.UX.Receivers.InteractionReceiver.PositionInputChanged(UnityEngine.GameObject,XRTK.EventDatum.Input.InputEventData{UnityEngine.Vector3}) - name.vb: PositionInputChanged(GameObject, InputEventData(Of Vector3)) - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.PositionInputChanged(UnityEngine.GameObject, XRTK.EventDatum.Input.InputEventData) - fullName.vb: XRTK.SDK.UX.Receivers.InteractionReceiver.PositionInputChanged(UnityEngine.GameObject, XRTK.EventDatum.Input.InputEventData(Of UnityEngine.Vector3)) - nameWithType: InteractionReceiver.PositionInputChanged(GameObject, InputEventData) - nameWithType.vb: InteractionReceiver.PositionInputChanged(GameObject, InputEventData(Of Vector3)) -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.PositionInputChanged(UnityEngine.GameObject,XRTK.EventDatum.Input.InputEventData{XRTK.Definitions.Utilities.MixedRealityPose}) - name: PositionInputChanged(GameObject, InputEventData) - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_PositionInputChanged_UnityEngine_GameObject_XRTK_EventDatum_Input_InputEventData_XRTK_Definitions_Utilities_MixedRealityPose__ - commentId: M:XRTK.SDK.UX.Receivers.InteractionReceiver.PositionInputChanged(UnityEngine.GameObject,XRTK.EventDatum.Input.InputEventData{XRTK.Definitions.Utilities.MixedRealityPose}) - name.vb: PositionInputChanged(GameObject, InputEventData(Of MixedRealityPose)) - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.PositionInputChanged(UnityEngine.GameObject, XRTK.EventDatum.Input.InputEventData) - fullName.vb: XRTK.SDK.UX.Receivers.InteractionReceiver.PositionInputChanged(UnityEngine.GameObject, XRTK.EventDatum.Input.InputEventData(Of XRTK.Definitions.Utilities.MixedRealityPose)) - nameWithType: InteractionReceiver.PositionInputChanged(GameObject, InputEventData) - nameWithType.vb: InteractionReceiver.PositionInputChanged(GameObject, InputEventData(Of MixedRealityPose)) -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.PositionInputChanged* - name: PositionInputChanged - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_PositionInputChanged_ - commentId: Overload:XRTK.SDK.UX.Receivers.InteractionReceiver.PositionInputChanged - isSpec: "True" - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.PositionInputChanged - nameWithType: InteractionReceiver.PositionInputChanged -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.RegisterInteractable(UnityEngine.GameObject) - name: RegisterInteractable(GameObject) - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_RegisterInteractable_UnityEngine_GameObject_ - commentId: M:XRTK.SDK.UX.Receivers.InteractionReceiver.RegisterInteractable(UnityEngine.GameObject) - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.RegisterInteractable(UnityEngine.GameObject) - nameWithType: InteractionReceiver.RegisterInteractable(GameObject) -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.RegisterInteractable* - name: RegisterInteractable - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_RegisterInteractable_ - commentId: Overload:XRTK.SDK.UX.Receivers.InteractionReceiver.RegisterInteractable - isSpec: "True" - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.RegisterInteractable - nameWithType: InteractionReceiver.RegisterInteractable -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.RemoveInteractable(UnityEngine.GameObject) - name: RemoveInteractable(GameObject) - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_RemoveInteractable_UnityEngine_GameObject_ - commentId: M:XRTK.SDK.UX.Receivers.InteractionReceiver.RemoveInteractable(UnityEngine.GameObject) - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.RemoveInteractable(UnityEngine.GameObject) - nameWithType: InteractionReceiver.RemoveInteractable(GameObject) -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.RemoveInteractable* - name: RemoveInteractable - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_RemoveInteractable_ - commentId: Overload:XRTK.SDK.UX.Receivers.InteractionReceiver.RemoveInteractable - isSpec: "True" - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.RemoveInteractable - nameWithType: InteractionReceiver.RemoveInteractable -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.Targets - name: Targets - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_Targets - commentId: P:XRTK.SDK.UX.Receivers.InteractionReceiver.Targets - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.Targets - nameWithType: InteractionReceiver.Targets -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.Targets* - name: Targets - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_Targets_ - commentId: Overload:XRTK.SDK.UX.Receivers.InteractionReceiver.Targets - isSpec: "True" - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.Targets - nameWithType: InteractionReceiver.Targets -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityFocusChangedHandler#OnBeforeFocusChange(XRTK.EventDatum.Input.FocusEventData) - name: IMixedRealityFocusChangedHandler.OnBeforeFocusChange(FocusEventData) - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityFocusChangedHandler_OnBeforeFocusChange_XRTK_EventDatum_Input_FocusEventData_ - commentId: M:XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityFocusChangedHandler#OnBeforeFocusChange(XRTK.EventDatum.Input.FocusEventData) - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusChangedHandler.OnBeforeFocusChange(FocusEventData) - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusChangedHandler.OnBeforeFocusChange(XRTK.EventDatum.Input.FocusEventData) - nameWithType: InteractionReceiver.IMixedRealityFocusChangedHandler.OnBeforeFocusChange(FocusEventData) - nameWithType.vb: InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusChangedHandler.OnBeforeFocusChange(FocusEventData) -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityFocusChangedHandler#OnBeforeFocusChange* - name: IMixedRealityFocusChangedHandler.OnBeforeFocusChange - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityFocusChangedHandler_OnBeforeFocusChange_ - commentId: Overload:XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityFocusChangedHandler#OnBeforeFocusChange - isSpec: "True" - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusChangedHandler.OnBeforeFocusChange - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusChangedHandler.OnBeforeFocusChange - nameWithType: InteractionReceiver.IMixedRealityFocusChangedHandler.OnBeforeFocusChange - nameWithType.vb: InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusChangedHandler.OnBeforeFocusChange -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityFocusChangedHandler#OnFocusChanged(XRTK.EventDatum.Input.FocusEventData) - name: IMixedRealityFocusChangedHandler.OnFocusChanged(FocusEventData) - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityFocusChangedHandler_OnFocusChanged_XRTK_EventDatum_Input_FocusEventData_ - commentId: M:XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityFocusChangedHandler#OnFocusChanged(XRTK.EventDatum.Input.FocusEventData) - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusChangedHandler.OnFocusChanged(FocusEventData) - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusChangedHandler.OnFocusChanged(XRTK.EventDatum.Input.FocusEventData) - nameWithType: InteractionReceiver.IMixedRealityFocusChangedHandler.OnFocusChanged(FocusEventData) - nameWithType.vb: InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusChangedHandler.OnFocusChanged(FocusEventData) -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityFocusChangedHandler#OnFocusChanged* - name: IMixedRealityFocusChangedHandler.OnFocusChanged - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityFocusChangedHandler_OnFocusChanged_ - commentId: Overload:XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityFocusChangedHandler#OnFocusChanged - isSpec: "True" - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusChangedHandler.OnFocusChanged - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusChangedHandler.OnFocusChanged - nameWithType: InteractionReceiver.IMixedRealityFocusChangedHandler.OnFocusChanged - nameWithType.vb: InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityFocusChangedHandler.OnFocusChanged -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler#OnGestureCanceled(XRTK.EventDatum.Input.InputEventData) - name: IMixedRealityGestureHandler.OnGestureCanceled(InputEventData) - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityGestureHandler_OnGestureCanceled_XRTK_EventDatum_Input_InputEventData_ - commentId: M:XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler#OnGestureCanceled(XRTK.EventDatum.Input.InputEventData) - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCanceled(InputEventData) - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCanceled(XRTK.EventDatum.Input.InputEventData) - nameWithType: InteractionReceiver.IMixedRealityGestureHandler.OnGestureCanceled(InputEventData) - nameWithType.vb: InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCanceled(InputEventData) -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler#OnGestureCanceled* - name: IMixedRealityGestureHandler.OnGestureCanceled - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityGestureHandler_OnGestureCanceled_ - commentId: Overload:XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler#OnGestureCanceled - isSpec: "True" - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCanceled - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCanceled - nameWithType: InteractionReceiver.IMixedRealityGestureHandler.OnGestureCanceled - nameWithType.vb: InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCanceled -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler#OnGestureCompleted(XRTK.EventDatum.Input.InputEventData) - name: IMixedRealityGestureHandler.OnGestureCompleted(InputEventData) - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityGestureHandler_OnGestureCompleted_XRTK_EventDatum_Input_InputEventData_ - commentId: M:XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler#OnGestureCompleted(XRTK.EventDatum.Input.InputEventData) - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted(InputEventData) - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted(XRTK.EventDatum.Input.InputEventData) - nameWithType: InteractionReceiver.IMixedRealityGestureHandler.OnGestureCompleted(InputEventData) - nameWithType.vb: InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted(InputEventData) -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler#OnGestureCompleted* - name: IMixedRealityGestureHandler.OnGestureCompleted - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityGestureHandler_OnGestureCompleted_ - commentId: Overload:XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler#OnGestureCompleted - isSpec: "True" - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted - nameWithType: InteractionReceiver.IMixedRealityGestureHandler.OnGestureCompleted - nameWithType.vb: InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler#OnGestureStarted(XRTK.EventDatum.Input.InputEventData) - name: IMixedRealityGestureHandler.OnGestureStarted(InputEventData) - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityGestureHandler_OnGestureStarted_XRTK_EventDatum_Input_InputEventData_ - commentId: M:XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler#OnGestureStarted(XRTK.EventDatum.Input.InputEventData) - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureStarted(InputEventData) - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureStarted(XRTK.EventDatum.Input.InputEventData) - nameWithType: InteractionReceiver.IMixedRealityGestureHandler.OnGestureStarted(InputEventData) - nameWithType.vb: InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureStarted(InputEventData) -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler#OnGestureStarted* - name: IMixedRealityGestureHandler.OnGestureStarted - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityGestureHandler_OnGestureStarted_ - commentId: Overload:XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler#OnGestureStarted - isSpec: "True" - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureStarted - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureStarted - nameWithType: InteractionReceiver.IMixedRealityGestureHandler.OnGestureStarted - nameWithType.vb: InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureStarted -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler#OnGestureUpdated(XRTK.EventDatum.Input.InputEventData) - name: IMixedRealityGestureHandler.OnGestureUpdated(InputEventData) - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityGestureHandler_OnGestureUpdated_XRTK_EventDatum_Input_InputEventData_ - commentId: M:XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler#OnGestureUpdated(XRTK.EventDatum.Input.InputEventData) - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated(InputEventData) - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated(XRTK.EventDatum.Input.InputEventData) - nameWithType: InteractionReceiver.IMixedRealityGestureHandler.OnGestureUpdated(InputEventData) - nameWithType.vb: InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated(InputEventData) -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler#OnGestureUpdated* - name: IMixedRealityGestureHandler.OnGestureUpdated - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityGestureHandler_OnGestureUpdated_ - commentId: Overload:XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler#OnGestureUpdated - isSpec: "True" - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated - nameWithType: InteractionReceiver.IMixedRealityGestureHandler.OnGestureUpdated - nameWithType.vb: InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler{UnityEngine#Quaternion}#OnGestureCompleted(XRTK.EventDatum.Input.InputEventData{UnityEngine.Quaternion}) - name: IMixedRealityGestureHandler.OnGestureCompleted(InputEventData) - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityGestureHandler_UnityEngine_Quaternion__OnGestureCompleted_XRTK_EventDatum_Input_InputEventData_UnityEngine_Quaternion__ - commentId: M:XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler{UnityEngine#Quaternion}#OnGestureCompleted(XRTK.EventDatum.Input.InputEventData{UnityEngine.Quaternion}) - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted(InputEventData(Of Quaternion)) - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted(XRTK.EventDatum.Input.InputEventData) - fullName.vb: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted(XRTK.EventDatum.Input.InputEventData(Of UnityEngine.Quaternion)) - nameWithType: InteractionReceiver.IMixedRealityGestureHandler.OnGestureCompleted(InputEventData) - nameWithType.vb: InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted(InputEventData(Of Quaternion)) -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler{UnityEngine#Quaternion}#OnGestureCompleted* - name: IMixedRealityGestureHandler.OnGestureCompleted - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityGestureHandler_UnityEngine_Quaternion__OnGestureCompleted_ - commentId: Overload:XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler{UnityEngine#Quaternion}#OnGestureCompleted - isSpec: "True" - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted - nameWithType: InteractionReceiver.IMixedRealityGestureHandler.OnGestureCompleted - nameWithType.vb: InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler{UnityEngine#Quaternion}#OnGestureUpdated(XRTK.EventDatum.Input.InputEventData{UnityEngine.Quaternion}) - name: IMixedRealityGestureHandler.OnGestureUpdated(InputEventData) - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityGestureHandler_UnityEngine_Quaternion__OnGestureUpdated_XRTK_EventDatum_Input_InputEventData_UnityEngine_Quaternion__ - commentId: M:XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler{UnityEngine#Quaternion}#OnGestureUpdated(XRTK.EventDatum.Input.InputEventData{UnityEngine.Quaternion}) - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated(InputEventData(Of Quaternion)) - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated(XRTK.EventDatum.Input.InputEventData) - fullName.vb: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated(XRTK.EventDatum.Input.InputEventData(Of UnityEngine.Quaternion)) - nameWithType: InteractionReceiver.IMixedRealityGestureHandler.OnGestureUpdated(InputEventData) - nameWithType.vb: InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated(InputEventData(Of Quaternion)) -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler{UnityEngine#Quaternion}#OnGestureUpdated* - name: IMixedRealityGestureHandler.OnGestureUpdated - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityGestureHandler_UnityEngine_Quaternion__OnGestureUpdated_ - commentId: Overload:XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler{UnityEngine#Quaternion}#OnGestureUpdated - isSpec: "True" - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated - nameWithType: InteractionReceiver.IMixedRealityGestureHandler.OnGestureUpdated - nameWithType.vb: InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler{UnityEngine#Vector2}#OnGestureCompleted(XRTK.EventDatum.Input.InputEventData{UnityEngine.Vector2}) - name: IMixedRealityGestureHandler.OnGestureCompleted(InputEventData) - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityGestureHandler_UnityEngine_Vector2__OnGestureCompleted_XRTK_EventDatum_Input_InputEventData_UnityEngine_Vector2__ - commentId: M:XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler{UnityEngine#Vector2}#OnGestureCompleted(XRTK.EventDatum.Input.InputEventData{UnityEngine.Vector2}) - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted(InputEventData(Of Vector2)) - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted(XRTK.EventDatum.Input.InputEventData) - fullName.vb: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted(XRTK.EventDatum.Input.InputEventData(Of UnityEngine.Vector2)) - nameWithType: InteractionReceiver.IMixedRealityGestureHandler.OnGestureCompleted(InputEventData) - nameWithType.vb: InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted(InputEventData(Of Vector2)) -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler{UnityEngine#Vector2}#OnGestureCompleted* - name: IMixedRealityGestureHandler.OnGestureCompleted - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityGestureHandler_UnityEngine_Vector2__OnGestureCompleted_ - commentId: Overload:XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler{UnityEngine#Vector2}#OnGestureCompleted - isSpec: "True" - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted - nameWithType: InteractionReceiver.IMixedRealityGestureHandler.OnGestureCompleted - nameWithType.vb: InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler{UnityEngine#Vector2}#OnGestureUpdated(XRTK.EventDatum.Input.InputEventData{UnityEngine.Vector2}) - name: IMixedRealityGestureHandler.OnGestureUpdated(InputEventData) - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityGestureHandler_UnityEngine_Vector2__OnGestureUpdated_XRTK_EventDatum_Input_InputEventData_UnityEngine_Vector2__ - commentId: M:XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler{UnityEngine#Vector2}#OnGestureUpdated(XRTK.EventDatum.Input.InputEventData{UnityEngine.Vector2}) - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated(InputEventData(Of Vector2)) - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated(XRTK.EventDatum.Input.InputEventData) - fullName.vb: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated(XRTK.EventDatum.Input.InputEventData(Of UnityEngine.Vector2)) - nameWithType: InteractionReceiver.IMixedRealityGestureHandler.OnGestureUpdated(InputEventData) - nameWithType.vb: InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated(InputEventData(Of Vector2)) -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler{UnityEngine#Vector2}#OnGestureUpdated* - name: IMixedRealityGestureHandler.OnGestureUpdated - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityGestureHandler_UnityEngine_Vector2__OnGestureUpdated_ - commentId: Overload:XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler{UnityEngine#Vector2}#OnGestureUpdated - isSpec: "True" - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated - nameWithType: InteractionReceiver.IMixedRealityGestureHandler.OnGestureUpdated - nameWithType.vb: InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler{UnityEngine#Vector3}#OnGestureCompleted(XRTK.EventDatum.Input.InputEventData{UnityEngine.Vector3}) - name: IMixedRealityGestureHandler.OnGestureCompleted(InputEventData) - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityGestureHandler_UnityEngine_Vector3__OnGestureCompleted_XRTK_EventDatum_Input_InputEventData_UnityEngine_Vector3__ - commentId: M:XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler{UnityEngine#Vector3}#OnGestureCompleted(XRTK.EventDatum.Input.InputEventData{UnityEngine.Vector3}) - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted(InputEventData(Of Vector3)) - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted(XRTK.EventDatum.Input.InputEventData) - fullName.vb: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted(XRTK.EventDatum.Input.InputEventData(Of UnityEngine.Vector3)) - nameWithType: InteractionReceiver.IMixedRealityGestureHandler.OnGestureCompleted(InputEventData) - nameWithType.vb: InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted(InputEventData(Of Vector3)) -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler{UnityEngine#Vector3}#OnGestureCompleted* - name: IMixedRealityGestureHandler.OnGestureCompleted - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityGestureHandler_UnityEngine_Vector3__OnGestureCompleted_ - commentId: Overload:XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler{UnityEngine#Vector3}#OnGestureCompleted - isSpec: "True" - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted - nameWithType: InteractionReceiver.IMixedRealityGestureHandler.OnGestureCompleted - nameWithType.vb: InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureCompleted -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler{UnityEngine#Vector3}#OnGestureUpdated(XRTK.EventDatum.Input.InputEventData{UnityEngine.Vector3}) - name: IMixedRealityGestureHandler.OnGestureUpdated(InputEventData) - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityGestureHandler_UnityEngine_Vector3__OnGestureUpdated_XRTK_EventDatum_Input_InputEventData_UnityEngine_Vector3__ - commentId: M:XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler{UnityEngine#Vector3}#OnGestureUpdated(XRTK.EventDatum.Input.InputEventData{UnityEngine.Vector3}) - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated(InputEventData(Of Vector3)) - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated(XRTK.EventDatum.Input.InputEventData) - fullName.vb: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated(XRTK.EventDatum.Input.InputEventData(Of UnityEngine.Vector3)) - nameWithType: InteractionReceiver.IMixedRealityGestureHandler.OnGestureUpdated(InputEventData) - nameWithType.vb: InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated(InputEventData(Of Vector3)) -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler{UnityEngine#Vector3}#OnGestureUpdated* - name: IMixedRealityGestureHandler.OnGestureUpdated - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityGestureHandler_UnityEngine_Vector3__OnGestureUpdated_ - commentId: Overload:XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityGestureHandler{UnityEngine#Vector3}#OnGestureUpdated - isSpec: "True" - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated - nameWithType: InteractionReceiver.IMixedRealityGestureHandler.OnGestureUpdated - nameWithType.vb: InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityGestureHandler.OnGestureUpdated -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler#OnInputDown(XRTK.EventDatum.Input.InputEventData) - name: IMixedRealityInputHandler.OnInputDown(InputEventData) - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityInputHandler_OnInputDown_XRTK_EventDatum_Input_InputEventData_ - commentId: M:XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler#OnInputDown(XRTK.EventDatum.Input.InputEventData) - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputDown(InputEventData) - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputDown(XRTK.EventDatum.Input.InputEventData) - nameWithType: InteractionReceiver.IMixedRealityInputHandler.OnInputDown(InputEventData) - nameWithType.vb: InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputDown(InputEventData) -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler#OnInputDown* - name: IMixedRealityInputHandler.OnInputDown - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityInputHandler_OnInputDown_ - commentId: Overload:XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler#OnInputDown - isSpec: "True" - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputDown - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputDown - nameWithType: InteractionReceiver.IMixedRealityInputHandler.OnInputDown - nameWithType.vb: InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputDown -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler#OnInputUp(XRTK.EventDatum.Input.InputEventData) - name: IMixedRealityInputHandler.OnInputUp(InputEventData) - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityInputHandler_OnInputUp_XRTK_EventDatum_Input_InputEventData_ - commentId: M:XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler#OnInputUp(XRTK.EventDatum.Input.InputEventData) - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputUp(InputEventData) - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputUp(XRTK.EventDatum.Input.InputEventData) - nameWithType: InteractionReceiver.IMixedRealityInputHandler.OnInputUp(InputEventData) - nameWithType.vb: InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputUp(InputEventData) -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler#OnInputUp* - name: IMixedRealityInputHandler.OnInputUp - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityInputHandler_OnInputUp_ - commentId: Overload:XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler#OnInputUp - isSpec: "True" - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputUp - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputUp - nameWithType: InteractionReceiver.IMixedRealityInputHandler.OnInputUp - nameWithType.vb: InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputUp -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler{System#Single}#OnInputChanged(XRTK.EventDatum.Input.InputEventData{System.Single}) - name: IMixedRealityInputHandler.OnInputChanged(InputEventData) - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityInputHandler_System_Single__OnInputChanged_XRTK_EventDatum_Input_InputEventData_System_Single__ - commentId: M:XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler{System#Single}#OnInputChanged(XRTK.EventDatum.Input.InputEventData{System.Single}) - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputChanged(InputEventData(Of Single)) - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputChanged(XRTK.EventDatum.Input.InputEventData) - fullName.vb: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputChanged(XRTK.EventDatum.Input.InputEventData(Of System.Single)) - nameWithType: InteractionReceiver.IMixedRealityInputHandler.OnInputChanged(InputEventData) - nameWithType.vb: InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputChanged(InputEventData(Of Single)) -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler{System#Single}#OnInputChanged* - name: IMixedRealityInputHandler.OnInputChanged - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityInputHandler_System_Single__OnInputChanged_ - commentId: Overload:XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler{System#Single}#OnInputChanged - isSpec: "True" - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputChanged - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputChanged - nameWithType: InteractionReceiver.IMixedRealityInputHandler.OnInputChanged - nameWithType.vb: InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputChanged -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler{UnityEngine#Vector2}#OnInputChanged(XRTK.EventDatum.Input.InputEventData{UnityEngine.Vector2}) - name: IMixedRealityInputHandler.OnInputChanged(InputEventData) - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityInputHandler_UnityEngine_Vector2__OnInputChanged_XRTK_EventDatum_Input_InputEventData_UnityEngine_Vector2__ - commentId: M:XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler{UnityEngine#Vector2}#OnInputChanged(XRTK.EventDatum.Input.InputEventData{UnityEngine.Vector2}) - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputChanged(InputEventData(Of Vector2)) - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputChanged(XRTK.EventDatum.Input.InputEventData) - fullName.vb: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputChanged(XRTK.EventDatum.Input.InputEventData(Of UnityEngine.Vector2)) - nameWithType: InteractionReceiver.IMixedRealityInputHandler.OnInputChanged(InputEventData) - nameWithType.vb: InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputChanged(InputEventData(Of Vector2)) -- uid: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler{UnityEngine#Vector2}#OnInputChanged* - name: IMixedRealityInputHandler.OnInputChanged - href: api/XRTK.SDK.UX.Receivers.InteractionReceiver.html#XRTK_SDK_UX_Receivers_InteractionReceiver_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityInputHandler_UnityEngine_Vector2__OnInputChanged_ - commentId: Overload:XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler{UnityEngine#Vector2}#OnInputChanged - isSpec: "True" - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputChanged - fullName: XRTK.SDK.UX.Receivers.InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputChanged - nameWithType: InteractionReceiver.IMixedRealityInputHandler.OnInputChanged - nameWithType.vb: InteractionReceiver.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputChanged -- uid: XRTK.SDK.UX.ToolTips - name: XRTK.SDK.UX.ToolTips - href: api/XRTK.SDK.UX.ToolTips.html - commentId: N:XRTK.SDK.UX.ToolTips - fullName: XRTK.SDK.UX.ToolTips - nameWithType: XRTK.SDK.UX.ToolTips -- uid: XRTK.SDK.UX.ToolTips.ConnectorFollowType - name: ConnectorFollowType - href: api/XRTK.SDK.UX.ToolTips.ConnectorFollowType.html - commentId: T:XRTK.SDK.UX.ToolTips.ConnectorFollowType - fullName: XRTK.SDK.UX.ToolTips.ConnectorFollowType - nameWithType: ConnectorFollowType -- uid: XRTK.SDK.UX.ToolTips.ConnectorFollowType.AnchorOnly - name: AnchorOnly - href: api/XRTK.SDK.UX.ToolTips.ConnectorFollowType.html#XRTK_SDK_UX_ToolTips_ConnectorFollowType_AnchorOnly - commentId: F:XRTK.SDK.UX.ToolTips.ConnectorFollowType.AnchorOnly - fullName: XRTK.SDK.UX.ToolTips.ConnectorFollowType.AnchorOnly - nameWithType: ConnectorFollowType.AnchorOnly -- uid: XRTK.SDK.UX.ToolTips.ConnectorFollowType.Position - name: Position - href: api/XRTK.SDK.UX.ToolTips.ConnectorFollowType.html#XRTK_SDK_UX_ToolTips_ConnectorFollowType_Position - commentId: F:XRTK.SDK.UX.ToolTips.ConnectorFollowType.Position - fullName: XRTK.SDK.UX.ToolTips.ConnectorFollowType.Position - nameWithType: ConnectorFollowType.Position -- uid: XRTK.SDK.UX.ToolTips.ConnectorFollowType.XRotation - name: XRotation - href: api/XRTK.SDK.UX.ToolTips.ConnectorFollowType.html#XRTK_SDK_UX_ToolTips_ConnectorFollowType_XRotation - commentId: F:XRTK.SDK.UX.ToolTips.ConnectorFollowType.XRotation - fullName: XRTK.SDK.UX.ToolTips.ConnectorFollowType.XRotation - nameWithType: ConnectorFollowType.XRotation -- uid: XRTK.SDK.UX.ToolTips.ConnectorFollowType.YRotation - name: YRotation - href: api/XRTK.SDK.UX.ToolTips.ConnectorFollowType.html#XRTK_SDK_UX_ToolTips_ConnectorFollowType_YRotation - commentId: F:XRTK.SDK.UX.ToolTips.ConnectorFollowType.YRotation - fullName: XRTK.SDK.UX.ToolTips.ConnectorFollowType.YRotation - nameWithType: ConnectorFollowType.YRotation -- uid: XRTK.SDK.UX.ToolTips.ConnectorOrientType - name: ConnectorOrientType - href: api/XRTK.SDK.UX.ToolTips.ConnectorOrientType.html - commentId: T:XRTK.SDK.UX.ToolTips.ConnectorOrientType - fullName: XRTK.SDK.UX.ToolTips.ConnectorOrientType - nameWithType: ConnectorOrientType -- uid: XRTK.SDK.UX.ToolTips.ConnectorOrientType.OrientToCamera - name: OrientToCamera - href: api/XRTK.SDK.UX.ToolTips.ConnectorOrientType.html#XRTK_SDK_UX_ToolTips_ConnectorOrientType_OrientToCamera - commentId: F:XRTK.SDK.UX.ToolTips.ConnectorOrientType.OrientToCamera - fullName: XRTK.SDK.UX.ToolTips.ConnectorOrientType.OrientToCamera - nameWithType: ConnectorOrientType.OrientToCamera -- uid: XRTK.SDK.UX.ToolTips.ConnectorOrientType.OrientToObject - name: OrientToObject - href: api/XRTK.SDK.UX.ToolTips.ConnectorOrientType.html#XRTK_SDK_UX_ToolTips_ConnectorOrientType_OrientToObject - commentId: F:XRTK.SDK.UX.ToolTips.ConnectorOrientType.OrientToObject - fullName: XRTK.SDK.UX.ToolTips.ConnectorOrientType.OrientToObject - nameWithType: ConnectorOrientType.OrientToObject -- uid: XRTK.SDK.UX.ToolTips.ConnectorPivotDirectionType - name: ConnectorPivotDirectionType - href: api/XRTK.SDK.UX.ToolTips.ConnectorPivotDirectionType.html - commentId: T:XRTK.SDK.UX.ToolTips.ConnectorPivotDirectionType - fullName: XRTK.SDK.UX.ToolTips.ConnectorPivotDirectionType - nameWithType: ConnectorPivotDirectionType -- uid: XRTK.SDK.UX.ToolTips.ConnectorPivotDirectionType.East - name: East - href: api/XRTK.SDK.UX.ToolTips.ConnectorPivotDirectionType.html#XRTK_SDK_UX_ToolTips_ConnectorPivotDirectionType_East - commentId: F:XRTK.SDK.UX.ToolTips.ConnectorPivotDirectionType.East - fullName: XRTK.SDK.UX.ToolTips.ConnectorPivotDirectionType.East - nameWithType: ConnectorPivotDirectionType.East -- uid: XRTK.SDK.UX.ToolTips.ConnectorPivotDirectionType.InFront - name: InFront - href: api/XRTK.SDK.UX.ToolTips.ConnectorPivotDirectionType.html#XRTK_SDK_UX_ToolTips_ConnectorPivotDirectionType_InFront - commentId: F:XRTK.SDK.UX.ToolTips.ConnectorPivotDirectionType.InFront - fullName: XRTK.SDK.UX.ToolTips.ConnectorPivotDirectionType.InFront - nameWithType: ConnectorPivotDirectionType.InFront -- uid: XRTK.SDK.UX.ToolTips.ConnectorPivotDirectionType.Manual - name: Manual - href: api/XRTK.SDK.UX.ToolTips.ConnectorPivotDirectionType.html#XRTK_SDK_UX_ToolTips_ConnectorPivotDirectionType_Manual - commentId: F:XRTK.SDK.UX.ToolTips.ConnectorPivotDirectionType.Manual - fullName: XRTK.SDK.UX.ToolTips.ConnectorPivotDirectionType.Manual - nameWithType: ConnectorPivotDirectionType.Manual -- uid: XRTK.SDK.UX.ToolTips.ConnectorPivotDirectionType.North - name: North - href: api/XRTK.SDK.UX.ToolTips.ConnectorPivotDirectionType.html#XRTK_SDK_UX_ToolTips_ConnectorPivotDirectionType_North - commentId: F:XRTK.SDK.UX.ToolTips.ConnectorPivotDirectionType.North - fullName: XRTK.SDK.UX.ToolTips.ConnectorPivotDirectionType.North - nameWithType: ConnectorPivotDirectionType.North -- uid: XRTK.SDK.UX.ToolTips.ConnectorPivotDirectionType.Northeast - name: Northeast - href: api/XRTK.SDK.UX.ToolTips.ConnectorPivotDirectionType.html#XRTK_SDK_UX_ToolTips_ConnectorPivotDirectionType_Northeast - commentId: F:XRTK.SDK.UX.ToolTips.ConnectorPivotDirectionType.Northeast - fullName: XRTK.SDK.UX.ToolTips.ConnectorPivotDirectionType.Northeast - nameWithType: ConnectorPivotDirectionType.Northeast -- uid: XRTK.SDK.UX.ToolTips.ConnectorPivotDirectionType.Northwest - name: Northwest - href: api/XRTK.SDK.UX.ToolTips.ConnectorPivotDirectionType.html#XRTK_SDK_UX_ToolTips_ConnectorPivotDirectionType_Northwest - commentId: F:XRTK.SDK.UX.ToolTips.ConnectorPivotDirectionType.Northwest - fullName: XRTK.SDK.UX.ToolTips.ConnectorPivotDirectionType.Northwest - nameWithType: ConnectorPivotDirectionType.Northwest -- uid: XRTK.SDK.UX.ToolTips.ConnectorPivotDirectionType.South - name: South - href: api/XRTK.SDK.UX.ToolTips.ConnectorPivotDirectionType.html#XRTK_SDK_UX_ToolTips_ConnectorPivotDirectionType_South - commentId: F:XRTK.SDK.UX.ToolTips.ConnectorPivotDirectionType.South - fullName: XRTK.SDK.UX.ToolTips.ConnectorPivotDirectionType.South - nameWithType: ConnectorPivotDirectionType.South -- uid: XRTK.SDK.UX.ToolTips.ConnectorPivotDirectionType.Southeast - name: Southeast - href: api/XRTK.SDK.UX.ToolTips.ConnectorPivotDirectionType.html#XRTK_SDK_UX_ToolTips_ConnectorPivotDirectionType_Southeast - commentId: F:XRTK.SDK.UX.ToolTips.ConnectorPivotDirectionType.Southeast - fullName: XRTK.SDK.UX.ToolTips.ConnectorPivotDirectionType.Southeast - nameWithType: ConnectorPivotDirectionType.Southeast -- uid: XRTK.SDK.UX.ToolTips.ConnectorPivotDirectionType.Southwest - name: Southwest - href: api/XRTK.SDK.UX.ToolTips.ConnectorPivotDirectionType.html#XRTK_SDK_UX_ToolTips_ConnectorPivotDirectionType_Southwest - commentId: F:XRTK.SDK.UX.ToolTips.ConnectorPivotDirectionType.Southwest - fullName: XRTK.SDK.UX.ToolTips.ConnectorPivotDirectionType.Southwest - nameWithType: ConnectorPivotDirectionType.Southwest -- uid: XRTK.SDK.UX.ToolTips.ConnectorPivotDirectionType.West - name: West - href: api/XRTK.SDK.UX.ToolTips.ConnectorPivotDirectionType.html#XRTK_SDK_UX_ToolTips_ConnectorPivotDirectionType_West - commentId: F:XRTK.SDK.UX.ToolTips.ConnectorPivotDirectionType.West - fullName: XRTK.SDK.UX.ToolTips.ConnectorPivotDirectionType.West - nameWithType: ConnectorPivotDirectionType.West -- uid: XRTK.SDK.UX.ToolTips.ConnectorPivotModeType - name: ConnectorPivotModeType - href: api/XRTK.SDK.UX.ToolTips.ConnectorPivotModeType.html - commentId: T:XRTK.SDK.UX.ToolTips.ConnectorPivotModeType - fullName: XRTK.SDK.UX.ToolTips.ConnectorPivotModeType - nameWithType: ConnectorPivotModeType -- uid: XRTK.SDK.UX.ToolTips.ConnectorPivotModeType.Automatic - name: Automatic - href: api/XRTK.SDK.UX.ToolTips.ConnectorPivotModeType.html#XRTK_SDK_UX_ToolTips_ConnectorPivotModeType_Automatic - commentId: F:XRTK.SDK.UX.ToolTips.ConnectorPivotModeType.Automatic - fullName: XRTK.SDK.UX.ToolTips.ConnectorPivotModeType.Automatic - nameWithType: ConnectorPivotModeType.Automatic -- uid: XRTK.SDK.UX.ToolTips.ConnectorPivotModeType.Manual - name: Manual - href: api/XRTK.SDK.UX.ToolTips.ConnectorPivotModeType.html#XRTK_SDK_UX_ToolTips_ConnectorPivotModeType_Manual - commentId: F:XRTK.SDK.UX.ToolTips.ConnectorPivotModeType.Manual - fullName: XRTK.SDK.UX.ToolTips.ConnectorPivotModeType.Manual - nameWithType: ConnectorPivotModeType.Manual -- uid: XRTK.SDK.UX.ToolTips.DisplayModeType - name: DisplayModeType - href: api/XRTK.SDK.UX.ToolTips.DisplayModeType.html - commentId: T:XRTK.SDK.UX.ToolTips.DisplayModeType - fullName: XRTK.SDK.UX.ToolTips.DisplayModeType - nameWithType: DisplayModeType -- uid: XRTK.SDK.UX.ToolTips.DisplayModeType.None - name: None - href: api/XRTK.SDK.UX.ToolTips.DisplayModeType.html#XRTK_SDK_UX_ToolTips_DisplayModeType_None - commentId: F:XRTK.SDK.UX.ToolTips.DisplayModeType.None - fullName: XRTK.SDK.UX.ToolTips.DisplayModeType.None - nameWithType: DisplayModeType.None -- uid: XRTK.SDK.UX.ToolTips.DisplayModeType.Off - name: Off - href: api/XRTK.SDK.UX.ToolTips.DisplayModeType.html#XRTK_SDK_UX_ToolTips_DisplayModeType_Off - commentId: F:XRTK.SDK.UX.ToolTips.DisplayModeType.Off - fullName: XRTK.SDK.UX.ToolTips.DisplayModeType.Off - nameWithType: DisplayModeType.Off -- uid: XRTK.SDK.UX.ToolTips.DisplayModeType.On - name: On - href: api/XRTK.SDK.UX.ToolTips.DisplayModeType.html#XRTK_SDK_UX_ToolTips_DisplayModeType_On - commentId: F:XRTK.SDK.UX.ToolTips.DisplayModeType.On - fullName: XRTK.SDK.UX.ToolTips.DisplayModeType.On - nameWithType: DisplayModeType.On -- uid: XRTK.SDK.UX.ToolTips.DisplayModeType.OnFocus - name: OnFocus - href: api/XRTK.SDK.UX.ToolTips.DisplayModeType.html#XRTK_SDK_UX_ToolTips_DisplayModeType_OnFocus - commentId: F:XRTK.SDK.UX.ToolTips.DisplayModeType.OnFocus - fullName: XRTK.SDK.UX.ToolTips.DisplayModeType.OnFocus - nameWithType: DisplayModeType.OnFocus -- uid: XRTK.SDK.UX.ToolTips.ToolTip - name: ToolTip - href: api/XRTK.SDK.UX.ToolTips.ToolTip.html - commentId: T:XRTK.SDK.UX.ToolTips.ToolTip - fullName: XRTK.SDK.UX.ToolTips.ToolTip - nameWithType: ToolTip -- uid: XRTK.SDK.UX.ToolTips.ToolTip.Anchor - name: Anchor - href: api/XRTK.SDK.UX.ToolTips.ToolTip.html#XRTK_SDK_UX_ToolTips_ToolTip_Anchor - commentId: P:XRTK.SDK.UX.ToolTips.ToolTip.Anchor - fullName: XRTK.SDK.UX.ToolTips.ToolTip.Anchor - nameWithType: ToolTip.Anchor -- uid: XRTK.SDK.UX.ToolTips.ToolTip.Anchor* - name: Anchor - href: api/XRTK.SDK.UX.ToolTips.ToolTip.html#XRTK_SDK_UX_ToolTips_ToolTip_Anchor_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTip.Anchor - isSpec: "True" - fullName: XRTK.SDK.UX.ToolTips.ToolTip.Anchor - nameWithType: ToolTip.Anchor -- uid: XRTK.SDK.UX.ToolTips.ToolTip.AnchorPosition - name: AnchorPosition - href: api/XRTK.SDK.UX.ToolTips.ToolTip.html#XRTK_SDK_UX_ToolTips_ToolTip_AnchorPosition - commentId: P:XRTK.SDK.UX.ToolTips.ToolTip.AnchorPosition - fullName: XRTK.SDK.UX.ToolTips.ToolTip.AnchorPosition - nameWithType: ToolTip.AnchorPosition -- uid: XRTK.SDK.UX.ToolTips.ToolTip.AnchorPosition* - name: AnchorPosition - href: api/XRTK.SDK.UX.ToolTips.ToolTip.html#XRTK_SDK_UX_ToolTips_ToolTip_AnchorPosition_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTip.AnchorPosition - isSpec: "True" - fullName: XRTK.SDK.UX.ToolTips.ToolTip.AnchorPosition - nameWithType: ToolTip.AnchorPosition -- uid: XRTK.SDK.UX.ToolTips.ToolTip.AttachPointPosition - name: AttachPointPosition - href: api/XRTK.SDK.UX.ToolTips.ToolTip.html#XRTK_SDK_UX_ToolTips_ToolTip_AttachPointPosition - commentId: P:XRTK.SDK.UX.ToolTips.ToolTip.AttachPointPosition - fullName: XRTK.SDK.UX.ToolTips.ToolTip.AttachPointPosition - nameWithType: ToolTip.AttachPointPosition -- uid: XRTK.SDK.UX.ToolTips.ToolTip.AttachPointPosition* - name: AttachPointPosition - href: api/XRTK.SDK.UX.ToolTips.ToolTip.html#XRTK_SDK_UX_ToolTips_ToolTip_AttachPointPosition_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTip.AttachPointPosition - isSpec: "True" - fullName: XRTK.SDK.UX.ToolTips.ToolTip.AttachPointPosition - nameWithType: ToolTip.AttachPointPosition -- uid: XRTK.SDK.UX.ToolTips.ToolTip.ContentChange - name: ContentChange - href: api/XRTK.SDK.UX.ToolTips.ToolTip.html#XRTK_SDK_UX_ToolTips_ToolTip_ContentChange - commentId: F:XRTK.SDK.UX.ToolTips.ToolTip.ContentChange - fullName: XRTK.SDK.UX.ToolTips.ToolTip.ContentChange - nameWithType: ToolTip.ContentChange -- uid: XRTK.SDK.UX.ToolTips.ToolTip.ContentParentTransform - name: ContentParentTransform - href: api/XRTK.SDK.UX.ToolTips.ToolTip.html#XRTK_SDK_UX_ToolTips_ToolTip_ContentParentTransform - commentId: P:XRTK.SDK.UX.ToolTips.ToolTip.ContentParentTransform - fullName: XRTK.SDK.UX.ToolTips.ToolTip.ContentParentTransform - nameWithType: ToolTip.ContentParentTransform -- uid: XRTK.SDK.UX.ToolTips.ToolTip.ContentParentTransform* - name: ContentParentTransform - href: api/XRTK.SDK.UX.ToolTips.ToolTip.html#XRTK_SDK_UX_ToolTips_ToolTip_ContentParentTransform_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTip.ContentParentTransform - isSpec: "True" - fullName: XRTK.SDK.UX.ToolTips.ToolTip.ContentParentTransform - nameWithType: ToolTip.ContentParentTransform -- uid: XRTK.SDK.UX.ToolTips.ToolTip.ContentScale - name: ContentScale - href: api/XRTK.SDK.UX.ToolTips.ToolTip.html#XRTK_SDK_UX_ToolTips_ToolTip_ContentScale - commentId: P:XRTK.SDK.UX.ToolTips.ToolTip.ContentScale - fullName: XRTK.SDK.UX.ToolTips.ToolTip.ContentScale - nameWithType: ToolTip.ContentScale -- uid: XRTK.SDK.UX.ToolTips.ToolTip.ContentScale* - name: ContentScale - href: api/XRTK.SDK.UX.ToolTips.ToolTip.html#XRTK_SDK_UX_ToolTips_ToolTip_ContentScale_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTip.ContentScale - isSpec: "True" - fullName: XRTK.SDK.UX.ToolTips.ToolTip.ContentScale - nameWithType: ToolTip.ContentScale -- uid: XRTK.SDK.UX.ToolTips.ToolTip.EnforceHierarchy - name: EnforceHierarchy() - href: api/XRTK.SDK.UX.ToolTips.ToolTip.html#XRTK_SDK_UX_ToolTips_ToolTip_EnforceHierarchy - commentId: M:XRTK.SDK.UX.ToolTips.ToolTip.EnforceHierarchy - fullName: XRTK.SDK.UX.ToolTips.ToolTip.EnforceHierarchy() - nameWithType: ToolTip.EnforceHierarchy() -- uid: XRTK.SDK.UX.ToolTips.ToolTip.EnforceHierarchy* - name: EnforceHierarchy - href: api/XRTK.SDK.UX.ToolTips.ToolTip.html#XRTK_SDK_UX_ToolTips_ToolTip_EnforceHierarchy_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTip.EnforceHierarchy - isSpec: "True" - fullName: XRTK.SDK.UX.ToolTips.ToolTip.EnforceHierarchy - nameWithType: ToolTip.EnforceHierarchy -- uid: XRTK.SDK.UX.ToolTips.ToolTip.GroupTipState - name: GroupTipState - href: api/XRTK.SDK.UX.ToolTips.ToolTip.html#XRTK_SDK_UX_ToolTips_ToolTip_GroupTipState - commentId: P:XRTK.SDK.UX.ToolTips.ToolTip.GroupTipState - fullName: XRTK.SDK.UX.ToolTips.ToolTip.GroupTipState - nameWithType: ToolTip.GroupTipState -- uid: XRTK.SDK.UX.ToolTips.ToolTip.GroupTipState* - name: GroupTipState - href: api/XRTK.SDK.UX.ToolTips.ToolTip.html#XRTK_SDK_UX_ToolTips_ToolTip_GroupTipState_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTip.GroupTipState - isSpec: "True" - fullName: XRTK.SDK.UX.ToolTips.ToolTip.GroupTipState - nameWithType: ToolTip.GroupTipState -- uid: XRTK.SDK.UX.ToolTips.ToolTip.HasFocus - name: HasFocus - href: api/XRTK.SDK.UX.ToolTips.ToolTip.html#XRTK_SDK_UX_ToolTips_ToolTip_HasFocus - commentId: P:XRTK.SDK.UX.ToolTips.ToolTip.HasFocus - fullName: XRTK.SDK.UX.ToolTips.ToolTip.HasFocus - nameWithType: ToolTip.HasFocus -- uid: XRTK.SDK.UX.ToolTips.ToolTip.HasFocus* - name: HasFocus - href: api/XRTK.SDK.UX.ToolTips.ToolTip.html#XRTK_SDK_UX_ToolTips_ToolTip_HasFocus_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTip.HasFocus - isSpec: "True" - fullName: XRTK.SDK.UX.ToolTips.ToolTip.HasFocus - nameWithType: ToolTip.HasFocus -- uid: XRTK.SDK.UX.ToolTips.ToolTip.IsOn - name: IsOn - href: api/XRTK.SDK.UX.ToolTips.ToolTip.html#XRTK_SDK_UX_ToolTips_ToolTip_IsOn - commentId: P:XRTK.SDK.UX.ToolTips.ToolTip.IsOn - fullName: XRTK.SDK.UX.ToolTips.ToolTip.IsOn - nameWithType: ToolTip.IsOn -- uid: XRTK.SDK.UX.ToolTips.ToolTip.IsOn* - name: IsOn - href: api/XRTK.SDK.UX.ToolTips.ToolTip.html#XRTK_SDK_UX_ToolTips_ToolTip_IsOn_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTip.IsOn - isSpec: "True" - fullName: XRTK.SDK.UX.ToolTips.ToolTip.IsOn - nameWithType: ToolTip.IsOn -- uid: XRTK.SDK.UX.ToolTips.ToolTip.LocalContentOffset - name: LocalContentOffset - href: api/XRTK.SDK.UX.ToolTips.ToolTip.html#XRTK_SDK_UX_ToolTips_ToolTip_LocalContentOffset - commentId: P:XRTK.SDK.UX.ToolTips.ToolTip.LocalContentOffset - fullName: XRTK.SDK.UX.ToolTips.ToolTip.LocalContentOffset - nameWithType: ToolTip.LocalContentOffset -- uid: XRTK.SDK.UX.ToolTips.ToolTip.LocalContentOffset* - name: LocalContentOffset - href: api/XRTK.SDK.UX.ToolTips.ToolTip.html#XRTK_SDK_UX_ToolTips_ToolTip_LocalContentOffset_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTip.LocalContentOffset - isSpec: "True" - fullName: XRTK.SDK.UX.ToolTips.ToolTip.LocalContentOffset - nameWithType: ToolTip.LocalContentOffset -- uid: XRTK.SDK.UX.ToolTips.ToolTip.LocalContentSize - name: LocalContentSize - href: api/XRTK.SDK.UX.ToolTips.ToolTip.html#XRTK_SDK_UX_ToolTips_ToolTip_LocalContentSize - commentId: P:XRTK.SDK.UX.ToolTips.ToolTip.LocalContentSize - fullName: XRTK.SDK.UX.ToolTips.ToolTip.LocalContentSize - nameWithType: ToolTip.LocalContentSize -- uid: XRTK.SDK.UX.ToolTips.ToolTip.LocalContentSize* - name: LocalContentSize - href: api/XRTK.SDK.UX.ToolTips.ToolTip.html#XRTK_SDK_UX_ToolTips_ToolTip_LocalContentSize_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTip.LocalContentSize - isSpec: "True" - fullName: XRTK.SDK.UX.ToolTips.ToolTip.LocalContentSize - nameWithType: ToolTip.LocalContentSize -- uid: XRTK.SDK.UX.ToolTips.ToolTip.MasterTipState - name: MasterTipState - href: api/XRTK.SDK.UX.ToolTips.ToolTip.html#XRTK_SDK_UX_ToolTips_ToolTip_MasterTipState - commentId: P:XRTK.SDK.UX.ToolTips.ToolTip.MasterTipState - fullName: XRTK.SDK.UX.ToolTips.ToolTip.MasterTipState - nameWithType: ToolTip.MasterTipState -- uid: XRTK.SDK.UX.ToolTips.ToolTip.MasterTipState* - name: MasterTipState - href: api/XRTK.SDK.UX.ToolTips.ToolTip.html#XRTK_SDK_UX_ToolTips_ToolTip_MasterTipState_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTip.MasterTipState - isSpec: "True" - fullName: XRTK.SDK.UX.ToolTips.ToolTip.MasterTipState - nameWithType: ToolTip.MasterTipState -- uid: XRTK.SDK.UX.ToolTips.ToolTip.OnEnable - name: OnEnable() - href: api/XRTK.SDK.UX.ToolTips.ToolTip.html#XRTK_SDK_UX_ToolTips_ToolTip_OnEnable - commentId: M:XRTK.SDK.UX.ToolTips.ToolTip.OnEnable - fullName: XRTK.SDK.UX.ToolTips.ToolTip.OnEnable() - nameWithType: ToolTip.OnEnable() -- uid: XRTK.SDK.UX.ToolTips.ToolTip.OnEnable* - name: OnEnable - href: api/XRTK.SDK.UX.ToolTips.ToolTip.html#XRTK_SDK_UX_ToolTips_ToolTip_OnEnable_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTip.OnEnable - isSpec: "True" - fullName: XRTK.SDK.UX.ToolTips.ToolTip.OnEnable - nameWithType: ToolTip.OnEnable -- uid: XRTK.SDK.UX.ToolTips.ToolTip.Pivot - name: Pivot - href: api/XRTK.SDK.UX.ToolTips.ToolTip.html#XRTK_SDK_UX_ToolTips_ToolTip_Pivot - commentId: P:XRTK.SDK.UX.ToolTips.ToolTip.Pivot - fullName: XRTK.SDK.UX.ToolTips.ToolTip.Pivot - nameWithType: ToolTip.Pivot -- uid: XRTK.SDK.UX.ToolTips.ToolTip.Pivot* - name: Pivot - href: api/XRTK.SDK.UX.ToolTips.ToolTip.html#XRTK_SDK_UX_ToolTips_ToolTip_Pivot_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTip.Pivot - isSpec: "True" - fullName: XRTK.SDK.UX.ToolTips.ToolTip.Pivot - nameWithType: ToolTip.Pivot -- uid: XRTK.SDK.UX.ToolTips.ToolTip.PivotPosition - name: PivotPosition - href: api/XRTK.SDK.UX.ToolTips.ToolTip.html#XRTK_SDK_UX_ToolTips_ToolTip_PivotPosition - commentId: P:XRTK.SDK.UX.ToolTips.ToolTip.PivotPosition - fullName: XRTK.SDK.UX.ToolTips.ToolTip.PivotPosition - nameWithType: ToolTip.PivotPosition -- uid: XRTK.SDK.UX.ToolTips.ToolTip.PivotPosition* - name: PivotPosition - href: api/XRTK.SDK.UX.ToolTips.ToolTip.html#XRTK_SDK_UX_ToolTips_ToolTip_PivotPosition_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTip.PivotPosition - isSpec: "True" - fullName: XRTK.SDK.UX.ToolTips.ToolTip.PivotPosition - nameWithType: ToolTip.PivotPosition -- uid: XRTK.SDK.UX.ToolTips.ToolTip.PivotType - name: PivotType - href: api/XRTK.SDK.UX.ToolTips.ToolTip.html#XRTK_SDK_UX_ToolTips_ToolTip_PivotType - commentId: P:XRTK.SDK.UX.ToolTips.ToolTip.PivotType - fullName: XRTK.SDK.UX.ToolTips.ToolTip.PivotType - nameWithType: ToolTip.PivotType -- uid: XRTK.SDK.UX.ToolTips.ToolTip.PivotType* - name: PivotType - href: api/XRTK.SDK.UX.ToolTips.ToolTip.html#XRTK_SDK_UX_ToolTips_ToolTip_PivotType_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTip.PivotType - isSpec: "True" - fullName: XRTK.SDK.UX.ToolTips.ToolTip.PivotType - nameWithType: ToolTip.PivotType -- uid: XRTK.SDK.UX.ToolTips.ToolTip.RefreshLocalContent - name: RefreshLocalContent() - href: api/XRTK.SDK.UX.ToolTips.ToolTip.html#XRTK_SDK_UX_ToolTips_ToolTip_RefreshLocalContent - commentId: M:XRTK.SDK.UX.ToolTips.ToolTip.RefreshLocalContent - fullName: XRTK.SDK.UX.ToolTips.ToolTip.RefreshLocalContent() - nameWithType: ToolTip.RefreshLocalContent() -- uid: XRTK.SDK.UX.ToolTips.ToolTip.RefreshLocalContent* - name: RefreshLocalContent - href: api/XRTK.SDK.UX.ToolTips.ToolTip.html#XRTK_SDK_UX_ToolTips_ToolTip_RefreshLocalContent_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTip.RefreshLocalContent - isSpec: "True" - fullName: XRTK.SDK.UX.ToolTips.ToolTip.RefreshLocalContent - nameWithType: ToolTip.RefreshLocalContent -- uid: XRTK.SDK.UX.ToolTips.ToolTip.ShowBackground - name: ShowBackground - href: api/XRTK.SDK.UX.ToolTips.ToolTip.html#XRTK_SDK_UX_ToolTips_ToolTip_ShowBackground - commentId: P:XRTK.SDK.UX.ToolTips.ToolTip.ShowBackground - fullName: XRTK.SDK.UX.ToolTips.ToolTip.ShowBackground - nameWithType: ToolTip.ShowBackground -- uid: XRTK.SDK.UX.ToolTips.ToolTip.ShowBackground* - name: ShowBackground - href: api/XRTK.SDK.UX.ToolTips.ToolTip.html#XRTK_SDK_UX_ToolTips_ToolTip_ShowBackground_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTip.ShowBackground - isSpec: "True" - fullName: XRTK.SDK.UX.ToolTips.ToolTip.ShowBackground - nameWithType: ToolTip.ShowBackground -- uid: XRTK.SDK.UX.ToolTips.ToolTip.ShowConnector - name: ShowConnector - href: api/XRTK.SDK.UX.ToolTips.ToolTip.html#XRTK_SDK_UX_ToolTips_ToolTip_ShowConnector - commentId: P:XRTK.SDK.UX.ToolTips.ToolTip.ShowConnector - fullName: XRTK.SDK.UX.ToolTips.ToolTip.ShowConnector - nameWithType: ToolTip.ShowConnector -- uid: XRTK.SDK.UX.ToolTips.ToolTip.ShowConnector* - name: ShowConnector - href: api/XRTK.SDK.UX.ToolTips.ToolTip.html#XRTK_SDK_UX_ToolTips_ToolTip_ShowConnector_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTip.ShowConnector - isSpec: "True" - fullName: XRTK.SDK.UX.ToolTips.ToolTip.ShowConnector - nameWithType: ToolTip.ShowConnector -- uid: XRTK.SDK.UX.ToolTips.ToolTip.ShowOutline - name: ShowOutline - href: api/XRTK.SDK.UX.ToolTips.ToolTip.html#XRTK_SDK_UX_ToolTips_ToolTip_ShowOutline - commentId: P:XRTK.SDK.UX.ToolTips.ToolTip.ShowOutline - fullName: XRTK.SDK.UX.ToolTips.ToolTip.ShowOutline - nameWithType: ToolTip.ShowOutline -- uid: XRTK.SDK.UX.ToolTips.ToolTip.ShowOutline* - name: ShowOutline - href: api/XRTK.SDK.UX.ToolTips.ToolTip.html#XRTK_SDK_UX_ToolTips_ToolTip_ShowOutline_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTip.ShowOutline - isSpec: "True" - fullName: XRTK.SDK.UX.ToolTips.ToolTip.ShowOutline - nameWithType: ToolTip.ShowOutline -- uid: XRTK.SDK.UX.ToolTips.ToolTip.TipState - name: TipState - href: api/XRTK.SDK.UX.ToolTips.ToolTip.html#XRTK_SDK_UX_ToolTips_ToolTip_TipState - commentId: P:XRTK.SDK.UX.ToolTips.ToolTip.TipState - fullName: XRTK.SDK.UX.ToolTips.ToolTip.TipState - nameWithType: ToolTip.TipState -- uid: XRTK.SDK.UX.ToolTips.ToolTip.TipState* - name: TipState - href: api/XRTK.SDK.UX.ToolTips.ToolTip.html#XRTK_SDK_UX_ToolTips_ToolTip_TipState_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTip.TipState - isSpec: "True" - fullName: XRTK.SDK.UX.ToolTips.ToolTip.TipState - nameWithType: ToolTip.TipState -- uid: XRTK.SDK.UX.ToolTips.ToolTip.ToolTipText - name: ToolTipText - href: api/XRTK.SDK.UX.ToolTips.ToolTip.html#XRTK_SDK_UX_ToolTips_ToolTip_ToolTipText - commentId: P:XRTK.SDK.UX.ToolTips.ToolTip.ToolTipText - fullName: XRTK.SDK.UX.ToolTips.ToolTip.ToolTipText - nameWithType: ToolTip.ToolTipText -- uid: XRTK.SDK.UX.ToolTips.ToolTip.ToolTipText* - name: ToolTipText - href: api/XRTK.SDK.UX.ToolTips.ToolTip.html#XRTK_SDK_UX_ToolTips_ToolTip_ToolTipText_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTip.ToolTipText - isSpec: "True" - fullName: XRTK.SDK.UX.ToolTips.ToolTip.ToolTipText - nameWithType: ToolTip.ToolTipText -- uid: XRTK.SDK.UX.ToolTips.ToolTip.Update - name: Update() - href: api/XRTK.SDK.UX.ToolTips.ToolTip.html#XRTK_SDK_UX_ToolTips_ToolTip_Update - commentId: M:XRTK.SDK.UX.ToolTips.ToolTip.Update - fullName: XRTK.SDK.UX.ToolTips.ToolTip.Update() - nameWithType: ToolTip.Update() -- uid: XRTK.SDK.UX.ToolTips.ToolTip.Update* - name: Update - href: api/XRTK.SDK.UX.ToolTips.ToolTip.html#XRTK_SDK_UX_ToolTips_ToolTip_Update_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTip.Update - isSpec: "True" - fullName: XRTK.SDK.UX.ToolTips.ToolTip.Update - nameWithType: ToolTip.Update -- uid: XRTK.SDK.UX.ToolTips.ToolTipAttachPointType - name: ToolTipAttachPointType - href: api/XRTK.SDK.UX.ToolTips.ToolTipAttachPointType.html - commentId: T:XRTK.SDK.UX.ToolTips.ToolTipAttachPointType - fullName: XRTK.SDK.UX.ToolTips.ToolTipAttachPointType - nameWithType: ToolTipAttachPointType -- uid: XRTK.SDK.UX.ToolTips.ToolTipAttachPointType.BottomLeftCorner - name: BottomLeftCorner - href: api/XRTK.SDK.UX.ToolTips.ToolTipAttachPointType.html#XRTK_SDK_UX_ToolTips_ToolTipAttachPointType_BottomLeftCorner - commentId: F:XRTK.SDK.UX.ToolTips.ToolTipAttachPointType.BottomLeftCorner - fullName: XRTK.SDK.UX.ToolTips.ToolTipAttachPointType.BottomLeftCorner - nameWithType: ToolTipAttachPointType.BottomLeftCorner -- uid: XRTK.SDK.UX.ToolTips.ToolTipAttachPointType.BottomMiddle - name: BottomMiddle - href: api/XRTK.SDK.UX.ToolTips.ToolTipAttachPointType.html#XRTK_SDK_UX_ToolTips_ToolTipAttachPointType_BottomMiddle - commentId: F:XRTK.SDK.UX.ToolTips.ToolTipAttachPointType.BottomMiddle - fullName: XRTK.SDK.UX.ToolTips.ToolTipAttachPointType.BottomMiddle - nameWithType: ToolTipAttachPointType.BottomMiddle -- uid: XRTK.SDK.UX.ToolTips.ToolTipAttachPointType.BottomRightCorner - name: BottomRightCorner - href: api/XRTK.SDK.UX.ToolTips.ToolTipAttachPointType.html#XRTK_SDK_UX_ToolTips_ToolTipAttachPointType_BottomRightCorner - commentId: F:XRTK.SDK.UX.ToolTips.ToolTipAttachPointType.BottomRightCorner - fullName: XRTK.SDK.UX.ToolTips.ToolTipAttachPointType.BottomRightCorner - nameWithType: ToolTipAttachPointType.BottomRightCorner -- uid: XRTK.SDK.UX.ToolTips.ToolTipAttachPointType.Center - name: Center - href: api/XRTK.SDK.UX.ToolTips.ToolTipAttachPointType.html#XRTK_SDK_UX_ToolTips_ToolTipAttachPointType_Center - commentId: F:XRTK.SDK.UX.ToolTips.ToolTipAttachPointType.Center - fullName: XRTK.SDK.UX.ToolTips.ToolTipAttachPointType.Center - nameWithType: ToolTipAttachPointType.Center -- uid: XRTK.SDK.UX.ToolTips.ToolTipAttachPointType.Closest - name: Closest - href: api/XRTK.SDK.UX.ToolTips.ToolTipAttachPointType.html#XRTK_SDK_UX_ToolTips_ToolTipAttachPointType_Closest - commentId: F:XRTK.SDK.UX.ToolTips.ToolTipAttachPointType.Closest - fullName: XRTK.SDK.UX.ToolTips.ToolTipAttachPointType.Closest - nameWithType: ToolTipAttachPointType.Closest -- uid: XRTK.SDK.UX.ToolTips.ToolTipAttachPointType.ClosestCorner - name: ClosestCorner - href: api/XRTK.SDK.UX.ToolTips.ToolTipAttachPointType.html#XRTK_SDK_UX_ToolTips_ToolTipAttachPointType_ClosestCorner - commentId: F:XRTK.SDK.UX.ToolTips.ToolTipAttachPointType.ClosestCorner - fullName: XRTK.SDK.UX.ToolTips.ToolTipAttachPointType.ClosestCorner - nameWithType: ToolTipAttachPointType.ClosestCorner -- uid: XRTK.SDK.UX.ToolTips.ToolTipAttachPointType.ClosestMiddle - name: ClosestMiddle - href: api/XRTK.SDK.UX.ToolTips.ToolTipAttachPointType.html#XRTK_SDK_UX_ToolTips_ToolTipAttachPointType_ClosestMiddle - commentId: F:XRTK.SDK.UX.ToolTips.ToolTipAttachPointType.ClosestMiddle - fullName: XRTK.SDK.UX.ToolTips.ToolTipAttachPointType.ClosestMiddle - nameWithType: ToolTipAttachPointType.ClosestMiddle -- uid: XRTK.SDK.UX.ToolTips.ToolTipAttachPointType.LeftMiddle - name: LeftMiddle - href: api/XRTK.SDK.UX.ToolTips.ToolTipAttachPointType.html#XRTK_SDK_UX_ToolTips_ToolTipAttachPointType_LeftMiddle - commentId: F:XRTK.SDK.UX.ToolTips.ToolTipAttachPointType.LeftMiddle - fullName: XRTK.SDK.UX.ToolTips.ToolTipAttachPointType.LeftMiddle - nameWithType: ToolTipAttachPointType.LeftMiddle -- uid: XRTK.SDK.UX.ToolTips.ToolTipAttachPointType.RightMiddle - name: RightMiddle - href: api/XRTK.SDK.UX.ToolTips.ToolTipAttachPointType.html#XRTK_SDK_UX_ToolTips_ToolTipAttachPointType_RightMiddle - commentId: F:XRTK.SDK.UX.ToolTips.ToolTipAttachPointType.RightMiddle - fullName: XRTK.SDK.UX.ToolTips.ToolTipAttachPointType.RightMiddle - nameWithType: ToolTipAttachPointType.RightMiddle -- uid: XRTK.SDK.UX.ToolTips.ToolTipAttachPointType.TopLeftCorner - name: TopLeftCorner - href: api/XRTK.SDK.UX.ToolTips.ToolTipAttachPointType.html#XRTK_SDK_UX_ToolTips_ToolTipAttachPointType_TopLeftCorner - commentId: F:XRTK.SDK.UX.ToolTips.ToolTipAttachPointType.TopLeftCorner - fullName: XRTK.SDK.UX.ToolTips.ToolTipAttachPointType.TopLeftCorner - nameWithType: ToolTipAttachPointType.TopLeftCorner -- uid: XRTK.SDK.UX.ToolTips.ToolTipAttachPointType.TopMiddle - name: TopMiddle - href: api/XRTK.SDK.UX.ToolTips.ToolTipAttachPointType.html#XRTK_SDK_UX_ToolTips_ToolTipAttachPointType_TopMiddle - commentId: F:XRTK.SDK.UX.ToolTips.ToolTipAttachPointType.TopMiddle - fullName: XRTK.SDK.UX.ToolTips.ToolTipAttachPointType.TopMiddle - nameWithType: ToolTipAttachPointType.TopMiddle -- uid: XRTK.SDK.UX.ToolTips.ToolTipAttachPointType.TopRightCorner - name: TopRightCorner - href: api/XRTK.SDK.UX.ToolTips.ToolTipAttachPointType.html#XRTK_SDK_UX_ToolTips_ToolTipAttachPointType_TopRightCorner - commentId: F:XRTK.SDK.UX.ToolTips.ToolTipAttachPointType.TopRightCorner - fullName: XRTK.SDK.UX.ToolTips.ToolTipAttachPointType.TopRightCorner - nameWithType: ToolTipAttachPointType.TopRightCorner -- uid: XRTK.SDK.UX.ToolTips.ToolTipBackground - name: ToolTipBackground - href: api/XRTK.SDK.UX.ToolTips.ToolTipBackground.html - commentId: T:XRTK.SDK.UX.ToolTips.ToolTipBackground - fullName: XRTK.SDK.UX.ToolTips.ToolTipBackground - nameWithType: ToolTipBackground -- uid: XRTK.SDK.UX.ToolTips.ToolTipBackground.ContentChange - name: ContentChange() - href: api/XRTK.SDK.UX.ToolTips.ToolTipBackground.html#XRTK_SDK_UX_ToolTips_ToolTipBackground_ContentChange - commentId: M:XRTK.SDK.UX.ToolTips.ToolTipBackground.ContentChange - fullName: XRTK.SDK.UX.ToolTips.ToolTipBackground.ContentChange() - nameWithType: ToolTipBackground.ContentChange() -- uid: XRTK.SDK.UX.ToolTips.ToolTipBackground.ContentChange* - name: ContentChange - href: api/XRTK.SDK.UX.ToolTips.ToolTipBackground.html#XRTK_SDK_UX_ToolTips_ToolTipBackground_ContentChange_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTipBackground.ContentChange - isSpec: "True" - fullName: XRTK.SDK.UX.ToolTips.ToolTipBackground.ContentChange - nameWithType: ToolTipBackground.ContentChange -- uid: XRTK.SDK.UX.ToolTips.ToolTipBackground.OnEnable - name: OnEnable() - href: api/XRTK.SDK.UX.ToolTips.ToolTipBackground.html#XRTK_SDK_UX_ToolTips_ToolTipBackground_OnEnable - commentId: M:XRTK.SDK.UX.ToolTips.ToolTipBackground.OnEnable - fullName: XRTK.SDK.UX.ToolTips.ToolTipBackground.OnEnable() - nameWithType: ToolTipBackground.OnEnable() -- uid: XRTK.SDK.UX.ToolTips.ToolTipBackground.OnEnable* - name: OnEnable - href: api/XRTK.SDK.UX.ToolTips.ToolTipBackground.html#XRTK_SDK_UX_ToolTips_ToolTipBackground_OnEnable_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTipBackground.OnEnable - isSpec: "True" - fullName: XRTK.SDK.UX.ToolTips.ToolTipBackground.OnEnable - nameWithType: ToolTipBackground.OnEnable -- uid: XRTK.SDK.UX.ToolTips.ToolTipBackground.ScaleToFitContent - name: ScaleToFitContent() - href: api/XRTK.SDK.UX.ToolTips.ToolTipBackground.html#XRTK_SDK_UX_ToolTips_ToolTipBackground_ScaleToFitContent - commentId: M:XRTK.SDK.UX.ToolTips.ToolTipBackground.ScaleToFitContent - fullName: XRTK.SDK.UX.ToolTips.ToolTipBackground.ScaleToFitContent() - nameWithType: ToolTipBackground.ScaleToFitContent() -- uid: XRTK.SDK.UX.ToolTips.ToolTipBackground.ScaleToFitContent* - name: ScaleToFitContent - href: api/XRTK.SDK.UX.ToolTips.ToolTipBackground.html#XRTK_SDK_UX_ToolTips_ToolTipBackground_ScaleToFitContent_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTipBackground.ScaleToFitContent - isSpec: "True" - fullName: XRTK.SDK.UX.ToolTips.ToolTipBackground.ScaleToFitContent - nameWithType: ToolTipBackground.ScaleToFitContent -- uid: XRTK.SDK.UX.ToolTips.ToolTipBackground.ToolTipContent - name: ToolTipContent - href: api/XRTK.SDK.UX.ToolTips.ToolTipBackground.html#XRTK_SDK_UX_ToolTips_ToolTipBackground_ToolTipContent - commentId: P:XRTK.SDK.UX.ToolTips.ToolTipBackground.ToolTipContent - fullName: XRTK.SDK.UX.ToolTips.ToolTipBackground.ToolTipContent - nameWithType: ToolTipBackground.ToolTipContent -- uid: XRTK.SDK.UX.ToolTips.ToolTipBackground.ToolTipContent* - name: ToolTipContent - href: api/XRTK.SDK.UX.ToolTips.ToolTipBackground.html#XRTK_SDK_UX_ToolTips_ToolTipBackground_ToolTipContent_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTipBackground.ToolTipContent - isSpec: "True" - fullName: XRTK.SDK.UX.ToolTips.ToolTipBackground.ToolTipContent - nameWithType: ToolTipBackground.ToolTipContent -- uid: XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob - name: ToolTipBackgroundBlob - href: api/XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.html - commentId: T:XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob - fullName: XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob - nameWithType: ToolTipBackgroundBlob -- uid: XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.BackgroundRenderer - name: BackgroundRenderer - href: api/XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.html#XRTK_SDK_UX_ToolTips_ToolTipBackgroundBlob_BackgroundRenderer - commentId: F:XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.BackgroundRenderer - fullName: XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.BackgroundRenderer - nameWithType: ToolTipBackgroundBlob.BackgroundRenderer -- uid: XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.BlobDistortion - name: BlobDistortion - href: api/XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.html#XRTK_SDK_UX_ToolTips_ToolTipBackgroundBlob_BlobDistortion - commentId: P:XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.BlobDistortion - fullName: XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.BlobDistortion - nameWithType: ToolTipBackgroundBlob.BlobDistortion -- uid: XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.BlobDistortion* - name: BlobDistortion - href: api/XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.html#XRTK_SDK_UX_ToolTips_ToolTipBackgroundBlob_BlobDistortion_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.BlobDistortion - isSpec: "True" - fullName: XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.BlobDistortion - nameWithType: ToolTipBackgroundBlob.BlobDistortion -- uid: XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.BlobInertia - name: BlobInertia - href: api/XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.html#XRTK_SDK_UX_ToolTips_ToolTipBackgroundBlob_BlobInertia - commentId: P:XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.BlobInertia - fullName: XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.BlobInertia - nameWithType: ToolTipBackgroundBlob.BlobInertia -- uid: XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.BlobInertia* - name: BlobInertia - href: api/XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.html#XRTK_SDK_UX_ToolTips_ToolTipBackgroundBlob_BlobInertia_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.BlobInertia - isSpec: "True" - fullName: XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.BlobInertia - nameWithType: ToolTipBackgroundBlob.BlobInertia -- uid: XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.BlobOffset - name: BlobOffset - href: api/XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.html#XRTK_SDK_UX_ToolTips_ToolTipBackgroundBlob_BlobOffset - commentId: P:XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.BlobOffset - fullName: XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.BlobOffset - nameWithType: ToolTipBackgroundBlob.BlobOffset -- uid: XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.BlobOffset* - name: BlobOffset - href: api/XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.html#XRTK_SDK_UX_ToolTips_ToolTipBackgroundBlob_BlobOffset_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.BlobOffset - isSpec: "True" - fullName: XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.BlobOffset - nameWithType: ToolTipBackgroundBlob.BlobOffset -- uid: XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.BlobRotation - name: BlobRotation - href: api/XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.html#XRTK_SDK_UX_ToolTips_ToolTipBackgroundBlob_BlobRotation - commentId: P:XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.BlobRotation - fullName: XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.BlobRotation - nameWithType: ToolTipBackgroundBlob.BlobRotation -- uid: XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.BlobRotation* - name: BlobRotation - href: api/XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.html#XRTK_SDK_UX_ToolTips_ToolTipBackgroundBlob_BlobRotation_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.BlobRotation - isSpec: "True" - fullName: XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.BlobRotation - nameWithType: ToolTipBackgroundBlob.BlobRotation -- uid: XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.DistortionCorrectionStrength - name: DistortionCorrectionStrength - href: api/XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.html#XRTK_SDK_UX_ToolTips_ToolTipBackgroundBlob_DistortionCorrectionStrength - commentId: P:XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.DistortionCorrectionStrength - fullName: XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.DistortionCorrectionStrength - nameWithType: ToolTipBackgroundBlob.DistortionCorrectionStrength -- uid: XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.DistortionCorrectionStrength* - name: DistortionCorrectionStrength - href: api/XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.html#XRTK_SDK_UX_ToolTips_ToolTipBackgroundBlob_DistortionCorrectionStrength_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.DistortionCorrectionStrength - isSpec: "True" - fullName: XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.DistortionCorrectionStrength - nameWithType: ToolTipBackgroundBlob.DistortionCorrectionStrength -- uid: XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.OnEnable - name: OnEnable() - href: api/XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.html#XRTK_SDK_UX_ToolTips_ToolTipBackgroundBlob_OnEnable - commentId: M:XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.OnEnable - fullName: XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.OnEnable() - nameWithType: ToolTipBackgroundBlob.OnEnable() -- uid: XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.OnEnable* - name: OnEnable - href: api/XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.html#XRTK_SDK_UX_ToolTips_ToolTipBackgroundBlob_OnEnable_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.OnEnable - isSpec: "True" - fullName: XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.OnEnable - nameWithType: ToolTipBackgroundBlob.OnEnable -- uid: XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.PositionCorrectionStrength - name: PositionCorrectionStrength - href: api/XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.html#XRTK_SDK_UX_ToolTips_ToolTipBackgroundBlob_PositionCorrectionStrength - commentId: P:XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.PositionCorrectionStrength - fullName: XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.PositionCorrectionStrength - nameWithType: ToolTipBackgroundBlob.PositionCorrectionStrength -- uid: XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.PositionCorrectionStrength* - name: PositionCorrectionStrength - href: api/XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.html#XRTK_SDK_UX_ToolTips_ToolTipBackgroundBlob_PositionCorrectionStrength_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.PositionCorrectionStrength - isSpec: "True" - fullName: XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.PositionCorrectionStrength - nameWithType: ToolTipBackgroundBlob.PositionCorrectionStrength -- uid: XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.RotationCorrectionStrength - name: RotationCorrectionStrength - href: api/XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.html#XRTK_SDK_UX_ToolTips_ToolTipBackgroundBlob_RotationCorrectionStrength - commentId: P:XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.RotationCorrectionStrength - fullName: XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.RotationCorrectionStrength - nameWithType: ToolTipBackgroundBlob.RotationCorrectionStrength -- uid: XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.RotationCorrectionStrength* - name: RotationCorrectionStrength - href: api/XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.html#XRTK_SDK_UX_ToolTips_ToolTipBackgroundBlob_RotationCorrectionStrength_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.RotationCorrectionStrength - isSpec: "True" - fullName: XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.RotationCorrectionStrength - nameWithType: ToolTipBackgroundBlob.RotationCorrectionStrength -- uid: XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.ScaleToFitContent - name: ScaleToFitContent() - href: api/XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.html#XRTK_SDK_UX_ToolTips_ToolTipBackgroundBlob_ScaleToFitContent - commentId: M:XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.ScaleToFitContent - fullName: XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.ScaleToFitContent() - nameWithType: ToolTipBackgroundBlob.ScaleToFitContent() -- uid: XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.ScaleToFitContent* - name: ScaleToFitContent - href: api/XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.html#XRTK_SDK_UX_ToolTips_ToolTipBackgroundBlob_ScaleToFitContent_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.ScaleToFitContent - isSpec: "True" - fullName: XRTK.SDK.UX.ToolTips.ToolTipBackgroundBlob.ScaleToFitContent - nameWithType: ToolTipBackgroundBlob.ScaleToFitContent -- uid: XRTK.SDK.UX.ToolTips.ToolTipBackgroundCorners - name: ToolTipBackgroundCorners - href: api/XRTK.SDK.UX.ToolTips.ToolTipBackgroundCorners.html - commentId: T:XRTK.SDK.UX.ToolTips.ToolTipBackgroundCorners - fullName: XRTK.SDK.UX.ToolTips.ToolTipBackgroundCorners - nameWithType: ToolTipBackgroundCorners -- uid: XRTK.SDK.UX.ToolTips.ToolTipBackgroundCorners.ContentChange - name: ContentChange() - href: api/XRTK.SDK.UX.ToolTips.ToolTipBackgroundCorners.html#XRTK_SDK_UX_ToolTips_ToolTipBackgroundCorners_ContentChange - commentId: M:XRTK.SDK.UX.ToolTips.ToolTipBackgroundCorners.ContentChange - fullName: XRTK.SDK.UX.ToolTips.ToolTipBackgroundCorners.ContentChange() - nameWithType: ToolTipBackgroundCorners.ContentChange() -- uid: XRTK.SDK.UX.ToolTips.ToolTipBackgroundCorners.ContentChange* - name: ContentChange - href: api/XRTK.SDK.UX.ToolTips.ToolTipBackgroundCorners.html#XRTK_SDK_UX_ToolTips_ToolTipBackgroundCorners_ContentChange_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTipBackgroundCorners.ContentChange - isSpec: "True" - fullName: XRTK.SDK.UX.ToolTips.ToolTipBackgroundCorners.ContentChange - nameWithType: ToolTipBackgroundCorners.ContentChange -- uid: XRTK.SDK.UX.ToolTips.ToolTipBackgroundCorners.ScaleToFitContent - name: ScaleToFitContent() - href: api/XRTK.SDK.UX.ToolTips.ToolTipBackgroundCorners.html#XRTK_SDK_UX_ToolTips_ToolTipBackgroundCorners_ScaleToFitContent - commentId: M:XRTK.SDK.UX.ToolTips.ToolTipBackgroundCorners.ScaleToFitContent - fullName: XRTK.SDK.UX.ToolTips.ToolTipBackgroundCorners.ScaleToFitContent() - nameWithType: ToolTipBackgroundCorners.ScaleToFitContent() -- uid: XRTK.SDK.UX.ToolTips.ToolTipBackgroundCorners.ScaleToFitContent* - name: ScaleToFitContent - href: api/XRTK.SDK.UX.ToolTips.ToolTipBackgroundCorners.html#XRTK_SDK_UX_ToolTips_ToolTipBackgroundCorners_ScaleToFitContent_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTipBackgroundCorners.ScaleToFitContent - isSpec: "True" - fullName: XRTK.SDK.UX.ToolTips.ToolTipBackgroundCorners.ScaleToFitContent - nameWithType: ToolTipBackgroundCorners.ScaleToFitContent -- uid: XRTK.SDK.UX.ToolTips.ToolTipBackgroundMesh - name: ToolTipBackgroundMesh - href: api/XRTK.SDK.UX.ToolTips.ToolTipBackgroundMesh.html - commentId: T:XRTK.SDK.UX.ToolTips.ToolTipBackgroundMesh - fullName: XRTK.SDK.UX.ToolTips.ToolTipBackgroundMesh - nameWithType: ToolTipBackgroundMesh -- uid: XRTK.SDK.UX.ToolTips.ToolTipBackgroundMesh.BackgroundRenderer - name: BackgroundRenderer - href: api/XRTK.SDK.UX.ToolTips.ToolTipBackgroundMesh.html#XRTK_SDK_UX_ToolTips_ToolTipBackgroundMesh_BackgroundRenderer - commentId: F:XRTK.SDK.UX.ToolTips.ToolTipBackgroundMesh.BackgroundRenderer - fullName: XRTK.SDK.UX.ToolTips.ToolTipBackgroundMesh.BackgroundRenderer - nameWithType: ToolTipBackgroundMesh.BackgroundRenderer -- uid: XRTK.SDK.UX.ToolTips.ToolTipBackgroundMesh.BackgroundTransform - name: BackgroundTransform - href: api/XRTK.SDK.UX.ToolTips.ToolTipBackgroundMesh.html#XRTK_SDK_UX_ToolTips_ToolTipBackgroundMesh_BackgroundTransform - commentId: P:XRTK.SDK.UX.ToolTips.ToolTipBackgroundMesh.BackgroundTransform - fullName: XRTK.SDK.UX.ToolTips.ToolTipBackgroundMesh.BackgroundTransform - nameWithType: ToolTipBackgroundMesh.BackgroundTransform -- uid: XRTK.SDK.UX.ToolTips.ToolTipBackgroundMesh.BackgroundTransform* - name: BackgroundTransform - href: api/XRTK.SDK.UX.ToolTips.ToolTipBackgroundMesh.html#XRTK_SDK_UX_ToolTips_ToolTipBackgroundMesh_BackgroundTransform_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTipBackgroundMesh.BackgroundTransform - isSpec: "True" - fullName: XRTK.SDK.UX.ToolTips.ToolTipBackgroundMesh.BackgroundTransform - nameWithType: ToolTipBackgroundMesh.BackgroundTransform -- uid: XRTK.SDK.UX.ToolTips.ToolTipBackgroundMesh.IsVisible - name: IsVisible - href: api/XRTK.SDK.UX.ToolTips.ToolTipBackgroundMesh.html#XRTK_SDK_UX_ToolTips_ToolTipBackgroundMesh_IsVisible - commentId: P:XRTK.SDK.UX.ToolTips.ToolTipBackgroundMesh.IsVisible - fullName: XRTK.SDK.UX.ToolTips.ToolTipBackgroundMesh.IsVisible - nameWithType: ToolTipBackgroundMesh.IsVisible -- uid: XRTK.SDK.UX.ToolTips.ToolTipBackgroundMesh.IsVisible* - name: IsVisible - href: api/XRTK.SDK.UX.ToolTips.ToolTipBackgroundMesh.html#XRTK_SDK_UX_ToolTips_ToolTipBackgroundMesh_IsVisible_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTipBackgroundMesh.IsVisible - isSpec: "True" - fullName: XRTK.SDK.UX.ToolTips.ToolTipBackgroundMesh.IsVisible - nameWithType: ToolTipBackgroundMesh.IsVisible -- uid: XRTK.SDK.UX.ToolTips.ToolTipBackgroundMesh.ScaleToFitContent - name: ScaleToFitContent() - href: api/XRTK.SDK.UX.ToolTips.ToolTipBackgroundMesh.html#XRTK_SDK_UX_ToolTips_ToolTipBackgroundMesh_ScaleToFitContent - commentId: M:XRTK.SDK.UX.ToolTips.ToolTipBackgroundMesh.ScaleToFitContent - fullName: XRTK.SDK.UX.ToolTips.ToolTipBackgroundMesh.ScaleToFitContent() - nameWithType: ToolTipBackgroundMesh.ScaleToFitContent() -- uid: XRTK.SDK.UX.ToolTips.ToolTipBackgroundMesh.ScaleToFitContent* - name: ScaleToFitContent - href: api/XRTK.SDK.UX.ToolTips.ToolTipBackgroundMesh.html#XRTK_SDK_UX_ToolTips_ToolTipBackgroundMesh_ScaleToFitContent_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTipBackgroundMesh.ScaleToFitContent - isSpec: "True" - fullName: XRTK.SDK.UX.ToolTips.ToolTipBackgroundMesh.ScaleToFitContent - nameWithType: ToolTipBackgroundMesh.ScaleToFitContent -- uid: XRTK.SDK.UX.ToolTips.ToolTipConnector - name: ToolTipConnector - href: api/XRTK.SDK.UX.ToolTips.ToolTipConnector.html - commentId: T:XRTK.SDK.UX.ToolTips.ToolTipConnector - fullName: XRTK.SDK.UX.ToolTips.ToolTipConnector - nameWithType: ToolTipConnector -- uid: XRTK.SDK.UX.ToolTips.ToolTipConnector.ConnectorFollowingType - name: ConnectorFollowingType - href: api/XRTK.SDK.UX.ToolTips.ToolTipConnector.html#XRTK_SDK_UX_ToolTips_ToolTipConnector_ConnectorFollowingType - commentId: P:XRTK.SDK.UX.ToolTips.ToolTipConnector.ConnectorFollowingType - fullName: XRTK.SDK.UX.ToolTips.ToolTipConnector.ConnectorFollowingType - nameWithType: ToolTipConnector.ConnectorFollowingType -- uid: XRTK.SDK.UX.ToolTips.ToolTipConnector.ConnectorFollowingType* - name: ConnectorFollowingType - href: api/XRTK.SDK.UX.ToolTips.ToolTipConnector.html#XRTK_SDK_UX_ToolTips_ToolTipConnector_ConnectorFollowingType_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTipConnector.ConnectorFollowingType - isSpec: "True" - fullName: XRTK.SDK.UX.ToolTips.ToolTipConnector.ConnectorFollowingType - nameWithType: ToolTipConnector.ConnectorFollowingType -- uid: XRTK.SDK.UX.ToolTips.ToolTipConnector.GetDirectionFromPivotDirection(XRTK.SDK.UX.ToolTips.ConnectorPivotDirectionType,UnityEngine.Vector3,UnityEngine.Transform) - name: GetDirectionFromPivotDirection(ConnectorPivotDirectionType, Vector3, Transform) - href: api/XRTK.SDK.UX.ToolTips.ToolTipConnector.html#XRTK_SDK_UX_ToolTips_ToolTipConnector_GetDirectionFromPivotDirection_XRTK_SDK_UX_ToolTips_ConnectorPivotDirectionType_UnityEngine_Vector3_UnityEngine_Transform_ - commentId: M:XRTK.SDK.UX.ToolTips.ToolTipConnector.GetDirectionFromPivotDirection(XRTK.SDK.UX.ToolTips.ConnectorPivotDirectionType,UnityEngine.Vector3,UnityEngine.Transform) - fullName: XRTK.SDK.UX.ToolTips.ToolTipConnector.GetDirectionFromPivotDirection(XRTK.SDK.UX.ToolTips.ConnectorPivotDirectionType, UnityEngine.Vector3, UnityEngine.Transform) - nameWithType: ToolTipConnector.GetDirectionFromPivotDirection(ConnectorPivotDirectionType, Vector3, Transform) -- uid: XRTK.SDK.UX.ToolTips.ToolTipConnector.GetDirectionFromPivotDirection* - name: GetDirectionFromPivotDirection - href: api/XRTK.SDK.UX.ToolTips.ToolTipConnector.html#XRTK_SDK_UX_ToolTips_ToolTipConnector_GetDirectionFromPivotDirection_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTipConnector.GetDirectionFromPivotDirection - isSpec: "True" - fullName: XRTK.SDK.UX.ToolTips.ToolTipConnector.GetDirectionFromPivotDirection - nameWithType: ToolTipConnector.GetDirectionFromPivotDirection -- uid: XRTK.SDK.UX.ToolTips.ToolTipConnector.ManualPivotDirection - name: ManualPivotDirection - href: api/XRTK.SDK.UX.ToolTips.ToolTipConnector.html#XRTK_SDK_UX_ToolTips_ToolTipConnector_ManualPivotDirection - commentId: P:XRTK.SDK.UX.ToolTips.ToolTipConnector.ManualPivotDirection - fullName: XRTK.SDK.UX.ToolTips.ToolTipConnector.ManualPivotDirection - nameWithType: ToolTipConnector.ManualPivotDirection -- uid: XRTK.SDK.UX.ToolTips.ToolTipConnector.ManualPivotDirection* - name: ManualPivotDirection - href: api/XRTK.SDK.UX.ToolTips.ToolTipConnector.html#XRTK_SDK_UX_ToolTips_ToolTipConnector_ManualPivotDirection_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTipConnector.ManualPivotDirection - isSpec: "True" - fullName: XRTK.SDK.UX.ToolTips.ToolTipConnector.ManualPivotDirection - nameWithType: ToolTipConnector.ManualPivotDirection -- uid: XRTK.SDK.UX.ToolTips.ToolTipConnector.ManualPivotLocalPosition - name: ManualPivotLocalPosition - href: api/XRTK.SDK.UX.ToolTips.ToolTipConnector.html#XRTK_SDK_UX_ToolTips_ToolTipConnector_ManualPivotLocalPosition - commentId: P:XRTK.SDK.UX.ToolTips.ToolTipConnector.ManualPivotLocalPosition - fullName: XRTK.SDK.UX.ToolTips.ToolTipConnector.ManualPivotLocalPosition - nameWithType: ToolTipConnector.ManualPivotLocalPosition -- uid: XRTK.SDK.UX.ToolTips.ToolTipConnector.ManualPivotLocalPosition* - name: ManualPivotLocalPosition - href: api/XRTK.SDK.UX.ToolTips.ToolTipConnector.html#XRTK_SDK_UX_ToolTips_ToolTipConnector_ManualPivotLocalPosition_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTipConnector.ManualPivotLocalPosition - isSpec: "True" - fullName: XRTK.SDK.UX.ToolTips.ToolTipConnector.ManualPivotLocalPosition - nameWithType: ToolTipConnector.ManualPivotLocalPosition -- uid: XRTK.SDK.UX.ToolTips.ToolTipConnector.PivotDirection - name: PivotDirection - href: api/XRTK.SDK.UX.ToolTips.ToolTipConnector.html#XRTK_SDK_UX_ToolTips_ToolTipConnector_PivotDirection - commentId: P:XRTK.SDK.UX.ToolTips.ToolTipConnector.PivotDirection - fullName: XRTK.SDK.UX.ToolTips.ToolTipConnector.PivotDirection - nameWithType: ToolTipConnector.PivotDirection -- uid: XRTK.SDK.UX.ToolTips.ToolTipConnector.PivotDirection* - name: PivotDirection - href: api/XRTK.SDK.UX.ToolTips.ToolTipConnector.html#XRTK_SDK_UX_ToolTips_ToolTipConnector_PivotDirection_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTipConnector.PivotDirection - isSpec: "True" - fullName: XRTK.SDK.UX.ToolTips.ToolTipConnector.PivotDirection - nameWithType: ToolTipConnector.PivotDirection -- uid: XRTK.SDK.UX.ToolTips.ToolTipConnector.PivotDirectionOrient - name: PivotDirectionOrient - href: api/XRTK.SDK.UX.ToolTips.ToolTipConnector.html#XRTK_SDK_UX_ToolTips_ToolTipConnector_PivotDirectionOrient - commentId: P:XRTK.SDK.UX.ToolTips.ToolTipConnector.PivotDirectionOrient - fullName: XRTK.SDK.UX.ToolTips.ToolTipConnector.PivotDirectionOrient - nameWithType: ToolTipConnector.PivotDirectionOrient -- uid: XRTK.SDK.UX.ToolTips.ToolTipConnector.PivotDirectionOrient* - name: PivotDirectionOrient - href: api/XRTK.SDK.UX.ToolTips.ToolTipConnector.html#XRTK_SDK_UX_ToolTips_ToolTipConnector_PivotDirectionOrient_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTipConnector.PivotDirectionOrient - isSpec: "True" - fullName: XRTK.SDK.UX.ToolTips.ToolTipConnector.PivotDirectionOrient - nameWithType: ToolTipConnector.PivotDirectionOrient -- uid: XRTK.SDK.UX.ToolTips.ToolTipConnector.PivotDistance - name: PivotDistance - href: api/XRTK.SDK.UX.ToolTips.ToolTipConnector.html#XRTK_SDK_UX_ToolTips_ToolTipConnector_PivotDistance - commentId: P:XRTK.SDK.UX.ToolTips.ToolTipConnector.PivotDistance - fullName: XRTK.SDK.UX.ToolTips.ToolTipConnector.PivotDistance - nameWithType: ToolTipConnector.PivotDistance -- uid: XRTK.SDK.UX.ToolTips.ToolTipConnector.PivotDistance* - name: PivotDistance - href: api/XRTK.SDK.UX.ToolTips.ToolTipConnector.html#XRTK_SDK_UX_ToolTips_ToolTipConnector_PivotDistance_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTipConnector.PivotDistance - isSpec: "True" - fullName: XRTK.SDK.UX.ToolTips.ToolTipConnector.PivotDistance - nameWithType: ToolTipConnector.PivotDistance -- uid: XRTK.SDK.UX.ToolTips.ToolTipConnector.PivotMode - name: PivotMode - href: api/XRTK.SDK.UX.ToolTips.ToolTipConnector.html#XRTK_SDK_UX_ToolTips_ToolTipConnector_PivotMode - commentId: P:XRTK.SDK.UX.ToolTips.ToolTipConnector.PivotMode - fullName: XRTK.SDK.UX.ToolTips.ToolTipConnector.PivotMode - nameWithType: ToolTipConnector.PivotMode -- uid: XRTK.SDK.UX.ToolTips.ToolTipConnector.PivotMode* - name: PivotMode - href: api/XRTK.SDK.UX.ToolTips.ToolTipConnector.html#XRTK_SDK_UX_ToolTips_ToolTipConnector_PivotMode_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTipConnector.PivotMode - isSpec: "True" - fullName: XRTK.SDK.UX.ToolTips.ToolTipConnector.PivotMode - nameWithType: ToolTipConnector.PivotMode -- uid: XRTK.SDK.UX.ToolTips.ToolTipConnector.Target - name: Target - href: api/XRTK.SDK.UX.ToolTips.ToolTipConnector.html#XRTK_SDK_UX_ToolTips_ToolTipConnector_Target - commentId: P:XRTK.SDK.UX.ToolTips.ToolTipConnector.Target - fullName: XRTK.SDK.UX.ToolTips.ToolTipConnector.Target - nameWithType: ToolTipConnector.Target -- uid: XRTK.SDK.UX.ToolTips.ToolTipConnector.Target* - name: Target - href: api/XRTK.SDK.UX.ToolTips.ToolTipConnector.html#XRTK_SDK_UX_ToolTips_ToolTipConnector_Target_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTipConnector.Target - isSpec: "True" - fullName: XRTK.SDK.UX.ToolTips.ToolTipConnector.Target - nameWithType: ToolTipConnector.Target -- uid: XRTK.SDK.UX.ToolTips.ToolTipSpawner - name: ToolTipSpawner - href: api/XRTK.SDK.UX.ToolTips.ToolTipSpawner.html - commentId: T:XRTK.SDK.UX.ToolTips.ToolTipSpawner - fullName: XRTK.SDK.UX.ToolTips.ToolTipSpawner - nameWithType: ToolTipSpawner -- uid: XRTK.SDK.UX.ToolTips.ToolTipSpawner.OnFocusEnter(XRTK.EventDatum.Input.FocusEventData) - name: OnFocusEnter(FocusEventData) - href: api/XRTK.SDK.UX.ToolTips.ToolTipSpawner.html#XRTK_SDK_UX_ToolTips_ToolTipSpawner_OnFocusEnter_XRTK_EventDatum_Input_FocusEventData_ - commentId: M:XRTK.SDK.UX.ToolTips.ToolTipSpawner.OnFocusEnter(XRTK.EventDatum.Input.FocusEventData) - fullName: XRTK.SDK.UX.ToolTips.ToolTipSpawner.OnFocusEnter(XRTK.EventDatum.Input.FocusEventData) - nameWithType: ToolTipSpawner.OnFocusEnter(FocusEventData) -- uid: XRTK.SDK.UX.ToolTips.ToolTipSpawner.OnFocusEnter* - name: OnFocusEnter - href: api/XRTK.SDK.UX.ToolTips.ToolTipSpawner.html#XRTK_SDK_UX_ToolTips_ToolTipSpawner_OnFocusEnter_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTipSpawner.OnFocusEnter - isSpec: "True" - fullName: XRTK.SDK.UX.ToolTips.ToolTipSpawner.OnFocusEnter - nameWithType: ToolTipSpawner.OnFocusEnter -- uid: XRTK.SDK.UX.ToolTips.ToolTipSpawner.OnFocusExit(XRTK.EventDatum.Input.FocusEventData) - name: OnFocusExit(FocusEventData) - href: api/XRTK.SDK.UX.ToolTips.ToolTipSpawner.html#XRTK_SDK_UX_ToolTips_ToolTipSpawner_OnFocusExit_XRTK_EventDatum_Input_FocusEventData_ - commentId: M:XRTK.SDK.UX.ToolTips.ToolTipSpawner.OnFocusExit(XRTK.EventDatum.Input.FocusEventData) - fullName: XRTK.SDK.UX.ToolTips.ToolTipSpawner.OnFocusExit(XRTK.EventDatum.Input.FocusEventData) - nameWithType: ToolTipSpawner.OnFocusExit(FocusEventData) -- uid: XRTK.SDK.UX.ToolTips.ToolTipSpawner.OnFocusExit* - name: OnFocusExit - href: api/XRTK.SDK.UX.ToolTips.ToolTipSpawner.html#XRTK_SDK_UX_ToolTips_ToolTipSpawner_OnFocusExit_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTipSpawner.OnFocusExit - isSpec: "True" - fullName: XRTK.SDK.UX.ToolTips.ToolTipSpawner.OnFocusExit - nameWithType: ToolTipSpawner.OnFocusExit -- uid: XRTK.SDK.UX.ToolTips.ToolTipSpawner.RemainType - name: ToolTipSpawner.RemainType - href: api/XRTK.SDK.UX.ToolTips.ToolTipSpawner.RemainType.html - commentId: T:XRTK.SDK.UX.ToolTips.ToolTipSpawner.RemainType - fullName: XRTK.SDK.UX.ToolTips.ToolTipSpawner.RemainType - nameWithType: ToolTipSpawner.RemainType -- uid: XRTK.SDK.UX.ToolTips.ToolTipSpawner.RemainType.Indefinite - name: Indefinite - href: api/XRTK.SDK.UX.ToolTips.ToolTipSpawner.RemainType.html#XRTK_SDK_UX_ToolTips_ToolTipSpawner_RemainType_Indefinite - commentId: F:XRTK.SDK.UX.ToolTips.ToolTipSpawner.RemainType.Indefinite - fullName: XRTK.SDK.UX.ToolTips.ToolTipSpawner.RemainType.Indefinite - nameWithType: ToolTipSpawner.RemainType.Indefinite -- uid: XRTK.SDK.UX.ToolTips.ToolTipSpawner.RemainType.Timeout - name: Timeout - href: api/XRTK.SDK.UX.ToolTips.ToolTipSpawner.RemainType.html#XRTK_SDK_UX_ToolTips_ToolTipSpawner_RemainType_Timeout - commentId: F:XRTK.SDK.UX.ToolTips.ToolTipSpawner.RemainType.Timeout - fullName: XRTK.SDK.UX.ToolTips.ToolTipSpawner.RemainType.Timeout - nameWithType: ToolTipSpawner.RemainType.Timeout -- uid: XRTK.SDK.UX.ToolTips.ToolTipSpawner.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler#OnInputDown(XRTK.EventDatum.Input.InputEventData) - name: IMixedRealityInputHandler.OnInputDown(InputEventData) - href: api/XRTK.SDK.UX.ToolTips.ToolTipSpawner.html#XRTK_SDK_UX_ToolTips_ToolTipSpawner_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityInputHandler_OnInputDown_XRTK_EventDatum_Input_InputEventData_ - commentId: M:XRTK.SDK.UX.ToolTips.ToolTipSpawner.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler#OnInputDown(XRTK.EventDatum.Input.InputEventData) - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputDown(InputEventData) - fullName: XRTK.SDK.UX.ToolTips.ToolTipSpawner.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputDown(XRTK.EventDatum.Input.InputEventData) - nameWithType: ToolTipSpawner.IMixedRealityInputHandler.OnInputDown(InputEventData) - nameWithType.vb: ToolTipSpawner.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputDown(InputEventData) -- uid: XRTK.SDK.UX.ToolTips.ToolTipSpawner.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler#OnInputDown* - name: IMixedRealityInputHandler.OnInputDown - href: api/XRTK.SDK.UX.ToolTips.ToolTipSpawner.html#XRTK_SDK_UX_ToolTips_ToolTipSpawner_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityInputHandler_OnInputDown_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTipSpawner.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler#OnInputDown - isSpec: "True" - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputDown - fullName: XRTK.SDK.UX.ToolTips.ToolTipSpawner.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputDown - nameWithType: ToolTipSpawner.IMixedRealityInputHandler.OnInputDown - nameWithType.vb: ToolTipSpawner.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputDown -- uid: XRTK.SDK.UX.ToolTips.ToolTipSpawner.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler#OnInputUp(XRTK.EventDatum.Input.InputEventData) - name: IMixedRealityInputHandler.OnInputUp(InputEventData) - href: api/XRTK.SDK.UX.ToolTips.ToolTipSpawner.html#XRTK_SDK_UX_ToolTips_ToolTipSpawner_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityInputHandler_OnInputUp_XRTK_EventDatum_Input_InputEventData_ - commentId: M:XRTK.SDK.UX.ToolTips.ToolTipSpawner.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler#OnInputUp(XRTK.EventDatum.Input.InputEventData) - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputUp(InputEventData) - fullName: XRTK.SDK.UX.ToolTips.ToolTipSpawner.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputUp(XRTK.EventDatum.Input.InputEventData) - nameWithType: ToolTipSpawner.IMixedRealityInputHandler.OnInputUp(InputEventData) - nameWithType.vb: ToolTipSpawner.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputUp(InputEventData) -- uid: XRTK.SDK.UX.ToolTips.ToolTipSpawner.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler#OnInputUp* - name: IMixedRealityInputHandler.OnInputUp - href: api/XRTK.SDK.UX.ToolTips.ToolTipSpawner.html#XRTK_SDK_UX_ToolTips_ToolTipSpawner_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityInputHandler_OnInputUp_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTipSpawner.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler#OnInputUp - isSpec: "True" - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputUp - fullName: XRTK.SDK.UX.ToolTips.ToolTipSpawner.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputUp - nameWithType: ToolTipSpawner.IMixedRealityInputHandler.OnInputUp - nameWithType.vb: ToolTipSpawner.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputUp -- uid: XRTK.SDK.UX.ToolTips.ToolTipUtility - name: ToolTipUtility - href: api/XRTK.SDK.UX.ToolTips.ToolTipUtility.html - commentId: T:XRTK.SDK.UX.ToolTips.ToolTipUtility - fullName: XRTK.SDK.UX.ToolTips.ToolTipUtility - nameWithType: ToolTipUtility -- uid: XRTK.SDK.UX.ToolTips.ToolTipUtility.FindClosestAttachPointToAnchor(UnityEngine.Transform,UnityEngine.Transform,UnityEngine.Vector3[],XRTK.SDK.UX.ToolTips.ToolTipAttachPointType) - name: FindClosestAttachPointToAnchor(Transform, Transform, Vector3[], ToolTipAttachPointType) - href: api/XRTK.SDK.UX.ToolTips.ToolTipUtility.html#XRTK_SDK_UX_ToolTips_ToolTipUtility_FindClosestAttachPointToAnchor_UnityEngine_Transform_UnityEngine_Transform_UnityEngine_Vector3___XRTK_SDK_UX_ToolTips_ToolTipAttachPointType_ - commentId: M:XRTK.SDK.UX.ToolTips.ToolTipUtility.FindClosestAttachPointToAnchor(UnityEngine.Transform,UnityEngine.Transform,UnityEngine.Vector3[],XRTK.SDK.UX.ToolTips.ToolTipAttachPointType) - name.vb: FindClosestAttachPointToAnchor(Transform, Transform, Vector3(), ToolTipAttachPointType) - fullName: XRTK.SDK.UX.ToolTips.ToolTipUtility.FindClosestAttachPointToAnchor(UnityEngine.Transform, UnityEngine.Transform, UnityEngine.Vector3[], XRTK.SDK.UX.ToolTips.ToolTipAttachPointType) - fullName.vb: XRTK.SDK.UX.ToolTips.ToolTipUtility.FindClosestAttachPointToAnchor(UnityEngine.Transform, UnityEngine.Transform, UnityEngine.Vector3(), XRTK.SDK.UX.ToolTips.ToolTipAttachPointType) - nameWithType: ToolTipUtility.FindClosestAttachPointToAnchor(Transform, Transform, Vector3[], ToolTipAttachPointType) - nameWithType.vb: ToolTipUtility.FindClosestAttachPointToAnchor(Transform, Transform, Vector3(), ToolTipAttachPointType) -- uid: XRTK.SDK.UX.ToolTips.ToolTipUtility.FindClosestAttachPointToAnchor* - name: FindClosestAttachPointToAnchor - href: api/XRTK.SDK.UX.ToolTips.ToolTipUtility.html#XRTK_SDK_UX_ToolTips_ToolTipUtility_FindClosestAttachPointToAnchor_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTipUtility.FindClosestAttachPointToAnchor - isSpec: "True" - fullName: XRTK.SDK.UX.ToolTips.ToolTipUtility.FindClosestAttachPointToAnchor - nameWithType: ToolTipUtility.FindClosestAttachPointToAnchor -- uid: XRTK.SDK.UX.ToolTips.ToolTipUtility.GetAttachPointPositions(UnityEngine.Vector3[]@,UnityEngine.Vector2) - name: GetAttachPointPositions(ref Vector3[], Vector2) - href: api/XRTK.SDK.UX.ToolTips.ToolTipUtility.html#XRTK_SDK_UX_ToolTips_ToolTipUtility_GetAttachPointPositions_UnityEngine_Vector3____UnityEngine_Vector2_ - commentId: M:XRTK.SDK.UX.ToolTips.ToolTipUtility.GetAttachPointPositions(UnityEngine.Vector3[]@,UnityEngine.Vector2) - name.vb: GetAttachPointPositions(ByRef Vector3(), Vector2) - fullName: XRTK.SDK.UX.ToolTips.ToolTipUtility.GetAttachPointPositions(ref UnityEngine.Vector3[], UnityEngine.Vector2) - fullName.vb: XRTK.SDK.UX.ToolTips.ToolTipUtility.GetAttachPointPositions(ByRef UnityEngine.Vector3(), UnityEngine.Vector2) - nameWithType: ToolTipUtility.GetAttachPointPositions(ref Vector3[], Vector2) - nameWithType.vb: ToolTipUtility.GetAttachPointPositions(ByRef Vector3(), Vector2) -- uid: XRTK.SDK.UX.ToolTips.ToolTipUtility.GetAttachPointPositions* - name: GetAttachPointPositions - href: api/XRTK.SDK.UX.ToolTips.ToolTipUtility.html#XRTK_SDK_UX_ToolTips_ToolTipUtility_GetAttachPointPositions_ - commentId: Overload:XRTK.SDK.UX.ToolTips.ToolTipUtility.GetAttachPointPositions - isSpec: "True" - fullName: XRTK.SDK.UX.ToolTips.ToolTipUtility.GetAttachPointPositions - nameWithType: ToolTipUtility.GetAttachPointPositions -- uid: XRTK.SDK.UX.Utilities - name: XRTK.SDK.UX.Utilities - href: api/XRTK.SDK.UX.Utilities.html - commentId: N:XRTK.SDK.UX.Utilities - fullName: XRTK.SDK.UX.Utilities - nameWithType: XRTK.SDK.UX.Utilities -- uid: XRTK.SDK.UX.Utilities.Billboard - name: Billboard - href: api/XRTK.SDK.UX.Utilities.Billboard.html - commentId: T:XRTK.SDK.UX.Utilities.Billboard - fullName: XRTK.SDK.UX.Utilities.Billboard - nameWithType: Billboard -- uid: XRTK.SDK.UX.Utilities.Billboard.PivotAxis - name: PivotAxis - href: api/XRTK.SDK.UX.Utilities.Billboard.html#XRTK_SDK_UX_Utilities_Billboard_PivotAxis - commentId: P:XRTK.SDK.UX.Utilities.Billboard.PivotAxis - fullName: XRTK.SDK.UX.Utilities.Billboard.PivotAxis - nameWithType: Billboard.PivotAxis -- uid: XRTK.SDK.UX.Utilities.Billboard.PivotAxis* - name: PivotAxis - href: api/XRTK.SDK.UX.Utilities.Billboard.html#XRTK_SDK_UX_Utilities_Billboard_PivotAxis_ - commentId: Overload:XRTK.SDK.UX.Utilities.Billboard.PivotAxis - isSpec: "True" - fullName: XRTK.SDK.UX.Utilities.Billboard.PivotAxis - nameWithType: Billboard.PivotAxis -- uid: XRTK.SDK.UX.Utilities.Billboard.TargetTransform - name: TargetTransform - href: api/XRTK.SDK.UX.Utilities.Billboard.html#XRTK_SDK_UX_Utilities_Billboard_TargetTransform - commentId: P:XRTK.SDK.UX.Utilities.Billboard.TargetTransform - fullName: XRTK.SDK.UX.Utilities.Billboard.TargetTransform - nameWithType: Billboard.TargetTransform -- uid: XRTK.SDK.UX.Utilities.Billboard.TargetTransform* - name: TargetTransform - href: api/XRTK.SDK.UX.Utilities.Billboard.html#XRTK_SDK_UX_Utilities_Billboard_TargetTransform_ - commentId: Overload:XRTK.SDK.UX.Utilities.Billboard.TargetTransform - isSpec: "True" - fullName: XRTK.SDK.UX.Utilities.Billboard.TargetTransform - nameWithType: Billboard.TargetTransform -- uid: XRTK.SDK.UX.Utilities.InteractableHighlight - name: InteractableHighlight - href: api/XRTK.SDK.UX.Utilities.InteractableHighlight.html - commentId: T:XRTK.SDK.UX.Utilities.InteractableHighlight - fullName: XRTK.SDK.UX.Utilities.InteractableHighlight - nameWithType: InteractableHighlight -- uid: XRTK.SDK.UX.Utilities.InteractableHighlight.Highlight - name: Highlight - href: api/XRTK.SDK.UX.Utilities.InteractableHighlight.html#XRTK_SDK_UX_Utilities_InteractableHighlight_Highlight - commentId: P:XRTK.SDK.UX.Utilities.InteractableHighlight.Highlight - fullName: XRTK.SDK.UX.Utilities.InteractableHighlight.Highlight - nameWithType: InteractableHighlight.Highlight -- uid: XRTK.SDK.UX.Utilities.InteractableHighlight.Highlight* - name: Highlight - href: api/XRTK.SDK.UX.Utilities.InteractableHighlight.html#XRTK_SDK_UX_Utilities_InteractableHighlight_Highlight_ - commentId: Overload:XRTK.SDK.UX.Utilities.InteractableHighlight.Highlight - isSpec: "True" - fullName: XRTK.SDK.UX.Utilities.InteractableHighlight.Highlight - nameWithType: InteractableHighlight.Highlight -- uid: XRTK.SDK.UX.Utilities.InteractableHighlight.HighlightedMaterialStyle - name: InteractableHighlight.HighlightedMaterialStyle - href: api/XRTK.SDK.UX.Utilities.InteractableHighlight.HighlightedMaterialStyle.html - commentId: T:XRTK.SDK.UX.Utilities.InteractableHighlight.HighlightedMaterialStyle - fullName: XRTK.SDK.UX.Utilities.InteractableHighlight.HighlightedMaterialStyle - nameWithType: InteractableHighlight.HighlightedMaterialStyle -- uid: XRTK.SDK.UX.Utilities.InteractableHighlight.HighlightedMaterialStyle.Both - name: Both - href: api/XRTK.SDK.UX.Utilities.InteractableHighlight.HighlightedMaterialStyle.html#XRTK_SDK_UX_Utilities_InteractableHighlight_HighlightedMaterialStyle_Both - commentId: F:XRTK.SDK.UX.Utilities.InteractableHighlight.HighlightedMaterialStyle.Both - fullName: XRTK.SDK.UX.Utilities.InteractableHighlight.HighlightedMaterialStyle.Both - nameWithType: InteractableHighlight.HighlightedMaterialStyle.Both -- uid: XRTK.SDK.UX.Utilities.InteractableHighlight.HighlightedMaterialStyle.Highlight - name: Highlight - href: api/XRTK.SDK.UX.Utilities.InteractableHighlight.HighlightedMaterialStyle.html#XRTK_SDK_UX_Utilities_InteractableHighlight_HighlightedMaterialStyle_Highlight - commentId: F:XRTK.SDK.UX.Utilities.InteractableHighlight.HighlightedMaterialStyle.Highlight - fullName: XRTK.SDK.UX.Utilities.InteractableHighlight.HighlightedMaterialStyle.Highlight - nameWithType: InteractableHighlight.HighlightedMaterialStyle.Highlight -- uid: XRTK.SDK.UX.Utilities.InteractableHighlight.HighlightedMaterialStyle.None - name: None - href: api/XRTK.SDK.UX.Utilities.InteractableHighlight.HighlightedMaterialStyle.html#XRTK_SDK_UX_Utilities_InteractableHighlight_HighlightedMaterialStyle_None - commentId: F:XRTK.SDK.UX.Utilities.InteractableHighlight.HighlightedMaterialStyle.None - fullName: XRTK.SDK.UX.Utilities.InteractableHighlight.HighlightedMaterialStyle.None - nameWithType: InteractableHighlight.HighlightedMaterialStyle.None -- uid: XRTK.SDK.UX.Utilities.InteractableHighlight.HighlightedMaterialStyle.Overlay - name: Overlay - href: api/XRTK.SDK.UX.Utilities.InteractableHighlight.HighlightedMaterialStyle.html#XRTK_SDK_UX_Utilities_InteractableHighlight_HighlightedMaterialStyle_Overlay - commentId: F:XRTK.SDK.UX.Utilities.InteractableHighlight.HighlightedMaterialStyle.Overlay - fullName: XRTK.SDK.UX.Utilities.InteractableHighlight.HighlightedMaterialStyle.Overlay - nameWithType: InteractableHighlight.HighlightedMaterialStyle.Overlay -- uid: XRTK.SDK.UX.Utilities.InteractableHighlight.OnDisable - name: OnDisable() - href: api/XRTK.SDK.UX.Utilities.InteractableHighlight.html#XRTK_SDK_UX_Utilities_InteractableHighlight_OnDisable - commentId: M:XRTK.SDK.UX.Utilities.InteractableHighlight.OnDisable - fullName: XRTK.SDK.UX.Utilities.InteractableHighlight.OnDisable() - nameWithType: InteractableHighlight.OnDisable() -- uid: XRTK.SDK.UX.Utilities.InteractableHighlight.OnDisable* - name: OnDisable - href: api/XRTK.SDK.UX.Utilities.InteractableHighlight.html#XRTK_SDK_UX_Utilities_InteractableHighlight_OnDisable_ - commentId: Overload:XRTK.SDK.UX.Utilities.InteractableHighlight.OnDisable - isSpec: "True" - fullName: XRTK.SDK.UX.Utilities.InteractableHighlight.OnDisable - nameWithType: InteractableHighlight.OnDisable -- uid: XRTK.SDK.UX.Utilities.InteractableHighlight.OnEnable - name: OnEnable() - href: api/XRTK.SDK.UX.Utilities.InteractableHighlight.html#XRTK_SDK_UX_Utilities_InteractableHighlight_OnEnable - commentId: M:XRTK.SDK.UX.Utilities.InteractableHighlight.OnEnable - fullName: XRTK.SDK.UX.Utilities.InteractableHighlight.OnEnable() - nameWithType: InteractableHighlight.OnEnable() -- uid: XRTK.SDK.UX.Utilities.InteractableHighlight.OnEnable* - name: OnEnable - href: api/XRTK.SDK.UX.Utilities.InteractableHighlight.html#XRTK_SDK_UX_Utilities_InteractableHighlight_OnEnable_ - commentId: Overload:XRTK.SDK.UX.Utilities.InteractableHighlight.OnEnable - isSpec: "True" - fullName: XRTK.SDK.UX.Utilities.InteractableHighlight.OnEnable - nameWithType: InteractableHighlight.OnEnable -- uid: XRTK.SDK.UX.Utilities.InteractableHighlight.OnFocusEnter(XRTK.EventDatum.Input.FocusEventData) - name: OnFocusEnter(FocusEventData) - href: api/XRTK.SDK.UX.Utilities.InteractableHighlight.html#XRTK_SDK_UX_Utilities_InteractableHighlight_OnFocusEnter_XRTK_EventDatum_Input_FocusEventData_ - commentId: M:XRTK.SDK.UX.Utilities.InteractableHighlight.OnFocusEnter(XRTK.EventDatum.Input.FocusEventData) - fullName: XRTK.SDK.UX.Utilities.InteractableHighlight.OnFocusEnter(XRTK.EventDatum.Input.FocusEventData) - nameWithType: InteractableHighlight.OnFocusEnter(FocusEventData) -- uid: XRTK.SDK.UX.Utilities.InteractableHighlight.OnFocusEnter* - name: OnFocusEnter - href: api/XRTK.SDK.UX.Utilities.InteractableHighlight.html#XRTK_SDK_UX_Utilities_InteractableHighlight_OnFocusEnter_ - commentId: Overload:XRTK.SDK.UX.Utilities.InteractableHighlight.OnFocusEnter - isSpec: "True" - fullName: XRTK.SDK.UX.Utilities.InteractableHighlight.OnFocusEnter - nameWithType: InteractableHighlight.OnFocusEnter -- uid: XRTK.SDK.UX.Utilities.InteractableHighlight.OnFocusExit(XRTK.EventDatum.Input.FocusEventData) - name: OnFocusExit(FocusEventData) - href: api/XRTK.SDK.UX.Utilities.InteractableHighlight.html#XRTK_SDK_UX_Utilities_InteractableHighlight_OnFocusExit_XRTK_EventDatum_Input_FocusEventData_ - commentId: M:XRTK.SDK.UX.Utilities.InteractableHighlight.OnFocusExit(XRTK.EventDatum.Input.FocusEventData) - fullName: XRTK.SDK.UX.Utilities.InteractableHighlight.OnFocusExit(XRTK.EventDatum.Input.FocusEventData) - nameWithType: InteractableHighlight.OnFocusExit(FocusEventData) -- uid: XRTK.SDK.UX.Utilities.InteractableHighlight.OnFocusExit* - name: OnFocusExit - href: api/XRTK.SDK.UX.Utilities.InteractableHighlight.html#XRTK_SDK_UX_Utilities_InteractableHighlight_OnFocusExit_ - commentId: Overload:XRTK.SDK.UX.Utilities.InteractableHighlight.OnFocusExit - isSpec: "True" - fullName: XRTK.SDK.UX.Utilities.InteractableHighlight.OnFocusExit - nameWithType: InteractableHighlight.OnFocusExit -- uid: XRTK.SDK.UX.Utilities.InteractableHighlight.Style - name: Style - href: api/XRTK.SDK.UX.Utilities.InteractableHighlight.html#XRTK_SDK_UX_Utilities_InteractableHighlight_Style - commentId: P:XRTK.SDK.UX.Utilities.InteractableHighlight.Style - fullName: XRTK.SDK.UX.Utilities.InteractableHighlight.Style - nameWithType: InteractableHighlight.Style -- uid: XRTK.SDK.UX.Utilities.InteractableHighlight.Style* - name: Style - href: api/XRTK.SDK.UX.Utilities.InteractableHighlight.html#XRTK_SDK_UX_Utilities_InteractableHighlight_Style_ - commentId: Overload:XRTK.SDK.UX.Utilities.InteractableHighlight.Style - isSpec: "True" - fullName: XRTK.SDK.UX.Utilities.InteractableHighlight.Style - nameWithType: InteractableHighlight.Style -- uid: XRTK.SDK.UX.Utilities.InteractableHighlight.TargetRenderers - name: TargetRenderers - href: api/XRTK.SDK.UX.Utilities.InteractableHighlight.html#XRTK_SDK_UX_Utilities_InteractableHighlight_TargetRenderers - commentId: P:XRTK.SDK.UX.Utilities.InteractableHighlight.TargetRenderers - fullName: XRTK.SDK.UX.Utilities.InteractableHighlight.TargetRenderers - nameWithType: InteractableHighlight.TargetRenderers -- uid: XRTK.SDK.UX.Utilities.InteractableHighlight.TargetRenderers* - name: TargetRenderers - href: api/XRTK.SDK.UX.Utilities.InteractableHighlight.html#XRTK_SDK_UX_Utilities_InteractableHighlight_TargetRenderers_ - commentId: Overload:XRTK.SDK.UX.Utilities.InteractableHighlight.TargetRenderers - isSpec: "True" - fullName: XRTK.SDK.UX.Utilities.InteractableHighlight.TargetRenderers - nameWithType: InteractableHighlight.TargetRenderers -- uid: XRTK.Seed - name: XRTK.Seed - href: api/XRTK.Seed.html - commentId: N:XRTK.Seed - fullName: XRTK.Seed - nameWithType: XRTK.Seed -- uid: XRTK.Seed.MixedRealityPackageSeed - name: MixedRealityPackageSeed - href: api/XRTK.Seed.MixedRealityPackageSeed.html - commentId: T:XRTK.Seed.MixedRealityPackageSeed - fullName: XRTK.Seed.MixedRealityPackageSeed - nameWithType: MixedRealityPackageSeed -- uid: XRTK.Seed.PackagePickerWindow - name: PackagePickerWindow - href: api/XRTK.Seed.PackagePickerWindow.html - commentId: T:XRTK.Seed.PackagePickerWindow - fullName: XRTK.Seed.PackagePickerWindow - nameWithType: PackagePickerWindow -- uid: XRTK.Services - name: XRTK.Services - href: api/XRTK.Services.html - commentId: N:XRTK.Services - fullName: XRTK.Services - nameWithType: XRTK.Services -- uid: XRTK.Services.BaseDataProvider - name: BaseDataProvider - href: api/XRTK.Services.BaseDataProvider.html - commentId: T:XRTK.Services.BaseDataProvider - fullName: XRTK.Services.BaseDataProvider - nameWithType: BaseDataProvider -- uid: XRTK.Services.BaseDataProvider.#ctor(System.String,System.UInt32,XRTK.Definitions.BaseMixedRealityProfile,XRTK.Interfaces.IMixedRealityService) - name: BaseDataProvider(String, UInt32, BaseMixedRealityProfile, IMixedRealityService) - href: api/XRTK.Services.BaseDataProvider.html#XRTK_Services_BaseDataProvider__ctor_System_String_System_UInt32_XRTK_Definitions_BaseMixedRealityProfile_XRTK_Interfaces_IMixedRealityService_ - commentId: M:XRTK.Services.BaseDataProvider.#ctor(System.String,System.UInt32,XRTK.Definitions.BaseMixedRealityProfile,XRTK.Interfaces.IMixedRealityService) - fullName: XRTK.Services.BaseDataProvider.BaseDataProvider(System.String, System.UInt32, XRTK.Definitions.BaseMixedRealityProfile, XRTK.Interfaces.IMixedRealityService) - nameWithType: BaseDataProvider.BaseDataProvider(String, UInt32, BaseMixedRealityProfile, IMixedRealityService) -- uid: XRTK.Services.BaseDataProvider.#ctor* - name: BaseDataProvider - href: api/XRTK.Services.BaseDataProvider.html#XRTK_Services_BaseDataProvider__ctor_ - commentId: Overload:XRTK.Services.BaseDataProvider.#ctor - isSpec: "True" - fullName: XRTK.Services.BaseDataProvider.BaseDataProvider - nameWithType: BaseDataProvider.BaseDataProvider -- uid: XRTK.Services.BaseDataProvider.ParentService - name: ParentService - href: api/XRTK.Services.BaseDataProvider.html#XRTK_Services_BaseDataProvider_ParentService - commentId: P:XRTK.Services.BaseDataProvider.ParentService - fullName: XRTK.Services.BaseDataProvider.ParentService - nameWithType: BaseDataProvider.ParentService -- uid: XRTK.Services.BaseDataProvider.ParentService* - name: ParentService - href: api/XRTK.Services.BaseDataProvider.html#XRTK_Services_BaseDataProvider_ParentService_ - commentId: Overload:XRTK.Services.BaseDataProvider.ParentService - isSpec: "True" - fullName: XRTK.Services.BaseDataProvider.ParentService - nameWithType: BaseDataProvider.ParentService -- uid: XRTK.Services.BaseDataProvider.Priority - name: Priority - href: api/XRTK.Services.BaseDataProvider.html#XRTK_Services_BaseDataProvider_Priority - commentId: P:XRTK.Services.BaseDataProvider.Priority - fullName: XRTK.Services.BaseDataProvider.Priority - nameWithType: BaseDataProvider.Priority -- uid: XRTK.Services.BaseDataProvider.Priority* - name: Priority - href: api/XRTK.Services.BaseDataProvider.html#XRTK_Services_BaseDataProvider_Priority_ - commentId: Overload:XRTK.Services.BaseDataProvider.Priority - isSpec: "True" - fullName: XRTK.Services.BaseDataProvider.Priority - nameWithType: BaseDataProvider.Priority -- uid: XRTK.Services.BaseEventSystem - name: BaseEventSystem - href: api/XRTK.Services.BaseEventSystem.html - commentId: T:XRTK.Services.BaseEventSystem - fullName: XRTK.Services.BaseEventSystem - nameWithType: BaseEventSystem -- uid: XRTK.Services.BaseEventSystem.#ctor(XRTK.Definitions.BaseMixedRealityProfile) - name: BaseEventSystem(BaseMixedRealityProfile) - href: api/XRTK.Services.BaseEventSystem.html#XRTK_Services_BaseEventSystem__ctor_XRTK_Definitions_BaseMixedRealityProfile_ - commentId: M:XRTK.Services.BaseEventSystem.#ctor(XRTK.Definitions.BaseMixedRealityProfile) - fullName: XRTK.Services.BaseEventSystem.BaseEventSystem(XRTK.Definitions.BaseMixedRealityProfile) - nameWithType: BaseEventSystem.BaseEventSystem(BaseMixedRealityProfile) -- uid: XRTK.Services.BaseEventSystem.#ctor* - name: BaseEventSystem - href: api/XRTK.Services.BaseEventSystem.html#XRTK_Services_BaseEventSystem__ctor_ - commentId: Overload:XRTK.Services.BaseEventSystem.#ctor - isSpec: "True" - fullName: XRTK.Services.BaseEventSystem.BaseEventSystem - nameWithType: BaseEventSystem.BaseEventSystem -- uid: XRTK.Services.BaseEventSystem.EventListeners - name: EventListeners - href: api/XRTK.Services.BaseEventSystem.html#XRTK_Services_BaseEventSystem_EventListeners - commentId: P:XRTK.Services.BaseEventSystem.EventListeners - fullName: XRTK.Services.BaseEventSystem.EventListeners - nameWithType: BaseEventSystem.EventListeners -- uid: XRTK.Services.BaseEventSystem.EventListeners* - name: EventListeners - href: api/XRTK.Services.BaseEventSystem.html#XRTK_Services_BaseEventSystem_EventListeners_ - commentId: Overload:XRTK.Services.BaseEventSystem.EventListeners - isSpec: "True" - fullName: XRTK.Services.BaseEventSystem.EventListeners - nameWithType: BaseEventSystem.EventListeners -- uid: XRTK.Services.BaseEventSystem.HandleEvent* - name: HandleEvent - href: api/XRTK.Services.BaseEventSystem.html#XRTK_Services_BaseEventSystem_HandleEvent_ - commentId: Overload:XRTK.Services.BaseEventSystem.HandleEvent - isSpec: "True" - fullName: XRTK.Services.BaseEventSystem.HandleEvent - nameWithType: BaseEventSystem.HandleEvent -- uid: XRTK.Services.BaseEventSystem.HandleEvent``1(BaseEventData,ExecuteEvents.EventFunction{``0}) - name: HandleEvent(BaseEventData, ExecuteEvents.EventFunction) - href: api/XRTK.Services.BaseEventSystem.html#XRTK_Services_BaseEventSystem_HandleEvent__1_BaseEventData_ExecuteEvents_EventFunction___0__ - commentId: M:XRTK.Services.BaseEventSystem.HandleEvent``1(BaseEventData,ExecuteEvents.EventFunction{``0}) - name.vb: HandleEvent(Of T)(BaseEventData, ExecuteEvents.EventFunction(Of T)) - fullName: XRTK.Services.BaseEventSystem.HandleEvent(BaseEventData, ExecuteEvents.EventFunction) - fullName.vb: XRTK.Services.BaseEventSystem.HandleEvent(Of T)(BaseEventData, ExecuteEvents.EventFunction(Of T)) - nameWithType: BaseEventSystem.HandleEvent(BaseEventData, ExecuteEvents.EventFunction) - nameWithType.vb: BaseEventSystem.HandleEvent(Of T)(BaseEventData, ExecuteEvents.EventFunction(Of T)) -- uid: XRTK.Services.BaseEventSystem.Register(UnityEngine.GameObject) - name: Register(GameObject) - href: api/XRTK.Services.BaseEventSystem.html#XRTK_Services_BaseEventSystem_Register_UnityEngine_GameObject_ - commentId: M:XRTK.Services.BaseEventSystem.Register(UnityEngine.GameObject) - fullName: XRTK.Services.BaseEventSystem.Register(UnityEngine.GameObject) - nameWithType: BaseEventSystem.Register(GameObject) -- uid: XRTK.Services.BaseEventSystem.Register* - name: Register - href: api/XRTK.Services.BaseEventSystem.html#XRTK_Services_BaseEventSystem_Register_ - commentId: Overload:XRTK.Services.BaseEventSystem.Register - isSpec: "True" - fullName: XRTK.Services.BaseEventSystem.Register - nameWithType: BaseEventSystem.Register -- uid: XRTK.Services.BaseEventSystem.Unregister(UnityEngine.GameObject) - name: Unregister(GameObject) - href: api/XRTK.Services.BaseEventSystem.html#XRTK_Services_BaseEventSystem_Unregister_UnityEngine_GameObject_ - commentId: M:XRTK.Services.BaseEventSystem.Unregister(UnityEngine.GameObject) - fullName: XRTK.Services.BaseEventSystem.Unregister(UnityEngine.GameObject) - nameWithType: BaseEventSystem.Unregister(GameObject) -- uid: XRTK.Services.BaseEventSystem.Unregister* - name: Unregister - href: api/XRTK.Services.BaseEventSystem.html#XRTK_Services_BaseEventSystem_Unregister_ - commentId: Overload:XRTK.Services.BaseEventSystem.Unregister - isSpec: "True" - fullName: XRTK.Services.BaseEventSystem.Unregister - nameWithType: BaseEventSystem.Unregister -- uid: XRTK.Services.BaseExtensionDataProvider - name: BaseExtensionDataProvider - href: api/XRTK.Services.BaseExtensionDataProvider.html - commentId: T:XRTK.Services.BaseExtensionDataProvider - fullName: XRTK.Services.BaseExtensionDataProvider - nameWithType: BaseExtensionDataProvider -- uid: XRTK.Services.BaseExtensionDataProvider.#ctor(System.String,System.UInt32,XRTK.Definitions.BaseMixedRealityExtensionDataProviderProfile,XRTK.Interfaces.IMixedRealityExtensionService) - name: BaseExtensionDataProvider(String, UInt32, BaseMixedRealityExtensionDataProviderProfile, IMixedRealityExtensionService) - href: api/XRTK.Services.BaseExtensionDataProvider.html#XRTK_Services_BaseExtensionDataProvider__ctor_System_String_System_UInt32_XRTK_Definitions_BaseMixedRealityExtensionDataProviderProfile_XRTK_Interfaces_IMixedRealityExtensionService_ - commentId: M:XRTK.Services.BaseExtensionDataProvider.#ctor(System.String,System.UInt32,XRTK.Definitions.BaseMixedRealityExtensionDataProviderProfile,XRTK.Interfaces.IMixedRealityExtensionService) - fullName: XRTK.Services.BaseExtensionDataProvider.BaseExtensionDataProvider(System.String, System.UInt32, XRTK.Definitions.BaseMixedRealityExtensionDataProviderProfile, XRTK.Interfaces.IMixedRealityExtensionService) - nameWithType: BaseExtensionDataProvider.BaseExtensionDataProvider(String, UInt32, BaseMixedRealityExtensionDataProviderProfile, IMixedRealityExtensionService) -- uid: XRTK.Services.BaseExtensionDataProvider.#ctor* - name: BaseExtensionDataProvider - href: api/XRTK.Services.BaseExtensionDataProvider.html#XRTK_Services_BaseExtensionDataProvider__ctor_ - commentId: Overload:XRTK.Services.BaseExtensionDataProvider.#ctor - isSpec: "True" - fullName: XRTK.Services.BaseExtensionDataProvider.BaseExtensionDataProvider - nameWithType: BaseExtensionDataProvider.BaseExtensionDataProvider -- uid: XRTK.Services.BaseExtensionService - name: BaseExtensionService - href: api/XRTK.Services.BaseExtensionService.html - commentId: T:XRTK.Services.BaseExtensionService - fullName: XRTK.Services.BaseExtensionService - nameWithType: BaseExtensionService -- uid: XRTK.Services.BaseExtensionService.#ctor(System.String,System.UInt32,XRTK.Definitions.BaseMixedRealityExtensionServiceProfile) - name: BaseExtensionService(String, UInt32, BaseMixedRealityExtensionServiceProfile) - href: api/XRTK.Services.BaseExtensionService.html#XRTK_Services_BaseExtensionService__ctor_System_String_System_UInt32_XRTK_Definitions_BaseMixedRealityExtensionServiceProfile_ - commentId: M:XRTK.Services.BaseExtensionService.#ctor(System.String,System.UInt32,XRTK.Definitions.BaseMixedRealityExtensionServiceProfile) - fullName: XRTK.Services.BaseExtensionService.BaseExtensionService(System.String, System.UInt32, XRTK.Definitions.BaseMixedRealityExtensionServiceProfile) - nameWithType: BaseExtensionService.BaseExtensionService(String, UInt32, BaseMixedRealityExtensionServiceProfile) -- uid: XRTK.Services.BaseExtensionService.#ctor* - name: BaseExtensionService - href: api/XRTK.Services.BaseExtensionService.html#XRTK_Services_BaseExtensionService__ctor_ - commentId: Overload:XRTK.Services.BaseExtensionService.#ctor - isSpec: "True" - fullName: XRTK.Services.BaseExtensionService.BaseExtensionService - nameWithType: BaseExtensionService.BaseExtensionService -- uid: XRTK.Services.BaseService - name: BaseService - href: api/XRTK.Services.BaseService.html - commentId: T:XRTK.Services.BaseService - fullName: XRTK.Services.BaseService - nameWithType: BaseService -- uid: XRTK.Services.BaseService.Destroy - name: Destroy() - href: api/XRTK.Services.BaseService.html#XRTK_Services_BaseService_Destroy - commentId: M:XRTK.Services.BaseService.Destroy - fullName: XRTK.Services.BaseService.Destroy() - nameWithType: BaseService.Destroy() -- uid: XRTK.Services.BaseService.Destroy* - name: Destroy - href: api/XRTK.Services.BaseService.html#XRTK_Services_BaseService_Destroy_ - commentId: Overload:XRTK.Services.BaseService.Destroy - isSpec: "True" - fullName: XRTK.Services.BaseService.Destroy - nameWithType: BaseService.Destroy -- uid: XRTK.Services.BaseService.Disable - name: Disable() - href: api/XRTK.Services.BaseService.html#XRTK_Services_BaseService_Disable - commentId: M:XRTK.Services.BaseService.Disable - fullName: XRTK.Services.BaseService.Disable() - nameWithType: BaseService.Disable() -- uid: XRTK.Services.BaseService.Disable* - name: Disable - href: api/XRTK.Services.BaseService.html#XRTK_Services_BaseService_Disable_ - commentId: Overload:XRTK.Services.BaseService.Disable - isSpec: "True" - fullName: XRTK.Services.BaseService.Disable - nameWithType: BaseService.Disable -- uid: XRTK.Services.BaseService.Dispose - name: Dispose() - href: api/XRTK.Services.BaseService.html#XRTK_Services_BaseService_Dispose - commentId: M:XRTK.Services.BaseService.Dispose - fullName: XRTK.Services.BaseService.Dispose() - nameWithType: BaseService.Dispose() -- uid: XRTK.Services.BaseService.Dispose* - name: Dispose - href: api/XRTK.Services.BaseService.html#XRTK_Services_BaseService_Dispose_ - commentId: Overload:XRTK.Services.BaseService.Dispose - isSpec: "True" - fullName: XRTK.Services.BaseService.Dispose - nameWithType: BaseService.Dispose -- uid: XRTK.Services.BaseService.Enable - name: Enable() - href: api/XRTK.Services.BaseService.html#XRTK_Services_BaseService_Enable - commentId: M:XRTK.Services.BaseService.Enable - fullName: XRTK.Services.BaseService.Enable() - nameWithType: BaseService.Enable() -- uid: XRTK.Services.BaseService.Enable* - name: Enable - href: api/XRTK.Services.BaseService.html#XRTK_Services_BaseService_Enable_ - commentId: Overload:XRTK.Services.BaseService.Enable - isSpec: "True" - fullName: XRTK.Services.BaseService.Enable - nameWithType: BaseService.Enable -- uid: XRTK.Services.BaseService.Finalize - name: Finalize() - href: api/XRTK.Services.BaseService.html#XRTK_Services_BaseService_Finalize - commentId: M:XRTK.Services.BaseService.Finalize - fullName: XRTK.Services.BaseService.Finalize() - nameWithType: BaseService.Finalize() -- uid: XRTK.Services.BaseService.Finalize* - name: Finalize - href: api/XRTK.Services.BaseService.html#XRTK_Services_BaseService_Finalize_ - commentId: Overload:XRTK.Services.BaseService.Finalize - isSpec: "True" - fullName: XRTK.Services.BaseService.Finalize - nameWithType: BaseService.Finalize -- uid: XRTK.Services.BaseService.FixedUpdate - name: FixedUpdate() - href: api/XRTK.Services.BaseService.html#XRTK_Services_BaseService_FixedUpdate - commentId: M:XRTK.Services.BaseService.FixedUpdate - fullName: XRTK.Services.BaseService.FixedUpdate() - nameWithType: BaseService.FixedUpdate() -- uid: XRTK.Services.BaseService.FixedUpdate* - name: FixedUpdate - href: api/XRTK.Services.BaseService.html#XRTK_Services_BaseService_FixedUpdate_ - commentId: Overload:XRTK.Services.BaseService.FixedUpdate - isSpec: "True" - fullName: XRTK.Services.BaseService.FixedUpdate - nameWithType: BaseService.FixedUpdate -- uid: XRTK.Services.BaseService.Initialize - name: Initialize() - href: api/XRTK.Services.BaseService.html#XRTK_Services_BaseService_Initialize - commentId: M:XRTK.Services.BaseService.Initialize - fullName: XRTK.Services.BaseService.Initialize() - nameWithType: BaseService.Initialize() -- uid: XRTK.Services.BaseService.Initialize* - name: Initialize - href: api/XRTK.Services.BaseService.html#XRTK_Services_BaseService_Initialize_ - commentId: Overload:XRTK.Services.BaseService.Initialize - isSpec: "True" - fullName: XRTK.Services.BaseService.Initialize - nameWithType: BaseService.Initialize -- uid: XRTK.Services.BaseService.LateUpdate - name: LateUpdate() - href: api/XRTK.Services.BaseService.html#XRTK_Services_BaseService_LateUpdate - commentId: M:XRTK.Services.BaseService.LateUpdate - fullName: XRTK.Services.BaseService.LateUpdate() - nameWithType: BaseService.LateUpdate() -- uid: XRTK.Services.BaseService.LateUpdate* - name: LateUpdate - href: api/XRTK.Services.BaseService.html#XRTK_Services_BaseService_LateUpdate_ - commentId: Overload:XRTK.Services.BaseService.LateUpdate - isSpec: "True" - fullName: XRTK.Services.BaseService.LateUpdate - nameWithType: BaseService.LateUpdate -- uid: XRTK.Services.BaseService.Name - name: Name - href: api/XRTK.Services.BaseService.html#XRTK_Services_BaseService_Name - commentId: P:XRTK.Services.BaseService.Name - fullName: XRTK.Services.BaseService.Name - nameWithType: BaseService.Name -- uid: XRTK.Services.BaseService.Name* - name: Name - href: api/XRTK.Services.BaseService.html#XRTK_Services_BaseService_Name_ - commentId: Overload:XRTK.Services.BaseService.Name - isSpec: "True" - fullName: XRTK.Services.BaseService.Name - nameWithType: BaseService.Name -- uid: XRTK.Services.BaseService.OnApplicationFocus(System.Boolean) - name: OnApplicationFocus(Boolean) - href: api/XRTK.Services.BaseService.html#XRTK_Services_BaseService_OnApplicationFocus_System_Boolean_ - commentId: M:XRTK.Services.BaseService.OnApplicationFocus(System.Boolean) - fullName: XRTK.Services.BaseService.OnApplicationFocus(System.Boolean) - nameWithType: BaseService.OnApplicationFocus(Boolean) -- uid: XRTK.Services.BaseService.OnApplicationFocus* - name: OnApplicationFocus - href: api/XRTK.Services.BaseService.html#XRTK_Services_BaseService_OnApplicationFocus_ - commentId: Overload:XRTK.Services.BaseService.OnApplicationFocus - isSpec: "True" - fullName: XRTK.Services.BaseService.OnApplicationFocus - nameWithType: BaseService.OnApplicationFocus -- uid: XRTK.Services.BaseService.OnApplicationPause(System.Boolean) - name: OnApplicationPause(Boolean) - href: api/XRTK.Services.BaseService.html#XRTK_Services_BaseService_OnApplicationPause_System_Boolean_ - commentId: M:XRTK.Services.BaseService.OnApplicationPause(System.Boolean) - fullName: XRTK.Services.BaseService.OnApplicationPause(System.Boolean) - nameWithType: BaseService.OnApplicationPause(Boolean) -- uid: XRTK.Services.BaseService.OnApplicationPause* - name: OnApplicationPause - href: api/XRTK.Services.BaseService.html#XRTK_Services_BaseService_OnApplicationPause_ - commentId: Overload:XRTK.Services.BaseService.OnApplicationPause - isSpec: "True" - fullName: XRTK.Services.BaseService.OnApplicationPause - nameWithType: BaseService.OnApplicationPause -- uid: XRTK.Services.BaseService.OnDispose(System.Boolean) - name: OnDispose(Boolean) - href: api/XRTK.Services.BaseService.html#XRTK_Services_BaseService_OnDispose_System_Boolean_ - commentId: M:XRTK.Services.BaseService.OnDispose(System.Boolean) - fullName: XRTK.Services.BaseService.OnDispose(System.Boolean) - nameWithType: BaseService.OnDispose(Boolean) -- uid: XRTK.Services.BaseService.OnDispose* - name: OnDispose - href: api/XRTK.Services.BaseService.html#XRTK_Services_BaseService_OnDispose_ - commentId: Overload:XRTK.Services.BaseService.OnDispose - isSpec: "True" - fullName: XRTK.Services.BaseService.OnDispose - nameWithType: BaseService.OnDispose -- uid: XRTK.Services.BaseService.Priority - name: Priority - href: api/XRTK.Services.BaseService.html#XRTK_Services_BaseService_Priority - commentId: P:XRTK.Services.BaseService.Priority - fullName: XRTK.Services.BaseService.Priority - nameWithType: BaseService.Priority -- uid: XRTK.Services.BaseService.Priority* - name: Priority - href: api/XRTK.Services.BaseService.html#XRTK_Services_BaseService_Priority_ - commentId: Overload:XRTK.Services.BaseService.Priority - isSpec: "True" - fullName: XRTK.Services.BaseService.Priority - nameWithType: BaseService.Priority -- uid: XRTK.Services.BaseService.Reset - name: Reset() - href: api/XRTK.Services.BaseService.html#XRTK_Services_BaseService_Reset - commentId: M:XRTK.Services.BaseService.Reset - fullName: XRTK.Services.BaseService.Reset() - nameWithType: BaseService.Reset() -- uid: XRTK.Services.BaseService.Reset* - name: Reset - href: api/XRTK.Services.BaseService.html#XRTK_Services_BaseService_Reset_ - commentId: Overload:XRTK.Services.BaseService.Reset - isSpec: "True" - fullName: XRTK.Services.BaseService.Reset - nameWithType: BaseService.Reset -- uid: XRTK.Services.BaseService.Update - name: Update() - href: api/XRTK.Services.BaseService.html#XRTK_Services_BaseService_Update - commentId: M:XRTK.Services.BaseService.Update - fullName: XRTK.Services.BaseService.Update() - nameWithType: BaseService.Update() -- uid: XRTK.Services.BaseService.Update* - name: Update - href: api/XRTK.Services.BaseService.html#XRTK_Services_BaseService_Update_ - commentId: Overload:XRTK.Services.BaseService.Update - isSpec: "True" - fullName: XRTK.Services.BaseService.Update - nameWithType: BaseService.Update -- uid: XRTK.Services.BaseServiceWithConstructor - name: BaseServiceWithConstructor - href: api/XRTK.Services.BaseServiceWithConstructor.html - commentId: T:XRTK.Services.BaseServiceWithConstructor - fullName: XRTK.Services.BaseServiceWithConstructor - nameWithType: BaseServiceWithConstructor -- uid: XRTK.Services.BaseServiceWithConstructor.#ctor(System.String,System.UInt32) - name: BaseServiceWithConstructor(String, UInt32) - href: api/XRTK.Services.BaseServiceWithConstructor.html#XRTK_Services_BaseServiceWithConstructor__ctor_System_String_System_UInt32_ - commentId: M:XRTK.Services.BaseServiceWithConstructor.#ctor(System.String,System.UInt32) - fullName: XRTK.Services.BaseServiceWithConstructor.BaseServiceWithConstructor(System.String, System.UInt32) - nameWithType: BaseServiceWithConstructor.BaseServiceWithConstructor(String, UInt32) -- uid: XRTK.Services.BaseServiceWithConstructor.#ctor* - name: BaseServiceWithConstructor - href: api/XRTK.Services.BaseServiceWithConstructor.html#XRTK_Services_BaseServiceWithConstructor__ctor_ - commentId: Overload:XRTK.Services.BaseServiceWithConstructor.#ctor - isSpec: "True" - fullName: XRTK.Services.BaseServiceWithConstructor.BaseServiceWithConstructor - nameWithType: BaseServiceWithConstructor.BaseServiceWithConstructor -- uid: XRTK.Services.BaseServiceWithConstructor.Name - name: Name - href: api/XRTK.Services.BaseServiceWithConstructor.html#XRTK_Services_BaseServiceWithConstructor_Name - commentId: P:XRTK.Services.BaseServiceWithConstructor.Name - fullName: XRTK.Services.BaseServiceWithConstructor.Name - nameWithType: BaseServiceWithConstructor.Name -- uid: XRTK.Services.BaseServiceWithConstructor.Name* - name: Name - href: api/XRTK.Services.BaseServiceWithConstructor.html#XRTK_Services_BaseServiceWithConstructor_Name_ - commentId: Overload:XRTK.Services.BaseServiceWithConstructor.Name - isSpec: "True" - fullName: XRTK.Services.BaseServiceWithConstructor.Name - nameWithType: BaseServiceWithConstructor.Name -- uid: XRTK.Services.BaseServiceWithConstructor.Priority - name: Priority - href: api/XRTK.Services.BaseServiceWithConstructor.html#XRTK_Services_BaseServiceWithConstructor_Priority - commentId: P:XRTK.Services.BaseServiceWithConstructor.Priority - fullName: XRTK.Services.BaseServiceWithConstructor.Priority - nameWithType: BaseServiceWithConstructor.Priority -- uid: XRTK.Services.BaseServiceWithConstructor.Priority* - name: Priority - href: api/XRTK.Services.BaseServiceWithConstructor.html#XRTK_Services_BaseServiceWithConstructor_Priority_ - commentId: Overload:XRTK.Services.BaseServiceWithConstructor.Priority - isSpec: "True" - fullName: XRTK.Services.BaseServiceWithConstructor.Priority - nameWithType: BaseServiceWithConstructor.Priority -- uid: XRTK.Services.BaseSystem - name: BaseSystem - href: api/XRTK.Services.BaseSystem.html - commentId: T:XRTK.Services.BaseSystem - fullName: XRTK.Services.BaseSystem - nameWithType: BaseSystem -- uid: XRTK.Services.BaseSystem.#ctor(XRTK.Definitions.BaseMixedRealityProfile) - name: BaseSystem(BaseMixedRealityProfile) - href: api/XRTK.Services.BaseSystem.html#XRTK_Services_BaseSystem__ctor_XRTK_Definitions_BaseMixedRealityProfile_ - commentId: M:XRTK.Services.BaseSystem.#ctor(XRTK.Definitions.BaseMixedRealityProfile) - fullName: XRTK.Services.BaseSystem.BaseSystem(XRTK.Definitions.BaseMixedRealityProfile) - nameWithType: BaseSystem.BaseSystem(BaseMixedRealityProfile) -- uid: XRTK.Services.BaseSystem.#ctor* - name: BaseSystem - href: api/XRTK.Services.BaseSystem.html#XRTK_Services_BaseSystem__ctor_ - commentId: Overload:XRTK.Services.BaseSystem.#ctor - isSpec: "True" - fullName: XRTK.Services.BaseSystem.BaseSystem - nameWithType: BaseSystem.BaseSystem -- uid: XRTK.Services.BoundarySystem - name: XRTK.Services.BoundarySystem - href: api/XRTK.Services.BoundarySystem.html - commentId: N:XRTK.Services.BoundarySystem - fullName: XRTK.Services.BoundarySystem - nameWithType: XRTK.Services.BoundarySystem -- uid: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem - name: MixedRealityBoundarySystem - href: api/XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.html - commentId: T:XRTK.Services.BoundarySystem.MixedRealityBoundarySystem - fullName: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem - nameWithType: MixedRealityBoundarySystem -- uid: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.#ctor(XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile) - name: MixedRealityBoundarySystem(MixedRealityBoundaryProfile) - href: api/XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.html#XRTK_Services_BoundarySystem_MixedRealityBoundarySystem__ctor_XRTK_Definitions_BoundarySystem_MixedRealityBoundaryProfile_ - commentId: M:XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.#ctor(XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile) - fullName: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.MixedRealityBoundarySystem(XRTK.Definitions.BoundarySystem.MixedRealityBoundaryProfile) - nameWithType: MixedRealityBoundarySystem.MixedRealityBoundarySystem(MixedRealityBoundaryProfile) -- uid: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.#ctor* - name: MixedRealityBoundarySystem - href: api/XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.html#XRTK_Services_BoundarySystem_MixedRealityBoundarySystem__ctor_ - commentId: Overload:XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.#ctor - isSpec: "True" - fullName: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.MixedRealityBoundarySystem - nameWithType: MixedRealityBoundarySystem.MixedRealityBoundarySystem -- uid: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.BoundaryBounds - name: BoundaryBounds - href: api/XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.html#XRTK_Services_BoundarySystem_MixedRealityBoundarySystem_BoundaryBounds - commentId: P:XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.BoundaryBounds - fullName: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.BoundaryBounds - nameWithType: MixedRealityBoundarySystem.BoundaryBounds -- uid: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.BoundaryBounds* - name: BoundaryBounds - href: api/XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.html#XRTK_Services_BoundarySystem_MixedRealityBoundarySystem_BoundaryBounds_ - commentId: Overload:XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.BoundaryBounds - isSpec: "True" - fullName: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.BoundaryBounds - nameWithType: MixedRealityBoundarySystem.BoundaryBounds -- uid: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.BoundaryDataProvider - name: BoundaryDataProvider - href: api/XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.html#XRTK_Services_BoundarySystem_MixedRealityBoundarySystem_BoundaryDataProvider - commentId: P:XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.BoundaryDataProvider - fullName: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.BoundaryDataProvider - nameWithType: MixedRealityBoundarySystem.BoundaryDataProvider -- uid: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.BoundaryDataProvider* - name: BoundaryDataProvider - href: api/XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.html#XRTK_Services_BoundarySystem_MixedRealityBoundarySystem_BoundaryDataProvider_ - commentId: Overload:XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.BoundaryDataProvider - isSpec: "True" - fullName: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.BoundaryDataProvider - nameWithType: MixedRealityBoundarySystem.BoundaryDataProvider -- uid: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.BoundaryHeight - name: BoundaryHeight - href: api/XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.html#XRTK_Services_BoundarySystem_MixedRealityBoundarySystem_BoundaryHeight - commentId: P:XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.BoundaryHeight - fullName: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.BoundaryHeight - nameWithType: MixedRealityBoundarySystem.BoundaryHeight -- uid: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.BoundaryHeight* - name: BoundaryHeight - href: api/XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.html#XRTK_Services_BoundarySystem_MixedRealityBoundarySystem_BoundaryHeight_ - commentId: Overload:XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.BoundaryHeight - isSpec: "True" - fullName: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.BoundaryHeight - nameWithType: MixedRealityBoundarySystem.BoundaryHeight -- uid: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.BoundaryProximityAlert - name: BoundaryProximityAlert - href: api/XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.html#XRTK_Services_BoundarySystem_MixedRealityBoundarySystem_BoundaryProximityAlert - commentId: E:XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.BoundaryProximityAlert - fullName: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.BoundaryProximityAlert - nameWithType: MixedRealityBoundarySystem.BoundaryProximityAlert -- uid: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.Destroy - name: Destroy() - href: api/XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.html#XRTK_Services_BoundarySystem_MixedRealityBoundarySystem_Destroy - commentId: M:XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.Destroy - fullName: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.Destroy() - nameWithType: MixedRealityBoundarySystem.Destroy() -- uid: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.Destroy* - name: Destroy - href: api/XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.html#XRTK_Services_BoundarySystem_MixedRealityBoundarySystem_Destroy_ - commentId: Overload:XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.Destroy - isSpec: "True" - fullName: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.Destroy - nameWithType: MixedRealityBoundarySystem.Destroy -- uid: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.Disable - name: Disable() - href: api/XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.html#XRTK_Services_BoundarySystem_MixedRealityBoundarySystem_Disable - commentId: M:XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.Disable - fullName: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.Disable() - nameWithType: MixedRealityBoundarySystem.Disable() -- uid: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.Disable* - name: Disable - href: api/XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.html#XRTK_Services_BoundarySystem_MixedRealityBoundarySystem_Disable_ - commentId: Overload:XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.Disable - isSpec: "True" - fullName: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.Disable - nameWithType: MixedRealityBoundarySystem.Disable -- uid: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.IsConfigured - name: IsConfigured - href: api/XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.html#XRTK_Services_BoundarySystem_MixedRealityBoundarySystem_IsConfigured - commentId: P:XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.IsConfigured - fullName: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.IsConfigured - nameWithType: MixedRealityBoundarySystem.IsConfigured -- uid: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.IsConfigured* - name: IsConfigured - href: api/XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.html#XRTK_Services_BoundarySystem_MixedRealityBoundarySystem_IsConfigured_ - commentId: Overload:XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.IsConfigured - isSpec: "True" - fullName: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.IsConfigured - nameWithType: MixedRealityBoundarySystem.IsConfigured -- uid: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.IsInsideBoundary(UnityEngine.Vector3,UnityEngine.Space) - name: IsInsideBoundary(Vector3, Space) - href: api/XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.html#XRTK_Services_BoundarySystem_MixedRealityBoundarySystem_IsInsideBoundary_UnityEngine_Vector3_UnityEngine_Space_ - commentId: M:XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.IsInsideBoundary(UnityEngine.Vector3,UnityEngine.Space) - fullName: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.IsInsideBoundary(UnityEngine.Vector3, UnityEngine.Space) - nameWithType: MixedRealityBoundarySystem.IsInsideBoundary(Vector3, Space) -- uid: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.IsInsideBoundary* - name: IsInsideBoundary - href: api/XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.html#XRTK_Services_BoundarySystem_MixedRealityBoundarySystem_IsInsideBoundary_ - commentId: Overload:XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.IsInsideBoundary - isSpec: "True" - fullName: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.IsInsideBoundary - nameWithType: MixedRealityBoundarySystem.IsInsideBoundary -- uid: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.IsVisible - name: IsVisible - href: api/XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.html#XRTK_Services_BoundarySystem_MixedRealityBoundarySystem_IsVisible - commentId: P:XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.IsVisible - fullName: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.IsVisible - nameWithType: MixedRealityBoundarySystem.IsVisible -- uid: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.IsVisible* - name: IsVisible - href: api/XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.html#XRTK_Services_BoundarySystem_MixedRealityBoundarySystem_IsVisible_ - commentId: Overload:XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.IsVisible - isSpec: "True" - fullName: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.IsVisible - nameWithType: MixedRealityBoundarySystem.IsVisible -- uid: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.RegisterTrackedObject(UnityEngine.GameObject) - name: RegisterTrackedObject(GameObject) - href: api/XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.html#XRTK_Services_BoundarySystem_MixedRealityBoundarySystem_RegisterTrackedObject_UnityEngine_GameObject_ - commentId: M:XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.RegisterTrackedObject(UnityEngine.GameObject) - fullName: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.RegisterTrackedObject(UnityEngine.GameObject) - nameWithType: MixedRealityBoundarySystem.RegisterTrackedObject(GameObject) -- uid: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.RegisterTrackedObject* - name: RegisterTrackedObject - href: api/XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.html#XRTK_Services_BoundarySystem_MixedRealityBoundarySystem_RegisterTrackedObject_ - commentId: Overload:XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.RegisterTrackedObject - isSpec: "True" - fullName: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.RegisterTrackedObject - nameWithType: MixedRealityBoundarySystem.RegisterTrackedObject -- uid: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.SetupBoundary(XRTK.Interfaces.BoundarySystem.IMixedRealityBoundaryDataProvider) - name: SetupBoundary(IMixedRealityBoundaryDataProvider) - href: api/XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.html#XRTK_Services_BoundarySystem_MixedRealityBoundarySystem_SetupBoundary_XRTK_Interfaces_BoundarySystem_IMixedRealityBoundaryDataProvider_ - commentId: M:XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.SetupBoundary(XRTK.Interfaces.BoundarySystem.IMixedRealityBoundaryDataProvider) - fullName: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.SetupBoundary(XRTK.Interfaces.BoundarySystem.IMixedRealityBoundaryDataProvider) - nameWithType: MixedRealityBoundarySystem.SetupBoundary(IMixedRealityBoundaryDataProvider) -- uid: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.SetupBoundary* - name: SetupBoundary - href: api/XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.html#XRTK_Services_BoundarySystem_MixedRealityBoundarySystem_SetupBoundary_ - commentId: Overload:XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.SetupBoundary - isSpec: "True" - fullName: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.SetupBoundary - nameWithType: MixedRealityBoundarySystem.SetupBoundary -- uid: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.ShowBoundary - name: ShowBoundary - href: api/XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.html#XRTK_Services_BoundarySystem_MixedRealityBoundarySystem_ShowBoundary - commentId: P:XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.ShowBoundary - fullName: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.ShowBoundary - nameWithType: MixedRealityBoundarySystem.ShowBoundary -- uid: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.ShowBoundary* - name: ShowBoundary - href: api/XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.html#XRTK_Services_BoundarySystem_MixedRealityBoundarySystem_ShowBoundary_ - commentId: Overload:XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.ShowBoundary - isSpec: "True" - fullName: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.ShowBoundary - nameWithType: MixedRealityBoundarySystem.ShowBoundary -- uid: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.ShowCeiling - name: ShowCeiling - href: api/XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.html#XRTK_Services_BoundarySystem_MixedRealityBoundarySystem_ShowCeiling - commentId: P:XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.ShowCeiling - fullName: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.ShowCeiling - nameWithType: MixedRealityBoundarySystem.ShowCeiling -- uid: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.ShowCeiling* - name: ShowCeiling - href: api/XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.html#XRTK_Services_BoundarySystem_MixedRealityBoundarySystem_ShowCeiling_ - commentId: Overload:XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.ShowCeiling - isSpec: "True" - fullName: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.ShowCeiling - nameWithType: MixedRealityBoundarySystem.ShowCeiling -- uid: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.ShowFloor - name: ShowFloor - href: api/XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.html#XRTK_Services_BoundarySystem_MixedRealityBoundarySystem_ShowFloor - commentId: P:XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.ShowFloor - fullName: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.ShowFloor - nameWithType: MixedRealityBoundarySystem.ShowFloor -- uid: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.ShowFloor* - name: ShowFloor - href: api/XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.html#XRTK_Services_BoundarySystem_MixedRealityBoundarySystem_ShowFloor_ - commentId: Overload:XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.ShowFloor - isSpec: "True" - fullName: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.ShowFloor - nameWithType: MixedRealityBoundarySystem.ShowFloor -- uid: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.ShowWalls - name: ShowWalls - href: api/XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.html#XRTK_Services_BoundarySystem_MixedRealityBoundarySystem_ShowWalls - commentId: P:XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.ShowWalls - fullName: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.ShowWalls - nameWithType: MixedRealityBoundarySystem.ShowWalls -- uid: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.ShowWalls* - name: ShowWalls - href: api/XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.html#XRTK_Services_BoundarySystem_MixedRealityBoundarySystem_ShowWalls_ - commentId: Overload:XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.ShowWalls - isSpec: "True" - fullName: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.ShowWalls - nameWithType: MixedRealityBoundarySystem.ShowWalls -- uid: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.TrackedObjects - name: TrackedObjects - href: api/XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.html#XRTK_Services_BoundarySystem_MixedRealityBoundarySystem_TrackedObjects - commentId: P:XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.TrackedObjects - fullName: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.TrackedObjects - nameWithType: MixedRealityBoundarySystem.TrackedObjects -- uid: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.TrackedObjects* - name: TrackedObjects - href: api/XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.html#XRTK_Services_BoundarySystem_MixedRealityBoundarySystem_TrackedObjects_ - commentId: Overload:XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.TrackedObjects - isSpec: "True" - fullName: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.TrackedObjects - nameWithType: MixedRealityBoundarySystem.TrackedObjects -- uid: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.TryGetRectangularBoundsParams(UnityEngine.Vector2@,System.Single@,System.Single@,System.Single@) - name: TryGetRectangularBoundsParams(out Vector2, out Single, out Single, out Single) - href: api/XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.html#XRTK_Services_BoundarySystem_MixedRealityBoundarySystem_TryGetRectangularBoundsParams_UnityEngine_Vector2__System_Single__System_Single__System_Single__ - commentId: M:XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.TryGetRectangularBoundsParams(UnityEngine.Vector2@,System.Single@,System.Single@,System.Single@) - name.vb: TryGetRectangularBoundsParams(ByRef Vector2, ByRef Single, ByRef Single, ByRef Single) - fullName: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.TryGetRectangularBoundsParams(out UnityEngine.Vector2, out System.Single, out System.Single, out System.Single) - fullName.vb: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.TryGetRectangularBoundsParams(ByRef UnityEngine.Vector2, ByRef System.Single, ByRef System.Single, ByRef System.Single) - nameWithType: MixedRealityBoundarySystem.TryGetRectangularBoundsParams(out Vector2, out Single, out Single, out Single) - nameWithType.vb: MixedRealityBoundarySystem.TryGetRectangularBoundsParams(ByRef Vector2, ByRef Single, ByRef Single, ByRef Single) -- uid: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.TryGetRectangularBoundsParams* - name: TryGetRectangularBoundsParams - href: api/XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.html#XRTK_Services_BoundarySystem_MixedRealityBoundarySystem_TryGetRectangularBoundsParams_ - commentId: Overload:XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.TryGetRectangularBoundsParams - isSpec: "True" - fullName: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.TryGetRectangularBoundsParams - nameWithType: MixedRealityBoundarySystem.TryGetRectangularBoundsParams -- uid: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.UnregisterTrackedObject(UnityEngine.GameObject) - name: UnregisterTrackedObject(GameObject) - href: api/XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.html#XRTK_Services_BoundarySystem_MixedRealityBoundarySystem_UnregisterTrackedObject_UnityEngine_GameObject_ - commentId: M:XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.UnregisterTrackedObject(UnityEngine.GameObject) - fullName: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.UnregisterTrackedObject(UnityEngine.GameObject) - nameWithType: MixedRealityBoundarySystem.UnregisterTrackedObject(GameObject) -- uid: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.UnregisterTrackedObject* - name: UnregisterTrackedObject - href: api/XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.html#XRTK_Services_BoundarySystem_MixedRealityBoundarySystem_UnregisterTrackedObject_ - commentId: Overload:XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.UnregisterTrackedObject - isSpec: "True" - fullName: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.UnregisterTrackedObject - nameWithType: MixedRealityBoundarySystem.UnregisterTrackedObject -- uid: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.Update - name: Update() - href: api/XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.html#XRTK_Services_BoundarySystem_MixedRealityBoundarySystem_Update - commentId: M:XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.Update - fullName: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.Update() - nameWithType: MixedRealityBoundarySystem.Update() -- uid: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.Update* - name: Update - href: api/XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.html#XRTK_Services_BoundarySystem_MixedRealityBoundarySystem_Update_ - commentId: Overload:XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.Update - isSpec: "True" - fullName: XRTK.Services.BoundarySystem.MixedRealityBoundarySystem.Update - nameWithType: MixedRealityBoundarySystem.Update -- uid: XRTK.Services.CameraSystem - name: XRTK.Services.CameraSystem - href: api/XRTK.Services.CameraSystem.html - commentId: N:XRTK.Services.CameraSystem - fullName: XRTK.Services.CameraSystem - nameWithType: XRTK.Services.CameraSystem -- uid: XRTK.Services.CameraSystem.DefaultCameraRig - name: DefaultCameraRig - href: api/XRTK.Services.CameraSystem.DefaultCameraRig.html - commentId: T:XRTK.Services.CameraSystem.DefaultCameraRig - fullName: XRTK.Services.CameraSystem.DefaultCameraRig - nameWithType: DefaultCameraRig -- uid: XRTK.Services.CameraSystem.DefaultCameraRig.BodyTransform - name: BodyTransform - href: api/XRTK.Services.CameraSystem.DefaultCameraRig.html#XRTK_Services_CameraSystem_DefaultCameraRig_BodyTransform - commentId: P:XRTK.Services.CameraSystem.DefaultCameraRig.BodyTransform - fullName: XRTK.Services.CameraSystem.DefaultCameraRig.BodyTransform - nameWithType: DefaultCameraRig.BodyTransform -- uid: XRTK.Services.CameraSystem.DefaultCameraRig.BodyTransform* - name: BodyTransform - href: api/XRTK.Services.CameraSystem.DefaultCameraRig.html#XRTK_Services_CameraSystem_DefaultCameraRig_BodyTransform_ - commentId: Overload:XRTK.Services.CameraSystem.DefaultCameraRig.BodyTransform - isSpec: "True" - fullName: XRTK.Services.CameraSystem.DefaultCameraRig.BodyTransform - nameWithType: DefaultCameraRig.BodyTransform -- uid: XRTK.Services.CameraSystem.DefaultCameraRig.CameraPoseDriver - name: CameraPoseDriver - href: api/XRTK.Services.CameraSystem.DefaultCameraRig.html#XRTK_Services_CameraSystem_DefaultCameraRig_CameraPoseDriver - commentId: P:XRTK.Services.CameraSystem.DefaultCameraRig.CameraPoseDriver - fullName: XRTK.Services.CameraSystem.DefaultCameraRig.CameraPoseDriver - nameWithType: DefaultCameraRig.CameraPoseDriver -- uid: XRTK.Services.CameraSystem.DefaultCameraRig.CameraPoseDriver* - name: CameraPoseDriver - href: api/XRTK.Services.CameraSystem.DefaultCameraRig.html#XRTK_Services_CameraSystem_DefaultCameraRig_CameraPoseDriver_ - commentId: Overload:XRTK.Services.CameraSystem.DefaultCameraRig.CameraPoseDriver - isSpec: "True" - fullName: XRTK.Services.CameraSystem.DefaultCameraRig.CameraPoseDriver - nameWithType: DefaultCameraRig.CameraPoseDriver -- uid: XRTK.Services.CameraSystem.DefaultCameraRig.CameraTransform - name: CameraTransform - href: api/XRTK.Services.CameraSystem.DefaultCameraRig.html#XRTK_Services_CameraSystem_DefaultCameraRig_CameraTransform - commentId: P:XRTK.Services.CameraSystem.DefaultCameraRig.CameraTransform - fullName: XRTK.Services.CameraSystem.DefaultCameraRig.CameraTransform - nameWithType: DefaultCameraRig.CameraTransform -- uid: XRTK.Services.CameraSystem.DefaultCameraRig.CameraTransform* - name: CameraTransform - href: api/XRTK.Services.CameraSystem.DefaultCameraRig.html#XRTK_Services_CameraSystem_DefaultCameraRig_CameraTransform_ - commentId: Overload:XRTK.Services.CameraSystem.DefaultCameraRig.CameraTransform - isSpec: "True" - fullName: XRTK.Services.CameraSystem.DefaultCameraRig.CameraTransform - nameWithType: DefaultCameraRig.CameraTransform -- uid: XRTK.Services.CameraSystem.DefaultCameraRig.GameObject - name: GameObject - href: api/XRTK.Services.CameraSystem.DefaultCameraRig.html#XRTK_Services_CameraSystem_DefaultCameraRig_GameObject - commentId: P:XRTK.Services.CameraSystem.DefaultCameraRig.GameObject - fullName: XRTK.Services.CameraSystem.DefaultCameraRig.GameObject - nameWithType: DefaultCameraRig.GameObject -- uid: XRTK.Services.CameraSystem.DefaultCameraRig.GameObject* - name: GameObject - href: api/XRTK.Services.CameraSystem.DefaultCameraRig.html#XRTK_Services_CameraSystem_DefaultCameraRig_GameObject_ - commentId: Overload:XRTK.Services.CameraSystem.DefaultCameraRig.GameObject - isSpec: "True" - fullName: XRTK.Services.CameraSystem.DefaultCameraRig.GameObject - nameWithType: DefaultCameraRig.GameObject -- uid: XRTK.Services.CameraSystem.DefaultCameraRig.PlayerCamera - name: PlayerCamera - href: api/XRTK.Services.CameraSystem.DefaultCameraRig.html#XRTK_Services_CameraSystem_DefaultCameraRig_PlayerCamera - commentId: P:XRTK.Services.CameraSystem.DefaultCameraRig.PlayerCamera - fullName: XRTK.Services.CameraSystem.DefaultCameraRig.PlayerCamera - nameWithType: DefaultCameraRig.PlayerCamera -- uid: XRTK.Services.CameraSystem.DefaultCameraRig.PlayerCamera* - name: PlayerCamera - href: api/XRTK.Services.CameraSystem.DefaultCameraRig.html#XRTK_Services_CameraSystem_DefaultCameraRig_PlayerCamera_ - commentId: Overload:XRTK.Services.CameraSystem.DefaultCameraRig.PlayerCamera - isSpec: "True" - fullName: XRTK.Services.CameraSystem.DefaultCameraRig.PlayerCamera - nameWithType: DefaultCameraRig.PlayerCamera -- uid: XRTK.Services.CameraSystem.DefaultCameraRig.PlayspaceTransform - name: PlayspaceTransform - href: api/XRTK.Services.CameraSystem.DefaultCameraRig.html#XRTK_Services_CameraSystem_DefaultCameraRig_PlayspaceTransform - commentId: P:XRTK.Services.CameraSystem.DefaultCameraRig.PlayspaceTransform - fullName: XRTK.Services.CameraSystem.DefaultCameraRig.PlayspaceTransform - nameWithType: DefaultCameraRig.PlayspaceTransform -- uid: XRTK.Services.CameraSystem.DefaultCameraRig.PlayspaceTransform* - name: PlayspaceTransform - href: api/XRTK.Services.CameraSystem.DefaultCameraRig.html#XRTK_Services_CameraSystem_DefaultCameraRig_PlayspaceTransform_ - commentId: Overload:XRTK.Services.CameraSystem.DefaultCameraRig.PlayspaceTransform - isSpec: "True" - fullName: XRTK.Services.CameraSystem.DefaultCameraRig.PlayspaceTransform - nameWithType: DefaultCameraRig.PlayspaceTransform -- uid: XRTK.Services.CameraSystem.MixedRealityCameraSystem - name: MixedRealityCameraSystem - href: api/XRTK.Services.CameraSystem.MixedRealityCameraSystem.html - commentId: T:XRTK.Services.CameraSystem.MixedRealityCameraSystem - fullName: XRTK.Services.CameraSystem.MixedRealityCameraSystem - nameWithType: MixedRealityCameraSystem -- uid: XRTK.Services.CameraSystem.MixedRealityCameraSystem.#ctor(XRTK.Definitions.CameraSystem.MixedRealityCameraSystemProfile) - name: MixedRealityCameraSystem(MixedRealityCameraSystemProfile) - href: api/XRTK.Services.CameraSystem.MixedRealityCameraSystem.html#XRTK_Services_CameraSystem_MixedRealityCameraSystem__ctor_XRTK_Definitions_CameraSystem_MixedRealityCameraSystemProfile_ - commentId: M:XRTK.Services.CameraSystem.MixedRealityCameraSystem.#ctor(XRTK.Definitions.CameraSystem.MixedRealityCameraSystemProfile) - fullName: XRTK.Services.CameraSystem.MixedRealityCameraSystem.MixedRealityCameraSystem(XRTK.Definitions.CameraSystem.MixedRealityCameraSystemProfile) - nameWithType: MixedRealityCameraSystem.MixedRealityCameraSystem(MixedRealityCameraSystemProfile) -- uid: XRTK.Services.CameraSystem.MixedRealityCameraSystem.#ctor* - name: MixedRealityCameraSystem - href: api/XRTK.Services.CameraSystem.MixedRealityCameraSystem.html#XRTK_Services_CameraSystem_MixedRealityCameraSystem__ctor_ - commentId: Overload:XRTK.Services.CameraSystem.MixedRealityCameraSystem.#ctor - isSpec: "True" - fullName: XRTK.Services.CameraSystem.MixedRealityCameraSystem.MixedRealityCameraSystem - nameWithType: MixedRealityCameraSystem.MixedRealityCameraSystem -- uid: XRTK.Services.CameraSystem.MixedRealityCameraSystem.CameraDataProviders - name: CameraDataProviders - href: api/XRTK.Services.CameraSystem.MixedRealityCameraSystem.html#XRTK_Services_CameraSystem_MixedRealityCameraSystem_CameraDataProviders - commentId: P:XRTK.Services.CameraSystem.MixedRealityCameraSystem.CameraDataProviders - fullName: XRTK.Services.CameraSystem.MixedRealityCameraSystem.CameraDataProviders - nameWithType: MixedRealityCameraSystem.CameraDataProviders -- uid: XRTK.Services.CameraSystem.MixedRealityCameraSystem.CameraDataProviders* - name: CameraDataProviders - href: api/XRTK.Services.CameraSystem.MixedRealityCameraSystem.html#XRTK_Services_CameraSystem_MixedRealityCameraSystem_CameraDataProviders_ - commentId: Overload:XRTK.Services.CameraSystem.MixedRealityCameraSystem.CameraDataProviders - isSpec: "True" - fullName: XRTK.Services.CameraSystem.MixedRealityCameraSystem.CameraDataProviders - nameWithType: MixedRealityCameraSystem.CameraDataProviders -- uid: XRTK.Services.CameraSystem.MixedRealityCameraSystem.Destroy - name: Destroy() - href: api/XRTK.Services.CameraSystem.MixedRealityCameraSystem.html#XRTK_Services_CameraSystem_MixedRealityCameraSystem_Destroy - commentId: M:XRTK.Services.CameraSystem.MixedRealityCameraSystem.Destroy - fullName: XRTK.Services.CameraSystem.MixedRealityCameraSystem.Destroy() - nameWithType: MixedRealityCameraSystem.Destroy() -- uid: XRTK.Services.CameraSystem.MixedRealityCameraSystem.Destroy* - name: Destroy - href: api/XRTK.Services.CameraSystem.MixedRealityCameraSystem.html#XRTK_Services_CameraSystem_MixedRealityCameraSystem_Destroy_ - commentId: Overload:XRTK.Services.CameraSystem.MixedRealityCameraSystem.Destroy - isSpec: "True" - fullName: XRTK.Services.CameraSystem.MixedRealityCameraSystem.Destroy - nameWithType: MixedRealityCameraSystem.Destroy -- uid: XRTK.Services.CameraSystem.MixedRealityCameraSystem.MainCameraRig - name: MainCameraRig - href: api/XRTK.Services.CameraSystem.MixedRealityCameraSystem.html#XRTK_Services_CameraSystem_MixedRealityCameraSystem_MainCameraRig - commentId: P:XRTK.Services.CameraSystem.MixedRealityCameraSystem.MainCameraRig - fullName: XRTK.Services.CameraSystem.MixedRealityCameraSystem.MainCameraRig - nameWithType: MixedRealityCameraSystem.MainCameraRig -- uid: XRTK.Services.CameraSystem.MixedRealityCameraSystem.MainCameraRig* - name: MainCameraRig - href: api/XRTK.Services.CameraSystem.MixedRealityCameraSystem.html#XRTK_Services_CameraSystem_MixedRealityCameraSystem_MainCameraRig_ - commentId: Overload:XRTK.Services.CameraSystem.MixedRealityCameraSystem.MainCameraRig - isSpec: "True" - fullName: XRTK.Services.CameraSystem.MixedRealityCameraSystem.MainCameraRig - nameWithType: MixedRealityCameraSystem.MainCameraRig -- uid: XRTK.Services.CameraSystem.MixedRealityCameraSystem.Priority - name: Priority - href: api/XRTK.Services.CameraSystem.MixedRealityCameraSystem.html#XRTK_Services_CameraSystem_MixedRealityCameraSystem_Priority - commentId: P:XRTK.Services.CameraSystem.MixedRealityCameraSystem.Priority - fullName: XRTK.Services.CameraSystem.MixedRealityCameraSystem.Priority - nameWithType: MixedRealityCameraSystem.Priority -- uid: XRTK.Services.CameraSystem.MixedRealityCameraSystem.Priority* - name: Priority - href: api/XRTK.Services.CameraSystem.MixedRealityCameraSystem.html#XRTK_Services_CameraSystem_MixedRealityCameraSystem_Priority_ - commentId: Overload:XRTK.Services.CameraSystem.MixedRealityCameraSystem.Priority - isSpec: "True" - fullName: XRTK.Services.CameraSystem.MixedRealityCameraSystem.Priority - nameWithType: MixedRealityCameraSystem.Priority -- uid: XRTK.Services.CameraSystem.MixedRealityCameraSystem.RegisterCameraDataProvider(XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider) - name: RegisterCameraDataProvider(IMixedRealityCameraDataProvider) - href: api/XRTK.Services.CameraSystem.MixedRealityCameraSystem.html#XRTK_Services_CameraSystem_MixedRealityCameraSystem_RegisterCameraDataProvider_XRTK_Interfaces_CameraSystem_IMixedRealityCameraDataProvider_ - commentId: M:XRTK.Services.CameraSystem.MixedRealityCameraSystem.RegisterCameraDataProvider(XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider) - fullName: XRTK.Services.CameraSystem.MixedRealityCameraSystem.RegisterCameraDataProvider(XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider) - nameWithType: MixedRealityCameraSystem.RegisterCameraDataProvider(IMixedRealityCameraDataProvider) -- uid: XRTK.Services.CameraSystem.MixedRealityCameraSystem.RegisterCameraDataProvider* - name: RegisterCameraDataProvider - href: api/XRTK.Services.CameraSystem.MixedRealityCameraSystem.html#XRTK_Services_CameraSystem_MixedRealityCameraSystem_RegisterCameraDataProvider_ - commentId: Overload:XRTK.Services.CameraSystem.MixedRealityCameraSystem.RegisterCameraDataProvider - isSpec: "True" - fullName: XRTK.Services.CameraSystem.MixedRealityCameraSystem.RegisterCameraDataProvider - nameWithType: MixedRealityCameraSystem.RegisterCameraDataProvider -- uid: XRTK.Services.CameraSystem.MixedRealityCameraSystem.SetHeadHeight(System.Single,System.Boolean) - name: SetHeadHeight(Single, Boolean) - href: api/XRTK.Services.CameraSystem.MixedRealityCameraSystem.html#XRTK_Services_CameraSystem_MixedRealityCameraSystem_SetHeadHeight_System_Single_System_Boolean_ - commentId: M:XRTK.Services.CameraSystem.MixedRealityCameraSystem.SetHeadHeight(System.Single,System.Boolean) - fullName: XRTK.Services.CameraSystem.MixedRealityCameraSystem.SetHeadHeight(System.Single, System.Boolean) - nameWithType: MixedRealityCameraSystem.SetHeadHeight(Single, Boolean) -- uid: XRTK.Services.CameraSystem.MixedRealityCameraSystem.SetHeadHeight* - name: SetHeadHeight - href: api/XRTK.Services.CameraSystem.MixedRealityCameraSystem.html#XRTK_Services_CameraSystem_MixedRealityCameraSystem_SetHeadHeight_ - commentId: Overload:XRTK.Services.CameraSystem.MixedRealityCameraSystem.SetHeadHeight - isSpec: "True" - fullName: XRTK.Services.CameraSystem.MixedRealityCameraSystem.SetHeadHeight - nameWithType: MixedRealityCameraSystem.SetHeadHeight -- uid: XRTK.Services.CameraSystem.MixedRealityCameraSystem.UnRegisterCameraDataProvider(XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider) - name: UnRegisterCameraDataProvider(IMixedRealityCameraDataProvider) - href: api/XRTK.Services.CameraSystem.MixedRealityCameraSystem.html#XRTK_Services_CameraSystem_MixedRealityCameraSystem_UnRegisterCameraDataProvider_XRTK_Interfaces_CameraSystem_IMixedRealityCameraDataProvider_ - commentId: M:XRTK.Services.CameraSystem.MixedRealityCameraSystem.UnRegisterCameraDataProvider(XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider) - fullName: XRTK.Services.CameraSystem.MixedRealityCameraSystem.UnRegisterCameraDataProvider(XRTK.Interfaces.CameraSystem.IMixedRealityCameraDataProvider) - nameWithType: MixedRealityCameraSystem.UnRegisterCameraDataProvider(IMixedRealityCameraDataProvider) -- uid: XRTK.Services.CameraSystem.MixedRealityCameraSystem.UnRegisterCameraDataProvider* - name: UnRegisterCameraDataProvider - href: api/XRTK.Services.CameraSystem.MixedRealityCameraSystem.html#XRTK_Services_CameraSystem_MixedRealityCameraSystem_UnRegisterCameraDataProvider_ - commentId: Overload:XRTK.Services.CameraSystem.MixedRealityCameraSystem.UnRegisterCameraDataProvider - isSpec: "True" - fullName: XRTK.Services.CameraSystem.MixedRealityCameraSystem.UnRegisterCameraDataProvider - nameWithType: MixedRealityCameraSystem.UnRegisterCameraDataProvider -- uid: XRTK.Services.DiagnosticsSystem - name: XRTK.Services.DiagnosticsSystem - href: api/XRTK.Services.DiagnosticsSystem.html - commentId: N:XRTK.Services.DiagnosticsSystem - fullName: XRTK.Services.DiagnosticsSystem - nameWithType: XRTK.Services.DiagnosticsSystem -- uid: XRTK.Services.DiagnosticsSystem.BaseMixedRealityDiagnosticsDataProvider - name: BaseMixedRealityDiagnosticsDataProvider - href: api/XRTK.Services.DiagnosticsSystem.BaseMixedRealityDiagnosticsDataProvider.html - commentId: T:XRTK.Services.DiagnosticsSystem.BaseMixedRealityDiagnosticsDataProvider - fullName: XRTK.Services.DiagnosticsSystem.BaseMixedRealityDiagnosticsDataProvider - nameWithType: BaseMixedRealityDiagnosticsDataProvider -- uid: XRTK.Services.DiagnosticsSystem.BaseMixedRealityDiagnosticsDataProvider.#ctor(System.String,System.UInt32,XRTK.Definitions.BaseMixedRealityProfile,XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem) - name: BaseMixedRealityDiagnosticsDataProvider(String, UInt32, BaseMixedRealityProfile, IMixedRealityDiagnosticsSystem) - href: api/XRTK.Services.DiagnosticsSystem.BaseMixedRealityDiagnosticsDataProvider.html#XRTK_Services_DiagnosticsSystem_BaseMixedRealityDiagnosticsDataProvider__ctor_System_String_System_UInt32_XRTK_Definitions_BaseMixedRealityProfile_XRTK_Interfaces_DiagnosticsSystem_IMixedRealityDiagnosticsSystem_ - commentId: M:XRTK.Services.DiagnosticsSystem.BaseMixedRealityDiagnosticsDataProvider.#ctor(System.String,System.UInt32,XRTK.Definitions.BaseMixedRealityProfile,XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem) - fullName: XRTK.Services.DiagnosticsSystem.BaseMixedRealityDiagnosticsDataProvider.BaseMixedRealityDiagnosticsDataProvider(System.String, System.UInt32, XRTK.Definitions.BaseMixedRealityProfile, XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem) - nameWithType: BaseMixedRealityDiagnosticsDataProvider.BaseMixedRealityDiagnosticsDataProvider(String, UInt32, BaseMixedRealityProfile, IMixedRealityDiagnosticsSystem) -- uid: XRTK.Services.DiagnosticsSystem.BaseMixedRealityDiagnosticsDataProvider.#ctor* - name: BaseMixedRealityDiagnosticsDataProvider - href: api/XRTK.Services.DiagnosticsSystem.BaseMixedRealityDiagnosticsDataProvider.html#XRTK_Services_DiagnosticsSystem_BaseMixedRealityDiagnosticsDataProvider__ctor_ - commentId: Overload:XRTK.Services.DiagnosticsSystem.BaseMixedRealityDiagnosticsDataProvider.#ctor - isSpec: "True" - fullName: XRTK.Services.DiagnosticsSystem.BaseMixedRealityDiagnosticsDataProvider.BaseMixedRealityDiagnosticsDataProvider - nameWithType: BaseMixedRealityDiagnosticsDataProvider.BaseMixedRealityDiagnosticsDataProvider -- uid: XRTK.Services.DiagnosticsSystem.BaseMixedRealityDiagnosticsDataProvider.DiagnosticsSystem - name: DiagnosticsSystem - href: api/XRTK.Services.DiagnosticsSystem.BaseMixedRealityDiagnosticsDataProvider.html#XRTK_Services_DiagnosticsSystem_BaseMixedRealityDiagnosticsDataProvider_DiagnosticsSystem - commentId: F:XRTK.Services.DiagnosticsSystem.BaseMixedRealityDiagnosticsDataProvider.DiagnosticsSystem - fullName: XRTK.Services.DiagnosticsSystem.BaseMixedRealityDiagnosticsDataProvider.DiagnosticsSystem - nameWithType: BaseMixedRealityDiagnosticsDataProvider.DiagnosticsSystem -- uid: XRTK.Services.DiagnosticsSystem.DiagnosticsUtils - name: DiagnosticsUtils - href: api/XRTK.Services.DiagnosticsSystem.DiagnosticsUtils.html - commentId: T:XRTK.Services.DiagnosticsSystem.DiagnosticsUtils - fullName: XRTK.Services.DiagnosticsSystem.DiagnosticsUtils - nameWithType: DiagnosticsUtils -- uid: XRTK.Services.DiagnosticsSystem.DiagnosticsUtils.ConvertBytesToMegabytes(System.UInt64) - name: ConvertBytesToMegabytes(UInt64) - href: api/XRTK.Services.DiagnosticsSystem.DiagnosticsUtils.html#XRTK_Services_DiagnosticsSystem_DiagnosticsUtils_ConvertBytesToMegabytes_System_UInt64_ - commentId: M:XRTK.Services.DiagnosticsSystem.DiagnosticsUtils.ConvertBytesToMegabytes(System.UInt64) - fullName: XRTK.Services.DiagnosticsSystem.DiagnosticsUtils.ConvertBytesToMegabytes(System.UInt64) - nameWithType: DiagnosticsUtils.ConvertBytesToMegabytes(UInt64) -- uid: XRTK.Services.DiagnosticsSystem.DiagnosticsUtils.ConvertBytesToMegabytes* - name: ConvertBytesToMegabytes - href: api/XRTK.Services.DiagnosticsSystem.DiagnosticsUtils.html#XRTK_Services_DiagnosticsSystem_DiagnosticsUtils_ConvertBytesToMegabytes_ - commentId: Overload:XRTK.Services.DiagnosticsSystem.DiagnosticsUtils.ConvertBytesToMegabytes - isSpec: "True" - fullName: XRTK.Services.DiagnosticsSystem.DiagnosticsUtils.ConvertBytesToMegabytes - nameWithType: DiagnosticsUtils.ConvertBytesToMegabytes -- uid: XRTK.Services.DiagnosticsSystem.DiagnosticsUtils.ConvertMegabytesToBytes(System.Int32) - name: ConvertMegabytesToBytes(Int32) - href: api/XRTK.Services.DiagnosticsSystem.DiagnosticsUtils.html#XRTK_Services_DiagnosticsSystem_DiagnosticsUtils_ConvertMegabytesToBytes_System_Int32_ - commentId: M:XRTK.Services.DiagnosticsSystem.DiagnosticsUtils.ConvertMegabytesToBytes(System.Int32) - fullName: XRTK.Services.DiagnosticsSystem.DiagnosticsUtils.ConvertMegabytesToBytes(System.Int32) - nameWithType: DiagnosticsUtils.ConvertMegabytesToBytes(Int32) -- uid: XRTK.Services.DiagnosticsSystem.DiagnosticsUtils.ConvertMegabytesToBytes* - name: ConvertMegabytesToBytes - href: api/XRTK.Services.DiagnosticsSystem.DiagnosticsUtils.html#XRTK_Services_DiagnosticsSystem_DiagnosticsUtils_ConvertMegabytesToBytes_ - commentId: Overload:XRTK.Services.DiagnosticsSystem.DiagnosticsUtils.ConvertMegabytesToBytes - isSpec: "True" - fullName: XRTK.Services.DiagnosticsSystem.DiagnosticsUtils.ConvertMegabytesToBytes - nameWithType: DiagnosticsUtils.ConvertMegabytesToBytes -- uid: XRTK.Services.DiagnosticsSystem.MixedRealityConsoleDiagnosticsDataProvider - name: MixedRealityConsoleDiagnosticsDataProvider - href: api/XRTK.Services.DiagnosticsSystem.MixedRealityConsoleDiagnosticsDataProvider.html - commentId: T:XRTK.Services.DiagnosticsSystem.MixedRealityConsoleDiagnosticsDataProvider - fullName: XRTK.Services.DiagnosticsSystem.MixedRealityConsoleDiagnosticsDataProvider - nameWithType: MixedRealityConsoleDiagnosticsDataProvider -- uid: XRTK.Services.DiagnosticsSystem.MixedRealityConsoleDiagnosticsDataProvider.#ctor(System.String,System.UInt32,XRTK.Definitions.BaseMixedRealityProfile,XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem) - name: MixedRealityConsoleDiagnosticsDataProvider(String, UInt32, BaseMixedRealityProfile, IMixedRealityDiagnosticsSystem) - href: api/XRTK.Services.DiagnosticsSystem.MixedRealityConsoleDiagnosticsDataProvider.html#XRTK_Services_DiagnosticsSystem_MixedRealityConsoleDiagnosticsDataProvider__ctor_System_String_System_UInt32_XRTK_Definitions_BaseMixedRealityProfile_XRTK_Interfaces_DiagnosticsSystem_IMixedRealityDiagnosticsSystem_ - commentId: M:XRTK.Services.DiagnosticsSystem.MixedRealityConsoleDiagnosticsDataProvider.#ctor(System.String,System.UInt32,XRTK.Definitions.BaseMixedRealityProfile,XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem) - fullName: XRTK.Services.DiagnosticsSystem.MixedRealityConsoleDiagnosticsDataProvider.MixedRealityConsoleDiagnosticsDataProvider(System.String, System.UInt32, XRTK.Definitions.BaseMixedRealityProfile, XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem) - nameWithType: MixedRealityConsoleDiagnosticsDataProvider.MixedRealityConsoleDiagnosticsDataProvider(String, UInt32, BaseMixedRealityProfile, IMixedRealityDiagnosticsSystem) -- uid: XRTK.Services.DiagnosticsSystem.MixedRealityConsoleDiagnosticsDataProvider.#ctor* - name: MixedRealityConsoleDiagnosticsDataProvider - href: api/XRTK.Services.DiagnosticsSystem.MixedRealityConsoleDiagnosticsDataProvider.html#XRTK_Services_DiagnosticsSystem_MixedRealityConsoleDiagnosticsDataProvider__ctor_ - commentId: Overload:XRTK.Services.DiagnosticsSystem.MixedRealityConsoleDiagnosticsDataProvider.#ctor - isSpec: "True" - fullName: XRTK.Services.DiagnosticsSystem.MixedRealityConsoleDiagnosticsDataProvider.MixedRealityConsoleDiagnosticsDataProvider - nameWithType: MixedRealityConsoleDiagnosticsDataProvider.MixedRealityConsoleDiagnosticsDataProvider -- uid: XRTK.Services.DiagnosticsSystem.MixedRealityConsoleDiagnosticsDataProvider.Disable - name: Disable() - href: api/XRTK.Services.DiagnosticsSystem.MixedRealityConsoleDiagnosticsDataProvider.html#XRTK_Services_DiagnosticsSystem_MixedRealityConsoleDiagnosticsDataProvider_Disable - commentId: M:XRTK.Services.DiagnosticsSystem.MixedRealityConsoleDiagnosticsDataProvider.Disable - fullName: XRTK.Services.DiagnosticsSystem.MixedRealityConsoleDiagnosticsDataProvider.Disable() - nameWithType: MixedRealityConsoleDiagnosticsDataProvider.Disable() -- uid: XRTK.Services.DiagnosticsSystem.MixedRealityConsoleDiagnosticsDataProvider.Disable* - name: Disable - href: api/XRTK.Services.DiagnosticsSystem.MixedRealityConsoleDiagnosticsDataProvider.html#XRTK_Services_DiagnosticsSystem_MixedRealityConsoleDiagnosticsDataProvider_Disable_ - commentId: Overload:XRTK.Services.DiagnosticsSystem.MixedRealityConsoleDiagnosticsDataProvider.Disable - isSpec: "True" - fullName: XRTK.Services.DiagnosticsSystem.MixedRealityConsoleDiagnosticsDataProvider.Disable - nameWithType: MixedRealityConsoleDiagnosticsDataProvider.Disable -- uid: XRTK.Services.DiagnosticsSystem.MixedRealityConsoleDiagnosticsDataProvider.Enable - name: Enable() - href: api/XRTK.Services.DiagnosticsSystem.MixedRealityConsoleDiagnosticsDataProvider.html#XRTK_Services_DiagnosticsSystem_MixedRealityConsoleDiagnosticsDataProvider_Enable - commentId: M:XRTK.Services.DiagnosticsSystem.MixedRealityConsoleDiagnosticsDataProvider.Enable - fullName: XRTK.Services.DiagnosticsSystem.MixedRealityConsoleDiagnosticsDataProvider.Enable() - nameWithType: MixedRealityConsoleDiagnosticsDataProvider.Enable() -- uid: XRTK.Services.DiagnosticsSystem.MixedRealityConsoleDiagnosticsDataProvider.Enable* - name: Enable - href: api/XRTK.Services.DiagnosticsSystem.MixedRealityConsoleDiagnosticsDataProvider.html#XRTK_Services_DiagnosticsSystem_MixedRealityConsoleDiagnosticsDataProvider_Enable_ - commentId: Overload:XRTK.Services.DiagnosticsSystem.MixedRealityConsoleDiagnosticsDataProvider.Enable - isSpec: "True" - fullName: XRTK.Services.DiagnosticsSystem.MixedRealityConsoleDiagnosticsDataProvider.Enable - nameWithType: MixedRealityConsoleDiagnosticsDataProvider.Enable -- uid: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem - name: MixedRealityDiagnosticsSystem - href: api/XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.html - commentId: T:XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem - fullName: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem - nameWithType: MixedRealityDiagnosticsSystem -- uid: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.#ctor(XRTK.Definitions.DiagnosticsSystem.MixedRealityDiagnosticsSystemProfile) - name: MixedRealityDiagnosticsSystem(MixedRealityDiagnosticsSystemProfile) - href: api/XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.html#XRTK_Services_DiagnosticsSystem_MixedRealityDiagnosticsSystem__ctor_XRTK_Definitions_DiagnosticsSystem_MixedRealityDiagnosticsSystemProfile_ - commentId: M:XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.#ctor(XRTK.Definitions.DiagnosticsSystem.MixedRealityDiagnosticsSystemProfile) - fullName: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.MixedRealityDiagnosticsSystem(XRTK.Definitions.DiagnosticsSystem.MixedRealityDiagnosticsSystemProfile) - nameWithType: MixedRealityDiagnosticsSystem.MixedRealityDiagnosticsSystem(MixedRealityDiagnosticsSystemProfile) -- uid: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.#ctor* - name: MixedRealityDiagnosticsSystem - href: api/XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.html#XRTK_Services_DiagnosticsSystem_MixedRealityDiagnosticsSystem__ctor_ - commentId: Overload:XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.#ctor - isSpec: "True" - fullName: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.MixedRealityDiagnosticsSystem - nameWithType: MixedRealityDiagnosticsSystem.MixedRealityDiagnosticsSystem -- uid: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.ApplicationSignature - name: ApplicationSignature - href: api/XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.html#XRTK_Services_DiagnosticsSystem_MixedRealityDiagnosticsSystem_ApplicationSignature - commentId: P:XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.ApplicationSignature - fullName: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.ApplicationSignature - nameWithType: MixedRealityDiagnosticsSystem.ApplicationSignature -- uid: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.ApplicationSignature* - name: ApplicationSignature - href: api/XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.html#XRTK_Services_DiagnosticsSystem_MixedRealityDiagnosticsSystem_ApplicationSignature_ - commentId: Overload:XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.ApplicationSignature - isSpec: "True" - fullName: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.ApplicationSignature - nameWithType: MixedRealityDiagnosticsSystem.ApplicationSignature -- uid: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.Destroy - name: Destroy() - href: api/XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.html#XRTK_Services_DiagnosticsSystem_MixedRealityDiagnosticsSystem_Destroy - commentId: M:XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.Destroy - fullName: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.Destroy() - nameWithType: MixedRealityDiagnosticsSystem.Destroy() -- uid: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.Destroy* - name: Destroy - href: api/XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.html#XRTK_Services_DiagnosticsSystem_MixedRealityDiagnosticsSystem_Destroy_ - commentId: Overload:XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.Destroy - isSpec: "True" - fullName: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.Destroy - nameWithType: MixedRealityDiagnosticsSystem.Destroy -- uid: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.DiagnosticsRoot - name: DiagnosticsRoot - href: api/XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.html#XRTK_Services_DiagnosticsSystem_MixedRealityDiagnosticsSystem_DiagnosticsRoot - commentId: P:XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.DiagnosticsRoot - fullName: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.DiagnosticsRoot - nameWithType: MixedRealityDiagnosticsSystem.DiagnosticsRoot -- uid: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.DiagnosticsRoot* - name: DiagnosticsRoot - href: api/XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.html#XRTK_Services_DiagnosticsSystem_MixedRealityDiagnosticsSystem_DiagnosticsRoot_ - commentId: Overload:XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.DiagnosticsRoot - isSpec: "True" - fullName: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.DiagnosticsRoot - nameWithType: MixedRealityDiagnosticsSystem.DiagnosticsRoot -- uid: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.DiagnosticsWindow - name: DiagnosticsWindow - href: api/XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.html#XRTK_Services_DiagnosticsSystem_MixedRealityDiagnosticsSystem_DiagnosticsWindow - commentId: P:XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.DiagnosticsWindow - fullName: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.DiagnosticsWindow - nameWithType: MixedRealityDiagnosticsSystem.DiagnosticsWindow -- uid: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.DiagnosticsWindow* - name: DiagnosticsWindow - href: api/XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.html#XRTK_Services_DiagnosticsSystem_MixedRealityDiagnosticsSystem_DiagnosticsWindow_ - commentId: Overload:XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.DiagnosticsWindow - isSpec: "True" - fullName: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.DiagnosticsWindow - nameWithType: MixedRealityDiagnosticsSystem.DiagnosticsWindow -- uid: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.Disable - name: Disable() - href: api/XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.html#XRTK_Services_DiagnosticsSystem_MixedRealityDiagnosticsSystem_Disable - commentId: M:XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.Disable - fullName: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.Disable() - nameWithType: MixedRealityDiagnosticsSystem.Disable() -- uid: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.Disable* - name: Disable - href: api/XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.html#XRTK_Services_DiagnosticsSystem_MixedRealityDiagnosticsSystem_Disable_ - commentId: Overload:XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.Disable - isSpec: "True" - fullName: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.Disable - nameWithType: MixedRealityDiagnosticsSystem.Disable -- uid: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.Enable - name: Enable() - href: api/XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.html#XRTK_Services_DiagnosticsSystem_MixedRealityDiagnosticsSystem_Enable - commentId: M:XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.Enable - fullName: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.Enable() - nameWithType: MixedRealityDiagnosticsSystem.Enable() -- uid: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.Enable* - name: Enable - href: api/XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.html#XRTK_Services_DiagnosticsSystem_MixedRealityDiagnosticsSystem_Enable_ - commentId: Overload:XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.Enable - isSpec: "True" - fullName: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.Enable - nameWithType: MixedRealityDiagnosticsSystem.Enable -- uid: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.Initialize - name: Initialize() - href: api/XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.html#XRTK_Services_DiagnosticsSystem_MixedRealityDiagnosticsSystem_Initialize - commentId: M:XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.Initialize - fullName: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.Initialize() - nameWithType: MixedRealityDiagnosticsSystem.Initialize() -- uid: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.Initialize* - name: Initialize - href: api/XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.html#XRTK_Services_DiagnosticsSystem_MixedRealityDiagnosticsSystem_Initialize_ - commentId: Overload:XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.Initialize - isSpec: "True" - fullName: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.Initialize - nameWithType: MixedRealityDiagnosticsSystem.Initialize -- uid: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.IsWindowEnabled - name: IsWindowEnabled - href: api/XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.html#XRTK_Services_DiagnosticsSystem_MixedRealityDiagnosticsSystem_IsWindowEnabled - commentId: P:XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.IsWindowEnabled - fullName: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.IsWindowEnabled - nameWithType: MixedRealityDiagnosticsSystem.IsWindowEnabled -- uid: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.IsWindowEnabled* - name: IsWindowEnabled - href: api/XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.html#XRTK_Services_DiagnosticsSystem_MixedRealityDiagnosticsSystem_IsWindowEnabled_ - commentId: Overload:XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.IsWindowEnabled - isSpec: "True" - fullName: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.IsWindowEnabled - nameWithType: MixedRealityDiagnosticsSystem.IsWindowEnabled -- uid: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.RaiseFrameRateChanged(System.Int32,System.Boolean) - name: RaiseFrameRateChanged(Int32, Boolean) - href: api/XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.html#XRTK_Services_DiagnosticsSystem_MixedRealityDiagnosticsSystem_RaiseFrameRateChanged_System_Int32_System_Boolean_ - commentId: M:XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.RaiseFrameRateChanged(System.Int32,System.Boolean) - fullName: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.RaiseFrameRateChanged(System.Int32, System.Boolean) - nameWithType: MixedRealityDiagnosticsSystem.RaiseFrameRateChanged(Int32, Boolean) -- uid: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.RaiseFrameRateChanged* - name: RaiseFrameRateChanged - href: api/XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.html#XRTK_Services_DiagnosticsSystem_MixedRealityDiagnosticsSystem_RaiseFrameRateChanged_ - commentId: Overload:XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.RaiseFrameRateChanged - isSpec: "True" - fullName: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.RaiseFrameRateChanged - nameWithType: MixedRealityDiagnosticsSystem.RaiseFrameRateChanged -- uid: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.RaiseLogReceived(System.String,System.String,UnityEngine.LogType) - name: RaiseLogReceived(String, String, LogType) - href: api/XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.html#XRTK_Services_DiagnosticsSystem_MixedRealityDiagnosticsSystem_RaiseLogReceived_System_String_System_String_UnityEngine_LogType_ - commentId: M:XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.RaiseLogReceived(System.String,System.String,UnityEngine.LogType) - fullName: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.RaiseLogReceived(System.String, System.String, UnityEngine.LogType) - nameWithType: MixedRealityDiagnosticsSystem.RaiseLogReceived(String, String, LogType) -- uid: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.RaiseLogReceived* - name: RaiseLogReceived - href: api/XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.html#XRTK_Services_DiagnosticsSystem_MixedRealityDiagnosticsSystem_RaiseLogReceived_ - commentId: Overload:XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.RaiseLogReceived - isSpec: "True" - fullName: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.RaiseLogReceived - nameWithType: MixedRealityDiagnosticsSystem.RaiseLogReceived -- uid: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.RaiseMemoryLimitChanged(XRTK.Definitions.DiagnosticsSystem.MemoryLimit) - name: RaiseMemoryLimitChanged(MemoryLimit) - href: api/XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.html#XRTK_Services_DiagnosticsSystem_MixedRealityDiagnosticsSystem_RaiseMemoryLimitChanged_XRTK_Definitions_DiagnosticsSystem_MemoryLimit_ - commentId: M:XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.RaiseMemoryLimitChanged(XRTK.Definitions.DiagnosticsSystem.MemoryLimit) - fullName: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.RaiseMemoryLimitChanged(XRTK.Definitions.DiagnosticsSystem.MemoryLimit) - nameWithType: MixedRealityDiagnosticsSystem.RaiseMemoryLimitChanged(MemoryLimit) -- uid: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.RaiseMemoryLimitChanged* - name: RaiseMemoryLimitChanged - href: api/XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.html#XRTK_Services_DiagnosticsSystem_MixedRealityDiagnosticsSystem_RaiseMemoryLimitChanged_ - commentId: Overload:XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.RaiseMemoryLimitChanged - isSpec: "True" - fullName: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.RaiseMemoryLimitChanged - nameWithType: MixedRealityDiagnosticsSystem.RaiseMemoryLimitChanged -- uid: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.RaiseMemoryPeakChanged(XRTK.Definitions.DiagnosticsSystem.MemoryPeak) - name: RaiseMemoryPeakChanged(MemoryPeak) - href: api/XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.html#XRTK_Services_DiagnosticsSystem_MixedRealityDiagnosticsSystem_RaiseMemoryPeakChanged_XRTK_Definitions_DiagnosticsSystem_MemoryPeak_ - commentId: M:XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.RaiseMemoryPeakChanged(XRTK.Definitions.DiagnosticsSystem.MemoryPeak) - fullName: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.RaiseMemoryPeakChanged(XRTK.Definitions.DiagnosticsSystem.MemoryPeak) - nameWithType: MixedRealityDiagnosticsSystem.RaiseMemoryPeakChanged(MemoryPeak) -- uid: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.RaiseMemoryPeakChanged* - name: RaiseMemoryPeakChanged - href: api/XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.html#XRTK_Services_DiagnosticsSystem_MixedRealityDiagnosticsSystem_RaiseMemoryPeakChanged_ - commentId: Overload:XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.RaiseMemoryPeakChanged - isSpec: "True" - fullName: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.RaiseMemoryPeakChanged - nameWithType: MixedRealityDiagnosticsSystem.RaiseMemoryPeakChanged -- uid: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.RaiseMemoryUsageChanged(XRTK.Definitions.DiagnosticsSystem.MemoryUsage) - name: RaiseMemoryUsageChanged(MemoryUsage) - href: api/XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.html#XRTK_Services_DiagnosticsSystem_MixedRealityDiagnosticsSystem_RaiseMemoryUsageChanged_XRTK_Definitions_DiagnosticsSystem_MemoryUsage_ - commentId: M:XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.RaiseMemoryUsageChanged(XRTK.Definitions.DiagnosticsSystem.MemoryUsage) - fullName: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.RaiseMemoryUsageChanged(XRTK.Definitions.DiagnosticsSystem.MemoryUsage) - nameWithType: MixedRealityDiagnosticsSystem.RaiseMemoryUsageChanged(MemoryUsage) -- uid: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.RaiseMemoryUsageChanged* - name: RaiseMemoryUsageChanged - href: api/XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.html#XRTK_Services_DiagnosticsSystem_MixedRealityDiagnosticsSystem_RaiseMemoryUsageChanged_ - commentId: Overload:XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.RaiseMemoryUsageChanged - isSpec: "True" - fullName: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.RaiseMemoryUsageChanged - nameWithType: MixedRealityDiagnosticsSystem.RaiseMemoryUsageChanged -- uid: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.RaiseMissedFramesChanged(System.Boolean[]) - name: RaiseMissedFramesChanged(Boolean[]) - href: api/XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.html#XRTK_Services_DiagnosticsSystem_MixedRealityDiagnosticsSystem_RaiseMissedFramesChanged_System_Boolean___ - commentId: M:XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.RaiseMissedFramesChanged(System.Boolean[]) - name.vb: RaiseMissedFramesChanged(Boolean()) - fullName: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.RaiseMissedFramesChanged(System.Boolean[]) - fullName.vb: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.RaiseMissedFramesChanged(System.Boolean()) - nameWithType: MixedRealityDiagnosticsSystem.RaiseMissedFramesChanged(Boolean[]) - nameWithType.vb: MixedRealityDiagnosticsSystem.RaiseMissedFramesChanged(Boolean()) -- uid: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.RaiseMissedFramesChanged* - name: RaiseMissedFramesChanged - href: api/XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.html#XRTK_Services_DiagnosticsSystem_MixedRealityDiagnosticsSystem_RaiseMissedFramesChanged_ - commentId: Overload:XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.RaiseMissedFramesChanged - isSpec: "True" - fullName: XRTK.Services.DiagnosticsSystem.MixedRealityDiagnosticsSystem.RaiseMissedFramesChanged - nameWithType: MixedRealityDiagnosticsSystem.RaiseMissedFramesChanged -- uid: XRTK.Services.DiagnosticsSystem.MixedRealityFrameDiagnosticsDataProvider - name: MixedRealityFrameDiagnosticsDataProvider - href: api/XRTK.Services.DiagnosticsSystem.MixedRealityFrameDiagnosticsDataProvider.html - commentId: T:XRTK.Services.DiagnosticsSystem.MixedRealityFrameDiagnosticsDataProvider - fullName: XRTK.Services.DiagnosticsSystem.MixedRealityFrameDiagnosticsDataProvider - nameWithType: MixedRealityFrameDiagnosticsDataProvider -- uid: XRTK.Services.DiagnosticsSystem.MixedRealityFrameDiagnosticsDataProvider.#ctor(System.String,System.UInt32,XRTK.Definitions.BaseMixedRealityProfile,XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem) - name: MixedRealityFrameDiagnosticsDataProvider(String, UInt32, BaseMixedRealityProfile, IMixedRealityDiagnosticsSystem) - href: api/XRTK.Services.DiagnosticsSystem.MixedRealityFrameDiagnosticsDataProvider.html#XRTK_Services_DiagnosticsSystem_MixedRealityFrameDiagnosticsDataProvider__ctor_System_String_System_UInt32_XRTK_Definitions_BaseMixedRealityProfile_XRTK_Interfaces_DiagnosticsSystem_IMixedRealityDiagnosticsSystem_ - commentId: M:XRTK.Services.DiagnosticsSystem.MixedRealityFrameDiagnosticsDataProvider.#ctor(System.String,System.UInt32,XRTK.Definitions.BaseMixedRealityProfile,XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem) - fullName: XRTK.Services.DiagnosticsSystem.MixedRealityFrameDiagnosticsDataProvider.MixedRealityFrameDiagnosticsDataProvider(System.String, System.UInt32, XRTK.Definitions.BaseMixedRealityProfile, XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem) - nameWithType: MixedRealityFrameDiagnosticsDataProvider.MixedRealityFrameDiagnosticsDataProvider(String, UInt32, BaseMixedRealityProfile, IMixedRealityDiagnosticsSystem) -- uid: XRTK.Services.DiagnosticsSystem.MixedRealityFrameDiagnosticsDataProvider.#ctor* - name: MixedRealityFrameDiagnosticsDataProvider - href: api/XRTK.Services.DiagnosticsSystem.MixedRealityFrameDiagnosticsDataProvider.html#XRTK_Services_DiagnosticsSystem_MixedRealityFrameDiagnosticsDataProvider__ctor_ - commentId: Overload:XRTK.Services.DiagnosticsSystem.MixedRealityFrameDiagnosticsDataProvider.#ctor - isSpec: "True" - fullName: XRTK.Services.DiagnosticsSystem.MixedRealityFrameDiagnosticsDataProvider.MixedRealityFrameDiagnosticsDataProvider - nameWithType: MixedRealityFrameDiagnosticsDataProvider.MixedRealityFrameDiagnosticsDataProvider -- uid: XRTK.Services.DiagnosticsSystem.MixedRealityFrameDiagnosticsDataProvider.Enable - name: Enable() - href: api/XRTK.Services.DiagnosticsSystem.MixedRealityFrameDiagnosticsDataProvider.html#XRTK_Services_DiagnosticsSystem_MixedRealityFrameDiagnosticsDataProvider_Enable - commentId: M:XRTK.Services.DiagnosticsSystem.MixedRealityFrameDiagnosticsDataProvider.Enable - fullName: XRTK.Services.DiagnosticsSystem.MixedRealityFrameDiagnosticsDataProvider.Enable() - nameWithType: MixedRealityFrameDiagnosticsDataProvider.Enable() -- uid: XRTK.Services.DiagnosticsSystem.MixedRealityFrameDiagnosticsDataProvider.Enable* - name: Enable - href: api/XRTK.Services.DiagnosticsSystem.MixedRealityFrameDiagnosticsDataProvider.html#XRTK_Services_DiagnosticsSystem_MixedRealityFrameDiagnosticsDataProvider_Enable_ - commentId: Overload:XRTK.Services.DiagnosticsSystem.MixedRealityFrameDiagnosticsDataProvider.Enable - isSpec: "True" - fullName: XRTK.Services.DiagnosticsSystem.MixedRealityFrameDiagnosticsDataProvider.Enable - nameWithType: MixedRealityFrameDiagnosticsDataProvider.Enable -- uid: XRTK.Services.DiagnosticsSystem.MixedRealityFrameDiagnosticsDataProvider.LateUpdate - name: LateUpdate() - href: api/XRTK.Services.DiagnosticsSystem.MixedRealityFrameDiagnosticsDataProvider.html#XRTK_Services_DiagnosticsSystem_MixedRealityFrameDiagnosticsDataProvider_LateUpdate - commentId: M:XRTK.Services.DiagnosticsSystem.MixedRealityFrameDiagnosticsDataProvider.LateUpdate - fullName: XRTK.Services.DiagnosticsSystem.MixedRealityFrameDiagnosticsDataProvider.LateUpdate() - nameWithType: MixedRealityFrameDiagnosticsDataProvider.LateUpdate() -- uid: XRTK.Services.DiagnosticsSystem.MixedRealityFrameDiagnosticsDataProvider.LateUpdate* - name: LateUpdate - href: api/XRTK.Services.DiagnosticsSystem.MixedRealityFrameDiagnosticsDataProvider.html#XRTK_Services_DiagnosticsSystem_MixedRealityFrameDiagnosticsDataProvider_LateUpdate_ - commentId: Overload:XRTK.Services.DiagnosticsSystem.MixedRealityFrameDiagnosticsDataProvider.LateUpdate - isSpec: "True" - fullName: XRTK.Services.DiagnosticsSystem.MixedRealityFrameDiagnosticsDataProvider.LateUpdate - nameWithType: MixedRealityFrameDiagnosticsDataProvider.LateUpdate -- uid: XRTK.Services.DiagnosticsSystem.MixedRealityMemoryDiagnosticsDataProvider - name: MixedRealityMemoryDiagnosticsDataProvider - href: api/XRTK.Services.DiagnosticsSystem.MixedRealityMemoryDiagnosticsDataProvider.html - commentId: T:XRTK.Services.DiagnosticsSystem.MixedRealityMemoryDiagnosticsDataProvider - fullName: XRTK.Services.DiagnosticsSystem.MixedRealityMemoryDiagnosticsDataProvider - nameWithType: MixedRealityMemoryDiagnosticsDataProvider -- uid: XRTK.Services.DiagnosticsSystem.MixedRealityMemoryDiagnosticsDataProvider.#ctor(System.String,System.UInt32,XRTK.Definitions.BaseMixedRealityProfile,XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem) - name: MixedRealityMemoryDiagnosticsDataProvider(String, UInt32, BaseMixedRealityProfile, IMixedRealityDiagnosticsSystem) - href: api/XRTK.Services.DiagnosticsSystem.MixedRealityMemoryDiagnosticsDataProvider.html#XRTK_Services_DiagnosticsSystem_MixedRealityMemoryDiagnosticsDataProvider__ctor_System_String_System_UInt32_XRTK_Definitions_BaseMixedRealityProfile_XRTK_Interfaces_DiagnosticsSystem_IMixedRealityDiagnosticsSystem_ - commentId: M:XRTK.Services.DiagnosticsSystem.MixedRealityMemoryDiagnosticsDataProvider.#ctor(System.String,System.UInt32,XRTK.Definitions.BaseMixedRealityProfile,XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem) - fullName: XRTK.Services.DiagnosticsSystem.MixedRealityMemoryDiagnosticsDataProvider.MixedRealityMemoryDiagnosticsDataProvider(System.String, System.UInt32, XRTK.Definitions.BaseMixedRealityProfile, XRTK.Interfaces.DiagnosticsSystem.IMixedRealityDiagnosticsSystem) - nameWithType: MixedRealityMemoryDiagnosticsDataProvider.MixedRealityMemoryDiagnosticsDataProvider(String, UInt32, BaseMixedRealityProfile, IMixedRealityDiagnosticsSystem) -- uid: XRTK.Services.DiagnosticsSystem.MixedRealityMemoryDiagnosticsDataProvider.#ctor* - name: MixedRealityMemoryDiagnosticsDataProvider - href: api/XRTK.Services.DiagnosticsSystem.MixedRealityMemoryDiagnosticsDataProvider.html#XRTK_Services_DiagnosticsSystem_MixedRealityMemoryDiagnosticsDataProvider__ctor_ - commentId: Overload:XRTK.Services.DiagnosticsSystem.MixedRealityMemoryDiagnosticsDataProvider.#ctor - isSpec: "True" - fullName: XRTK.Services.DiagnosticsSystem.MixedRealityMemoryDiagnosticsDataProvider.MixedRealityMemoryDiagnosticsDataProvider - nameWithType: MixedRealityMemoryDiagnosticsDataProvider.MixedRealityMemoryDiagnosticsDataProvider -- uid: XRTK.Services.DiagnosticsSystem.MixedRealityMemoryDiagnosticsDataProvider.LateUpdate - name: LateUpdate() - href: api/XRTK.Services.DiagnosticsSystem.MixedRealityMemoryDiagnosticsDataProvider.html#XRTK_Services_DiagnosticsSystem_MixedRealityMemoryDiagnosticsDataProvider_LateUpdate - commentId: M:XRTK.Services.DiagnosticsSystem.MixedRealityMemoryDiagnosticsDataProvider.LateUpdate - fullName: XRTK.Services.DiagnosticsSystem.MixedRealityMemoryDiagnosticsDataProvider.LateUpdate() - nameWithType: MixedRealityMemoryDiagnosticsDataProvider.LateUpdate() -- uid: XRTK.Services.DiagnosticsSystem.MixedRealityMemoryDiagnosticsDataProvider.LateUpdate* - name: LateUpdate - href: api/XRTK.Services.DiagnosticsSystem.MixedRealityMemoryDiagnosticsDataProvider.html#XRTK_Services_DiagnosticsSystem_MixedRealityMemoryDiagnosticsDataProvider_LateUpdate_ - commentId: Overload:XRTK.Services.DiagnosticsSystem.MixedRealityMemoryDiagnosticsDataProvider.LateUpdate - isSpec: "True" - fullName: XRTK.Services.DiagnosticsSystem.MixedRealityMemoryDiagnosticsDataProvider.LateUpdate - nameWithType: MixedRealityMemoryDiagnosticsDataProvider.LateUpdate -- uid: XRTK.Services.InputSystem - name: XRTK.Services.InputSystem - href: api/XRTK.Services.InputSystem.html - commentId: N:XRTK.Services.InputSystem - fullName: XRTK.Services.InputSystem - nameWithType: XRTK.Services.InputSystem -- uid: XRTK.Services.InputSystem.FocusProvider - name: FocusProvider - href: api/XRTK.Services.InputSystem.FocusProvider.html - commentId: T:XRTK.Services.InputSystem.FocusProvider - fullName: XRTK.Services.InputSystem.FocusProvider - nameWithType: FocusProvider -- uid: XRTK.Services.InputSystem.FocusProvider.#ctor(System.String,System.UInt32,XRTK.Definitions.BaseMixedRealityProfile,XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - name: FocusProvider(String, UInt32, BaseMixedRealityProfile, IMixedRealityInputSystem) - href: api/XRTK.Services.InputSystem.FocusProvider.html#XRTK_Services_InputSystem_FocusProvider__ctor_System_String_System_UInt32_XRTK_Definitions_BaseMixedRealityProfile_XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_ - commentId: M:XRTK.Services.InputSystem.FocusProvider.#ctor(System.String,System.UInt32,XRTK.Definitions.BaseMixedRealityProfile,XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - fullName: XRTK.Services.InputSystem.FocusProvider.FocusProvider(System.String, System.UInt32, XRTK.Definitions.BaseMixedRealityProfile, XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - nameWithType: FocusProvider.FocusProvider(String, UInt32, BaseMixedRealityProfile, IMixedRealityInputSystem) -- uid: XRTK.Services.InputSystem.FocusProvider.#ctor* - name: FocusProvider - href: api/XRTK.Services.InputSystem.FocusProvider.html#XRTK_Services_InputSystem_FocusProvider__ctor_ - commentId: Overload:XRTK.Services.InputSystem.FocusProvider.#ctor - isSpec: "True" - fullName: XRTK.Services.InputSystem.FocusProvider.FocusProvider - nameWithType: FocusProvider.FocusProvider -- uid: XRTK.Services.InputSystem.FocusProvider.Destroy - name: Destroy() - href: api/XRTK.Services.InputSystem.FocusProvider.html#XRTK_Services_InputSystem_FocusProvider_Destroy - commentId: M:XRTK.Services.InputSystem.FocusProvider.Destroy - fullName: XRTK.Services.InputSystem.FocusProvider.Destroy() - nameWithType: FocusProvider.Destroy() -- uid: XRTK.Services.InputSystem.FocusProvider.Destroy* - name: Destroy - href: api/XRTK.Services.InputSystem.FocusProvider.html#XRTK_Services_InputSystem_FocusProvider_Destroy_ - commentId: Overload:XRTK.Services.InputSystem.FocusProvider.Destroy - isSpec: "True" - fullName: XRTK.Services.InputSystem.FocusProvider.Destroy - nameWithType: FocusProvider.Destroy -- uid: XRTK.Services.InputSystem.FocusProvider.GenerateNewPointerId - name: GenerateNewPointerId() - href: api/XRTK.Services.InputSystem.FocusProvider.html#XRTK_Services_InputSystem_FocusProvider_GenerateNewPointerId - commentId: M:XRTK.Services.InputSystem.FocusProvider.GenerateNewPointerId - fullName: XRTK.Services.InputSystem.FocusProvider.GenerateNewPointerId() - nameWithType: FocusProvider.GenerateNewPointerId() -- uid: XRTK.Services.InputSystem.FocusProvider.GenerateNewPointerId* - name: GenerateNewPointerId - href: api/XRTK.Services.InputSystem.FocusProvider.html#XRTK_Services_InputSystem_FocusProvider_GenerateNewPointerId_ - commentId: Overload:XRTK.Services.InputSystem.FocusProvider.GenerateNewPointerId - isSpec: "True" - fullName: XRTK.Services.InputSystem.FocusProvider.GenerateNewPointerId - nameWithType: FocusProvider.GenerateNewPointerId -- uid: XRTK.Services.InputSystem.FocusProvider.GetFocusedObject(XRTK.Interfaces.InputSystem.IMixedRealityPointer) - name: GetFocusedObject(IMixedRealityPointer) - href: api/XRTK.Services.InputSystem.FocusProvider.html#XRTK_Services_InputSystem_FocusProvider_GetFocusedObject_XRTK_Interfaces_InputSystem_IMixedRealityPointer_ - commentId: M:XRTK.Services.InputSystem.FocusProvider.GetFocusedObject(XRTK.Interfaces.InputSystem.IMixedRealityPointer) - fullName: XRTK.Services.InputSystem.FocusProvider.GetFocusedObject(XRTK.Interfaces.InputSystem.IMixedRealityPointer) - nameWithType: FocusProvider.GetFocusedObject(IMixedRealityPointer) -- uid: XRTK.Services.InputSystem.FocusProvider.GetFocusedObject* - name: GetFocusedObject - href: api/XRTK.Services.InputSystem.FocusProvider.html#XRTK_Services_InputSystem_FocusProvider_GetFocusedObject_ - commentId: Overload:XRTK.Services.InputSystem.FocusProvider.GetFocusedObject - isSpec: "True" - fullName: XRTK.Services.InputSystem.FocusProvider.GetFocusedObject - nameWithType: FocusProvider.GetFocusedObject -- uid: XRTK.Services.InputSystem.FocusProvider.GlobalPointerRaycastLayerMasks - name: GlobalPointerRaycastLayerMasks - href: api/XRTK.Services.InputSystem.FocusProvider.html#XRTK_Services_InputSystem_FocusProvider_GlobalPointerRaycastLayerMasks - commentId: P:XRTK.Services.InputSystem.FocusProvider.GlobalPointerRaycastLayerMasks - fullName: XRTK.Services.InputSystem.FocusProvider.GlobalPointerRaycastLayerMasks - nameWithType: FocusProvider.GlobalPointerRaycastLayerMasks -- uid: XRTK.Services.InputSystem.FocusProvider.GlobalPointerRaycastLayerMasks* - name: GlobalPointerRaycastLayerMasks - href: api/XRTK.Services.InputSystem.FocusProvider.html#XRTK_Services_InputSystem_FocusProvider_GlobalPointerRaycastLayerMasks_ - commentId: Overload:XRTK.Services.InputSystem.FocusProvider.GlobalPointerRaycastLayerMasks - isSpec: "True" - fullName: XRTK.Services.InputSystem.FocusProvider.GlobalPointerRaycastLayerMasks - nameWithType: FocusProvider.GlobalPointerRaycastLayerMasks -- uid: XRTK.Services.InputSystem.FocusProvider.Initialize - name: Initialize() - href: api/XRTK.Services.InputSystem.FocusProvider.html#XRTK_Services_InputSystem_FocusProvider_Initialize - commentId: M:XRTK.Services.InputSystem.FocusProvider.Initialize - fullName: XRTK.Services.InputSystem.FocusProvider.Initialize() - nameWithType: FocusProvider.Initialize() -- uid: XRTK.Services.InputSystem.FocusProvider.Initialize* - name: Initialize - href: api/XRTK.Services.InputSystem.FocusProvider.html#XRTK_Services_InputSystem_FocusProvider_Initialize_ - commentId: Overload:XRTK.Services.InputSystem.FocusProvider.Initialize - isSpec: "True" - fullName: XRTK.Services.InputSystem.FocusProvider.Initialize - nameWithType: FocusProvider.Initialize -- uid: XRTK.Services.InputSystem.FocusProvider.InputSystem - name: InputSystem - href: api/XRTK.Services.InputSystem.FocusProvider.html#XRTK_Services_InputSystem_FocusProvider_InputSystem - commentId: P:XRTK.Services.InputSystem.FocusProvider.InputSystem - fullName: XRTK.Services.InputSystem.FocusProvider.InputSystem - nameWithType: FocusProvider.InputSystem -- uid: XRTK.Services.InputSystem.FocusProvider.InputSystem* - name: InputSystem - href: api/XRTK.Services.InputSystem.FocusProvider.html#XRTK_Services_InputSystem_FocusProvider_InputSystem_ - commentId: Overload:XRTK.Services.InputSystem.FocusProvider.InputSystem - isSpec: "True" - fullName: XRTK.Services.InputSystem.FocusProvider.InputSystem - nameWithType: FocusProvider.InputSystem -- uid: XRTK.Services.InputSystem.FocusProvider.IsPointerRegistered(XRTK.Interfaces.InputSystem.IMixedRealityPointer) - name: IsPointerRegistered(IMixedRealityPointer) - href: api/XRTK.Services.InputSystem.FocusProvider.html#XRTK_Services_InputSystem_FocusProvider_IsPointerRegistered_XRTK_Interfaces_InputSystem_IMixedRealityPointer_ - commentId: M:XRTK.Services.InputSystem.FocusProvider.IsPointerRegistered(XRTK.Interfaces.InputSystem.IMixedRealityPointer) - fullName: XRTK.Services.InputSystem.FocusProvider.IsPointerRegistered(XRTK.Interfaces.InputSystem.IMixedRealityPointer) - nameWithType: FocusProvider.IsPointerRegistered(IMixedRealityPointer) -- uid: XRTK.Services.InputSystem.FocusProvider.IsPointerRegistered* - name: IsPointerRegistered - href: api/XRTK.Services.InputSystem.FocusProvider.html#XRTK_Services_InputSystem_FocusProvider_IsPointerRegistered_ - commentId: Overload:XRTK.Services.InputSystem.FocusProvider.IsPointerRegistered - isSpec: "True" - fullName: XRTK.Services.InputSystem.FocusProvider.IsPointerRegistered - nameWithType: FocusProvider.IsPointerRegistered -- uid: XRTK.Services.InputSystem.FocusProvider.Name - name: Name - href: api/XRTK.Services.InputSystem.FocusProvider.html#XRTK_Services_InputSystem_FocusProvider_Name - commentId: P:XRTK.Services.InputSystem.FocusProvider.Name - fullName: XRTK.Services.InputSystem.FocusProvider.Name - nameWithType: FocusProvider.Name -- uid: XRTK.Services.InputSystem.FocusProvider.Name* - name: Name - href: api/XRTK.Services.InputSystem.FocusProvider.html#XRTK_Services_InputSystem_FocusProvider_Name_ - commentId: Overload:XRTK.Services.InputSystem.FocusProvider.Name - isSpec: "True" - fullName: XRTK.Services.InputSystem.FocusProvider.Name - nameWithType: FocusProvider.Name -- uid: XRTK.Services.InputSystem.FocusProvider.OnSourceDetected(XRTK.EventDatum.Input.SourceStateEventData) - name: OnSourceDetected(SourceStateEventData) - href: api/XRTK.Services.InputSystem.FocusProvider.html#XRTK_Services_InputSystem_FocusProvider_OnSourceDetected_XRTK_EventDatum_Input_SourceStateEventData_ - commentId: M:XRTK.Services.InputSystem.FocusProvider.OnSourceDetected(XRTK.EventDatum.Input.SourceStateEventData) - fullName: XRTK.Services.InputSystem.FocusProvider.OnSourceDetected(XRTK.EventDatum.Input.SourceStateEventData) - nameWithType: FocusProvider.OnSourceDetected(SourceStateEventData) -- uid: XRTK.Services.InputSystem.FocusProvider.OnSourceDetected* - name: OnSourceDetected - href: api/XRTK.Services.InputSystem.FocusProvider.html#XRTK_Services_InputSystem_FocusProvider_OnSourceDetected_ - commentId: Overload:XRTK.Services.InputSystem.FocusProvider.OnSourceDetected - isSpec: "True" - fullName: XRTK.Services.InputSystem.FocusProvider.OnSourceDetected - nameWithType: FocusProvider.OnSourceDetected -- uid: XRTK.Services.InputSystem.FocusProvider.OnSourceLost(XRTK.EventDatum.Input.SourceStateEventData) - name: OnSourceLost(SourceStateEventData) - href: api/XRTK.Services.InputSystem.FocusProvider.html#XRTK_Services_InputSystem_FocusProvider_OnSourceLost_XRTK_EventDatum_Input_SourceStateEventData_ - commentId: M:XRTK.Services.InputSystem.FocusProvider.OnSourceLost(XRTK.EventDatum.Input.SourceStateEventData) - fullName: XRTK.Services.InputSystem.FocusProvider.OnSourceLost(XRTK.EventDatum.Input.SourceStateEventData) - nameWithType: FocusProvider.OnSourceLost(SourceStateEventData) -- uid: XRTK.Services.InputSystem.FocusProvider.OnSourceLost* - name: OnSourceLost - href: api/XRTK.Services.InputSystem.FocusProvider.html#XRTK_Services_InputSystem_FocusProvider_OnSourceLost_ - commentId: Overload:XRTK.Services.InputSystem.FocusProvider.OnSourceLost - isSpec: "True" - fullName: XRTK.Services.InputSystem.FocusProvider.OnSourceLost - nameWithType: FocusProvider.OnSourceLost -- uid: XRTK.Services.InputSystem.FocusProvider.Priority - name: Priority - href: api/XRTK.Services.InputSystem.FocusProvider.html#XRTK_Services_InputSystem_FocusProvider_Priority - commentId: P:XRTK.Services.InputSystem.FocusProvider.Priority - fullName: XRTK.Services.InputSystem.FocusProvider.Priority - nameWithType: FocusProvider.Priority -- uid: XRTK.Services.InputSystem.FocusProvider.Priority* - name: Priority - href: api/XRTK.Services.InputSystem.FocusProvider.html#XRTK_Services_InputSystem_FocusProvider_Priority_ - commentId: Overload:XRTK.Services.InputSystem.FocusProvider.Priority - isSpec: "True" - fullName: XRTK.Services.InputSystem.FocusProvider.Priority - nameWithType: FocusProvider.Priority -- uid: XRTK.Services.InputSystem.FocusProvider.RegisterPointer(XRTK.Interfaces.InputSystem.IMixedRealityPointer) - name: RegisterPointer(IMixedRealityPointer) - href: api/XRTK.Services.InputSystem.FocusProvider.html#XRTK_Services_InputSystem_FocusProvider_RegisterPointer_XRTK_Interfaces_InputSystem_IMixedRealityPointer_ - commentId: M:XRTK.Services.InputSystem.FocusProvider.RegisterPointer(XRTK.Interfaces.InputSystem.IMixedRealityPointer) - fullName: XRTK.Services.InputSystem.FocusProvider.RegisterPointer(XRTK.Interfaces.InputSystem.IMixedRealityPointer) - nameWithType: FocusProvider.RegisterPointer(IMixedRealityPointer) -- uid: XRTK.Services.InputSystem.FocusProvider.RegisterPointer* - name: RegisterPointer - href: api/XRTK.Services.InputSystem.FocusProvider.html#XRTK_Services_InputSystem_FocusProvider_RegisterPointer_ - commentId: Overload:XRTK.Services.InputSystem.FocusProvider.RegisterPointer - isSpec: "True" - fullName: XRTK.Services.InputSystem.FocusProvider.RegisterPointer - nameWithType: FocusProvider.RegisterPointer -- uid: XRTK.Services.InputSystem.FocusProvider.TryGetFocusDetails(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Interfaces.InputSystem.IPointerResult@) - name: TryGetFocusDetails(IMixedRealityPointer, out IPointerResult) - href: api/XRTK.Services.InputSystem.FocusProvider.html#XRTK_Services_InputSystem_FocusProvider_TryGetFocusDetails_XRTK_Interfaces_InputSystem_IMixedRealityPointer_XRTK_Interfaces_InputSystem_IPointerResult__ - commentId: M:XRTK.Services.InputSystem.FocusProvider.TryGetFocusDetails(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Interfaces.InputSystem.IPointerResult@) - name.vb: TryGetFocusDetails(IMixedRealityPointer, ByRef IPointerResult) - fullName: XRTK.Services.InputSystem.FocusProvider.TryGetFocusDetails(XRTK.Interfaces.InputSystem.IMixedRealityPointer, out XRTK.Interfaces.InputSystem.IPointerResult) - fullName.vb: XRTK.Services.InputSystem.FocusProvider.TryGetFocusDetails(XRTK.Interfaces.InputSystem.IMixedRealityPointer, ByRef XRTK.Interfaces.InputSystem.IPointerResult) - nameWithType: FocusProvider.TryGetFocusDetails(IMixedRealityPointer, out IPointerResult) - nameWithType.vb: FocusProvider.TryGetFocusDetails(IMixedRealityPointer, ByRef IPointerResult) -- uid: XRTK.Services.InputSystem.FocusProvider.TryGetFocusDetails* - name: TryGetFocusDetails - href: api/XRTK.Services.InputSystem.FocusProvider.html#XRTK_Services_InputSystem_FocusProvider_TryGetFocusDetails_ - commentId: Overload:XRTK.Services.InputSystem.FocusProvider.TryGetFocusDetails - isSpec: "True" - fullName: XRTK.Services.InputSystem.FocusProvider.TryGetFocusDetails - nameWithType: FocusProvider.TryGetFocusDetails -- uid: XRTK.Services.InputSystem.FocusProvider.TryGetSpecificPointerGraphicEventData(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.EventDatum.Input.GraphicInputEventData@) - name: TryGetSpecificPointerGraphicEventData(IMixedRealityPointer, out GraphicInputEventData) - href: api/XRTK.Services.InputSystem.FocusProvider.html#XRTK_Services_InputSystem_FocusProvider_TryGetSpecificPointerGraphicEventData_XRTK_Interfaces_InputSystem_IMixedRealityPointer_XRTK_EventDatum_Input_GraphicInputEventData__ - commentId: M:XRTK.Services.InputSystem.FocusProvider.TryGetSpecificPointerGraphicEventData(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.EventDatum.Input.GraphicInputEventData@) - name.vb: TryGetSpecificPointerGraphicEventData(IMixedRealityPointer, ByRef GraphicInputEventData) - fullName: XRTK.Services.InputSystem.FocusProvider.TryGetSpecificPointerGraphicEventData(XRTK.Interfaces.InputSystem.IMixedRealityPointer, out XRTK.EventDatum.Input.GraphicInputEventData) - fullName.vb: XRTK.Services.InputSystem.FocusProvider.TryGetSpecificPointerGraphicEventData(XRTK.Interfaces.InputSystem.IMixedRealityPointer, ByRef XRTK.EventDatum.Input.GraphicInputEventData) - nameWithType: FocusProvider.TryGetSpecificPointerGraphicEventData(IMixedRealityPointer, out GraphicInputEventData) - nameWithType.vb: FocusProvider.TryGetSpecificPointerGraphicEventData(IMixedRealityPointer, ByRef GraphicInputEventData) -- uid: XRTK.Services.InputSystem.FocusProvider.TryGetSpecificPointerGraphicEventData* - name: TryGetSpecificPointerGraphicEventData - href: api/XRTK.Services.InputSystem.FocusProvider.html#XRTK_Services_InputSystem_FocusProvider_TryGetSpecificPointerGraphicEventData_ - commentId: Overload:XRTK.Services.InputSystem.FocusProvider.TryGetSpecificPointerGraphicEventData - isSpec: "True" - fullName: XRTK.Services.InputSystem.FocusProvider.TryGetSpecificPointerGraphicEventData - nameWithType: FocusProvider.TryGetSpecificPointerGraphicEventData -- uid: XRTK.Services.InputSystem.FocusProvider.UIRaycastCamera - name: UIRaycastCamera - href: api/XRTK.Services.InputSystem.FocusProvider.html#XRTK_Services_InputSystem_FocusProvider_UIRaycastCamera - commentId: P:XRTK.Services.InputSystem.FocusProvider.UIRaycastCamera - fullName: XRTK.Services.InputSystem.FocusProvider.UIRaycastCamera - nameWithType: FocusProvider.UIRaycastCamera -- uid: XRTK.Services.InputSystem.FocusProvider.UIRaycastCamera* - name: UIRaycastCamera - href: api/XRTK.Services.InputSystem.FocusProvider.html#XRTK_Services_InputSystem_FocusProvider_UIRaycastCamera_ - commentId: Overload:XRTK.Services.InputSystem.FocusProvider.UIRaycastCamera - isSpec: "True" - fullName: XRTK.Services.InputSystem.FocusProvider.UIRaycastCamera - nameWithType: FocusProvider.UIRaycastCamera -- uid: XRTK.Services.InputSystem.FocusProvider.UnregisterPointer(XRTK.Interfaces.InputSystem.IMixedRealityPointer) - name: UnregisterPointer(IMixedRealityPointer) - href: api/XRTK.Services.InputSystem.FocusProvider.html#XRTK_Services_InputSystem_FocusProvider_UnregisterPointer_XRTK_Interfaces_InputSystem_IMixedRealityPointer_ - commentId: M:XRTK.Services.InputSystem.FocusProvider.UnregisterPointer(XRTK.Interfaces.InputSystem.IMixedRealityPointer) - fullName: XRTK.Services.InputSystem.FocusProvider.UnregisterPointer(XRTK.Interfaces.InputSystem.IMixedRealityPointer) - nameWithType: FocusProvider.UnregisterPointer(IMixedRealityPointer) -- uid: XRTK.Services.InputSystem.FocusProvider.UnregisterPointer* - name: UnregisterPointer - href: api/XRTK.Services.InputSystem.FocusProvider.html#XRTK_Services_InputSystem_FocusProvider_UnregisterPointer_ - commentId: Overload:XRTK.Services.InputSystem.FocusProvider.UnregisterPointer - isSpec: "True" - fullName: XRTK.Services.InputSystem.FocusProvider.UnregisterPointer - nameWithType: FocusProvider.UnregisterPointer -- uid: XRTK.Services.InputSystem.FocusProvider.Update - name: Update() - href: api/XRTK.Services.InputSystem.FocusProvider.html#XRTK_Services_InputSystem_FocusProvider_Update - commentId: M:XRTK.Services.InputSystem.FocusProvider.Update - fullName: XRTK.Services.InputSystem.FocusProvider.Update() - nameWithType: FocusProvider.Update() -- uid: XRTK.Services.InputSystem.FocusProvider.Update* - name: Update - href: api/XRTK.Services.InputSystem.FocusProvider.html#XRTK_Services_InputSystem_FocusProvider_Update_ - commentId: Overload:XRTK.Services.InputSystem.FocusProvider.Update - isSpec: "True" - fullName: XRTK.Services.InputSystem.FocusProvider.Update - nameWithType: FocusProvider.Update -- uid: XRTK.Services.InputSystem.FocusProvider.UpdateCanvasEventSystems - name: UpdateCanvasEventSystems() - href: api/XRTK.Services.InputSystem.FocusProvider.html#XRTK_Services_InputSystem_FocusProvider_UpdateCanvasEventSystems - commentId: M:XRTK.Services.InputSystem.FocusProvider.UpdateCanvasEventSystems - fullName: XRTK.Services.InputSystem.FocusProvider.UpdateCanvasEventSystems() - nameWithType: FocusProvider.UpdateCanvasEventSystems() -- uid: XRTK.Services.InputSystem.FocusProvider.UpdateCanvasEventSystems* - name: UpdateCanvasEventSystems - href: api/XRTK.Services.InputSystem.FocusProvider.html#XRTK_Services_InputSystem_FocusProvider_UpdateCanvasEventSystems_ - commentId: Overload:XRTK.Services.InputSystem.FocusProvider.UpdateCanvasEventSystems - isSpec: "True" - fullName: XRTK.Services.InputSystem.FocusProvider.UpdateCanvasEventSystems - nameWithType: FocusProvider.UpdateCanvasEventSystems -- uid: XRTK.Services.InputSystem.FocusProvider.XRTK#Interfaces#InputSystem#IMixedRealityFocusProvider#GlobalPointingExtent - name: IMixedRealityFocusProvider.GlobalPointingExtent - href: api/XRTK.Services.InputSystem.FocusProvider.html#XRTK_Services_InputSystem_FocusProvider_XRTK_Interfaces_InputSystem_IMixedRealityFocusProvider_GlobalPointingExtent - commentId: P:XRTK.Services.InputSystem.FocusProvider.XRTK#Interfaces#InputSystem#IMixedRealityFocusProvider#GlobalPointingExtent - name.vb: XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.GlobalPointingExtent - fullName: XRTK.Services.InputSystem.FocusProvider.XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.GlobalPointingExtent - nameWithType: FocusProvider.IMixedRealityFocusProvider.GlobalPointingExtent - nameWithType.vb: FocusProvider.XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.GlobalPointingExtent -- uid: XRTK.Services.InputSystem.FocusProvider.XRTK#Interfaces#InputSystem#IMixedRealityFocusProvider#GlobalPointingExtent* - name: IMixedRealityFocusProvider.GlobalPointingExtent - href: api/XRTK.Services.InputSystem.FocusProvider.html#XRTK_Services_InputSystem_FocusProvider_XRTK_Interfaces_InputSystem_IMixedRealityFocusProvider_GlobalPointingExtent_ - commentId: Overload:XRTK.Services.InputSystem.FocusProvider.XRTK#Interfaces#InputSystem#IMixedRealityFocusProvider#GlobalPointingExtent - isSpec: "True" - name.vb: XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.GlobalPointingExtent - fullName: XRTK.Services.InputSystem.FocusProvider.XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.GlobalPointingExtent - nameWithType: FocusProvider.IMixedRealityFocusProvider.GlobalPointingExtent - nameWithType.vb: FocusProvider.XRTK.Interfaces.InputSystem.IMixedRealityFocusProvider.GlobalPointingExtent -- uid: XRTK.Services.InputSystem.GazeProvider - name: GazeProvider - href: api/XRTK.Services.InputSystem.GazeProvider.html - commentId: T:XRTK.Services.InputSystem.GazeProvider - fullName: XRTK.Services.InputSystem.GazeProvider - nameWithType: GazeProvider -- uid: XRTK.Services.InputSystem.GazeProvider.Enabled - name: Enabled - href: api/XRTK.Services.InputSystem.GazeProvider.html#XRTK_Services_InputSystem_GazeProvider_Enabled - commentId: P:XRTK.Services.InputSystem.GazeProvider.Enabled - fullName: XRTK.Services.InputSystem.GazeProvider.Enabled - nameWithType: GazeProvider.Enabled -- uid: XRTK.Services.InputSystem.GazeProvider.Enabled* - name: Enabled - href: api/XRTK.Services.InputSystem.GazeProvider.html#XRTK_Services_InputSystem_GazeProvider_Enabled_ - commentId: Overload:XRTK.Services.InputSystem.GazeProvider.Enabled - isSpec: "True" - fullName: XRTK.Services.InputSystem.GazeProvider.Enabled - nameWithType: GazeProvider.Enabled -- uid: XRTK.Services.InputSystem.GazeProvider.GameObject - name: GameObject - href: api/XRTK.Services.InputSystem.GazeProvider.html#XRTK_Services_InputSystem_GazeProvider_GameObject - commentId: P:XRTK.Services.InputSystem.GazeProvider.GameObject - fullName: XRTK.Services.InputSystem.GazeProvider.GameObject - nameWithType: GazeProvider.GameObject -- uid: XRTK.Services.InputSystem.GazeProvider.GameObject* - name: GameObject - href: api/XRTK.Services.InputSystem.GazeProvider.html#XRTK_Services_InputSystem_GazeProvider_GameObject_ - commentId: Overload:XRTK.Services.InputSystem.GazeProvider.GameObject - isSpec: "True" - fullName: XRTK.Services.InputSystem.GazeProvider.GameObject - nameWithType: GazeProvider.GameObject -- uid: XRTK.Services.InputSystem.GazeProvider.GazeCursor - name: GazeCursor - href: api/XRTK.Services.InputSystem.GazeProvider.html#XRTK_Services_InputSystem_GazeProvider_GazeCursor - commentId: P:XRTK.Services.InputSystem.GazeProvider.GazeCursor - fullName: XRTK.Services.InputSystem.GazeProvider.GazeCursor - nameWithType: GazeProvider.GazeCursor -- uid: XRTK.Services.InputSystem.GazeProvider.GazeCursor* - name: GazeCursor - href: api/XRTK.Services.InputSystem.GazeProvider.html#XRTK_Services_InputSystem_GazeProvider_GazeCursor_ - commentId: Overload:XRTK.Services.InputSystem.GazeProvider.GazeCursor - isSpec: "True" - fullName: XRTK.Services.InputSystem.GazeProvider.GazeCursor - nameWithType: GazeProvider.GazeCursor -- uid: XRTK.Services.InputSystem.GazeProvider.GazeDirection - name: GazeDirection - href: api/XRTK.Services.InputSystem.GazeProvider.html#XRTK_Services_InputSystem_GazeProvider_GazeDirection - commentId: P:XRTK.Services.InputSystem.GazeProvider.GazeDirection - fullName: XRTK.Services.InputSystem.GazeProvider.GazeDirection - nameWithType: GazeProvider.GazeDirection -- uid: XRTK.Services.InputSystem.GazeProvider.GazeDirection* - name: GazeDirection - href: api/XRTK.Services.InputSystem.GazeProvider.html#XRTK_Services_InputSystem_GazeProvider_GazeDirection_ - commentId: Overload:XRTK.Services.InputSystem.GazeProvider.GazeDirection - isSpec: "True" - fullName: XRTK.Services.InputSystem.GazeProvider.GazeDirection - nameWithType: GazeProvider.GazeDirection -- uid: XRTK.Services.InputSystem.GazeProvider.GazeInputSource - name: GazeInputSource - href: api/XRTK.Services.InputSystem.GazeProvider.html#XRTK_Services_InputSystem_GazeProvider_GazeInputSource - commentId: P:XRTK.Services.InputSystem.GazeProvider.GazeInputSource - fullName: XRTK.Services.InputSystem.GazeProvider.GazeInputSource - nameWithType: GazeProvider.GazeInputSource -- uid: XRTK.Services.InputSystem.GazeProvider.GazeInputSource* - name: GazeInputSource - href: api/XRTK.Services.InputSystem.GazeProvider.html#XRTK_Services_InputSystem_GazeProvider_GazeInputSource_ - commentId: Overload:XRTK.Services.InputSystem.GazeProvider.GazeInputSource - isSpec: "True" - fullName: XRTK.Services.InputSystem.GazeProvider.GazeInputSource - nameWithType: GazeProvider.GazeInputSource -- uid: XRTK.Services.InputSystem.GazeProvider.GazeOrigin - name: GazeOrigin - href: api/XRTK.Services.InputSystem.GazeProvider.html#XRTK_Services_InputSystem_GazeProvider_GazeOrigin - commentId: P:XRTK.Services.InputSystem.GazeProvider.GazeOrigin - fullName: XRTK.Services.InputSystem.GazeProvider.GazeOrigin - nameWithType: GazeProvider.GazeOrigin -- uid: XRTK.Services.InputSystem.GazeProvider.GazeOrigin* - name: GazeOrigin - href: api/XRTK.Services.InputSystem.GazeProvider.html#XRTK_Services_InputSystem_GazeProvider_GazeOrigin_ - commentId: Overload:XRTK.Services.InputSystem.GazeProvider.GazeOrigin - isSpec: "True" - fullName: XRTK.Services.InputSystem.GazeProvider.GazeOrigin - nameWithType: GazeProvider.GazeOrigin -- uid: XRTK.Services.InputSystem.GazeProvider.GazePointer - name: GazePointer - href: api/XRTK.Services.InputSystem.GazeProvider.html#XRTK_Services_InputSystem_GazeProvider_GazePointer - commentId: P:XRTK.Services.InputSystem.GazeProvider.GazePointer - fullName: XRTK.Services.InputSystem.GazeProvider.GazePointer - nameWithType: GazeProvider.GazePointer -- uid: XRTK.Services.InputSystem.GazeProvider.GazePointer* - name: GazePointer - href: api/XRTK.Services.InputSystem.GazeProvider.html#XRTK_Services_InputSystem_GazeProvider_GazePointer_ - commentId: Overload:XRTK.Services.InputSystem.GazeProvider.GazePointer - isSpec: "True" - fullName: XRTK.Services.InputSystem.GazeProvider.GazePointer - nameWithType: GazeProvider.GazePointer -- uid: XRTK.Services.InputSystem.GazeProvider.GazeTarget - name: GazeTarget - href: api/XRTK.Services.InputSystem.GazeProvider.html#XRTK_Services_InputSystem_GazeProvider_GazeTarget - commentId: P:XRTK.Services.InputSystem.GazeProvider.GazeTarget - fullName: XRTK.Services.InputSystem.GazeProvider.GazeTarget - nameWithType: GazeProvider.GazeTarget -- uid: XRTK.Services.InputSystem.GazeProvider.GazeTarget* - name: GazeTarget - href: api/XRTK.Services.InputSystem.GazeProvider.html#XRTK_Services_InputSystem_GazeProvider_GazeTarget_ - commentId: Overload:XRTK.Services.InputSystem.GazeProvider.GazeTarget - isSpec: "True" - fullName: XRTK.Services.InputSystem.GazeProvider.GazeTarget - nameWithType: GazeProvider.GazeTarget -- uid: XRTK.Services.InputSystem.GazeProvider.HeadMovementDirection - name: HeadMovementDirection - href: api/XRTK.Services.InputSystem.GazeProvider.html#XRTK_Services_InputSystem_GazeProvider_HeadMovementDirection - commentId: P:XRTK.Services.InputSystem.GazeProvider.HeadMovementDirection - fullName: XRTK.Services.InputSystem.GazeProvider.HeadMovementDirection - nameWithType: GazeProvider.HeadMovementDirection -- uid: XRTK.Services.InputSystem.GazeProvider.HeadMovementDirection* - name: HeadMovementDirection - href: api/XRTK.Services.InputSystem.GazeProvider.html#XRTK_Services_InputSystem_GazeProvider_HeadMovementDirection_ - commentId: Overload:XRTK.Services.InputSystem.GazeProvider.HeadMovementDirection - isSpec: "True" - fullName: XRTK.Services.InputSystem.GazeProvider.HeadMovementDirection - nameWithType: GazeProvider.HeadMovementDirection -- uid: XRTK.Services.InputSystem.GazeProvider.HeadVelocity - name: HeadVelocity - href: api/XRTK.Services.InputSystem.GazeProvider.html#XRTK_Services_InputSystem_GazeProvider_HeadVelocity - commentId: P:XRTK.Services.InputSystem.GazeProvider.HeadVelocity - fullName: XRTK.Services.InputSystem.GazeProvider.HeadVelocity - nameWithType: GazeProvider.HeadVelocity -- uid: XRTK.Services.InputSystem.GazeProvider.HeadVelocity* - name: HeadVelocity - href: api/XRTK.Services.InputSystem.GazeProvider.html#XRTK_Services_InputSystem_GazeProvider_HeadVelocity_ - commentId: Overload:XRTK.Services.InputSystem.GazeProvider.HeadVelocity - isSpec: "True" - fullName: XRTK.Services.InputSystem.GazeProvider.HeadVelocity - nameWithType: GazeProvider.HeadVelocity -- uid: XRTK.Services.InputSystem.GazeProvider.HitInfo - name: HitInfo - href: api/XRTK.Services.InputSystem.GazeProvider.html#XRTK_Services_InputSystem_GazeProvider_HitInfo - commentId: P:XRTK.Services.InputSystem.GazeProvider.HitInfo - fullName: XRTK.Services.InputSystem.GazeProvider.HitInfo - nameWithType: GazeProvider.HitInfo -- uid: XRTK.Services.InputSystem.GazeProvider.HitInfo* - name: HitInfo - href: api/XRTK.Services.InputSystem.GazeProvider.html#XRTK_Services_InputSystem_GazeProvider_HitInfo_ - commentId: Overload:XRTK.Services.InputSystem.GazeProvider.HitInfo - isSpec: "True" - fullName: XRTK.Services.InputSystem.GazeProvider.HitInfo - nameWithType: GazeProvider.HitInfo -- uid: XRTK.Services.InputSystem.GazeProvider.HitNormal - name: HitNormal - href: api/XRTK.Services.InputSystem.GazeProvider.html#XRTK_Services_InputSystem_GazeProvider_HitNormal - commentId: P:XRTK.Services.InputSystem.GazeProvider.HitNormal - fullName: XRTK.Services.InputSystem.GazeProvider.HitNormal - nameWithType: GazeProvider.HitNormal -- uid: XRTK.Services.InputSystem.GazeProvider.HitNormal* - name: HitNormal - href: api/XRTK.Services.InputSystem.GazeProvider.html#XRTK_Services_InputSystem_GazeProvider_HitNormal_ - commentId: Overload:XRTK.Services.InputSystem.GazeProvider.HitNormal - isSpec: "True" - fullName: XRTK.Services.InputSystem.GazeProvider.HitNormal - nameWithType: GazeProvider.HitNormal -- uid: XRTK.Services.InputSystem.GazeProvider.HitPosition - name: HitPosition - href: api/XRTK.Services.InputSystem.GazeProvider.html#XRTK_Services_InputSystem_GazeProvider_HitPosition - commentId: P:XRTK.Services.InputSystem.GazeProvider.HitPosition - fullName: XRTK.Services.InputSystem.GazeProvider.HitPosition - nameWithType: GazeProvider.HitPosition -- uid: XRTK.Services.InputSystem.GazeProvider.HitPosition* - name: HitPosition - href: api/XRTK.Services.InputSystem.GazeProvider.html#XRTK_Services_InputSystem_GazeProvider_HitPosition_ - commentId: Overload:XRTK.Services.InputSystem.GazeProvider.HitPosition - isSpec: "True" - fullName: XRTK.Services.InputSystem.GazeProvider.HitPosition - nameWithType: GazeProvider.HitPosition -- uid: XRTK.Services.InputSystem.GazeProvider.InputSystem - name: InputSystem - href: api/XRTK.Services.InputSystem.GazeProvider.html#XRTK_Services_InputSystem_GazeProvider_InputSystem - commentId: P:XRTK.Services.InputSystem.GazeProvider.InputSystem - fullName: XRTK.Services.InputSystem.GazeProvider.InputSystem - nameWithType: GazeProvider.InputSystem -- uid: XRTK.Services.InputSystem.GazeProvider.InputSystem* - name: InputSystem - href: api/XRTK.Services.InputSystem.GazeProvider.html#XRTK_Services_InputSystem_GazeProvider_InputSystem_ - commentId: Overload:XRTK.Services.InputSystem.GazeProvider.InputSystem - isSpec: "True" - fullName: XRTK.Services.InputSystem.GazeProvider.InputSystem - nameWithType: GazeProvider.InputSystem -- uid: XRTK.Services.InputSystem.GazeProvider.OnDestroy - name: OnDestroy() - href: api/XRTK.Services.InputSystem.GazeProvider.html#XRTK_Services_InputSystem_GazeProvider_OnDestroy - commentId: M:XRTK.Services.InputSystem.GazeProvider.OnDestroy - fullName: XRTK.Services.InputSystem.GazeProvider.OnDestroy() - nameWithType: GazeProvider.OnDestroy() -- uid: XRTK.Services.InputSystem.GazeProvider.OnDestroy* - name: OnDestroy - href: api/XRTK.Services.InputSystem.GazeProvider.html#XRTK_Services_InputSystem_GazeProvider_OnDestroy_ - commentId: Overload:XRTK.Services.InputSystem.GazeProvider.OnDestroy - isSpec: "True" - fullName: XRTK.Services.InputSystem.GazeProvider.OnDestroy - nameWithType: GazeProvider.OnDestroy -- uid: XRTK.Services.InputSystem.GazeProvider.OnDisable - name: OnDisable() - href: api/XRTK.Services.InputSystem.GazeProvider.html#XRTK_Services_InputSystem_GazeProvider_OnDisable - commentId: M:XRTK.Services.InputSystem.GazeProvider.OnDisable - fullName: XRTK.Services.InputSystem.GazeProvider.OnDisable() - nameWithType: GazeProvider.OnDisable() -- uid: XRTK.Services.InputSystem.GazeProvider.OnDisable* - name: OnDisable - href: api/XRTK.Services.InputSystem.GazeProvider.html#XRTK_Services_InputSystem_GazeProvider_OnDisable_ - commentId: Overload:XRTK.Services.InputSystem.GazeProvider.OnDisable - isSpec: "True" - fullName: XRTK.Services.InputSystem.GazeProvider.OnDisable - nameWithType: GazeProvider.OnDisable -- uid: XRTK.Services.InputSystem.GazeProvider.OnEnable - name: OnEnable() - href: api/XRTK.Services.InputSystem.GazeProvider.html#XRTK_Services_InputSystem_GazeProvider_OnEnable - commentId: M:XRTK.Services.InputSystem.GazeProvider.OnEnable - fullName: XRTK.Services.InputSystem.GazeProvider.OnEnable() - nameWithType: GazeProvider.OnEnable() -- uid: XRTK.Services.InputSystem.GazeProvider.OnEnable* - name: OnEnable - href: api/XRTK.Services.InputSystem.GazeProvider.html#XRTK_Services_InputSystem_GazeProvider_OnEnable_ - commentId: Overload:XRTK.Services.InputSystem.GazeProvider.OnEnable - isSpec: "True" - fullName: XRTK.Services.InputSystem.GazeProvider.OnEnable - nameWithType: GazeProvider.OnEnable -- uid: XRTK.Services.InputSystem.GazeProvider.SetGazeCursor(UnityEngine.GameObject) - name: SetGazeCursor(GameObject) - href: api/XRTK.Services.InputSystem.GazeProvider.html#XRTK_Services_InputSystem_GazeProvider_SetGazeCursor_UnityEngine_GameObject_ - commentId: M:XRTK.Services.InputSystem.GazeProvider.SetGazeCursor(UnityEngine.GameObject) - fullName: XRTK.Services.InputSystem.GazeProvider.SetGazeCursor(UnityEngine.GameObject) - nameWithType: GazeProvider.SetGazeCursor(GameObject) -- uid: XRTK.Services.InputSystem.GazeProvider.SetGazeCursor* - name: SetGazeCursor - href: api/XRTK.Services.InputSystem.GazeProvider.html#XRTK_Services_InputSystem_GazeProvider_SetGazeCursor_ - commentId: Overload:XRTK.Services.InputSystem.GazeProvider.SetGazeCursor - isSpec: "True" - fullName: XRTK.Services.InputSystem.GazeProvider.SetGazeCursor - nameWithType: GazeProvider.SetGazeCursor -- uid: XRTK.Services.InputSystem.GazeProvider.Start - name: Start() - href: api/XRTK.Services.InputSystem.GazeProvider.html#XRTK_Services_InputSystem_GazeProvider_Start - commentId: M:XRTK.Services.InputSystem.GazeProvider.Start - fullName: XRTK.Services.InputSystem.GazeProvider.Start() - nameWithType: GazeProvider.Start() -- uid: XRTK.Services.InputSystem.GazeProvider.Start* - name: Start - href: api/XRTK.Services.InputSystem.GazeProvider.html#XRTK_Services_InputSystem_GazeProvider_Start_ - commentId: Overload:XRTK.Services.InputSystem.GazeProvider.Start - isSpec: "True" - fullName: XRTK.Services.InputSystem.GazeProvider.Start - nameWithType: GazeProvider.Start -- uid: XRTK.Services.InputSystem.GazeProvider.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler#OnInputDown(XRTK.EventDatum.Input.InputEventData) - name: IMixedRealityInputHandler.OnInputDown(InputEventData) - href: api/XRTK.Services.InputSystem.GazeProvider.html#XRTK_Services_InputSystem_GazeProvider_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityInputHandler_OnInputDown_XRTK_EventDatum_Input_InputEventData_ - commentId: M:XRTK.Services.InputSystem.GazeProvider.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler#OnInputDown(XRTK.EventDatum.Input.InputEventData) - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputDown(InputEventData) - fullName: XRTK.Services.InputSystem.GazeProvider.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputDown(XRTK.EventDatum.Input.InputEventData) - nameWithType: GazeProvider.IMixedRealityInputHandler.OnInputDown(InputEventData) - nameWithType.vb: GazeProvider.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputDown(InputEventData) -- uid: XRTK.Services.InputSystem.GazeProvider.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler#OnInputDown* - name: IMixedRealityInputHandler.OnInputDown - href: api/XRTK.Services.InputSystem.GazeProvider.html#XRTK_Services_InputSystem_GazeProvider_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityInputHandler_OnInputDown_ - commentId: Overload:XRTK.Services.InputSystem.GazeProvider.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler#OnInputDown - isSpec: "True" - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputDown - fullName: XRTK.Services.InputSystem.GazeProvider.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputDown - nameWithType: GazeProvider.IMixedRealityInputHandler.OnInputDown - nameWithType.vb: GazeProvider.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputDown -- uid: XRTK.Services.InputSystem.GazeProvider.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler#OnInputUp(XRTK.EventDatum.Input.InputEventData) - name: IMixedRealityInputHandler.OnInputUp(InputEventData) - href: api/XRTK.Services.InputSystem.GazeProvider.html#XRTK_Services_InputSystem_GazeProvider_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityInputHandler_OnInputUp_XRTK_EventDatum_Input_InputEventData_ - commentId: M:XRTK.Services.InputSystem.GazeProvider.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler#OnInputUp(XRTK.EventDatum.Input.InputEventData) - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputUp(InputEventData) - fullName: XRTK.Services.InputSystem.GazeProvider.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputUp(XRTK.EventDatum.Input.InputEventData) - nameWithType: GazeProvider.IMixedRealityInputHandler.OnInputUp(InputEventData) - nameWithType.vb: GazeProvider.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputUp(InputEventData) -- uid: XRTK.Services.InputSystem.GazeProvider.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler#OnInputUp* - name: IMixedRealityInputHandler.OnInputUp - href: api/XRTK.Services.InputSystem.GazeProvider.html#XRTK_Services_InputSystem_GazeProvider_XRTK_Interfaces_InputSystem_Handlers_IMixedRealityInputHandler_OnInputUp_ - commentId: Overload:XRTK.Services.InputSystem.GazeProvider.XRTK#Interfaces#InputSystem#Handlers#IMixedRealityInputHandler#OnInputUp - isSpec: "True" - name.vb: XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputUp - fullName: XRTK.Services.InputSystem.GazeProvider.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputUp - nameWithType: GazeProvider.IMixedRealityInputHandler.OnInputUp - nameWithType.vb: GazeProvider.XRTK.Interfaces.InputSystem.Handlers.IMixedRealityInputHandler.OnInputUp -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem - name: MixedRealityInputSystem - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html - commentId: T:XRTK.Services.InputSystem.MixedRealityInputSystem - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem - nameWithType: MixedRealityInputSystem -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.#ctor(XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile) - name: MixedRealityInputSystem(MixedRealityInputSystemProfile) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem__ctor_XRTK_Definitions_InputSystem_MixedRealityInputSystemProfile_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.#ctor(XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.MixedRealityInputSystem(XRTK.Definitions.InputSystem.MixedRealityInputSystemProfile) - nameWithType: MixedRealityInputSystem.MixedRealityInputSystem(MixedRealityInputSystemProfile) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.#ctor* - name: MixedRealityInputSystem - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem__ctor_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.#ctor - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.MixedRealityInputSystem - nameWithType: MixedRealityInputSystem.MixedRealityInputSystem -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.ClearFallbackInputStack - name: ClearFallbackInputStack() - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_ClearFallbackInputStack - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.ClearFallbackInputStack - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.ClearFallbackInputStack() - nameWithType: MixedRealityInputSystem.ClearFallbackInputStack() -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.ClearFallbackInputStack* - name: ClearFallbackInputStack - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_ClearFallbackInputStack_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.ClearFallbackInputStack - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.ClearFallbackInputStack - nameWithType: MixedRealityInputSystem.ClearFallbackInputStack -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.ClearInputDisableStack - name: ClearInputDisableStack() - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_ClearInputDisableStack - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.ClearInputDisableStack - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.ClearInputDisableStack() - nameWithType: MixedRealityInputSystem.ClearInputDisableStack() -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.ClearInputDisableStack* - name: ClearInputDisableStack - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_ClearInputDisableStack_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.ClearInputDisableStack - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.ClearInputDisableStack - nameWithType: MixedRealityInputSystem.ClearInputDisableStack -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.ClearModalInputStack - name: ClearModalInputStack() - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_ClearModalInputStack - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.ClearModalInputStack - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.ClearModalInputStack() - nameWithType: MixedRealityInputSystem.ClearModalInputStack() -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.ClearModalInputStack* - name: ClearModalInputStack - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_ClearModalInputStack_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.ClearModalInputStack - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.ClearModalInputStack - nameWithType: MixedRealityInputSystem.ClearModalInputStack -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.DetectedControllers - name: DetectedControllers - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_DetectedControllers - commentId: P:XRTK.Services.InputSystem.MixedRealityInputSystem.DetectedControllers - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.DetectedControllers - nameWithType: MixedRealityInputSystem.DetectedControllers -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.DetectedControllers* - name: DetectedControllers - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_DetectedControllers_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.DetectedControllers - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.DetectedControllers - nameWithType: MixedRealityInputSystem.DetectedControllers -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.DetectedInputSources - name: DetectedInputSources - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_DetectedInputSources - commentId: P:XRTK.Services.InputSystem.MixedRealityInputSystem.DetectedInputSources - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.DetectedInputSources - nameWithType: MixedRealityInputSystem.DetectedInputSources -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.DetectedInputSources* - name: DetectedInputSources - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_DetectedInputSources_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.DetectedInputSources - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.DetectedInputSources - nameWithType: MixedRealityInputSystem.DetectedInputSources -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.Disable - name: Disable() - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_Disable - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.Disable - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.Disable() - nameWithType: MixedRealityInputSystem.Disable() -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.Disable* - name: Disable - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_Disable_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.Disable - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.Disable - nameWithType: MixedRealityInputSystem.Disable -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.Enable - name: Enable() - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_Enable - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.Enable - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.Enable() - nameWithType: MixedRealityInputSystem.Enable() -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.Enable* - name: Enable - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_Enable_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.Enable - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.Enable - nameWithType: MixedRealityInputSystem.Enable -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.FocusProvider - name: FocusProvider - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_FocusProvider - commentId: P:XRTK.Services.InputSystem.MixedRealityInputSystem.FocusProvider - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.FocusProvider - nameWithType: MixedRealityInputSystem.FocusProvider -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.FocusProvider* - name: FocusProvider - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_FocusProvider_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.FocusProvider - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.FocusProvider - nameWithType: MixedRealityInputSystem.FocusProvider -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.GazeProvider - name: GazeProvider - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_GazeProvider - commentId: P:XRTK.Services.InputSystem.MixedRealityInputSystem.GazeProvider - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.GazeProvider - nameWithType: MixedRealityInputSystem.GazeProvider -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.GazeProvider* - name: GazeProvider - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_GazeProvider_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.GazeProvider - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.GazeProvider - nameWithType: MixedRealityInputSystem.GazeProvider -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.GenerateNewSourceId - name: GenerateNewSourceId() - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_GenerateNewSourceId - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.GenerateNewSourceId - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.GenerateNewSourceId() - nameWithType: MixedRealityInputSystem.GenerateNewSourceId() -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.GenerateNewSourceId* - name: GenerateNewSourceId - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_GenerateNewSourceId_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.GenerateNewSourceId - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.GenerateNewSourceId - nameWithType: MixedRealityInputSystem.GenerateNewSourceId -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.HandleEvent* - name: HandleEvent - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_HandleEvent_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.HandleEvent - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.HandleEvent - nameWithType: MixedRealityInputSystem.HandleEvent -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.HandleEvent``1(BaseEventData,ExecuteEvents.EventFunction{``0}) - name: HandleEvent(BaseEventData, ExecuteEvents.EventFunction) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_HandleEvent__1_BaseEventData_ExecuteEvents_EventFunction___0__ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.HandleEvent``1(BaseEventData,ExecuteEvents.EventFunction{``0}) - name.vb: HandleEvent(Of T)(BaseEventData, ExecuteEvents.EventFunction(Of T)) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.HandleEvent(BaseEventData, ExecuteEvents.EventFunction) - fullName.vb: XRTK.Services.InputSystem.MixedRealityInputSystem.HandleEvent(Of T)(BaseEventData, ExecuteEvents.EventFunction(Of T)) - nameWithType: MixedRealityInputSystem.HandleEvent(BaseEventData, ExecuteEvents.EventFunction) - nameWithType.vb: MixedRealityInputSystem.HandleEvent(Of T)(BaseEventData, ExecuteEvents.EventFunction(Of T)) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.Initialize - name: Initialize() - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_Initialize - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.Initialize - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.Initialize() - nameWithType: MixedRealityInputSystem.Initialize() -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.Initialize* - name: Initialize - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_Initialize_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.Initialize - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.Initialize - nameWithType: MixedRealityInputSystem.Initialize -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.InputDisabled - name: InputDisabled - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_InputDisabled - commentId: E:XRTK.Services.InputSystem.MixedRealityInputSystem.InputDisabled - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.InputDisabled - nameWithType: MixedRealityInputSystem.InputDisabled -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.InputEnabled - name: InputEnabled - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_InputEnabled - commentId: E:XRTK.Services.InputSystem.MixedRealityInputSystem.InputEnabled - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.InputEnabled - nameWithType: MixedRealityInputSystem.InputEnabled -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.IsInputEnabled - name: IsInputEnabled - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_IsInputEnabled - commentId: P:XRTK.Services.InputSystem.MixedRealityInputSystem.IsInputEnabled - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.IsInputEnabled - nameWithType: MixedRealityInputSystem.IsInputEnabled -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.IsInputEnabled* - name: IsInputEnabled - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_IsInputEnabled_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.IsInputEnabled - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.IsInputEnabled - nameWithType: MixedRealityInputSystem.IsInputEnabled -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.OnDispose(System.Boolean) - name: OnDispose(Boolean) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_OnDispose_System_Boolean_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.OnDispose(System.Boolean) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.OnDispose(System.Boolean) - nameWithType: MixedRealityInputSystem.OnDispose(Boolean) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.OnDispose* - name: OnDispose - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_OnDispose_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.OnDispose - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.OnDispose - nameWithType: MixedRealityInputSystem.OnDispose -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.OnInputEvent - name: OnInputEvent - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_OnInputEvent - commentId: E:XRTK.Services.InputSystem.MixedRealityInputSystem.OnInputEvent - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.OnInputEvent - nameWithType: MixedRealityInputSystem.OnInputEvent -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.PopFallbackInputHandler - name: PopFallbackInputHandler() - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_PopFallbackInputHandler - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.PopFallbackInputHandler - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.PopFallbackInputHandler() - nameWithType: MixedRealityInputSystem.PopFallbackInputHandler() -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.PopFallbackInputHandler* - name: PopFallbackInputHandler - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_PopFallbackInputHandler_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.PopFallbackInputHandler - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.PopFallbackInputHandler - nameWithType: MixedRealityInputSystem.PopFallbackInputHandler -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.PopInputDisable - name: PopInputDisable() - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_PopInputDisable - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.PopInputDisable - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.PopInputDisable() - nameWithType: MixedRealityInputSystem.PopInputDisable() -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.PopInputDisable* - name: PopInputDisable - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_PopInputDisable_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.PopInputDisable - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.PopInputDisable - nameWithType: MixedRealityInputSystem.PopInputDisable -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.PopModalInputHandler - name: PopModalInputHandler() - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_PopModalInputHandler - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.PopModalInputHandler - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.PopModalInputHandler() - nameWithType: MixedRealityInputSystem.PopModalInputHandler() -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.PopModalInputHandler* - name: PopModalInputHandler - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_PopModalInputHandler_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.PopModalInputHandler - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.PopModalInputHandler - nameWithType: MixedRealityInputSystem.PopModalInputHandler -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.Priority - name: Priority - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_Priority - commentId: P:XRTK.Services.InputSystem.MixedRealityInputSystem.Priority - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.Priority - nameWithType: MixedRealityInputSystem.Priority -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.Priority* - name: Priority - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_Priority_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.Priority - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.Priority - nameWithType: MixedRealityInputSystem.Priority -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.PushFallbackInputHandler(UnityEngine.GameObject) - name: PushFallbackInputHandler(GameObject) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_PushFallbackInputHandler_UnityEngine_GameObject_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.PushFallbackInputHandler(UnityEngine.GameObject) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.PushFallbackInputHandler(UnityEngine.GameObject) - nameWithType: MixedRealityInputSystem.PushFallbackInputHandler(GameObject) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.PushFallbackInputHandler* - name: PushFallbackInputHandler - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_PushFallbackInputHandler_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.PushFallbackInputHandler - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.PushFallbackInputHandler - nameWithType: MixedRealityInputSystem.PushFallbackInputHandler -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.PushInputDisable - name: PushInputDisable() - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_PushInputDisable - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.PushInputDisable - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.PushInputDisable() - nameWithType: MixedRealityInputSystem.PushInputDisable() -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.PushInputDisable* - name: PushInputDisable - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_PushInputDisable_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.PushInputDisable - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.PushInputDisable - nameWithType: MixedRealityInputSystem.PushInputDisable -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.PushModalInputHandler(UnityEngine.GameObject) - name: PushModalInputHandler(GameObject) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_PushModalInputHandler_UnityEngine_GameObject_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.PushModalInputHandler(UnityEngine.GameObject) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.PushModalInputHandler(UnityEngine.GameObject) - nameWithType: MixedRealityInputSystem.PushModalInputHandler(GameObject) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.PushModalInputHandler* - name: PushModalInputHandler - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_PushModalInputHandler_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.PushModalInputHandler - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.PushModalInputHandler - nameWithType: MixedRealityInputSystem.PushModalInputHandler -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseDictationComplete(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,System.String,UnityEngine.AudioClip) - name: RaiseDictationComplete(IMixedRealityInputSource, String, AudioClip) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseDictationComplete_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_System_String_UnityEngine_AudioClip_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseDictationComplete(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,System.String,UnityEngine.AudioClip) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseDictationComplete(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, System.String, UnityEngine.AudioClip) - nameWithType: MixedRealityInputSystem.RaiseDictationComplete(IMixedRealityInputSource, String, AudioClip) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseDictationComplete* - name: RaiseDictationComplete - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseDictationComplete_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseDictationComplete - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseDictationComplete - nameWithType: MixedRealityInputSystem.RaiseDictationComplete -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseDictationError(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,System.String,UnityEngine.AudioClip) - name: RaiseDictationError(IMixedRealityInputSource, String, AudioClip) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseDictationError_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_System_String_UnityEngine_AudioClip_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseDictationError(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,System.String,UnityEngine.AudioClip) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseDictationError(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, System.String, UnityEngine.AudioClip) - nameWithType: MixedRealityInputSystem.RaiseDictationError(IMixedRealityInputSource, String, AudioClip) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseDictationError* - name: RaiseDictationError - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseDictationError_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseDictationError - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseDictationError - nameWithType: MixedRealityInputSystem.RaiseDictationError -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseDictationHypothesis(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,System.String,UnityEngine.AudioClip) - name: RaiseDictationHypothesis(IMixedRealityInputSource, String, AudioClip) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseDictationHypothesis_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_System_String_UnityEngine_AudioClip_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseDictationHypothesis(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,System.String,UnityEngine.AudioClip) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseDictationHypothesis(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, System.String, UnityEngine.AudioClip) - nameWithType: MixedRealityInputSystem.RaiseDictationHypothesis(IMixedRealityInputSource, String, AudioClip) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseDictationHypothesis* - name: RaiseDictationHypothesis - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseDictationHypothesis_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseDictationHypothesis - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseDictationHypothesis - nameWithType: MixedRealityInputSystem.RaiseDictationHypothesis -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseDictationResult(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,System.String,UnityEngine.AudioClip) - name: RaiseDictationResult(IMixedRealityInputSource, String, AudioClip) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseDictationResult_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_System_String_UnityEngine_AudioClip_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseDictationResult(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,System.String,UnityEngine.AudioClip) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseDictationResult(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, System.String, UnityEngine.AudioClip) - nameWithType: MixedRealityInputSystem.RaiseDictationResult(IMixedRealityInputSource, String, AudioClip) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseDictationResult* - name: RaiseDictationResult - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseDictationResult_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseDictationResult - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseDictationResult - nameWithType: MixedRealityInputSystem.RaiseDictationResult -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseFocusChanged(XRTK.Interfaces.InputSystem.IMixedRealityPointer,UnityEngine.GameObject,UnityEngine.GameObject) - name: RaiseFocusChanged(IMixedRealityPointer, GameObject, GameObject) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseFocusChanged_XRTK_Interfaces_InputSystem_IMixedRealityPointer_UnityEngine_GameObject_UnityEngine_GameObject_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseFocusChanged(XRTK.Interfaces.InputSystem.IMixedRealityPointer,UnityEngine.GameObject,UnityEngine.GameObject) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseFocusChanged(XRTK.Interfaces.InputSystem.IMixedRealityPointer, UnityEngine.GameObject, UnityEngine.GameObject) - nameWithType: MixedRealityInputSystem.RaiseFocusChanged(IMixedRealityPointer, GameObject, GameObject) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseFocusChanged* - name: RaiseFocusChanged - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseFocusChanged_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseFocusChanged - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseFocusChanged - nameWithType: MixedRealityInputSystem.RaiseFocusChanged -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseFocusEnter(XRTK.Interfaces.InputSystem.IMixedRealityPointer,UnityEngine.GameObject) - name: RaiseFocusEnter(IMixedRealityPointer, GameObject) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseFocusEnter_XRTK_Interfaces_InputSystem_IMixedRealityPointer_UnityEngine_GameObject_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseFocusEnter(XRTK.Interfaces.InputSystem.IMixedRealityPointer,UnityEngine.GameObject) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseFocusEnter(XRTK.Interfaces.InputSystem.IMixedRealityPointer, UnityEngine.GameObject) - nameWithType: MixedRealityInputSystem.RaiseFocusEnter(IMixedRealityPointer, GameObject) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseFocusEnter* - name: RaiseFocusEnter - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseFocusEnter_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseFocusEnter - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseFocusEnter - nameWithType: MixedRealityInputSystem.RaiseFocusEnter -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseFocusExit(XRTK.Interfaces.InputSystem.IMixedRealityPointer,UnityEngine.GameObject) - name: RaiseFocusExit(IMixedRealityPointer, GameObject) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseFocusExit_XRTK_Interfaces_InputSystem_IMixedRealityPointer_UnityEngine_GameObject_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseFocusExit(XRTK.Interfaces.InputSystem.IMixedRealityPointer,UnityEngine.GameObject) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseFocusExit(XRTK.Interfaces.InputSystem.IMixedRealityPointer, UnityEngine.GameObject) - nameWithType: MixedRealityInputSystem.RaiseFocusExit(IMixedRealityPointer, GameObject) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseFocusExit* - name: RaiseFocusExit - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseFocusExit_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseFocusExit - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseFocusExit - nameWithType: MixedRealityInputSystem.RaiseFocusExit -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseGestureCanceled(XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.InputSystem.MixedRealityInputAction) - name: RaiseGestureCanceled(IMixedRealityController, MixedRealityInputAction) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseGestureCanceled_XRTK_Interfaces_Providers_Controllers_IMixedRealityController_XRTK_Definitions_InputSystem_MixedRealityInputAction_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseGestureCanceled(XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.InputSystem.MixedRealityInputAction) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseGestureCanceled(XRTK.Interfaces.Providers.Controllers.IMixedRealityController, XRTK.Definitions.InputSystem.MixedRealityInputAction) - nameWithType: MixedRealityInputSystem.RaiseGestureCanceled(IMixedRealityController, MixedRealityInputAction) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseGestureCanceled* - name: RaiseGestureCanceled - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseGestureCanceled_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseGestureCanceled - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseGestureCanceled - nameWithType: MixedRealityInputSystem.RaiseGestureCanceled -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseGestureCompleted(XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.InputSystem.MixedRealityInputAction) - name: RaiseGestureCompleted(IMixedRealityController, MixedRealityInputAction) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseGestureCompleted_XRTK_Interfaces_Providers_Controllers_IMixedRealityController_XRTK_Definitions_InputSystem_MixedRealityInputAction_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseGestureCompleted(XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.InputSystem.MixedRealityInputAction) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseGestureCompleted(XRTK.Interfaces.Providers.Controllers.IMixedRealityController, XRTK.Definitions.InputSystem.MixedRealityInputAction) - nameWithType: MixedRealityInputSystem.RaiseGestureCompleted(IMixedRealityController, MixedRealityInputAction) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseGestureCompleted(XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Quaternion) - name: RaiseGestureCompleted(IMixedRealityController, MixedRealityInputAction, Quaternion) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseGestureCompleted_XRTK_Interfaces_Providers_Controllers_IMixedRealityController_XRTK_Definitions_InputSystem_MixedRealityInputAction_UnityEngine_Quaternion_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseGestureCompleted(XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Quaternion) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseGestureCompleted(XRTK.Interfaces.Providers.Controllers.IMixedRealityController, XRTK.Definitions.InputSystem.MixedRealityInputAction, UnityEngine.Quaternion) - nameWithType: MixedRealityInputSystem.RaiseGestureCompleted(IMixedRealityController, MixedRealityInputAction, Quaternion) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseGestureCompleted(XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Vector2) - name: RaiseGestureCompleted(IMixedRealityController, MixedRealityInputAction, Vector2) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseGestureCompleted_XRTK_Interfaces_Providers_Controllers_IMixedRealityController_XRTK_Definitions_InputSystem_MixedRealityInputAction_UnityEngine_Vector2_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseGestureCompleted(XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Vector2) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseGestureCompleted(XRTK.Interfaces.Providers.Controllers.IMixedRealityController, XRTK.Definitions.InputSystem.MixedRealityInputAction, UnityEngine.Vector2) - nameWithType: MixedRealityInputSystem.RaiseGestureCompleted(IMixedRealityController, MixedRealityInputAction, Vector2) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseGestureCompleted(XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Vector3) - name: RaiseGestureCompleted(IMixedRealityController, MixedRealityInputAction, Vector3) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseGestureCompleted_XRTK_Interfaces_Providers_Controllers_IMixedRealityController_XRTK_Definitions_InputSystem_MixedRealityInputAction_UnityEngine_Vector3_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseGestureCompleted(XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Vector3) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseGestureCompleted(XRTK.Interfaces.Providers.Controllers.IMixedRealityController, XRTK.Definitions.InputSystem.MixedRealityInputAction, UnityEngine.Vector3) - nameWithType: MixedRealityInputSystem.RaiseGestureCompleted(IMixedRealityController, MixedRealityInputAction, Vector3) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseGestureCompleted(XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.InputSystem.MixedRealityInputAction,XRTK.Definitions.Utilities.MixedRealityPose) - name: RaiseGestureCompleted(IMixedRealityController, MixedRealityInputAction, MixedRealityPose) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseGestureCompleted_XRTK_Interfaces_Providers_Controllers_IMixedRealityController_XRTK_Definitions_InputSystem_MixedRealityInputAction_XRTK_Definitions_Utilities_MixedRealityPose_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseGestureCompleted(XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.InputSystem.MixedRealityInputAction,XRTK.Definitions.Utilities.MixedRealityPose) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseGestureCompleted(XRTK.Interfaces.Providers.Controllers.IMixedRealityController, XRTK.Definitions.InputSystem.MixedRealityInputAction, XRTK.Definitions.Utilities.MixedRealityPose) - nameWithType: MixedRealityInputSystem.RaiseGestureCompleted(IMixedRealityController, MixedRealityInputAction, MixedRealityPose) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseGestureCompleted* - name: RaiseGestureCompleted - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseGestureCompleted_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseGestureCompleted - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseGestureCompleted - nameWithType: MixedRealityInputSystem.RaiseGestureCompleted -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseGestureStarted(XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.InputSystem.MixedRealityInputAction) - name: RaiseGestureStarted(IMixedRealityController, MixedRealityInputAction) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseGestureStarted_XRTK_Interfaces_Providers_Controllers_IMixedRealityController_XRTK_Definitions_InputSystem_MixedRealityInputAction_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseGestureStarted(XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.InputSystem.MixedRealityInputAction) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseGestureStarted(XRTK.Interfaces.Providers.Controllers.IMixedRealityController, XRTK.Definitions.InputSystem.MixedRealityInputAction) - nameWithType: MixedRealityInputSystem.RaiseGestureStarted(IMixedRealityController, MixedRealityInputAction) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseGestureStarted* - name: RaiseGestureStarted - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseGestureStarted_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseGestureStarted - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseGestureStarted - nameWithType: MixedRealityInputSystem.RaiseGestureStarted -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseGestureUpdated(XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.InputSystem.MixedRealityInputAction) - name: RaiseGestureUpdated(IMixedRealityController, MixedRealityInputAction) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseGestureUpdated_XRTK_Interfaces_Providers_Controllers_IMixedRealityController_XRTK_Definitions_InputSystem_MixedRealityInputAction_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseGestureUpdated(XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.InputSystem.MixedRealityInputAction) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseGestureUpdated(XRTK.Interfaces.Providers.Controllers.IMixedRealityController, XRTK.Definitions.InputSystem.MixedRealityInputAction) - nameWithType: MixedRealityInputSystem.RaiseGestureUpdated(IMixedRealityController, MixedRealityInputAction) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseGestureUpdated(XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Quaternion) - name: RaiseGestureUpdated(IMixedRealityController, MixedRealityInputAction, Quaternion) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseGestureUpdated_XRTK_Interfaces_Providers_Controllers_IMixedRealityController_XRTK_Definitions_InputSystem_MixedRealityInputAction_UnityEngine_Quaternion_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseGestureUpdated(XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Quaternion) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseGestureUpdated(XRTK.Interfaces.Providers.Controllers.IMixedRealityController, XRTK.Definitions.InputSystem.MixedRealityInputAction, UnityEngine.Quaternion) - nameWithType: MixedRealityInputSystem.RaiseGestureUpdated(IMixedRealityController, MixedRealityInputAction, Quaternion) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseGestureUpdated(XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Vector2) - name: RaiseGestureUpdated(IMixedRealityController, MixedRealityInputAction, Vector2) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseGestureUpdated_XRTK_Interfaces_Providers_Controllers_IMixedRealityController_XRTK_Definitions_InputSystem_MixedRealityInputAction_UnityEngine_Vector2_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseGestureUpdated(XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Vector2) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseGestureUpdated(XRTK.Interfaces.Providers.Controllers.IMixedRealityController, XRTK.Definitions.InputSystem.MixedRealityInputAction, UnityEngine.Vector2) - nameWithType: MixedRealityInputSystem.RaiseGestureUpdated(IMixedRealityController, MixedRealityInputAction, Vector2) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseGestureUpdated(XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Vector3) - name: RaiseGestureUpdated(IMixedRealityController, MixedRealityInputAction, Vector3) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseGestureUpdated_XRTK_Interfaces_Providers_Controllers_IMixedRealityController_XRTK_Definitions_InputSystem_MixedRealityInputAction_UnityEngine_Vector3_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseGestureUpdated(XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Vector3) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseGestureUpdated(XRTK.Interfaces.Providers.Controllers.IMixedRealityController, XRTK.Definitions.InputSystem.MixedRealityInputAction, UnityEngine.Vector3) - nameWithType: MixedRealityInputSystem.RaiseGestureUpdated(IMixedRealityController, MixedRealityInputAction, Vector3) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseGestureUpdated(XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.InputSystem.MixedRealityInputAction,XRTK.Definitions.Utilities.MixedRealityPose) - name: RaiseGestureUpdated(IMixedRealityController, MixedRealityInputAction, MixedRealityPose) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseGestureUpdated_XRTK_Interfaces_Providers_Controllers_IMixedRealityController_XRTK_Definitions_InputSystem_MixedRealityInputAction_XRTK_Definitions_Utilities_MixedRealityPose_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseGestureUpdated(XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.InputSystem.MixedRealityInputAction,XRTK.Definitions.Utilities.MixedRealityPose) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseGestureUpdated(XRTK.Interfaces.Providers.Controllers.IMixedRealityController, XRTK.Definitions.InputSystem.MixedRealityInputAction, XRTK.Definitions.Utilities.MixedRealityPose) - nameWithType: MixedRealityInputSystem.RaiseGestureUpdated(IMixedRealityController, MixedRealityInputAction, MixedRealityPose) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseGestureUpdated* - name: RaiseGestureUpdated - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseGestureUpdated_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseGestureUpdated - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseGestureUpdated - nameWithType: MixedRealityInputSystem.RaiseGestureUpdated -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseOnInputDown(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.InputSystem.MixedRealityInputAction) - name: RaiseOnInputDown(IMixedRealityInputSource, MixedRealityInputAction) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseOnInputDown_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Definitions_InputSystem_MixedRealityInputAction_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseOnInputDown(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.InputSystem.MixedRealityInputAction) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseOnInputDown(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Definitions.InputSystem.MixedRealityInputAction) - nameWithType: MixedRealityInputSystem.RaiseOnInputDown(IMixedRealityInputSource, MixedRealityInputAction) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseOnInputDown(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.InputSystem.MixedRealityInputAction) - name: RaiseOnInputDown(IMixedRealityInputSource, Handedness, MixedRealityInputAction) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseOnInputDown_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Definitions_Utilities_Handedness_XRTK_Definitions_InputSystem_MixedRealityInputAction_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseOnInputDown(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.InputSystem.MixedRealityInputAction) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseOnInputDown(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Definitions.Utilities.Handedness, XRTK.Definitions.InputSystem.MixedRealityInputAction) - nameWithType: MixedRealityInputSystem.RaiseOnInputDown(IMixedRealityInputSource, Handedness, MixedRealityInputAction) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseOnInputDown* - name: RaiseOnInputDown - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseOnInputDown_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseOnInputDown - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseOnInputDown - nameWithType: MixedRealityInputSystem.RaiseOnInputDown -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseOnInputPressed(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.InputSystem.MixedRealityInputAction) - name: RaiseOnInputPressed(IMixedRealityInputSource, MixedRealityInputAction) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseOnInputPressed_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Definitions_InputSystem_MixedRealityInputAction_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseOnInputPressed(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.InputSystem.MixedRealityInputAction) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseOnInputPressed(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Definitions.InputSystem.MixedRealityInputAction) - nameWithType: MixedRealityInputSystem.RaiseOnInputPressed(IMixedRealityInputSource, MixedRealityInputAction) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseOnInputPressed(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.InputSystem.MixedRealityInputAction,System.Single) - name: RaiseOnInputPressed(IMixedRealityInputSource, MixedRealityInputAction, Single) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseOnInputPressed_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Definitions_InputSystem_MixedRealityInputAction_System_Single_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseOnInputPressed(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.InputSystem.MixedRealityInputAction,System.Single) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseOnInputPressed(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Definitions.InputSystem.MixedRealityInputAction, System.Single) - nameWithType: MixedRealityInputSystem.RaiseOnInputPressed(IMixedRealityInputSource, MixedRealityInputAction, Single) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseOnInputPressed(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.InputSystem.MixedRealityInputAction) - name: RaiseOnInputPressed(IMixedRealityInputSource, Handedness, MixedRealityInputAction) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseOnInputPressed_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Definitions_Utilities_Handedness_XRTK_Definitions_InputSystem_MixedRealityInputAction_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseOnInputPressed(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.InputSystem.MixedRealityInputAction) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseOnInputPressed(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Definitions.Utilities.Handedness, XRTK.Definitions.InputSystem.MixedRealityInputAction) - nameWithType: MixedRealityInputSystem.RaiseOnInputPressed(IMixedRealityInputSource, Handedness, MixedRealityInputAction) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseOnInputPressed(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.InputSystem.MixedRealityInputAction,System.Single) - name: RaiseOnInputPressed(IMixedRealityInputSource, Handedness, MixedRealityInputAction, Single) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseOnInputPressed_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Definitions_Utilities_Handedness_XRTK_Definitions_InputSystem_MixedRealityInputAction_System_Single_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseOnInputPressed(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.InputSystem.MixedRealityInputAction,System.Single) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseOnInputPressed(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Definitions.Utilities.Handedness, XRTK.Definitions.InputSystem.MixedRealityInputAction, System.Single) - nameWithType: MixedRealityInputSystem.RaiseOnInputPressed(IMixedRealityInputSource, Handedness, MixedRealityInputAction, Single) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseOnInputPressed* - name: RaiseOnInputPressed - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseOnInputPressed_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseOnInputPressed - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseOnInputPressed - nameWithType: MixedRealityInputSystem.RaiseOnInputPressed -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseOnInputUp(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.InputSystem.MixedRealityInputAction) - name: RaiseOnInputUp(IMixedRealityInputSource, MixedRealityInputAction) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseOnInputUp_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Definitions_InputSystem_MixedRealityInputAction_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseOnInputUp(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.InputSystem.MixedRealityInputAction) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseOnInputUp(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Definitions.InputSystem.MixedRealityInputAction) - nameWithType: MixedRealityInputSystem.RaiseOnInputUp(IMixedRealityInputSource, MixedRealityInputAction) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseOnInputUp(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.InputSystem.MixedRealityInputAction) - name: RaiseOnInputUp(IMixedRealityInputSource, Handedness, MixedRealityInputAction) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseOnInputUp_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Definitions_Utilities_Handedness_XRTK_Definitions_InputSystem_MixedRealityInputAction_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseOnInputUp(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.InputSystem.MixedRealityInputAction) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseOnInputUp(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Definitions.Utilities.Handedness, XRTK.Definitions.InputSystem.MixedRealityInputAction) - nameWithType: MixedRealityInputSystem.RaiseOnInputUp(IMixedRealityInputSource, Handedness, MixedRealityInputAction) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseOnInputUp* - name: RaiseOnInputUp - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseOnInputUp_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseOnInputUp - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseOnInputUp - nameWithType: MixedRealityInputSystem.RaiseOnInputUp -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePointerClicked(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Definitions.InputSystem.MixedRealityInputAction,XRTK.Interfaces.InputSystem.IMixedRealityInputSource) - name: RaisePointerClicked(IMixedRealityPointer, MixedRealityInputAction, IMixedRealityInputSource) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaisePointerClicked_XRTK_Interfaces_InputSystem_IMixedRealityPointer_XRTK_Definitions_InputSystem_MixedRealityInputAction_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePointerClicked(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Definitions.InputSystem.MixedRealityInputAction,XRTK.Interfaces.InputSystem.IMixedRealityInputSource) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePointerClicked(XRTK.Interfaces.InputSystem.IMixedRealityPointer, XRTK.Definitions.InputSystem.MixedRealityInputAction, XRTK.Interfaces.InputSystem.IMixedRealityInputSource) - nameWithType: MixedRealityInputSystem.RaisePointerClicked(IMixedRealityPointer, MixedRealityInputAction, IMixedRealityInputSource) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePointerClicked* - name: RaisePointerClicked - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaisePointerClicked_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePointerClicked - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePointerClicked - nameWithType: MixedRealityInputSystem.RaisePointerClicked -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePointerDown(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Definitions.InputSystem.MixedRealityInputAction,XRTK.Interfaces.InputSystem.IMixedRealityInputSource) - name: RaisePointerDown(IMixedRealityPointer, MixedRealityInputAction, IMixedRealityInputSource) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaisePointerDown_XRTK_Interfaces_InputSystem_IMixedRealityPointer_XRTK_Definitions_InputSystem_MixedRealityInputAction_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePointerDown(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Definitions.InputSystem.MixedRealityInputAction,XRTK.Interfaces.InputSystem.IMixedRealityInputSource) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePointerDown(XRTK.Interfaces.InputSystem.IMixedRealityPointer, XRTK.Definitions.InputSystem.MixedRealityInputAction, XRTK.Interfaces.InputSystem.IMixedRealityInputSource) - nameWithType: MixedRealityInputSystem.RaisePointerDown(IMixedRealityPointer, MixedRealityInputAction, IMixedRealityInputSource) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePointerDown* - name: RaisePointerDown - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaisePointerDown_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePointerDown - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePointerDown - nameWithType: MixedRealityInputSystem.RaisePointerDown -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePointerDrag(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Vector3,XRTK.Interfaces.InputSystem.IMixedRealityInputSource) - name: RaisePointerDrag(IMixedRealityPointer, MixedRealityInputAction, Vector3, IMixedRealityInputSource) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaisePointerDrag_XRTK_Interfaces_InputSystem_IMixedRealityPointer_XRTK_Definitions_InputSystem_MixedRealityInputAction_UnityEngine_Vector3_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePointerDrag(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Vector3,XRTK.Interfaces.InputSystem.IMixedRealityInputSource) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePointerDrag(XRTK.Interfaces.InputSystem.IMixedRealityPointer, XRTK.Definitions.InputSystem.MixedRealityInputAction, UnityEngine.Vector3, XRTK.Interfaces.InputSystem.IMixedRealityInputSource) - nameWithType: MixedRealityInputSystem.RaisePointerDrag(IMixedRealityPointer, MixedRealityInputAction, Vector3, IMixedRealityInputSource) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePointerDrag* - name: RaisePointerDrag - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaisePointerDrag_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePointerDrag - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePointerDrag - nameWithType: MixedRealityInputSystem.RaisePointerDrag -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePointerDragBegin(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Vector3,XRTK.Interfaces.InputSystem.IMixedRealityInputSource) - name: RaisePointerDragBegin(IMixedRealityPointer, MixedRealityInputAction, Vector3, IMixedRealityInputSource) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaisePointerDragBegin_XRTK_Interfaces_InputSystem_IMixedRealityPointer_XRTK_Definitions_InputSystem_MixedRealityInputAction_UnityEngine_Vector3_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePointerDragBegin(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Vector3,XRTK.Interfaces.InputSystem.IMixedRealityInputSource) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePointerDragBegin(XRTK.Interfaces.InputSystem.IMixedRealityPointer, XRTK.Definitions.InputSystem.MixedRealityInputAction, UnityEngine.Vector3, XRTK.Interfaces.InputSystem.IMixedRealityInputSource) - nameWithType: MixedRealityInputSystem.RaisePointerDragBegin(IMixedRealityPointer, MixedRealityInputAction, Vector3, IMixedRealityInputSource) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePointerDragBegin* - name: RaisePointerDragBegin - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaisePointerDragBegin_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePointerDragBegin - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePointerDragBegin - nameWithType: MixedRealityInputSystem.RaisePointerDragBegin -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePointerDragEnd(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Vector3,XRTK.Interfaces.InputSystem.IMixedRealityInputSource) - name: RaisePointerDragEnd(IMixedRealityPointer, MixedRealityInputAction, Vector3, IMixedRealityInputSource) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaisePointerDragEnd_XRTK_Interfaces_InputSystem_IMixedRealityPointer_XRTK_Definitions_InputSystem_MixedRealityInputAction_UnityEngine_Vector3_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePointerDragEnd(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Vector3,XRTK.Interfaces.InputSystem.IMixedRealityInputSource) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePointerDragEnd(XRTK.Interfaces.InputSystem.IMixedRealityPointer, XRTK.Definitions.InputSystem.MixedRealityInputAction, UnityEngine.Vector3, XRTK.Interfaces.InputSystem.IMixedRealityInputSource) - nameWithType: MixedRealityInputSystem.RaisePointerDragEnd(IMixedRealityPointer, MixedRealityInputAction, Vector3, IMixedRealityInputSource) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePointerDragEnd* - name: RaisePointerDragEnd - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaisePointerDragEnd_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePointerDragEnd - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePointerDragEnd - nameWithType: MixedRealityInputSystem.RaisePointerDragEnd -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePointerScroll(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Vector2,XRTK.Interfaces.InputSystem.IMixedRealityInputSource) - name: RaisePointerScroll(IMixedRealityPointer, MixedRealityInputAction, Vector2, IMixedRealityInputSource) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaisePointerScroll_XRTK_Interfaces_InputSystem_IMixedRealityPointer_XRTK_Definitions_InputSystem_MixedRealityInputAction_UnityEngine_Vector2_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePointerScroll(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Vector2,XRTK.Interfaces.InputSystem.IMixedRealityInputSource) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePointerScroll(XRTK.Interfaces.InputSystem.IMixedRealityPointer, XRTK.Definitions.InputSystem.MixedRealityInputAction, UnityEngine.Vector2, XRTK.Interfaces.InputSystem.IMixedRealityInputSource) - nameWithType: MixedRealityInputSystem.RaisePointerScroll(IMixedRealityPointer, MixedRealityInputAction, Vector2, IMixedRealityInputSource) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePointerScroll* - name: RaisePointerScroll - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaisePointerScroll_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePointerScroll - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePointerScroll - nameWithType: MixedRealityInputSystem.RaisePointerScroll -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePointerUp(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Definitions.InputSystem.MixedRealityInputAction,XRTK.Interfaces.InputSystem.IMixedRealityInputSource) - name: RaisePointerUp(IMixedRealityPointer, MixedRealityInputAction, IMixedRealityInputSource) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaisePointerUp_XRTK_Interfaces_InputSystem_IMixedRealityPointer_XRTK_Definitions_InputSystem_MixedRealityInputAction_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePointerUp(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Definitions.InputSystem.MixedRealityInputAction,XRTK.Interfaces.InputSystem.IMixedRealityInputSource) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePointerUp(XRTK.Interfaces.InputSystem.IMixedRealityPointer, XRTK.Definitions.InputSystem.MixedRealityInputAction, XRTK.Interfaces.InputSystem.IMixedRealityInputSource) - nameWithType: MixedRealityInputSystem.RaisePointerUp(IMixedRealityPointer, MixedRealityInputAction, IMixedRealityInputSource) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePointerUp* - name: RaisePointerUp - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaisePointerUp_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePointerUp - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePointerUp - nameWithType: MixedRealityInputSystem.RaisePointerUp -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePoseInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.InputSystem.MixedRealityInputAction,XRTK.Definitions.Utilities.MixedRealityPose) - name: RaisePoseInputChanged(IMixedRealityInputSource, MixedRealityInputAction, MixedRealityPose) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaisePoseInputChanged_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Definitions_InputSystem_MixedRealityInputAction_XRTK_Definitions_Utilities_MixedRealityPose_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePoseInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.InputSystem.MixedRealityInputAction,XRTK.Definitions.Utilities.MixedRealityPose) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePoseInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Definitions.InputSystem.MixedRealityInputAction, XRTK.Definitions.Utilities.MixedRealityPose) - nameWithType: MixedRealityInputSystem.RaisePoseInputChanged(IMixedRealityInputSource, MixedRealityInputAction, MixedRealityPose) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePoseInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.InputSystem.MixedRealityInputAction,XRTK.Definitions.Utilities.MixedRealityPose) - name: RaisePoseInputChanged(IMixedRealityInputSource, Handedness, MixedRealityInputAction, MixedRealityPose) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaisePoseInputChanged_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Definitions_Utilities_Handedness_XRTK_Definitions_InputSystem_MixedRealityInputAction_XRTK_Definitions_Utilities_MixedRealityPose_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePoseInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.InputSystem.MixedRealityInputAction,XRTK.Definitions.Utilities.MixedRealityPose) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePoseInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Definitions.Utilities.Handedness, XRTK.Definitions.InputSystem.MixedRealityInputAction, XRTK.Definitions.Utilities.MixedRealityPose) - nameWithType: MixedRealityInputSystem.RaisePoseInputChanged(IMixedRealityInputSource, Handedness, MixedRealityInputAction, MixedRealityPose) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePoseInputChanged* - name: RaisePoseInputChanged - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaisePoseInputChanged_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePoseInputChanged - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePoseInputChanged - nameWithType: MixedRealityInputSystem.RaisePoseInputChanged -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePositionInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.InputSystem.MixedRealityInputAction,System.Single) - name: RaisePositionInputChanged(IMixedRealityInputSource, MixedRealityInputAction, Single) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaisePositionInputChanged_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Definitions_InputSystem_MixedRealityInputAction_System_Single_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePositionInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.InputSystem.MixedRealityInputAction,System.Single) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePositionInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Definitions.InputSystem.MixedRealityInputAction, System.Single) - nameWithType: MixedRealityInputSystem.RaisePositionInputChanged(IMixedRealityInputSource, MixedRealityInputAction, Single) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePositionInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Vector2) - name: RaisePositionInputChanged(IMixedRealityInputSource, MixedRealityInputAction, Vector2) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaisePositionInputChanged_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Definitions_InputSystem_MixedRealityInputAction_UnityEngine_Vector2_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePositionInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Vector2) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePositionInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Definitions.InputSystem.MixedRealityInputAction, UnityEngine.Vector2) - nameWithType: MixedRealityInputSystem.RaisePositionInputChanged(IMixedRealityInputSource, MixedRealityInputAction, Vector2) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePositionInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Vector3) - name: RaisePositionInputChanged(IMixedRealityInputSource, MixedRealityInputAction, Vector3) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaisePositionInputChanged_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Definitions_InputSystem_MixedRealityInputAction_UnityEngine_Vector3_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePositionInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Vector3) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePositionInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Definitions.InputSystem.MixedRealityInputAction, UnityEngine.Vector3) - nameWithType: MixedRealityInputSystem.RaisePositionInputChanged(IMixedRealityInputSource, MixedRealityInputAction, Vector3) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePositionInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.InputSystem.MixedRealityInputAction,System.Single) - name: RaisePositionInputChanged(IMixedRealityInputSource, Handedness, MixedRealityInputAction, Single) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaisePositionInputChanged_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Definitions_Utilities_Handedness_XRTK_Definitions_InputSystem_MixedRealityInputAction_System_Single_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePositionInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.InputSystem.MixedRealityInputAction,System.Single) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePositionInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Definitions.Utilities.Handedness, XRTK.Definitions.InputSystem.MixedRealityInputAction, System.Single) - nameWithType: MixedRealityInputSystem.RaisePositionInputChanged(IMixedRealityInputSource, Handedness, MixedRealityInputAction, Single) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePositionInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Vector2) - name: RaisePositionInputChanged(IMixedRealityInputSource, Handedness, MixedRealityInputAction, Vector2) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaisePositionInputChanged_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Definitions_Utilities_Handedness_XRTK_Definitions_InputSystem_MixedRealityInputAction_UnityEngine_Vector2_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePositionInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Vector2) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePositionInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Definitions.Utilities.Handedness, XRTK.Definitions.InputSystem.MixedRealityInputAction, UnityEngine.Vector2) - nameWithType: MixedRealityInputSystem.RaisePositionInputChanged(IMixedRealityInputSource, Handedness, MixedRealityInputAction, Vector2) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePositionInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Vector3) - name: RaisePositionInputChanged(IMixedRealityInputSource, Handedness, MixedRealityInputAction, Vector3) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaisePositionInputChanged_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Definitions_Utilities_Handedness_XRTK_Definitions_InputSystem_MixedRealityInputAction_UnityEngine_Vector3_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePositionInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Vector3) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePositionInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Definitions.Utilities.Handedness, XRTK.Definitions.InputSystem.MixedRealityInputAction, UnityEngine.Vector3) - nameWithType: MixedRealityInputSystem.RaisePositionInputChanged(IMixedRealityInputSource, Handedness, MixedRealityInputAction, Vector3) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePositionInputChanged* - name: RaisePositionInputChanged - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaisePositionInputChanged_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePositionInputChanged - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePositionInputChanged - nameWithType: MixedRealityInputSystem.RaisePositionInputChanged -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePreFocusChanged(XRTK.Interfaces.InputSystem.IMixedRealityPointer,UnityEngine.GameObject,UnityEngine.GameObject) - name: RaisePreFocusChanged(IMixedRealityPointer, GameObject, GameObject) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaisePreFocusChanged_XRTK_Interfaces_InputSystem_IMixedRealityPointer_UnityEngine_GameObject_UnityEngine_GameObject_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePreFocusChanged(XRTK.Interfaces.InputSystem.IMixedRealityPointer,UnityEngine.GameObject,UnityEngine.GameObject) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePreFocusChanged(XRTK.Interfaces.InputSystem.IMixedRealityPointer, UnityEngine.GameObject, UnityEngine.GameObject) - nameWithType: MixedRealityInputSystem.RaisePreFocusChanged(IMixedRealityPointer, GameObject, GameObject) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePreFocusChanged* - name: RaisePreFocusChanged - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaisePreFocusChanged_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePreFocusChanged - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaisePreFocusChanged - nameWithType: MixedRealityInputSystem.RaisePreFocusChanged -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseRotationInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Quaternion) - name: RaiseRotationInputChanged(IMixedRealityInputSource, MixedRealityInputAction, Quaternion) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseRotationInputChanged_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Definitions_InputSystem_MixedRealityInputAction_UnityEngine_Quaternion_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseRotationInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Quaternion) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseRotationInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Definitions.InputSystem.MixedRealityInputAction, UnityEngine.Quaternion) - nameWithType: MixedRealityInputSystem.RaiseRotationInputChanged(IMixedRealityInputSource, MixedRealityInputAction, Quaternion) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseRotationInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Quaternion) - name: RaiseRotationInputChanged(IMixedRealityInputSource, Handedness, MixedRealityInputAction, Quaternion) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseRotationInputChanged_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Definitions_Utilities_Handedness_XRTK_Definitions_InputSystem_MixedRealityInputAction_UnityEngine_Quaternion_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseRotationInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.InputSystem.MixedRealityInputAction,UnityEngine.Quaternion) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseRotationInputChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Definitions.Utilities.Handedness, XRTK.Definitions.InputSystem.MixedRealityInputAction, UnityEngine.Quaternion) - nameWithType: MixedRealityInputSystem.RaiseRotationInputChanged(IMixedRealityInputSource, Handedness, MixedRealityInputAction, Quaternion) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseRotationInputChanged* - name: RaiseRotationInputChanged - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseRotationInputChanged_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseRotationInputChanged - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseRotationInputChanged - nameWithType: MixedRealityInputSystem.RaiseRotationInputChanged -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseSourceDetected(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Interfaces.Providers.Controllers.IMixedRealityController) - name: RaiseSourceDetected(IMixedRealityInputSource, IMixedRealityController) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseSourceDetected_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Interfaces_Providers_Controllers_IMixedRealityController_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseSourceDetected(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Interfaces.Providers.Controllers.IMixedRealityController) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseSourceDetected(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Interfaces.Providers.Controllers.IMixedRealityController) - nameWithType: MixedRealityInputSystem.RaiseSourceDetected(IMixedRealityInputSource, IMixedRealityController) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseSourceDetected* - name: RaiseSourceDetected - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseSourceDetected_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseSourceDetected - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseSourceDetected - nameWithType: MixedRealityInputSystem.RaiseSourceDetected -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseSourceLost(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Interfaces.Providers.Controllers.IMixedRealityController) - name: RaiseSourceLost(IMixedRealityInputSource, IMixedRealityController) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseSourceLost_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Interfaces_Providers_Controllers_IMixedRealityController_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseSourceLost(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Interfaces.Providers.Controllers.IMixedRealityController) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseSourceLost(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Interfaces.Providers.Controllers.IMixedRealityController) - nameWithType: MixedRealityInputSystem.RaiseSourceLost(IMixedRealityInputSource, IMixedRealityController) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseSourceLost* - name: RaiseSourceLost - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseSourceLost_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseSourceLost - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseSourceLost - nameWithType: MixedRealityInputSystem.RaiseSourceLost -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseSourcePoseChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.Utilities.MixedRealityPose) - name: RaiseSourcePoseChanged(IMixedRealityInputSource, IMixedRealityController, MixedRealityPose) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseSourcePoseChanged_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Interfaces_Providers_Controllers_IMixedRealityController_XRTK_Definitions_Utilities_MixedRealityPose_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseSourcePoseChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.Utilities.MixedRealityPose) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseSourcePoseChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Interfaces.Providers.Controllers.IMixedRealityController, XRTK.Definitions.Utilities.MixedRealityPose) - nameWithType: MixedRealityInputSystem.RaiseSourcePoseChanged(IMixedRealityInputSource, IMixedRealityController, MixedRealityPose) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseSourcePoseChanged* - name: RaiseSourcePoseChanged - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseSourcePoseChanged_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseSourcePoseChanged - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseSourcePoseChanged - nameWithType: MixedRealityInputSystem.RaiseSourcePoseChanged -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseSourcePositionChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Interfaces.Providers.Controllers.IMixedRealityController,UnityEngine.Vector2) - name: RaiseSourcePositionChanged(IMixedRealityInputSource, IMixedRealityController, Vector2) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseSourcePositionChanged_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Interfaces_Providers_Controllers_IMixedRealityController_UnityEngine_Vector2_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseSourcePositionChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Interfaces.Providers.Controllers.IMixedRealityController,UnityEngine.Vector2) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseSourcePositionChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Interfaces.Providers.Controllers.IMixedRealityController, UnityEngine.Vector2) - nameWithType: MixedRealityInputSystem.RaiseSourcePositionChanged(IMixedRealityInputSource, IMixedRealityController, Vector2) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseSourcePositionChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Interfaces.Providers.Controllers.IMixedRealityController,UnityEngine.Vector3) - name: RaiseSourcePositionChanged(IMixedRealityInputSource, IMixedRealityController, Vector3) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseSourcePositionChanged_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Interfaces_Providers_Controllers_IMixedRealityController_UnityEngine_Vector3_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseSourcePositionChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Interfaces.Providers.Controllers.IMixedRealityController,UnityEngine.Vector3) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseSourcePositionChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Interfaces.Providers.Controllers.IMixedRealityController, UnityEngine.Vector3) - nameWithType: MixedRealityInputSystem.RaiseSourcePositionChanged(IMixedRealityInputSource, IMixedRealityController, Vector3) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseSourcePositionChanged* - name: RaiseSourcePositionChanged - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseSourcePositionChanged_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseSourcePositionChanged - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseSourcePositionChanged - nameWithType: MixedRealityInputSystem.RaiseSourcePositionChanged -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseSourceRotationChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Interfaces.Providers.Controllers.IMixedRealityController,UnityEngine.Quaternion) - name: RaiseSourceRotationChanged(IMixedRealityInputSource, IMixedRealityController, Quaternion) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseSourceRotationChanged_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Interfaces_Providers_Controllers_IMixedRealityController_UnityEngine_Quaternion_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseSourceRotationChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Interfaces.Providers.Controllers.IMixedRealityController,UnityEngine.Quaternion) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseSourceRotationChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Interfaces.Providers.Controllers.IMixedRealityController, UnityEngine.Quaternion) - nameWithType: MixedRealityInputSystem.RaiseSourceRotationChanged(IMixedRealityInputSource, IMixedRealityController, Quaternion) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseSourceRotationChanged* - name: RaiseSourceRotationChanged - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseSourceRotationChanged_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseSourceRotationChanged - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseSourceRotationChanged - nameWithType: MixedRealityInputSystem.RaiseSourceRotationChanged -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseSourceTrackingStateChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.Devices.TrackingState) - name: RaiseSourceTrackingStateChanged(IMixedRealityInputSource, IMixedRealityController, TrackingState) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseSourceTrackingStateChanged_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Interfaces_Providers_Controllers_IMixedRealityController_XRTK_Definitions_Devices_TrackingState_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseSourceTrackingStateChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Interfaces.Providers.Controllers.IMixedRealityController,XRTK.Definitions.Devices.TrackingState) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseSourceTrackingStateChanged(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Interfaces.Providers.Controllers.IMixedRealityController, XRTK.Definitions.Devices.TrackingState) - nameWithType: MixedRealityInputSystem.RaiseSourceTrackingStateChanged(IMixedRealityInputSource, IMixedRealityController, TrackingState) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseSourceTrackingStateChanged* - name: RaiseSourceTrackingStateChanged - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseSourceTrackingStateChanged_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseSourceTrackingStateChanged - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseSourceTrackingStateChanged - nameWithType: MixedRealityInputSystem.RaiseSourceTrackingStateChanged -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseSpeechCommandRecognized(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.InputSystem.MixedRealityInputAction,XRTK.Definitions.Utilities.RecognitionConfidenceLevel,System.TimeSpan,System.DateTime,System.String) - name: RaiseSpeechCommandRecognized(IMixedRealityInputSource, MixedRealityInputAction, RecognitionConfidenceLevel, TimeSpan, DateTime, String) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseSpeechCommandRecognized_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Definitions_InputSystem_MixedRealityInputAction_XRTK_Definitions_Utilities_RecognitionConfidenceLevel_System_TimeSpan_System_DateTime_System_String_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseSpeechCommandRecognized(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.InputSystem.MixedRealityInputAction,XRTK.Definitions.Utilities.RecognitionConfidenceLevel,System.TimeSpan,System.DateTime,System.String) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseSpeechCommandRecognized(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Definitions.InputSystem.MixedRealityInputAction, XRTK.Definitions.Utilities.RecognitionConfidenceLevel, System.TimeSpan, System.DateTime, System.String) - nameWithType: MixedRealityInputSystem.RaiseSpeechCommandRecognized(IMixedRealityInputSource, MixedRealityInputAction, RecognitionConfidenceLevel, TimeSpan, DateTime, String) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseSpeechCommandRecognized* - name: RaiseSpeechCommandRecognized - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RaiseSpeechCommandRecognized_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseSpeechCommandRecognized - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RaiseSpeechCommandRecognized - nameWithType: MixedRealityInputSystem.RaiseSpeechCommandRecognized -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.Register(UnityEngine.GameObject) - name: Register(GameObject) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_Register_UnityEngine_GameObject_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.Register(UnityEngine.GameObject) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.Register(UnityEngine.GameObject) - nameWithType: MixedRealityInputSystem.Register(GameObject) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.Register* - name: Register - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_Register_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.Register - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.Register - nameWithType: MixedRealityInputSystem.Register -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RequestNewGenericInputSource(System.String,XRTK.Interfaces.InputSystem.IMixedRealityPointer[]) - name: RequestNewGenericInputSource(String, IMixedRealityPointer[]) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RequestNewGenericInputSource_System_String_XRTK_Interfaces_InputSystem_IMixedRealityPointer___ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.RequestNewGenericInputSource(System.String,XRTK.Interfaces.InputSystem.IMixedRealityPointer[]) - name.vb: RequestNewGenericInputSource(String, IMixedRealityPointer()) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RequestNewGenericInputSource(System.String, XRTK.Interfaces.InputSystem.IMixedRealityPointer[]) - fullName.vb: XRTK.Services.InputSystem.MixedRealityInputSystem.RequestNewGenericInputSource(System.String, XRTK.Interfaces.InputSystem.IMixedRealityPointer()) - nameWithType: MixedRealityInputSystem.RequestNewGenericInputSource(String, IMixedRealityPointer[]) - nameWithType.vb: MixedRealityInputSystem.RequestNewGenericInputSource(String, IMixedRealityPointer()) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.RequestNewGenericInputSource* - name: RequestNewGenericInputSource - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_RequestNewGenericInputSource_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.RequestNewGenericInputSource - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.RequestNewGenericInputSource - nameWithType: MixedRealityInputSystem.RequestNewGenericInputSource -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.TryGetController(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Interfaces.Providers.Controllers.IMixedRealityController@) - name: TryGetController(IMixedRealityInputSource, out IMixedRealityController) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_TryGetController_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Interfaces_Providers_Controllers_IMixedRealityController__ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.TryGetController(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Interfaces.Providers.Controllers.IMixedRealityController@) - name.vb: TryGetController(IMixedRealityInputSource, ByRef IMixedRealityController) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.TryGetController(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, out XRTK.Interfaces.Providers.Controllers.IMixedRealityController) - fullName.vb: XRTK.Services.InputSystem.MixedRealityInputSystem.TryGetController(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, ByRef XRTK.Interfaces.Providers.Controllers.IMixedRealityController) - nameWithType: MixedRealityInputSystem.TryGetController(IMixedRealityInputSource, out IMixedRealityController) - nameWithType.vb: MixedRealityInputSystem.TryGetController(IMixedRealityInputSource, ByRef IMixedRealityController) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.TryGetController* - name: TryGetController - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_TryGetController_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.TryGetController - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.TryGetController - nameWithType: MixedRealityInputSystem.TryGetController -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.Unregister(UnityEngine.GameObject) - name: Unregister(GameObject) - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_Unregister_UnityEngine_GameObject_ - commentId: M:XRTK.Services.InputSystem.MixedRealityInputSystem.Unregister(UnityEngine.GameObject) - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.Unregister(UnityEngine.GameObject) - nameWithType: MixedRealityInputSystem.Unregister(GameObject) -- uid: XRTK.Services.InputSystem.MixedRealityInputSystem.Unregister* - name: Unregister - href: api/XRTK.Services.InputSystem.MixedRealityInputSystem.html#XRTK_Services_InputSystem_MixedRealityInputSystem_Unregister_ - commentId: Overload:XRTK.Services.InputSystem.MixedRealityInputSystem.Unregister - isSpec: "True" - fullName: XRTK.Services.InputSystem.MixedRealityInputSystem.Unregister - nameWithType: MixedRealityInputSystem.Unregister -- uid: XRTK.Services.InputSystem.Pointers - name: XRTK.Services.InputSystem.Pointers - href: api/XRTK.Services.InputSystem.Pointers.html - commentId: N:XRTK.Services.InputSystem.Pointers - fullName: XRTK.Services.InputSystem.Pointers - nameWithType: XRTK.Services.InputSystem.Pointers -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer - name: GenericPointer - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html - commentId: T:XRTK.Services.InputSystem.Pointers.GenericPointer - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer - nameWithType: GenericPointer -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.#ctor(System.String,XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.InteractionMode) - name: GenericPointer(String, IMixedRealityInputSource, InteractionMode) - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer__ctor_System_String_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Definitions_InteractionMode_ - commentId: M:XRTK.Services.InputSystem.Pointers.GenericPointer.#ctor(System.String,XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Definitions.InteractionMode) - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.GenericPointer(System.String, XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Definitions.InteractionMode) - nameWithType: GenericPointer.GenericPointer(String, IMixedRealityInputSource, InteractionMode) -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.#ctor* - name: GenericPointer - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer__ctor_ - commentId: Overload:XRTK.Services.InputSystem.Pointers.GenericPointer.#ctor - isSpec: "True" - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.GenericPointer - nameWithType: GenericPointer.GenericPointer -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.BaseCursor - name: BaseCursor - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_BaseCursor - commentId: P:XRTK.Services.InputSystem.Pointers.GenericPointer.BaseCursor - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.BaseCursor - nameWithType: GenericPointer.BaseCursor -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.BaseCursor* - name: BaseCursor - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_BaseCursor_ - commentId: Overload:XRTK.Services.InputSystem.Pointers.GenericPointer.BaseCursor - isSpec: "True" - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.BaseCursor - nameWithType: GenericPointer.BaseCursor -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.Controller - name: Controller - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_Controller - commentId: P:XRTK.Services.InputSystem.Pointers.GenericPointer.Controller - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.Controller - nameWithType: GenericPointer.Controller -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.Controller* - name: Controller - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_Controller_ - commentId: Overload:XRTK.Services.InputSystem.Pointers.GenericPointer.Controller - isSpec: "True" - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.Controller - nameWithType: GenericPointer.Controller -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.CursorModifier - name: CursorModifier - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_CursorModifier - commentId: P:XRTK.Services.InputSystem.Pointers.GenericPointer.CursorModifier - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.CursorModifier - nameWithType: GenericPointer.CursorModifier -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.CursorModifier* - name: CursorModifier - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_CursorModifier_ - commentId: Overload:XRTK.Services.InputSystem.Pointers.GenericPointer.CursorModifier - isSpec: "True" - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.CursorModifier - nameWithType: GenericPointer.CursorModifier -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.DefaultPointerExtent - name: DefaultPointerExtent - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_DefaultPointerExtent - commentId: P:XRTK.Services.InputSystem.Pointers.GenericPointer.DefaultPointerExtent - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.DefaultPointerExtent - nameWithType: GenericPointer.DefaultPointerExtent -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.DefaultPointerExtent* - name: DefaultPointerExtent - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_DefaultPointerExtent_ - commentId: Overload:XRTK.Services.InputSystem.Pointers.GenericPointer.DefaultPointerExtent - isSpec: "True" - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.DefaultPointerExtent - nameWithType: GenericPointer.DefaultPointerExtent -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.Equals(System.Object) - name: Equals(Object) - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_Equals_System_Object_ - commentId: M:XRTK.Services.InputSystem.Pointers.GenericPointer.Equals(System.Object) - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.Equals(System.Object) - nameWithType: GenericPointer.Equals(Object) -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.Equals* - name: Equals - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_Equals_ - commentId: Overload:XRTK.Services.InputSystem.Pointers.GenericPointer.Equals - isSpec: "True" - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.Equals - nameWithType: GenericPointer.Equals -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.FocusHandler - name: FocusHandler - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_FocusHandler - commentId: P:XRTK.Services.InputSystem.Pointers.GenericPointer.FocusHandler - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.FocusHandler - nameWithType: GenericPointer.FocusHandler -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.FocusHandler* - name: FocusHandler - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_FocusHandler_ - commentId: Overload:XRTK.Services.InputSystem.Pointers.GenericPointer.FocusHandler - isSpec: "True" - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.FocusHandler - nameWithType: GenericPointer.FocusHandler -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.GetHashCode - name: GetHashCode() - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_GetHashCode - commentId: M:XRTK.Services.InputSystem.Pointers.GenericPointer.GetHashCode - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.GetHashCode() - nameWithType: GenericPointer.GetHashCode() -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.GetHashCode* - name: GetHashCode - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_GetHashCode_ - commentId: Overload:XRTK.Services.InputSystem.Pointers.GenericPointer.GetHashCode - isSpec: "True" - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.GetHashCode - nameWithType: GenericPointer.GetHashCode -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.InputHandler - name: InputHandler - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_InputHandler - commentId: P:XRTK.Services.InputSystem.Pointers.GenericPointer.InputHandler - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.InputHandler - nameWithType: GenericPointer.InputHandler -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.InputHandler* - name: InputHandler - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_InputHandler_ - commentId: Overload:XRTK.Services.InputSystem.Pointers.GenericPointer.InputHandler - isSpec: "True" - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.InputHandler - nameWithType: GenericPointer.InputHandler -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.InputSourceParent - name: InputSourceParent - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_InputSourceParent - commentId: P:XRTK.Services.InputSystem.Pointers.GenericPointer.InputSourceParent - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.InputSourceParent - nameWithType: GenericPointer.InputSourceParent -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.InputSourceParent* - name: InputSourceParent - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_InputSourceParent_ - commentId: Overload:XRTK.Services.InputSystem.Pointers.GenericPointer.InputSourceParent - isSpec: "True" - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.InputSourceParent - nameWithType: GenericPointer.InputSourceParent -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.InteractionMode - name: InteractionMode - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_InteractionMode - commentId: P:XRTK.Services.InputSystem.Pointers.GenericPointer.InteractionMode - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.InteractionMode - nameWithType: GenericPointer.InteractionMode -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.InteractionMode* - name: InteractionMode - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_InteractionMode_ - commentId: Overload:XRTK.Services.InputSystem.Pointers.GenericPointer.InteractionMode - isSpec: "True" - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.InteractionMode - nameWithType: GenericPointer.InteractionMode -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.IsFocusLocked - name: IsFocusLocked - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_IsFocusLocked - commentId: P:XRTK.Services.InputSystem.Pointers.GenericPointer.IsFocusLocked - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.IsFocusLocked - nameWithType: GenericPointer.IsFocusLocked -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.IsFocusLocked* - name: IsFocusLocked - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_IsFocusLocked_ - commentId: Overload:XRTK.Services.InputSystem.Pointers.GenericPointer.IsFocusLocked - isSpec: "True" - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.IsFocusLocked - nameWithType: GenericPointer.IsFocusLocked -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.IsInteractionEnabled - name: IsInteractionEnabled - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_IsInteractionEnabled - commentId: P:XRTK.Services.InputSystem.Pointers.GenericPointer.IsInteractionEnabled - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.IsInteractionEnabled - nameWithType: GenericPointer.IsInteractionEnabled -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.IsInteractionEnabled* - name: IsInteractionEnabled - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_IsInteractionEnabled_ - commentId: Overload:XRTK.Services.InputSystem.Pointers.GenericPointer.IsInteractionEnabled - isSpec: "True" - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.IsInteractionEnabled - nameWithType: GenericPointer.IsInteractionEnabled -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.NearInteractionCollider - name: NearInteractionCollider - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_NearInteractionCollider - commentId: P:XRTK.Services.InputSystem.Pointers.GenericPointer.NearInteractionCollider - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.NearInteractionCollider - nameWithType: GenericPointer.NearInteractionCollider -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.NearInteractionCollider* - name: NearInteractionCollider - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_NearInteractionCollider_ - commentId: Overload:XRTK.Services.InputSystem.Pointers.GenericPointer.NearInteractionCollider - isSpec: "True" - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.NearInteractionCollider - nameWithType: GenericPointer.NearInteractionCollider -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.OnPostRaycast - name: OnPostRaycast() - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_OnPostRaycast - commentId: M:XRTK.Services.InputSystem.Pointers.GenericPointer.OnPostRaycast - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.OnPostRaycast() - nameWithType: GenericPointer.OnPostRaycast() -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.OnPostRaycast* - name: OnPostRaycast - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_OnPostRaycast_ - commentId: Overload:XRTK.Services.InputSystem.Pointers.GenericPointer.OnPostRaycast - isSpec: "True" - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.OnPostRaycast - nameWithType: GenericPointer.OnPostRaycast -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.OnPreRaycast - name: OnPreRaycast() - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_OnPreRaycast - commentId: M:XRTK.Services.InputSystem.Pointers.GenericPointer.OnPreRaycast - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.OnPreRaycast() - nameWithType: GenericPointer.OnPreRaycast() -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.OnPreRaycast* - name: OnPreRaycast - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_OnPreRaycast_ - commentId: Overload:XRTK.Services.InputSystem.Pointers.GenericPointer.OnPreRaycast - isSpec: "True" - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.OnPreRaycast - nameWithType: GenericPointer.OnPreRaycast -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.OverrideGrabPoint - name: OverrideGrabPoint - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_OverrideGrabPoint - commentId: P:XRTK.Services.InputSystem.Pointers.GenericPointer.OverrideGrabPoint - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.OverrideGrabPoint - nameWithType: GenericPointer.OverrideGrabPoint -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.OverrideGrabPoint* - name: OverrideGrabPoint - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_OverrideGrabPoint_ - commentId: Overload:XRTK.Services.InputSystem.Pointers.GenericPointer.OverrideGrabPoint - isSpec: "True" - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.OverrideGrabPoint - nameWithType: GenericPointer.OverrideGrabPoint -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.PointerExtent - name: PointerExtent - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_PointerExtent - commentId: P:XRTK.Services.InputSystem.Pointers.GenericPointer.PointerExtent - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.PointerExtent - nameWithType: GenericPointer.PointerExtent -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.PointerExtent* - name: PointerExtent - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_PointerExtent_ - commentId: Overload:XRTK.Services.InputSystem.Pointers.GenericPointer.PointerExtent - isSpec: "True" - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.PointerExtent - nameWithType: GenericPointer.PointerExtent -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.PointerId - name: PointerId - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_PointerId - commentId: P:XRTK.Services.InputSystem.Pointers.GenericPointer.PointerId - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.PointerId - nameWithType: GenericPointer.PointerId -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.PointerId* - name: PointerId - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_PointerId_ - commentId: Overload:XRTK.Services.InputSystem.Pointers.GenericPointer.PointerId - isSpec: "True" - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.PointerId - nameWithType: GenericPointer.PointerId -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.PointerName - name: PointerName - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_PointerName - commentId: P:XRTK.Services.InputSystem.Pointers.GenericPointer.PointerName - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.PointerName - nameWithType: GenericPointer.PointerName -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.PointerName* - name: PointerName - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_PointerName_ - commentId: Overload:XRTK.Services.InputSystem.Pointers.GenericPointer.PointerName - isSpec: "True" - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.PointerName - nameWithType: GenericPointer.PointerName -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.PointerOrientation - name: PointerOrientation - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_PointerOrientation - commentId: P:XRTK.Services.InputSystem.Pointers.GenericPointer.PointerOrientation - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.PointerOrientation - nameWithType: GenericPointer.PointerOrientation -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.PointerOrientation* - name: PointerOrientation - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_PointerOrientation_ - commentId: Overload:XRTK.Services.InputSystem.Pointers.GenericPointer.PointerOrientation - isSpec: "True" - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.PointerOrientation - nameWithType: GenericPointer.PointerOrientation -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.PointerRaycastLayerMasksOverride - name: PointerRaycastLayerMasksOverride - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_PointerRaycastLayerMasksOverride - commentId: P:XRTK.Services.InputSystem.Pointers.GenericPointer.PointerRaycastLayerMasksOverride - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.PointerRaycastLayerMasksOverride - nameWithType: GenericPointer.PointerRaycastLayerMasksOverride -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.PointerRaycastLayerMasksOverride* - name: PointerRaycastLayerMasksOverride - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_PointerRaycastLayerMasksOverride_ - commentId: Overload:XRTK.Services.InputSystem.Pointers.GenericPointer.PointerRaycastLayerMasksOverride - isSpec: "True" - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.PointerRaycastLayerMasksOverride - nameWithType: GenericPointer.PointerRaycastLayerMasksOverride -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.RaycastMode - name: RaycastMode - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_RaycastMode - commentId: P:XRTK.Services.InputSystem.Pointers.GenericPointer.RaycastMode - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.RaycastMode - nameWithType: GenericPointer.RaycastMode -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.RaycastMode* - name: RaycastMode - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_RaycastMode_ - commentId: Overload:XRTK.Services.InputSystem.Pointers.GenericPointer.RaycastMode - isSpec: "True" - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.RaycastMode - nameWithType: GenericPointer.RaycastMode -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.Rays - name: Rays - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_Rays - commentId: P:XRTK.Services.InputSystem.Pointers.GenericPointer.Rays - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.Rays - nameWithType: GenericPointer.Rays -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.Rays* - name: Rays - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_Rays_ - commentId: Overload:XRTK.Services.InputSystem.Pointers.GenericPointer.Rays - isSpec: "True" - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.Rays - nameWithType: GenericPointer.Rays -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.RayStabilizer - name: RayStabilizer - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_RayStabilizer - commentId: P:XRTK.Services.InputSystem.Pointers.GenericPointer.RayStabilizer - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.RayStabilizer - nameWithType: GenericPointer.RayStabilizer -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.RayStabilizer* - name: RayStabilizer - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_RayStabilizer_ - commentId: Overload:XRTK.Services.InputSystem.Pointers.GenericPointer.RayStabilizer - isSpec: "True" - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.RayStabilizer - nameWithType: GenericPointer.RayStabilizer -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.Result - name: Result - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_Result - commentId: P:XRTK.Services.InputSystem.Pointers.GenericPointer.Result - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.Result - nameWithType: GenericPointer.Result -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.Result* - name: Result - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_Result_ - commentId: Overload:XRTK.Services.InputSystem.Pointers.GenericPointer.Result - isSpec: "True" - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.Result - nameWithType: GenericPointer.Result -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.SphereCastRadius - name: SphereCastRadius - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_SphereCastRadius - commentId: P:XRTK.Services.InputSystem.Pointers.GenericPointer.SphereCastRadius - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.SphereCastRadius - nameWithType: GenericPointer.SphereCastRadius -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.SphereCastRadius* - name: SphereCastRadius - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_SphereCastRadius_ - commentId: Overload:XRTK.Services.InputSystem.Pointers.GenericPointer.SphereCastRadius - isSpec: "True" - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.SphereCastRadius - nameWithType: GenericPointer.SphereCastRadius -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.SyncedTarget - name: SyncedTarget - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_SyncedTarget - commentId: P:XRTK.Services.InputSystem.Pointers.GenericPointer.SyncedTarget - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.SyncedTarget - nameWithType: GenericPointer.SyncedTarget -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.SyncedTarget* - name: SyncedTarget - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_SyncedTarget_ - commentId: Overload:XRTK.Services.InputSystem.Pointers.GenericPointer.SyncedTarget - isSpec: "True" - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.SyncedTarget - nameWithType: GenericPointer.SyncedTarget -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.System#Collections#IEqualityComparer#Equals(System.Object,System.Object) - name: IEqualityComparer.Equals(Object, Object) - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_System_Collections_IEqualityComparer_Equals_System_Object_System_Object_ - commentId: M:XRTK.Services.InputSystem.Pointers.GenericPointer.System#Collections#IEqualityComparer#Equals(System.Object,System.Object) - name.vb: System.Collections.IEqualityComparer.Equals(Object, Object) - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.System.Collections.IEqualityComparer.Equals(System.Object, System.Object) - nameWithType: GenericPointer.IEqualityComparer.Equals(Object, Object) - nameWithType.vb: GenericPointer.System.Collections.IEqualityComparer.Equals(Object, Object) -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.System#Collections#IEqualityComparer#Equals* - name: IEqualityComparer.Equals - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_System_Collections_IEqualityComparer_Equals_ - commentId: Overload:XRTK.Services.InputSystem.Pointers.GenericPointer.System#Collections#IEqualityComparer#Equals - isSpec: "True" - name.vb: System.Collections.IEqualityComparer.Equals - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.System.Collections.IEqualityComparer.Equals - nameWithType: GenericPointer.IEqualityComparer.Equals - nameWithType.vb: GenericPointer.System.Collections.IEqualityComparer.Equals -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.System#Collections#IEqualityComparer#GetHashCode(System.Object) - name: IEqualityComparer.GetHashCode(Object) - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_System_Collections_IEqualityComparer_GetHashCode_System_Object_ - commentId: M:XRTK.Services.InputSystem.Pointers.GenericPointer.System#Collections#IEqualityComparer#GetHashCode(System.Object) - name.vb: System.Collections.IEqualityComparer.GetHashCode(Object) - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.System.Collections.IEqualityComparer.GetHashCode(System.Object) - nameWithType: GenericPointer.IEqualityComparer.GetHashCode(Object) - nameWithType.vb: GenericPointer.System.Collections.IEqualityComparer.GetHashCode(Object) -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.System#Collections#IEqualityComparer#GetHashCode* - name: IEqualityComparer.GetHashCode - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_System_Collections_IEqualityComparer_GetHashCode_ - commentId: Overload:XRTK.Services.InputSystem.Pointers.GenericPointer.System#Collections#IEqualityComparer#GetHashCode - isSpec: "True" - name.vb: System.Collections.IEqualityComparer.GetHashCode - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.System.Collections.IEqualityComparer.GetHashCode - nameWithType: GenericPointer.IEqualityComparer.GetHashCode - nameWithType.vb: GenericPointer.System.Collections.IEqualityComparer.GetHashCode -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.TeleportHotSpot - name: TeleportHotSpot - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_TeleportHotSpot - commentId: P:XRTK.Services.InputSystem.Pointers.GenericPointer.TeleportHotSpot - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.TeleportHotSpot - nameWithType: GenericPointer.TeleportHotSpot -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.TeleportHotSpot* - name: TeleportHotSpot - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_TeleportHotSpot_ - commentId: Overload:XRTK.Services.InputSystem.Pointers.GenericPointer.TeleportHotSpot - isSpec: "True" - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.TeleportHotSpot - nameWithType: GenericPointer.TeleportHotSpot -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.TryGetPointerPosition(UnityEngine.Vector3@) - name: TryGetPointerPosition(out Vector3) - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_TryGetPointerPosition_UnityEngine_Vector3__ - commentId: M:XRTK.Services.InputSystem.Pointers.GenericPointer.TryGetPointerPosition(UnityEngine.Vector3@) - name.vb: TryGetPointerPosition(ByRef Vector3) - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.TryGetPointerPosition(out UnityEngine.Vector3) - fullName.vb: XRTK.Services.InputSystem.Pointers.GenericPointer.TryGetPointerPosition(ByRef UnityEngine.Vector3) - nameWithType: GenericPointer.TryGetPointerPosition(out Vector3) - nameWithType.vb: GenericPointer.TryGetPointerPosition(ByRef Vector3) -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.TryGetPointerPosition* - name: TryGetPointerPosition - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_TryGetPointerPosition_ - commentId: Overload:XRTK.Services.InputSystem.Pointers.GenericPointer.TryGetPointerPosition - isSpec: "True" - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.TryGetPointerPosition - nameWithType: GenericPointer.TryGetPointerPosition -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.TryGetPointerRotation(UnityEngine.Quaternion@) - name: TryGetPointerRotation(out Quaternion) - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_TryGetPointerRotation_UnityEngine_Quaternion__ - commentId: M:XRTK.Services.InputSystem.Pointers.GenericPointer.TryGetPointerRotation(UnityEngine.Quaternion@) - name.vb: TryGetPointerRotation(ByRef Quaternion) - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.TryGetPointerRotation(out UnityEngine.Quaternion) - fullName.vb: XRTK.Services.InputSystem.Pointers.GenericPointer.TryGetPointerRotation(ByRef UnityEngine.Quaternion) - nameWithType: GenericPointer.TryGetPointerRotation(out Quaternion) - nameWithType.vb: GenericPointer.TryGetPointerRotation(ByRef Quaternion) -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.TryGetPointerRotation* - name: TryGetPointerRotation - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_TryGetPointerRotation_ - commentId: Overload:XRTK.Services.InputSystem.Pointers.GenericPointer.TryGetPointerRotation - isSpec: "True" - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.TryGetPointerRotation - nameWithType: GenericPointer.TryGetPointerRotation -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.TryGetPointingRay(UnityEngine.Ray@) - name: TryGetPointingRay(out Ray) - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_TryGetPointingRay_UnityEngine_Ray__ - commentId: M:XRTK.Services.InputSystem.Pointers.GenericPointer.TryGetPointingRay(UnityEngine.Ray@) - name.vb: TryGetPointingRay(ByRef Ray) - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.TryGetPointingRay(out UnityEngine.Ray) - fullName.vb: XRTK.Services.InputSystem.Pointers.GenericPointer.TryGetPointingRay(ByRef UnityEngine.Ray) - nameWithType: GenericPointer.TryGetPointingRay(out Ray) - nameWithType.vb: GenericPointer.TryGetPointingRay(ByRef Ray) -- uid: XRTK.Services.InputSystem.Pointers.GenericPointer.TryGetPointingRay* - name: TryGetPointingRay - href: api/XRTK.Services.InputSystem.Pointers.GenericPointer.html#XRTK_Services_InputSystem_Pointers_GenericPointer_TryGetPointingRay_ - commentId: Overload:XRTK.Services.InputSystem.Pointers.GenericPointer.TryGetPointingRay - isSpec: "True" - fullName: XRTK.Services.InputSystem.Pointers.GenericPointer.TryGetPointingRay - nameWithType: GenericPointer.TryGetPointingRay -- uid: XRTK.Services.InputSystem.Sources - name: XRTK.Services.InputSystem.Sources - href: api/XRTK.Services.InputSystem.Sources.html - commentId: N:XRTK.Services.InputSystem.Sources - fullName: XRTK.Services.InputSystem.Sources - nameWithType: XRTK.Services.InputSystem.Sources -- uid: XRTK.Services.InputSystem.Sources.BaseGenericInputSource - name: BaseGenericInputSource - href: api/XRTK.Services.InputSystem.Sources.BaseGenericInputSource.html - commentId: T:XRTK.Services.InputSystem.Sources.BaseGenericInputSource - fullName: XRTK.Services.InputSystem.Sources.BaseGenericInputSource - nameWithType: BaseGenericInputSource -- uid: XRTK.Services.InputSystem.Sources.BaseGenericInputSource.#ctor(System.String,XRTK.Interfaces.InputSystem.IMixedRealityPointer[]) - name: BaseGenericInputSource(String, IMixedRealityPointer[]) - href: api/XRTK.Services.InputSystem.Sources.BaseGenericInputSource.html#XRTK_Services_InputSystem_Sources_BaseGenericInputSource__ctor_System_String_XRTK_Interfaces_InputSystem_IMixedRealityPointer___ - commentId: M:XRTK.Services.InputSystem.Sources.BaseGenericInputSource.#ctor(System.String,XRTK.Interfaces.InputSystem.IMixedRealityPointer[]) - name.vb: BaseGenericInputSource(String, IMixedRealityPointer()) - fullName: XRTK.Services.InputSystem.Sources.BaseGenericInputSource.BaseGenericInputSource(System.String, XRTK.Interfaces.InputSystem.IMixedRealityPointer[]) - fullName.vb: XRTK.Services.InputSystem.Sources.BaseGenericInputSource.BaseGenericInputSource(System.String, XRTK.Interfaces.InputSystem.IMixedRealityPointer()) - nameWithType: BaseGenericInputSource.BaseGenericInputSource(String, IMixedRealityPointer[]) - nameWithType.vb: BaseGenericInputSource.BaseGenericInputSource(String, IMixedRealityPointer()) -- uid: XRTK.Services.InputSystem.Sources.BaseGenericInputSource.#ctor* - name: BaseGenericInputSource - href: api/XRTK.Services.InputSystem.Sources.BaseGenericInputSource.html#XRTK_Services_InputSystem_Sources_BaseGenericInputSource__ctor_ - commentId: Overload:XRTK.Services.InputSystem.Sources.BaseGenericInputSource.#ctor - isSpec: "True" - fullName: XRTK.Services.InputSystem.Sources.BaseGenericInputSource.BaseGenericInputSource - nameWithType: BaseGenericInputSource.BaseGenericInputSource -- uid: XRTK.Services.InputSystem.Sources.BaseGenericInputSource.Equals(System.Object) - name: Equals(Object) - href: api/XRTK.Services.InputSystem.Sources.BaseGenericInputSource.html#XRTK_Services_InputSystem_Sources_BaseGenericInputSource_Equals_System_Object_ - commentId: M:XRTK.Services.InputSystem.Sources.BaseGenericInputSource.Equals(System.Object) - fullName: XRTK.Services.InputSystem.Sources.BaseGenericInputSource.Equals(System.Object) - nameWithType: BaseGenericInputSource.Equals(Object) -- uid: XRTK.Services.InputSystem.Sources.BaseGenericInputSource.Equals(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Interfaces.InputSystem.IMixedRealityInputSource) - name: Equals(IMixedRealityInputSource, IMixedRealityInputSource) - href: api/XRTK.Services.InputSystem.Sources.BaseGenericInputSource.html#XRTK_Services_InputSystem_Sources_BaseGenericInputSource_Equals_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_XRTK_Interfaces_InputSystem_IMixedRealityInputSource_ - commentId: M:XRTK.Services.InputSystem.Sources.BaseGenericInputSource.Equals(XRTK.Interfaces.InputSystem.IMixedRealityInputSource,XRTK.Interfaces.InputSystem.IMixedRealityInputSource) - fullName: XRTK.Services.InputSystem.Sources.BaseGenericInputSource.Equals(XRTK.Interfaces.InputSystem.IMixedRealityInputSource, XRTK.Interfaces.InputSystem.IMixedRealityInputSource) - nameWithType: BaseGenericInputSource.Equals(IMixedRealityInputSource, IMixedRealityInputSource) -- uid: XRTK.Services.InputSystem.Sources.BaseGenericInputSource.Equals* - name: Equals - href: api/XRTK.Services.InputSystem.Sources.BaseGenericInputSource.html#XRTK_Services_InputSystem_Sources_BaseGenericInputSource_Equals_ - commentId: Overload:XRTK.Services.InputSystem.Sources.BaseGenericInputSource.Equals - isSpec: "True" - fullName: XRTK.Services.InputSystem.Sources.BaseGenericInputSource.Equals - nameWithType: BaseGenericInputSource.Equals -- uid: XRTK.Services.InputSystem.Sources.BaseGenericInputSource.GetHashCode - name: GetHashCode() - href: api/XRTK.Services.InputSystem.Sources.BaseGenericInputSource.html#XRTK_Services_InputSystem_Sources_BaseGenericInputSource_GetHashCode - commentId: M:XRTK.Services.InputSystem.Sources.BaseGenericInputSource.GetHashCode - fullName: XRTK.Services.InputSystem.Sources.BaseGenericInputSource.GetHashCode() - nameWithType: BaseGenericInputSource.GetHashCode() -- uid: XRTK.Services.InputSystem.Sources.BaseGenericInputSource.GetHashCode* - name: GetHashCode - href: api/XRTK.Services.InputSystem.Sources.BaseGenericInputSource.html#XRTK_Services_InputSystem_Sources_BaseGenericInputSource_GetHashCode_ - commentId: Overload:XRTK.Services.InputSystem.Sources.BaseGenericInputSource.GetHashCode - isSpec: "True" - fullName: XRTK.Services.InputSystem.Sources.BaseGenericInputSource.GetHashCode - nameWithType: BaseGenericInputSource.GetHashCode -- uid: XRTK.Services.InputSystem.Sources.BaseGenericInputSource.Pointers - name: Pointers - href: api/XRTK.Services.InputSystem.Sources.BaseGenericInputSource.html#XRTK_Services_InputSystem_Sources_BaseGenericInputSource_Pointers - commentId: P:XRTK.Services.InputSystem.Sources.BaseGenericInputSource.Pointers - fullName: XRTK.Services.InputSystem.Sources.BaseGenericInputSource.Pointers - nameWithType: BaseGenericInputSource.Pointers -- uid: XRTK.Services.InputSystem.Sources.BaseGenericInputSource.Pointers* - name: Pointers - href: api/XRTK.Services.InputSystem.Sources.BaseGenericInputSource.html#XRTK_Services_InputSystem_Sources_BaseGenericInputSource_Pointers_ - commentId: Overload:XRTK.Services.InputSystem.Sources.BaseGenericInputSource.Pointers - isSpec: "True" - fullName: XRTK.Services.InputSystem.Sources.BaseGenericInputSource.Pointers - nameWithType: BaseGenericInputSource.Pointers -- uid: XRTK.Services.InputSystem.Sources.BaseGenericInputSource.SourceId - name: SourceId - href: api/XRTK.Services.InputSystem.Sources.BaseGenericInputSource.html#XRTK_Services_InputSystem_Sources_BaseGenericInputSource_SourceId - commentId: P:XRTK.Services.InputSystem.Sources.BaseGenericInputSource.SourceId - fullName: XRTK.Services.InputSystem.Sources.BaseGenericInputSource.SourceId - nameWithType: BaseGenericInputSource.SourceId -- uid: XRTK.Services.InputSystem.Sources.BaseGenericInputSource.SourceId* - name: SourceId - href: api/XRTK.Services.InputSystem.Sources.BaseGenericInputSource.html#XRTK_Services_InputSystem_Sources_BaseGenericInputSource_SourceId_ - commentId: Overload:XRTK.Services.InputSystem.Sources.BaseGenericInputSource.SourceId - isSpec: "True" - fullName: XRTK.Services.InputSystem.Sources.BaseGenericInputSource.SourceId - nameWithType: BaseGenericInputSource.SourceId -- uid: XRTK.Services.InputSystem.Sources.BaseGenericInputSource.SourceName - name: SourceName - href: api/XRTK.Services.InputSystem.Sources.BaseGenericInputSource.html#XRTK_Services_InputSystem_Sources_BaseGenericInputSource_SourceName - commentId: P:XRTK.Services.InputSystem.Sources.BaseGenericInputSource.SourceName - fullName: XRTK.Services.InputSystem.Sources.BaseGenericInputSource.SourceName - nameWithType: BaseGenericInputSource.SourceName -- uid: XRTK.Services.InputSystem.Sources.BaseGenericInputSource.SourceName* - name: SourceName - href: api/XRTK.Services.InputSystem.Sources.BaseGenericInputSource.html#XRTK_Services_InputSystem_Sources_BaseGenericInputSource_SourceName_ - commentId: Overload:XRTK.Services.InputSystem.Sources.BaseGenericInputSource.SourceName - isSpec: "True" - fullName: XRTK.Services.InputSystem.Sources.BaseGenericInputSource.SourceName - nameWithType: BaseGenericInputSource.SourceName -- uid: XRTK.Services.InputSystem.Sources.BaseGenericInputSource.System#Collections#IEqualityComparer#Equals(System.Object,System.Object) - name: IEqualityComparer.Equals(Object, Object) - href: api/XRTK.Services.InputSystem.Sources.BaseGenericInputSource.html#XRTK_Services_InputSystem_Sources_BaseGenericInputSource_System_Collections_IEqualityComparer_Equals_System_Object_System_Object_ - commentId: M:XRTK.Services.InputSystem.Sources.BaseGenericInputSource.System#Collections#IEqualityComparer#Equals(System.Object,System.Object) - name.vb: System.Collections.IEqualityComparer.Equals(Object, Object) - fullName: XRTK.Services.InputSystem.Sources.BaseGenericInputSource.System.Collections.IEqualityComparer.Equals(System.Object, System.Object) - nameWithType: BaseGenericInputSource.IEqualityComparer.Equals(Object, Object) - nameWithType.vb: BaseGenericInputSource.System.Collections.IEqualityComparer.Equals(Object, Object) -- uid: XRTK.Services.InputSystem.Sources.BaseGenericInputSource.System#Collections#IEqualityComparer#Equals* - name: IEqualityComparer.Equals - href: api/XRTK.Services.InputSystem.Sources.BaseGenericInputSource.html#XRTK_Services_InputSystem_Sources_BaseGenericInputSource_System_Collections_IEqualityComparer_Equals_ - commentId: Overload:XRTK.Services.InputSystem.Sources.BaseGenericInputSource.System#Collections#IEqualityComparer#Equals - isSpec: "True" - name.vb: System.Collections.IEqualityComparer.Equals - fullName: XRTK.Services.InputSystem.Sources.BaseGenericInputSource.System.Collections.IEqualityComparer.Equals - nameWithType: BaseGenericInputSource.IEqualityComparer.Equals - nameWithType.vb: BaseGenericInputSource.System.Collections.IEqualityComparer.Equals -- uid: XRTK.Services.InputSystem.Sources.BaseGenericInputSource.System#Collections#IEqualityComparer#GetHashCode(System.Object) - name: IEqualityComparer.GetHashCode(Object) - href: api/XRTK.Services.InputSystem.Sources.BaseGenericInputSource.html#XRTK_Services_InputSystem_Sources_BaseGenericInputSource_System_Collections_IEqualityComparer_GetHashCode_System_Object_ - commentId: M:XRTK.Services.InputSystem.Sources.BaseGenericInputSource.System#Collections#IEqualityComparer#GetHashCode(System.Object) - name.vb: System.Collections.IEqualityComparer.GetHashCode(Object) - fullName: XRTK.Services.InputSystem.Sources.BaseGenericInputSource.System.Collections.IEqualityComparer.GetHashCode(System.Object) - nameWithType: BaseGenericInputSource.IEqualityComparer.GetHashCode(Object) - nameWithType.vb: BaseGenericInputSource.System.Collections.IEqualityComparer.GetHashCode(Object) -- uid: XRTK.Services.InputSystem.Sources.BaseGenericInputSource.System#Collections#IEqualityComparer#GetHashCode* - name: IEqualityComparer.GetHashCode - href: api/XRTK.Services.InputSystem.Sources.BaseGenericInputSource.html#XRTK_Services_InputSystem_Sources_BaseGenericInputSource_System_Collections_IEqualityComparer_GetHashCode_ - commentId: Overload:XRTK.Services.InputSystem.Sources.BaseGenericInputSource.System#Collections#IEqualityComparer#GetHashCode - isSpec: "True" - name.vb: System.Collections.IEqualityComparer.GetHashCode - fullName: XRTK.Services.InputSystem.Sources.BaseGenericInputSource.System.Collections.IEqualityComparer.GetHashCode - nameWithType: BaseGenericInputSource.IEqualityComparer.GetHashCode - nameWithType.vb: BaseGenericInputSource.System.Collections.IEqualityComparer.GetHashCode -- uid: XRTK.Services.MixedRealityToolkit - name: MixedRealityToolkit - href: api/XRTK.Services.MixedRealityToolkit.html - commentId: T:XRTK.Services.MixedRealityToolkit - fullName: XRTK.Services.MixedRealityToolkit - nameWithType: MixedRealityToolkit -- uid: XRTK.Services.MixedRealityToolkit.ActivePlatforms - name: ActivePlatforms - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_ActivePlatforms - commentId: P:XRTK.Services.MixedRealityToolkit.ActivePlatforms - fullName: XRTK.Services.MixedRealityToolkit.ActivePlatforms - nameWithType: MixedRealityToolkit.ActivePlatforms -- uid: XRTK.Services.MixedRealityToolkit.ActivePlatforms* - name: ActivePlatforms - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_ActivePlatforms_ - commentId: Overload:XRTK.Services.MixedRealityToolkit.ActivePlatforms - isSpec: "True" - fullName: XRTK.Services.MixedRealityToolkit.ActivePlatforms - nameWithType: MixedRealityToolkit.ActivePlatforms -- uid: XRTK.Services.MixedRealityToolkit.ActiveProfile - name: ActiveProfile - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_ActiveProfile - commentId: P:XRTK.Services.MixedRealityToolkit.ActiveProfile - fullName: XRTK.Services.MixedRealityToolkit.ActiveProfile - nameWithType: MixedRealityToolkit.ActiveProfile -- uid: XRTK.Services.MixedRealityToolkit.ActiveProfile* - name: ActiveProfile - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_ActiveProfile_ - commentId: Overload:XRTK.Services.MixedRealityToolkit.ActiveProfile - isSpec: "True" - fullName: XRTK.Services.MixedRealityToolkit.ActiveProfile - nameWithType: MixedRealityToolkit.ActiveProfile -- uid: XRTK.Services.MixedRealityToolkit.ActiveSystems - name: ActiveSystems - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_ActiveSystems - commentId: P:XRTK.Services.MixedRealityToolkit.ActiveSystems - fullName: XRTK.Services.MixedRealityToolkit.ActiveSystems - nameWithType: MixedRealityToolkit.ActiveSystems -- uid: XRTK.Services.MixedRealityToolkit.ActiveSystems* - name: ActiveSystems - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_ActiveSystems_ - commentId: Overload:XRTK.Services.MixedRealityToolkit.ActiveSystems - isSpec: "True" - fullName: XRTK.Services.MixedRealityToolkit.ActiveSystems - nameWithType: MixedRealityToolkit.ActiveSystems -- uid: XRTK.Services.MixedRealityToolkit.AssertIsInitialized - name: AssertIsInitialized() - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_AssertIsInitialized - commentId: M:XRTK.Services.MixedRealityToolkit.AssertIsInitialized - fullName: XRTK.Services.MixedRealityToolkit.AssertIsInitialized() - nameWithType: MixedRealityToolkit.AssertIsInitialized() -- uid: XRTK.Services.MixedRealityToolkit.AssertIsInitialized* - name: AssertIsInitialized - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_AssertIsInitialized_ - commentId: Overload:XRTK.Services.MixedRealityToolkit.AssertIsInitialized - isSpec: "True" - fullName: XRTK.Services.MixedRealityToolkit.AssertIsInitialized - nameWithType: MixedRealityToolkit.AssertIsInitialized -- uid: XRTK.Services.MixedRealityToolkit.AvailablePlatforms - name: AvailablePlatforms - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_AvailablePlatforms - commentId: P:XRTK.Services.MixedRealityToolkit.AvailablePlatforms - fullName: XRTK.Services.MixedRealityToolkit.AvailablePlatforms - nameWithType: MixedRealityToolkit.AvailablePlatforms -- uid: XRTK.Services.MixedRealityToolkit.AvailablePlatforms* - name: AvailablePlatforms - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_AvailablePlatforms_ - commentId: Overload:XRTK.Services.MixedRealityToolkit.AvailablePlatforms - isSpec: "True" - fullName: XRTK.Services.MixedRealityToolkit.AvailablePlatforms - nameWithType: MixedRealityToolkit.AvailablePlatforms -- uid: XRTK.Services.MixedRealityToolkit.DisableAllServiceOfType* - name: DisableAllServiceOfType - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_DisableAllServiceOfType_ - commentId: Overload:XRTK.Services.MixedRealityToolkit.DisableAllServiceOfType - isSpec: "True" - fullName: XRTK.Services.MixedRealityToolkit.DisableAllServiceOfType - nameWithType: MixedRealityToolkit.DisableAllServiceOfType -- uid: XRTK.Services.MixedRealityToolkit.DisableAllServiceOfType``1 - name: DisableAllServiceOfType() - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_DisableAllServiceOfType__1 - commentId: M:XRTK.Services.MixedRealityToolkit.DisableAllServiceOfType``1 - name.vb: DisableAllServiceOfType(Of T)() - fullName: XRTK.Services.MixedRealityToolkit.DisableAllServiceOfType() - fullName.vb: XRTK.Services.MixedRealityToolkit.DisableAllServiceOfType(Of T)() - nameWithType: MixedRealityToolkit.DisableAllServiceOfType() - nameWithType.vb: MixedRealityToolkit.DisableAllServiceOfType(Of T)() -- uid: XRTK.Services.MixedRealityToolkit.DisableService* - name: DisableService - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_DisableService_ - commentId: Overload:XRTK.Services.MixedRealityToolkit.DisableService - isSpec: "True" - fullName: XRTK.Services.MixedRealityToolkit.DisableService - nameWithType: MixedRealityToolkit.DisableService -- uid: XRTK.Services.MixedRealityToolkit.DisableService``1(System.String) - name: DisableService(String) - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_DisableService__1_System_String_ - commentId: M:XRTK.Services.MixedRealityToolkit.DisableService``1(System.String) - name.vb: DisableService(Of T)(String) - fullName: XRTK.Services.MixedRealityToolkit.DisableService(System.String) - fullName.vb: XRTK.Services.MixedRealityToolkit.DisableService(Of T)(System.String) - nameWithType: MixedRealityToolkit.DisableService(String) - nameWithType.vb: MixedRealityToolkit.DisableService(Of T)(String) -- uid: XRTK.Services.MixedRealityToolkit.Dispose - name: Dispose() - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_Dispose - commentId: M:XRTK.Services.MixedRealityToolkit.Dispose - fullName: XRTK.Services.MixedRealityToolkit.Dispose() - nameWithType: MixedRealityToolkit.Dispose() -- uid: XRTK.Services.MixedRealityToolkit.Dispose* - name: Dispose - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_Dispose_ - commentId: Overload:XRTK.Services.MixedRealityToolkit.Dispose - isSpec: "True" - fullName: XRTK.Services.MixedRealityToolkit.Dispose - nameWithType: MixedRealityToolkit.Dispose -- uid: XRTK.Services.MixedRealityToolkit.EnableAllServicesOfType* - name: EnableAllServicesOfType - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_EnableAllServicesOfType_ - commentId: Overload:XRTK.Services.MixedRealityToolkit.EnableAllServicesOfType - isSpec: "True" - fullName: XRTK.Services.MixedRealityToolkit.EnableAllServicesOfType - nameWithType: MixedRealityToolkit.EnableAllServicesOfType -- uid: XRTK.Services.MixedRealityToolkit.EnableAllServicesOfType``1 - name: EnableAllServicesOfType() - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_EnableAllServicesOfType__1 - commentId: M:XRTK.Services.MixedRealityToolkit.EnableAllServicesOfType``1 - name.vb: EnableAllServicesOfType(Of T)() - fullName: XRTK.Services.MixedRealityToolkit.EnableAllServicesOfType() - fullName.vb: XRTK.Services.MixedRealityToolkit.EnableAllServicesOfType(Of T)() - nameWithType: MixedRealityToolkit.EnableAllServicesOfType() - nameWithType.vb: MixedRealityToolkit.EnableAllServicesOfType(Of T)() -- uid: XRTK.Services.MixedRealityToolkit.EnableService* - name: EnableService - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_EnableService_ - commentId: Overload:XRTK.Services.MixedRealityToolkit.EnableService - isSpec: "True" - fullName: XRTK.Services.MixedRealityToolkit.EnableService - nameWithType: MixedRealityToolkit.EnableService -- uid: XRTK.Services.MixedRealityToolkit.EnableService``1(System.String) - name: EnableService(String) - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_EnableService__1_System_String_ - commentId: M:XRTK.Services.MixedRealityToolkit.EnableService``1(System.String) - name.vb: EnableService(Of T)(String) - fullName: XRTK.Services.MixedRealityToolkit.EnableService(System.String) - fullName.vb: XRTK.Services.MixedRealityToolkit.EnableService(Of T)(System.String) - nameWithType: MixedRealityToolkit.EnableService(String) - nameWithType.vb: MixedRealityToolkit.EnableService(Of T)(String) -- uid: XRTK.Services.MixedRealityToolkit.Finalize - name: Finalize() - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_Finalize - commentId: M:XRTK.Services.MixedRealityToolkit.Finalize - fullName: XRTK.Services.MixedRealityToolkit.Finalize() - nameWithType: MixedRealityToolkit.Finalize() -- uid: XRTK.Services.MixedRealityToolkit.Finalize* - name: Finalize - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_Finalize_ - commentId: Overload:XRTK.Services.MixedRealityToolkit.Finalize - isSpec: "True" - fullName: XRTK.Services.MixedRealityToolkit.Finalize - nameWithType: MixedRealityToolkit.Finalize -- uid: XRTK.Services.MixedRealityToolkit.GetActiveServices* - name: GetActiveServices - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_GetActiveServices_ - commentId: Overload:XRTK.Services.MixedRealityToolkit.GetActiveServices - isSpec: "True" - fullName: XRTK.Services.MixedRealityToolkit.GetActiveServices - nameWithType: MixedRealityToolkit.GetActiveServices -- uid: XRTK.Services.MixedRealityToolkit.GetActiveServices``1 - name: GetActiveServices() - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_GetActiveServices__1 - commentId: M:XRTK.Services.MixedRealityToolkit.GetActiveServices``1 - name.vb: GetActiveServices(Of T)() - fullName: XRTK.Services.MixedRealityToolkit.GetActiveServices() - fullName.vb: XRTK.Services.MixedRealityToolkit.GetActiveServices(Of T)() - nameWithType: MixedRealityToolkit.GetActiveServices() - nameWithType.vb: MixedRealityToolkit.GetActiveServices(Of T)() -- uid: XRTK.Services.MixedRealityToolkit.GetService* - name: GetService - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_GetService_ - commentId: Overload:XRTK.Services.MixedRealityToolkit.GetService - isSpec: "True" - fullName: XRTK.Services.MixedRealityToolkit.GetService - nameWithType: MixedRealityToolkit.GetService -- uid: XRTK.Services.MixedRealityToolkit.GetService``1(System.Boolean) - name: GetService(Boolean) - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_GetService__1_System_Boolean_ - commentId: M:XRTK.Services.MixedRealityToolkit.GetService``1(System.Boolean) - name.vb: GetService(Of T)(Boolean) - fullName: XRTK.Services.MixedRealityToolkit.GetService(System.Boolean) - fullName.vb: XRTK.Services.MixedRealityToolkit.GetService(Of T)(System.Boolean) - nameWithType: MixedRealityToolkit.GetService(Boolean) - nameWithType.vb: MixedRealityToolkit.GetService(Of T)(Boolean) -- uid: XRTK.Services.MixedRealityToolkit.GetService``1(System.String,System.Boolean) - name: GetService(String, Boolean) - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_GetService__1_System_String_System_Boolean_ - commentId: M:XRTK.Services.MixedRealityToolkit.GetService``1(System.String,System.Boolean) - name.vb: GetService(Of T)(String, Boolean) - fullName: XRTK.Services.MixedRealityToolkit.GetService(System.String, System.Boolean) - fullName.vb: XRTK.Services.MixedRealityToolkit.GetService(Of T)(System.String, System.Boolean) - nameWithType: MixedRealityToolkit.GetService(String, Boolean) - nameWithType.vb: MixedRealityToolkit.GetService(Of T)(String, Boolean) -- uid: XRTK.Services.MixedRealityToolkit.GetServiceAsync* - name: GetServiceAsync - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_GetServiceAsync_ - commentId: Overload:XRTK.Services.MixedRealityToolkit.GetServiceAsync - isSpec: "True" - fullName: XRTK.Services.MixedRealityToolkit.GetServiceAsync - nameWithType: MixedRealityToolkit.GetServiceAsync -- uid: XRTK.Services.MixedRealityToolkit.GetServiceAsync``1(System.Int32) - name: GetServiceAsync(Int32) - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_GetServiceAsync__1_System_Int32_ - commentId: M:XRTK.Services.MixedRealityToolkit.GetServiceAsync``1(System.Int32) - name.vb: GetServiceAsync(Of T)(Int32) - fullName: XRTK.Services.MixedRealityToolkit.GetServiceAsync(System.Int32) - fullName.vb: XRTK.Services.MixedRealityToolkit.GetServiceAsync(Of T)(System.Int32) - nameWithType: MixedRealityToolkit.GetServiceAsync(Int32) - nameWithType.vb: MixedRealityToolkit.GetServiceAsync(Of T)(Int32) -- uid: XRTK.Services.MixedRealityToolkit.GetSystem* - name: GetSystem - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_GetSystem_ - commentId: Overload:XRTK.Services.MixedRealityToolkit.GetSystem - isSpec: "True" - fullName: XRTK.Services.MixedRealityToolkit.GetSystem - nameWithType: MixedRealityToolkit.GetSystem -- uid: XRTK.Services.MixedRealityToolkit.GetSystem``1 - name: GetSystem() - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_GetSystem__1 - commentId: M:XRTK.Services.MixedRealityToolkit.GetSystem``1 - name.vb: GetSystem(Of T)() - fullName: XRTK.Services.MixedRealityToolkit.GetSystem() - fullName.vb: XRTK.Services.MixedRealityToolkit.GetSystem(Of T)() - nameWithType: MixedRealityToolkit.GetSystem() - nameWithType.vb: MixedRealityToolkit.GetSystem(Of T)() -- uid: XRTK.Services.MixedRealityToolkit.GetSystemAsync* - name: GetSystemAsync - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_GetSystemAsync_ - commentId: Overload:XRTK.Services.MixedRealityToolkit.GetSystemAsync - isSpec: "True" - fullName: XRTK.Services.MixedRealityToolkit.GetSystemAsync - nameWithType: MixedRealityToolkit.GetSystemAsync -- uid: XRTK.Services.MixedRealityToolkit.GetSystemAsync``1(System.Int32) - name: GetSystemAsync(Int32) - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_GetSystemAsync__1_System_Int32_ - commentId: M:XRTK.Services.MixedRealityToolkit.GetSystemAsync``1(System.Int32) - name.vb: GetSystemAsync(Of T)(Int32) - fullName: XRTK.Services.MixedRealityToolkit.GetSystemAsync(System.Int32) - fullName.vb: XRTK.Services.MixedRealityToolkit.GetSystemAsync(Of T)(System.Int32) - nameWithType: MixedRealityToolkit.GetSystemAsync(Int32) - nameWithType.vb: MixedRealityToolkit.GetSystemAsync(Of T)(Int32) -- uid: XRTK.Services.MixedRealityToolkit.HasActiveProfile - name: HasActiveProfile - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_HasActiveProfile - commentId: P:XRTK.Services.MixedRealityToolkit.HasActiveProfile - fullName: XRTK.Services.MixedRealityToolkit.HasActiveProfile - nameWithType: MixedRealityToolkit.HasActiveProfile -- uid: XRTK.Services.MixedRealityToolkit.HasActiveProfile* - name: HasActiveProfile - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_HasActiveProfile_ - commentId: Overload:XRTK.Services.MixedRealityToolkit.HasActiveProfile - isSpec: "True" - fullName: XRTK.Services.MixedRealityToolkit.HasActiveProfile - nameWithType: MixedRealityToolkit.HasActiveProfile -- uid: XRTK.Services.MixedRealityToolkit.Instance - name: Instance - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_Instance - commentId: P:XRTK.Services.MixedRealityToolkit.Instance - fullName: XRTK.Services.MixedRealityToolkit.Instance - nameWithType: MixedRealityToolkit.Instance -- uid: XRTK.Services.MixedRealityToolkit.Instance* - name: Instance - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_Instance_ - commentId: Overload:XRTK.Services.MixedRealityToolkit.Instance - isSpec: "True" - fullName: XRTK.Services.MixedRealityToolkit.Instance - nameWithType: MixedRealityToolkit.Instance -- uid: XRTK.Services.MixedRealityToolkit.IsApplicationQuitting - name: IsApplicationQuitting - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_IsApplicationQuitting - commentId: P:XRTK.Services.MixedRealityToolkit.IsApplicationQuitting - fullName: XRTK.Services.MixedRealityToolkit.IsApplicationQuitting - nameWithType: MixedRealityToolkit.IsApplicationQuitting -- uid: XRTK.Services.MixedRealityToolkit.IsApplicationQuitting* - name: IsApplicationQuitting - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_IsApplicationQuitting_ - commentId: Overload:XRTK.Services.MixedRealityToolkit.IsApplicationQuitting - isSpec: "True" - fullName: XRTK.Services.MixedRealityToolkit.IsApplicationQuitting - nameWithType: MixedRealityToolkit.IsApplicationQuitting -- uid: XRTK.Services.MixedRealityToolkit.IsInitialized - name: IsInitialized - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_IsInitialized - commentId: P:XRTK.Services.MixedRealityToolkit.IsInitialized - fullName: XRTK.Services.MixedRealityToolkit.IsInitialized - nameWithType: MixedRealityToolkit.IsInitialized -- uid: XRTK.Services.MixedRealityToolkit.IsInitialized* - name: IsInitialized - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_IsInitialized_ - commentId: Overload:XRTK.Services.MixedRealityToolkit.IsInitialized - isSpec: "True" - fullName: XRTK.Services.MixedRealityToolkit.IsInitialized - nameWithType: MixedRealityToolkit.IsInitialized -- uid: XRTK.Services.MixedRealityToolkit.IsServiceRegistered* - name: IsServiceRegistered - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_IsServiceRegistered_ - commentId: Overload:XRTK.Services.MixedRealityToolkit.IsServiceRegistered - isSpec: "True" - fullName: XRTK.Services.MixedRealityToolkit.IsServiceRegistered - nameWithType: MixedRealityToolkit.IsServiceRegistered -- uid: XRTK.Services.MixedRealityToolkit.IsServiceRegistered``1 - name: IsServiceRegistered() - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_IsServiceRegistered__1 - commentId: M:XRTK.Services.MixedRealityToolkit.IsServiceRegistered``1 - name.vb: IsServiceRegistered(Of T)() - fullName: XRTK.Services.MixedRealityToolkit.IsServiceRegistered() - fullName.vb: XRTK.Services.MixedRealityToolkit.IsServiceRegistered(Of T)() - nameWithType: MixedRealityToolkit.IsServiceRegistered() - nameWithType.vb: MixedRealityToolkit.IsServiceRegistered(Of T)() -- uid: XRTK.Services.MixedRealityToolkit.IsSystemEnabled* - name: IsSystemEnabled - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_IsSystemEnabled_ - commentId: Overload:XRTK.Services.MixedRealityToolkit.IsSystemEnabled - isSpec: "True" - fullName: XRTK.Services.MixedRealityToolkit.IsSystemEnabled - nameWithType: MixedRealityToolkit.IsSystemEnabled -- uid: XRTK.Services.MixedRealityToolkit.IsSystemEnabled``1(XRTK.Definitions.MixedRealityToolkitRootProfile) - name: IsSystemEnabled(MixedRealityToolkitRootProfile) - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_IsSystemEnabled__1_XRTK_Definitions_MixedRealityToolkitRootProfile_ - commentId: M:XRTK.Services.MixedRealityToolkit.IsSystemEnabled``1(XRTK.Definitions.MixedRealityToolkitRootProfile) - name.vb: IsSystemEnabled(Of T)(MixedRealityToolkitRootProfile) - fullName: XRTK.Services.MixedRealityToolkit.IsSystemEnabled(XRTK.Definitions.MixedRealityToolkitRootProfile) - fullName.vb: XRTK.Services.MixedRealityToolkit.IsSystemEnabled(Of T)(XRTK.Definitions.MixedRealityToolkitRootProfile) - nameWithType: MixedRealityToolkit.IsSystemEnabled(MixedRealityToolkitRootProfile) - nameWithType.vb: MixedRealityToolkit.IsSystemEnabled(Of T)(MixedRealityToolkitRootProfile) -- uid: XRTK.Services.MixedRealityToolkit.IsSystemRegistered* - name: IsSystemRegistered - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_IsSystemRegistered_ - commentId: Overload:XRTK.Services.MixedRealityToolkit.IsSystemRegistered - isSpec: "True" - fullName: XRTK.Services.MixedRealityToolkit.IsSystemRegistered - nameWithType: MixedRealityToolkit.IsSystemRegistered -- uid: XRTK.Services.MixedRealityToolkit.IsSystemRegistered``1 - name: IsSystemRegistered() - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_IsSystemRegistered__1 - commentId: M:XRTK.Services.MixedRealityToolkit.IsSystemRegistered``1 - name.vb: IsSystemRegistered(Of T)() - fullName: XRTK.Services.MixedRealityToolkit.IsSystemRegistered() - fullName.vb: XRTK.Services.MixedRealityToolkit.IsSystemRegistered(Of T)() - nameWithType: MixedRealityToolkit.IsSystemRegistered() - nameWithType.vb: MixedRealityToolkit.IsSystemRegistered(Of T)() -- uid: XRTK.Services.MixedRealityToolkit.Modules - name: Modules - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_Modules - commentId: P:XRTK.Services.MixedRealityToolkit.Modules - fullName: XRTK.Services.MixedRealityToolkit.Modules - nameWithType: MixedRealityToolkit.Modules -- uid: XRTK.Services.MixedRealityToolkit.Modules* - name: Modules - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_Modules_ - commentId: Overload:XRTK.Services.MixedRealityToolkit.Modules - isSpec: "True" - fullName: XRTK.Services.MixedRealityToolkit.Modules - nameWithType: MixedRealityToolkit.Modules -- uid: XRTK.Services.MixedRealityToolkit.RegisteredMixedRealityServices - name: RegisteredMixedRealityServices - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_RegisteredMixedRealityServices - commentId: P:XRTK.Services.MixedRealityToolkit.RegisteredMixedRealityServices - fullName: XRTK.Services.MixedRealityToolkit.RegisteredMixedRealityServices - nameWithType: MixedRealityToolkit.RegisteredMixedRealityServices -- uid: XRTK.Services.MixedRealityToolkit.RegisteredMixedRealityServices* - name: RegisteredMixedRealityServices - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_RegisteredMixedRealityServices_ - commentId: Overload:XRTK.Services.MixedRealityToolkit.RegisteredMixedRealityServices - isSpec: "True" - fullName: XRTK.Services.MixedRealityToolkit.RegisteredMixedRealityServices - nameWithType: MixedRealityToolkit.RegisteredMixedRealityServices -- uid: XRTK.Services.MixedRealityToolkit.ResetProfile(XRTK.Definitions.MixedRealityToolkitRootProfile) - name: ResetProfile(MixedRealityToolkitRootProfile) - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_ResetProfile_XRTK_Definitions_MixedRealityToolkitRootProfile_ - commentId: M:XRTK.Services.MixedRealityToolkit.ResetProfile(XRTK.Definitions.MixedRealityToolkitRootProfile) - fullName: XRTK.Services.MixedRealityToolkit.ResetProfile(XRTK.Definitions.MixedRealityToolkitRootProfile) - nameWithType: MixedRealityToolkit.ResetProfile(MixedRealityToolkitRootProfile) -- uid: XRTK.Services.MixedRealityToolkit.ResetProfile* - name: ResetProfile - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_ResetProfile_ - commentId: Overload:XRTK.Services.MixedRealityToolkit.ResetProfile - isSpec: "True" - fullName: XRTK.Services.MixedRealityToolkit.ResetProfile - nameWithType: MixedRealityToolkit.ResetProfile -- uid: XRTK.Services.MixedRealityToolkit.TryCreateAndRegisterDataProvider* - name: TryCreateAndRegisterDataProvider - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_TryCreateAndRegisterDataProvider_ - commentId: Overload:XRTK.Services.MixedRealityToolkit.TryCreateAndRegisterDataProvider - isSpec: "True" - fullName: XRTK.Services.MixedRealityToolkit.TryCreateAndRegisterDataProvider - nameWithType: MixedRealityToolkit.TryCreateAndRegisterDataProvider -- uid: XRTK.Services.MixedRealityToolkit.TryCreateAndRegisterDataProvider``1(XRTK.Interfaces.IMixedRealityServiceConfiguration{``0},XRTK.Interfaces.IMixedRealityService) - name: TryCreateAndRegisterDataProvider(IMixedRealityServiceConfiguration, IMixedRealityService) - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_TryCreateAndRegisterDataProvider__1_XRTK_Interfaces_IMixedRealityServiceConfiguration___0__XRTK_Interfaces_IMixedRealityService_ - commentId: M:XRTK.Services.MixedRealityToolkit.TryCreateAndRegisterDataProvider``1(XRTK.Interfaces.IMixedRealityServiceConfiguration{``0},XRTK.Interfaces.IMixedRealityService) - name.vb: TryCreateAndRegisterDataProvider(Of T)(IMixedRealityServiceConfiguration(Of T), IMixedRealityService) - fullName: XRTK.Services.MixedRealityToolkit.TryCreateAndRegisterDataProvider(XRTK.Interfaces.IMixedRealityServiceConfiguration, XRTK.Interfaces.IMixedRealityService) - fullName.vb: XRTK.Services.MixedRealityToolkit.TryCreateAndRegisterDataProvider(Of T)(XRTK.Interfaces.IMixedRealityServiceConfiguration(Of T), XRTK.Interfaces.IMixedRealityService) - nameWithType: MixedRealityToolkit.TryCreateAndRegisterDataProvider(IMixedRealityServiceConfiguration, IMixedRealityService) - nameWithType.vb: MixedRealityToolkit.TryCreateAndRegisterDataProvider(Of T)(IMixedRealityServiceConfiguration(Of T), IMixedRealityService) -- uid: XRTK.Services.MixedRealityToolkit.TryCreateAndRegisterService* - name: TryCreateAndRegisterService - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_TryCreateAndRegisterService_ - commentId: Overload:XRTK.Services.MixedRealityToolkit.TryCreateAndRegisterService - isSpec: "True" - fullName: XRTK.Services.MixedRealityToolkit.TryCreateAndRegisterService - nameWithType: MixedRealityToolkit.TryCreateAndRegisterService -- uid: XRTK.Services.MixedRealityToolkit.TryCreateAndRegisterService``1(System.Type,``0@,System.Object[]) - name: TryCreateAndRegisterService(Type, out T, Object[]) - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_TryCreateAndRegisterService__1_System_Type___0__System_Object___ - commentId: M:XRTK.Services.MixedRealityToolkit.TryCreateAndRegisterService``1(System.Type,``0@,System.Object[]) - name.vb: TryCreateAndRegisterService(Of T)(Type, ByRef T, Object()) - fullName: XRTK.Services.MixedRealityToolkit.TryCreateAndRegisterService(System.Type, out T, System.Object[]) - fullName.vb: XRTK.Services.MixedRealityToolkit.TryCreateAndRegisterService(Of T)(System.Type, ByRef T, System.Object()) - nameWithType: MixedRealityToolkit.TryCreateAndRegisterService(Type, out T, Object[]) - nameWithType.vb: MixedRealityToolkit.TryCreateAndRegisterService(Of T)(Type, ByRef T, Object()) -- uid: XRTK.Services.MixedRealityToolkit.TryCreateAndRegisterService``1(System.Type,System.Collections.Generic.IReadOnlyList{XRTK.Interfaces.IMixedRealityPlatform},``0@,System.Object[]) - name: TryCreateAndRegisterService(Type, IReadOnlyList, out T, Object[]) - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_TryCreateAndRegisterService__1_System_Type_System_Collections_Generic_IReadOnlyList_XRTK_Interfaces_IMixedRealityPlatform____0__System_Object___ - commentId: M:XRTK.Services.MixedRealityToolkit.TryCreateAndRegisterService``1(System.Type,System.Collections.Generic.IReadOnlyList{XRTK.Interfaces.IMixedRealityPlatform},``0@,System.Object[]) - name.vb: TryCreateAndRegisterService(Of T)(Type, IReadOnlyList(Of IMixedRealityPlatform), ByRef T, Object()) - fullName: XRTK.Services.MixedRealityToolkit.TryCreateAndRegisterService(System.Type, System.Collections.Generic.IReadOnlyList, out T, System.Object[]) - fullName.vb: XRTK.Services.MixedRealityToolkit.TryCreateAndRegisterService(Of T)(System.Type, System.Collections.Generic.IReadOnlyList(Of XRTK.Interfaces.IMixedRealityPlatform), ByRef T, System.Object()) - nameWithType: MixedRealityToolkit.TryCreateAndRegisterService(Type, IReadOnlyList, out T, Object[]) - nameWithType.vb: MixedRealityToolkit.TryCreateAndRegisterService(Of T)(Type, IReadOnlyList(Of IMixedRealityPlatform), ByRef T, Object()) -- uid: XRTK.Services.MixedRealityToolkit.TryCreateAndRegisterService``1(XRTK.Interfaces.IMixedRealityServiceConfiguration{``0},``0@) - name: TryCreateAndRegisterService(IMixedRealityServiceConfiguration, out T) - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_TryCreateAndRegisterService__1_XRTK_Interfaces_IMixedRealityServiceConfiguration___0____0__ - commentId: M:XRTK.Services.MixedRealityToolkit.TryCreateAndRegisterService``1(XRTK.Interfaces.IMixedRealityServiceConfiguration{``0},``0@) - name.vb: TryCreateAndRegisterService(Of T)(IMixedRealityServiceConfiguration(Of T), ByRef T) - fullName: XRTK.Services.MixedRealityToolkit.TryCreateAndRegisterService(XRTK.Interfaces.IMixedRealityServiceConfiguration, out T) - fullName.vb: XRTK.Services.MixedRealityToolkit.TryCreateAndRegisterService(Of T)(XRTK.Interfaces.IMixedRealityServiceConfiguration(Of T), ByRef T) - nameWithType: MixedRealityToolkit.TryCreateAndRegisterService(IMixedRealityServiceConfiguration, out T) - nameWithType.vb: MixedRealityToolkit.TryCreateAndRegisterService(Of T)(IMixedRealityServiceConfiguration(Of T), ByRef T) -- uid: XRTK.Services.MixedRealityToolkit.TryGetService* - name: TryGetService - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_TryGetService_ - commentId: Overload:XRTK.Services.MixedRealityToolkit.TryGetService - isSpec: "True" - fullName: XRTK.Services.MixedRealityToolkit.TryGetService - nameWithType: MixedRealityToolkit.TryGetService -- uid: XRTK.Services.MixedRealityToolkit.TryGetService``1(``0@,System.Boolean) - name: TryGetService(out T, Boolean) - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_TryGetService__1___0__System_Boolean_ - commentId: M:XRTK.Services.MixedRealityToolkit.TryGetService``1(``0@,System.Boolean) - name.vb: TryGetService(Of T)(ByRef T, Boolean) - fullName: XRTK.Services.MixedRealityToolkit.TryGetService(out T, System.Boolean) - fullName.vb: XRTK.Services.MixedRealityToolkit.TryGetService(Of T)(ByRef T, System.Boolean) - nameWithType: MixedRealityToolkit.TryGetService(out T, Boolean) - nameWithType.vb: MixedRealityToolkit.TryGetService(Of T)(ByRef T, Boolean) -- uid: XRTK.Services.MixedRealityToolkit.TryGetService``1(System.String,``0@,System.Boolean) - name: TryGetService(String, out T, Boolean) - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_TryGetService__1_System_String___0__System_Boolean_ - commentId: M:XRTK.Services.MixedRealityToolkit.TryGetService``1(System.String,``0@,System.Boolean) - name.vb: TryGetService(Of T)(String, ByRef T, Boolean) - fullName: XRTK.Services.MixedRealityToolkit.TryGetService(System.String, out T, System.Boolean) - fullName.vb: XRTK.Services.MixedRealityToolkit.TryGetService(Of T)(System.String, ByRef T, System.Boolean) - nameWithType: MixedRealityToolkit.TryGetService(String, out T, Boolean) - nameWithType.vb: MixedRealityToolkit.TryGetService(Of T)(String, ByRef T, Boolean) -- uid: XRTK.Services.MixedRealityToolkit.TryGetSystem* - name: TryGetSystem - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_TryGetSystem_ - commentId: Overload:XRTK.Services.MixedRealityToolkit.TryGetSystem - isSpec: "True" - fullName: XRTK.Services.MixedRealityToolkit.TryGetSystem - nameWithType: MixedRealityToolkit.TryGetSystem -- uid: XRTK.Services.MixedRealityToolkit.TryGetSystem``1(``0@) - name: TryGetSystem(out T) - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_TryGetSystem__1___0__ - commentId: M:XRTK.Services.MixedRealityToolkit.TryGetSystem``1(``0@) - name.vb: TryGetSystem(Of T)(ByRef T) - fullName: XRTK.Services.MixedRealityToolkit.TryGetSystem(out T) - fullName.vb: XRTK.Services.MixedRealityToolkit.TryGetSystem(Of T)(ByRef T) - nameWithType: MixedRealityToolkit.TryGetSystem(out T) - nameWithType.vb: MixedRealityToolkit.TryGetSystem(Of T)(ByRef T) -- uid: XRTK.Services.MixedRealityToolkit.TryGetSystemProfile* - name: TryGetSystemProfile - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_TryGetSystemProfile_ - commentId: Overload:XRTK.Services.MixedRealityToolkit.TryGetSystemProfile - isSpec: "True" - fullName: XRTK.Services.MixedRealityToolkit.TryGetSystemProfile - nameWithType: MixedRealityToolkit.TryGetSystemProfile -- uid: XRTK.Services.MixedRealityToolkit.TryGetSystemProfile``2(``1@,XRTK.Definitions.MixedRealityToolkitRootProfile) - name: TryGetSystemProfile(out TProfile, MixedRealityToolkitRootProfile) - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_TryGetSystemProfile__2___1__XRTK_Definitions_MixedRealityToolkitRootProfile_ - commentId: M:XRTK.Services.MixedRealityToolkit.TryGetSystemProfile``2(``1@,XRTK.Definitions.MixedRealityToolkitRootProfile) - name.vb: TryGetSystemProfile(Of TSystem, TProfile)(ByRef TProfile, MixedRealityToolkitRootProfile) - fullName: XRTK.Services.MixedRealityToolkit.TryGetSystemProfile(out TProfile, XRTK.Definitions.MixedRealityToolkitRootProfile) - fullName.vb: XRTK.Services.MixedRealityToolkit.TryGetSystemProfile(Of TSystem, TProfile)(ByRef TProfile, XRTK.Definitions.MixedRealityToolkitRootProfile) - nameWithType: MixedRealityToolkit.TryGetSystemProfile(out TProfile, MixedRealityToolkitRootProfile) - nameWithType.vb: MixedRealityToolkit.TryGetSystemProfile(Of TSystem, TProfile)(ByRef TProfile, MixedRealityToolkitRootProfile) -- uid: XRTK.Services.MixedRealityToolkit.TryRegisterDataProviderConfigurations* - name: TryRegisterDataProviderConfigurations - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_TryRegisterDataProviderConfigurations_ - commentId: Overload:XRTK.Services.MixedRealityToolkit.TryRegisterDataProviderConfigurations - isSpec: "True" - fullName: XRTK.Services.MixedRealityToolkit.TryRegisterDataProviderConfigurations - nameWithType: MixedRealityToolkit.TryRegisterDataProviderConfigurations -- uid: XRTK.Services.MixedRealityToolkit.TryRegisterDataProviderConfigurations``1(XRTK.Interfaces.IMixedRealityServiceConfiguration{``0}[],XRTK.Interfaces.IMixedRealityService) - name: TryRegisterDataProviderConfigurations(IMixedRealityServiceConfiguration[], IMixedRealityService) - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_TryRegisterDataProviderConfigurations__1_XRTK_Interfaces_IMixedRealityServiceConfiguration___0____XRTK_Interfaces_IMixedRealityService_ - commentId: M:XRTK.Services.MixedRealityToolkit.TryRegisterDataProviderConfigurations``1(XRTK.Interfaces.IMixedRealityServiceConfiguration{``0}[],XRTK.Interfaces.IMixedRealityService) - name.vb: TryRegisterDataProviderConfigurations(Of T)(IMixedRealityServiceConfiguration(Of T)(), IMixedRealityService) - fullName: XRTK.Services.MixedRealityToolkit.TryRegisterDataProviderConfigurations(XRTK.Interfaces.IMixedRealityServiceConfiguration[], XRTK.Interfaces.IMixedRealityService) - fullName.vb: XRTK.Services.MixedRealityToolkit.TryRegisterDataProviderConfigurations(Of T)(XRTK.Interfaces.IMixedRealityServiceConfiguration(Of T)(), XRTK.Interfaces.IMixedRealityService) - nameWithType: MixedRealityToolkit.TryRegisterDataProviderConfigurations(IMixedRealityServiceConfiguration[], IMixedRealityService) - nameWithType.vb: MixedRealityToolkit.TryRegisterDataProviderConfigurations(Of T)(IMixedRealityServiceConfiguration(Of T)(), IMixedRealityService) -- uid: XRTK.Services.MixedRealityToolkit.TryRegisterService* - name: TryRegisterService - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_TryRegisterService_ - commentId: Overload:XRTK.Services.MixedRealityToolkit.TryRegisterService - isSpec: "True" - fullName: XRTK.Services.MixedRealityToolkit.TryRegisterService - nameWithType: MixedRealityToolkit.TryRegisterService -- uid: XRTK.Services.MixedRealityToolkit.TryRegisterService``1(XRTK.Interfaces.IMixedRealityService) - name: TryRegisterService(IMixedRealityService) - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_TryRegisterService__1_XRTK_Interfaces_IMixedRealityService_ - commentId: M:XRTK.Services.MixedRealityToolkit.TryRegisterService``1(XRTK.Interfaces.IMixedRealityService) - name.vb: TryRegisterService(Of T)(IMixedRealityService) - fullName: XRTK.Services.MixedRealityToolkit.TryRegisterService(XRTK.Interfaces.IMixedRealityService) - fullName.vb: XRTK.Services.MixedRealityToolkit.TryRegisterService(Of T)(XRTK.Interfaces.IMixedRealityService) - nameWithType: MixedRealityToolkit.TryRegisterService(IMixedRealityService) - nameWithType.vb: MixedRealityToolkit.TryRegisterService(Of T)(IMixedRealityService) -- uid: XRTK.Services.MixedRealityToolkit.TryRegisterServiceConfigurations* - name: TryRegisterServiceConfigurations - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_TryRegisterServiceConfigurations_ - commentId: Overload:XRTK.Services.MixedRealityToolkit.TryRegisterServiceConfigurations - isSpec: "True" - fullName: XRTK.Services.MixedRealityToolkit.TryRegisterServiceConfigurations - nameWithType: MixedRealityToolkit.TryRegisterServiceConfigurations -- uid: XRTK.Services.MixedRealityToolkit.TryRegisterServiceConfigurations``1(XRTK.Interfaces.IMixedRealityServiceConfiguration{``0}[]) - name: TryRegisterServiceConfigurations(IMixedRealityServiceConfiguration[]) - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_TryRegisterServiceConfigurations__1_XRTK_Interfaces_IMixedRealityServiceConfiguration___0____ - commentId: M:XRTK.Services.MixedRealityToolkit.TryRegisterServiceConfigurations``1(XRTK.Interfaces.IMixedRealityServiceConfiguration{``0}[]) - name.vb: TryRegisterServiceConfigurations(Of T)(IMixedRealityServiceConfiguration(Of T)()) - fullName: XRTK.Services.MixedRealityToolkit.TryRegisterServiceConfigurations(XRTK.Interfaces.IMixedRealityServiceConfiguration[]) - fullName.vb: XRTK.Services.MixedRealityToolkit.TryRegisterServiceConfigurations(Of T)(XRTK.Interfaces.IMixedRealityServiceConfiguration(Of T)()) - nameWithType: MixedRealityToolkit.TryRegisterServiceConfigurations(IMixedRealityServiceConfiguration[]) - nameWithType.vb: MixedRealityToolkit.TryRegisterServiceConfigurations(Of T)(IMixedRealityServiceConfiguration(Of T)()) -- uid: XRTK.Services.MixedRealityToolkit.TryUnregisterService* - name: TryUnregisterService - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_TryUnregisterService_ - commentId: Overload:XRTK.Services.MixedRealityToolkit.TryUnregisterService - isSpec: "True" - fullName: XRTK.Services.MixedRealityToolkit.TryUnregisterService - nameWithType: MixedRealityToolkit.TryUnregisterService -- uid: XRTK.Services.MixedRealityToolkit.TryUnregisterService``1(``0) - name: TryUnregisterService(T) - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_TryUnregisterService__1___0_ - commentId: M:XRTK.Services.MixedRealityToolkit.TryUnregisterService``1(``0) - name.vb: TryUnregisterService(Of T)(T) - fullName: XRTK.Services.MixedRealityToolkit.TryUnregisterService(T) - fullName.vb: XRTK.Services.MixedRealityToolkit.TryUnregisterService(Of T)(T) - nameWithType: MixedRealityToolkit.TryUnregisterService(T) - nameWithType.vb: MixedRealityToolkit.TryUnregisterService(Of T)(T) -- uid: XRTK.Services.MixedRealityToolkit.TryUnregisterService``1(System.String) - name: TryUnregisterService(String) - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_TryUnregisterService__1_System_String_ - commentId: M:XRTK.Services.MixedRealityToolkit.TryUnregisterService``1(System.String) - name.vb: TryUnregisterService(Of T)(String) - fullName: XRTK.Services.MixedRealityToolkit.TryUnregisterService(System.String) - fullName.vb: XRTK.Services.MixedRealityToolkit.TryUnregisterService(Of T)(System.String) - nameWithType: MixedRealityToolkit.TryUnregisterService(String) - nameWithType.vb: MixedRealityToolkit.TryUnregisterService(Of T)(String) -- uid: XRTK.Services.MixedRealityToolkit.TryUnregisterServicesOfType* - name: TryUnregisterServicesOfType - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_TryUnregisterServicesOfType_ - commentId: Overload:XRTK.Services.MixedRealityToolkit.TryUnregisterServicesOfType - isSpec: "True" - fullName: XRTK.Services.MixedRealityToolkit.TryUnregisterServicesOfType - nameWithType: MixedRealityToolkit.TryUnregisterServicesOfType -- uid: XRTK.Services.MixedRealityToolkit.TryUnregisterServicesOfType``1 - name: TryUnregisterServicesOfType() - href: api/XRTK.Services.MixedRealityToolkit.html#XRTK_Services_MixedRealityToolkit_TryUnregisterServicesOfType__1 - commentId: M:XRTK.Services.MixedRealityToolkit.TryUnregisterServicesOfType``1 - name.vb: TryUnregisterServicesOfType(Of T)() - fullName: XRTK.Services.MixedRealityToolkit.TryUnregisterServicesOfType() - fullName.vb: XRTK.Services.MixedRealityToolkit.TryUnregisterServicesOfType(Of T)() - nameWithType: MixedRealityToolkit.TryUnregisterServicesOfType() - nameWithType.vb: MixedRealityToolkit.TryUnregisterServicesOfType(Of T)() -- uid: XRTK.Services.NetworkingSystem - name: XRTK.Services.NetworkingSystem - href: api/XRTK.Services.NetworkingSystem.html - commentId: N:XRTK.Services.NetworkingSystem - fullName: XRTK.Services.NetworkingSystem - nameWithType: XRTK.Services.NetworkingSystem -- uid: XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem - name: MixedRealityNetworkingSystem - href: api/XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.html - commentId: T:XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem - fullName: XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem - nameWithType: MixedRealityNetworkingSystem -- uid: XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.#ctor(XRTK.Definitions.NetworkingSystem.MixedRealityNetworkSystemProfile) - name: MixedRealityNetworkingSystem(MixedRealityNetworkSystemProfile) - href: api/XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.html#XRTK_Services_NetworkingSystem_MixedRealityNetworkingSystem__ctor_XRTK_Definitions_NetworkingSystem_MixedRealityNetworkSystemProfile_ - commentId: M:XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.#ctor(XRTK.Definitions.NetworkingSystem.MixedRealityNetworkSystemProfile) - fullName: XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.MixedRealityNetworkingSystem(XRTK.Definitions.NetworkingSystem.MixedRealityNetworkSystemProfile) - nameWithType: MixedRealityNetworkingSystem.MixedRealityNetworkingSystem(MixedRealityNetworkSystemProfile) -- uid: XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.#ctor* - name: MixedRealityNetworkingSystem - href: api/XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.html#XRTK_Services_NetworkingSystem_MixedRealityNetworkingSystem__ctor_ - commentId: Overload:XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.#ctor - isSpec: "True" - fullName: XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.MixedRealityNetworkingSystem - nameWithType: MixedRealityNetworkingSystem.MixedRealityNetworkingSystem -- uid: XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.HasInternetConnection - name: HasInternetConnection - href: api/XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.html#XRTK_Services_NetworkingSystem_MixedRealityNetworkingSystem_HasInternetConnection - commentId: P:XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.HasInternetConnection - fullName: XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.HasInternetConnection - nameWithType: MixedRealityNetworkingSystem.HasInternetConnection -- uid: XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.HasInternetConnection* - name: HasInternetConnection - href: api/XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.html#XRTK_Services_NetworkingSystem_MixedRealityNetworkingSystem_HasInternetConnection_ - commentId: Overload:XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.HasInternetConnection - isSpec: "True" - fullName: XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.HasInternetConnection - nameWithType: MixedRealityNetworkingSystem.HasInternetConnection -- uid: XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.NetworkDataProviders - name: NetworkDataProviders - href: api/XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.html#XRTK_Services_NetworkingSystem_MixedRealityNetworkingSystem_NetworkDataProviders - commentId: P:XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.NetworkDataProviders - fullName: XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.NetworkDataProviders - nameWithType: MixedRealityNetworkingSystem.NetworkDataProviders -- uid: XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.NetworkDataProviders* - name: NetworkDataProviders - href: api/XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.html#XRTK_Services_NetworkingSystem_MixedRealityNetworkingSystem_NetworkDataProviders_ - commentId: Overload:XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.NetworkDataProviders - isSpec: "True" - fullName: XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.NetworkDataProviders - nameWithType: MixedRealityNetworkingSystem.NetworkDataProviders -- uid: XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.RaiseDataReceived* - name: RaiseDataReceived - href: api/XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.html#XRTK_Services_NetworkingSystem_MixedRealityNetworkingSystem_RaiseDataReceived_ - commentId: Overload:XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.RaiseDataReceived - isSpec: "True" - fullName: XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.RaiseDataReceived - nameWithType: MixedRealityNetworkingSystem.RaiseDataReceived -- uid: XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.RaiseDataReceived``1(``0) - name: RaiseDataReceived(T) - href: api/XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.html#XRTK_Services_NetworkingSystem_MixedRealityNetworkingSystem_RaiseDataReceived__1___0_ - commentId: M:XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.RaiseDataReceived``1(``0) - name.vb: RaiseDataReceived(Of T)(T) - fullName: XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.RaiseDataReceived(T) - fullName.vb: XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.RaiseDataReceived(Of T)(T) - nameWithType: MixedRealityNetworkingSystem.RaiseDataReceived(T) - nameWithType.vb: MixedRealityNetworkingSystem.RaiseDataReceived(Of T)(T) -- uid: XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.RaiseNetworkDataProviderDetected(XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider) - name: RaiseNetworkDataProviderDetected(IMixedRealityNetworkDataProvider) - href: api/XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.html#XRTK_Services_NetworkingSystem_MixedRealityNetworkingSystem_RaiseNetworkDataProviderDetected_XRTK_Interfaces_NetworkingSystem_IMixedRealityNetworkDataProvider_ - commentId: M:XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.RaiseNetworkDataProviderDetected(XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider) - fullName: XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.RaiseNetworkDataProviderDetected(XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider) - nameWithType: MixedRealityNetworkingSystem.RaiseNetworkDataProviderDetected(IMixedRealityNetworkDataProvider) -- uid: XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.RaiseNetworkDataProviderDetected* - name: RaiseNetworkDataProviderDetected - href: api/XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.html#XRTK_Services_NetworkingSystem_MixedRealityNetworkingSystem_RaiseNetworkDataProviderDetected_ - commentId: Overload:XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.RaiseNetworkDataProviderDetected - isSpec: "True" - fullName: XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.RaiseNetworkDataProviderDetected - nameWithType: MixedRealityNetworkingSystem.RaiseNetworkDataProviderDetected -- uid: XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.RaiseNetworkDataProviderLost(XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider) - name: RaiseNetworkDataProviderLost(IMixedRealityNetworkDataProvider) - href: api/XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.html#XRTK_Services_NetworkingSystem_MixedRealityNetworkingSystem_RaiseNetworkDataProviderLost_XRTK_Interfaces_NetworkingSystem_IMixedRealityNetworkDataProvider_ - commentId: M:XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.RaiseNetworkDataProviderLost(XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider) - fullName: XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.RaiseNetworkDataProviderLost(XRTK.Interfaces.NetworkingSystem.IMixedRealityNetworkDataProvider) - nameWithType: MixedRealityNetworkingSystem.RaiseNetworkDataProviderLost(IMixedRealityNetworkDataProvider) -- uid: XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.RaiseNetworkDataProviderLost* - name: RaiseNetworkDataProviderLost - href: api/XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.html#XRTK_Services_NetworkingSystem_MixedRealityNetworkingSystem_RaiseNetworkDataProviderLost_ - commentId: Overload:XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.RaiseNetworkDataProviderLost - isSpec: "True" - fullName: XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.RaiseNetworkDataProviderLost - nameWithType: MixedRealityNetworkingSystem.RaiseNetworkDataProviderLost -- uid: XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.RequestNetworkDataProviderSourceId - name: RequestNetworkDataProviderSourceId() - href: api/XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.html#XRTK_Services_NetworkingSystem_MixedRealityNetworkingSystem_RequestNetworkDataProviderSourceId - commentId: M:XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.RequestNetworkDataProviderSourceId - fullName: XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.RequestNetworkDataProviderSourceId() - nameWithType: MixedRealityNetworkingSystem.RequestNetworkDataProviderSourceId() -- uid: XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.RequestNetworkDataProviderSourceId* - name: RequestNetworkDataProviderSourceId - href: api/XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.html#XRTK_Services_NetworkingSystem_MixedRealityNetworkingSystem_RequestNetworkDataProviderSourceId_ - commentId: Overload:XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.RequestNetworkDataProviderSourceId - isSpec: "True" - fullName: XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.RequestNetworkDataProviderSourceId - nameWithType: MixedRealityNetworkingSystem.RequestNetworkDataProviderSourceId -- uid: XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.SendData* - name: SendData - href: api/XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.html#XRTK_Services_NetworkingSystem_MixedRealityNetworkingSystem_SendData_ - commentId: Overload:XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.SendData - isSpec: "True" - fullName: XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.SendData - nameWithType: MixedRealityNetworkingSystem.SendData -- uid: XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.SendData``1(``0) - name: SendData(T) - href: api/XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.html#XRTK_Services_NetworkingSystem_MixedRealityNetworkingSystem_SendData__1___0_ - commentId: M:XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.SendData``1(``0) - name.vb: SendData(Of T)(T) - fullName: XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.SendData(T) - fullName.vb: XRTK.Services.NetworkingSystem.MixedRealityNetworkingSystem.SendData(Of T)(T) - nameWithType: MixedRealityNetworkingSystem.SendData(T) - nameWithType.vb: MixedRealityNetworkingSystem.SendData(Of T)(T) -- uid: XRTK.Services.SpatialAwarenessSystem - name: XRTK.Services.SpatialAwarenessSystem - href: api/XRTK.Services.SpatialAwarenessSystem.html - commentId: N:XRTK.Services.SpatialAwarenessSystem - fullName: XRTK.Services.SpatialAwarenessSystem - nameWithType: XRTK.Services.SpatialAwarenessSystem -- uid: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem - name: MixedRealitySpatialAwarenessSystem - href: api/XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.html - commentId: T:XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem - fullName: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem - nameWithType: MixedRealitySpatialAwarenessSystem -- uid: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.#ctor(XRTK.Definitions.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystemProfile) - name: MixedRealitySpatialAwarenessSystem(MixedRealitySpatialAwarenessSystemProfile) - href: api/XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.html#XRTK_Services_SpatialAwarenessSystem_MixedRealitySpatialAwarenessSystem__ctor_XRTK_Definitions_SpatialAwarenessSystem_MixedRealitySpatialAwarenessSystemProfile_ - commentId: M:XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.#ctor(XRTK.Definitions.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystemProfile) - fullName: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem(XRTK.Definitions.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystemProfile) - nameWithType: MixedRealitySpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem(MixedRealitySpatialAwarenessSystemProfile) -- uid: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.#ctor* - name: MixedRealitySpatialAwarenessSystem - href: api/XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.html#XRTK_Services_SpatialAwarenessSystem_MixedRealitySpatialAwarenessSystem__ctor_ - commentId: Overload:XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.#ctor - isSpec: "True" - fullName: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem - nameWithType: MixedRealitySpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem -- uid: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.Destroy - name: Destroy() - href: api/XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.html#XRTK_Services_SpatialAwarenessSystem_MixedRealitySpatialAwarenessSystem_Destroy - commentId: M:XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.Destroy - fullName: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.Destroy() - nameWithType: MixedRealitySpatialAwarenessSystem.Destroy() -- uid: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.Destroy* - name: Destroy - href: api/XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.html#XRTK_Services_SpatialAwarenessSystem_MixedRealitySpatialAwarenessSystem_Destroy_ - commentId: Overload:XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.Destroy - isSpec: "True" - fullName: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.Destroy - nameWithType: MixedRealitySpatialAwarenessSystem.Destroy -- uid: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.DetectedSpatialObservers - name: DetectedSpatialObservers - href: api/XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.html#XRTK_Services_SpatialAwarenessSystem_MixedRealitySpatialAwarenessSystem_DetectedSpatialObservers - commentId: P:XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.DetectedSpatialObservers - fullName: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.DetectedSpatialObservers - nameWithType: MixedRealitySpatialAwarenessSystem.DetectedSpatialObservers -- uid: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.DetectedSpatialObservers* - name: DetectedSpatialObservers - href: api/XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.html#XRTK_Services_SpatialAwarenessSystem_MixedRealitySpatialAwarenessSystem_DetectedSpatialObservers_ - commentId: Overload:XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.DetectedSpatialObservers - isSpec: "True" - fullName: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.DetectedSpatialObservers - nameWithType: MixedRealitySpatialAwarenessSystem.DetectedSpatialObservers -- uid: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.GenerateNewObserverId - name: GenerateNewObserverId() - href: api/XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.html#XRTK_Services_SpatialAwarenessSystem_MixedRealitySpatialAwarenessSystem_GenerateNewObserverId - commentId: M:XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.GenerateNewObserverId - fullName: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.GenerateNewObserverId() - nameWithType: MixedRealitySpatialAwarenessSystem.GenerateNewObserverId() -- uid: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.GenerateNewObserverId* - name: GenerateNewObserverId - href: api/XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.html#XRTK_Services_SpatialAwarenessSystem_MixedRealitySpatialAwarenessSystem_GenerateNewObserverId_ - commentId: Overload:XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.GenerateNewObserverId - isSpec: "True" - fullName: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.GenerateNewObserverId - nameWithType: MixedRealitySpatialAwarenessSystem.GenerateNewObserverId -- uid: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.Initialize - name: Initialize() - href: api/XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.html#XRTK_Services_SpatialAwarenessSystem_MixedRealitySpatialAwarenessSystem_Initialize - commentId: M:XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.Initialize - fullName: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.Initialize() - nameWithType: MixedRealitySpatialAwarenessSystem.Initialize() -- uid: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.Initialize* - name: Initialize - href: api/XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.html#XRTK_Services_SpatialAwarenessSystem_MixedRealitySpatialAwarenessSystem_Initialize_ - commentId: Overload:XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.Initialize - isSpec: "True" - fullName: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.Initialize - nameWithType: MixedRealitySpatialAwarenessSystem.Initialize -- uid: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.IsObserverRunning(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider) - name: IsObserverRunning(IMixedRealitySpatialAwarenessDataProvider) - href: api/XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.html#XRTK_Services_SpatialAwarenessSystem_MixedRealitySpatialAwarenessSystem_IsObserverRunning_XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialAwarenessDataProvider_ - commentId: M:XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.IsObserverRunning(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider) - fullName: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.IsObserverRunning(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider) - nameWithType: MixedRealitySpatialAwarenessSystem.IsObserverRunning(IMixedRealitySpatialAwarenessDataProvider) -- uid: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.IsObserverRunning* - name: IsObserverRunning - href: api/XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.html#XRTK_Services_SpatialAwarenessSystem_MixedRealitySpatialAwarenessSystem_IsObserverRunning_ - commentId: Overload:XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.IsObserverRunning - isSpec: "True" - fullName: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.IsObserverRunning - nameWithType: MixedRealitySpatialAwarenessSystem.IsObserverRunning -- uid: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.RaiseMeshAdded(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver,XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject) - name: RaiseMeshAdded(IMixedRealitySpatialMeshObserver, SpatialMeshObject) - href: api/XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.html#XRTK_Services_SpatialAwarenessSystem_MixedRealitySpatialAwarenessSystem_RaiseMeshAdded_XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialMeshObserver_XRTK_Definitions_SpatialAwarenessSystem_SpatialMeshObject_ - commentId: M:XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.RaiseMeshAdded(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver,XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject) - fullName: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.RaiseMeshAdded(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver, XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject) - nameWithType: MixedRealitySpatialAwarenessSystem.RaiseMeshAdded(IMixedRealitySpatialMeshObserver, SpatialMeshObject) -- uid: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.RaiseMeshAdded* - name: RaiseMeshAdded - href: api/XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.html#XRTK_Services_SpatialAwarenessSystem_MixedRealitySpatialAwarenessSystem_RaiseMeshAdded_ - commentId: Overload:XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.RaiseMeshAdded - isSpec: "True" - fullName: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.RaiseMeshAdded - nameWithType: MixedRealitySpatialAwarenessSystem.RaiseMeshAdded -- uid: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.RaiseMeshRemoved(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver,XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject) - name: RaiseMeshRemoved(IMixedRealitySpatialMeshObserver, SpatialMeshObject) - href: api/XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.html#XRTK_Services_SpatialAwarenessSystem_MixedRealitySpatialAwarenessSystem_RaiseMeshRemoved_XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialMeshObserver_XRTK_Definitions_SpatialAwarenessSystem_SpatialMeshObject_ - commentId: M:XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.RaiseMeshRemoved(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver,XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject) - fullName: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.RaiseMeshRemoved(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver, XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject) - nameWithType: MixedRealitySpatialAwarenessSystem.RaiseMeshRemoved(IMixedRealitySpatialMeshObserver, SpatialMeshObject) -- uid: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.RaiseMeshRemoved* - name: RaiseMeshRemoved - href: api/XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.html#XRTK_Services_SpatialAwarenessSystem_MixedRealitySpatialAwarenessSystem_RaiseMeshRemoved_ - commentId: Overload:XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.RaiseMeshRemoved - isSpec: "True" - fullName: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.RaiseMeshRemoved - nameWithType: MixedRealitySpatialAwarenessSystem.RaiseMeshRemoved -- uid: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.RaiseMeshUpdated(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver,XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject) - name: RaiseMeshUpdated(IMixedRealitySpatialMeshObserver, SpatialMeshObject) - href: api/XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.html#XRTK_Services_SpatialAwarenessSystem_MixedRealitySpatialAwarenessSystem_RaiseMeshUpdated_XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialMeshObserver_XRTK_Definitions_SpatialAwarenessSystem_SpatialMeshObject_ - commentId: M:XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.RaiseMeshUpdated(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver,XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject) - fullName: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.RaiseMeshUpdated(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialMeshObserver, XRTK.Definitions.SpatialAwarenessSystem.SpatialMeshObject) - nameWithType: MixedRealitySpatialAwarenessSystem.RaiseMeshUpdated(IMixedRealitySpatialMeshObserver, SpatialMeshObject) -- uid: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.RaiseMeshUpdated* - name: RaiseMeshUpdated - href: api/XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.html#XRTK_Services_SpatialAwarenessSystem_MixedRealitySpatialAwarenessSystem_RaiseMeshUpdated_ - commentId: Overload:XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.RaiseMeshUpdated - isSpec: "True" - fullName: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.RaiseMeshUpdated - nameWithType: MixedRealitySpatialAwarenessSystem.RaiseMeshUpdated -- uid: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.RaiseSpatialAwarenessObserverDetected(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider) - name: RaiseSpatialAwarenessObserverDetected(IMixedRealitySpatialAwarenessDataProvider) - href: api/XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.html#XRTK_Services_SpatialAwarenessSystem_MixedRealitySpatialAwarenessSystem_RaiseSpatialAwarenessObserverDetected_XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialAwarenessDataProvider_ - commentId: M:XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.RaiseSpatialAwarenessObserverDetected(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider) - fullName: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.RaiseSpatialAwarenessObserverDetected(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider) - nameWithType: MixedRealitySpatialAwarenessSystem.RaiseSpatialAwarenessObserverDetected(IMixedRealitySpatialAwarenessDataProvider) -- uid: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.RaiseSpatialAwarenessObserverDetected* - name: RaiseSpatialAwarenessObserverDetected - href: api/XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.html#XRTK_Services_SpatialAwarenessSystem_MixedRealitySpatialAwarenessSystem_RaiseSpatialAwarenessObserverDetected_ - commentId: Overload:XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.RaiseSpatialAwarenessObserverDetected - isSpec: "True" - fullName: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.RaiseSpatialAwarenessObserverDetected - nameWithType: MixedRealitySpatialAwarenessSystem.RaiseSpatialAwarenessObserverDetected -- uid: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.RaiseSpatialAwarenessObserverLost(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider) - name: RaiseSpatialAwarenessObserverLost(IMixedRealitySpatialAwarenessDataProvider) - href: api/XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.html#XRTK_Services_SpatialAwarenessSystem_MixedRealitySpatialAwarenessSystem_RaiseSpatialAwarenessObserverLost_XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialAwarenessDataProvider_ - commentId: M:XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.RaiseSpatialAwarenessObserverLost(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider) - fullName: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.RaiseSpatialAwarenessObserverLost(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider) - nameWithType: MixedRealitySpatialAwarenessSystem.RaiseSpatialAwarenessObserverLost(IMixedRealitySpatialAwarenessDataProvider) -- uid: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.RaiseSpatialAwarenessObserverLost* - name: RaiseSpatialAwarenessObserverLost - href: api/XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.html#XRTK_Services_SpatialAwarenessSystem_MixedRealitySpatialAwarenessSystem_RaiseSpatialAwarenessObserverLost_ - commentId: Overload:XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.RaiseSpatialAwarenessObserverLost - isSpec: "True" - fullName: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.RaiseSpatialAwarenessObserverLost - nameWithType: MixedRealitySpatialAwarenessSystem.RaiseSpatialAwarenessObserverLost -- uid: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.RaiseSurfaceAdded(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver,System.Guid,UnityEngine.GameObject) - name: RaiseSurfaceAdded(IMixedRealitySpatialSurfaceObserver, Guid, GameObject) - href: api/XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.html#XRTK_Services_SpatialAwarenessSystem_MixedRealitySpatialAwarenessSystem_RaiseSurfaceAdded_XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialSurfaceObserver_System_Guid_UnityEngine_GameObject_ - commentId: M:XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.RaiseSurfaceAdded(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver,System.Guid,UnityEngine.GameObject) - fullName: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.RaiseSurfaceAdded(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver, System.Guid, UnityEngine.GameObject) - nameWithType: MixedRealitySpatialAwarenessSystem.RaiseSurfaceAdded(IMixedRealitySpatialSurfaceObserver, Guid, GameObject) -- uid: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.RaiseSurfaceAdded* - name: RaiseSurfaceAdded - href: api/XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.html#XRTK_Services_SpatialAwarenessSystem_MixedRealitySpatialAwarenessSystem_RaiseSurfaceAdded_ - commentId: Overload:XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.RaiseSurfaceAdded - isSpec: "True" - fullName: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.RaiseSurfaceAdded - nameWithType: MixedRealitySpatialAwarenessSystem.RaiseSurfaceAdded -- uid: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.RaiseSurfaceRemoved(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver,System.Guid) - name: RaiseSurfaceRemoved(IMixedRealitySpatialSurfaceObserver, Guid) - href: api/XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.html#XRTK_Services_SpatialAwarenessSystem_MixedRealitySpatialAwarenessSystem_RaiseSurfaceRemoved_XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialSurfaceObserver_System_Guid_ - commentId: M:XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.RaiseSurfaceRemoved(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver,System.Guid) - fullName: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.RaiseSurfaceRemoved(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver, System.Guid) - nameWithType: MixedRealitySpatialAwarenessSystem.RaiseSurfaceRemoved(IMixedRealitySpatialSurfaceObserver, Guid) -- uid: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.RaiseSurfaceRemoved* - name: RaiseSurfaceRemoved - href: api/XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.html#XRTK_Services_SpatialAwarenessSystem_MixedRealitySpatialAwarenessSystem_RaiseSurfaceRemoved_ - commentId: Overload:XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.RaiseSurfaceRemoved - isSpec: "True" - fullName: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.RaiseSurfaceRemoved - nameWithType: MixedRealitySpatialAwarenessSystem.RaiseSurfaceRemoved -- uid: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.RaiseSurfaceUpdated(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver,System.Guid,UnityEngine.GameObject) - name: RaiseSurfaceUpdated(IMixedRealitySpatialSurfaceObserver, Guid, GameObject) - href: api/XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.html#XRTK_Services_SpatialAwarenessSystem_MixedRealitySpatialAwarenessSystem_RaiseSurfaceUpdated_XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialSurfaceObserver_System_Guid_UnityEngine_GameObject_ - commentId: M:XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.RaiseSurfaceUpdated(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver,System.Guid,UnityEngine.GameObject) - fullName: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.RaiseSurfaceUpdated(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialSurfaceObserver, System.Guid, UnityEngine.GameObject) - nameWithType: MixedRealitySpatialAwarenessSystem.RaiseSurfaceUpdated(IMixedRealitySpatialSurfaceObserver, Guid, GameObject) -- uid: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.RaiseSurfaceUpdated* - name: RaiseSurfaceUpdated - href: api/XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.html#XRTK_Services_SpatialAwarenessSystem_MixedRealitySpatialAwarenessSystem_RaiseSurfaceUpdated_ - commentId: Overload:XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.RaiseSurfaceUpdated - isSpec: "True" - fullName: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.RaiseSurfaceUpdated - nameWithType: MixedRealitySpatialAwarenessSystem.RaiseSurfaceUpdated -- uid: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.SpatialAwarenessRootParent - name: SpatialAwarenessRootParent - href: api/XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.html#XRTK_Services_SpatialAwarenessSystem_MixedRealitySpatialAwarenessSystem_SpatialAwarenessRootParent - commentId: P:XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.SpatialAwarenessRootParent - fullName: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.SpatialAwarenessRootParent - nameWithType: MixedRealitySpatialAwarenessSystem.SpatialAwarenessRootParent -- uid: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.SpatialAwarenessRootParent* - name: SpatialAwarenessRootParent - href: api/XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.html#XRTK_Services_SpatialAwarenessSystem_MixedRealitySpatialAwarenessSystem_SpatialAwarenessRootParent_ - commentId: Overload:XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.SpatialAwarenessRootParent - isSpec: "True" - fullName: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.SpatialAwarenessRootParent - nameWithType: MixedRealitySpatialAwarenessSystem.SpatialAwarenessRootParent -- uid: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.SpatialMeshesParent - name: SpatialMeshesParent - href: api/XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.html#XRTK_Services_SpatialAwarenessSystem_MixedRealitySpatialAwarenessSystem_SpatialMeshesParent - commentId: P:XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.SpatialMeshesParent - fullName: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.SpatialMeshesParent - nameWithType: MixedRealitySpatialAwarenessSystem.SpatialMeshesParent -- uid: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.SpatialMeshesParent* - name: SpatialMeshesParent - href: api/XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.html#XRTK_Services_SpatialAwarenessSystem_MixedRealitySpatialAwarenessSystem_SpatialMeshesParent_ - commentId: Overload:XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.SpatialMeshesParent - isSpec: "True" - fullName: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.SpatialMeshesParent - nameWithType: MixedRealitySpatialAwarenessSystem.SpatialMeshesParent -- uid: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.SpatialMeshVisibility - name: SpatialMeshVisibility - href: api/XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.html#XRTK_Services_SpatialAwarenessSystem_MixedRealitySpatialAwarenessSystem_SpatialMeshVisibility - commentId: P:XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.SpatialMeshVisibility - fullName: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.SpatialMeshVisibility - nameWithType: MixedRealitySpatialAwarenessSystem.SpatialMeshVisibility -- uid: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.SpatialMeshVisibility* - name: SpatialMeshVisibility - href: api/XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.html#XRTK_Services_SpatialAwarenessSystem_MixedRealitySpatialAwarenessSystem_SpatialMeshVisibility_ - commentId: Overload:XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.SpatialMeshVisibility - isSpec: "True" - fullName: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.SpatialMeshVisibility - nameWithType: MixedRealitySpatialAwarenessSystem.SpatialMeshVisibility -- uid: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.StartObserver(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider) - name: StartObserver(IMixedRealitySpatialAwarenessDataProvider) - href: api/XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.html#XRTK_Services_SpatialAwarenessSystem_MixedRealitySpatialAwarenessSystem_StartObserver_XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialAwarenessDataProvider_ - commentId: M:XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.StartObserver(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider) - fullName: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.StartObserver(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider) - nameWithType: MixedRealitySpatialAwarenessSystem.StartObserver(IMixedRealitySpatialAwarenessDataProvider) -- uid: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.StartObserver* - name: StartObserver - href: api/XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.html#XRTK_Services_SpatialAwarenessSystem_MixedRealitySpatialAwarenessSystem_StartObserver_ - commentId: Overload:XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.StartObserver - isSpec: "True" - fullName: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.StartObserver - nameWithType: MixedRealitySpatialAwarenessSystem.StartObserver -- uid: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.SurfacesParent - name: SurfacesParent - href: api/XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.html#XRTK_Services_SpatialAwarenessSystem_MixedRealitySpatialAwarenessSystem_SurfacesParent - commentId: P:XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.SurfacesParent - fullName: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.SurfacesParent - nameWithType: MixedRealitySpatialAwarenessSystem.SurfacesParent -- uid: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.SurfacesParent* - name: SurfacesParent - href: api/XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.html#XRTK_Services_SpatialAwarenessSystem_MixedRealitySpatialAwarenessSystem_SurfacesParent_ - commentId: Overload:XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.SurfacesParent - isSpec: "True" - fullName: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.SurfacesParent - nameWithType: MixedRealitySpatialAwarenessSystem.SurfacesParent -- uid: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.SuspendObserver(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider) - name: SuspendObserver(IMixedRealitySpatialAwarenessDataProvider) - href: api/XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.html#XRTK_Services_SpatialAwarenessSystem_MixedRealitySpatialAwarenessSystem_SuspendObserver_XRTK_Interfaces_Providers_SpatialObservers_IMixedRealitySpatialAwarenessDataProvider_ - commentId: M:XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.SuspendObserver(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider) - fullName: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.SuspendObserver(XRTK.Interfaces.Providers.SpatialObservers.IMixedRealitySpatialAwarenessDataProvider) - nameWithType: MixedRealitySpatialAwarenessSystem.SuspendObserver(IMixedRealitySpatialAwarenessDataProvider) -- uid: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.SuspendObserver* - name: SuspendObserver - href: api/XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.html#XRTK_Services_SpatialAwarenessSystem_MixedRealitySpatialAwarenessSystem_SuspendObserver_ - commentId: Overload:XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.SuspendObserver - isSpec: "True" - fullName: XRTK.Services.SpatialAwarenessSystem.MixedRealitySpatialAwarenessSystem.SuspendObserver - nameWithType: MixedRealitySpatialAwarenessSystem.SuspendObserver -- uid: XRTK.Services.Teleportation - name: XRTK.Services.Teleportation - href: api/XRTK.Services.Teleportation.html - commentId: N:XRTK.Services.Teleportation - fullName: XRTK.Services.Teleportation - nameWithType: XRTK.Services.Teleportation -- uid: XRTK.Services.Teleportation.MixedRealityTeleportSystem - name: MixedRealityTeleportSystem - href: api/XRTK.Services.Teleportation.MixedRealityTeleportSystem.html - commentId: T:XRTK.Services.Teleportation.MixedRealityTeleportSystem - fullName: XRTK.Services.Teleportation.MixedRealityTeleportSystem - nameWithType: MixedRealityTeleportSystem -- uid: XRTK.Services.Teleportation.MixedRealityTeleportSystem.#ctor(XRTK.Definitions.TeleportSystem.MixedRealityTeleportSystemProfile) - name: MixedRealityTeleportSystem(MixedRealityTeleportSystemProfile) - href: api/XRTK.Services.Teleportation.MixedRealityTeleportSystem.html#XRTK_Services_Teleportation_MixedRealityTeleportSystem__ctor_XRTK_Definitions_TeleportSystem_MixedRealityTeleportSystemProfile_ - commentId: M:XRTK.Services.Teleportation.MixedRealityTeleportSystem.#ctor(XRTK.Definitions.TeleportSystem.MixedRealityTeleportSystemProfile) - fullName: XRTK.Services.Teleportation.MixedRealityTeleportSystem.MixedRealityTeleportSystem(XRTK.Definitions.TeleportSystem.MixedRealityTeleportSystemProfile) - nameWithType: MixedRealityTeleportSystem.MixedRealityTeleportSystem(MixedRealityTeleportSystemProfile) -- uid: XRTK.Services.Teleportation.MixedRealityTeleportSystem.#ctor* - name: MixedRealityTeleportSystem - href: api/XRTK.Services.Teleportation.MixedRealityTeleportSystem.html#XRTK_Services_Teleportation_MixedRealityTeleportSystem__ctor_ - commentId: Overload:XRTK.Services.Teleportation.MixedRealityTeleportSystem.#ctor - isSpec: "True" - fullName: XRTK.Services.Teleportation.MixedRealityTeleportSystem.MixedRealityTeleportSystem - nameWithType: MixedRealityTeleportSystem.MixedRealityTeleportSystem -- uid: XRTK.Services.Teleportation.MixedRealityTeleportSystem.Disable - name: Disable() - href: api/XRTK.Services.Teleportation.MixedRealityTeleportSystem.html#XRTK_Services_Teleportation_MixedRealityTeleportSystem_Disable - commentId: M:XRTK.Services.Teleportation.MixedRealityTeleportSystem.Disable - fullName: XRTK.Services.Teleportation.MixedRealityTeleportSystem.Disable() - nameWithType: MixedRealityTeleportSystem.Disable() -- uid: XRTK.Services.Teleportation.MixedRealityTeleportSystem.Disable* - name: Disable - href: api/XRTK.Services.Teleportation.MixedRealityTeleportSystem.html#XRTK_Services_Teleportation_MixedRealityTeleportSystem_Disable_ - commentId: Overload:XRTK.Services.Teleportation.MixedRealityTeleportSystem.Disable - isSpec: "True" - fullName: XRTK.Services.Teleportation.MixedRealityTeleportSystem.Disable - nameWithType: MixedRealityTeleportSystem.Disable -- uid: XRTK.Services.Teleportation.MixedRealityTeleportSystem.HandleEvent* - name: HandleEvent - href: api/XRTK.Services.Teleportation.MixedRealityTeleportSystem.html#XRTK_Services_Teleportation_MixedRealityTeleportSystem_HandleEvent_ - commentId: Overload:XRTK.Services.Teleportation.MixedRealityTeleportSystem.HandleEvent - isSpec: "True" - fullName: XRTK.Services.Teleportation.MixedRealityTeleportSystem.HandleEvent - nameWithType: MixedRealityTeleportSystem.HandleEvent -- uid: XRTK.Services.Teleportation.MixedRealityTeleportSystem.HandleEvent``1(BaseEventData,ExecuteEvents.EventFunction{``0}) - name: HandleEvent(BaseEventData, ExecuteEvents.EventFunction) - href: api/XRTK.Services.Teleportation.MixedRealityTeleportSystem.html#XRTK_Services_Teleportation_MixedRealityTeleportSystem_HandleEvent__1_BaseEventData_ExecuteEvents_EventFunction___0__ - commentId: M:XRTK.Services.Teleportation.MixedRealityTeleportSystem.HandleEvent``1(BaseEventData,ExecuteEvents.EventFunction{``0}) - name.vb: HandleEvent(Of T)(BaseEventData, ExecuteEvents.EventFunction(Of T)) - fullName: XRTK.Services.Teleportation.MixedRealityTeleportSystem.HandleEvent(BaseEventData, ExecuteEvents.EventFunction) - fullName.vb: XRTK.Services.Teleportation.MixedRealityTeleportSystem.HandleEvent(Of T)(BaseEventData, ExecuteEvents.EventFunction(Of T)) - nameWithType: MixedRealityTeleportSystem.HandleEvent(BaseEventData, ExecuteEvents.EventFunction) - nameWithType.vb: MixedRealityTeleportSystem.HandleEvent(Of T)(BaseEventData, ExecuteEvents.EventFunction(Of T)) -- uid: XRTK.Services.Teleportation.MixedRealityTeleportSystem.Initialize - name: Initialize() - href: api/XRTK.Services.Teleportation.MixedRealityTeleportSystem.html#XRTK_Services_Teleportation_MixedRealityTeleportSystem_Initialize - commentId: M:XRTK.Services.Teleportation.MixedRealityTeleportSystem.Initialize - fullName: XRTK.Services.Teleportation.MixedRealityTeleportSystem.Initialize() - nameWithType: MixedRealityTeleportSystem.Initialize() -- uid: XRTK.Services.Teleportation.MixedRealityTeleportSystem.Initialize* - name: Initialize - href: api/XRTK.Services.Teleportation.MixedRealityTeleportSystem.html#XRTK_Services_Teleportation_MixedRealityTeleportSystem_Initialize_ - commentId: Overload:XRTK.Services.Teleportation.MixedRealityTeleportSystem.Initialize - isSpec: "True" - fullName: XRTK.Services.Teleportation.MixedRealityTeleportSystem.Initialize - nameWithType: MixedRealityTeleportSystem.Initialize -- uid: XRTK.Services.Teleportation.MixedRealityTeleportSystem.RaiseTeleportCanceled(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot) - name: RaiseTeleportCanceled(IMixedRealityPointer, IMixedRealityTeleportHotSpot) - href: api/XRTK.Services.Teleportation.MixedRealityTeleportSystem.html#XRTK_Services_Teleportation_MixedRealityTeleportSystem_RaiseTeleportCanceled_XRTK_Interfaces_InputSystem_IMixedRealityPointer_XRTK_Interfaces_TeleportSystem_IMixedRealityTeleportHotSpot_ - commentId: M:XRTK.Services.Teleportation.MixedRealityTeleportSystem.RaiseTeleportCanceled(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot) - fullName: XRTK.Services.Teleportation.MixedRealityTeleportSystem.RaiseTeleportCanceled(XRTK.Interfaces.InputSystem.IMixedRealityPointer, XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot) - nameWithType: MixedRealityTeleportSystem.RaiseTeleportCanceled(IMixedRealityPointer, IMixedRealityTeleportHotSpot) -- uid: XRTK.Services.Teleportation.MixedRealityTeleportSystem.RaiseTeleportCanceled* - name: RaiseTeleportCanceled - href: api/XRTK.Services.Teleportation.MixedRealityTeleportSystem.html#XRTK_Services_Teleportation_MixedRealityTeleportSystem_RaiseTeleportCanceled_ - commentId: Overload:XRTK.Services.Teleportation.MixedRealityTeleportSystem.RaiseTeleportCanceled - isSpec: "True" - fullName: XRTK.Services.Teleportation.MixedRealityTeleportSystem.RaiseTeleportCanceled - nameWithType: MixedRealityTeleportSystem.RaiseTeleportCanceled -- uid: XRTK.Services.Teleportation.MixedRealityTeleportSystem.RaiseTeleportComplete(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot) - name: RaiseTeleportComplete(IMixedRealityPointer, IMixedRealityTeleportHotSpot) - href: api/XRTK.Services.Teleportation.MixedRealityTeleportSystem.html#XRTK_Services_Teleportation_MixedRealityTeleportSystem_RaiseTeleportComplete_XRTK_Interfaces_InputSystem_IMixedRealityPointer_XRTK_Interfaces_TeleportSystem_IMixedRealityTeleportHotSpot_ - commentId: M:XRTK.Services.Teleportation.MixedRealityTeleportSystem.RaiseTeleportComplete(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot) - fullName: XRTK.Services.Teleportation.MixedRealityTeleportSystem.RaiseTeleportComplete(XRTK.Interfaces.InputSystem.IMixedRealityPointer, XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot) - nameWithType: MixedRealityTeleportSystem.RaiseTeleportComplete(IMixedRealityPointer, IMixedRealityTeleportHotSpot) -- uid: XRTK.Services.Teleportation.MixedRealityTeleportSystem.RaiseTeleportComplete* - name: RaiseTeleportComplete - href: api/XRTK.Services.Teleportation.MixedRealityTeleportSystem.html#XRTK_Services_Teleportation_MixedRealityTeleportSystem_RaiseTeleportComplete_ - commentId: Overload:XRTK.Services.Teleportation.MixedRealityTeleportSystem.RaiseTeleportComplete - isSpec: "True" - fullName: XRTK.Services.Teleportation.MixedRealityTeleportSystem.RaiseTeleportComplete - nameWithType: MixedRealityTeleportSystem.RaiseTeleportComplete -- uid: XRTK.Services.Teleportation.MixedRealityTeleportSystem.RaiseTeleportRequest(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot) - name: RaiseTeleportRequest(IMixedRealityPointer, IMixedRealityTeleportHotSpot) - href: api/XRTK.Services.Teleportation.MixedRealityTeleportSystem.html#XRTK_Services_Teleportation_MixedRealityTeleportSystem_RaiseTeleportRequest_XRTK_Interfaces_InputSystem_IMixedRealityPointer_XRTK_Interfaces_TeleportSystem_IMixedRealityTeleportHotSpot_ - commentId: M:XRTK.Services.Teleportation.MixedRealityTeleportSystem.RaiseTeleportRequest(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot) - fullName: XRTK.Services.Teleportation.MixedRealityTeleportSystem.RaiseTeleportRequest(XRTK.Interfaces.InputSystem.IMixedRealityPointer, XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot) - nameWithType: MixedRealityTeleportSystem.RaiseTeleportRequest(IMixedRealityPointer, IMixedRealityTeleportHotSpot) -- uid: XRTK.Services.Teleportation.MixedRealityTeleportSystem.RaiseTeleportRequest* - name: RaiseTeleportRequest - href: api/XRTK.Services.Teleportation.MixedRealityTeleportSystem.html#XRTK_Services_Teleportation_MixedRealityTeleportSystem_RaiseTeleportRequest_ - commentId: Overload:XRTK.Services.Teleportation.MixedRealityTeleportSystem.RaiseTeleportRequest - isSpec: "True" - fullName: XRTK.Services.Teleportation.MixedRealityTeleportSystem.RaiseTeleportRequest - nameWithType: MixedRealityTeleportSystem.RaiseTeleportRequest -- uid: XRTK.Services.Teleportation.MixedRealityTeleportSystem.RaiseTeleportStarted(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot) - name: RaiseTeleportStarted(IMixedRealityPointer, IMixedRealityTeleportHotSpot) - href: api/XRTK.Services.Teleportation.MixedRealityTeleportSystem.html#XRTK_Services_Teleportation_MixedRealityTeleportSystem_RaiseTeleportStarted_XRTK_Interfaces_InputSystem_IMixedRealityPointer_XRTK_Interfaces_TeleportSystem_IMixedRealityTeleportHotSpot_ - commentId: M:XRTK.Services.Teleportation.MixedRealityTeleportSystem.RaiseTeleportStarted(XRTK.Interfaces.InputSystem.IMixedRealityPointer,XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot) - fullName: XRTK.Services.Teleportation.MixedRealityTeleportSystem.RaiseTeleportStarted(XRTK.Interfaces.InputSystem.IMixedRealityPointer, XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot) - nameWithType: MixedRealityTeleportSystem.RaiseTeleportStarted(IMixedRealityPointer, IMixedRealityTeleportHotSpot) -- uid: XRTK.Services.Teleportation.MixedRealityTeleportSystem.RaiseTeleportStarted* - name: RaiseTeleportStarted - href: api/XRTK.Services.Teleportation.MixedRealityTeleportSystem.html#XRTK_Services_Teleportation_MixedRealityTeleportSystem_RaiseTeleportStarted_ - commentId: Overload:XRTK.Services.Teleportation.MixedRealityTeleportSystem.RaiseTeleportStarted - isSpec: "True" - fullName: XRTK.Services.Teleportation.MixedRealityTeleportSystem.RaiseTeleportStarted - nameWithType: MixedRealityTeleportSystem.RaiseTeleportStarted -- uid: XRTK.Services.Teleportation.MixedRealityTeleportSystem.Register(UnityEngine.GameObject) - name: Register(GameObject) - href: api/XRTK.Services.Teleportation.MixedRealityTeleportSystem.html#XRTK_Services_Teleportation_MixedRealityTeleportSystem_Register_UnityEngine_GameObject_ - commentId: M:XRTK.Services.Teleportation.MixedRealityTeleportSystem.Register(UnityEngine.GameObject) - fullName: XRTK.Services.Teleportation.MixedRealityTeleportSystem.Register(UnityEngine.GameObject) - nameWithType: MixedRealityTeleportSystem.Register(GameObject) -- uid: XRTK.Services.Teleportation.MixedRealityTeleportSystem.Register* - name: Register - href: api/XRTK.Services.Teleportation.MixedRealityTeleportSystem.html#XRTK_Services_Teleportation_MixedRealityTeleportSystem_Register_ - commentId: Overload:XRTK.Services.Teleportation.MixedRealityTeleportSystem.Register - isSpec: "True" - fullName: XRTK.Services.Teleportation.MixedRealityTeleportSystem.Register - nameWithType: MixedRealityTeleportSystem.Register -- uid: XRTK.Services.Teleportation.MixedRealityTeleportSystem.TeleportAction - name: TeleportAction - href: api/XRTK.Services.Teleportation.MixedRealityTeleportSystem.html#XRTK_Services_Teleportation_MixedRealityTeleportSystem_TeleportAction - commentId: P:XRTK.Services.Teleportation.MixedRealityTeleportSystem.TeleportAction - fullName: XRTK.Services.Teleportation.MixedRealityTeleportSystem.TeleportAction - nameWithType: MixedRealityTeleportSystem.TeleportAction -- uid: XRTK.Services.Teleportation.MixedRealityTeleportSystem.TeleportAction* - name: TeleportAction - href: api/XRTK.Services.Teleportation.MixedRealityTeleportSystem.html#XRTK_Services_Teleportation_MixedRealityTeleportSystem_TeleportAction_ - commentId: Overload:XRTK.Services.Teleportation.MixedRealityTeleportSystem.TeleportAction - isSpec: "True" - fullName: XRTK.Services.Teleportation.MixedRealityTeleportSystem.TeleportAction - nameWithType: MixedRealityTeleportSystem.TeleportAction -- uid: XRTK.Services.Teleportation.MixedRealityTeleportSystem.Unregister(UnityEngine.GameObject) - name: Unregister(GameObject) - href: api/XRTK.Services.Teleportation.MixedRealityTeleportSystem.html#XRTK_Services_Teleportation_MixedRealityTeleportSystem_Unregister_UnityEngine_GameObject_ - commentId: M:XRTK.Services.Teleportation.MixedRealityTeleportSystem.Unregister(UnityEngine.GameObject) - fullName: XRTK.Services.Teleportation.MixedRealityTeleportSystem.Unregister(UnityEngine.GameObject) - nameWithType: MixedRealityTeleportSystem.Unregister(GameObject) -- uid: XRTK.Services.Teleportation.MixedRealityTeleportSystem.Unregister* - name: Unregister - href: api/XRTK.Services.Teleportation.MixedRealityTeleportSystem.html#XRTK_Services_Teleportation_MixedRealityTeleportSystem_Unregister_ - commentId: Overload:XRTK.Services.Teleportation.MixedRealityTeleportSystem.Unregister - isSpec: "True" - fullName: XRTK.Services.Teleportation.MixedRealityTeleportSystem.Unregister - nameWithType: MixedRealityTeleportSystem.Unregister -- uid: XRTK.Services.Teleportation.MixedRealityTeleportValidationDataProvider - name: MixedRealityTeleportValidationDataProvider - href: api/XRTK.Services.Teleportation.MixedRealityTeleportValidationDataProvider.html - commentId: T:XRTK.Services.Teleportation.MixedRealityTeleportValidationDataProvider - fullName: XRTK.Services.Teleportation.MixedRealityTeleportValidationDataProvider - nameWithType: MixedRealityTeleportValidationDataProvider -- uid: XRTK.Services.Teleportation.MixedRealityTeleportValidationDataProvider.#ctor(System.String,System.UInt32,XRTK.Definitions.TeleportSystem.MixedRealityTeleportValidationDataProviderProfile,XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportSystem) - name: MixedRealityTeleportValidationDataProvider(String, UInt32, MixedRealityTeleportValidationDataProviderProfile, IMixedRealityTeleportSystem) - href: api/XRTK.Services.Teleportation.MixedRealityTeleportValidationDataProvider.html#XRTK_Services_Teleportation_MixedRealityTeleportValidationDataProvider__ctor_System_String_System_UInt32_XRTK_Definitions_TeleportSystem_MixedRealityTeleportValidationDataProviderProfile_XRTK_Interfaces_TeleportSystem_IMixedRealityTeleportSystem_ - commentId: M:XRTK.Services.Teleportation.MixedRealityTeleportValidationDataProvider.#ctor(System.String,System.UInt32,XRTK.Definitions.TeleportSystem.MixedRealityTeleportValidationDataProviderProfile,XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportSystem) - fullName: XRTK.Services.Teleportation.MixedRealityTeleportValidationDataProvider.MixedRealityTeleportValidationDataProvider(System.String, System.UInt32, XRTK.Definitions.TeleportSystem.MixedRealityTeleportValidationDataProviderProfile, XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportSystem) - nameWithType: MixedRealityTeleportValidationDataProvider.MixedRealityTeleportValidationDataProvider(String, UInt32, MixedRealityTeleportValidationDataProviderProfile, IMixedRealityTeleportSystem) -- uid: XRTK.Services.Teleportation.MixedRealityTeleportValidationDataProvider.#ctor* - name: MixedRealityTeleportValidationDataProvider - href: api/XRTK.Services.Teleportation.MixedRealityTeleportValidationDataProvider.html#XRTK_Services_Teleportation_MixedRealityTeleportValidationDataProvider__ctor_ - commentId: Overload:XRTK.Services.Teleportation.MixedRealityTeleportValidationDataProvider.#ctor - isSpec: "True" - fullName: XRTK.Services.Teleportation.MixedRealityTeleportValidationDataProvider.MixedRealityTeleportValidationDataProvider - nameWithType: MixedRealityTeleportValidationDataProvider.MixedRealityTeleportValidationDataProvider -- uid: XRTK.Services.Teleportation.MixedRealityTeleportValidationDataProvider.IsValid(XRTK.Interfaces.InputSystem.IPointerResult,XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot) - name: IsValid(IPointerResult, IMixedRealityTeleportHotSpot) - href: api/XRTK.Services.Teleportation.MixedRealityTeleportValidationDataProvider.html#XRTK_Services_Teleportation_MixedRealityTeleportValidationDataProvider_IsValid_XRTK_Interfaces_InputSystem_IPointerResult_XRTK_Interfaces_TeleportSystem_IMixedRealityTeleportHotSpot_ - commentId: M:XRTK.Services.Teleportation.MixedRealityTeleportValidationDataProvider.IsValid(XRTK.Interfaces.InputSystem.IPointerResult,XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot) - fullName: XRTK.Services.Teleportation.MixedRealityTeleportValidationDataProvider.IsValid(XRTK.Interfaces.InputSystem.IPointerResult, XRTK.Interfaces.TeleportSystem.IMixedRealityTeleportHotSpot) - nameWithType: MixedRealityTeleportValidationDataProvider.IsValid(IPointerResult, IMixedRealityTeleportHotSpot) -- uid: XRTK.Services.Teleportation.MixedRealityTeleportValidationDataProvider.IsValid* - name: IsValid - href: api/XRTK.Services.Teleportation.MixedRealityTeleportValidationDataProvider.html#XRTK_Services_Teleportation_MixedRealityTeleportValidationDataProvider_IsValid_ - commentId: Overload:XRTK.Services.Teleportation.MixedRealityTeleportValidationDataProvider.IsValid - isSpec: "True" - fullName: XRTK.Services.Teleportation.MixedRealityTeleportValidationDataProvider.IsValid - nameWithType: MixedRealityTeleportValidationDataProvider.IsValid -- uid: XRTK.Services.Teleportation.TeleportValidationResult - name: TeleportValidationResult - href: api/XRTK.Services.Teleportation.TeleportValidationResult.html - commentId: T:XRTK.Services.Teleportation.TeleportValidationResult - fullName: XRTK.Services.Teleportation.TeleportValidationResult - nameWithType: TeleportValidationResult -- uid: XRTK.Services.Teleportation.TeleportValidationResult.HotSpot - name: HotSpot - href: api/XRTK.Services.Teleportation.TeleportValidationResult.html#XRTK_Services_Teleportation_TeleportValidationResult_HotSpot - commentId: F:XRTK.Services.Teleportation.TeleportValidationResult.HotSpot - fullName: XRTK.Services.Teleportation.TeleportValidationResult.HotSpot - nameWithType: TeleportValidationResult.HotSpot -- uid: XRTK.Services.Teleportation.TeleportValidationResult.Invalid - name: Invalid - href: api/XRTK.Services.Teleportation.TeleportValidationResult.html#XRTK_Services_Teleportation_TeleportValidationResult_Invalid - commentId: F:XRTK.Services.Teleportation.TeleportValidationResult.Invalid - fullName: XRTK.Services.Teleportation.TeleportValidationResult.Invalid - nameWithType: TeleportValidationResult.Invalid -- uid: XRTK.Services.Teleportation.TeleportValidationResult.None - name: None - href: api/XRTK.Services.Teleportation.TeleportValidationResult.html#XRTK_Services_Teleportation_TeleportValidationResult_None - commentId: F:XRTK.Services.Teleportation.TeleportValidationResult.None - fullName: XRTK.Services.Teleportation.TeleportValidationResult.None - nameWithType: TeleportValidationResult.None -- uid: XRTK.Services.Teleportation.TeleportValidationResult.Valid - name: Valid - href: api/XRTK.Services.Teleportation.TeleportValidationResult.html#XRTK_Services_Teleportation_TeleportValidationResult_Valid - commentId: F:XRTK.Services.Teleportation.TeleportValidationResult.Valid - fullName: XRTK.Services.Teleportation.TeleportValidationResult.Valid - nameWithType: TeleportValidationResult.Valid -- uid: XRTK.Tests - name: XRTK.Tests - href: api/XRTK.Tests.html - commentId: N:XRTK.Tests - fullName: XRTK.Tests - nameWithType: XRTK.Tests -- uid: XRTK.Tests.Core - name: XRTK.Tests.Core - href: api/XRTK.Tests.Core.html - commentId: N:XRTK.Tests.Core - fullName: XRTK.Tests.Core - nameWithType: XRTK.Tests.Core -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests - name: TestFixture_01_MixedRealityToolkitTests - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html - commentId: T:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests - nameWithType: TestFixture_01_MixedRealityToolkitTests -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.CleanupMixedRealityToolkitTests - name: CleanupMixedRealityToolkitTests() - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_CleanupMixedRealityToolkitTests - commentId: M:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.CleanupMixedRealityToolkitTests - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.CleanupMixedRealityToolkitTests() - nameWithType: TestFixture_01_MixedRealityToolkitTests.CleanupMixedRealityToolkitTests() -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.CleanupMixedRealityToolkitTests* - name: CleanupMixedRealityToolkitTests - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_CleanupMixedRealityToolkitTests_ - commentId: Overload:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.CleanupMixedRealityToolkitTests - isSpec: "True" - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.CleanupMixedRealityToolkitTests - nameWithType: TestFixture_01_MixedRealityToolkitTests.CleanupMixedRealityToolkitTests -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_01_InitializeMixedRealityToolkit - name: Test_01_InitializeMixedRealityToolkit() - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_01_InitializeMixedRealityToolkit - commentId: M:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_01_InitializeMixedRealityToolkit - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_01_InitializeMixedRealityToolkit() - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_01_InitializeMixedRealityToolkit() -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_01_InitializeMixedRealityToolkit* - name: Test_01_InitializeMixedRealityToolkit - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_01_InitializeMixedRealityToolkit_ - commentId: Overload:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_01_InitializeMixedRealityToolkit - isSpec: "True" - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_01_InitializeMixedRealityToolkit - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_01_InitializeMixedRealityToolkit -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_02_TestNoMixedRealityProfileFound - name: Test_02_TestNoMixedRealityProfileFound() - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_02_TestNoMixedRealityProfileFound - commentId: M:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_02_TestNoMixedRealityProfileFound - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_02_TestNoMixedRealityProfileFound() - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_02_TestNoMixedRealityProfileFound() -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_02_TestNoMixedRealityProfileFound* - name: Test_02_TestNoMixedRealityProfileFound - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_02_TestNoMixedRealityProfileFound_ - commentId: Overload:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_02_TestNoMixedRealityProfileFound - isSpec: "True" - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_02_TestNoMixedRealityProfileFound - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_02_TestNoMixedRealityProfileFound -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_03_CreateMixedRealityToolkit - name: Test_03_CreateMixedRealityToolkit() - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_03_CreateMixedRealityToolkit - commentId: M:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_03_CreateMixedRealityToolkit - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_03_CreateMixedRealityToolkit() - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_03_CreateMixedRealityToolkit() -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_03_CreateMixedRealityToolkit* - name: Test_03_CreateMixedRealityToolkit - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_03_CreateMixedRealityToolkit_ - commentId: Overload:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_03_CreateMixedRealityToolkit - isSpec: "True" - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_03_CreateMixedRealityToolkit - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_03_CreateMixedRealityToolkit -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_04_01_RegisterMixedRealityServiceAndDataProvider - name: Test_04_01_RegisterMixedRealityServiceAndDataProvider() - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_04_01_RegisterMixedRealityServiceAndDataProvider - commentId: M:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_04_01_RegisterMixedRealityServiceAndDataProvider - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_04_01_RegisterMixedRealityServiceAndDataProvider() - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_04_01_RegisterMixedRealityServiceAndDataProvider() -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_04_01_RegisterMixedRealityServiceAndDataProvider* - name: Test_04_01_RegisterMixedRealityServiceAndDataProvider - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_04_01_RegisterMixedRealityServiceAndDataProvider_ - commentId: Overload:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_04_01_RegisterMixedRealityServiceAndDataProvider - isSpec: "True" - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_04_01_RegisterMixedRealityServiceAndDataProvider - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_04_01_RegisterMixedRealityServiceAndDataProvider -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_04_02_01_UnregisterMixedRealityServiceAndDataProviderByType - name: Test_04_02_01_UnregisterMixedRealityServiceAndDataProviderByType() - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_04_02_01_UnregisterMixedRealityServiceAndDataProviderByType - commentId: M:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_04_02_01_UnregisterMixedRealityServiceAndDataProviderByType - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_04_02_01_UnregisterMixedRealityServiceAndDataProviderByType() - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_04_02_01_UnregisterMixedRealityServiceAndDataProviderByType() -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_04_02_01_UnregisterMixedRealityServiceAndDataProviderByType* - name: Test_04_02_01_UnregisterMixedRealityServiceAndDataProviderByType - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_04_02_01_UnregisterMixedRealityServiceAndDataProviderByType_ - commentId: Overload:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_04_02_01_UnregisterMixedRealityServiceAndDataProviderByType - isSpec: "True" - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_04_02_01_UnregisterMixedRealityServiceAndDataProviderByType - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_04_02_01_UnregisterMixedRealityServiceAndDataProviderByType -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_04_02_02_UnregisterMixedRealityDataProviderByTypeAndName - name: Test_04_02_02_UnregisterMixedRealityDataProviderByTypeAndName() - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_04_02_02_UnregisterMixedRealityDataProviderByTypeAndName - commentId: M:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_04_02_02_UnregisterMixedRealityDataProviderByTypeAndName - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_04_02_02_UnregisterMixedRealityDataProviderByTypeAndName() - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_04_02_02_UnregisterMixedRealityDataProviderByTypeAndName() -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_04_02_02_UnregisterMixedRealityDataProviderByTypeAndName* - name: Test_04_02_02_UnregisterMixedRealityDataProviderByTypeAndName - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_04_02_02_UnregisterMixedRealityDataProviderByTypeAndName_ - commentId: Overload:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_04_02_02_UnregisterMixedRealityDataProviderByTypeAndName - isSpec: "True" - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_04_02_02_UnregisterMixedRealityDataProviderByTypeAndName - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_04_02_02_UnregisterMixedRealityDataProviderByTypeAndName -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_04_03_RegisterMixedRealityDataProviders - name: Test_04_03_RegisterMixedRealityDataProviders() - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_04_03_RegisterMixedRealityDataProviders - commentId: M:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_04_03_RegisterMixedRealityDataProviders - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_04_03_RegisterMixedRealityDataProviders() - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_04_03_RegisterMixedRealityDataProviders() -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_04_03_RegisterMixedRealityDataProviders* - name: Test_04_03_RegisterMixedRealityDataProviders - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_04_03_RegisterMixedRealityDataProviders_ - commentId: Overload:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_04_03_RegisterMixedRealityDataProviders - isSpec: "True" - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_04_03_RegisterMixedRealityDataProviders - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_04_03_RegisterMixedRealityDataProviders -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_04_04_UnregisterMixedRealityDataProvidersByType - name: Test_04_04_UnregisterMixedRealityDataProvidersByType() - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_04_04_UnregisterMixedRealityDataProvidersByType - commentId: M:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_04_04_UnregisterMixedRealityDataProvidersByType - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_04_04_UnregisterMixedRealityDataProvidersByType() - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_04_04_UnregisterMixedRealityDataProvidersByType() -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_04_04_UnregisterMixedRealityDataProvidersByType* - name: Test_04_04_UnregisterMixedRealityDataProvidersByType - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_04_04_UnregisterMixedRealityDataProvidersByType_ - commentId: Overload:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_04_04_UnregisterMixedRealityDataProvidersByType - isSpec: "True" - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_04_04_UnregisterMixedRealityDataProvidersByType - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_04_04_UnregisterMixedRealityDataProvidersByType -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_04_05_MixedRealityDataProviderDoesNotExist - name: Test_04_05_MixedRealityDataProviderDoesNotExist() - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_04_05_MixedRealityDataProviderDoesNotExist - commentId: M:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_04_05_MixedRealityDataProviderDoesNotExist - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_04_05_MixedRealityDataProviderDoesNotExist() - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_04_05_MixedRealityDataProviderDoesNotExist() -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_04_05_MixedRealityDataProviderDoesNotExist* - name: Test_04_05_MixedRealityDataProviderDoesNotExist - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_04_05_MixedRealityDataProviderDoesNotExist_ - commentId: Overload:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_04_05_MixedRealityDataProviderDoesNotExist - isSpec: "True" - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_04_05_MixedRealityDataProviderDoesNotExist - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_04_05_MixedRealityDataProviderDoesNotExist -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_04_06_MixedRealityDataProviderNameDoesNotReturn - name: Test_04_06_MixedRealityDataProviderNameDoesNotReturn() - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_04_06_MixedRealityDataProviderNameDoesNotReturn - commentId: M:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_04_06_MixedRealityDataProviderNameDoesNotReturn - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_04_06_MixedRealityDataProviderNameDoesNotReturn() - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_04_06_MixedRealityDataProviderNameDoesNotReturn() -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_04_06_MixedRealityDataProviderNameDoesNotReturn* - name: Test_04_06_MixedRealityDataProviderNameDoesNotReturn - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_04_06_MixedRealityDataProviderNameDoesNotReturn_ - commentId: Overload:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_04_06_MixedRealityDataProviderNameDoesNotReturn - isSpec: "True" - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_04_06_MixedRealityDataProviderNameDoesNotReturn - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_04_06_MixedRealityDataProviderNameDoesNotReturn -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_04_07_ValidateMixedRealityDataProviderName - name: Test_04_07_ValidateMixedRealityDataProviderName() - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_04_07_ValidateMixedRealityDataProviderName - commentId: M:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_04_07_ValidateMixedRealityDataProviderName - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_04_07_ValidateMixedRealityDataProviderName() - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_04_07_ValidateMixedRealityDataProviderName() -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_04_07_ValidateMixedRealityDataProviderName* - name: Test_04_07_ValidateMixedRealityDataProviderName - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_04_07_ValidateMixedRealityDataProviderName_ - commentId: Overload:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_04_07_ValidateMixedRealityDataProviderName - isSpec: "True" - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_04_07_ValidateMixedRealityDataProviderName - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_04_07_ValidateMixedRealityDataProviderName -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_04_08_GetMixedRealityDataProviderCollectionByInterface - name: Test_04_08_GetMixedRealityDataProviderCollectionByInterface() - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_04_08_GetMixedRealityDataProviderCollectionByInterface - commentId: M:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_04_08_GetMixedRealityDataProviderCollectionByInterface - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_04_08_GetMixedRealityDataProviderCollectionByInterface() - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_04_08_GetMixedRealityDataProviderCollectionByInterface() -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_04_08_GetMixedRealityDataProviderCollectionByInterface* - name: Test_04_08_GetMixedRealityDataProviderCollectionByInterface - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_04_08_GetMixedRealityDataProviderCollectionByInterface_ - commentId: Overload:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_04_08_GetMixedRealityDataProviderCollectionByInterface - isSpec: "True" - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_04_08_GetMixedRealityDataProviderCollectionByInterface - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_04_08_GetMixedRealityDataProviderCollectionByInterface -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_01_RegisterMixedRealityExtensionService - name: Test_05_01_RegisterMixedRealityExtensionService() - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_05_01_RegisterMixedRealityExtensionService - commentId: M:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_01_RegisterMixedRealityExtensionService - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_01_RegisterMixedRealityExtensionService() - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_05_01_RegisterMixedRealityExtensionService() -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_01_RegisterMixedRealityExtensionService* - name: Test_05_01_RegisterMixedRealityExtensionService - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_05_01_RegisterMixedRealityExtensionService_ - commentId: Overload:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_01_RegisterMixedRealityExtensionService - isSpec: "True" - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_01_RegisterMixedRealityExtensionService - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_05_01_RegisterMixedRealityExtensionService -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_02_01_UnregisterMixedRealityExtensionServiceByType - name: Test_05_02_01_UnregisterMixedRealityExtensionServiceByType() - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_05_02_01_UnregisterMixedRealityExtensionServiceByType - commentId: M:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_02_01_UnregisterMixedRealityExtensionServiceByType - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_02_01_UnregisterMixedRealityExtensionServiceByType() - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_05_02_01_UnregisterMixedRealityExtensionServiceByType() -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_02_01_UnregisterMixedRealityExtensionServiceByType* - name: Test_05_02_01_UnregisterMixedRealityExtensionServiceByType - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_05_02_01_UnregisterMixedRealityExtensionServiceByType_ - commentId: Overload:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_02_01_UnregisterMixedRealityExtensionServiceByType - isSpec: "True" - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_02_01_UnregisterMixedRealityExtensionServiceByType - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_05_02_01_UnregisterMixedRealityExtensionServiceByType -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_02_02_UnregisterMixedRealityExtensionServiceByTypeAndName - name: Test_05_02_02_UnregisterMixedRealityExtensionServiceByTypeAndName() - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_05_02_02_UnregisterMixedRealityExtensionServiceByTypeAndName - commentId: M:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_02_02_UnregisterMixedRealityExtensionServiceByTypeAndName - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_02_02_UnregisterMixedRealityExtensionServiceByTypeAndName() - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_05_02_02_UnregisterMixedRealityExtensionServiceByTypeAndName() -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_02_02_UnregisterMixedRealityExtensionServiceByTypeAndName* - name: Test_05_02_02_UnregisterMixedRealityExtensionServiceByTypeAndName - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_05_02_02_UnregisterMixedRealityExtensionServiceByTypeAndName_ - commentId: Overload:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_02_02_UnregisterMixedRealityExtensionServiceByTypeAndName - isSpec: "True" - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_02_02_UnregisterMixedRealityExtensionServiceByTypeAndName - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_05_02_02_UnregisterMixedRealityExtensionServiceByTypeAndName -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_03_RegisterMixedRealityExtensionServices - name: Test_05_03_RegisterMixedRealityExtensionServices() - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_05_03_RegisterMixedRealityExtensionServices - commentId: M:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_03_RegisterMixedRealityExtensionServices - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_03_RegisterMixedRealityExtensionServices() - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_05_03_RegisterMixedRealityExtensionServices() -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_03_RegisterMixedRealityExtensionServices* - name: Test_05_03_RegisterMixedRealityExtensionServices - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_05_03_RegisterMixedRealityExtensionServices_ - commentId: Overload:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_03_RegisterMixedRealityExtensionServices - isSpec: "True" - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_03_RegisterMixedRealityExtensionServices - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_05_03_RegisterMixedRealityExtensionServices -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_04_UnregisterMixedRealityExtensionServicesByType - name: Test_05_04_UnregisterMixedRealityExtensionServicesByType() - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_05_04_UnregisterMixedRealityExtensionServicesByType - commentId: M:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_04_UnregisterMixedRealityExtensionServicesByType - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_04_UnregisterMixedRealityExtensionServicesByType() - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_05_04_UnregisterMixedRealityExtensionServicesByType() -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_04_UnregisterMixedRealityExtensionServicesByType* - name: Test_05_04_UnregisterMixedRealityExtensionServicesByType - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_05_04_UnregisterMixedRealityExtensionServicesByType_ - commentId: Overload:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_04_UnregisterMixedRealityExtensionServicesByType - isSpec: "True" - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_04_UnregisterMixedRealityExtensionServicesByType - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_05_04_UnregisterMixedRealityExtensionServicesByType -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_05_MixedRealityExtensionService2DoesNotExist - name: Test_05_05_MixedRealityExtensionService2DoesNotExist() - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_05_05_MixedRealityExtensionService2DoesNotExist - commentId: M:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_05_MixedRealityExtensionService2DoesNotExist - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_05_MixedRealityExtensionService2DoesNotExist() - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_05_05_MixedRealityExtensionService2DoesNotExist() -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_05_MixedRealityExtensionService2DoesNotExist* - name: Test_05_05_MixedRealityExtensionService2DoesNotExist - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_05_05_MixedRealityExtensionService2DoesNotExist_ - commentId: Overload:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_05_MixedRealityExtensionService2DoesNotExist - isSpec: "True" - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_05_MixedRealityExtensionService2DoesNotExist - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_05_05_MixedRealityExtensionService2DoesNotExist -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_06_MixedRealityExtensionServiceDoesNotReturnByName - name: Test_05_06_MixedRealityExtensionServiceDoesNotReturnByName() - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_05_06_MixedRealityExtensionServiceDoesNotReturnByName - commentId: M:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_06_MixedRealityExtensionServiceDoesNotReturnByName - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_06_MixedRealityExtensionServiceDoesNotReturnByName() - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_05_06_MixedRealityExtensionServiceDoesNotReturnByName() -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_06_MixedRealityExtensionServiceDoesNotReturnByName* - name: Test_05_06_MixedRealityExtensionServiceDoesNotReturnByName - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_05_06_MixedRealityExtensionServiceDoesNotReturnByName_ - commentId: Overload:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_06_MixedRealityExtensionServiceDoesNotReturnByName - isSpec: "True" - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_06_MixedRealityExtensionServiceDoesNotReturnByName - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_05_06_MixedRealityExtensionServiceDoesNotReturnByName -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_07_ValidateExtensionServiceName - name: Test_05_07_ValidateExtensionServiceName() - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_05_07_ValidateExtensionServiceName - commentId: M:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_07_ValidateExtensionServiceName - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_07_ValidateExtensionServiceName() - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_05_07_ValidateExtensionServiceName() -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_07_ValidateExtensionServiceName* - name: Test_05_07_ValidateExtensionServiceName - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_05_07_ValidateExtensionServiceName_ - commentId: Overload:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_07_ValidateExtensionServiceName - isSpec: "True" - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_07_ValidateExtensionServiceName - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_05_07_ValidateExtensionServiceName -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_08_GetMixedRealityExtensionServiceCollectionByInterface - name: Test_05_08_GetMixedRealityExtensionServiceCollectionByInterface() - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_05_08_GetMixedRealityExtensionServiceCollectionByInterface - commentId: M:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_08_GetMixedRealityExtensionServiceCollectionByInterface - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_08_GetMixedRealityExtensionServiceCollectionByInterface() - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_05_08_GetMixedRealityExtensionServiceCollectionByInterface() -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_08_GetMixedRealityExtensionServiceCollectionByInterface* - name: Test_05_08_GetMixedRealityExtensionServiceCollectionByInterface - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_05_08_GetMixedRealityExtensionServiceCollectionByInterface_ - commentId: Overload:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_08_GetMixedRealityExtensionServiceCollectionByInterface - isSpec: "True" - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_08_GetMixedRealityExtensionServiceCollectionByInterface - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_05_08_GetMixedRealityExtensionServiceCollectionByInterface -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_09_GetAllMixedRealityExtensionServices - name: Test_05_09_GetAllMixedRealityExtensionServices() - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_05_09_GetAllMixedRealityExtensionServices - commentId: M:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_09_GetAllMixedRealityExtensionServices - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_09_GetAllMixedRealityExtensionServices() - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_05_09_GetAllMixedRealityExtensionServices() -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_09_GetAllMixedRealityExtensionServices* - name: Test_05_09_GetAllMixedRealityExtensionServices - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_05_09_GetAllMixedRealityExtensionServices_ - commentId: Overload:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_09_GetAllMixedRealityExtensionServices - isSpec: "True" - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_05_09_GetAllMixedRealityExtensionServices - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_05_09_GetAllMixedRealityExtensionServices -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_06_01_TryRegisterMixedRealityDataProvider - name: Test_06_01_TryRegisterMixedRealityDataProvider() - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_06_01_TryRegisterMixedRealityDataProvider - commentId: M:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_06_01_TryRegisterMixedRealityDataProvider - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_06_01_TryRegisterMixedRealityDataProvider() - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_06_01_TryRegisterMixedRealityDataProvider() -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_06_01_TryRegisterMixedRealityDataProvider* - name: Test_06_01_TryRegisterMixedRealityDataProvider - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_06_01_TryRegisterMixedRealityDataProvider_ - commentId: Overload:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_06_01_TryRegisterMixedRealityDataProvider - isSpec: "True" - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_06_01_TryRegisterMixedRealityDataProvider - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_06_01_TryRegisterMixedRealityDataProvider -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_06_02_TryRegisterMixedRealityDataProviderFail - name: Test_06_02_TryRegisterMixedRealityDataProviderFail() - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_06_02_TryRegisterMixedRealityDataProviderFail - commentId: M:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_06_02_TryRegisterMixedRealityDataProviderFail - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_06_02_TryRegisterMixedRealityDataProviderFail() - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_06_02_TryRegisterMixedRealityDataProviderFail() -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_06_02_TryRegisterMixedRealityDataProviderFail* - name: Test_06_02_TryRegisterMixedRealityDataProviderFail - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_06_02_TryRegisterMixedRealityDataProviderFail_ - commentId: Overload:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_06_02_TryRegisterMixedRealityDataProviderFail - isSpec: "True" - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_06_02_TryRegisterMixedRealityDataProviderFail - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_06_02_TryRegisterMixedRealityDataProviderFail -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_06_03_TryRegisterMixedRealityDataProviderByName - name: Test_06_03_TryRegisterMixedRealityDataProviderByName() - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_06_03_TryRegisterMixedRealityDataProviderByName - commentId: M:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_06_03_TryRegisterMixedRealityDataProviderByName - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_06_03_TryRegisterMixedRealityDataProviderByName() - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_06_03_TryRegisterMixedRealityDataProviderByName() -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_06_03_TryRegisterMixedRealityDataProviderByName* - name: Test_06_03_TryRegisterMixedRealityDataProviderByName - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_06_03_TryRegisterMixedRealityDataProviderByName_ - commentId: Overload:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_06_03_TryRegisterMixedRealityDataProviderByName - isSpec: "True" - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_06_03_TryRegisterMixedRealityDataProviderByName - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_06_03_TryRegisterMixedRealityDataProviderByName -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_07_01_EnableServicesByType - name: Test_07_01_EnableServicesByType() - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_07_01_EnableServicesByType - commentId: M:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_07_01_EnableServicesByType - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_07_01_EnableServicesByType() - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_07_01_EnableServicesByType() -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_07_01_EnableServicesByType* - name: Test_07_01_EnableServicesByType - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_07_01_EnableServicesByType_ - commentId: Overload:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_07_01_EnableServicesByType - isSpec: "True" - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_07_01_EnableServicesByType - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_07_01_EnableServicesByType -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_07_02_DisableServicesByType - name: Test_07_02_DisableServicesByType() - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_07_02_DisableServicesByType - commentId: M:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_07_02_DisableServicesByType - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_07_02_DisableServicesByType() - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_07_02_DisableServicesByType() -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_07_02_DisableServicesByType* - name: Test_07_02_DisableServicesByType - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_07_02_DisableServicesByType_ - commentId: Overload:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_07_02_DisableServicesByType - isSpec: "True" - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_07_02_DisableServicesByType - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_07_02_DisableServicesByType -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_08_01_TestSystemsCannotBeRegisteredTwice - name: Test_08_01_TestSystemsCannotBeRegisteredTwice() - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_08_01_TestSystemsCannotBeRegisteredTwice - commentId: M:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_08_01_TestSystemsCannotBeRegisteredTwice - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_08_01_TestSystemsCannotBeRegisteredTwice() - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_08_01_TestSystemsCannotBeRegisteredTwice() -- uid: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_08_01_TestSystemsCannotBeRegisteredTwice* - name: Test_08_01_TestSystemsCannotBeRegisteredTwice - href: api/XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.html#XRTK_Tests_Core_TestFixture_01_MixedRealityToolkitTests_Test_08_01_TestSystemsCannotBeRegisteredTwice_ - commentId: Overload:XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_08_01_TestSystemsCannotBeRegisteredTwice - isSpec: "True" - fullName: XRTK.Tests.Core.TestFixture_01_MixedRealityToolkitTests.Test_08_01_TestSystemsCannotBeRegisteredTwice - nameWithType: TestFixture_01_MixedRealityToolkitTests.Test_08_01_TestSystemsCannotBeRegisteredTwice -- uid: XRTK.Tests.Core.TestFixture_02_MixedRealityToolkitUtilityTests - name: TestFixture_02_MixedRealityToolkitUtilityTests - href: api/XRTK.Tests.Core.TestFixture_02_MixedRealityToolkitUtilityTests.html - commentId: T:XRTK.Tests.Core.TestFixture_02_MixedRealityToolkitUtilityTests - fullName: XRTK.Tests.Core.TestFixture_02_MixedRealityToolkitUtilityTests - nameWithType: TestFixture_02_MixedRealityToolkitUtilityTests -- uid: XRTK.Tests.Core.TestFixture_02_MixedRealityToolkitUtilityTests.Test_01_ConfirmExtensionServiceProviderConfigurationNotPresent - name: Test_01_ConfirmExtensionServiceProviderConfigurationNotPresent() - href: api/XRTK.Tests.Core.TestFixture_02_MixedRealityToolkitUtilityTests.html#XRTK_Tests_Core_TestFixture_02_MixedRealityToolkitUtilityTests_Test_01_ConfirmExtensionServiceProviderConfigurationNotPresent - commentId: M:XRTK.Tests.Core.TestFixture_02_MixedRealityToolkitUtilityTests.Test_01_ConfirmExtensionServiceProviderConfigurationNotPresent - fullName: XRTK.Tests.Core.TestFixture_02_MixedRealityToolkitUtilityTests.Test_01_ConfirmExtensionServiceProviderConfigurationNotPresent() - nameWithType: TestFixture_02_MixedRealityToolkitUtilityTests.Test_01_ConfirmExtensionServiceProviderConfigurationNotPresent() -- uid: XRTK.Tests.Core.TestFixture_02_MixedRealityToolkitUtilityTests.Test_01_ConfirmExtensionServiceProviderConfigurationNotPresent* - name: Test_01_ConfirmExtensionServiceProviderConfigurationNotPresent - href: api/XRTK.Tests.Core.TestFixture_02_MixedRealityToolkitUtilityTests.html#XRTK_Tests_Core_TestFixture_02_MixedRealityToolkitUtilityTests_Test_01_ConfirmExtensionServiceProviderConfigurationNotPresent_ - commentId: Overload:XRTK.Tests.Core.TestFixture_02_MixedRealityToolkitUtilityTests.Test_01_ConfirmExtensionServiceProviderConfigurationNotPresent - isSpec: "True" - fullName: XRTK.Tests.Core.TestFixture_02_MixedRealityToolkitUtilityTests.Test_01_ConfirmExtensionServiceProviderConfigurationNotPresent - nameWithType: TestFixture_02_MixedRealityToolkitUtilityTests.Test_01_ConfirmExtensionServiceProviderConfigurationNotPresent -- uid: XRTK.Tests.Core.TestFixture_02_MixedRealityToolkitUtilityTests.Test_02_ConfirmExtensionServiceProviderConfigurationPresent - name: Test_02_ConfirmExtensionServiceProviderConfigurationPresent() - href: api/XRTK.Tests.Core.TestFixture_02_MixedRealityToolkitUtilityTests.html#XRTK_Tests_Core_TestFixture_02_MixedRealityToolkitUtilityTests_Test_02_ConfirmExtensionServiceProviderConfigurationPresent - commentId: M:XRTK.Tests.Core.TestFixture_02_MixedRealityToolkitUtilityTests.Test_02_ConfirmExtensionServiceProviderConfigurationPresent - fullName: XRTK.Tests.Core.TestFixture_02_MixedRealityToolkitUtilityTests.Test_02_ConfirmExtensionServiceProviderConfigurationPresent() - nameWithType: TestFixture_02_MixedRealityToolkitUtilityTests.Test_02_ConfirmExtensionServiceProviderConfigurationPresent() -- uid: XRTK.Tests.Core.TestFixture_02_MixedRealityToolkitUtilityTests.Test_02_ConfirmExtensionServiceProviderConfigurationPresent* - name: Test_02_ConfirmExtensionServiceProviderConfigurationPresent - href: api/XRTK.Tests.Core.TestFixture_02_MixedRealityToolkitUtilityTests.html#XRTK_Tests_Core_TestFixture_02_MixedRealityToolkitUtilityTests_Test_02_ConfirmExtensionServiceProviderConfigurationPresent_ - commentId: Overload:XRTK.Tests.Core.TestFixture_02_MixedRealityToolkitUtilityTests.Test_02_ConfirmExtensionServiceProviderConfigurationPresent - isSpec: "True" - fullName: XRTK.Tests.Core.TestFixture_02_MixedRealityToolkitUtilityTests.Test_02_ConfirmExtensionServiceProviderConfigurationPresent - nameWithType: TestFixture_02_MixedRealityToolkitUtilityTests.Test_02_ConfirmExtensionServiceProviderConfigurationPresent -- uid: XRTK.Tests.Core.TestFixture_02_MixedRealityToolkitUtilityTests.Test_03_ConfirmControllerMappingConfigurationNotPresent - name: Test_03_ConfirmControllerMappingConfigurationNotPresent() - href: api/XRTK.Tests.Core.TestFixture_02_MixedRealityToolkitUtilityTests.html#XRTK_Tests_Core_TestFixture_02_MixedRealityToolkitUtilityTests_Test_03_ConfirmControllerMappingConfigurationNotPresent - commentId: M:XRTK.Tests.Core.TestFixture_02_MixedRealityToolkitUtilityTests.Test_03_ConfirmControllerMappingConfigurationNotPresent - fullName: XRTK.Tests.Core.TestFixture_02_MixedRealityToolkitUtilityTests.Test_03_ConfirmControllerMappingConfigurationNotPresent() - nameWithType: TestFixture_02_MixedRealityToolkitUtilityTests.Test_03_ConfirmControllerMappingConfigurationNotPresent() -- uid: XRTK.Tests.Core.TestFixture_02_MixedRealityToolkitUtilityTests.Test_03_ConfirmControllerMappingConfigurationNotPresent* - name: Test_03_ConfirmControllerMappingConfigurationNotPresent - href: api/XRTK.Tests.Core.TestFixture_02_MixedRealityToolkitUtilityTests.html#XRTK_Tests_Core_TestFixture_02_MixedRealityToolkitUtilityTests_Test_03_ConfirmControllerMappingConfigurationNotPresent_ - commentId: Overload:XRTK.Tests.Core.TestFixture_02_MixedRealityToolkitUtilityTests.Test_03_ConfirmControllerMappingConfigurationNotPresent - isSpec: "True" - fullName: XRTK.Tests.Core.TestFixture_02_MixedRealityToolkitUtilityTests.Test_03_ConfirmControllerMappingConfigurationNotPresent - nameWithType: TestFixture_02_MixedRealityToolkitUtilityTests.Test_03_ConfirmControllerMappingConfigurationNotPresent -- uid: XRTK.Tests.Core.TestFixture_03_ExtensionsTests - name: TestFixture_03_ExtensionsTests - href: api/XRTK.Tests.Core.TestFixture_03_ExtensionsTests.html - commentId: T:XRTK.Tests.Core.TestFixture_03_ExtensionsTests - fullName: XRTK.Tests.Core.TestFixture_03_ExtensionsTests - nameWithType: TestFixture_03_ExtensionsTests -- uid: XRTK.Tests.Core.TestFixture_03_ExtensionsTests.Test_01_Array_AddItem_Extension - name: Test_01_Array_AddItem_Extension() - href: api/XRTK.Tests.Core.TestFixture_03_ExtensionsTests.html#XRTK_Tests_Core_TestFixture_03_ExtensionsTests_Test_01_Array_AddItem_Extension - commentId: M:XRTK.Tests.Core.TestFixture_03_ExtensionsTests.Test_01_Array_AddItem_Extension - fullName: XRTK.Tests.Core.TestFixture_03_ExtensionsTests.Test_01_Array_AddItem_Extension() - nameWithType: TestFixture_03_ExtensionsTests.Test_01_Array_AddItem_Extension() -- uid: XRTK.Tests.Core.TestFixture_03_ExtensionsTests.Test_01_Array_AddItem_Extension* - name: Test_01_Array_AddItem_Extension - href: api/XRTK.Tests.Core.TestFixture_03_ExtensionsTests.html#XRTK_Tests_Core_TestFixture_03_ExtensionsTests_Test_01_Array_AddItem_Extension_ - commentId: Overload:XRTK.Tests.Core.TestFixture_03_ExtensionsTests.Test_01_Array_AddItem_Extension - isSpec: "True" - fullName: XRTK.Tests.Core.TestFixture_03_ExtensionsTests.Test_01_Array_AddItem_Extension - nameWithType: TestFixture_03_ExtensionsTests.Test_01_Array_AddItem_Extension -- uid: XRTK.Tests.Core.TestFixture_03_ExtensionsTests.Test_02_Array_InitialiseArray_Extension - name: Test_02_Array_InitialiseArray_Extension() - href: api/XRTK.Tests.Core.TestFixture_03_ExtensionsTests.html#XRTK_Tests_Core_TestFixture_03_ExtensionsTests_Test_02_Array_InitialiseArray_Extension - commentId: M:XRTK.Tests.Core.TestFixture_03_ExtensionsTests.Test_02_Array_InitialiseArray_Extension - fullName: XRTK.Tests.Core.TestFixture_03_ExtensionsTests.Test_02_Array_InitialiseArray_Extension() - nameWithType: TestFixture_03_ExtensionsTests.Test_02_Array_InitialiseArray_Extension() -- uid: XRTK.Tests.Core.TestFixture_03_ExtensionsTests.Test_02_Array_InitialiseArray_Extension* - name: Test_02_Array_InitialiseArray_Extension - href: api/XRTK.Tests.Core.TestFixture_03_ExtensionsTests.html#XRTK_Tests_Core_TestFixture_03_ExtensionsTests_Test_02_Array_InitialiseArray_Extension_ - commentId: Overload:XRTK.Tests.Core.TestFixture_03_ExtensionsTests.Test_02_Array_InitialiseArray_Extension - isSpec: "True" - fullName: XRTK.Tests.Core.TestFixture_03_ExtensionsTests.Test_02_Array_InitialiseArray_Extension - nameWithType: TestFixture_03_ExtensionsTests.Test_02_Array_InitialiseArray_Extension -- uid: XRTK.Tests.Extensions - name: XRTK.Tests.Extensions - href: api/XRTK.Tests.Extensions.html - commentId: N:XRTK.Tests.Extensions - fullName: XRTK.Tests.Extensions - nameWithType: XRTK.Tests.Extensions -- uid: XRTK.Tests.Extensions.EnumExtensionTests - name: EnumExtensionTests - href: api/XRTK.Tests.Extensions.EnumExtensionTests.html - commentId: T:XRTK.Tests.Extensions.EnumExtensionTests - fullName: XRTK.Tests.Extensions.EnumExtensionTests - nameWithType: EnumExtensionTests -- uid: XRTK.Tests.Extensions.EnumExtensionTests.Test_01_HasFlags - name: Test_01_HasFlags() - href: api/XRTK.Tests.Extensions.EnumExtensionTests.html#XRTK_Tests_Extensions_EnumExtensionTests_Test_01_HasFlags - commentId: M:XRTK.Tests.Extensions.EnumExtensionTests.Test_01_HasFlags - fullName: XRTK.Tests.Extensions.EnumExtensionTests.Test_01_HasFlags() - nameWithType: EnumExtensionTests.Test_01_HasFlags() -- uid: XRTK.Tests.Extensions.EnumExtensionTests.Test_01_HasFlags* - name: Test_01_HasFlags - href: api/XRTK.Tests.Extensions.EnumExtensionTests.html#XRTK_Tests_Extensions_EnumExtensionTests_Test_01_HasFlags_ - commentId: Overload:XRTK.Tests.Extensions.EnumExtensionTests.Test_01_HasFlags - isSpec: "True" - fullName: XRTK.Tests.Extensions.EnumExtensionTests.Test_01_HasFlags - nameWithType: EnumExtensionTests.Test_01_HasFlags -- uid: XRTK.Tests.Extensions.EnumExtensionTests.Test_02_SetFlags - name: Test_02_SetFlags() - href: api/XRTK.Tests.Extensions.EnumExtensionTests.html#XRTK_Tests_Extensions_EnumExtensionTests_Test_02_SetFlags - commentId: M:XRTK.Tests.Extensions.EnumExtensionTests.Test_02_SetFlags - fullName: XRTK.Tests.Extensions.EnumExtensionTests.Test_02_SetFlags() - nameWithType: EnumExtensionTests.Test_02_SetFlags() -- uid: XRTK.Tests.Extensions.EnumExtensionTests.Test_02_SetFlags* - name: Test_02_SetFlags - href: api/XRTK.Tests.Extensions.EnumExtensionTests.html#XRTK_Tests_Extensions_EnumExtensionTests_Test_02_SetFlags_ - commentId: Overload:XRTK.Tests.Extensions.EnumExtensionTests.Test_02_SetFlags - isSpec: "True" - fullName: XRTK.Tests.Extensions.EnumExtensionTests.Test_02_SetFlags - nameWithType: EnumExtensionTests.Test_02_SetFlags -- uid: XRTK.Tests.Extensions.EnumExtensionTests.Test_03_UnsetFlags - name: Test_03_UnsetFlags() - href: api/XRTK.Tests.Extensions.EnumExtensionTests.html#XRTK_Tests_Extensions_EnumExtensionTests_Test_03_UnsetFlags - commentId: M:XRTK.Tests.Extensions.EnumExtensionTests.Test_03_UnsetFlags - fullName: XRTK.Tests.Extensions.EnumExtensionTests.Test_03_UnsetFlags() - nameWithType: EnumExtensionTests.Test_03_UnsetFlags() -- uid: XRTK.Tests.Extensions.EnumExtensionTests.Test_03_UnsetFlags* - name: Test_03_UnsetFlags - href: api/XRTK.Tests.Extensions.EnumExtensionTests.html#XRTK_Tests_Extensions_EnumExtensionTests_Test_03_UnsetFlags_ - commentId: Overload:XRTK.Tests.Extensions.EnumExtensionTests.Test_03_UnsetFlags - isSpec: "True" - fullName: XRTK.Tests.Extensions.EnumExtensionTests.Test_03_UnsetFlags - nameWithType: EnumExtensionTests.Test_03_UnsetFlags -- uid: XRTK.Tests.Extensions.EnumExtensionTests.Test_04_ToggleFlags - name: Test_04_ToggleFlags() - href: api/XRTK.Tests.Extensions.EnumExtensionTests.html#XRTK_Tests_Extensions_EnumExtensionTests_Test_04_ToggleFlags - commentId: M:XRTK.Tests.Extensions.EnumExtensionTests.Test_04_ToggleFlags - fullName: XRTK.Tests.Extensions.EnumExtensionTests.Test_04_ToggleFlags() - nameWithType: EnumExtensionTests.Test_04_ToggleFlags() -- uid: XRTK.Tests.Extensions.EnumExtensionTests.Test_04_ToggleFlags* - name: Test_04_ToggleFlags - href: api/XRTK.Tests.Extensions.EnumExtensionTests.html#XRTK_Tests_Extensions_EnumExtensionTests_Test_04_ToggleFlags_ - commentId: Overload:XRTK.Tests.Extensions.EnumExtensionTests.Test_04_ToggleFlags - isSpec: "True" - fullName: XRTK.Tests.Extensions.EnumExtensionTests.Test_04_ToggleFlags - nameWithType: EnumExtensionTests.Test_04_ToggleFlags -- uid: XRTK.Tests.Extensions.EnumExtensionTests.Test_05_SpeedTests - name: Test_05_SpeedTests() - href: api/XRTK.Tests.Extensions.EnumExtensionTests.html#XRTK_Tests_Extensions_EnumExtensionTests_Test_05_SpeedTests - commentId: M:XRTK.Tests.Extensions.EnumExtensionTests.Test_05_SpeedTests - fullName: XRTK.Tests.Extensions.EnumExtensionTests.Test_05_SpeedTests() - nameWithType: EnumExtensionTests.Test_05_SpeedTests() -- uid: XRTK.Tests.Extensions.EnumExtensionTests.Test_05_SpeedTests* - name: Test_05_SpeedTests - href: api/XRTK.Tests.Extensions.EnumExtensionTests.html#XRTK_Tests_Extensions_EnumExtensionTests_Test_05_SpeedTests_ - commentId: Overload:XRTK.Tests.Extensions.EnumExtensionTests.Test_05_SpeedTests - isSpec: "True" - fullName: XRTK.Tests.Extensions.EnumExtensionTests.Test_05_SpeedTests - nameWithType: EnumExtensionTests.Test_05_SpeedTests -- uid: XRTK.Tests.InputSystem - name: XRTK.Tests.InputSystem - href: api/XRTK.Tests.InputSystem.html - commentId: N:XRTK.Tests.InputSystem - fullName: XRTK.Tests.InputSystem - nameWithType: XRTK.Tests.InputSystem -- uid: XRTK.Tests.InputSystem.InputSystemTestUtilities - name: InputSystemTestUtilities - href: api/XRTK.Tests.InputSystem.InputSystemTestUtilities.html - commentId: T:XRTK.Tests.InputSystem.InputSystemTestUtilities - fullName: XRTK.Tests.InputSystem.InputSystemTestUtilities - nameWithType: InputSystemTestUtilities -- uid: XRTK.Tests.InputSystem.InputSystemTestUtilities.SetupInputSystemProfile - name: SetupInputSystemProfile() - href: api/XRTK.Tests.InputSystem.InputSystemTestUtilities.html#XRTK_Tests_InputSystem_InputSystemTestUtilities_SetupInputSystemProfile - commentId: M:XRTK.Tests.InputSystem.InputSystemTestUtilities.SetupInputSystemProfile - fullName: XRTK.Tests.InputSystem.InputSystemTestUtilities.SetupInputSystemProfile() - nameWithType: InputSystemTestUtilities.SetupInputSystemProfile() -- uid: XRTK.Tests.InputSystem.InputSystemTestUtilities.SetupInputSystemProfile* - name: SetupInputSystemProfile - href: api/XRTK.Tests.InputSystem.InputSystemTestUtilities.html#XRTK_Tests_InputSystem_InputSystemTestUtilities_SetupInputSystemProfile_ - commentId: Overload:XRTK.Tests.InputSystem.InputSystemTestUtilities.SetupInputSystemProfile - isSpec: "True" - fullName: XRTK.Tests.InputSystem.InputSystemTestUtilities.SetupInputSystemProfile - nameWithType: InputSystemTestUtilities.SetupInputSystemProfile -- uid: XRTK.Tests.InputSystem.InputSystemTestUtilities.TestInputSystemConfiguration - name: TestInputSystemConfiguration - href: api/XRTK.Tests.InputSystem.InputSystemTestUtilities.html#XRTK_Tests_InputSystem_InputSystemTestUtilities_TestInputSystemConfiguration - commentId: P:XRTK.Tests.InputSystem.InputSystemTestUtilities.TestInputSystemConfiguration - fullName: XRTK.Tests.InputSystem.InputSystemTestUtilities.TestInputSystemConfiguration - nameWithType: InputSystemTestUtilities.TestInputSystemConfiguration -- uid: XRTK.Tests.InputSystem.InputSystemTestUtilities.TestInputSystemConfiguration* - name: TestInputSystemConfiguration - href: api/XRTK.Tests.InputSystem.InputSystemTestUtilities.html#XRTK_Tests_InputSystem_InputSystemTestUtilities_TestInputSystemConfiguration_ - commentId: Overload:XRTK.Tests.InputSystem.InputSystemTestUtilities.TestInputSystemConfiguration - isSpec: "True" - fullName: XRTK.Tests.InputSystem.InputSystemTestUtilities.TestInputSystemConfiguration - nameWithType: InputSystemTestUtilities.TestInputSystemConfiguration -- uid: XRTK.Tests.InputSystem.TestFixture_01_UnityInputManagerHelperTests - name: TestFixture_01_UnityInputManagerHelperTests - href: api/XRTK.Tests.InputSystem.TestFixture_01_UnityInputManagerHelperTests.html - commentId: T:XRTK.Tests.InputSystem.TestFixture_01_UnityInputManagerHelperTests - fullName: XRTK.Tests.InputSystem.TestFixture_01_UnityInputManagerHelperTests - nameWithType: TestFixture_01_UnityInputManagerHelperTests -- uid: XRTK.Tests.InputSystem.TestFixture_01_UnityInputManagerHelperTests.TearDown - name: TearDown() - href: api/XRTK.Tests.InputSystem.TestFixture_01_UnityInputManagerHelperTests.html#XRTK_Tests_InputSystem_TestFixture_01_UnityInputManagerHelperTests_TearDown - commentId: M:XRTK.Tests.InputSystem.TestFixture_01_UnityInputManagerHelperTests.TearDown - fullName: XRTK.Tests.InputSystem.TestFixture_01_UnityInputManagerHelperTests.TearDown() - nameWithType: TestFixture_01_UnityInputManagerHelperTests.TearDown() -- uid: XRTK.Tests.InputSystem.TestFixture_01_UnityInputManagerHelperTests.TearDown* - name: TearDown - href: api/XRTK.Tests.InputSystem.TestFixture_01_UnityInputManagerHelperTests.html#XRTK_Tests_InputSystem_TestFixture_01_UnityInputManagerHelperTests_TearDown_ - commentId: Overload:XRTK.Tests.InputSystem.TestFixture_01_UnityInputManagerHelperTests.TearDown - isSpec: "True" - fullName: XRTK.Tests.InputSystem.TestFixture_01_UnityInputManagerHelperTests.TearDown - nameWithType: TestFixture_01_UnityInputManagerHelperTests.TearDown -- uid: XRTK.Tests.InputSystem.TestFixture_01_UnityInputManagerHelperTests.Test01_TestAddCustomMappings - name: Test01_TestAddCustomMappings() - href: api/XRTK.Tests.InputSystem.TestFixture_01_UnityInputManagerHelperTests.html#XRTK_Tests_InputSystem_TestFixture_01_UnityInputManagerHelperTests_Test01_TestAddCustomMappings - commentId: M:XRTK.Tests.InputSystem.TestFixture_01_UnityInputManagerHelperTests.Test01_TestAddCustomMappings - fullName: XRTK.Tests.InputSystem.TestFixture_01_UnityInputManagerHelperTests.Test01_TestAddCustomMappings() - nameWithType: TestFixture_01_UnityInputManagerHelperTests.Test01_TestAddCustomMappings() -- uid: XRTK.Tests.InputSystem.TestFixture_01_UnityInputManagerHelperTests.Test01_TestAddCustomMappings* - name: Test01_TestAddCustomMappings - href: api/XRTK.Tests.InputSystem.TestFixture_01_UnityInputManagerHelperTests.html#XRTK_Tests_InputSystem_TestFixture_01_UnityInputManagerHelperTests_Test01_TestAddCustomMappings_ - commentId: Overload:XRTK.Tests.InputSystem.TestFixture_01_UnityInputManagerHelperTests.Test01_TestAddCustomMappings - isSpec: "True" - fullName: XRTK.Tests.InputSystem.TestFixture_01_UnityInputManagerHelperTests.Test01_TestAddCustomMappings - nameWithType: TestFixture_01_UnityInputManagerHelperTests.Test01_TestAddCustomMappings -- uid: XRTK.Tests.InputSystem.TestFixture_01_UnityInputManagerHelperTests.Test02_TestRemoveCustomMappings - name: Test02_TestRemoveCustomMappings() - href: api/XRTK.Tests.InputSystem.TestFixture_01_UnityInputManagerHelperTests.html#XRTK_Tests_InputSystem_TestFixture_01_UnityInputManagerHelperTests_Test02_TestRemoveCustomMappings - commentId: M:XRTK.Tests.InputSystem.TestFixture_01_UnityInputManagerHelperTests.Test02_TestRemoveCustomMappings - fullName: XRTK.Tests.InputSystem.TestFixture_01_UnityInputManagerHelperTests.Test02_TestRemoveCustomMappings() - nameWithType: TestFixture_01_UnityInputManagerHelperTests.Test02_TestRemoveCustomMappings() -- uid: XRTK.Tests.InputSystem.TestFixture_01_UnityInputManagerHelperTests.Test02_TestRemoveCustomMappings* - name: Test02_TestRemoveCustomMappings - href: api/XRTK.Tests.InputSystem.TestFixture_01_UnityInputManagerHelperTests.html#XRTK_Tests_InputSystem_TestFixture_01_UnityInputManagerHelperTests_Test02_TestRemoveCustomMappings_ - commentId: Overload:XRTK.Tests.InputSystem.TestFixture_01_UnityInputManagerHelperTests.Test02_TestRemoveCustomMappings - isSpec: "True" - fullName: XRTK.Tests.InputSystem.TestFixture_01_UnityInputManagerHelperTests.Test02_TestRemoveCustomMappings - nameWithType: TestFixture_01_UnityInputManagerHelperTests.Test02_TestRemoveCustomMappings -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests - name: TestFixture_02_InteractionDefinitionTests - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html - commentId: T:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests - nameWithType: TestFixture_02_InteractionDefinitionTests -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.CleanupMixedRealityToolkitTests - name: CleanupMixedRealityToolkitTests() - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_CleanupMixedRealityToolkitTests - commentId: M:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.CleanupMixedRealityToolkitTests - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.CleanupMixedRealityToolkitTests() - nameWithType: TestFixture_02_InteractionDefinitionTests.CleanupMixedRealityToolkitTests() -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.CleanupMixedRealityToolkitTests* - name: CleanupMixedRealityToolkitTests - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_CleanupMixedRealityToolkitTests_ - commentId: Overload:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.CleanupMixedRealityToolkitTests - isSpec: "True" - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.CleanupMixedRealityToolkitTests - nameWithType: TestFixture_02_InteractionDefinitionTests.CleanupMixedRealityToolkitTests -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.InitializeBoolInteractionMapping - name: InitializeBoolInteractionMapping() - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_InitializeBoolInteractionMapping - commentId: M:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.InitializeBoolInteractionMapping - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.InitializeBoolInteractionMapping() - nameWithType: TestFixture_02_InteractionDefinitionTests.InitializeBoolInteractionMapping() -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.InitializeBoolInteractionMapping* - name: InitializeBoolInteractionMapping - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_InitializeBoolInteractionMapping_ - commentId: Overload:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.InitializeBoolInteractionMapping - isSpec: "True" - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.InitializeBoolInteractionMapping - nameWithType: TestFixture_02_InteractionDefinitionTests.InitializeBoolInteractionMapping -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.InitializeFloatInteractionMapping - name: InitializeFloatInteractionMapping() - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_InitializeFloatInteractionMapping - commentId: M:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.InitializeFloatInteractionMapping - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.InitializeFloatInteractionMapping() - nameWithType: TestFixture_02_InteractionDefinitionTests.InitializeFloatInteractionMapping() -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.InitializeFloatInteractionMapping* - name: InitializeFloatInteractionMapping - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_InitializeFloatInteractionMapping_ - commentId: Overload:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.InitializeFloatInteractionMapping - isSpec: "True" - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.InitializeFloatInteractionMapping - nameWithType: TestFixture_02_InteractionDefinitionTests.InitializeFloatInteractionMapping -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.InitializeMixedRealityPoseInteractionMapping - name: InitializeMixedRealityPoseInteractionMapping() - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_InitializeMixedRealityPoseInteractionMapping - commentId: M:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.InitializeMixedRealityPoseInteractionMapping - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.InitializeMixedRealityPoseInteractionMapping() - nameWithType: TestFixture_02_InteractionDefinitionTests.InitializeMixedRealityPoseInteractionMapping() -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.InitializeMixedRealityPoseInteractionMapping* - name: InitializeMixedRealityPoseInteractionMapping - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_InitializeMixedRealityPoseInteractionMapping_ - commentId: Overload:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.InitializeMixedRealityPoseInteractionMapping - isSpec: "True" - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.InitializeMixedRealityPoseInteractionMapping - nameWithType: TestFixture_02_InteractionDefinitionTests.InitializeMixedRealityPoseInteractionMapping -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.InitializeQuaternionInteractionMapping - name: InitializeQuaternionInteractionMapping() - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_InitializeQuaternionInteractionMapping - commentId: M:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.InitializeQuaternionInteractionMapping - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.InitializeQuaternionInteractionMapping() - nameWithType: TestFixture_02_InteractionDefinitionTests.InitializeQuaternionInteractionMapping() -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.InitializeQuaternionInteractionMapping* - name: InitializeQuaternionInteractionMapping - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_InitializeQuaternionInteractionMapping_ - commentId: Overload:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.InitializeQuaternionInteractionMapping - isSpec: "True" - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.InitializeQuaternionInteractionMapping - nameWithType: TestFixture_02_InteractionDefinitionTests.InitializeQuaternionInteractionMapping -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.InitializeRawInteractionMapping - name: InitializeRawInteractionMapping() - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_InitializeRawInteractionMapping - commentId: M:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.InitializeRawInteractionMapping - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.InitializeRawInteractionMapping() - nameWithType: TestFixture_02_InteractionDefinitionTests.InitializeRawInteractionMapping() -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.InitializeRawInteractionMapping* - name: InitializeRawInteractionMapping - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_InitializeRawInteractionMapping_ - commentId: Overload:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.InitializeRawInteractionMapping - isSpec: "True" - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.InitializeRawInteractionMapping - nameWithType: TestFixture_02_InteractionDefinitionTests.InitializeRawInteractionMapping -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.InitializeVector2InteractionMapping - name: InitializeVector2InteractionMapping() - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_InitializeVector2InteractionMapping - commentId: M:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.InitializeVector2InteractionMapping - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.InitializeVector2InteractionMapping() - nameWithType: TestFixture_02_InteractionDefinitionTests.InitializeVector2InteractionMapping() -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.InitializeVector2InteractionMapping* - name: InitializeVector2InteractionMapping - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_InitializeVector2InteractionMapping_ - commentId: Overload:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.InitializeVector2InteractionMapping - isSpec: "True" - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.InitializeVector2InteractionMapping - nameWithType: TestFixture_02_InteractionDefinitionTests.InitializeVector2InteractionMapping -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.InitializeVector3InteractionMapping - name: InitializeVector3InteractionMapping() - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_InitializeVector3InteractionMapping - commentId: M:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.InitializeVector3InteractionMapping - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.InitializeVector3InteractionMapping() - nameWithType: TestFixture_02_InteractionDefinitionTests.InitializeVector3InteractionMapping() -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.InitializeVector3InteractionMapping* - name: InitializeVector3InteractionMapping - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_InitializeVector3InteractionMapping_ - commentId: Overload:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.InitializeVector3InteractionMapping - isSpec: "True" - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.InitializeVector3InteractionMapping - nameWithType: TestFixture_02_InteractionDefinitionTests.InitializeVector3InteractionMapping -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_01_01_InitializedRawData - name: Test_01_01_InitializedRawData() - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_Test_01_01_InitializedRawData - commentId: M:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_01_01_InitializedRawData - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_01_01_InitializedRawData() - nameWithType: TestFixture_02_InteractionDefinitionTests.Test_01_01_InitializedRawData() -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_01_01_InitializedRawData* - name: Test_01_01_InitializedRawData - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_Test_01_01_InitializedRawData_ - commentId: Overload:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_01_01_InitializedRawData - isSpec: "True" - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_01_01_InitializedRawData - nameWithType: TestFixture_02_InteractionDefinitionTests.Test_01_01_InitializedRawData -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_01_02_ObjectChangedAndUpdated - name: Test_01_02_ObjectChangedAndUpdated() - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_Test_01_02_ObjectChangedAndUpdated - commentId: M:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_01_02_ObjectChangedAndUpdated - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_01_02_ObjectChangedAndUpdated() - nameWithType: TestFixture_02_InteractionDefinitionTests.Test_01_02_ObjectChangedAndUpdated() -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_01_02_ObjectChangedAndUpdated* - name: Test_01_02_ObjectChangedAndUpdated - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_Test_01_02_ObjectChangedAndUpdated_ - commentId: Overload:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_01_02_ObjectChangedAndUpdated - isSpec: "True" - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_01_02_ObjectChangedAndUpdated - nameWithType: TestFixture_02_InteractionDefinitionTests.Test_01_02_ObjectChangedAndUpdated -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_01_03_ObjectNoChangeAndUpdated - name: Test_01_03_ObjectNoChangeAndUpdated() - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_Test_01_03_ObjectNoChangeAndUpdated - commentId: M:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_01_03_ObjectNoChangeAndUpdated - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_01_03_ObjectNoChangeAndUpdated() - nameWithType: TestFixture_02_InteractionDefinitionTests.Test_01_03_ObjectNoChangeAndUpdated() -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_01_03_ObjectNoChangeAndUpdated* - name: Test_01_03_ObjectNoChangeAndUpdated - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_Test_01_03_ObjectNoChangeAndUpdated_ - commentId: Overload:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_01_03_ObjectNoChangeAndUpdated - isSpec: "True" - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_01_03_ObjectNoChangeAndUpdated - nameWithType: TestFixture_02_InteractionDefinitionTests.Test_01_03_ObjectNoChangeAndUpdated -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_02_01_InitializedBoolData - name: Test_02_01_InitializedBoolData() - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_Test_02_01_InitializedBoolData - commentId: M:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_02_01_InitializedBoolData - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_02_01_InitializedBoolData() - nameWithType: TestFixture_02_InteractionDefinitionTests.Test_02_01_InitializedBoolData() -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_02_01_InitializedBoolData* - name: Test_02_01_InitializedBoolData - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_Test_02_01_InitializedBoolData_ - commentId: Overload:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_02_01_InitializedBoolData - isSpec: "True" - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_02_01_InitializedBoolData - nameWithType: TestFixture_02_InteractionDefinitionTests.Test_02_01_InitializedBoolData -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_02_02_Bool_Changed_NoUpdate - name: Test_02_02_Bool_Changed_NoUpdate() - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_Test_02_02_Bool_Changed_NoUpdate - commentId: M:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_02_02_Bool_Changed_NoUpdate - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_02_02_Bool_Changed_NoUpdate() - nameWithType: TestFixture_02_InteractionDefinitionTests.Test_02_02_Bool_Changed_NoUpdate() -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_02_02_Bool_Changed_NoUpdate* - name: Test_02_02_Bool_Changed_NoUpdate - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_Test_02_02_Bool_Changed_NoUpdate_ - commentId: Overload:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_02_02_Bool_Changed_NoUpdate - isSpec: "True" - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_02_02_Bool_Changed_NoUpdate - nameWithType: TestFixture_02_InteractionDefinitionTests.Test_02_02_Bool_Changed_NoUpdate -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_02_03_Bool_NoChange_NoUpdate - name: Test_02_03_Bool_NoChange_NoUpdate() - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_Test_02_03_Bool_NoChange_NoUpdate - commentId: M:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_02_03_Bool_NoChange_NoUpdate - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_02_03_Bool_NoChange_NoUpdate() - nameWithType: TestFixture_02_InteractionDefinitionTests.Test_02_03_Bool_NoChange_NoUpdate() -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_02_03_Bool_NoChange_NoUpdate* - name: Test_02_03_Bool_NoChange_NoUpdate - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_Test_02_03_Bool_NoChange_NoUpdate_ - commentId: Overload:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_02_03_Bool_NoChange_NoUpdate - isSpec: "True" - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_02_03_Bool_NoChange_NoUpdate - nameWithType: TestFixture_02_InteractionDefinitionTests.Test_02_03_Bool_NoChange_NoUpdate -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_03_01_InitializedFloatData - name: Test_03_01_InitializedFloatData() - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_Test_03_01_InitializedFloatData - commentId: M:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_03_01_InitializedFloatData - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_03_01_InitializedFloatData() - nameWithType: TestFixture_02_InteractionDefinitionTests.Test_03_01_InitializedFloatData() -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_03_01_InitializedFloatData* - name: Test_03_01_InitializedFloatData - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_Test_03_01_InitializedFloatData_ - commentId: Overload:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_03_01_InitializedFloatData - isSpec: "True" - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_03_01_InitializedFloatData - nameWithType: TestFixture_02_InteractionDefinitionTests.Test_03_01_InitializedFloatData -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_03_02_Float_Changed_Updated - name: Test_03_02_Float_Changed_Updated() - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_Test_03_02_Float_Changed_Updated - commentId: M:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_03_02_Float_Changed_Updated - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_03_02_Float_Changed_Updated() - nameWithType: TestFixture_02_InteractionDefinitionTests.Test_03_02_Float_Changed_Updated() -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_03_02_Float_Changed_Updated* - name: Test_03_02_Float_Changed_Updated - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_Test_03_02_Float_Changed_Updated_ - commentId: Overload:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_03_02_Float_Changed_Updated - isSpec: "True" - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_03_02_Float_Changed_Updated - nameWithType: TestFixture_02_InteractionDefinitionTests.Test_03_02_Float_Changed_Updated -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_03_03_Float_NoChange_Updated - name: Test_03_03_Float_NoChange_Updated() - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_Test_03_03_Float_NoChange_Updated - commentId: M:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_03_03_Float_NoChange_Updated - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_03_03_Float_NoChange_Updated() - nameWithType: TestFixture_02_InteractionDefinitionTests.Test_03_03_Float_NoChange_Updated() -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_03_03_Float_NoChange_Updated* - name: Test_03_03_Float_NoChange_Updated - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_Test_03_03_Float_NoChange_Updated_ - commentId: Overload:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_03_03_Float_NoChange_Updated - isSpec: "True" - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_03_03_Float_NoChange_Updated - nameWithType: TestFixture_02_InteractionDefinitionTests.Test_03_03_Float_NoChange_Updated -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_03_03_Float_NoChange_Updated_Inverted - name: Test_03_03_Float_NoChange_Updated_Inverted() - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_Test_03_03_Float_NoChange_Updated_Inverted - commentId: M:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_03_03_Float_NoChange_Updated_Inverted - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_03_03_Float_NoChange_Updated_Inverted() - nameWithType: TestFixture_02_InteractionDefinitionTests.Test_03_03_Float_NoChange_Updated_Inverted() -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_03_03_Float_NoChange_Updated_Inverted* - name: Test_03_03_Float_NoChange_Updated_Inverted - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_Test_03_03_Float_NoChange_Updated_Inverted_ - commentId: Overload:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_03_03_Float_NoChange_Updated_Inverted - isSpec: "True" - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_03_03_Float_NoChange_Updated_Inverted - nameWithType: TestFixture_02_InteractionDefinitionTests.Test_03_03_Float_NoChange_Updated_Inverted -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_04_01_01_Vector2_One - name: Test_04_01_01_Vector2_One() - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_Test_04_01_01_Vector2_One - commentId: M:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_04_01_01_Vector2_One - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_04_01_01_Vector2_One() - nameWithType: TestFixture_02_InteractionDefinitionTests.Test_04_01_01_Vector2_One() -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_04_01_01_Vector2_One* - name: Test_04_01_01_Vector2_One - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_Test_04_01_01_Vector2_One_ - commentId: Overload:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_04_01_01_Vector2_One - isSpec: "True" - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_04_01_01_Vector2_One - nameWithType: TestFixture_02_InteractionDefinitionTests.Test_04_01_01_Vector2_One -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_04_01_02_SpeedChecks - name: Test_04_01_02_SpeedChecks() - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_Test_04_01_02_SpeedChecks - commentId: M:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_04_01_02_SpeedChecks - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_04_01_02_SpeedChecks() - nameWithType: TestFixture_02_InteractionDefinitionTests.Test_04_01_02_SpeedChecks() -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_04_01_02_SpeedChecks* - name: Test_04_01_02_SpeedChecks - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_Test_04_01_02_SpeedChecks_ - commentId: Overload:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_04_01_02_SpeedChecks - isSpec: "True" - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_04_01_02_SpeedChecks - nameWithType: TestFixture_02_InteractionDefinitionTests.Test_04_01_02_SpeedChecks -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_04_01_InitializedVector2 - name: Test_04_01_InitializedVector2() - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_Test_04_01_InitializedVector2 - commentId: M:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_04_01_InitializedVector2 - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_04_01_InitializedVector2() - nameWithType: TestFixture_02_InteractionDefinitionTests.Test_04_01_InitializedVector2() -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_04_01_InitializedVector2* - name: Test_04_01_InitializedVector2 - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_Test_04_01_InitializedVector2_ - commentId: Overload:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_04_01_InitializedVector2 - isSpec: "True" - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_04_01_InitializedVector2 - nameWithType: TestFixture_02_InteractionDefinitionTests.Test_04_01_InitializedVector2 -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_04_02_01_Vector2_Changed_Updated - name: Test_04_02_01_Vector2_Changed_Updated() - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_Test_04_02_01_Vector2_Changed_Updated - commentId: M:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_04_02_01_Vector2_Changed_Updated - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_04_02_01_Vector2_Changed_Updated() - nameWithType: TestFixture_02_InteractionDefinitionTests.Test_04_02_01_Vector2_Changed_Updated() -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_04_02_01_Vector2_Changed_Updated* - name: Test_04_02_01_Vector2_Changed_Updated - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_Test_04_02_01_Vector2_Changed_Updated_ - commentId: Overload:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_04_02_01_Vector2_Changed_Updated - isSpec: "True" - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_04_02_01_Vector2_Changed_Updated - nameWithType: TestFixture_02_InteractionDefinitionTests.Test_04_02_01_Vector2_Changed_Updated -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_04_02_02_Vector2_NoChanged_Updated_Inverted - name: Test_04_02_02_Vector2_NoChanged_Updated_Inverted() - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_Test_04_02_02_Vector2_NoChanged_Updated_Inverted - commentId: M:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_04_02_02_Vector2_NoChanged_Updated_Inverted - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_04_02_02_Vector2_NoChanged_Updated_Inverted() - nameWithType: TestFixture_02_InteractionDefinitionTests.Test_04_02_02_Vector2_NoChanged_Updated_Inverted() -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_04_02_02_Vector2_NoChanged_Updated_Inverted* - name: Test_04_02_02_Vector2_NoChanged_Updated_Inverted - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_Test_04_02_02_Vector2_NoChanged_Updated_Inverted_ - commentId: Overload:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_04_02_02_Vector2_NoChanged_Updated_Inverted - isSpec: "True" - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_04_02_02_Vector2_NoChanged_Updated_Inverted - nameWithType: TestFixture_02_InteractionDefinitionTests.Test_04_02_02_Vector2_NoChanged_Updated_Inverted -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_04_03_Vector2_NoChange_Updated - name: Test_04_03_Vector2_NoChange_Updated() - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_Test_04_03_Vector2_NoChange_Updated - commentId: M:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_04_03_Vector2_NoChange_Updated - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_04_03_Vector2_NoChange_Updated() - nameWithType: TestFixture_02_InteractionDefinitionTests.Test_04_03_Vector2_NoChange_Updated() -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_04_03_Vector2_NoChange_Updated* - name: Test_04_03_Vector2_NoChange_Updated - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_Test_04_03_Vector2_NoChange_Updated_ - commentId: Overload:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_04_03_Vector2_NoChange_Updated - isSpec: "True" - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_04_03_Vector2_NoChange_Updated - nameWithType: TestFixture_02_InteractionDefinitionTests.Test_04_03_Vector2_NoChange_Updated -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_05_01_InitializedVector3 - name: Test_05_01_InitializedVector3() - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_Test_05_01_InitializedVector3 - commentId: M:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_05_01_InitializedVector3 - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_05_01_InitializedVector3() - nameWithType: TestFixture_02_InteractionDefinitionTests.Test_05_01_InitializedVector3() -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_05_01_InitializedVector3* - name: Test_05_01_InitializedVector3 - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_Test_05_01_InitializedVector3_ - commentId: Overload:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_05_01_InitializedVector3 - isSpec: "True" - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_05_01_InitializedVector3 - nameWithType: TestFixture_02_InteractionDefinitionTests.Test_05_01_InitializedVector3 -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_05_02_Vector3_NoChange_Updated - name: Test_05_02_Vector3_NoChange_Updated() - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_Test_05_02_Vector3_NoChange_Updated - commentId: M:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_05_02_Vector3_NoChange_Updated - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_05_02_Vector3_NoChange_Updated() - nameWithType: TestFixture_02_InteractionDefinitionTests.Test_05_02_Vector3_NoChange_Updated() -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_05_02_Vector3_NoChange_Updated* - name: Test_05_02_Vector3_NoChange_Updated - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_Test_05_02_Vector3_NoChange_Updated_ - commentId: Overload:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_05_02_Vector3_NoChange_Updated - isSpec: "True" - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_05_02_Vector3_NoChange_Updated - nameWithType: TestFixture_02_InteractionDefinitionTests.Test_05_02_Vector3_NoChange_Updated -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_05_03_Vector3_NoChange_NoUpdate - name: Test_05_03_Vector3_NoChange_NoUpdate() - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_Test_05_03_Vector3_NoChange_NoUpdate - commentId: M:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_05_03_Vector3_NoChange_NoUpdate - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_05_03_Vector3_NoChange_NoUpdate() - nameWithType: TestFixture_02_InteractionDefinitionTests.Test_05_03_Vector3_NoChange_NoUpdate() -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_05_03_Vector3_NoChange_NoUpdate* - name: Test_05_03_Vector3_NoChange_NoUpdate - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_Test_05_03_Vector3_NoChange_NoUpdate_ - commentId: Overload:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_05_03_Vector3_NoChange_NoUpdate - isSpec: "True" - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_05_03_Vector3_NoChange_NoUpdate - nameWithType: TestFixture_02_InteractionDefinitionTests.Test_05_03_Vector3_NoChange_NoUpdate -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_06_01_InitializeQuaternion - name: Test_06_01_InitializeQuaternion() - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_Test_06_01_InitializeQuaternion - commentId: M:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_06_01_InitializeQuaternion - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_06_01_InitializeQuaternion() - nameWithType: TestFixture_02_InteractionDefinitionTests.Test_06_01_InitializeQuaternion() -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_06_01_InitializeQuaternion* - name: Test_06_01_InitializeQuaternion - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_Test_06_01_InitializeQuaternion_ - commentId: Overload:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_06_01_InitializeQuaternion - isSpec: "True" - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_06_01_InitializeQuaternion - nameWithType: TestFixture_02_InteractionDefinitionTests.Test_06_01_InitializeQuaternion -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_06_02_Quaternion_NoChanged_Updated - name: Test_06_02_Quaternion_NoChanged_Updated() - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_Test_06_02_Quaternion_NoChanged_Updated - commentId: M:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_06_02_Quaternion_NoChanged_Updated - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_06_02_Quaternion_NoChanged_Updated() - nameWithType: TestFixture_02_InteractionDefinitionTests.Test_06_02_Quaternion_NoChanged_Updated() -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_06_02_Quaternion_NoChanged_Updated* - name: Test_06_02_Quaternion_NoChanged_Updated - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_Test_06_02_Quaternion_NoChanged_Updated_ - commentId: Overload:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_06_02_Quaternion_NoChanged_Updated - isSpec: "True" - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_06_02_Quaternion_NoChanged_Updated - nameWithType: TestFixture_02_InteractionDefinitionTests.Test_06_02_Quaternion_NoChanged_Updated -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_06_03_Quaternion_NoChange_NoUpdate - name: Test_06_03_Quaternion_NoChange_NoUpdate() - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_Test_06_03_Quaternion_NoChange_NoUpdate - commentId: M:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_06_03_Quaternion_NoChange_NoUpdate - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_06_03_Quaternion_NoChange_NoUpdate() - nameWithType: TestFixture_02_InteractionDefinitionTests.Test_06_03_Quaternion_NoChange_NoUpdate() -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_06_03_Quaternion_NoChange_NoUpdate* - name: Test_06_03_Quaternion_NoChange_NoUpdate - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_Test_06_03_Quaternion_NoChange_NoUpdate_ - commentId: Overload:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_06_03_Quaternion_NoChange_NoUpdate - isSpec: "True" - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_06_03_Quaternion_NoChange_NoUpdate - nameWithType: TestFixture_02_InteractionDefinitionTests.Test_06_03_Quaternion_NoChange_NoUpdate -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_07_01_InitializePoseData - name: Test_07_01_InitializePoseData() - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_Test_07_01_InitializePoseData - commentId: M:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_07_01_InitializePoseData - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_07_01_InitializePoseData() - nameWithType: TestFixture_02_InteractionDefinitionTests.Test_07_01_InitializePoseData() -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_07_01_InitializePoseData* - name: Test_07_01_InitializePoseData - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_Test_07_01_InitializePoseData_ - commentId: Overload:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_07_01_InitializePoseData - isSpec: "True" - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_07_01_InitializePoseData - nameWithType: TestFixture_02_InteractionDefinitionTests.Test_07_01_InitializePoseData -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_07_02_MixedRealityPose_NoChanged_Updated - name: Test_07_02_MixedRealityPose_NoChanged_Updated() - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_Test_07_02_MixedRealityPose_NoChanged_Updated - commentId: M:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_07_02_MixedRealityPose_NoChanged_Updated - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_07_02_MixedRealityPose_NoChanged_Updated() - nameWithType: TestFixture_02_InteractionDefinitionTests.Test_07_02_MixedRealityPose_NoChanged_Updated() -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_07_02_MixedRealityPose_NoChanged_Updated* - name: Test_07_02_MixedRealityPose_NoChanged_Updated - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_Test_07_02_MixedRealityPose_NoChanged_Updated_ - commentId: Overload:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_07_02_MixedRealityPose_NoChanged_Updated - isSpec: "True" - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_07_02_MixedRealityPose_NoChanged_Updated - nameWithType: TestFixture_02_InteractionDefinitionTests.Test_07_02_MixedRealityPose_NoChanged_Updated -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_07_03_MixedRealityPose_NoChange_NoUpdate - name: Test_07_03_MixedRealityPose_NoChange_NoUpdate() - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_Test_07_03_MixedRealityPose_NoChange_NoUpdate - commentId: M:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_07_03_MixedRealityPose_NoChange_NoUpdate - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_07_03_MixedRealityPose_NoChange_NoUpdate() - nameWithType: TestFixture_02_InteractionDefinitionTests.Test_07_03_MixedRealityPose_NoChange_NoUpdate() -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_07_03_MixedRealityPose_NoChange_NoUpdate* - name: Test_07_03_MixedRealityPose_NoChange_NoUpdate - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_Test_07_03_MixedRealityPose_NoChange_NoUpdate_ - commentId: Overload:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_07_03_MixedRealityPose_NoChange_NoUpdate - isSpec: "True" - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_07_03_MixedRealityPose_NoChange_NoUpdate - nameWithType: TestFixture_02_InteractionDefinitionTests.Test_07_03_MixedRealityPose_NoChange_NoUpdate -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_08_Processors_TestGetProcessorsOfGenericTypes - name: Test_08_Processors_TestGetProcessorsOfGenericTypes() - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_Test_08_Processors_TestGetProcessorsOfGenericTypes - commentId: M:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_08_Processors_TestGetProcessorsOfGenericTypes - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_08_Processors_TestGetProcessorsOfGenericTypes() - nameWithType: TestFixture_02_InteractionDefinitionTests.Test_08_Processors_TestGetProcessorsOfGenericTypes() -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_08_Processors_TestGetProcessorsOfGenericTypes* - name: Test_08_Processors_TestGetProcessorsOfGenericTypes - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_Test_08_Processors_TestGetProcessorsOfGenericTypes_ - commentId: Overload:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_08_Processors_TestGetProcessorsOfGenericTypes - isSpec: "True" - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_08_Processors_TestGetProcessorsOfGenericTypes - nameWithType: TestFixture_02_InteractionDefinitionTests.Test_08_Processors_TestGetProcessorsOfGenericTypes -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_09_Processors_TestGetProcessorsOfSpecificTypes - name: Test_09_Processors_TestGetProcessorsOfSpecificTypes() - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_Test_09_Processors_TestGetProcessorsOfSpecificTypes - commentId: M:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_09_Processors_TestGetProcessorsOfSpecificTypes - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_09_Processors_TestGetProcessorsOfSpecificTypes() - nameWithType: TestFixture_02_InteractionDefinitionTests.Test_09_Processors_TestGetProcessorsOfSpecificTypes() -- uid: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_09_Processors_TestGetProcessorsOfSpecificTypes* - name: Test_09_Processors_TestGetProcessorsOfSpecificTypes - href: api/XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.html#XRTK_Tests_InputSystem_TestFixture_02_InteractionDefinitionTests_Test_09_Processors_TestGetProcessorsOfSpecificTypes_ - commentId: Overload:XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_09_Processors_TestGetProcessorsOfSpecificTypes - isSpec: "True" - fullName: XRTK.Tests.InputSystem.TestFixture_02_InteractionDefinitionTests.Test_09_Processors_TestGetProcessorsOfSpecificTypes - nameWithType: TestFixture_02_InteractionDefinitionTests.Test_09_Processors_TestGetProcessorsOfSpecificTypes -- uid: XRTK.Tests.InputSystem.TestFixture_03_InputSystemTests - name: TestFixture_03_InputSystemTests - href: api/XRTK.Tests.InputSystem.TestFixture_03_InputSystemTests.html - commentId: T:XRTK.Tests.InputSystem.TestFixture_03_InputSystemTests - fullName: XRTK.Tests.InputSystem.TestFixture_03_InputSystemTests - nameWithType: TestFixture_03_InputSystemTests -- uid: XRTK.Tests.InputSystem.TestFixture_03_InputSystemTests.CleanupMixedRealityToolkitTests - name: CleanupMixedRealityToolkitTests() - href: api/XRTK.Tests.InputSystem.TestFixture_03_InputSystemTests.html#XRTK_Tests_InputSystem_TestFixture_03_InputSystemTests_CleanupMixedRealityToolkitTests - commentId: M:XRTK.Tests.InputSystem.TestFixture_03_InputSystemTests.CleanupMixedRealityToolkitTests - fullName: XRTK.Tests.InputSystem.TestFixture_03_InputSystemTests.CleanupMixedRealityToolkitTests() - nameWithType: TestFixture_03_InputSystemTests.CleanupMixedRealityToolkitTests() -- uid: XRTK.Tests.InputSystem.TestFixture_03_InputSystemTests.CleanupMixedRealityToolkitTests* - name: CleanupMixedRealityToolkitTests - href: api/XRTK.Tests.InputSystem.TestFixture_03_InputSystemTests.html#XRTK_Tests_InputSystem_TestFixture_03_InputSystemTests_CleanupMixedRealityToolkitTests_ - commentId: Overload:XRTK.Tests.InputSystem.TestFixture_03_InputSystemTests.CleanupMixedRealityToolkitTests - isSpec: "True" - fullName: XRTK.Tests.InputSystem.TestFixture_03_InputSystemTests.CleanupMixedRealityToolkitTests - nameWithType: TestFixture_03_InputSystemTests.CleanupMixedRealityToolkitTests -- uid: XRTK.Tests.InputSystem.TestFixture_03_InputSystemTests.Test01_CreateMixedRealityInputSystem - name: Test01_CreateMixedRealityInputSystem() - href: api/XRTK.Tests.InputSystem.TestFixture_03_InputSystemTests.html#XRTK_Tests_InputSystem_TestFixture_03_InputSystemTests_Test01_CreateMixedRealityInputSystem - commentId: M:XRTK.Tests.InputSystem.TestFixture_03_InputSystemTests.Test01_CreateMixedRealityInputSystem - fullName: XRTK.Tests.InputSystem.TestFixture_03_InputSystemTests.Test01_CreateMixedRealityInputSystem() - nameWithType: TestFixture_03_InputSystemTests.Test01_CreateMixedRealityInputSystem() -- uid: XRTK.Tests.InputSystem.TestFixture_03_InputSystemTests.Test01_CreateMixedRealityInputSystem* - name: Test01_CreateMixedRealityInputSystem - href: api/XRTK.Tests.InputSystem.TestFixture_03_InputSystemTests.html#XRTK_Tests_InputSystem_TestFixture_03_InputSystemTests_Test01_CreateMixedRealityInputSystem_ - commentId: Overload:XRTK.Tests.InputSystem.TestFixture_03_InputSystemTests.Test01_CreateMixedRealityInputSystem - isSpec: "True" - fullName: XRTK.Tests.InputSystem.TestFixture_03_InputSystemTests.Test01_CreateMixedRealityInputSystem - nameWithType: TestFixture_03_InputSystemTests.Test01_CreateMixedRealityInputSystem -- uid: XRTK.Tests.InputSystem.TestFixture_03_InputSystemTests.Test02_TestGetMixedRealityInputSystem - name: Test02_TestGetMixedRealityInputSystem() - href: api/XRTK.Tests.InputSystem.TestFixture_03_InputSystemTests.html#XRTK_Tests_InputSystem_TestFixture_03_InputSystemTests_Test02_TestGetMixedRealityInputSystem - commentId: M:XRTK.Tests.InputSystem.TestFixture_03_InputSystemTests.Test02_TestGetMixedRealityInputSystem - fullName: XRTK.Tests.InputSystem.TestFixture_03_InputSystemTests.Test02_TestGetMixedRealityInputSystem() - nameWithType: TestFixture_03_InputSystemTests.Test02_TestGetMixedRealityInputSystem() -- uid: XRTK.Tests.InputSystem.TestFixture_03_InputSystemTests.Test02_TestGetMixedRealityInputSystem* - name: Test02_TestGetMixedRealityInputSystem - href: api/XRTK.Tests.InputSystem.TestFixture_03_InputSystemTests.html#XRTK_Tests_InputSystem_TestFixture_03_InputSystemTests_Test02_TestGetMixedRealityInputSystem_ - commentId: Overload:XRTK.Tests.InputSystem.TestFixture_03_InputSystemTests.Test02_TestGetMixedRealityInputSystem - isSpec: "True" - fullName: XRTK.Tests.InputSystem.TestFixture_03_InputSystemTests.Test02_TestGetMixedRealityInputSystem - nameWithType: TestFixture_03_InputSystemTests.Test02_TestGetMixedRealityInputSystem -- uid: XRTK.Tests.InputSystem.TestFixture_03_InputSystemTests.Test03_TestMixedRealityInputSystemDoesNotExist - name: Test03_TestMixedRealityInputSystemDoesNotExist() - href: api/XRTK.Tests.InputSystem.TestFixture_03_InputSystemTests.html#XRTK_Tests_InputSystem_TestFixture_03_InputSystemTests_Test03_TestMixedRealityInputSystemDoesNotExist - commentId: M:XRTK.Tests.InputSystem.TestFixture_03_InputSystemTests.Test03_TestMixedRealityInputSystemDoesNotExist - fullName: XRTK.Tests.InputSystem.TestFixture_03_InputSystemTests.Test03_TestMixedRealityInputSystemDoesNotExist() - nameWithType: TestFixture_03_InputSystemTests.Test03_TestMixedRealityInputSystemDoesNotExist() -- uid: XRTK.Tests.InputSystem.TestFixture_03_InputSystemTests.Test03_TestMixedRealityInputSystemDoesNotExist* - name: Test03_TestMixedRealityInputSystemDoesNotExist - href: api/XRTK.Tests.InputSystem.TestFixture_03_InputSystemTests.html#XRTK_Tests_InputSystem_TestFixture_03_InputSystemTests_Test03_TestMixedRealityInputSystemDoesNotExist_ - commentId: Overload:XRTK.Tests.InputSystem.TestFixture_03_InputSystemTests.Test03_TestMixedRealityInputSystemDoesNotExist - isSpec: "True" - fullName: XRTK.Tests.InputSystem.TestFixture_03_InputSystemTests.Test03_TestMixedRealityInputSystemDoesNotExist - nameWithType: TestFixture_03_InputSystemTests.Test03_TestMixedRealityInputSystemDoesNotExist -- uid: XRTK.Tests.InputSystem.TestFixture_03_InputSystemTests.Test04_TestMixedRealityInputSystemExists - name: Test04_TestMixedRealityInputSystemExists() - href: api/XRTK.Tests.InputSystem.TestFixture_03_InputSystemTests.html#XRTK_Tests_InputSystem_TestFixture_03_InputSystemTests_Test04_TestMixedRealityInputSystemExists - commentId: M:XRTK.Tests.InputSystem.TestFixture_03_InputSystemTests.Test04_TestMixedRealityInputSystemExists - fullName: XRTK.Tests.InputSystem.TestFixture_03_InputSystemTests.Test04_TestMixedRealityInputSystemExists() - nameWithType: TestFixture_03_InputSystemTests.Test04_TestMixedRealityInputSystemExists() -- uid: XRTK.Tests.InputSystem.TestFixture_03_InputSystemTests.Test04_TestMixedRealityInputSystemExists* - name: Test04_TestMixedRealityInputSystemExists - href: api/XRTK.Tests.InputSystem.TestFixture_03_InputSystemTests.html#XRTK_Tests_InputSystem_TestFixture_03_InputSystemTests_Test04_TestMixedRealityInputSystemExists_ - commentId: Overload:XRTK.Tests.InputSystem.TestFixture_03_InputSystemTests.Test04_TestMixedRealityInputSystemExists - isSpec: "True" - fullName: XRTK.Tests.InputSystem.TestFixture_03_InputSystemTests.Test04_TestMixedRealityInputSystemExists - nameWithType: TestFixture_03_InputSystemTests.Test04_TestMixedRealityInputSystemExists -- uid: XRTK.Tests.InputSystem.TestFixture_04_InputActionTests - name: TestFixture_04_InputActionTests - href: api/XRTK.Tests.InputSystem.TestFixture_04_InputActionTests.html - commentId: T:XRTK.Tests.InputSystem.TestFixture_04_InputActionTests - fullName: XRTK.Tests.InputSystem.TestFixture_04_InputActionTests - nameWithType: TestFixture_04_InputActionTests -- uid: XRTK.Tests.InputSystem.TestFixture_04_InputActionTests.SetupTests - name: SetupTests() - href: api/XRTK.Tests.InputSystem.TestFixture_04_InputActionTests.html#XRTK_Tests_InputSystem_TestFixture_04_InputActionTests_SetupTests - commentId: M:XRTK.Tests.InputSystem.TestFixture_04_InputActionTests.SetupTests - fullName: XRTK.Tests.InputSystem.TestFixture_04_InputActionTests.SetupTests() - nameWithType: TestFixture_04_InputActionTests.SetupTests() -- uid: XRTK.Tests.InputSystem.TestFixture_04_InputActionTests.SetupTests* - name: SetupTests - href: api/XRTK.Tests.InputSystem.TestFixture_04_InputActionTests.html#XRTK_Tests_InputSystem_TestFixture_04_InputActionTests_SetupTests_ - commentId: Overload:XRTK.Tests.InputSystem.TestFixture_04_InputActionTests.SetupTests - isSpec: "True" - fullName: XRTK.Tests.InputSystem.TestFixture_04_InputActionTests.SetupTests - nameWithType: TestFixture_04_InputActionTests.SetupTests -- uid: XRTK.Tests.InputSystem.TestFixture_04_InputActionTests.Teardown - name: Teardown() - href: api/XRTK.Tests.InputSystem.TestFixture_04_InputActionTests.html#XRTK_Tests_InputSystem_TestFixture_04_InputActionTests_Teardown - commentId: M:XRTK.Tests.InputSystem.TestFixture_04_InputActionTests.Teardown - fullName: XRTK.Tests.InputSystem.TestFixture_04_InputActionTests.Teardown() - nameWithType: TestFixture_04_InputActionTests.Teardown() -- uid: XRTK.Tests.InputSystem.TestFixture_04_InputActionTests.Teardown* - name: Teardown - href: api/XRTK.Tests.InputSystem.TestFixture_04_InputActionTests.html#XRTK_Tests_InputSystem_TestFixture_04_InputActionTests_Teardown_ - commentId: Overload:XRTK.Tests.InputSystem.TestFixture_04_InputActionTests.Teardown - isSpec: "True" - fullName: XRTK.Tests.InputSystem.TestFixture_04_InputActionTests.Teardown - nameWithType: TestFixture_04_InputActionTests.Teardown -- uid: XRTK.Tests.InputSystem.TestFixture_04_InputActionTests.Test_01_TestCodeGeneratedActions - name: Test_01_TestCodeGeneratedActions() - href: api/XRTK.Tests.InputSystem.TestFixture_04_InputActionTests.html#XRTK_Tests_InputSystem_TestFixture_04_InputActionTests_Test_01_TestCodeGeneratedActions - commentId: M:XRTK.Tests.InputSystem.TestFixture_04_InputActionTests.Test_01_TestCodeGeneratedActions - fullName: XRTK.Tests.InputSystem.TestFixture_04_InputActionTests.Test_01_TestCodeGeneratedActions() - nameWithType: TestFixture_04_InputActionTests.Test_01_TestCodeGeneratedActions() -- uid: XRTK.Tests.InputSystem.TestFixture_04_InputActionTests.Test_01_TestCodeGeneratedActions* - name: Test_01_TestCodeGeneratedActions - href: api/XRTK.Tests.InputSystem.TestFixture_04_InputActionTests.html#XRTK_Tests_InputSystem_TestFixture_04_InputActionTests_Test_01_TestCodeGeneratedActions_ - commentId: Overload:XRTK.Tests.InputSystem.TestFixture_04_InputActionTests.Test_01_TestCodeGeneratedActions - isSpec: "True" - fullName: XRTK.Tests.InputSystem.TestFixture_04_InputActionTests.Test_01_TestCodeGeneratedActions - nameWithType: TestFixture_04_InputActionTests.Test_01_TestCodeGeneratedActions -- uid: XRTK.Tests.InputSystem.TestFixture_04_InputActionTests.Test_02_TestBackwardsCompatibility - name: Test_02_TestBackwardsCompatibility() - href: api/XRTK.Tests.InputSystem.TestFixture_04_InputActionTests.html#XRTK_Tests_InputSystem_TestFixture_04_InputActionTests_Test_02_TestBackwardsCompatibility - commentId: M:XRTK.Tests.InputSystem.TestFixture_04_InputActionTests.Test_02_TestBackwardsCompatibility - fullName: XRTK.Tests.InputSystem.TestFixture_04_InputActionTests.Test_02_TestBackwardsCompatibility() - nameWithType: TestFixture_04_InputActionTests.Test_02_TestBackwardsCompatibility() -- uid: XRTK.Tests.InputSystem.TestFixture_04_InputActionTests.Test_02_TestBackwardsCompatibility* - name: Test_02_TestBackwardsCompatibility - href: api/XRTK.Tests.InputSystem.TestFixture_04_InputActionTests.html#XRTK_Tests_InputSystem_TestFixture_04_InputActionTests_Test_02_TestBackwardsCompatibility_ - commentId: Overload:XRTK.Tests.InputSystem.TestFixture_04_InputActionTests.Test_02_TestBackwardsCompatibility - isSpec: "True" - fullName: XRTK.Tests.InputSystem.TestFixture_04_InputActionTests.Test_02_TestBackwardsCompatibility - nameWithType: TestFixture_04_InputActionTests.Test_02_TestBackwardsCompatibility -- uid: XRTK.Tests.TestUtilities - name: TestUtilities - href: api/XRTK.Tests.TestUtilities.html - commentId: T:XRTK.Tests.TestUtilities - fullName: XRTK.Tests.TestUtilities - nameWithType: TestUtilities -- uid: XRTK.Tests.TestUtilities.CleanupScene - name: CleanupScene() - href: api/XRTK.Tests.TestUtilities.html#XRTK_Tests_TestUtilities_CleanupScene - commentId: M:XRTK.Tests.TestUtilities.CleanupScene - fullName: XRTK.Tests.TestUtilities.CleanupScene() - nameWithType: TestUtilities.CleanupScene() -- uid: XRTK.Tests.TestUtilities.CleanupScene* - name: CleanupScene - href: api/XRTK.Tests.TestUtilities.html#XRTK_Tests_TestUtilities_CleanupScene_ - commentId: Overload:XRTK.Tests.TestUtilities.CleanupScene - isSpec: "True" - fullName: XRTK.Tests.TestUtilities.CleanupScene - nameWithType: TestUtilities.CleanupScene -- uid: XRTK.Tests.TestUtilities.InitializeMixedRealityToolkit - name: InitializeMixedRealityToolkit() - href: api/XRTK.Tests.TestUtilities.html#XRTK_Tests_TestUtilities_InitializeMixedRealityToolkit - commentId: M:XRTK.Tests.TestUtilities.InitializeMixedRealityToolkit - fullName: XRTK.Tests.TestUtilities.InitializeMixedRealityToolkit() - nameWithType: TestUtilities.InitializeMixedRealityToolkit() -- uid: XRTK.Tests.TestUtilities.InitializeMixedRealityToolkit* - name: InitializeMixedRealityToolkit - href: api/XRTK.Tests.TestUtilities.html#XRTK_Tests_TestUtilities_InitializeMixedRealityToolkit_ - commentId: Overload:XRTK.Tests.TestUtilities.InitializeMixedRealityToolkit - isSpec: "True" - fullName: XRTK.Tests.TestUtilities.InitializeMixedRealityToolkit - nameWithType: TestUtilities.InitializeMixedRealityToolkit -- uid: XRTK.Tests.TestUtilities.InitializeMixedRealityToolkitScene(System.Boolean) - name: InitializeMixedRealityToolkitScene(Boolean) - href: api/XRTK.Tests.TestUtilities.html#XRTK_Tests_TestUtilities_InitializeMixedRealityToolkitScene_System_Boolean_ - commentId: M:XRTK.Tests.TestUtilities.InitializeMixedRealityToolkitScene(System.Boolean) - fullName: XRTK.Tests.TestUtilities.InitializeMixedRealityToolkitScene(System.Boolean) - nameWithType: TestUtilities.InitializeMixedRealityToolkitScene(Boolean) -- uid: XRTK.Tests.TestUtilities.InitializeMixedRealityToolkitScene* - name: InitializeMixedRealityToolkitScene - href: api/XRTK.Tests.TestUtilities.html#XRTK_Tests_TestUtilities_InitializeMixedRealityToolkitScene_ - commentId: Overload:XRTK.Tests.TestUtilities.InitializeMixedRealityToolkitScene - isSpec: "True" - fullName: XRTK.Tests.TestUtilities.InitializeMixedRealityToolkitScene - nameWithType: TestUtilities.InitializeMixedRealityToolkitScene -- uid: XRTK.Ultraleap.Definitions - name: XRTK.Ultraleap.Definitions - href: api/XRTK.Ultraleap.Definitions.html - commentId: N:XRTK.Ultraleap.Definitions - fullName: XRTK.Ultraleap.Definitions - nameWithType: XRTK.Ultraleap.Definitions -- uid: XRTK.Ultraleap.Definitions.UltraleapDeviceOffsetMode - name: UltraleapDeviceOffsetMode - href: api/XRTK.Ultraleap.Definitions.UltraleapDeviceOffsetMode.html - commentId: T:XRTK.Ultraleap.Definitions.UltraleapDeviceOffsetMode - fullName: XRTK.Ultraleap.Definitions.UltraleapDeviceOffsetMode - nameWithType: UltraleapDeviceOffsetMode -- uid: XRTK.Ultraleap.Definitions.UltraleapDeviceOffsetMode.Default - name: Default - href: api/XRTK.Ultraleap.Definitions.UltraleapDeviceOffsetMode.html#XRTK_Ultraleap_Definitions_UltraleapDeviceOffsetMode_Default - commentId: F:XRTK.Ultraleap.Definitions.UltraleapDeviceOffsetMode.Default - fullName: XRTK.Ultraleap.Definitions.UltraleapDeviceOffsetMode.Default - nameWithType: UltraleapDeviceOffsetMode.Default -- uid: XRTK.Ultraleap.Definitions.UltraleapDeviceOffsetMode.Manual - name: Manual - href: api/XRTK.Ultraleap.Definitions.UltraleapDeviceOffsetMode.html#XRTK_Ultraleap_Definitions_UltraleapDeviceOffsetMode_Manual - commentId: F:XRTK.Ultraleap.Definitions.UltraleapDeviceOffsetMode.Manual - fullName: XRTK.Ultraleap.Definitions.UltraleapDeviceOffsetMode.Manual - nameWithType: UltraleapDeviceOffsetMode.Manual -- uid: XRTK.Ultraleap.Definitions.UltraleapFrameOptimizationMode - name: UltraleapFrameOptimizationMode - href: api/XRTK.Ultraleap.Definitions.UltraleapFrameOptimizationMode.html - commentId: T:XRTK.Ultraleap.Definitions.UltraleapFrameOptimizationMode - fullName: XRTK.Ultraleap.Definitions.UltraleapFrameOptimizationMode - nameWithType: UltraleapFrameOptimizationMode -- uid: XRTK.Ultraleap.Definitions.UltraleapFrameOptimizationMode.None - name: None - href: api/XRTK.Ultraleap.Definitions.UltraleapFrameOptimizationMode.html#XRTK_Ultraleap_Definitions_UltraleapFrameOptimizationMode_None - commentId: F:XRTK.Ultraleap.Definitions.UltraleapFrameOptimizationMode.None - fullName: XRTK.Ultraleap.Definitions.UltraleapFrameOptimizationMode.None - nameWithType: UltraleapFrameOptimizationMode.None -- uid: XRTK.Ultraleap.Definitions.UltraleapFrameOptimizationMode.ReusePhysicsForUpdate - name: ReusePhysicsForUpdate - href: api/XRTK.Ultraleap.Definitions.UltraleapFrameOptimizationMode.html#XRTK_Ultraleap_Definitions_UltraleapFrameOptimizationMode_ReusePhysicsForUpdate - commentId: F:XRTK.Ultraleap.Definitions.UltraleapFrameOptimizationMode.ReusePhysicsForUpdate - fullName: XRTK.Ultraleap.Definitions.UltraleapFrameOptimizationMode.ReusePhysicsForUpdate - nameWithType: UltraleapFrameOptimizationMode.ReusePhysicsForUpdate -- uid: XRTK.Ultraleap.Definitions.UltraleapFrameOptimizationMode.ReuseUpdateForPhysics - name: ReuseUpdateForPhysics - href: api/XRTK.Ultraleap.Definitions.UltraleapFrameOptimizationMode.html#XRTK_Ultraleap_Definitions_UltraleapFrameOptimizationMode_ReuseUpdateForPhysics - commentId: F:XRTK.Ultraleap.Definitions.UltraleapFrameOptimizationMode.ReuseUpdateForPhysics - fullName: XRTK.Ultraleap.Definitions.UltraleapFrameOptimizationMode.ReuseUpdateForPhysics - nameWithType: UltraleapFrameOptimizationMode.ReuseUpdateForPhysics -- uid: XRTK.Ultraleap.Definitions.UltraleapOperationMode - name: UltraleapOperationMode - href: api/XRTK.Ultraleap.Definitions.UltraleapOperationMode.html - commentId: T:XRTK.Ultraleap.Definitions.UltraleapOperationMode - fullName: XRTK.Ultraleap.Definitions.UltraleapOperationMode - nameWithType: UltraleapOperationMode -- uid: XRTK.Ultraleap.Definitions.UltraleapOperationMode.Desktop - name: Desktop - href: api/XRTK.Ultraleap.Definitions.UltraleapOperationMode.html#XRTK_Ultraleap_Definitions_UltraleapOperationMode_Desktop - commentId: F:XRTK.Ultraleap.Definitions.UltraleapOperationMode.Desktop - fullName: XRTK.Ultraleap.Definitions.UltraleapOperationMode.Desktop - nameWithType: UltraleapOperationMode.Desktop -- uid: XRTK.Ultraleap.Definitions.UltraleapOperationMode.HeadsetMounted - name: HeadsetMounted - href: api/XRTK.Ultraleap.Definitions.UltraleapOperationMode.html#XRTK_Ultraleap_Definitions_UltraleapOperationMode_HeadsetMounted - commentId: F:XRTK.Ultraleap.Definitions.UltraleapOperationMode.HeadsetMounted - fullName: XRTK.Ultraleap.Definitions.UltraleapOperationMode.HeadsetMounted - nameWithType: UltraleapOperationMode.HeadsetMounted -- uid: XRTK.Ultraleap.Editor - name: XRTK.Ultraleap.Editor - href: api/XRTK.Ultraleap.Editor.html - commentId: N:XRTK.Ultraleap.Editor - fullName: XRTK.Ultraleap.Editor - nameWithType: XRTK.Ultraleap.Editor -- uid: XRTK.Ultraleap.Editor.Inspectors - name: XRTK.Ultraleap.Editor.Inspectors - href: api/XRTK.Ultraleap.Editor.Inspectors.html - commentId: N:XRTK.Ultraleap.Editor.Inspectors - fullName: XRTK.Ultraleap.Editor.Inspectors - nameWithType: XRTK.Ultraleap.Editor.Inspectors -- uid: XRTK.Ultraleap.Editor.Inspectors.UltraleapHandControllerDataProviderProfileInspector - name: UltraleapHandControllerDataProviderProfileInspector - href: api/XRTK.Ultraleap.Editor.Inspectors.UltraleapHandControllerDataProviderProfileInspector.html - commentId: T:XRTK.Ultraleap.Editor.Inspectors.UltraleapHandControllerDataProviderProfileInspector - fullName: XRTK.Ultraleap.Editor.Inspectors.UltraleapHandControllerDataProviderProfileInspector - nameWithType: UltraleapHandControllerDataProviderProfileInspector -- uid: XRTK.Ultraleap.Editor.Inspectors.UltraleapHandControllerDataProviderProfileInspector.OnEnable - name: OnEnable() - href: api/XRTK.Ultraleap.Editor.Inspectors.UltraleapHandControllerDataProviderProfileInspector.html#XRTK_Ultraleap_Editor_Inspectors_UltraleapHandControllerDataProviderProfileInspector_OnEnable - commentId: M:XRTK.Ultraleap.Editor.Inspectors.UltraleapHandControllerDataProviderProfileInspector.OnEnable - fullName: XRTK.Ultraleap.Editor.Inspectors.UltraleapHandControllerDataProviderProfileInspector.OnEnable() - nameWithType: UltraleapHandControllerDataProviderProfileInspector.OnEnable() -- uid: XRTK.Ultraleap.Editor.Inspectors.UltraleapHandControllerDataProviderProfileInspector.OnEnable* - name: OnEnable - href: api/XRTK.Ultraleap.Editor.Inspectors.UltraleapHandControllerDataProviderProfileInspector.html#XRTK_Ultraleap_Editor_Inspectors_UltraleapHandControllerDataProviderProfileInspector_OnEnable_ - commentId: Overload:XRTK.Ultraleap.Editor.Inspectors.UltraleapHandControllerDataProviderProfileInspector.OnEnable - isSpec: "True" - fullName: XRTK.Ultraleap.Editor.Inspectors.UltraleapHandControllerDataProviderProfileInspector.OnEnable - nameWithType: UltraleapHandControllerDataProviderProfileInspector.OnEnable -- uid: XRTK.Ultraleap.Editor.Inspectors.UltraleapHandControllerDataProviderProfileInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.Ultraleap.Editor.Inspectors.UltraleapHandControllerDataProviderProfileInspector.html#XRTK_Ultraleap_Editor_Inspectors_UltraleapHandControllerDataProviderProfileInspector_OnInspectorGUI - commentId: M:XRTK.Ultraleap.Editor.Inspectors.UltraleapHandControllerDataProviderProfileInspector.OnInspectorGUI - fullName: XRTK.Ultraleap.Editor.Inspectors.UltraleapHandControllerDataProviderProfileInspector.OnInspectorGUI() - nameWithType: UltraleapHandControllerDataProviderProfileInspector.OnInspectorGUI() -- uid: XRTK.Ultraleap.Editor.Inspectors.UltraleapHandControllerDataProviderProfileInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.Ultraleap.Editor.Inspectors.UltraleapHandControllerDataProviderProfileInspector.html#XRTK_Ultraleap_Editor_Inspectors_UltraleapHandControllerDataProviderProfileInspector_OnInspectorGUI_ - commentId: Overload:XRTK.Ultraleap.Editor.Inspectors.UltraleapHandControllerDataProviderProfileInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.Ultraleap.Editor.Inspectors.UltraleapHandControllerDataProviderProfileInspector.OnInspectorGUI - nameWithType: UltraleapHandControllerDataProviderProfileInspector.OnInspectorGUI -- uid: XRTK.Ultraleap.Editor.UltraleapPathFinder - name: UltraleapPathFinder - href: api/XRTK.Ultraleap.Editor.UltraleapPathFinder.html - commentId: T:XRTK.Ultraleap.Editor.UltraleapPathFinder - fullName: XRTK.Ultraleap.Editor.UltraleapPathFinder - nameWithType: UltraleapPathFinder -- uid: XRTK.Ultraleap.Editor.UltraleapPathFinder.Location - name: Location - href: api/XRTK.Ultraleap.Editor.UltraleapPathFinder.html#XRTK_Ultraleap_Editor_UltraleapPathFinder_Location - commentId: P:XRTK.Ultraleap.Editor.UltraleapPathFinder.Location - fullName: XRTK.Ultraleap.Editor.UltraleapPathFinder.Location - nameWithType: UltraleapPathFinder.Location -- uid: XRTK.Ultraleap.Editor.UltraleapPathFinder.Location* - name: Location - href: api/XRTK.Ultraleap.Editor.UltraleapPathFinder.html#XRTK_Ultraleap_Editor_UltraleapPathFinder_Location_ - commentId: Overload:XRTK.Ultraleap.Editor.UltraleapPathFinder.Location - isSpec: "True" - fullName: XRTK.Ultraleap.Editor.UltraleapPathFinder.Location - nameWithType: UltraleapPathFinder.Location -- uid: XRTK.Ultraleap.Editor.UltraleapPluginUtility - name: UltraleapPluginUtility - href: api/XRTK.Ultraleap.Editor.UltraleapPluginUtility.html - commentId: T:XRTK.Ultraleap.Editor.UltraleapPluginUtility - fullName: XRTK.Ultraleap.Editor.UltraleapPluginUtility - nameWithType: UltraleapPluginUtility -- uid: XRTK.Ultraleap.Extensions - name: XRTK.Ultraleap.Extensions - href: api/XRTK.Ultraleap.Extensions.html - commentId: N:XRTK.Ultraleap.Extensions - fullName: XRTK.Ultraleap.Extensions - nameWithType: XRTK.Ultraleap.Extensions -- uid: XRTK.Ultraleap.Extensions.QuaternionExtensions - name: QuaternionExtensions - href: api/XRTK.Ultraleap.Extensions.QuaternionExtensions.html - commentId: T:XRTK.Ultraleap.Extensions.QuaternionExtensions - fullName: XRTK.Ultraleap.Extensions.QuaternionExtensions - nameWithType: QuaternionExtensions -- uid: XRTK.Ultraleap.Extensions.QuaternionExtensions.ToLeapQuaternion(UnityEngine.Quaternion) - name: ToLeapQuaternion(Quaternion) - href: api/XRTK.Ultraleap.Extensions.QuaternionExtensions.html#XRTK_Ultraleap_Extensions_QuaternionExtensions_ToLeapQuaternion_UnityEngine_Quaternion_ - commentId: M:XRTK.Ultraleap.Extensions.QuaternionExtensions.ToLeapQuaternion(UnityEngine.Quaternion) - fullName: XRTK.Ultraleap.Extensions.QuaternionExtensions.ToLeapQuaternion(UnityEngine.Quaternion) - nameWithType: QuaternionExtensions.ToLeapQuaternion(Quaternion) -- uid: XRTK.Ultraleap.Extensions.QuaternionExtensions.ToLeapQuaternion* - name: ToLeapQuaternion - href: api/XRTK.Ultraleap.Extensions.QuaternionExtensions.html#XRTK_Ultraleap_Extensions_QuaternionExtensions_ToLeapQuaternion_ - commentId: Overload:XRTK.Ultraleap.Extensions.QuaternionExtensions.ToLeapQuaternion - isSpec: "True" - fullName: XRTK.Ultraleap.Extensions.QuaternionExtensions.ToLeapQuaternion - nameWithType: QuaternionExtensions.ToLeapQuaternion -- uid: XRTK.Ultraleap.Extensions.QuaternionExtensions.ToQuaternion(LeapQuaternion) - name: ToQuaternion(LeapQuaternion) - href: api/XRTK.Ultraleap.Extensions.QuaternionExtensions.html#XRTK_Ultraleap_Extensions_QuaternionExtensions_ToQuaternion_LeapQuaternion_ - commentId: M:XRTK.Ultraleap.Extensions.QuaternionExtensions.ToQuaternion(LeapQuaternion) - fullName: XRTK.Ultraleap.Extensions.QuaternionExtensions.ToQuaternion(LeapQuaternion) - nameWithType: QuaternionExtensions.ToQuaternion(LeapQuaternion) -- uid: XRTK.Ultraleap.Extensions.QuaternionExtensions.ToQuaternion* - name: ToQuaternion - href: api/XRTK.Ultraleap.Extensions.QuaternionExtensions.html#XRTK_Ultraleap_Extensions_QuaternionExtensions_ToQuaternion_ - commentId: Overload:XRTK.Ultraleap.Extensions.QuaternionExtensions.ToQuaternion - isSpec: "True" - fullName: XRTK.Ultraleap.Extensions.QuaternionExtensions.ToQuaternion - nameWithType: QuaternionExtensions.ToQuaternion -- uid: XRTK.Ultraleap.Extensions.TransformExtensions - name: TransformExtensions - href: api/XRTK.Ultraleap.Extensions.TransformExtensions.html - commentId: T:XRTK.Ultraleap.Extensions.TransformExtensions - fullName: XRTK.Ultraleap.Extensions.TransformExtensions - nameWithType: TransformExtensions -- uid: XRTK.Ultraleap.Extensions.TransformExtensions.GetLeapMatrix(UnityEngine.Transform) - name: GetLeapMatrix(Transform) - href: api/XRTK.Ultraleap.Extensions.TransformExtensions.html#XRTK_Ultraleap_Extensions_TransformExtensions_GetLeapMatrix_UnityEngine_Transform_ - commentId: M:XRTK.Ultraleap.Extensions.TransformExtensions.GetLeapMatrix(UnityEngine.Transform) - fullName: XRTK.Ultraleap.Extensions.TransformExtensions.GetLeapMatrix(UnityEngine.Transform) - nameWithType: TransformExtensions.GetLeapMatrix(Transform) -- uid: XRTK.Ultraleap.Extensions.TransformExtensions.GetLeapMatrix* - name: GetLeapMatrix - href: api/XRTK.Ultraleap.Extensions.TransformExtensions.html#XRTK_Ultraleap_Extensions_TransformExtensions_GetLeapMatrix_ - commentId: Overload:XRTK.Ultraleap.Extensions.TransformExtensions.GetLeapMatrix - isSpec: "True" - fullName: XRTK.Ultraleap.Extensions.TransformExtensions.GetLeapMatrix - nameWithType: TransformExtensions.GetLeapMatrix -- uid: XRTK.Ultraleap.Extensions.VectorExtensions - name: VectorExtensions - href: api/XRTK.Ultraleap.Extensions.VectorExtensions.html - commentId: T:XRTK.Ultraleap.Extensions.VectorExtensions - fullName: XRTK.Ultraleap.Extensions.VectorExtensions - nameWithType: VectorExtensions -- uid: XRTK.Ultraleap.Extensions.VectorExtensions.ToVector(UnityEngine.Vector3) - name: ToVector(Vector3) - href: api/XRTK.Ultraleap.Extensions.VectorExtensions.html#XRTK_Ultraleap_Extensions_VectorExtensions_ToVector_UnityEngine_Vector3_ - commentId: M:XRTK.Ultraleap.Extensions.VectorExtensions.ToVector(UnityEngine.Vector3) - fullName: XRTK.Ultraleap.Extensions.VectorExtensions.ToVector(UnityEngine.Vector3) - nameWithType: VectorExtensions.ToVector(Vector3) -- uid: XRTK.Ultraleap.Extensions.VectorExtensions.ToVector* - name: ToVector - href: api/XRTK.Ultraleap.Extensions.VectorExtensions.html#XRTK_Ultraleap_Extensions_VectorExtensions_ToVector_ - commentId: Overload:XRTK.Ultraleap.Extensions.VectorExtensions.ToVector - isSpec: "True" - fullName: XRTK.Ultraleap.Extensions.VectorExtensions.ToVector - nameWithType: VectorExtensions.ToVector -- uid: XRTK.Ultraleap.Extensions.VectorExtensions.ToVector3(Vector) - name: ToVector3(Vector) - href: api/XRTK.Ultraleap.Extensions.VectorExtensions.html#XRTK_Ultraleap_Extensions_VectorExtensions_ToVector3_Vector_ - commentId: M:XRTK.Ultraleap.Extensions.VectorExtensions.ToVector3(Vector) - fullName: XRTK.Ultraleap.Extensions.VectorExtensions.ToVector3(Vector) - nameWithType: VectorExtensions.ToVector3(Vector) -- uid: XRTK.Ultraleap.Extensions.VectorExtensions.ToVector3* - name: ToVector3 - href: api/XRTK.Ultraleap.Extensions.VectorExtensions.html#XRTK_Ultraleap_Extensions_VectorExtensions_ToVector3_ - commentId: Overload:XRTK.Ultraleap.Extensions.VectorExtensions.ToVector3 - isSpec: "True" - fullName: XRTK.Ultraleap.Extensions.VectorExtensions.ToVector3 - nameWithType: VectorExtensions.ToVector3 -- uid: XRTK.Ultraleap.Profiles - name: XRTK.Ultraleap.Profiles - href: api/XRTK.Ultraleap.Profiles.html - commentId: N:XRTK.Ultraleap.Profiles - fullName: XRTK.Ultraleap.Profiles - nameWithType: XRTK.Ultraleap.Profiles -- uid: XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile - name: UltraleapHandControllerDataProviderProfile - href: api/XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.html - commentId: T:XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile - fullName: XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile - nameWithType: UltraleapHandControllerDataProviderProfile -- uid: XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.DeviceOffsetMode - name: DeviceOffsetMode - href: api/XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.html#XRTK_Ultraleap_Profiles_UltraleapHandControllerDataProviderProfile_DeviceOffsetMode - commentId: P:XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.DeviceOffsetMode - fullName: XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.DeviceOffsetMode - nameWithType: UltraleapHandControllerDataProviderProfile.DeviceOffsetMode -- uid: XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.DeviceOffsetMode* - name: DeviceOffsetMode - href: api/XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.html#XRTK_Ultraleap_Profiles_UltraleapHandControllerDataProviderProfile_DeviceOffsetMode_ - commentId: Overload:XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.DeviceOffsetMode - isSpec: "True" - fullName: XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.DeviceOffsetMode - nameWithType: UltraleapHandControllerDataProviderProfile.DeviceOffsetMode -- uid: XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.DeviceOffsetYAxis - name: DeviceOffsetYAxis - href: api/XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.html#XRTK_Ultraleap_Profiles_UltraleapHandControllerDataProviderProfile_DeviceOffsetYAxis - commentId: P:XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.DeviceOffsetYAxis - fullName: XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.DeviceOffsetYAxis - nameWithType: UltraleapHandControllerDataProviderProfile.DeviceOffsetYAxis -- uid: XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.DeviceOffsetYAxis* - name: DeviceOffsetYAxis - href: api/XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.html#XRTK_Ultraleap_Profiles_UltraleapHandControllerDataProviderProfile_DeviceOffsetYAxis_ - commentId: Overload:XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.DeviceOffsetYAxis - isSpec: "True" - fullName: XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.DeviceOffsetYAxis - nameWithType: UltraleapHandControllerDataProviderProfile.DeviceOffsetYAxis -- uid: XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.DeviceOffsetZAxis - name: DeviceOffsetZAxis - href: api/XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.html#XRTK_Ultraleap_Profiles_UltraleapHandControllerDataProviderProfile_DeviceOffsetZAxis - commentId: P:XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.DeviceOffsetZAxis - fullName: XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.DeviceOffsetZAxis - nameWithType: UltraleapHandControllerDataProviderProfile.DeviceOffsetZAxis -- uid: XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.DeviceOffsetZAxis* - name: DeviceOffsetZAxis - href: api/XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.html#XRTK_Ultraleap_Profiles_UltraleapHandControllerDataProviderProfile_DeviceOffsetZAxis_ - commentId: Overload:XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.DeviceOffsetZAxis - isSpec: "True" - fullName: XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.DeviceOffsetZAxis - nameWithType: UltraleapHandControllerDataProviderProfile.DeviceOffsetZAxis -- uid: XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.DeviceTiltXAxis - name: DeviceTiltXAxis - href: api/XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.html#XRTK_Ultraleap_Profiles_UltraleapHandControllerDataProviderProfile_DeviceTiltXAxis - commentId: P:XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.DeviceTiltXAxis - fullName: XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.DeviceTiltXAxis - nameWithType: UltraleapHandControllerDataProviderProfile.DeviceTiltXAxis -- uid: XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.DeviceTiltXAxis* - name: DeviceTiltXAxis - href: api/XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.html#XRTK_Ultraleap_Profiles_UltraleapHandControllerDataProviderProfile_DeviceTiltXAxis_ - commentId: Overload:XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.DeviceTiltXAxis - isSpec: "True" - fullName: XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.DeviceTiltXAxis - nameWithType: UltraleapHandControllerDataProviderProfile.DeviceTiltXAxis -- uid: XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.FrameOptimizationMode - name: FrameOptimizationMode - href: api/XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.html#XRTK_Ultraleap_Profiles_UltraleapHandControllerDataProviderProfile_FrameOptimizationMode - commentId: P:XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.FrameOptimizationMode - fullName: XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.FrameOptimizationMode - nameWithType: UltraleapHandControllerDataProviderProfile.FrameOptimizationMode -- uid: XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.FrameOptimizationMode* - name: FrameOptimizationMode - href: api/XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.html#XRTK_Ultraleap_Profiles_UltraleapHandControllerDataProviderProfile_FrameOptimizationMode_ - commentId: Overload:XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.FrameOptimizationMode - isSpec: "True" - fullName: XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.FrameOptimizationMode - nameWithType: UltraleapHandControllerDataProviderProfile.FrameOptimizationMode -- uid: XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.LeapControllerOffset - name: LeapControllerOffset - href: api/XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.html#XRTK_Ultraleap_Profiles_UltraleapHandControllerDataProviderProfile_LeapControllerOffset - commentId: P:XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.LeapControllerOffset - fullName: XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.LeapControllerOffset - nameWithType: UltraleapHandControllerDataProviderProfile.LeapControllerOffset -- uid: XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.LeapControllerOffset* - name: LeapControllerOffset - href: api/XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.html#XRTK_Ultraleap_Profiles_UltraleapHandControllerDataProviderProfile_LeapControllerOffset_ - commentId: Overload:XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.LeapControllerOffset - isSpec: "True" - fullName: XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.LeapControllerOffset - nameWithType: UltraleapHandControllerDataProviderProfile.LeapControllerOffset -- uid: XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.MaxReconnectionAttempts - name: MaxReconnectionAttempts - href: api/XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.html#XRTK_Ultraleap_Profiles_UltraleapHandControllerDataProviderProfile_MaxReconnectionAttempts - commentId: P:XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.MaxReconnectionAttempts - fullName: XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.MaxReconnectionAttempts - nameWithType: UltraleapHandControllerDataProviderProfile.MaxReconnectionAttempts -- uid: XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.MaxReconnectionAttempts* - name: MaxReconnectionAttempts - href: api/XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.html#XRTK_Ultraleap_Profiles_UltraleapHandControllerDataProviderProfile_MaxReconnectionAttempts_ - commentId: Overload:XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.MaxReconnectionAttempts - isSpec: "True" - fullName: XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.MaxReconnectionAttempts - nameWithType: UltraleapHandControllerDataProviderProfile.MaxReconnectionAttempts -- uid: XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.OperationMode - name: OperationMode - href: api/XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.html#XRTK_Ultraleap_Profiles_UltraleapHandControllerDataProviderProfile_OperationMode - commentId: P:XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.OperationMode - fullName: XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.OperationMode - nameWithType: UltraleapHandControllerDataProviderProfile.OperationMode -- uid: XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.OperationMode* - name: OperationMode - href: api/XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.html#XRTK_Ultraleap_Profiles_UltraleapHandControllerDataProviderProfile_OperationMode_ - commentId: Overload:XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.OperationMode - isSpec: "True" - fullName: XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.OperationMode - nameWithType: UltraleapHandControllerDataProviderProfile.OperationMode -- uid: XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.ReconnectionInterval - name: ReconnectionInterval - href: api/XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.html#XRTK_Ultraleap_Profiles_UltraleapHandControllerDataProviderProfile_ReconnectionInterval - commentId: P:XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.ReconnectionInterval - fullName: XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.ReconnectionInterval - nameWithType: UltraleapHandControllerDataProviderProfile.ReconnectionInterval -- uid: XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.ReconnectionInterval* - name: ReconnectionInterval - href: api/XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.html#XRTK_Ultraleap_Profiles_UltraleapHandControllerDataProviderProfile_ReconnectionInterval_ - commentId: Overload:XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.ReconnectionInterval - isSpec: "True" - fullName: XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile.ReconnectionInterval - nameWithType: UltraleapHandControllerDataProviderProfile.ReconnectionInterval -- uid: XRTK.Ultraleap.Providers.Controllers - name: XRTK.Ultraleap.Providers.Controllers - href: api/XRTK.Ultraleap.Providers.Controllers.html - commentId: N:XRTK.Ultraleap.Providers.Controllers - fullName: XRTK.Ultraleap.Providers.Controllers - nameWithType: XRTK.Ultraleap.Providers.Controllers -- uid: XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider - name: UltraleapHandControllerDataProvider - href: api/XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.html - commentId: T:XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider - fullName: XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider - nameWithType: UltraleapHandControllerDataProvider -- uid: XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.#ctor(System.String,System.UInt32,XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile,XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - name: UltraleapHandControllerDataProvider(String, UInt32, UltraleapHandControllerDataProviderProfile, IMixedRealityInputSystem) - href: api/XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.html#XRTK_Ultraleap_Providers_Controllers_UltraleapHandControllerDataProvider__ctor_System_String_System_UInt32_XRTK_Ultraleap_Profiles_UltraleapHandControllerDataProviderProfile_XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_ - commentId: M:XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.#ctor(System.String,System.UInt32,XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile,XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - fullName: XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.UltraleapHandControllerDataProvider(System.String, System.UInt32, XRTK.Ultraleap.Profiles.UltraleapHandControllerDataProviderProfile, XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - nameWithType: UltraleapHandControllerDataProvider.UltraleapHandControllerDataProvider(String, UInt32, UltraleapHandControllerDataProviderProfile, IMixedRealityInputSystem) -- uid: XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.#ctor* - name: UltraleapHandControllerDataProvider - href: api/XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.html#XRTK_Ultraleap_Providers_Controllers_UltraleapHandControllerDataProvider__ctor_ - commentId: Overload:XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.#ctor - isSpec: "True" - fullName: XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.UltraleapHandControllerDataProvider - nameWithType: UltraleapHandControllerDataProvider.UltraleapHandControllerDataProvider -- uid: XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.Destroy - name: Destroy() - href: api/XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.html#XRTK_Ultraleap_Providers_Controllers_UltraleapHandControllerDataProvider_Destroy - commentId: M:XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.Destroy - fullName: XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.Destroy() - nameWithType: UltraleapHandControllerDataProvider.Destroy() -- uid: XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.Destroy* - name: Destroy - href: api/XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.html#XRTK_Ultraleap_Providers_Controllers_UltraleapHandControllerDataProvider_Destroy_ - commentId: Overload:XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.Destroy - isSpec: "True" - fullName: XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.Destroy - nameWithType: UltraleapHandControllerDataProvider.Destroy -- uid: XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.Disable - name: Disable() - href: api/XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.html#XRTK_Ultraleap_Providers_Controllers_UltraleapHandControllerDataProvider_Disable - commentId: M:XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.Disable - fullName: XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.Disable() - nameWithType: UltraleapHandControllerDataProvider.Disable() -- uid: XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.Disable* - name: Disable - href: api/XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.html#XRTK_Ultraleap_Providers_Controllers_UltraleapHandControllerDataProvider_Disable_ - commentId: Overload:XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.Disable - isSpec: "True" - fullName: XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.Disable - nameWithType: UltraleapHandControllerDataProvider.Disable -- uid: XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.Enable - name: Enable() - href: api/XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.html#XRTK_Ultraleap_Providers_Controllers_UltraleapHandControllerDataProvider_Enable - commentId: M:XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.Enable - fullName: XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.Enable() - nameWithType: UltraleapHandControllerDataProvider.Enable() -- uid: XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.Enable* - name: Enable - href: api/XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.html#XRTK_Ultraleap_Providers_Controllers_UltraleapHandControllerDataProvider_Enable_ - commentId: Overload:XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.Enable - isSpec: "True" - fullName: XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.Enable - nameWithType: UltraleapHandControllerDataProvider.Enable -- uid: XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.FixedUpdate - name: FixedUpdate() - href: api/XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.html#XRTK_Ultraleap_Providers_Controllers_UltraleapHandControllerDataProvider_FixedUpdate - commentId: M:XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.FixedUpdate - fullName: XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.FixedUpdate() - nameWithType: UltraleapHandControllerDataProvider.FixedUpdate() -- uid: XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.FixedUpdate* - name: FixedUpdate - href: api/XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.html#XRTK_Ultraleap_Providers_Controllers_UltraleapHandControllerDataProvider_FixedUpdate_ - commentId: Overload:XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.FixedUpdate - isSpec: "True" - fullName: XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.FixedUpdate - nameWithType: UltraleapHandControllerDataProvider.FixedUpdate -- uid: XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.TryGetHandData(Hand,XRTK.Definitions.Controllers.Hands.HandData@) - name: TryGetHandData(Hand, out HandData) - href: api/XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.html#XRTK_Ultraleap_Providers_Controllers_UltraleapHandControllerDataProvider_TryGetHandData_Hand_XRTK_Definitions_Controllers_Hands_HandData__ - commentId: M:XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.TryGetHandData(Hand,XRTK.Definitions.Controllers.Hands.HandData@) - name.vb: TryGetHandData(Hand, ByRef HandData) - fullName: XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.TryGetHandData(Hand, out XRTK.Definitions.Controllers.Hands.HandData) - fullName.vb: XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.TryGetHandData(Hand, ByRef XRTK.Definitions.Controllers.Hands.HandData) - nameWithType: UltraleapHandControllerDataProvider.TryGetHandData(Hand, out HandData) - nameWithType.vb: UltraleapHandControllerDataProvider.TryGetHandData(Hand, ByRef HandData) -- uid: XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.TryGetHandData* - name: TryGetHandData - href: api/XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.html#XRTK_Ultraleap_Providers_Controllers_UltraleapHandControllerDataProvider_TryGetHandData_ - commentId: Overload:XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.TryGetHandData - isSpec: "True" - fullName: XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.TryGetHandData - nameWithType: UltraleapHandControllerDataProvider.TryGetHandData -- uid: XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.Update - name: Update() - href: api/XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.html#XRTK_Ultraleap_Providers_Controllers_UltraleapHandControllerDataProvider_Update - commentId: M:XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.Update - fullName: XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.Update() - nameWithType: UltraleapHandControllerDataProvider.Update() -- uid: XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.Update* - name: Update - href: api/XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.html#XRTK_Ultraleap_Providers_Controllers_UltraleapHandControllerDataProvider_Update_ - commentId: Overload:XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.Update - isSpec: "True" - fullName: XRTK.Ultraleap.Providers.Controllers.UltraleapHandControllerDataProvider.Update - nameWithType: UltraleapHandControllerDataProvider.Update -- uid: XRTK.Ultraleap.Tests - name: XRTK.Ultraleap.Tests - href: api/XRTK.Ultraleap.Tests.html - commentId: N:XRTK.Ultraleap.Tests - fullName: XRTK.Ultraleap.Tests - nameWithType: XRTK.Ultraleap.Tests -- uid: XRTK.Ultraleap.Tests.ExampleTestScript - name: ExampleTestScript - href: api/XRTK.Ultraleap.Tests.ExampleTestScript.html - commentId: T:XRTK.Ultraleap.Tests.ExampleTestScript - fullName: XRTK.Ultraleap.Tests.ExampleTestScript - nameWithType: ExampleTestScript -- uid: XRTK.Ultraleap.Tests.ExampleTestScript.ExampleTestScriptSimplePasses - name: ExampleTestScriptSimplePasses() - href: api/XRTK.Ultraleap.Tests.ExampleTestScript.html#XRTK_Ultraleap_Tests_ExampleTestScript_ExampleTestScriptSimplePasses - commentId: M:XRTK.Ultraleap.Tests.ExampleTestScript.ExampleTestScriptSimplePasses - fullName: XRTK.Ultraleap.Tests.ExampleTestScript.ExampleTestScriptSimplePasses() - nameWithType: ExampleTestScript.ExampleTestScriptSimplePasses() -- uid: XRTK.Ultraleap.Tests.ExampleTestScript.ExampleTestScriptSimplePasses* - name: ExampleTestScriptSimplePasses - href: api/XRTK.Ultraleap.Tests.ExampleTestScript.html#XRTK_Ultraleap_Tests_ExampleTestScript_ExampleTestScriptSimplePasses_ - commentId: Overload:XRTK.Ultraleap.Tests.ExampleTestScript.ExampleTestScriptSimplePasses - isSpec: "True" - fullName: XRTK.Ultraleap.Tests.ExampleTestScript.ExampleTestScriptSimplePasses - nameWithType: ExampleTestScript.ExampleTestScriptSimplePasses -- uid: XRTK.Utilities - name: XRTK.Utilities - href: api/XRTK.Utilities.html - commentId: N:XRTK.Utilities - fullName: XRTK.Utilities - nameWithType: XRTK.Utilities -- uid: XRTK.Utilities.Async - name: XRTK.Utilities.Async - href: api/XRTK.Utilities.Async.html - commentId: N:XRTK.Utilities.Async - fullName: XRTK.Utilities.Async - nameWithType: XRTK.Utilities.Async -- uid: XRTK.Utilities.Async.AwaiterExtensions - name: AwaiterExtensions - href: api/XRTK.Utilities.Async.AwaiterExtensions.html - commentId: T:XRTK.Utilities.Async.AwaiterExtensions - fullName: XRTK.Utilities.Async.AwaiterExtensions - nameWithType: AwaiterExtensions -- uid: XRTK.Utilities.Async.AwaiterExtensions.GetAwaiter(System.Collections.IEnumerator) - name: GetAwaiter(IEnumerator) - href: api/XRTK.Utilities.Async.AwaiterExtensions.html#XRTK_Utilities_Async_AwaiterExtensions_GetAwaiter_System_Collections_IEnumerator_ - commentId: M:XRTK.Utilities.Async.AwaiterExtensions.GetAwaiter(System.Collections.IEnumerator) - fullName: XRTK.Utilities.Async.AwaiterExtensions.GetAwaiter(System.Collections.IEnumerator) - nameWithType: AwaiterExtensions.GetAwaiter(IEnumerator) -- uid: XRTK.Utilities.Async.AwaiterExtensions.GetAwaiter(UnityEngine.AssetBundleCreateRequest) - name: GetAwaiter(AssetBundleCreateRequest) - href: api/XRTK.Utilities.Async.AwaiterExtensions.html#XRTK_Utilities_Async_AwaiterExtensions_GetAwaiter_UnityEngine_AssetBundleCreateRequest_ - commentId: M:XRTK.Utilities.Async.AwaiterExtensions.GetAwaiter(UnityEngine.AssetBundleCreateRequest) - fullName: XRTK.Utilities.Async.AwaiterExtensions.GetAwaiter(UnityEngine.AssetBundleCreateRequest) - nameWithType: AwaiterExtensions.GetAwaiter(AssetBundleCreateRequest) -- uid: XRTK.Utilities.Async.AwaiterExtensions.GetAwaiter(UnityEngine.AssetBundleRequest) - name: GetAwaiter(AssetBundleRequest) - href: api/XRTK.Utilities.Async.AwaiterExtensions.html#XRTK_Utilities_Async_AwaiterExtensions_GetAwaiter_UnityEngine_AssetBundleRequest_ - commentId: M:XRTK.Utilities.Async.AwaiterExtensions.GetAwaiter(UnityEngine.AssetBundleRequest) - fullName: XRTK.Utilities.Async.AwaiterExtensions.GetAwaiter(UnityEngine.AssetBundleRequest) - nameWithType: AwaiterExtensions.GetAwaiter(AssetBundleRequest) -- uid: XRTK.Utilities.Async.AwaiterExtensions.GetAwaiter(UnityEngine.AsyncOperation) - name: GetAwaiter(AsyncOperation) - href: api/XRTK.Utilities.Async.AwaiterExtensions.html#XRTK_Utilities_Async_AwaiterExtensions_GetAwaiter_UnityEngine_AsyncOperation_ - commentId: M:XRTK.Utilities.Async.AwaiterExtensions.GetAwaiter(UnityEngine.AsyncOperation) - fullName: XRTK.Utilities.Async.AwaiterExtensions.GetAwaiter(UnityEngine.AsyncOperation) - nameWithType: AwaiterExtensions.GetAwaiter(AsyncOperation) -- uid: XRTK.Utilities.Async.AwaiterExtensions.GetAwaiter(UnityEngine.ResourceRequest) - name: GetAwaiter(ResourceRequest) - href: api/XRTK.Utilities.Async.AwaiterExtensions.html#XRTK_Utilities_Async_AwaiterExtensions_GetAwaiter_UnityEngine_ResourceRequest_ - commentId: M:XRTK.Utilities.Async.AwaiterExtensions.GetAwaiter(UnityEngine.ResourceRequest) - fullName: XRTK.Utilities.Async.AwaiterExtensions.GetAwaiter(UnityEngine.ResourceRequest) - nameWithType: AwaiterExtensions.GetAwaiter(ResourceRequest) -- uid: XRTK.Utilities.Async.AwaiterExtensions.GetAwaiter(UnityEngine.WaitForEndOfFrame) - name: GetAwaiter(WaitForEndOfFrame) - href: api/XRTK.Utilities.Async.AwaiterExtensions.html#XRTK_Utilities_Async_AwaiterExtensions_GetAwaiter_UnityEngine_WaitForEndOfFrame_ - commentId: M:XRTK.Utilities.Async.AwaiterExtensions.GetAwaiter(UnityEngine.WaitForEndOfFrame) - fullName: XRTK.Utilities.Async.AwaiterExtensions.GetAwaiter(UnityEngine.WaitForEndOfFrame) - nameWithType: AwaiterExtensions.GetAwaiter(WaitForEndOfFrame) -- uid: XRTK.Utilities.Async.AwaiterExtensions.GetAwaiter(UnityEngine.WaitForFixedUpdate) - name: GetAwaiter(WaitForFixedUpdate) - href: api/XRTK.Utilities.Async.AwaiterExtensions.html#XRTK_Utilities_Async_AwaiterExtensions_GetAwaiter_UnityEngine_WaitForFixedUpdate_ - commentId: M:XRTK.Utilities.Async.AwaiterExtensions.GetAwaiter(UnityEngine.WaitForFixedUpdate) - fullName: XRTK.Utilities.Async.AwaiterExtensions.GetAwaiter(UnityEngine.WaitForFixedUpdate) - nameWithType: AwaiterExtensions.GetAwaiter(WaitForFixedUpdate) -- uid: XRTK.Utilities.Async.AwaiterExtensions.GetAwaiter(UnityEngine.WaitForSeconds) - name: GetAwaiter(WaitForSeconds) - href: api/XRTK.Utilities.Async.AwaiterExtensions.html#XRTK_Utilities_Async_AwaiterExtensions_GetAwaiter_UnityEngine_WaitForSeconds_ - commentId: M:XRTK.Utilities.Async.AwaiterExtensions.GetAwaiter(UnityEngine.WaitForSeconds) - fullName: XRTK.Utilities.Async.AwaiterExtensions.GetAwaiter(UnityEngine.WaitForSeconds) - nameWithType: AwaiterExtensions.GetAwaiter(WaitForSeconds) -- uid: XRTK.Utilities.Async.AwaiterExtensions.GetAwaiter(UnityEngine.WaitForSecondsRealtime) - name: GetAwaiter(WaitForSecondsRealtime) - href: api/XRTK.Utilities.Async.AwaiterExtensions.html#XRTK_Utilities_Async_AwaiterExtensions_GetAwaiter_UnityEngine_WaitForSecondsRealtime_ - commentId: M:XRTK.Utilities.Async.AwaiterExtensions.GetAwaiter(UnityEngine.WaitForSecondsRealtime) - fullName: XRTK.Utilities.Async.AwaiterExtensions.GetAwaiter(UnityEngine.WaitForSecondsRealtime) - nameWithType: AwaiterExtensions.GetAwaiter(WaitForSecondsRealtime) -- uid: XRTK.Utilities.Async.AwaiterExtensions.GetAwaiter(UnityEngine.WaitUntil) - name: GetAwaiter(WaitUntil) - href: api/XRTK.Utilities.Async.AwaiterExtensions.html#XRTK_Utilities_Async_AwaiterExtensions_GetAwaiter_UnityEngine_WaitUntil_ - commentId: M:XRTK.Utilities.Async.AwaiterExtensions.GetAwaiter(UnityEngine.WaitUntil) - fullName: XRTK.Utilities.Async.AwaiterExtensions.GetAwaiter(UnityEngine.WaitUntil) - nameWithType: AwaiterExtensions.GetAwaiter(WaitUntil) -- uid: XRTK.Utilities.Async.AwaiterExtensions.GetAwaiter(UnityEngine.WaitWhile) - name: GetAwaiter(WaitWhile) - href: api/XRTK.Utilities.Async.AwaiterExtensions.html#XRTK_Utilities_Async_AwaiterExtensions_GetAwaiter_UnityEngine_WaitWhile_ - commentId: M:XRTK.Utilities.Async.AwaiterExtensions.GetAwaiter(UnityEngine.WaitWhile) - fullName: XRTK.Utilities.Async.AwaiterExtensions.GetAwaiter(UnityEngine.WaitWhile) - nameWithType: AwaiterExtensions.GetAwaiter(WaitWhile) -- uid: XRTK.Utilities.Async.AwaiterExtensions.GetAwaiter(XRTK.Utilities.Async.AwaitYieldInstructions.BackgroundThread) - name: GetAwaiter(BackgroundThread) - href: api/XRTK.Utilities.Async.AwaiterExtensions.html#XRTK_Utilities_Async_AwaiterExtensions_GetAwaiter_XRTK_Utilities_Async_AwaitYieldInstructions_BackgroundThread_ - commentId: M:XRTK.Utilities.Async.AwaiterExtensions.GetAwaiter(XRTK.Utilities.Async.AwaitYieldInstructions.BackgroundThread) - fullName: XRTK.Utilities.Async.AwaiterExtensions.GetAwaiter(XRTK.Utilities.Async.AwaitYieldInstructions.BackgroundThread) - nameWithType: AwaiterExtensions.GetAwaiter(BackgroundThread) -- uid: XRTK.Utilities.Async.AwaiterExtensions.GetAwaiter(XRTK.Utilities.Async.AwaitYieldInstructions.UnityMainThread) - name: GetAwaiter(UnityMainThread) - href: api/XRTK.Utilities.Async.AwaiterExtensions.html#XRTK_Utilities_Async_AwaiterExtensions_GetAwaiter_XRTK_Utilities_Async_AwaitYieldInstructions_UnityMainThread_ - commentId: M:XRTK.Utilities.Async.AwaiterExtensions.GetAwaiter(XRTK.Utilities.Async.AwaitYieldInstructions.UnityMainThread) - fullName: XRTK.Utilities.Async.AwaiterExtensions.GetAwaiter(XRTK.Utilities.Async.AwaitYieldInstructions.UnityMainThread) - nameWithType: AwaiterExtensions.GetAwaiter(UnityMainThread) -- uid: XRTK.Utilities.Async.AwaiterExtensions.GetAwaiter* - name: GetAwaiter - href: api/XRTK.Utilities.Async.AwaiterExtensions.html#XRTK_Utilities_Async_AwaiterExtensions_GetAwaiter_ - commentId: Overload:XRTK.Utilities.Async.AwaiterExtensions.GetAwaiter - isSpec: "True" - fullName: XRTK.Utilities.Async.AwaiterExtensions.GetAwaiter - nameWithType: AwaiterExtensions.GetAwaiter -- uid: XRTK.Utilities.Async.AwaiterExtensions.GetAwaiter``1(System.Collections.Generic.IEnumerator{``0}) - name: GetAwaiter(IEnumerator) - href: api/XRTK.Utilities.Async.AwaiterExtensions.html#XRTK_Utilities_Async_AwaiterExtensions_GetAwaiter__1_System_Collections_Generic_IEnumerator___0__ - commentId: M:XRTK.Utilities.Async.AwaiterExtensions.GetAwaiter``1(System.Collections.Generic.IEnumerator{``0}) - name.vb: GetAwaiter(Of T)(IEnumerator(Of T)) - fullName: XRTK.Utilities.Async.AwaiterExtensions.GetAwaiter(System.Collections.Generic.IEnumerator) - fullName.vb: XRTK.Utilities.Async.AwaiterExtensions.GetAwaiter(Of T)(System.Collections.Generic.IEnumerator(Of T)) - nameWithType: AwaiterExtensions.GetAwaiter(IEnumerator) - nameWithType.vb: AwaiterExtensions.GetAwaiter(Of T)(IEnumerator(Of T)) -- uid: XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter - name: AwaiterExtensions.SimpleCoroutineAwaiter - href: api/XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter.html - commentId: T:XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter - fullName: XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter - nameWithType: AwaiterExtensions.SimpleCoroutineAwaiter -- uid: XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter.Complete(System.Exception) - name: Complete(Exception) - href: api/XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter.html#XRTK_Utilities_Async_AwaiterExtensions_SimpleCoroutineAwaiter_Complete_System_Exception_ - commentId: M:XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter.Complete(System.Exception) - fullName: XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter.Complete(System.Exception) - nameWithType: AwaiterExtensions.SimpleCoroutineAwaiter.Complete(Exception) -- uid: XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter.Complete* - name: Complete - href: api/XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter.html#XRTK_Utilities_Async_AwaiterExtensions_SimpleCoroutineAwaiter_Complete_ - commentId: Overload:XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter.Complete - isSpec: "True" - fullName: XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter.Complete - nameWithType: AwaiterExtensions.SimpleCoroutineAwaiter.Complete -- uid: XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter.GetResult - name: GetResult() - href: api/XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter.html#XRTK_Utilities_Async_AwaiterExtensions_SimpleCoroutineAwaiter_GetResult - commentId: M:XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter.GetResult - fullName: XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter.GetResult() - nameWithType: AwaiterExtensions.SimpleCoroutineAwaiter.GetResult() -- uid: XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter.GetResult* - name: GetResult - href: api/XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter.html#XRTK_Utilities_Async_AwaiterExtensions_SimpleCoroutineAwaiter_GetResult_ - commentId: Overload:XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter.GetResult - isSpec: "True" - fullName: XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter.GetResult - nameWithType: AwaiterExtensions.SimpleCoroutineAwaiter.GetResult -- uid: XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter.IsCompleted - name: IsCompleted - href: api/XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter.html#XRTK_Utilities_Async_AwaiterExtensions_SimpleCoroutineAwaiter_IsCompleted - commentId: P:XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter.IsCompleted - fullName: XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter.IsCompleted - nameWithType: AwaiterExtensions.SimpleCoroutineAwaiter.IsCompleted -- uid: XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter.IsCompleted* - name: IsCompleted - href: api/XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter.html#XRTK_Utilities_Async_AwaiterExtensions_SimpleCoroutineAwaiter_IsCompleted_ - commentId: Overload:XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter.IsCompleted - isSpec: "True" - fullName: XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter.IsCompleted - nameWithType: AwaiterExtensions.SimpleCoroutineAwaiter.IsCompleted -- uid: XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter.System#Runtime#CompilerServices#INotifyCompletion#OnCompleted(System.Action) - name: INotifyCompletion.OnCompleted(Action) - href: api/XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter.html#XRTK_Utilities_Async_AwaiterExtensions_SimpleCoroutineAwaiter_System_Runtime_CompilerServices_INotifyCompletion_OnCompleted_System_Action_ - commentId: M:XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter.System#Runtime#CompilerServices#INotifyCompletion#OnCompleted(System.Action) - name.vb: System.Runtime.CompilerServices.INotifyCompletion.OnCompleted(Action) - fullName: XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter.System.Runtime.CompilerServices.INotifyCompletion.OnCompleted(System.Action) - nameWithType: AwaiterExtensions.SimpleCoroutineAwaiter.INotifyCompletion.OnCompleted(Action) - nameWithType.vb: AwaiterExtensions.SimpleCoroutineAwaiter.System.Runtime.CompilerServices.INotifyCompletion.OnCompleted(Action) -- uid: XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter.System#Runtime#CompilerServices#INotifyCompletion#OnCompleted* - name: INotifyCompletion.OnCompleted - href: api/XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter.html#XRTK_Utilities_Async_AwaiterExtensions_SimpleCoroutineAwaiter_System_Runtime_CompilerServices_INotifyCompletion_OnCompleted_ - commentId: Overload:XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter.System#Runtime#CompilerServices#INotifyCompletion#OnCompleted - isSpec: "True" - name.vb: System.Runtime.CompilerServices.INotifyCompletion.OnCompleted - fullName: XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter.System.Runtime.CompilerServices.INotifyCompletion.OnCompleted - nameWithType: AwaiterExtensions.SimpleCoroutineAwaiter.INotifyCompletion.OnCompleted - nameWithType.vb: AwaiterExtensions.SimpleCoroutineAwaiter.System.Runtime.CompilerServices.INotifyCompletion.OnCompleted -- uid: XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter`1 - name: AwaiterExtensions.SimpleCoroutineAwaiter - href: api/XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter-1.html - commentId: T:XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter`1 - name.vb: AwaiterExtensions.SimpleCoroutineAwaiter(Of T) - fullName: XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter - fullName.vb: XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter(Of T) - nameWithType: AwaiterExtensions.SimpleCoroutineAwaiter - nameWithType.vb: AwaiterExtensions.SimpleCoroutineAwaiter(Of T) -- uid: XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter`1.Complete(`0,System.Exception) - name: Complete(T, Exception) - href: api/XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter-1.html#XRTK_Utilities_Async_AwaiterExtensions_SimpleCoroutineAwaiter_1_Complete__0_System_Exception_ - commentId: M:XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter`1.Complete(`0,System.Exception) - fullName: XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter.Complete(T, System.Exception) - fullName.vb: XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter(Of T).Complete(T, System.Exception) - nameWithType: AwaiterExtensions.SimpleCoroutineAwaiter.Complete(T, Exception) - nameWithType.vb: AwaiterExtensions.SimpleCoroutineAwaiter(Of T).Complete(T, Exception) -- uid: XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter`1.Complete* - name: Complete - href: api/XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter-1.html#XRTK_Utilities_Async_AwaiterExtensions_SimpleCoroutineAwaiter_1_Complete_ - commentId: Overload:XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter`1.Complete - isSpec: "True" - fullName: XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter.Complete - fullName.vb: XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter(Of T).Complete - nameWithType: AwaiterExtensions.SimpleCoroutineAwaiter.Complete - nameWithType.vb: AwaiterExtensions.SimpleCoroutineAwaiter(Of T).Complete -- uid: XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter`1.GetResult - name: GetResult() - href: api/XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter-1.html#XRTK_Utilities_Async_AwaiterExtensions_SimpleCoroutineAwaiter_1_GetResult - commentId: M:XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter`1.GetResult - fullName: XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter.GetResult() - fullName.vb: XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter(Of T).GetResult() - nameWithType: AwaiterExtensions.SimpleCoroutineAwaiter.GetResult() - nameWithType.vb: AwaiterExtensions.SimpleCoroutineAwaiter(Of T).GetResult() -- uid: XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter`1.GetResult* - name: GetResult - href: api/XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter-1.html#XRTK_Utilities_Async_AwaiterExtensions_SimpleCoroutineAwaiter_1_GetResult_ - commentId: Overload:XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter`1.GetResult - isSpec: "True" - fullName: XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter.GetResult - fullName.vb: XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter(Of T).GetResult - nameWithType: AwaiterExtensions.SimpleCoroutineAwaiter.GetResult - nameWithType.vb: AwaiterExtensions.SimpleCoroutineAwaiter(Of T).GetResult -- uid: XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter`1.IsCompleted - name: IsCompleted - href: api/XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter-1.html#XRTK_Utilities_Async_AwaiterExtensions_SimpleCoroutineAwaiter_1_IsCompleted - commentId: P:XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter`1.IsCompleted - fullName: XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter.IsCompleted - fullName.vb: XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter(Of T).IsCompleted - nameWithType: AwaiterExtensions.SimpleCoroutineAwaiter.IsCompleted - nameWithType.vb: AwaiterExtensions.SimpleCoroutineAwaiter(Of T).IsCompleted -- uid: XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter`1.IsCompleted* - name: IsCompleted - href: api/XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter-1.html#XRTK_Utilities_Async_AwaiterExtensions_SimpleCoroutineAwaiter_1_IsCompleted_ - commentId: Overload:XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter`1.IsCompleted - isSpec: "True" - fullName: XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter.IsCompleted - fullName.vb: XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter(Of T).IsCompleted - nameWithType: AwaiterExtensions.SimpleCoroutineAwaiter.IsCompleted - nameWithType.vb: AwaiterExtensions.SimpleCoroutineAwaiter(Of T).IsCompleted -- uid: XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter`1.System#Runtime#CompilerServices#INotifyCompletion#OnCompleted(System.Action) - name: INotifyCompletion.OnCompleted(Action) - href: api/XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter-1.html#XRTK_Utilities_Async_AwaiterExtensions_SimpleCoroutineAwaiter_1_System_Runtime_CompilerServices_INotifyCompletion_OnCompleted_System_Action_ - commentId: M:XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter`1.System#Runtime#CompilerServices#INotifyCompletion#OnCompleted(System.Action) - name.vb: System.Runtime.CompilerServices.INotifyCompletion.OnCompleted(Action) - fullName: XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter.System.Runtime.CompilerServices.INotifyCompletion.OnCompleted(System.Action) - fullName.vb: XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter(Of T).System.Runtime.CompilerServices.INotifyCompletion.OnCompleted(System.Action) - nameWithType: AwaiterExtensions.SimpleCoroutineAwaiter.INotifyCompletion.OnCompleted(Action) - nameWithType.vb: AwaiterExtensions.SimpleCoroutineAwaiter(Of T).System.Runtime.CompilerServices.INotifyCompletion.OnCompleted(Action) -- uid: XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter`1.System#Runtime#CompilerServices#INotifyCompletion#OnCompleted* - name: INotifyCompletion.OnCompleted - href: api/XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter-1.html#XRTK_Utilities_Async_AwaiterExtensions_SimpleCoroutineAwaiter_1_System_Runtime_CompilerServices_INotifyCompletion_OnCompleted_ - commentId: Overload:XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter`1.System#Runtime#CompilerServices#INotifyCompletion#OnCompleted - isSpec: "True" - name.vb: System.Runtime.CompilerServices.INotifyCompletion.OnCompleted - fullName: XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter.System.Runtime.CompilerServices.INotifyCompletion.OnCompleted - fullName.vb: XRTK.Utilities.Async.AwaiterExtensions.SimpleCoroutineAwaiter(Of T).System.Runtime.CompilerServices.INotifyCompletion.OnCompleted - nameWithType: AwaiterExtensions.SimpleCoroutineAwaiter.INotifyCompletion.OnCompleted - nameWithType.vb: AwaiterExtensions.SimpleCoroutineAwaiter(Of T).System.Runtime.CompilerServices.INotifyCompletion.OnCompleted -- uid: XRTK.Utilities.Async.Awaiters - name: Awaiters - href: api/XRTK.Utilities.Async.Awaiters.html - commentId: T:XRTK.Utilities.Async.Awaiters - fullName: XRTK.Utilities.Async.Awaiters - nameWithType: Awaiters -- uid: XRTK.Utilities.Async.Awaiters.BackgroundThread - name: BackgroundThread - href: api/XRTK.Utilities.Async.Awaiters.html#XRTK_Utilities_Async_Awaiters_BackgroundThread - commentId: P:XRTK.Utilities.Async.Awaiters.BackgroundThread - fullName: XRTK.Utilities.Async.Awaiters.BackgroundThread - nameWithType: Awaiters.BackgroundThread -- uid: XRTK.Utilities.Async.Awaiters.BackgroundThread* - name: BackgroundThread - href: api/XRTK.Utilities.Async.Awaiters.html#XRTK_Utilities_Async_Awaiters_BackgroundThread_ - commentId: Overload:XRTK.Utilities.Async.Awaiters.BackgroundThread - isSpec: "True" - fullName: XRTK.Utilities.Async.Awaiters.BackgroundThread - nameWithType: Awaiters.BackgroundThread -- uid: XRTK.Utilities.Async.Awaiters.UnityMainThread - name: UnityMainThread - href: api/XRTK.Utilities.Async.Awaiters.html#XRTK_Utilities_Async_Awaiters_UnityMainThread - commentId: P:XRTK.Utilities.Async.Awaiters.UnityMainThread - fullName: XRTK.Utilities.Async.Awaiters.UnityMainThread - nameWithType: Awaiters.UnityMainThread -- uid: XRTK.Utilities.Async.Awaiters.UnityMainThread* - name: UnityMainThread - href: api/XRTK.Utilities.Async.Awaiters.html#XRTK_Utilities_Async_Awaiters_UnityMainThread_ - commentId: Overload:XRTK.Utilities.Async.Awaiters.UnityMainThread - isSpec: "True" - fullName: XRTK.Utilities.Async.Awaiters.UnityMainThread - nameWithType: Awaiters.UnityMainThread -- uid: XRTK.Utilities.Async.Awaiters.WaitUntil* - name: WaitUntil - href: api/XRTK.Utilities.Async.Awaiters.html#XRTK_Utilities_Async_Awaiters_WaitUntil_ - commentId: Overload:XRTK.Utilities.Async.Awaiters.WaitUntil - isSpec: "True" - fullName: XRTK.Utilities.Async.Awaiters.WaitUntil - nameWithType: Awaiters.WaitUntil -- uid: XRTK.Utilities.Async.Awaiters.WaitUntil``1(``0,System.Func{``0,System.Boolean},System.Int32) - name: WaitUntil(T, Func, Int32) - href: api/XRTK.Utilities.Async.Awaiters.html#XRTK_Utilities_Async_Awaiters_WaitUntil__1___0_System_Func___0_System_Boolean__System_Int32_ - commentId: M:XRTK.Utilities.Async.Awaiters.WaitUntil``1(``0,System.Func{``0,System.Boolean},System.Int32) - name.vb: WaitUntil(Of T)(T, Func(Of T, Boolean), Int32) - fullName: XRTK.Utilities.Async.Awaiters.WaitUntil(T, System.Func, System.Int32) - fullName.vb: XRTK.Utilities.Async.Awaiters.WaitUntil(Of T)(T, System.Func(Of T, System.Boolean), System.Int32) - nameWithType: Awaiters.WaitUntil(T, Func, Int32) - nameWithType.vb: Awaiters.WaitUntil(Of T)(T, Func(Of T, Boolean), Int32) -- uid: XRTK.Utilities.Async.AwaitYieldInstructions - name: XRTK.Utilities.Async.AwaitYieldInstructions - href: api/XRTK.Utilities.Async.AwaitYieldInstructions.html - commentId: N:XRTK.Utilities.Async.AwaitYieldInstructions - fullName: XRTK.Utilities.Async.AwaitYieldInstructions - nameWithType: XRTK.Utilities.Async.AwaitYieldInstructions -- uid: XRTK.Utilities.Async.AwaitYieldInstructions.BackgroundThread - name: BackgroundThread - href: api/XRTK.Utilities.Async.AwaitYieldInstructions.BackgroundThread.html - commentId: T:XRTK.Utilities.Async.AwaitYieldInstructions.BackgroundThread - fullName: XRTK.Utilities.Async.AwaitYieldInstructions.BackgroundThread - nameWithType: BackgroundThread -- uid: XRTK.Utilities.Async.AwaitYieldInstructions.BackgroundThread.GetAwaiter - name: GetAwaiter() - href: api/XRTK.Utilities.Async.AwaitYieldInstructions.BackgroundThread.html#XRTK_Utilities_Async_AwaitYieldInstructions_BackgroundThread_GetAwaiter - commentId: M:XRTK.Utilities.Async.AwaitYieldInstructions.BackgroundThread.GetAwaiter - fullName: XRTK.Utilities.Async.AwaitYieldInstructions.BackgroundThread.GetAwaiter() - nameWithType: BackgroundThread.GetAwaiter() -- uid: XRTK.Utilities.Async.AwaitYieldInstructions.BackgroundThread.GetAwaiter* - name: GetAwaiter - href: api/XRTK.Utilities.Async.AwaitYieldInstructions.BackgroundThread.html#XRTK_Utilities_Async_AwaitYieldInstructions_BackgroundThread_GetAwaiter_ - commentId: Overload:XRTK.Utilities.Async.AwaitYieldInstructions.BackgroundThread.GetAwaiter - isSpec: "True" - fullName: XRTK.Utilities.Async.AwaitYieldInstructions.BackgroundThread.GetAwaiter - nameWithType: BackgroundThread.GetAwaiter -- uid: XRTK.Utilities.Async.AwaitYieldInstructions.UnityMainThread - name: UnityMainThread - href: api/XRTK.Utilities.Async.AwaitYieldInstructions.UnityMainThread.html - commentId: T:XRTK.Utilities.Async.AwaitYieldInstructions.UnityMainThread - fullName: XRTK.Utilities.Async.AwaitYieldInstructions.UnityMainThread - nameWithType: UnityMainThread -- uid: XRTK.Utilities.Async.AwaitYieldInstructions.UnityMainThread.keepWaiting - name: keepWaiting - href: api/XRTK.Utilities.Async.AwaitYieldInstructions.UnityMainThread.html#XRTK_Utilities_Async_AwaitYieldInstructions_UnityMainThread_keepWaiting - commentId: P:XRTK.Utilities.Async.AwaitYieldInstructions.UnityMainThread.keepWaiting - fullName: XRTK.Utilities.Async.AwaitYieldInstructions.UnityMainThread.keepWaiting - nameWithType: UnityMainThread.keepWaiting -- uid: XRTK.Utilities.Async.AwaitYieldInstructions.UnityMainThread.keepWaiting* - name: keepWaiting - href: api/XRTK.Utilities.Async.AwaitYieldInstructions.UnityMainThread.html#XRTK_Utilities_Async_AwaitYieldInstructions_UnityMainThread_keepWaiting_ - commentId: Overload:XRTK.Utilities.Async.AwaitYieldInstructions.UnityMainThread.keepWaiting - isSpec: "True" - fullName: XRTK.Utilities.Async.AwaitYieldInstructions.UnityMainThread.keepWaiting - nameWithType: UnityMainThread.keepWaiting -- uid: XRTK.Utilities.Async.Internal - name: XRTK.Utilities.Async.Internal - href: api/XRTK.Utilities.Async.Internal.html - commentId: N:XRTK.Utilities.Async.Internal - fullName: XRTK.Utilities.Async.Internal - nameWithType: XRTK.Utilities.Async.Internal -- uid: XRTK.Utilities.Async.Internal.SyncContextUtility - name: SyncContextUtility - href: api/XRTK.Utilities.Async.Internal.SyncContextUtility.html - commentId: T:XRTK.Utilities.Async.Internal.SyncContextUtility - fullName: XRTK.Utilities.Async.Internal.SyncContextUtility - nameWithType: SyncContextUtility -- uid: XRTK.Utilities.Async.Internal.SyncContextUtility.IsMainThread - name: IsMainThread - href: api/XRTK.Utilities.Async.Internal.SyncContextUtility.html#XRTK_Utilities_Async_Internal_SyncContextUtility_IsMainThread - commentId: P:XRTK.Utilities.Async.Internal.SyncContextUtility.IsMainThread - fullName: XRTK.Utilities.Async.Internal.SyncContextUtility.IsMainThread - nameWithType: SyncContextUtility.IsMainThread -- uid: XRTK.Utilities.Async.Internal.SyncContextUtility.IsMainThread* - name: IsMainThread - href: api/XRTK.Utilities.Async.Internal.SyncContextUtility.html#XRTK_Utilities_Async_Internal_SyncContextUtility_IsMainThread_ - commentId: Overload:XRTK.Utilities.Async.Internal.SyncContextUtility.IsMainThread - isSpec: "True" - fullName: XRTK.Utilities.Async.Internal.SyncContextUtility.IsMainThread - nameWithType: SyncContextUtility.IsMainThread -- uid: XRTK.Utilities.Async.Internal.SyncContextUtility.UnitySynchronizationContext - name: UnitySynchronizationContext - href: api/XRTK.Utilities.Async.Internal.SyncContextUtility.html#XRTK_Utilities_Async_Internal_SyncContextUtility_UnitySynchronizationContext - commentId: P:XRTK.Utilities.Async.Internal.SyncContextUtility.UnitySynchronizationContext - fullName: XRTK.Utilities.Async.Internal.SyncContextUtility.UnitySynchronizationContext - nameWithType: SyncContextUtility.UnitySynchronizationContext -- uid: XRTK.Utilities.Async.Internal.SyncContextUtility.UnitySynchronizationContext* - name: UnitySynchronizationContext - href: api/XRTK.Utilities.Async.Internal.SyncContextUtility.html#XRTK_Utilities_Async_Internal_SyncContextUtility_UnitySynchronizationContext_ - commentId: Overload:XRTK.Utilities.Async.Internal.SyncContextUtility.UnitySynchronizationContext - isSpec: "True" - fullName: XRTK.Utilities.Async.Internal.SyncContextUtility.UnitySynchronizationContext - nameWithType: SyncContextUtility.UnitySynchronizationContext -- uid: XRTK.Utilities.Async.Internal.SyncContextUtility.UnityThreadId - name: UnityThreadId - href: api/XRTK.Utilities.Async.Internal.SyncContextUtility.html#XRTK_Utilities_Async_Internal_SyncContextUtility_UnityThreadId - commentId: P:XRTK.Utilities.Async.Internal.SyncContextUtility.UnityThreadId - fullName: XRTK.Utilities.Async.Internal.SyncContextUtility.UnityThreadId - nameWithType: SyncContextUtility.UnityThreadId -- uid: XRTK.Utilities.Async.Internal.SyncContextUtility.UnityThreadId* - name: UnityThreadId - href: api/XRTK.Utilities.Async.Internal.SyncContextUtility.html#XRTK_Utilities_Async_Internal_SyncContextUtility_UnityThreadId_ - commentId: Overload:XRTK.Utilities.Async.Internal.SyncContextUtility.UnityThreadId - isSpec: "True" - fullName: XRTK.Utilities.Async.Internal.SyncContextUtility.UnityThreadId - nameWithType: SyncContextUtility.UnityThreadId -- uid: XRTK.Utilities.BoundsCache - name: BoundsCache - href: api/XRTK.Utilities.BoundsCache.html - commentId: T:XRTK.Utilities.BoundsCache - fullName: XRTK.Utilities.BoundsCache - nameWithType: BoundsCache -- uid: XRTK.Utilities.BoundsCache.Bounds - name: Bounds - href: api/XRTK.Utilities.BoundsCache.html#XRTK_Utilities_BoundsCache_Bounds - commentId: P:XRTK.Utilities.BoundsCache.Bounds - fullName: XRTK.Utilities.BoundsCache.Bounds - nameWithType: BoundsCache.Bounds -- uid: XRTK.Utilities.BoundsCache.Bounds* - name: Bounds - href: api/XRTK.Utilities.BoundsCache.html#XRTK_Utilities_BoundsCache_Bounds_ - commentId: Overload:XRTK.Utilities.BoundsCache.Bounds - isSpec: "True" - fullName: XRTK.Utilities.BoundsCache.Bounds - nameWithType: BoundsCache.Bounds -- uid: XRTK.Utilities.BoundsCache.BoundsCornerPoints - name: BoundsCornerPoints - href: api/XRTK.Utilities.BoundsCache.html#XRTK_Utilities_BoundsCache_BoundsCornerPoints - commentId: P:XRTK.Utilities.BoundsCache.BoundsCornerPoints - fullName: XRTK.Utilities.BoundsCache.BoundsCornerPoints - nameWithType: BoundsCache.BoundsCornerPoints -- uid: XRTK.Utilities.BoundsCache.BoundsCornerPoints* - name: BoundsCornerPoints - href: api/XRTK.Utilities.BoundsCache.html#XRTK_Utilities_BoundsCache_BoundsCornerPoints_ - commentId: Overload:XRTK.Utilities.BoundsCache.BoundsCornerPoints - isSpec: "True" - fullName: XRTK.Utilities.BoundsCache.BoundsCornerPoints - nameWithType: BoundsCache.BoundsCornerPoints -- uid: XRTK.Utilities.BoundsCache.Colliders - name: Colliders - href: api/XRTK.Utilities.BoundsCache.html#XRTK_Utilities_BoundsCache_Colliders - commentId: P:XRTK.Utilities.BoundsCache.Colliders - fullName: XRTK.Utilities.BoundsCache.Colliders - nameWithType: BoundsCache.Colliders -- uid: XRTK.Utilities.BoundsCache.Colliders* - name: Colliders - href: api/XRTK.Utilities.BoundsCache.html#XRTK_Utilities_BoundsCache_Colliders_ - commentId: Overload:XRTK.Utilities.BoundsCache.Colliders - isSpec: "True" - fullName: XRTK.Utilities.BoundsCache.Colliders - nameWithType: BoundsCache.Colliders -- uid: XRTK.Utilities.BoundsCache.Renderers - name: Renderers - href: api/XRTK.Utilities.BoundsCache.html#XRTK_Utilities_BoundsCache_Renderers - commentId: P:XRTK.Utilities.BoundsCache.Renderers - fullName: XRTK.Utilities.BoundsCache.Renderers - nameWithType: BoundsCache.Renderers -- uid: XRTK.Utilities.BoundsCache.Renderers* - name: Renderers - href: api/XRTK.Utilities.BoundsCache.html#XRTK_Utilities_BoundsCache_Renderers_ - commentId: Overload:XRTK.Utilities.BoundsCache.Renderers - isSpec: "True" - fullName: XRTK.Utilities.BoundsCache.Renderers - nameWithType: BoundsCache.Renderers -- uid: XRTK.Utilities.CalibrationSpace - name: CalibrationSpace - href: api/XRTK.Utilities.CalibrationSpace.html - commentId: T:XRTK.Utilities.CalibrationSpace - fullName: XRTK.Utilities.CalibrationSpace - nameWithType: CalibrationSpace -- uid: XRTK.Utilities.CameraCache - name: CameraCache - href: api/XRTK.Utilities.CameraCache.html - commentId: T:XRTK.Utilities.CameraCache - fullName: XRTK.Utilities.CameraCache - nameWithType: CameraCache -- uid: XRTK.Utilities.CameraCache.Main - name: Main - href: api/XRTK.Utilities.CameraCache.html#XRTK_Utilities_CameraCache_Main - commentId: P:XRTK.Utilities.CameraCache.Main - fullName: XRTK.Utilities.CameraCache.Main - nameWithType: CameraCache.Main -- uid: XRTK.Utilities.CameraCache.Main* - name: Main - href: api/XRTK.Utilities.CameraCache.html#XRTK_Utilities_CameraCache_Main_ - commentId: Overload:XRTK.Utilities.CameraCache.Main - isSpec: "True" - fullName: XRTK.Utilities.CameraCache.Main - nameWithType: CameraCache.Main -- uid: XRTK.Utilities.CameraCache.Refresh(UnityEngine.Camera) - name: Refresh(Camera) - href: api/XRTK.Utilities.CameraCache.html#XRTK_Utilities_CameraCache_Refresh_UnityEngine_Camera_ - commentId: M:XRTK.Utilities.CameraCache.Refresh(UnityEngine.Camera) - fullName: XRTK.Utilities.CameraCache.Refresh(UnityEngine.Camera) - nameWithType: CameraCache.Refresh(Camera) -- uid: XRTK.Utilities.CameraCache.Refresh* - name: Refresh - href: api/XRTK.Utilities.CameraCache.html#XRTK_Utilities_CameraCache_Refresh_ - commentId: Overload:XRTK.Utilities.CameraCache.Refresh - isSpec: "True" - fullName: XRTK.Utilities.CameraCache.Refresh - nameWithType: CameraCache.Refresh -- uid: XRTK.Utilities.CanvasUtility - name: CanvasUtility - href: api/XRTK.Utilities.CanvasUtility.html - commentId: T:XRTK.Utilities.CanvasUtility - fullName: XRTK.Utilities.CanvasUtility - nameWithType: CanvasUtility -- uid: XRTK.Utilities.CanvasUtility.Canvas - name: Canvas - href: api/XRTK.Utilities.CanvasUtility.html#XRTK_Utilities_CanvasUtility_Canvas - commentId: P:XRTK.Utilities.CanvasUtility.Canvas - fullName: XRTK.Utilities.CanvasUtility.Canvas - nameWithType: CanvasUtility.Canvas -- uid: XRTK.Utilities.CanvasUtility.Canvas* - name: Canvas - href: api/XRTK.Utilities.CanvasUtility.html#XRTK_Utilities_CanvasUtility_Canvas_ - commentId: Overload:XRTK.Utilities.CanvasUtility.Canvas - isSpec: "True" - fullName: XRTK.Utilities.CanvasUtility.Canvas - nameWithType: CanvasUtility.Canvas -- uid: XRTK.Utilities.DebugUtilities - name: DebugUtilities - href: api/XRTK.Utilities.DebugUtilities.html - commentId: T:XRTK.Utilities.DebugUtilities - fullName: XRTK.Utilities.DebugUtilities - nameWithType: DebugUtilities -- uid: XRTK.Utilities.DebugUtilities.DrawPoint(UnityEngine.Vector3,UnityEngine.Color,System.Single) - name: DrawPoint(Vector3, Color, Single) - href: api/XRTK.Utilities.DebugUtilities.html#XRTK_Utilities_DebugUtilities_DrawPoint_UnityEngine_Vector3_UnityEngine_Color_System_Single_ - commentId: M:XRTK.Utilities.DebugUtilities.DrawPoint(UnityEngine.Vector3,UnityEngine.Color,System.Single) - fullName: XRTK.Utilities.DebugUtilities.DrawPoint(UnityEngine.Vector3, UnityEngine.Color, System.Single) - nameWithType: DebugUtilities.DrawPoint(Vector3, Color, Single) -- uid: XRTK.Utilities.DebugUtilities.DrawPoint(UnityEngine.Vector3,UnityEngine.Quaternion,UnityEngine.Color,System.Single) - name: DrawPoint(Vector3, Quaternion, Color, Single) - href: api/XRTK.Utilities.DebugUtilities.html#XRTK_Utilities_DebugUtilities_DrawPoint_UnityEngine_Vector3_UnityEngine_Quaternion_UnityEngine_Color_System_Single_ - commentId: M:XRTK.Utilities.DebugUtilities.DrawPoint(UnityEngine.Vector3,UnityEngine.Quaternion,UnityEngine.Color,System.Single) - fullName: XRTK.Utilities.DebugUtilities.DrawPoint(UnityEngine.Vector3, UnityEngine.Quaternion, UnityEngine.Color, System.Single) - nameWithType: DebugUtilities.DrawPoint(Vector3, Quaternion, Color, Single) -- uid: XRTK.Utilities.DebugUtilities.DrawPoint* - name: DrawPoint - href: api/XRTK.Utilities.DebugUtilities.html#XRTK_Utilities_DebugUtilities_DrawPoint_ - commentId: Overload:XRTK.Utilities.DebugUtilities.DrawPoint - isSpec: "True" - fullName: XRTK.Utilities.DebugUtilities.DrawPoint - nameWithType: DebugUtilities.DrawPoint -- uid: XRTK.Utilities.EdgeUtilities - name: EdgeUtilities - href: api/XRTK.Utilities.EdgeUtilities.html - commentId: T:XRTK.Utilities.EdgeUtilities - fullName: XRTK.Utilities.EdgeUtilities - nameWithType: EdgeUtilities -- uid: XRTK.Utilities.EdgeUtilities.GetIntersectionPoint(XRTK.Definitions.BoundarySystem.Edge,XRTK.Definitions.BoundarySystem.Edge) - name: GetIntersectionPoint(Edge, Edge) - href: api/XRTK.Utilities.EdgeUtilities.html#XRTK_Utilities_EdgeUtilities_GetIntersectionPoint_XRTK_Definitions_BoundarySystem_Edge_XRTK_Definitions_BoundarySystem_Edge_ - commentId: M:XRTK.Utilities.EdgeUtilities.GetIntersectionPoint(XRTK.Definitions.BoundarySystem.Edge,XRTK.Definitions.BoundarySystem.Edge) - fullName: XRTK.Utilities.EdgeUtilities.GetIntersectionPoint(XRTK.Definitions.BoundarySystem.Edge, XRTK.Definitions.BoundarySystem.Edge) - nameWithType: EdgeUtilities.GetIntersectionPoint(Edge, Edge) -- uid: XRTK.Utilities.EdgeUtilities.GetIntersectionPoint* - name: GetIntersectionPoint - href: api/XRTK.Utilities.EdgeUtilities.html#XRTK_Utilities_EdgeUtilities_GetIntersectionPoint_ - commentId: Overload:XRTK.Utilities.EdgeUtilities.GetIntersectionPoint - isSpec: "True" - fullName: XRTK.Utilities.EdgeUtilities.GetIntersectionPoint - nameWithType: EdgeUtilities.GetIntersectionPoint -- uid: XRTK.Utilities.EdgeUtilities.InvalidPoint - name: InvalidPoint - href: api/XRTK.Utilities.EdgeUtilities.html#XRTK_Utilities_EdgeUtilities_InvalidPoint - commentId: F:XRTK.Utilities.EdgeUtilities.InvalidPoint - fullName: XRTK.Utilities.EdgeUtilities.InvalidPoint - nameWithType: EdgeUtilities.InvalidPoint -- uid: XRTK.Utilities.EdgeUtilities.IsInsideBoundary(XRTK.Definitions.BoundarySystem.Edge[],UnityEngine.Vector2) - name: IsInsideBoundary(Edge[], Vector2) - href: api/XRTK.Utilities.EdgeUtilities.html#XRTK_Utilities_EdgeUtilities_IsInsideBoundary_XRTK_Definitions_BoundarySystem_Edge___UnityEngine_Vector2_ - commentId: M:XRTK.Utilities.EdgeUtilities.IsInsideBoundary(XRTK.Definitions.BoundarySystem.Edge[],UnityEngine.Vector2) - name.vb: IsInsideBoundary(Edge(), Vector2) - fullName: XRTK.Utilities.EdgeUtilities.IsInsideBoundary(XRTK.Definitions.BoundarySystem.Edge[], UnityEngine.Vector2) - fullName.vb: XRTK.Utilities.EdgeUtilities.IsInsideBoundary(XRTK.Definitions.BoundarySystem.Edge(), UnityEngine.Vector2) - nameWithType: EdgeUtilities.IsInsideBoundary(Edge[], Vector2) - nameWithType.vb: EdgeUtilities.IsInsideBoundary(Edge(), Vector2) -- uid: XRTK.Utilities.EdgeUtilities.IsInsideBoundary* - name: IsInsideBoundary - href: api/XRTK.Utilities.EdgeUtilities.html#XRTK_Utilities_EdgeUtilities_IsInsideBoundary_ - commentId: Overload:XRTK.Utilities.EdgeUtilities.IsInsideBoundary - isSpec: "True" - fullName: XRTK.Utilities.EdgeUtilities.IsInsideBoundary - nameWithType: EdgeUtilities.IsInsideBoundary -- uid: XRTK.Utilities.EdgeUtilities.IsValidPoint(UnityEngine.Vector2) - name: IsValidPoint(Vector2) - href: api/XRTK.Utilities.EdgeUtilities.html#XRTK_Utilities_EdgeUtilities_IsValidPoint_UnityEngine_Vector2_ - commentId: M:XRTK.Utilities.EdgeUtilities.IsValidPoint(UnityEngine.Vector2) - fullName: XRTK.Utilities.EdgeUtilities.IsValidPoint(UnityEngine.Vector2) - nameWithType: EdgeUtilities.IsValidPoint(Vector2) -- uid: XRTK.Utilities.EdgeUtilities.IsValidPoint* - name: IsValidPoint - href: api/XRTK.Utilities.EdgeUtilities.html#XRTK_Utilities_EdgeUtilities_IsValidPoint_ - commentId: Overload:XRTK.Utilities.EdgeUtilities.IsValidPoint - isSpec: "True" - fullName: XRTK.Utilities.EdgeUtilities.IsValidPoint - nameWithType: EdgeUtilities.IsValidPoint -- uid: XRTK.Utilities.FastSimplexNoise - name: FastSimplexNoise - href: api/XRTK.Utilities.FastSimplexNoise.html - commentId: T:XRTK.Utilities.FastSimplexNoise - fullName: XRTK.Utilities.FastSimplexNoise - nameWithType: FastSimplexNoise -- uid: XRTK.Utilities.FastSimplexNoise.#ctor - name: FastSimplexNoise() - href: api/XRTK.Utilities.FastSimplexNoise.html#XRTK_Utilities_FastSimplexNoise__ctor - commentId: M:XRTK.Utilities.FastSimplexNoise.#ctor - fullName: XRTK.Utilities.FastSimplexNoise.FastSimplexNoise() - nameWithType: FastSimplexNoise.FastSimplexNoise() -- uid: XRTK.Utilities.FastSimplexNoise.#ctor(System.Int64) - name: FastSimplexNoise(Int64) - href: api/XRTK.Utilities.FastSimplexNoise.html#XRTK_Utilities_FastSimplexNoise__ctor_System_Int64_ - commentId: M:XRTK.Utilities.FastSimplexNoise.#ctor(System.Int64) - fullName: XRTK.Utilities.FastSimplexNoise.FastSimplexNoise(System.Int64) - nameWithType: FastSimplexNoise.FastSimplexNoise(Int64) -- uid: XRTK.Utilities.FastSimplexNoise.#ctor* - name: FastSimplexNoise - href: api/XRTK.Utilities.FastSimplexNoise.html#XRTK_Utilities_FastSimplexNoise__ctor_ - commentId: Overload:XRTK.Utilities.FastSimplexNoise.#ctor - isSpec: "True" - fullName: XRTK.Utilities.FastSimplexNoise.FastSimplexNoise - nameWithType: FastSimplexNoise.FastSimplexNoise -- uid: XRTK.Utilities.FastSimplexNoise.Evaluate(System.Double,System.Double) - name: Evaluate(Double, Double) - href: api/XRTK.Utilities.FastSimplexNoise.html#XRTK_Utilities_FastSimplexNoise_Evaluate_System_Double_System_Double_ - commentId: M:XRTK.Utilities.FastSimplexNoise.Evaluate(System.Double,System.Double) - fullName: XRTK.Utilities.FastSimplexNoise.Evaluate(System.Double, System.Double) - nameWithType: FastSimplexNoise.Evaluate(Double, Double) -- uid: XRTK.Utilities.FastSimplexNoise.Evaluate(System.Double,System.Double,System.Double) - name: Evaluate(Double, Double, Double) - href: api/XRTK.Utilities.FastSimplexNoise.html#XRTK_Utilities_FastSimplexNoise_Evaluate_System_Double_System_Double_System_Double_ - commentId: M:XRTK.Utilities.FastSimplexNoise.Evaluate(System.Double,System.Double,System.Double) - fullName: XRTK.Utilities.FastSimplexNoise.Evaluate(System.Double, System.Double, System.Double) - nameWithType: FastSimplexNoise.Evaluate(Double, Double, Double) -- uid: XRTK.Utilities.FastSimplexNoise.Evaluate(System.Double,System.Double,System.Double,System.Double) - name: Evaluate(Double, Double, Double, Double) - href: api/XRTK.Utilities.FastSimplexNoise.html#XRTK_Utilities_FastSimplexNoise_Evaluate_System_Double_System_Double_System_Double_System_Double_ - commentId: M:XRTK.Utilities.FastSimplexNoise.Evaluate(System.Double,System.Double,System.Double,System.Double) - fullName: XRTK.Utilities.FastSimplexNoise.Evaluate(System.Double, System.Double, System.Double, System.Double) - nameWithType: FastSimplexNoise.Evaluate(Double, Double, Double, Double) -- uid: XRTK.Utilities.FastSimplexNoise.Evaluate* - name: Evaluate - href: api/XRTK.Utilities.FastSimplexNoise.html#XRTK_Utilities_FastSimplexNoise_Evaluate_ - commentId: Overload:XRTK.Utilities.FastSimplexNoise.Evaluate - isSpec: "True" - fullName: XRTK.Utilities.FastSimplexNoise.Evaluate - nameWithType: FastSimplexNoise.Evaluate -- uid: XRTK.Utilities.Gltf - name: XRTK.Utilities.Gltf - href: api/XRTK.Utilities.Gltf.html - commentId: N:XRTK.Utilities.Gltf - fullName: XRTK.Utilities.Gltf - nameWithType: XRTK.Utilities.Gltf -- uid: XRTK.Utilities.Gltf.GltfAsset - name: GltfAsset - href: api/XRTK.Utilities.Gltf.GltfAsset.html - commentId: T:XRTK.Utilities.Gltf.GltfAsset - fullName: XRTK.Utilities.Gltf.GltfAsset - nameWithType: GltfAsset -- uid: XRTK.Utilities.Gltf.GltfAsset.GltfObject - name: GltfObject - href: api/XRTK.Utilities.Gltf.GltfAsset.html#XRTK_Utilities_Gltf_GltfAsset_GltfObject - commentId: P:XRTK.Utilities.Gltf.GltfAsset.GltfObject - fullName: XRTK.Utilities.Gltf.GltfAsset.GltfObject - nameWithType: GltfAsset.GltfObject -- uid: XRTK.Utilities.Gltf.GltfAsset.GltfObject* - name: GltfObject - href: api/XRTK.Utilities.Gltf.GltfAsset.html#XRTK_Utilities_Gltf_GltfAsset_GltfObject_ - commentId: Overload:XRTK.Utilities.Gltf.GltfAsset.GltfObject - isSpec: "True" - fullName: XRTK.Utilities.Gltf.GltfAsset.GltfObject - nameWithType: GltfAsset.GltfObject -- uid: XRTK.Utilities.Gltf.GltfAsset.Model - name: Model - href: api/XRTK.Utilities.Gltf.GltfAsset.html#XRTK_Utilities_Gltf_GltfAsset_Model - commentId: P:XRTK.Utilities.Gltf.GltfAsset.Model - fullName: XRTK.Utilities.Gltf.GltfAsset.Model - nameWithType: GltfAsset.Model -- uid: XRTK.Utilities.Gltf.GltfAsset.Model* - name: Model - href: api/XRTK.Utilities.Gltf.GltfAsset.html#XRTK_Utilities_Gltf_GltfAsset_Model_ - commentId: Overload:XRTK.Utilities.Gltf.GltfAsset.Model - isSpec: "True" - fullName: XRTK.Utilities.Gltf.GltfAsset.Model - nameWithType: GltfAsset.Model -- uid: XRTK.Utilities.Gltf.Schema - name: XRTK.Utilities.Gltf.Schema - href: api/XRTK.Utilities.Gltf.Schema.html - commentId: N:XRTK.Utilities.Gltf.Schema - fullName: XRTK.Utilities.Gltf.Schema - nameWithType: XRTK.Utilities.Gltf.Schema -- uid: XRTK.Utilities.Gltf.Schema.Extensions - name: XRTK.Utilities.Gltf.Schema.Extensions - href: api/XRTK.Utilities.Gltf.Schema.Extensions.html - commentId: N:XRTK.Utilities.Gltf.Schema.Extensions - fullName: XRTK.Utilities.Gltf.Schema.Extensions - nameWithType: XRTK.Utilities.Gltf.Schema.Extensions -- uid: XRTK.Utilities.Gltf.Schema.Extensions.GltfExtension - name: GltfExtension - href: api/XRTK.Utilities.Gltf.Schema.Extensions.GltfExtension.html - commentId: T:XRTK.Utilities.Gltf.Schema.Extensions.GltfExtension - fullName: XRTK.Utilities.Gltf.Schema.Extensions.GltfExtension - nameWithType: GltfExtension -- uid: XRTK.Utilities.Gltf.Schema.Extensions.GltfExtension.ElementName - name: ElementName - href: api/XRTK.Utilities.Gltf.Schema.Extensions.GltfExtension.html#XRTK_Utilities_Gltf_Schema_Extensions_GltfExtension_ElementName - commentId: F:XRTK.Utilities.Gltf.Schema.Extensions.GltfExtension.ElementName - fullName: XRTK.Utilities.Gltf.Schema.Extensions.GltfExtension.ElementName - nameWithType: GltfExtension.ElementName -- uid: XRTK.Utilities.Gltf.Schema.Extensions.KHR_Materials_PbrSpecularGlossiness - name: KHR_Materials_PbrSpecularGlossiness - href: api/XRTK.Utilities.Gltf.Schema.Extensions.KHR_Materials_PbrSpecularGlossiness.html - commentId: T:XRTK.Utilities.Gltf.Schema.Extensions.KHR_Materials_PbrSpecularGlossiness - fullName: XRTK.Utilities.Gltf.Schema.Extensions.KHR_Materials_PbrSpecularGlossiness - nameWithType: KHR_Materials_PbrSpecularGlossiness -- uid: XRTK.Utilities.Gltf.Schema.Extensions.KHR_Materials_PbrSpecularGlossiness.diffuseFactor - name: diffuseFactor - href: api/XRTK.Utilities.Gltf.Schema.Extensions.KHR_Materials_PbrSpecularGlossiness.html#XRTK_Utilities_Gltf_Schema_Extensions_KHR_Materials_PbrSpecularGlossiness_diffuseFactor - commentId: F:XRTK.Utilities.Gltf.Schema.Extensions.KHR_Materials_PbrSpecularGlossiness.diffuseFactor - fullName: XRTK.Utilities.Gltf.Schema.Extensions.KHR_Materials_PbrSpecularGlossiness.diffuseFactor - nameWithType: KHR_Materials_PbrSpecularGlossiness.diffuseFactor -- uid: XRTK.Utilities.Gltf.Schema.Extensions.KHR_Materials_PbrSpecularGlossiness.diffuseTexture - name: diffuseTexture - href: api/XRTK.Utilities.Gltf.Schema.Extensions.KHR_Materials_PbrSpecularGlossiness.html#XRTK_Utilities_Gltf_Schema_Extensions_KHR_Materials_PbrSpecularGlossiness_diffuseTexture - commentId: F:XRTK.Utilities.Gltf.Schema.Extensions.KHR_Materials_PbrSpecularGlossiness.diffuseTexture - fullName: XRTK.Utilities.Gltf.Schema.Extensions.KHR_Materials_PbrSpecularGlossiness.diffuseTexture - nameWithType: KHR_Materials_PbrSpecularGlossiness.diffuseTexture -- uid: XRTK.Utilities.Gltf.Schema.Extensions.KHR_Materials_PbrSpecularGlossiness.glossinessFactor - name: glossinessFactor - href: api/XRTK.Utilities.Gltf.Schema.Extensions.KHR_Materials_PbrSpecularGlossiness.html#XRTK_Utilities_Gltf_Schema_Extensions_KHR_Materials_PbrSpecularGlossiness_glossinessFactor - commentId: F:XRTK.Utilities.Gltf.Schema.Extensions.KHR_Materials_PbrSpecularGlossiness.glossinessFactor - fullName: XRTK.Utilities.Gltf.Schema.Extensions.KHR_Materials_PbrSpecularGlossiness.glossinessFactor - nameWithType: KHR_Materials_PbrSpecularGlossiness.glossinessFactor -- uid: XRTK.Utilities.Gltf.Schema.Extensions.KHR_Materials_PbrSpecularGlossiness.specularFactor - name: specularFactor - href: api/XRTK.Utilities.Gltf.Schema.Extensions.KHR_Materials_PbrSpecularGlossiness.html#XRTK_Utilities_Gltf_Schema_Extensions_KHR_Materials_PbrSpecularGlossiness_specularFactor - commentId: F:XRTK.Utilities.Gltf.Schema.Extensions.KHR_Materials_PbrSpecularGlossiness.specularFactor - fullName: XRTK.Utilities.Gltf.Schema.Extensions.KHR_Materials_PbrSpecularGlossiness.specularFactor - nameWithType: KHR_Materials_PbrSpecularGlossiness.specularFactor -- uid: XRTK.Utilities.Gltf.Schema.Extensions.KHR_Materials_PbrSpecularGlossiness.specularGlossinessTexture - name: specularGlossinessTexture - href: api/XRTK.Utilities.Gltf.Schema.Extensions.KHR_Materials_PbrSpecularGlossiness.html#XRTK_Utilities_Gltf_Schema_Extensions_KHR_Materials_PbrSpecularGlossiness_specularGlossinessTexture - commentId: F:XRTK.Utilities.Gltf.Schema.Extensions.KHR_Materials_PbrSpecularGlossiness.specularGlossinessTexture - fullName: XRTK.Utilities.Gltf.Schema.Extensions.KHR_Materials_PbrSpecularGlossiness.specularGlossinessTexture - nameWithType: KHR_Materials_PbrSpecularGlossiness.specularGlossinessTexture -- uid: XRTK.Utilities.Gltf.Schema.GltfAccessor - name: GltfAccessor - href: api/XRTK.Utilities.Gltf.Schema.GltfAccessor.html - commentId: T:XRTK.Utilities.Gltf.Schema.GltfAccessor - fullName: XRTK.Utilities.Gltf.Schema.GltfAccessor - nameWithType: GltfAccessor -- uid: XRTK.Utilities.Gltf.Schema.GltfAccessor.bufferView - name: bufferView - href: api/XRTK.Utilities.Gltf.Schema.GltfAccessor.html#XRTK_Utilities_Gltf_Schema_GltfAccessor_bufferView - commentId: F:XRTK.Utilities.Gltf.Schema.GltfAccessor.bufferView - fullName: XRTK.Utilities.Gltf.Schema.GltfAccessor.bufferView - nameWithType: GltfAccessor.bufferView -- uid: XRTK.Utilities.Gltf.Schema.GltfAccessor.BufferView - name: BufferView - href: api/XRTK.Utilities.Gltf.Schema.GltfAccessor.html#XRTK_Utilities_Gltf_Schema_GltfAccessor_BufferView - commentId: P:XRTK.Utilities.Gltf.Schema.GltfAccessor.BufferView - fullName: XRTK.Utilities.Gltf.Schema.GltfAccessor.BufferView - nameWithType: GltfAccessor.BufferView -- uid: XRTK.Utilities.Gltf.Schema.GltfAccessor.BufferView* - name: BufferView - href: api/XRTK.Utilities.Gltf.Schema.GltfAccessor.html#XRTK_Utilities_Gltf_Schema_GltfAccessor_BufferView_ - commentId: Overload:XRTK.Utilities.Gltf.Schema.GltfAccessor.BufferView - isSpec: "True" - fullName: XRTK.Utilities.Gltf.Schema.GltfAccessor.BufferView - nameWithType: GltfAccessor.BufferView -- uid: XRTK.Utilities.Gltf.Schema.GltfAccessor.byteOffset - name: byteOffset - href: api/XRTK.Utilities.Gltf.Schema.GltfAccessor.html#XRTK_Utilities_Gltf_Schema_GltfAccessor_byteOffset - commentId: F:XRTK.Utilities.Gltf.Schema.GltfAccessor.byteOffset - fullName: XRTK.Utilities.Gltf.Schema.GltfAccessor.byteOffset - nameWithType: GltfAccessor.byteOffset -- uid: XRTK.Utilities.Gltf.Schema.GltfAccessor.componentType - name: componentType - href: api/XRTK.Utilities.Gltf.Schema.GltfAccessor.html#XRTK_Utilities_Gltf_Schema_GltfAccessor_componentType - commentId: F:XRTK.Utilities.Gltf.Schema.GltfAccessor.componentType - fullName: XRTK.Utilities.Gltf.Schema.GltfAccessor.componentType - nameWithType: GltfAccessor.componentType -- uid: XRTK.Utilities.Gltf.Schema.GltfAccessor.count - name: count - href: api/XRTK.Utilities.Gltf.Schema.GltfAccessor.html#XRTK_Utilities_Gltf_Schema_GltfAccessor_count - commentId: F:XRTK.Utilities.Gltf.Schema.GltfAccessor.count - fullName: XRTK.Utilities.Gltf.Schema.GltfAccessor.count - nameWithType: GltfAccessor.count -- uid: XRTK.Utilities.Gltf.Schema.GltfAccessor.max - name: max - href: api/XRTK.Utilities.Gltf.Schema.GltfAccessor.html#XRTK_Utilities_Gltf_Schema_GltfAccessor_max - commentId: F:XRTK.Utilities.Gltf.Schema.GltfAccessor.max - fullName: XRTK.Utilities.Gltf.Schema.GltfAccessor.max - nameWithType: GltfAccessor.max -- uid: XRTK.Utilities.Gltf.Schema.GltfAccessor.min - name: min - href: api/XRTK.Utilities.Gltf.Schema.GltfAccessor.html#XRTK_Utilities_Gltf_Schema_GltfAccessor_min - commentId: F:XRTK.Utilities.Gltf.Schema.GltfAccessor.min - fullName: XRTK.Utilities.Gltf.Schema.GltfAccessor.min - nameWithType: GltfAccessor.min -- uid: XRTK.Utilities.Gltf.Schema.GltfAccessor.normalized - name: normalized - href: api/XRTK.Utilities.Gltf.Schema.GltfAccessor.html#XRTK_Utilities_Gltf_Schema_GltfAccessor_normalized - commentId: F:XRTK.Utilities.Gltf.Schema.GltfAccessor.normalized - fullName: XRTK.Utilities.Gltf.Schema.GltfAccessor.normalized - nameWithType: GltfAccessor.normalized -- uid: XRTK.Utilities.Gltf.Schema.GltfAccessor.sparse - name: sparse - href: api/XRTK.Utilities.Gltf.Schema.GltfAccessor.html#XRTK_Utilities_Gltf_Schema_GltfAccessor_sparse - commentId: F:XRTK.Utilities.Gltf.Schema.GltfAccessor.sparse - fullName: XRTK.Utilities.Gltf.Schema.GltfAccessor.sparse - nameWithType: GltfAccessor.sparse -- uid: XRTK.Utilities.Gltf.Schema.GltfAccessor.type - name: type - href: api/XRTK.Utilities.Gltf.Schema.GltfAccessor.html#XRTK_Utilities_Gltf_Schema_GltfAccessor_type - commentId: F:XRTK.Utilities.Gltf.Schema.GltfAccessor.type - fullName: XRTK.Utilities.Gltf.Schema.GltfAccessor.type - nameWithType: GltfAccessor.type -- uid: XRTK.Utilities.Gltf.Schema.GltfAccessorAttributeType - name: GltfAccessorAttributeType - href: api/XRTK.Utilities.Gltf.Schema.GltfAccessorAttributeType.html - commentId: T:XRTK.Utilities.Gltf.Schema.GltfAccessorAttributeType - fullName: XRTK.Utilities.Gltf.Schema.GltfAccessorAttributeType - nameWithType: GltfAccessorAttributeType -- uid: XRTK.Utilities.Gltf.Schema.GltfAccessorAttributeType.MAT2 - name: MAT2 - href: api/XRTK.Utilities.Gltf.Schema.GltfAccessorAttributeType.html#XRTK_Utilities_Gltf_Schema_GltfAccessorAttributeType_MAT2 - commentId: F:XRTK.Utilities.Gltf.Schema.GltfAccessorAttributeType.MAT2 - fullName: XRTK.Utilities.Gltf.Schema.GltfAccessorAttributeType.MAT2 - nameWithType: GltfAccessorAttributeType.MAT2 -- uid: XRTK.Utilities.Gltf.Schema.GltfAccessorAttributeType.MAT3 - name: MAT3 - href: api/XRTK.Utilities.Gltf.Schema.GltfAccessorAttributeType.html#XRTK_Utilities_Gltf_Schema_GltfAccessorAttributeType_MAT3 - commentId: F:XRTK.Utilities.Gltf.Schema.GltfAccessorAttributeType.MAT3 - fullName: XRTK.Utilities.Gltf.Schema.GltfAccessorAttributeType.MAT3 - nameWithType: GltfAccessorAttributeType.MAT3 -- uid: XRTK.Utilities.Gltf.Schema.GltfAccessorAttributeType.MAT4 - name: MAT4 - href: api/XRTK.Utilities.Gltf.Schema.GltfAccessorAttributeType.html#XRTK_Utilities_Gltf_Schema_GltfAccessorAttributeType_MAT4 - commentId: F:XRTK.Utilities.Gltf.Schema.GltfAccessorAttributeType.MAT4 - fullName: XRTK.Utilities.Gltf.Schema.GltfAccessorAttributeType.MAT4 - nameWithType: GltfAccessorAttributeType.MAT4 -- uid: XRTK.Utilities.Gltf.Schema.GltfAccessorAttributeType.SCALAR - name: SCALAR - href: api/XRTK.Utilities.Gltf.Schema.GltfAccessorAttributeType.html#XRTK_Utilities_Gltf_Schema_GltfAccessorAttributeType_SCALAR - commentId: F:XRTK.Utilities.Gltf.Schema.GltfAccessorAttributeType.SCALAR - fullName: XRTK.Utilities.Gltf.Schema.GltfAccessorAttributeType.SCALAR - nameWithType: GltfAccessorAttributeType.SCALAR -- uid: XRTK.Utilities.Gltf.Schema.GltfAccessorAttributeType.VEC2 - name: VEC2 - href: api/XRTK.Utilities.Gltf.Schema.GltfAccessorAttributeType.html#XRTK_Utilities_Gltf_Schema_GltfAccessorAttributeType_VEC2 - commentId: F:XRTK.Utilities.Gltf.Schema.GltfAccessorAttributeType.VEC2 - fullName: XRTK.Utilities.Gltf.Schema.GltfAccessorAttributeType.VEC2 - nameWithType: GltfAccessorAttributeType.VEC2 -- uid: XRTK.Utilities.Gltf.Schema.GltfAccessorAttributeType.VEC3 - name: VEC3 - href: api/XRTK.Utilities.Gltf.Schema.GltfAccessorAttributeType.html#XRTK_Utilities_Gltf_Schema_GltfAccessorAttributeType_VEC3 - commentId: F:XRTK.Utilities.Gltf.Schema.GltfAccessorAttributeType.VEC3 - fullName: XRTK.Utilities.Gltf.Schema.GltfAccessorAttributeType.VEC3 - nameWithType: GltfAccessorAttributeType.VEC3 -- uid: XRTK.Utilities.Gltf.Schema.GltfAccessorAttributeType.VEC4 - name: VEC4 - href: api/XRTK.Utilities.Gltf.Schema.GltfAccessorAttributeType.html#XRTK_Utilities_Gltf_Schema_GltfAccessorAttributeType_VEC4 - commentId: F:XRTK.Utilities.Gltf.Schema.GltfAccessorAttributeType.VEC4 - fullName: XRTK.Utilities.Gltf.Schema.GltfAccessorAttributeType.VEC4 - nameWithType: GltfAccessorAttributeType.VEC4 -- uid: XRTK.Utilities.Gltf.Schema.GltfAccessorSparse - name: GltfAccessorSparse - href: api/XRTK.Utilities.Gltf.Schema.GltfAccessorSparse.html - commentId: T:XRTK.Utilities.Gltf.Schema.GltfAccessorSparse - fullName: XRTK.Utilities.Gltf.Schema.GltfAccessorSparse - nameWithType: GltfAccessorSparse -- uid: XRTK.Utilities.Gltf.Schema.GltfAccessorSparse.count - name: count - href: api/XRTK.Utilities.Gltf.Schema.GltfAccessorSparse.html#XRTK_Utilities_Gltf_Schema_GltfAccessorSparse_count - commentId: F:XRTK.Utilities.Gltf.Schema.GltfAccessorSparse.count - fullName: XRTK.Utilities.Gltf.Schema.GltfAccessorSparse.count - nameWithType: GltfAccessorSparse.count -- uid: XRTK.Utilities.Gltf.Schema.GltfAccessorSparse.indicies - name: indicies - href: api/XRTK.Utilities.Gltf.Schema.GltfAccessorSparse.html#XRTK_Utilities_Gltf_Schema_GltfAccessorSparse_indicies - commentId: F:XRTK.Utilities.Gltf.Schema.GltfAccessorSparse.indicies - fullName: XRTK.Utilities.Gltf.Schema.GltfAccessorSparse.indicies - nameWithType: GltfAccessorSparse.indicies -- uid: XRTK.Utilities.Gltf.Schema.GltfAccessorSparse.values - name: values - href: api/XRTK.Utilities.Gltf.Schema.GltfAccessorSparse.html#XRTK_Utilities_Gltf_Schema_GltfAccessorSparse_values - commentId: F:XRTK.Utilities.Gltf.Schema.GltfAccessorSparse.values - fullName: XRTK.Utilities.Gltf.Schema.GltfAccessorSparse.values - nameWithType: GltfAccessorSparse.values -- uid: XRTK.Utilities.Gltf.Schema.GltfAccessorSparseIndices - name: GltfAccessorSparseIndices - href: api/XRTK.Utilities.Gltf.Schema.GltfAccessorSparseIndices.html - commentId: T:XRTK.Utilities.Gltf.Schema.GltfAccessorSparseIndices - fullName: XRTK.Utilities.Gltf.Schema.GltfAccessorSparseIndices - nameWithType: GltfAccessorSparseIndices -- uid: XRTK.Utilities.Gltf.Schema.GltfAccessorSparseIndices.bufferView - name: bufferView - href: api/XRTK.Utilities.Gltf.Schema.GltfAccessorSparseIndices.html#XRTK_Utilities_Gltf_Schema_GltfAccessorSparseIndices_bufferView - commentId: F:XRTK.Utilities.Gltf.Schema.GltfAccessorSparseIndices.bufferView - fullName: XRTK.Utilities.Gltf.Schema.GltfAccessorSparseIndices.bufferView - nameWithType: GltfAccessorSparseIndices.bufferView -- uid: XRTK.Utilities.Gltf.Schema.GltfAccessorSparseIndices.byteOffset - name: byteOffset - href: api/XRTK.Utilities.Gltf.Schema.GltfAccessorSparseIndices.html#XRTK_Utilities_Gltf_Schema_GltfAccessorSparseIndices_byteOffset - commentId: F:XRTK.Utilities.Gltf.Schema.GltfAccessorSparseIndices.byteOffset - fullName: XRTK.Utilities.Gltf.Schema.GltfAccessorSparseIndices.byteOffset - nameWithType: GltfAccessorSparseIndices.byteOffset -- uid: XRTK.Utilities.Gltf.Schema.GltfAccessorSparseIndices.ComponentType - name: ComponentType - href: api/XRTK.Utilities.Gltf.Schema.GltfAccessorSparseIndices.html#XRTK_Utilities_Gltf_Schema_GltfAccessorSparseIndices_ComponentType - commentId: F:XRTK.Utilities.Gltf.Schema.GltfAccessorSparseIndices.ComponentType - fullName: XRTK.Utilities.Gltf.Schema.GltfAccessorSparseIndices.ComponentType - nameWithType: GltfAccessorSparseIndices.ComponentType -- uid: XRTK.Utilities.Gltf.Schema.GltfAccessorSparseValues - name: GltfAccessorSparseValues - href: api/XRTK.Utilities.Gltf.Schema.GltfAccessorSparseValues.html - commentId: T:XRTK.Utilities.Gltf.Schema.GltfAccessorSparseValues - fullName: XRTK.Utilities.Gltf.Schema.GltfAccessorSparseValues - nameWithType: GltfAccessorSparseValues -- uid: XRTK.Utilities.Gltf.Schema.GltfAccessorSparseValues.bufferView - name: bufferView - href: api/XRTK.Utilities.Gltf.Schema.GltfAccessorSparseValues.html#XRTK_Utilities_Gltf_Schema_GltfAccessorSparseValues_bufferView - commentId: F:XRTK.Utilities.Gltf.Schema.GltfAccessorSparseValues.bufferView - fullName: XRTK.Utilities.Gltf.Schema.GltfAccessorSparseValues.bufferView - nameWithType: GltfAccessorSparseValues.bufferView -- uid: XRTK.Utilities.Gltf.Schema.GltfAccessorSparseValues.byteOffset - name: byteOffset - href: api/XRTK.Utilities.Gltf.Schema.GltfAccessorSparseValues.html#XRTK_Utilities_Gltf_Schema_GltfAccessorSparseValues_byteOffset - commentId: F:XRTK.Utilities.Gltf.Schema.GltfAccessorSparseValues.byteOffset - fullName: XRTK.Utilities.Gltf.Schema.GltfAccessorSparseValues.byteOffset - nameWithType: GltfAccessorSparseValues.byteOffset -- uid: XRTK.Utilities.Gltf.Schema.GltfAlphaMode - name: GltfAlphaMode - href: api/XRTK.Utilities.Gltf.Schema.GltfAlphaMode.html - commentId: T:XRTK.Utilities.Gltf.Schema.GltfAlphaMode - fullName: XRTK.Utilities.Gltf.Schema.GltfAlphaMode - nameWithType: GltfAlphaMode -- uid: XRTK.Utilities.Gltf.Schema.GltfAlphaMode.BLEND - name: BLEND - href: api/XRTK.Utilities.Gltf.Schema.GltfAlphaMode.html#XRTK_Utilities_Gltf_Schema_GltfAlphaMode_BLEND - commentId: F:XRTK.Utilities.Gltf.Schema.GltfAlphaMode.BLEND - fullName: XRTK.Utilities.Gltf.Schema.GltfAlphaMode.BLEND - nameWithType: GltfAlphaMode.BLEND -- uid: XRTK.Utilities.Gltf.Schema.GltfAlphaMode.MASK - name: MASK - href: api/XRTK.Utilities.Gltf.Schema.GltfAlphaMode.html#XRTK_Utilities_Gltf_Schema_GltfAlphaMode_MASK - commentId: F:XRTK.Utilities.Gltf.Schema.GltfAlphaMode.MASK - fullName: XRTK.Utilities.Gltf.Schema.GltfAlphaMode.MASK - nameWithType: GltfAlphaMode.MASK -- uid: XRTK.Utilities.Gltf.Schema.GltfAlphaMode.OPAQUE - name: OPAQUE - href: api/XRTK.Utilities.Gltf.Schema.GltfAlphaMode.html#XRTK_Utilities_Gltf_Schema_GltfAlphaMode_OPAQUE - commentId: F:XRTK.Utilities.Gltf.Schema.GltfAlphaMode.OPAQUE - fullName: XRTK.Utilities.Gltf.Schema.GltfAlphaMode.OPAQUE - nameWithType: GltfAlphaMode.OPAQUE -- uid: XRTK.Utilities.Gltf.Schema.GltfAnimation - name: GltfAnimation - href: api/XRTK.Utilities.Gltf.Schema.GltfAnimation.html - commentId: T:XRTK.Utilities.Gltf.Schema.GltfAnimation - fullName: XRTK.Utilities.Gltf.Schema.GltfAnimation - nameWithType: GltfAnimation -- uid: XRTK.Utilities.Gltf.Schema.GltfAnimation.channels - name: channels - href: api/XRTK.Utilities.Gltf.Schema.GltfAnimation.html#XRTK_Utilities_Gltf_Schema_GltfAnimation_channels - commentId: F:XRTK.Utilities.Gltf.Schema.GltfAnimation.channels - fullName: XRTK.Utilities.Gltf.Schema.GltfAnimation.channels - nameWithType: GltfAnimation.channels -- uid: XRTK.Utilities.Gltf.Schema.GltfAnimation.samplers - name: samplers - href: api/XRTK.Utilities.Gltf.Schema.GltfAnimation.html#XRTK_Utilities_Gltf_Schema_GltfAnimation_samplers - commentId: F:XRTK.Utilities.Gltf.Schema.GltfAnimation.samplers - fullName: XRTK.Utilities.Gltf.Schema.GltfAnimation.samplers - nameWithType: GltfAnimation.samplers -- uid: XRTK.Utilities.Gltf.Schema.GltfAnimationChannel - name: GltfAnimationChannel - href: api/XRTK.Utilities.Gltf.Schema.GltfAnimationChannel.html - commentId: T:XRTK.Utilities.Gltf.Schema.GltfAnimationChannel - fullName: XRTK.Utilities.Gltf.Schema.GltfAnimationChannel - nameWithType: GltfAnimationChannel -- uid: XRTK.Utilities.Gltf.Schema.GltfAnimationChannel.sampler - name: sampler - href: api/XRTK.Utilities.Gltf.Schema.GltfAnimationChannel.html#XRTK_Utilities_Gltf_Schema_GltfAnimationChannel_sampler - commentId: F:XRTK.Utilities.Gltf.Schema.GltfAnimationChannel.sampler - fullName: XRTK.Utilities.Gltf.Schema.GltfAnimationChannel.sampler - nameWithType: GltfAnimationChannel.sampler -- uid: XRTK.Utilities.Gltf.Schema.GltfAnimationChannel.target - name: target - href: api/XRTK.Utilities.Gltf.Schema.GltfAnimationChannel.html#XRTK_Utilities_Gltf_Schema_GltfAnimationChannel_target - commentId: F:XRTK.Utilities.Gltf.Schema.GltfAnimationChannel.target - fullName: XRTK.Utilities.Gltf.Schema.GltfAnimationChannel.target - nameWithType: GltfAnimationChannel.target -- uid: XRTK.Utilities.Gltf.Schema.GltfAnimationChannelPath - name: GltfAnimationChannelPath - href: api/XRTK.Utilities.Gltf.Schema.GltfAnimationChannelPath.html - commentId: T:XRTK.Utilities.Gltf.Schema.GltfAnimationChannelPath - fullName: XRTK.Utilities.Gltf.Schema.GltfAnimationChannelPath - nameWithType: GltfAnimationChannelPath -- uid: XRTK.Utilities.Gltf.Schema.GltfAnimationChannelPath.rotation - name: rotation - href: api/XRTK.Utilities.Gltf.Schema.GltfAnimationChannelPath.html#XRTK_Utilities_Gltf_Schema_GltfAnimationChannelPath_rotation - commentId: F:XRTK.Utilities.Gltf.Schema.GltfAnimationChannelPath.rotation - fullName: XRTK.Utilities.Gltf.Schema.GltfAnimationChannelPath.rotation - nameWithType: GltfAnimationChannelPath.rotation -- uid: XRTK.Utilities.Gltf.Schema.GltfAnimationChannelPath.scale - name: scale - href: api/XRTK.Utilities.Gltf.Schema.GltfAnimationChannelPath.html#XRTK_Utilities_Gltf_Schema_GltfAnimationChannelPath_scale - commentId: F:XRTK.Utilities.Gltf.Schema.GltfAnimationChannelPath.scale - fullName: XRTK.Utilities.Gltf.Schema.GltfAnimationChannelPath.scale - nameWithType: GltfAnimationChannelPath.scale -- uid: XRTK.Utilities.Gltf.Schema.GltfAnimationChannelPath.translation - name: translation - href: api/XRTK.Utilities.Gltf.Schema.GltfAnimationChannelPath.html#XRTK_Utilities_Gltf_Schema_GltfAnimationChannelPath_translation - commentId: F:XRTK.Utilities.Gltf.Schema.GltfAnimationChannelPath.translation - fullName: XRTK.Utilities.Gltf.Schema.GltfAnimationChannelPath.translation - nameWithType: GltfAnimationChannelPath.translation -- uid: XRTK.Utilities.Gltf.Schema.GltfAnimationChannelPath.weights - name: weights - href: api/XRTK.Utilities.Gltf.Schema.GltfAnimationChannelPath.html#XRTK_Utilities_Gltf_Schema_GltfAnimationChannelPath_weights - commentId: F:XRTK.Utilities.Gltf.Schema.GltfAnimationChannelPath.weights - fullName: XRTK.Utilities.Gltf.Schema.GltfAnimationChannelPath.weights - nameWithType: GltfAnimationChannelPath.weights -- uid: XRTK.Utilities.Gltf.Schema.GltfAnimationChannelTarget - name: GltfAnimationChannelTarget - href: api/XRTK.Utilities.Gltf.Schema.GltfAnimationChannelTarget.html - commentId: T:XRTK.Utilities.Gltf.Schema.GltfAnimationChannelTarget - fullName: XRTK.Utilities.Gltf.Schema.GltfAnimationChannelTarget - nameWithType: GltfAnimationChannelTarget -- uid: XRTK.Utilities.Gltf.Schema.GltfAnimationChannelTarget.node - name: node - href: api/XRTK.Utilities.Gltf.Schema.GltfAnimationChannelTarget.html#XRTK_Utilities_Gltf_Schema_GltfAnimationChannelTarget_node - commentId: F:XRTK.Utilities.Gltf.Schema.GltfAnimationChannelTarget.node - fullName: XRTK.Utilities.Gltf.Schema.GltfAnimationChannelTarget.node - nameWithType: GltfAnimationChannelTarget.node -- uid: XRTK.Utilities.Gltf.Schema.GltfAnimationChannelTarget.path - name: path - href: api/XRTK.Utilities.Gltf.Schema.GltfAnimationChannelTarget.html#XRTK_Utilities_Gltf_Schema_GltfAnimationChannelTarget_path - commentId: F:XRTK.Utilities.Gltf.Schema.GltfAnimationChannelTarget.path - fullName: XRTK.Utilities.Gltf.Schema.GltfAnimationChannelTarget.path - nameWithType: GltfAnimationChannelTarget.path -- uid: XRTK.Utilities.Gltf.Schema.GltfAnimationSampler - name: GltfAnimationSampler - href: api/XRTK.Utilities.Gltf.Schema.GltfAnimationSampler.html - commentId: T:XRTK.Utilities.Gltf.Schema.GltfAnimationSampler - fullName: XRTK.Utilities.Gltf.Schema.GltfAnimationSampler - nameWithType: GltfAnimationSampler -- uid: XRTK.Utilities.Gltf.Schema.GltfAnimationSampler.input - name: input - href: api/XRTK.Utilities.Gltf.Schema.GltfAnimationSampler.html#XRTK_Utilities_Gltf_Schema_GltfAnimationSampler_input - commentId: F:XRTK.Utilities.Gltf.Schema.GltfAnimationSampler.input - fullName: XRTK.Utilities.Gltf.Schema.GltfAnimationSampler.input - nameWithType: GltfAnimationSampler.input -- uid: XRTK.Utilities.Gltf.Schema.GltfAnimationSampler.interpolation - name: interpolation - href: api/XRTK.Utilities.Gltf.Schema.GltfAnimationSampler.html#XRTK_Utilities_Gltf_Schema_GltfAnimationSampler_interpolation - commentId: F:XRTK.Utilities.Gltf.Schema.GltfAnimationSampler.interpolation - fullName: XRTK.Utilities.Gltf.Schema.GltfAnimationSampler.interpolation - nameWithType: GltfAnimationSampler.interpolation -- uid: XRTK.Utilities.Gltf.Schema.GltfAnimationSampler.output - name: output - href: api/XRTK.Utilities.Gltf.Schema.GltfAnimationSampler.html#XRTK_Utilities_Gltf_Schema_GltfAnimationSampler_output - commentId: F:XRTK.Utilities.Gltf.Schema.GltfAnimationSampler.output - fullName: XRTK.Utilities.Gltf.Schema.GltfAnimationSampler.output - nameWithType: GltfAnimationSampler.output -- uid: XRTK.Utilities.Gltf.Schema.GltfAssetInfo - name: GltfAssetInfo - href: api/XRTK.Utilities.Gltf.Schema.GltfAssetInfo.html - commentId: T:XRTK.Utilities.Gltf.Schema.GltfAssetInfo - fullName: XRTK.Utilities.Gltf.Schema.GltfAssetInfo - nameWithType: GltfAssetInfo -- uid: XRTK.Utilities.Gltf.Schema.GltfAssetInfo.copyright - name: copyright - href: api/XRTK.Utilities.Gltf.Schema.GltfAssetInfo.html#XRTK_Utilities_Gltf_Schema_GltfAssetInfo_copyright - commentId: F:XRTK.Utilities.Gltf.Schema.GltfAssetInfo.copyright - fullName: XRTK.Utilities.Gltf.Schema.GltfAssetInfo.copyright - nameWithType: GltfAssetInfo.copyright -- uid: XRTK.Utilities.Gltf.Schema.GltfAssetInfo.generator - name: generator - href: api/XRTK.Utilities.Gltf.Schema.GltfAssetInfo.html#XRTK_Utilities_Gltf_Schema_GltfAssetInfo_generator - commentId: F:XRTK.Utilities.Gltf.Schema.GltfAssetInfo.generator - fullName: XRTK.Utilities.Gltf.Schema.GltfAssetInfo.generator - nameWithType: GltfAssetInfo.generator -- uid: XRTK.Utilities.Gltf.Schema.GltfAssetInfo.minVersion - name: minVersion - href: api/XRTK.Utilities.Gltf.Schema.GltfAssetInfo.html#XRTK_Utilities_Gltf_Schema_GltfAssetInfo_minVersion - commentId: F:XRTK.Utilities.Gltf.Schema.GltfAssetInfo.minVersion - fullName: XRTK.Utilities.Gltf.Schema.GltfAssetInfo.minVersion - nameWithType: GltfAssetInfo.minVersion -- uid: XRTK.Utilities.Gltf.Schema.GltfAssetInfo.version - name: version - href: api/XRTK.Utilities.Gltf.Schema.GltfAssetInfo.html#XRTK_Utilities_Gltf_Schema_GltfAssetInfo_version - commentId: F:XRTK.Utilities.Gltf.Schema.GltfAssetInfo.version - fullName: XRTK.Utilities.Gltf.Schema.GltfAssetInfo.version - nameWithType: GltfAssetInfo.version -- uid: XRTK.Utilities.Gltf.Schema.GltfBuffer - name: GltfBuffer - href: api/XRTK.Utilities.Gltf.Schema.GltfBuffer.html - commentId: T:XRTK.Utilities.Gltf.Schema.GltfBuffer - fullName: XRTK.Utilities.Gltf.Schema.GltfBuffer - nameWithType: GltfBuffer -- uid: XRTK.Utilities.Gltf.Schema.GltfBuffer.BufferData - name: BufferData - href: api/XRTK.Utilities.Gltf.Schema.GltfBuffer.html#XRTK_Utilities_Gltf_Schema_GltfBuffer_BufferData - commentId: P:XRTK.Utilities.Gltf.Schema.GltfBuffer.BufferData - fullName: XRTK.Utilities.Gltf.Schema.GltfBuffer.BufferData - nameWithType: GltfBuffer.BufferData -- uid: XRTK.Utilities.Gltf.Schema.GltfBuffer.BufferData* - name: BufferData - href: api/XRTK.Utilities.Gltf.Schema.GltfBuffer.html#XRTK_Utilities_Gltf_Schema_GltfBuffer_BufferData_ - commentId: Overload:XRTK.Utilities.Gltf.Schema.GltfBuffer.BufferData - isSpec: "True" - fullName: XRTK.Utilities.Gltf.Schema.GltfBuffer.BufferData - nameWithType: GltfBuffer.BufferData -- uid: XRTK.Utilities.Gltf.Schema.GltfBuffer.byteLength - name: byteLength - href: api/XRTK.Utilities.Gltf.Schema.GltfBuffer.html#XRTK_Utilities_Gltf_Schema_GltfBuffer_byteLength - commentId: F:XRTK.Utilities.Gltf.Schema.GltfBuffer.byteLength - fullName: XRTK.Utilities.Gltf.Schema.GltfBuffer.byteLength - nameWithType: GltfBuffer.byteLength -- uid: XRTK.Utilities.Gltf.Schema.GltfBuffer.uri - name: uri - href: api/XRTK.Utilities.Gltf.Schema.GltfBuffer.html#XRTK_Utilities_Gltf_Schema_GltfBuffer_uri - commentId: F:XRTK.Utilities.Gltf.Schema.GltfBuffer.uri - fullName: XRTK.Utilities.Gltf.Schema.GltfBuffer.uri - nameWithType: GltfBuffer.uri -- uid: XRTK.Utilities.Gltf.Schema.GltfBufferView - name: GltfBufferView - href: api/XRTK.Utilities.Gltf.Schema.GltfBufferView.html - commentId: T:XRTK.Utilities.Gltf.Schema.GltfBufferView - fullName: XRTK.Utilities.Gltf.Schema.GltfBufferView - nameWithType: GltfBufferView -- uid: XRTK.Utilities.Gltf.Schema.GltfBufferView.buffer - name: buffer - href: api/XRTK.Utilities.Gltf.Schema.GltfBufferView.html#XRTK_Utilities_Gltf_Schema_GltfBufferView_buffer - commentId: F:XRTK.Utilities.Gltf.Schema.GltfBufferView.buffer - fullName: XRTK.Utilities.Gltf.Schema.GltfBufferView.buffer - nameWithType: GltfBufferView.buffer -- uid: XRTK.Utilities.Gltf.Schema.GltfBufferView.Buffer - name: Buffer - href: api/XRTK.Utilities.Gltf.Schema.GltfBufferView.html#XRTK_Utilities_Gltf_Schema_GltfBufferView_Buffer - commentId: P:XRTK.Utilities.Gltf.Schema.GltfBufferView.Buffer - fullName: XRTK.Utilities.Gltf.Schema.GltfBufferView.Buffer - nameWithType: GltfBufferView.Buffer -- uid: XRTK.Utilities.Gltf.Schema.GltfBufferView.Buffer* - name: Buffer - href: api/XRTK.Utilities.Gltf.Schema.GltfBufferView.html#XRTK_Utilities_Gltf_Schema_GltfBufferView_Buffer_ - commentId: Overload:XRTK.Utilities.Gltf.Schema.GltfBufferView.Buffer - isSpec: "True" - fullName: XRTK.Utilities.Gltf.Schema.GltfBufferView.Buffer - nameWithType: GltfBufferView.Buffer -- uid: XRTK.Utilities.Gltf.Schema.GltfBufferView.byteLength - name: byteLength - href: api/XRTK.Utilities.Gltf.Schema.GltfBufferView.html#XRTK_Utilities_Gltf_Schema_GltfBufferView_byteLength - commentId: F:XRTK.Utilities.Gltf.Schema.GltfBufferView.byteLength - fullName: XRTK.Utilities.Gltf.Schema.GltfBufferView.byteLength - nameWithType: GltfBufferView.byteLength -- uid: XRTK.Utilities.Gltf.Schema.GltfBufferView.byteOffset - name: byteOffset - href: api/XRTK.Utilities.Gltf.Schema.GltfBufferView.html#XRTK_Utilities_Gltf_Schema_GltfBufferView_byteOffset - commentId: F:XRTK.Utilities.Gltf.Schema.GltfBufferView.byteOffset - fullName: XRTK.Utilities.Gltf.Schema.GltfBufferView.byteOffset - nameWithType: GltfBufferView.byteOffset -- uid: XRTK.Utilities.Gltf.Schema.GltfBufferView.byteStride - name: byteStride - href: api/XRTK.Utilities.Gltf.Schema.GltfBufferView.html#XRTK_Utilities_Gltf_Schema_GltfBufferView_byteStride - commentId: F:XRTK.Utilities.Gltf.Schema.GltfBufferView.byteStride - fullName: XRTK.Utilities.Gltf.Schema.GltfBufferView.byteStride - nameWithType: GltfBufferView.byteStride -- uid: XRTK.Utilities.Gltf.Schema.GltfBufferView.target - name: target - href: api/XRTK.Utilities.Gltf.Schema.GltfBufferView.html#XRTK_Utilities_Gltf_Schema_GltfBufferView_target - commentId: F:XRTK.Utilities.Gltf.Schema.GltfBufferView.target - fullName: XRTK.Utilities.Gltf.Schema.GltfBufferView.target - nameWithType: GltfBufferView.target -- uid: XRTK.Utilities.Gltf.Schema.GltfBufferViewTarget - name: GltfBufferViewTarget - href: api/XRTK.Utilities.Gltf.Schema.GltfBufferViewTarget.html - commentId: T:XRTK.Utilities.Gltf.Schema.GltfBufferViewTarget - fullName: XRTK.Utilities.Gltf.Schema.GltfBufferViewTarget - nameWithType: GltfBufferViewTarget -- uid: XRTK.Utilities.Gltf.Schema.GltfBufferViewTarget.ArrayBuffer - name: ArrayBuffer - href: api/XRTK.Utilities.Gltf.Schema.GltfBufferViewTarget.html#XRTK_Utilities_Gltf_Schema_GltfBufferViewTarget_ArrayBuffer - commentId: F:XRTK.Utilities.Gltf.Schema.GltfBufferViewTarget.ArrayBuffer - fullName: XRTK.Utilities.Gltf.Schema.GltfBufferViewTarget.ArrayBuffer - nameWithType: GltfBufferViewTarget.ArrayBuffer -- uid: XRTK.Utilities.Gltf.Schema.GltfBufferViewTarget.ElementArrayBuffer - name: ElementArrayBuffer - href: api/XRTK.Utilities.Gltf.Schema.GltfBufferViewTarget.html#XRTK_Utilities_Gltf_Schema_GltfBufferViewTarget_ElementArrayBuffer - commentId: F:XRTK.Utilities.Gltf.Schema.GltfBufferViewTarget.ElementArrayBuffer - fullName: XRTK.Utilities.Gltf.Schema.GltfBufferViewTarget.ElementArrayBuffer - nameWithType: GltfBufferViewTarget.ElementArrayBuffer -- uid: XRTK.Utilities.Gltf.Schema.GltfBufferViewTarget.None - name: None - href: api/XRTK.Utilities.Gltf.Schema.GltfBufferViewTarget.html#XRTK_Utilities_Gltf_Schema_GltfBufferViewTarget_None - commentId: F:XRTK.Utilities.Gltf.Schema.GltfBufferViewTarget.None - fullName: XRTK.Utilities.Gltf.Schema.GltfBufferViewTarget.None - nameWithType: GltfBufferViewTarget.None -- uid: XRTK.Utilities.Gltf.Schema.GltfCamera - name: GltfCamera - href: api/XRTK.Utilities.Gltf.Schema.GltfCamera.html - commentId: T:XRTK.Utilities.Gltf.Schema.GltfCamera - fullName: XRTK.Utilities.Gltf.Schema.GltfCamera - nameWithType: GltfCamera -- uid: XRTK.Utilities.Gltf.Schema.GltfCamera.orthographic - name: orthographic - href: api/XRTK.Utilities.Gltf.Schema.GltfCamera.html#XRTK_Utilities_Gltf_Schema_GltfCamera_orthographic - commentId: F:XRTK.Utilities.Gltf.Schema.GltfCamera.orthographic - fullName: XRTK.Utilities.Gltf.Schema.GltfCamera.orthographic - nameWithType: GltfCamera.orthographic -- uid: XRTK.Utilities.Gltf.Schema.GltfCamera.perspective - name: perspective - href: api/XRTK.Utilities.Gltf.Schema.GltfCamera.html#XRTK_Utilities_Gltf_Schema_GltfCamera_perspective - commentId: F:XRTK.Utilities.Gltf.Schema.GltfCamera.perspective - fullName: XRTK.Utilities.Gltf.Schema.GltfCamera.perspective - nameWithType: GltfCamera.perspective -- uid: XRTK.Utilities.Gltf.Schema.GltfCamera.type - name: type - href: api/XRTK.Utilities.Gltf.Schema.GltfCamera.html#XRTK_Utilities_Gltf_Schema_GltfCamera_type - commentId: F:XRTK.Utilities.Gltf.Schema.GltfCamera.type - fullName: XRTK.Utilities.Gltf.Schema.GltfCamera.type - nameWithType: GltfCamera.type -- uid: XRTK.Utilities.Gltf.Schema.GltfCameraOrthographic - name: GltfCameraOrthographic - href: api/XRTK.Utilities.Gltf.Schema.GltfCameraOrthographic.html - commentId: T:XRTK.Utilities.Gltf.Schema.GltfCameraOrthographic - fullName: XRTK.Utilities.Gltf.Schema.GltfCameraOrthographic - nameWithType: GltfCameraOrthographic -- uid: XRTK.Utilities.Gltf.Schema.GltfCameraOrthographic.xMag - name: xMag - href: api/XRTK.Utilities.Gltf.Schema.GltfCameraOrthographic.html#XRTK_Utilities_Gltf_Schema_GltfCameraOrthographic_xMag - commentId: F:XRTK.Utilities.Gltf.Schema.GltfCameraOrthographic.xMag - fullName: XRTK.Utilities.Gltf.Schema.GltfCameraOrthographic.xMag - nameWithType: GltfCameraOrthographic.xMag -- uid: XRTK.Utilities.Gltf.Schema.GltfCameraOrthographic.yMag - name: yMag - href: api/XRTK.Utilities.Gltf.Schema.GltfCameraOrthographic.html#XRTK_Utilities_Gltf_Schema_GltfCameraOrthographic_yMag - commentId: F:XRTK.Utilities.Gltf.Schema.GltfCameraOrthographic.yMag - fullName: XRTK.Utilities.Gltf.Schema.GltfCameraOrthographic.yMag - nameWithType: GltfCameraOrthographic.yMag -- uid: XRTK.Utilities.Gltf.Schema.GltfCameraOrthographic.zFar - name: zFar - href: api/XRTK.Utilities.Gltf.Schema.GltfCameraOrthographic.html#XRTK_Utilities_Gltf_Schema_GltfCameraOrthographic_zFar - commentId: F:XRTK.Utilities.Gltf.Schema.GltfCameraOrthographic.zFar - fullName: XRTK.Utilities.Gltf.Schema.GltfCameraOrthographic.zFar - nameWithType: GltfCameraOrthographic.zFar -- uid: XRTK.Utilities.Gltf.Schema.GltfCameraOrthographic.zNear - name: zNear - href: api/XRTK.Utilities.Gltf.Schema.GltfCameraOrthographic.html#XRTK_Utilities_Gltf_Schema_GltfCameraOrthographic_zNear - commentId: F:XRTK.Utilities.Gltf.Schema.GltfCameraOrthographic.zNear - fullName: XRTK.Utilities.Gltf.Schema.GltfCameraOrthographic.zNear - nameWithType: GltfCameraOrthographic.zNear -- uid: XRTK.Utilities.Gltf.Schema.GltfCameraPerspective - name: GltfCameraPerspective - href: api/XRTK.Utilities.Gltf.Schema.GltfCameraPerspective.html - commentId: T:XRTK.Utilities.Gltf.Schema.GltfCameraPerspective - fullName: XRTK.Utilities.Gltf.Schema.GltfCameraPerspective - nameWithType: GltfCameraPerspective -- uid: XRTK.Utilities.Gltf.Schema.GltfCameraPerspective.aspectRatio - name: aspectRatio - href: api/XRTK.Utilities.Gltf.Schema.GltfCameraPerspective.html#XRTK_Utilities_Gltf_Schema_GltfCameraPerspective_aspectRatio - commentId: F:XRTK.Utilities.Gltf.Schema.GltfCameraPerspective.aspectRatio - fullName: XRTK.Utilities.Gltf.Schema.GltfCameraPerspective.aspectRatio - nameWithType: GltfCameraPerspective.aspectRatio -- uid: XRTK.Utilities.Gltf.Schema.GltfCameraPerspective.yFov - name: yFov - href: api/XRTK.Utilities.Gltf.Schema.GltfCameraPerspective.html#XRTK_Utilities_Gltf_Schema_GltfCameraPerspective_yFov - commentId: F:XRTK.Utilities.Gltf.Schema.GltfCameraPerspective.yFov - fullName: XRTK.Utilities.Gltf.Schema.GltfCameraPerspective.yFov - nameWithType: GltfCameraPerspective.yFov -- uid: XRTK.Utilities.Gltf.Schema.GltfCameraPerspective.zFar - name: zFar - href: api/XRTK.Utilities.Gltf.Schema.GltfCameraPerspective.html#XRTK_Utilities_Gltf_Schema_GltfCameraPerspective_zFar - commentId: F:XRTK.Utilities.Gltf.Schema.GltfCameraPerspective.zFar - fullName: XRTK.Utilities.Gltf.Schema.GltfCameraPerspective.zFar - nameWithType: GltfCameraPerspective.zFar -- uid: XRTK.Utilities.Gltf.Schema.GltfCameraPerspective.zNear - name: zNear - href: api/XRTK.Utilities.Gltf.Schema.GltfCameraPerspective.html#XRTK_Utilities_Gltf_Schema_GltfCameraPerspective_zNear - commentId: F:XRTK.Utilities.Gltf.Schema.GltfCameraPerspective.zNear - fullName: XRTK.Utilities.Gltf.Schema.GltfCameraPerspective.zNear - nameWithType: GltfCameraPerspective.zNear -- uid: XRTK.Utilities.Gltf.Schema.GltfCameraType - name: GltfCameraType - href: api/XRTK.Utilities.Gltf.Schema.GltfCameraType.html - commentId: T:XRTK.Utilities.Gltf.Schema.GltfCameraType - fullName: XRTK.Utilities.Gltf.Schema.GltfCameraType - nameWithType: GltfCameraType -- uid: XRTK.Utilities.Gltf.Schema.GltfCameraType.orthographic - name: orthographic - href: api/XRTK.Utilities.Gltf.Schema.GltfCameraType.html#XRTK_Utilities_Gltf_Schema_GltfCameraType_orthographic - commentId: F:XRTK.Utilities.Gltf.Schema.GltfCameraType.orthographic - fullName: XRTK.Utilities.Gltf.Schema.GltfCameraType.orthographic - nameWithType: GltfCameraType.orthographic -- uid: XRTK.Utilities.Gltf.Schema.GltfCameraType.perspective - name: perspective - href: api/XRTK.Utilities.Gltf.Schema.GltfCameraType.html#XRTK_Utilities_Gltf_Schema_GltfCameraType_perspective - commentId: F:XRTK.Utilities.Gltf.Schema.GltfCameraType.perspective - fullName: XRTK.Utilities.Gltf.Schema.GltfCameraType.perspective - nameWithType: GltfCameraType.perspective -- uid: XRTK.Utilities.Gltf.Schema.GltfChildOfRootProperty - name: GltfChildOfRootProperty - href: api/XRTK.Utilities.Gltf.Schema.GltfChildOfRootProperty.html - commentId: T:XRTK.Utilities.Gltf.Schema.GltfChildOfRootProperty - fullName: XRTK.Utilities.Gltf.Schema.GltfChildOfRootProperty - nameWithType: GltfChildOfRootProperty -- uid: XRTK.Utilities.Gltf.Schema.GltfChildOfRootProperty.name - name: name - href: api/XRTK.Utilities.Gltf.Schema.GltfChildOfRootProperty.html#XRTK_Utilities_Gltf_Schema_GltfChildOfRootProperty_name - commentId: F:XRTK.Utilities.Gltf.Schema.GltfChildOfRootProperty.name - fullName: XRTK.Utilities.Gltf.Schema.GltfChildOfRootProperty.name - nameWithType: GltfChildOfRootProperty.name -- uid: XRTK.Utilities.Gltf.Schema.GltfComponentType - name: GltfComponentType - href: api/XRTK.Utilities.Gltf.Schema.GltfComponentType.html - commentId: T:XRTK.Utilities.Gltf.Schema.GltfComponentType - fullName: XRTK.Utilities.Gltf.Schema.GltfComponentType - nameWithType: GltfComponentType -- uid: XRTK.Utilities.Gltf.Schema.GltfComponentType.Byte - name: Byte - href: api/XRTK.Utilities.Gltf.Schema.GltfComponentType.html#XRTK_Utilities_Gltf_Schema_GltfComponentType_Byte - commentId: F:XRTK.Utilities.Gltf.Schema.GltfComponentType.Byte - fullName: XRTK.Utilities.Gltf.Schema.GltfComponentType.Byte - nameWithType: GltfComponentType.Byte -- uid: XRTK.Utilities.Gltf.Schema.GltfComponentType.Float - name: Float - href: api/XRTK.Utilities.Gltf.Schema.GltfComponentType.html#XRTK_Utilities_Gltf_Schema_GltfComponentType_Float - commentId: F:XRTK.Utilities.Gltf.Schema.GltfComponentType.Float - fullName: XRTK.Utilities.Gltf.Schema.GltfComponentType.Float - nameWithType: GltfComponentType.Float -- uid: XRTK.Utilities.Gltf.Schema.GltfComponentType.Short - name: Short - href: api/XRTK.Utilities.Gltf.Schema.GltfComponentType.html#XRTK_Utilities_Gltf_Schema_GltfComponentType_Short - commentId: F:XRTK.Utilities.Gltf.Schema.GltfComponentType.Short - fullName: XRTK.Utilities.Gltf.Schema.GltfComponentType.Short - nameWithType: GltfComponentType.Short -- uid: XRTK.Utilities.Gltf.Schema.GltfComponentType.UnsignedByte - name: UnsignedByte - href: api/XRTK.Utilities.Gltf.Schema.GltfComponentType.html#XRTK_Utilities_Gltf_Schema_GltfComponentType_UnsignedByte - commentId: F:XRTK.Utilities.Gltf.Schema.GltfComponentType.UnsignedByte - fullName: XRTK.Utilities.Gltf.Schema.GltfComponentType.UnsignedByte - nameWithType: GltfComponentType.UnsignedByte -- uid: XRTK.Utilities.Gltf.Schema.GltfComponentType.UnsignedInt - name: UnsignedInt - href: api/XRTK.Utilities.Gltf.Schema.GltfComponentType.html#XRTK_Utilities_Gltf_Schema_GltfComponentType_UnsignedInt - commentId: F:XRTK.Utilities.Gltf.Schema.GltfComponentType.UnsignedInt - fullName: XRTK.Utilities.Gltf.Schema.GltfComponentType.UnsignedInt - nameWithType: GltfComponentType.UnsignedInt -- uid: XRTK.Utilities.Gltf.Schema.GltfComponentType.UnsignedShort - name: UnsignedShort - href: api/XRTK.Utilities.Gltf.Schema.GltfComponentType.html#XRTK_Utilities_Gltf_Schema_GltfComponentType_UnsignedShort - commentId: F:XRTK.Utilities.Gltf.Schema.GltfComponentType.UnsignedShort - fullName: XRTK.Utilities.Gltf.Schema.GltfComponentType.UnsignedShort - nameWithType: GltfComponentType.UnsignedShort -- uid: XRTK.Utilities.Gltf.Schema.GltfDrawMode - name: GltfDrawMode - href: api/XRTK.Utilities.Gltf.Schema.GltfDrawMode.html - commentId: T:XRTK.Utilities.Gltf.Schema.GltfDrawMode - fullName: XRTK.Utilities.Gltf.Schema.GltfDrawMode - nameWithType: GltfDrawMode -- uid: XRTK.Utilities.Gltf.Schema.GltfDrawMode.LineLoop - name: LineLoop - href: api/XRTK.Utilities.Gltf.Schema.GltfDrawMode.html#XRTK_Utilities_Gltf_Schema_GltfDrawMode_LineLoop - commentId: F:XRTK.Utilities.Gltf.Schema.GltfDrawMode.LineLoop - fullName: XRTK.Utilities.Gltf.Schema.GltfDrawMode.LineLoop - nameWithType: GltfDrawMode.LineLoop -- uid: XRTK.Utilities.Gltf.Schema.GltfDrawMode.Lines - name: Lines - href: api/XRTK.Utilities.Gltf.Schema.GltfDrawMode.html#XRTK_Utilities_Gltf_Schema_GltfDrawMode_Lines - commentId: F:XRTK.Utilities.Gltf.Schema.GltfDrawMode.Lines - fullName: XRTK.Utilities.Gltf.Schema.GltfDrawMode.Lines - nameWithType: GltfDrawMode.Lines -- uid: XRTK.Utilities.Gltf.Schema.GltfDrawMode.LineStrip - name: LineStrip - href: api/XRTK.Utilities.Gltf.Schema.GltfDrawMode.html#XRTK_Utilities_Gltf_Schema_GltfDrawMode_LineStrip - commentId: F:XRTK.Utilities.Gltf.Schema.GltfDrawMode.LineStrip - fullName: XRTK.Utilities.Gltf.Schema.GltfDrawMode.LineStrip - nameWithType: GltfDrawMode.LineStrip -- uid: XRTK.Utilities.Gltf.Schema.GltfDrawMode.Points - name: Points - href: api/XRTK.Utilities.Gltf.Schema.GltfDrawMode.html#XRTK_Utilities_Gltf_Schema_GltfDrawMode_Points - commentId: F:XRTK.Utilities.Gltf.Schema.GltfDrawMode.Points - fullName: XRTK.Utilities.Gltf.Schema.GltfDrawMode.Points - nameWithType: GltfDrawMode.Points -- uid: XRTK.Utilities.Gltf.Schema.GltfDrawMode.TriangleFan - name: TriangleFan - href: api/XRTK.Utilities.Gltf.Schema.GltfDrawMode.html#XRTK_Utilities_Gltf_Schema_GltfDrawMode_TriangleFan - commentId: F:XRTK.Utilities.Gltf.Schema.GltfDrawMode.TriangleFan - fullName: XRTK.Utilities.Gltf.Schema.GltfDrawMode.TriangleFan - nameWithType: GltfDrawMode.TriangleFan -- uid: XRTK.Utilities.Gltf.Schema.GltfDrawMode.Triangles - name: Triangles - href: api/XRTK.Utilities.Gltf.Schema.GltfDrawMode.html#XRTK_Utilities_Gltf_Schema_GltfDrawMode_Triangles - commentId: F:XRTK.Utilities.Gltf.Schema.GltfDrawMode.Triangles - fullName: XRTK.Utilities.Gltf.Schema.GltfDrawMode.Triangles - nameWithType: GltfDrawMode.Triangles -- uid: XRTK.Utilities.Gltf.Schema.GltfDrawMode.TriangleStrip - name: TriangleStrip - href: api/XRTK.Utilities.Gltf.Schema.GltfDrawMode.html#XRTK_Utilities_Gltf_Schema_GltfDrawMode_TriangleStrip - commentId: F:XRTK.Utilities.Gltf.Schema.GltfDrawMode.TriangleStrip - fullName: XRTK.Utilities.Gltf.Schema.GltfDrawMode.TriangleStrip - nameWithType: GltfDrawMode.TriangleStrip -- uid: XRTK.Utilities.Gltf.Schema.GltfImage - name: GltfImage - href: api/XRTK.Utilities.Gltf.Schema.GltfImage.html - commentId: T:XRTK.Utilities.Gltf.Schema.GltfImage - fullName: XRTK.Utilities.Gltf.Schema.GltfImage - nameWithType: GltfImage -- uid: XRTK.Utilities.Gltf.Schema.GltfImage.bufferView - name: bufferView - href: api/XRTK.Utilities.Gltf.Schema.GltfImage.html#XRTK_Utilities_Gltf_Schema_GltfImage_bufferView - commentId: F:XRTK.Utilities.Gltf.Schema.GltfImage.bufferView - fullName: XRTK.Utilities.Gltf.Schema.GltfImage.bufferView - nameWithType: GltfImage.bufferView -- uid: XRTK.Utilities.Gltf.Schema.GltfImage.mimeType - name: mimeType - href: api/XRTK.Utilities.Gltf.Schema.GltfImage.html#XRTK_Utilities_Gltf_Schema_GltfImage_mimeType - commentId: F:XRTK.Utilities.Gltf.Schema.GltfImage.mimeType - fullName: XRTK.Utilities.Gltf.Schema.GltfImage.mimeType - nameWithType: GltfImage.mimeType -- uid: XRTK.Utilities.Gltf.Schema.GltfImage.Texture - name: Texture - href: api/XRTK.Utilities.Gltf.Schema.GltfImage.html#XRTK_Utilities_Gltf_Schema_GltfImage_Texture - commentId: P:XRTK.Utilities.Gltf.Schema.GltfImage.Texture - fullName: XRTK.Utilities.Gltf.Schema.GltfImage.Texture - nameWithType: GltfImage.Texture -- uid: XRTK.Utilities.Gltf.Schema.GltfImage.Texture* - name: Texture - href: api/XRTK.Utilities.Gltf.Schema.GltfImage.html#XRTK_Utilities_Gltf_Schema_GltfImage_Texture_ - commentId: Overload:XRTK.Utilities.Gltf.Schema.GltfImage.Texture - isSpec: "True" - fullName: XRTK.Utilities.Gltf.Schema.GltfImage.Texture - nameWithType: GltfImage.Texture -- uid: XRTK.Utilities.Gltf.Schema.GltfImage.uri - name: uri - href: api/XRTK.Utilities.Gltf.Schema.GltfImage.html#XRTK_Utilities_Gltf_Schema_GltfImage_uri - commentId: F:XRTK.Utilities.Gltf.Schema.GltfImage.uri - fullName: XRTK.Utilities.Gltf.Schema.GltfImage.uri - nameWithType: GltfImage.uri -- uid: XRTK.Utilities.Gltf.Schema.GltfInterpolationType - name: GltfInterpolationType - href: api/XRTK.Utilities.Gltf.Schema.GltfInterpolationType.html - commentId: T:XRTK.Utilities.Gltf.Schema.GltfInterpolationType - fullName: XRTK.Utilities.Gltf.Schema.GltfInterpolationType - nameWithType: GltfInterpolationType -- uid: XRTK.Utilities.Gltf.Schema.GltfInterpolationType.CATMULLROMSPLINE - name: CATMULLROMSPLINE - href: api/XRTK.Utilities.Gltf.Schema.GltfInterpolationType.html#XRTK_Utilities_Gltf_Schema_GltfInterpolationType_CATMULLROMSPLINE - commentId: F:XRTK.Utilities.Gltf.Schema.GltfInterpolationType.CATMULLROMSPLINE - fullName: XRTK.Utilities.Gltf.Schema.GltfInterpolationType.CATMULLROMSPLINE - nameWithType: GltfInterpolationType.CATMULLROMSPLINE -- uid: XRTK.Utilities.Gltf.Schema.GltfInterpolationType.CUBICSPLINE - name: CUBICSPLINE - href: api/XRTK.Utilities.Gltf.Schema.GltfInterpolationType.html#XRTK_Utilities_Gltf_Schema_GltfInterpolationType_CUBICSPLINE - commentId: F:XRTK.Utilities.Gltf.Schema.GltfInterpolationType.CUBICSPLINE - fullName: XRTK.Utilities.Gltf.Schema.GltfInterpolationType.CUBICSPLINE - nameWithType: GltfInterpolationType.CUBICSPLINE -- uid: XRTK.Utilities.Gltf.Schema.GltfInterpolationType.LINEAR - name: LINEAR - href: api/XRTK.Utilities.Gltf.Schema.GltfInterpolationType.html#XRTK_Utilities_Gltf_Schema_GltfInterpolationType_LINEAR - commentId: F:XRTK.Utilities.Gltf.Schema.GltfInterpolationType.LINEAR - fullName: XRTK.Utilities.Gltf.Schema.GltfInterpolationType.LINEAR - nameWithType: GltfInterpolationType.LINEAR -- uid: XRTK.Utilities.Gltf.Schema.GltfInterpolationType.STEP - name: STEP - href: api/XRTK.Utilities.Gltf.Schema.GltfInterpolationType.html#XRTK_Utilities_Gltf_Schema_GltfInterpolationType_STEP - commentId: F:XRTK.Utilities.Gltf.Schema.GltfInterpolationType.STEP - fullName: XRTK.Utilities.Gltf.Schema.GltfInterpolationType.STEP - nameWithType: GltfInterpolationType.STEP -- uid: XRTK.Utilities.Gltf.Schema.GltfMagnificationFilterMode - name: GltfMagnificationFilterMode - href: api/XRTK.Utilities.Gltf.Schema.GltfMagnificationFilterMode.html - commentId: T:XRTK.Utilities.Gltf.Schema.GltfMagnificationFilterMode - fullName: XRTK.Utilities.Gltf.Schema.GltfMagnificationFilterMode - nameWithType: GltfMagnificationFilterMode -- uid: XRTK.Utilities.Gltf.Schema.GltfMagnificationFilterMode.Linear - name: Linear - href: api/XRTK.Utilities.Gltf.Schema.GltfMagnificationFilterMode.html#XRTK_Utilities_Gltf_Schema_GltfMagnificationFilterMode_Linear - commentId: F:XRTK.Utilities.Gltf.Schema.GltfMagnificationFilterMode.Linear - fullName: XRTK.Utilities.Gltf.Schema.GltfMagnificationFilterMode.Linear - nameWithType: GltfMagnificationFilterMode.Linear -- uid: XRTK.Utilities.Gltf.Schema.GltfMagnificationFilterMode.Nearest - name: Nearest - href: api/XRTK.Utilities.Gltf.Schema.GltfMagnificationFilterMode.html#XRTK_Utilities_Gltf_Schema_GltfMagnificationFilterMode_Nearest - commentId: F:XRTK.Utilities.Gltf.Schema.GltfMagnificationFilterMode.Nearest - fullName: XRTK.Utilities.Gltf.Schema.GltfMagnificationFilterMode.Nearest - nameWithType: GltfMagnificationFilterMode.Nearest -- uid: XRTK.Utilities.Gltf.Schema.GltfMagnificationFilterMode.None - name: None - href: api/XRTK.Utilities.Gltf.Schema.GltfMagnificationFilterMode.html#XRTK_Utilities_Gltf_Schema_GltfMagnificationFilterMode_None - commentId: F:XRTK.Utilities.Gltf.Schema.GltfMagnificationFilterMode.None - fullName: XRTK.Utilities.Gltf.Schema.GltfMagnificationFilterMode.None - nameWithType: GltfMagnificationFilterMode.None -- uid: XRTK.Utilities.Gltf.Schema.GltfMaterial - name: GltfMaterial - href: api/XRTK.Utilities.Gltf.Schema.GltfMaterial.html - commentId: T:XRTK.Utilities.Gltf.Schema.GltfMaterial - fullName: XRTK.Utilities.Gltf.Schema.GltfMaterial - nameWithType: GltfMaterial -- uid: XRTK.Utilities.Gltf.Schema.GltfMaterial.alphaCutoff - name: alphaCutoff - href: api/XRTK.Utilities.Gltf.Schema.GltfMaterial.html#XRTK_Utilities_Gltf_Schema_GltfMaterial_alphaCutoff - commentId: F:XRTK.Utilities.Gltf.Schema.GltfMaterial.alphaCutoff - fullName: XRTK.Utilities.Gltf.Schema.GltfMaterial.alphaCutoff - nameWithType: GltfMaterial.alphaCutoff -- uid: XRTK.Utilities.Gltf.Schema.GltfMaterial.alphaMode - name: alphaMode - href: api/XRTK.Utilities.Gltf.Schema.GltfMaterial.html#XRTK_Utilities_Gltf_Schema_GltfMaterial_alphaMode - commentId: F:XRTK.Utilities.Gltf.Schema.GltfMaterial.alphaMode - fullName: XRTK.Utilities.Gltf.Schema.GltfMaterial.alphaMode - nameWithType: GltfMaterial.alphaMode -- uid: XRTK.Utilities.Gltf.Schema.GltfMaterial.commonConstant - name: commonConstant - href: api/XRTK.Utilities.Gltf.Schema.GltfMaterial.html#XRTK_Utilities_Gltf_Schema_GltfMaterial_commonConstant - commentId: F:XRTK.Utilities.Gltf.Schema.GltfMaterial.commonConstant - fullName: XRTK.Utilities.Gltf.Schema.GltfMaterial.commonConstant - nameWithType: GltfMaterial.commonConstant -- uid: XRTK.Utilities.Gltf.Schema.GltfMaterial.doubleSided - name: doubleSided - href: api/XRTK.Utilities.Gltf.Schema.GltfMaterial.html#XRTK_Utilities_Gltf_Schema_GltfMaterial_doubleSided - commentId: F:XRTK.Utilities.Gltf.Schema.GltfMaterial.doubleSided - fullName: XRTK.Utilities.Gltf.Schema.GltfMaterial.doubleSided - nameWithType: GltfMaterial.doubleSided -- uid: XRTK.Utilities.Gltf.Schema.GltfMaterial.emissiveFactor - name: emissiveFactor - href: api/XRTK.Utilities.Gltf.Schema.GltfMaterial.html#XRTK_Utilities_Gltf_Schema_GltfMaterial_emissiveFactor - commentId: F:XRTK.Utilities.Gltf.Schema.GltfMaterial.emissiveFactor - fullName: XRTK.Utilities.Gltf.Schema.GltfMaterial.emissiveFactor - nameWithType: GltfMaterial.emissiveFactor -- uid: XRTK.Utilities.Gltf.Schema.GltfMaterial.emissiveTexture - name: emissiveTexture - href: api/XRTK.Utilities.Gltf.Schema.GltfMaterial.html#XRTK_Utilities_Gltf_Schema_GltfMaterial_emissiveTexture - commentId: F:XRTK.Utilities.Gltf.Schema.GltfMaterial.emissiveTexture - fullName: XRTK.Utilities.Gltf.Schema.GltfMaterial.emissiveTexture - nameWithType: GltfMaterial.emissiveTexture -- uid: XRTK.Utilities.Gltf.Schema.GltfMaterial.Material - name: Material - href: api/XRTK.Utilities.Gltf.Schema.GltfMaterial.html#XRTK_Utilities_Gltf_Schema_GltfMaterial_Material - commentId: P:XRTK.Utilities.Gltf.Schema.GltfMaterial.Material - fullName: XRTK.Utilities.Gltf.Schema.GltfMaterial.Material - nameWithType: GltfMaterial.Material -- uid: XRTK.Utilities.Gltf.Schema.GltfMaterial.Material* - name: Material - href: api/XRTK.Utilities.Gltf.Schema.GltfMaterial.html#XRTK_Utilities_Gltf_Schema_GltfMaterial_Material_ - commentId: Overload:XRTK.Utilities.Gltf.Schema.GltfMaterial.Material - isSpec: "True" - fullName: XRTK.Utilities.Gltf.Schema.GltfMaterial.Material - nameWithType: GltfMaterial.Material -- uid: XRTK.Utilities.Gltf.Schema.GltfMaterial.normalTexture - name: normalTexture - href: api/XRTK.Utilities.Gltf.Schema.GltfMaterial.html#XRTK_Utilities_Gltf_Schema_GltfMaterial_normalTexture - commentId: F:XRTK.Utilities.Gltf.Schema.GltfMaterial.normalTexture - fullName: XRTK.Utilities.Gltf.Schema.GltfMaterial.normalTexture - nameWithType: GltfMaterial.normalTexture -- uid: XRTK.Utilities.Gltf.Schema.GltfMaterial.occlusionTexture - name: occlusionTexture - href: api/XRTK.Utilities.Gltf.Schema.GltfMaterial.html#XRTK_Utilities_Gltf_Schema_GltfMaterial_occlusionTexture - commentId: F:XRTK.Utilities.Gltf.Schema.GltfMaterial.occlusionTexture - fullName: XRTK.Utilities.Gltf.Schema.GltfMaterial.occlusionTexture - nameWithType: GltfMaterial.occlusionTexture -- uid: XRTK.Utilities.Gltf.Schema.GltfMaterial.pbrMetallicRoughness - name: pbrMetallicRoughness - href: api/XRTK.Utilities.Gltf.Schema.GltfMaterial.html#XRTK_Utilities_Gltf_Schema_GltfMaterial_pbrMetallicRoughness - commentId: F:XRTK.Utilities.Gltf.Schema.GltfMaterial.pbrMetallicRoughness - fullName: XRTK.Utilities.Gltf.Schema.GltfMaterial.pbrMetallicRoughness - nameWithType: GltfMaterial.pbrMetallicRoughness -- uid: XRTK.Utilities.Gltf.Schema.GltfMaterialCommonConstant - name: GltfMaterialCommonConstant - href: api/XRTK.Utilities.Gltf.Schema.GltfMaterialCommonConstant.html - commentId: T:XRTK.Utilities.Gltf.Schema.GltfMaterialCommonConstant - fullName: XRTK.Utilities.Gltf.Schema.GltfMaterialCommonConstant - nameWithType: GltfMaterialCommonConstant -- uid: XRTK.Utilities.Gltf.Schema.GltfMaterialCommonConstant.ambientFactor - name: ambientFactor - href: api/XRTK.Utilities.Gltf.Schema.GltfMaterialCommonConstant.html#XRTK_Utilities_Gltf_Schema_GltfMaterialCommonConstant_ambientFactor - commentId: F:XRTK.Utilities.Gltf.Schema.GltfMaterialCommonConstant.ambientFactor - fullName: XRTK.Utilities.Gltf.Schema.GltfMaterialCommonConstant.ambientFactor - nameWithType: GltfMaterialCommonConstant.ambientFactor -- uid: XRTK.Utilities.Gltf.Schema.GltfMaterialCommonConstant.lightmapFactor - name: lightmapFactor - href: api/XRTK.Utilities.Gltf.Schema.GltfMaterialCommonConstant.html#XRTK_Utilities_Gltf_Schema_GltfMaterialCommonConstant_lightmapFactor - commentId: F:XRTK.Utilities.Gltf.Schema.GltfMaterialCommonConstant.lightmapFactor - fullName: XRTK.Utilities.Gltf.Schema.GltfMaterialCommonConstant.lightmapFactor - nameWithType: GltfMaterialCommonConstant.lightmapFactor -- uid: XRTK.Utilities.Gltf.Schema.GltfMaterialCommonConstant.lightmapTexture - name: lightmapTexture - href: api/XRTK.Utilities.Gltf.Schema.GltfMaterialCommonConstant.html#XRTK_Utilities_Gltf_Schema_GltfMaterialCommonConstant_lightmapTexture - commentId: F:XRTK.Utilities.Gltf.Schema.GltfMaterialCommonConstant.lightmapTexture - fullName: XRTK.Utilities.Gltf.Schema.GltfMaterialCommonConstant.lightmapTexture - nameWithType: GltfMaterialCommonConstant.lightmapTexture -- uid: XRTK.Utilities.Gltf.Schema.GltfMesh - name: GltfMesh - href: api/XRTK.Utilities.Gltf.Schema.GltfMesh.html - commentId: T:XRTK.Utilities.Gltf.Schema.GltfMesh - fullName: XRTK.Utilities.Gltf.Schema.GltfMesh - nameWithType: GltfMesh -- uid: XRTK.Utilities.Gltf.Schema.GltfMesh.Mesh - name: Mesh - href: api/XRTK.Utilities.Gltf.Schema.GltfMesh.html#XRTK_Utilities_Gltf_Schema_GltfMesh_Mesh - commentId: P:XRTK.Utilities.Gltf.Schema.GltfMesh.Mesh - fullName: XRTK.Utilities.Gltf.Schema.GltfMesh.Mesh - nameWithType: GltfMesh.Mesh -- uid: XRTK.Utilities.Gltf.Schema.GltfMesh.Mesh* - name: Mesh - href: api/XRTK.Utilities.Gltf.Schema.GltfMesh.html#XRTK_Utilities_Gltf_Schema_GltfMesh_Mesh_ - commentId: Overload:XRTK.Utilities.Gltf.Schema.GltfMesh.Mesh - isSpec: "True" - fullName: XRTK.Utilities.Gltf.Schema.GltfMesh.Mesh - nameWithType: GltfMesh.Mesh -- uid: XRTK.Utilities.Gltf.Schema.GltfMesh.primitives - name: primitives - href: api/XRTK.Utilities.Gltf.Schema.GltfMesh.html#XRTK_Utilities_Gltf_Schema_GltfMesh_primitives - commentId: F:XRTK.Utilities.Gltf.Schema.GltfMesh.primitives - fullName: XRTK.Utilities.Gltf.Schema.GltfMesh.primitives - nameWithType: GltfMesh.primitives -- uid: XRTK.Utilities.Gltf.Schema.GltfMesh.weights - name: weights - href: api/XRTK.Utilities.Gltf.Schema.GltfMesh.html#XRTK_Utilities_Gltf_Schema_GltfMesh_weights - commentId: F:XRTK.Utilities.Gltf.Schema.GltfMesh.weights - fullName: XRTK.Utilities.Gltf.Schema.GltfMesh.weights - nameWithType: GltfMesh.weights -- uid: XRTK.Utilities.Gltf.Schema.GltfMeshPrimitive - name: GltfMeshPrimitive - href: api/XRTK.Utilities.Gltf.Schema.GltfMeshPrimitive.html - commentId: T:XRTK.Utilities.Gltf.Schema.GltfMeshPrimitive - fullName: XRTK.Utilities.Gltf.Schema.GltfMeshPrimitive - nameWithType: GltfMeshPrimitive -- uid: XRTK.Utilities.Gltf.Schema.GltfMeshPrimitive.Attributes - name: Attributes - href: api/XRTK.Utilities.Gltf.Schema.GltfMeshPrimitive.html#XRTK_Utilities_Gltf_Schema_GltfMeshPrimitive_Attributes - commentId: P:XRTK.Utilities.Gltf.Schema.GltfMeshPrimitive.Attributes - fullName: XRTK.Utilities.Gltf.Schema.GltfMeshPrimitive.Attributes - nameWithType: GltfMeshPrimitive.Attributes -- uid: XRTK.Utilities.Gltf.Schema.GltfMeshPrimitive.Attributes* - name: Attributes - href: api/XRTK.Utilities.Gltf.Schema.GltfMeshPrimitive.html#XRTK_Utilities_Gltf_Schema_GltfMeshPrimitive_Attributes_ - commentId: Overload:XRTK.Utilities.Gltf.Schema.GltfMeshPrimitive.Attributes - isSpec: "True" - fullName: XRTK.Utilities.Gltf.Schema.GltfMeshPrimitive.Attributes - nameWithType: GltfMeshPrimitive.Attributes -- uid: XRTK.Utilities.Gltf.Schema.GltfMeshPrimitive.indices - name: indices - href: api/XRTK.Utilities.Gltf.Schema.GltfMeshPrimitive.html#XRTK_Utilities_Gltf_Schema_GltfMeshPrimitive_indices - commentId: F:XRTK.Utilities.Gltf.Schema.GltfMeshPrimitive.indices - fullName: XRTK.Utilities.Gltf.Schema.GltfMeshPrimitive.indices - nameWithType: GltfMeshPrimitive.indices -- uid: XRTK.Utilities.Gltf.Schema.GltfMeshPrimitive.material - name: material - href: api/XRTK.Utilities.Gltf.Schema.GltfMeshPrimitive.html#XRTK_Utilities_Gltf_Schema_GltfMeshPrimitive_material - commentId: F:XRTK.Utilities.Gltf.Schema.GltfMeshPrimitive.material - fullName: XRTK.Utilities.Gltf.Schema.GltfMeshPrimitive.material - nameWithType: GltfMeshPrimitive.material -- uid: XRTK.Utilities.Gltf.Schema.GltfMeshPrimitive.mode - name: mode - href: api/XRTK.Utilities.Gltf.Schema.GltfMeshPrimitive.html#XRTK_Utilities_Gltf_Schema_GltfMeshPrimitive_mode - commentId: F:XRTK.Utilities.Gltf.Schema.GltfMeshPrimitive.mode - fullName: XRTK.Utilities.Gltf.Schema.GltfMeshPrimitive.mode - nameWithType: GltfMeshPrimitive.mode -- uid: XRTK.Utilities.Gltf.Schema.GltfMeshPrimitive.SubMesh - name: SubMesh - href: api/XRTK.Utilities.Gltf.Schema.GltfMeshPrimitive.html#XRTK_Utilities_Gltf_Schema_GltfMeshPrimitive_SubMesh - commentId: P:XRTK.Utilities.Gltf.Schema.GltfMeshPrimitive.SubMesh - fullName: XRTK.Utilities.Gltf.Schema.GltfMeshPrimitive.SubMesh - nameWithType: GltfMeshPrimitive.SubMesh -- uid: XRTK.Utilities.Gltf.Schema.GltfMeshPrimitive.SubMesh* - name: SubMesh - href: api/XRTK.Utilities.Gltf.Schema.GltfMeshPrimitive.html#XRTK_Utilities_Gltf_Schema_GltfMeshPrimitive_SubMesh_ - commentId: Overload:XRTK.Utilities.Gltf.Schema.GltfMeshPrimitive.SubMesh - isSpec: "True" - fullName: XRTK.Utilities.Gltf.Schema.GltfMeshPrimitive.SubMesh - nameWithType: GltfMeshPrimitive.SubMesh -- uid: XRTK.Utilities.Gltf.Schema.GltfMeshPrimitive.Targets - name: Targets - href: api/XRTK.Utilities.Gltf.Schema.GltfMeshPrimitive.html#XRTK_Utilities_Gltf_Schema_GltfMeshPrimitive_Targets - commentId: P:XRTK.Utilities.Gltf.Schema.GltfMeshPrimitive.Targets - fullName: XRTK.Utilities.Gltf.Schema.GltfMeshPrimitive.Targets - nameWithType: GltfMeshPrimitive.Targets -- uid: XRTK.Utilities.Gltf.Schema.GltfMeshPrimitive.Targets* - name: Targets - href: api/XRTK.Utilities.Gltf.Schema.GltfMeshPrimitive.html#XRTK_Utilities_Gltf_Schema_GltfMeshPrimitive_Targets_ - commentId: Overload:XRTK.Utilities.Gltf.Schema.GltfMeshPrimitive.Targets - isSpec: "True" - fullName: XRTK.Utilities.Gltf.Schema.GltfMeshPrimitive.Targets - nameWithType: GltfMeshPrimitive.Targets -- uid: XRTK.Utilities.Gltf.Schema.GltfMeshPrimitiveAttributes - name: GltfMeshPrimitiveAttributes - href: api/XRTK.Utilities.Gltf.Schema.GltfMeshPrimitiveAttributes.html - commentId: T:XRTK.Utilities.Gltf.Schema.GltfMeshPrimitiveAttributes - fullName: XRTK.Utilities.Gltf.Schema.GltfMeshPrimitiveAttributes - nameWithType: GltfMeshPrimitiveAttributes -- uid: XRTK.Utilities.Gltf.Schema.GltfMeshPrimitiveAttributes.COLOR_0 - name: COLOR_0 - href: api/XRTK.Utilities.Gltf.Schema.GltfMeshPrimitiveAttributes.html#XRTK_Utilities_Gltf_Schema_GltfMeshPrimitiveAttributes_COLOR_0 - commentId: F:XRTK.Utilities.Gltf.Schema.GltfMeshPrimitiveAttributes.COLOR_0 - fullName: XRTK.Utilities.Gltf.Schema.GltfMeshPrimitiveAttributes.COLOR_0 - nameWithType: GltfMeshPrimitiveAttributes.COLOR_0 -- uid: XRTK.Utilities.Gltf.Schema.GltfMeshPrimitiveAttributes.JOINTS_0 - name: JOINTS_0 - href: api/XRTK.Utilities.Gltf.Schema.GltfMeshPrimitiveAttributes.html#XRTK_Utilities_Gltf_Schema_GltfMeshPrimitiveAttributes_JOINTS_0 - commentId: F:XRTK.Utilities.Gltf.Schema.GltfMeshPrimitiveAttributes.JOINTS_0 - fullName: XRTK.Utilities.Gltf.Schema.GltfMeshPrimitiveAttributes.JOINTS_0 - nameWithType: GltfMeshPrimitiveAttributes.JOINTS_0 -- uid: XRTK.Utilities.Gltf.Schema.GltfMeshPrimitiveAttributes.NORMAL - name: NORMAL - href: api/XRTK.Utilities.Gltf.Schema.GltfMeshPrimitiveAttributes.html#XRTK_Utilities_Gltf_Schema_GltfMeshPrimitiveAttributes_NORMAL - commentId: F:XRTK.Utilities.Gltf.Schema.GltfMeshPrimitiveAttributes.NORMAL - fullName: XRTK.Utilities.Gltf.Schema.GltfMeshPrimitiveAttributes.NORMAL - nameWithType: GltfMeshPrimitiveAttributes.NORMAL -- uid: XRTK.Utilities.Gltf.Schema.GltfMeshPrimitiveAttributes.POSITION - name: POSITION - href: api/XRTK.Utilities.Gltf.Schema.GltfMeshPrimitiveAttributes.html#XRTK_Utilities_Gltf_Schema_GltfMeshPrimitiveAttributes_POSITION - commentId: F:XRTK.Utilities.Gltf.Schema.GltfMeshPrimitiveAttributes.POSITION - fullName: XRTK.Utilities.Gltf.Schema.GltfMeshPrimitiveAttributes.POSITION - nameWithType: GltfMeshPrimitiveAttributes.POSITION -- uid: XRTK.Utilities.Gltf.Schema.GltfMeshPrimitiveAttributes.TANGENT - name: TANGENT - href: api/XRTK.Utilities.Gltf.Schema.GltfMeshPrimitiveAttributes.html#XRTK_Utilities_Gltf_Schema_GltfMeshPrimitiveAttributes_TANGENT - commentId: F:XRTK.Utilities.Gltf.Schema.GltfMeshPrimitiveAttributes.TANGENT - fullName: XRTK.Utilities.Gltf.Schema.GltfMeshPrimitiveAttributes.TANGENT - nameWithType: GltfMeshPrimitiveAttributes.TANGENT -- uid: XRTK.Utilities.Gltf.Schema.GltfMeshPrimitiveAttributes.TEXCOORD_0 - name: TEXCOORD_0 - href: api/XRTK.Utilities.Gltf.Schema.GltfMeshPrimitiveAttributes.html#XRTK_Utilities_Gltf_Schema_GltfMeshPrimitiveAttributes_TEXCOORD_0 - commentId: F:XRTK.Utilities.Gltf.Schema.GltfMeshPrimitiveAttributes.TEXCOORD_0 - fullName: XRTK.Utilities.Gltf.Schema.GltfMeshPrimitiveAttributes.TEXCOORD_0 - nameWithType: GltfMeshPrimitiveAttributes.TEXCOORD_0 -- uid: XRTK.Utilities.Gltf.Schema.GltfMeshPrimitiveAttributes.TEXCOORD_1 - name: TEXCOORD_1 - href: api/XRTK.Utilities.Gltf.Schema.GltfMeshPrimitiveAttributes.html#XRTK_Utilities_Gltf_Schema_GltfMeshPrimitiveAttributes_TEXCOORD_1 - commentId: F:XRTK.Utilities.Gltf.Schema.GltfMeshPrimitiveAttributes.TEXCOORD_1 - fullName: XRTK.Utilities.Gltf.Schema.GltfMeshPrimitiveAttributes.TEXCOORD_1 - nameWithType: GltfMeshPrimitiveAttributes.TEXCOORD_1 -- uid: XRTK.Utilities.Gltf.Schema.GltfMeshPrimitiveAttributes.TEXCOORD_2 - name: TEXCOORD_2 - href: api/XRTK.Utilities.Gltf.Schema.GltfMeshPrimitiveAttributes.html#XRTK_Utilities_Gltf_Schema_GltfMeshPrimitiveAttributes_TEXCOORD_2 - commentId: F:XRTK.Utilities.Gltf.Schema.GltfMeshPrimitiveAttributes.TEXCOORD_2 - fullName: XRTK.Utilities.Gltf.Schema.GltfMeshPrimitiveAttributes.TEXCOORD_2 - nameWithType: GltfMeshPrimitiveAttributes.TEXCOORD_2 -- uid: XRTK.Utilities.Gltf.Schema.GltfMeshPrimitiveAttributes.TEXCOORD_3 - name: TEXCOORD_3 - href: api/XRTK.Utilities.Gltf.Schema.GltfMeshPrimitiveAttributes.html#XRTK_Utilities_Gltf_Schema_GltfMeshPrimitiveAttributes_TEXCOORD_3 - commentId: F:XRTK.Utilities.Gltf.Schema.GltfMeshPrimitiveAttributes.TEXCOORD_3 - fullName: XRTK.Utilities.Gltf.Schema.GltfMeshPrimitiveAttributes.TEXCOORD_3 - nameWithType: GltfMeshPrimitiveAttributes.TEXCOORD_3 -- uid: XRTK.Utilities.Gltf.Schema.GltfMeshPrimitiveAttributes.WEIGHTS_0 - name: WEIGHTS_0 - href: api/XRTK.Utilities.Gltf.Schema.GltfMeshPrimitiveAttributes.html#XRTK_Utilities_Gltf_Schema_GltfMeshPrimitiveAttributes_WEIGHTS_0 - commentId: F:XRTK.Utilities.Gltf.Schema.GltfMeshPrimitiveAttributes.WEIGHTS_0 - fullName: XRTK.Utilities.Gltf.Schema.GltfMeshPrimitiveAttributes.WEIGHTS_0 - nameWithType: GltfMeshPrimitiveAttributes.WEIGHTS_0 -- uid: XRTK.Utilities.Gltf.Schema.GltfMinFilterMode - name: GltfMinFilterMode - href: api/XRTK.Utilities.Gltf.Schema.GltfMinFilterMode.html - commentId: T:XRTK.Utilities.Gltf.Schema.GltfMinFilterMode - fullName: XRTK.Utilities.Gltf.Schema.GltfMinFilterMode - nameWithType: GltfMinFilterMode -- uid: XRTK.Utilities.Gltf.Schema.GltfMinFilterMode.Linear - name: Linear - href: api/XRTK.Utilities.Gltf.Schema.GltfMinFilterMode.html#XRTK_Utilities_Gltf_Schema_GltfMinFilterMode_Linear - commentId: F:XRTK.Utilities.Gltf.Schema.GltfMinFilterMode.Linear - fullName: XRTK.Utilities.Gltf.Schema.GltfMinFilterMode.Linear - nameWithType: GltfMinFilterMode.Linear -- uid: XRTK.Utilities.Gltf.Schema.GltfMinFilterMode.LinearMipmapLinear - name: LinearMipmapLinear - href: api/XRTK.Utilities.Gltf.Schema.GltfMinFilterMode.html#XRTK_Utilities_Gltf_Schema_GltfMinFilterMode_LinearMipmapLinear - commentId: F:XRTK.Utilities.Gltf.Schema.GltfMinFilterMode.LinearMipmapLinear - fullName: XRTK.Utilities.Gltf.Schema.GltfMinFilterMode.LinearMipmapLinear - nameWithType: GltfMinFilterMode.LinearMipmapLinear -- uid: XRTK.Utilities.Gltf.Schema.GltfMinFilterMode.LinearMipmapNearest - name: LinearMipmapNearest - href: api/XRTK.Utilities.Gltf.Schema.GltfMinFilterMode.html#XRTK_Utilities_Gltf_Schema_GltfMinFilterMode_LinearMipmapNearest - commentId: F:XRTK.Utilities.Gltf.Schema.GltfMinFilterMode.LinearMipmapNearest - fullName: XRTK.Utilities.Gltf.Schema.GltfMinFilterMode.LinearMipmapNearest - nameWithType: GltfMinFilterMode.LinearMipmapNearest -- uid: XRTK.Utilities.Gltf.Schema.GltfMinFilterMode.Nearest - name: Nearest - href: api/XRTK.Utilities.Gltf.Schema.GltfMinFilterMode.html#XRTK_Utilities_Gltf_Schema_GltfMinFilterMode_Nearest - commentId: F:XRTK.Utilities.Gltf.Schema.GltfMinFilterMode.Nearest - fullName: XRTK.Utilities.Gltf.Schema.GltfMinFilterMode.Nearest - nameWithType: GltfMinFilterMode.Nearest -- uid: XRTK.Utilities.Gltf.Schema.GltfMinFilterMode.NearestMipmapLinear - name: NearestMipmapLinear - href: api/XRTK.Utilities.Gltf.Schema.GltfMinFilterMode.html#XRTK_Utilities_Gltf_Schema_GltfMinFilterMode_NearestMipmapLinear - commentId: F:XRTK.Utilities.Gltf.Schema.GltfMinFilterMode.NearestMipmapLinear - fullName: XRTK.Utilities.Gltf.Schema.GltfMinFilterMode.NearestMipmapLinear - nameWithType: GltfMinFilterMode.NearestMipmapLinear -- uid: XRTK.Utilities.Gltf.Schema.GltfMinFilterMode.NearestMipmapNearest - name: NearestMipmapNearest - href: api/XRTK.Utilities.Gltf.Schema.GltfMinFilterMode.html#XRTK_Utilities_Gltf_Schema_GltfMinFilterMode_NearestMipmapNearest - commentId: F:XRTK.Utilities.Gltf.Schema.GltfMinFilterMode.NearestMipmapNearest - fullName: XRTK.Utilities.Gltf.Schema.GltfMinFilterMode.NearestMipmapNearest - nameWithType: GltfMinFilterMode.NearestMipmapNearest -- uid: XRTK.Utilities.Gltf.Schema.GltfMinFilterMode.None - name: None - href: api/XRTK.Utilities.Gltf.Schema.GltfMinFilterMode.html#XRTK_Utilities_Gltf_Schema_GltfMinFilterMode_None - commentId: F:XRTK.Utilities.Gltf.Schema.GltfMinFilterMode.None - fullName: XRTK.Utilities.Gltf.Schema.GltfMinFilterMode.None - nameWithType: GltfMinFilterMode.None -- uid: XRTK.Utilities.Gltf.Schema.GltfNode - name: GltfNode - href: api/XRTK.Utilities.Gltf.Schema.GltfNode.html - commentId: T:XRTK.Utilities.Gltf.Schema.GltfNode - fullName: XRTK.Utilities.Gltf.Schema.GltfNode - nameWithType: GltfNode -- uid: XRTK.Utilities.Gltf.Schema.GltfNode.camera - name: camera - href: api/XRTK.Utilities.Gltf.Schema.GltfNode.html#XRTK_Utilities_Gltf_Schema_GltfNode_camera - commentId: F:XRTK.Utilities.Gltf.Schema.GltfNode.camera - fullName: XRTK.Utilities.Gltf.Schema.GltfNode.camera - nameWithType: GltfNode.camera -- uid: XRTK.Utilities.Gltf.Schema.GltfNode.children - name: children - href: api/XRTK.Utilities.Gltf.Schema.GltfNode.html#XRTK_Utilities_Gltf_Schema_GltfNode_children - commentId: F:XRTK.Utilities.Gltf.Schema.GltfNode.children - fullName: XRTK.Utilities.Gltf.Schema.GltfNode.children - nameWithType: GltfNode.children -- uid: XRTK.Utilities.Gltf.Schema.GltfNode.matrix - name: matrix - href: api/XRTK.Utilities.Gltf.Schema.GltfNode.html#XRTK_Utilities_Gltf_Schema_GltfNode_matrix - commentId: F:XRTK.Utilities.Gltf.Schema.GltfNode.matrix - fullName: XRTK.Utilities.Gltf.Schema.GltfNode.matrix - nameWithType: GltfNode.matrix -- uid: XRTK.Utilities.Gltf.Schema.GltfNode.Matrix - name: Matrix - href: api/XRTK.Utilities.Gltf.Schema.GltfNode.html#XRTK_Utilities_Gltf_Schema_GltfNode_Matrix - commentId: P:XRTK.Utilities.Gltf.Schema.GltfNode.Matrix - fullName: XRTK.Utilities.Gltf.Schema.GltfNode.Matrix - nameWithType: GltfNode.Matrix -- uid: XRTK.Utilities.Gltf.Schema.GltfNode.Matrix* - name: Matrix - href: api/XRTK.Utilities.Gltf.Schema.GltfNode.html#XRTK_Utilities_Gltf_Schema_GltfNode_Matrix_ - commentId: Overload:XRTK.Utilities.Gltf.Schema.GltfNode.Matrix - isSpec: "True" - fullName: XRTK.Utilities.Gltf.Schema.GltfNode.Matrix - nameWithType: GltfNode.Matrix -- uid: XRTK.Utilities.Gltf.Schema.GltfNode.mesh - name: mesh - href: api/XRTK.Utilities.Gltf.Schema.GltfNode.html#XRTK_Utilities_Gltf_Schema_GltfNode_mesh - commentId: F:XRTK.Utilities.Gltf.Schema.GltfNode.mesh - fullName: XRTK.Utilities.Gltf.Schema.GltfNode.mesh - nameWithType: GltfNode.mesh -- uid: XRTK.Utilities.Gltf.Schema.GltfNode.rotation - name: rotation - href: api/XRTK.Utilities.Gltf.Schema.GltfNode.html#XRTK_Utilities_Gltf_Schema_GltfNode_rotation - commentId: F:XRTK.Utilities.Gltf.Schema.GltfNode.rotation - fullName: XRTK.Utilities.Gltf.Schema.GltfNode.rotation - nameWithType: GltfNode.rotation -- uid: XRTK.Utilities.Gltf.Schema.GltfNode.scale - name: scale - href: api/XRTK.Utilities.Gltf.Schema.GltfNode.html#XRTK_Utilities_Gltf_Schema_GltfNode_scale - commentId: F:XRTK.Utilities.Gltf.Schema.GltfNode.scale - fullName: XRTK.Utilities.Gltf.Schema.GltfNode.scale - nameWithType: GltfNode.scale -- uid: XRTK.Utilities.Gltf.Schema.GltfNode.skin - name: skin - href: api/XRTK.Utilities.Gltf.Schema.GltfNode.html#XRTK_Utilities_Gltf_Schema_GltfNode_skin - commentId: F:XRTK.Utilities.Gltf.Schema.GltfNode.skin - fullName: XRTK.Utilities.Gltf.Schema.GltfNode.skin - nameWithType: GltfNode.skin -- uid: XRTK.Utilities.Gltf.Schema.GltfNode.translation - name: translation - href: api/XRTK.Utilities.Gltf.Schema.GltfNode.html#XRTK_Utilities_Gltf_Schema_GltfNode_translation - commentId: F:XRTK.Utilities.Gltf.Schema.GltfNode.translation - fullName: XRTK.Utilities.Gltf.Schema.GltfNode.translation - nameWithType: GltfNode.translation -- uid: XRTK.Utilities.Gltf.Schema.GltfNode.useTRS - name: useTRS - href: api/XRTK.Utilities.Gltf.Schema.GltfNode.html#XRTK_Utilities_Gltf_Schema_GltfNode_useTRS - commentId: F:XRTK.Utilities.Gltf.Schema.GltfNode.useTRS - fullName: XRTK.Utilities.Gltf.Schema.GltfNode.useTRS - nameWithType: GltfNode.useTRS -- uid: XRTK.Utilities.Gltf.Schema.GltfNode.weights - name: weights - href: api/XRTK.Utilities.Gltf.Schema.GltfNode.html#XRTK_Utilities_Gltf_Schema_GltfNode_weights - commentId: F:XRTK.Utilities.Gltf.Schema.GltfNode.weights - fullName: XRTK.Utilities.Gltf.Schema.GltfNode.weights - nameWithType: GltfNode.weights -- uid: XRTK.Utilities.Gltf.Schema.GltfNormalTextureInfo - name: GltfNormalTextureInfo - href: api/XRTK.Utilities.Gltf.Schema.GltfNormalTextureInfo.html - commentId: T:XRTK.Utilities.Gltf.Schema.GltfNormalTextureInfo - fullName: XRTK.Utilities.Gltf.Schema.GltfNormalTextureInfo - nameWithType: GltfNormalTextureInfo -- uid: XRTK.Utilities.Gltf.Schema.GltfNormalTextureInfo.scale - name: scale - href: api/XRTK.Utilities.Gltf.Schema.GltfNormalTextureInfo.html#XRTK_Utilities_Gltf_Schema_GltfNormalTextureInfo_scale - commentId: F:XRTK.Utilities.Gltf.Schema.GltfNormalTextureInfo.scale - fullName: XRTK.Utilities.Gltf.Schema.GltfNormalTextureInfo.scale - nameWithType: GltfNormalTextureInfo.scale -- uid: XRTK.Utilities.Gltf.Schema.GltfObject - name: GltfObject - href: api/XRTK.Utilities.Gltf.Schema.GltfObject.html - commentId: T:XRTK.Utilities.Gltf.Schema.GltfObject - fullName: XRTK.Utilities.Gltf.Schema.GltfObject - nameWithType: GltfObject -- uid: XRTK.Utilities.Gltf.Schema.GltfObject.accessors - name: accessors - href: api/XRTK.Utilities.Gltf.Schema.GltfObject.html#XRTK_Utilities_Gltf_Schema_GltfObject_accessors - commentId: F:XRTK.Utilities.Gltf.Schema.GltfObject.accessors - fullName: XRTK.Utilities.Gltf.Schema.GltfObject.accessors - nameWithType: GltfObject.accessors -- uid: XRTK.Utilities.Gltf.Schema.GltfObject.animations - name: animations - href: api/XRTK.Utilities.Gltf.Schema.GltfObject.html#XRTK_Utilities_Gltf_Schema_GltfObject_animations - commentId: F:XRTK.Utilities.Gltf.Schema.GltfObject.animations - fullName: XRTK.Utilities.Gltf.Schema.GltfObject.animations - nameWithType: GltfObject.animations -- uid: XRTK.Utilities.Gltf.Schema.GltfObject.asset - name: asset - href: api/XRTK.Utilities.Gltf.Schema.GltfObject.html#XRTK_Utilities_Gltf_Schema_GltfObject_asset - commentId: F:XRTK.Utilities.Gltf.Schema.GltfObject.asset - fullName: XRTK.Utilities.Gltf.Schema.GltfObject.asset - nameWithType: GltfObject.asset -- uid: XRTK.Utilities.Gltf.Schema.GltfObject.buffers - name: buffers - href: api/XRTK.Utilities.Gltf.Schema.GltfObject.html#XRTK_Utilities_Gltf_Schema_GltfObject_buffers - commentId: F:XRTK.Utilities.Gltf.Schema.GltfObject.buffers - fullName: XRTK.Utilities.Gltf.Schema.GltfObject.buffers - nameWithType: GltfObject.buffers -- uid: XRTK.Utilities.Gltf.Schema.GltfObject.bufferViews - name: bufferViews - href: api/XRTK.Utilities.Gltf.Schema.GltfObject.html#XRTK_Utilities_Gltf_Schema_GltfObject_bufferViews - commentId: F:XRTK.Utilities.Gltf.Schema.GltfObject.bufferViews - fullName: XRTK.Utilities.Gltf.Schema.GltfObject.bufferViews - nameWithType: GltfObject.bufferViews -- uid: XRTK.Utilities.Gltf.Schema.GltfObject.cameras - name: cameras - href: api/XRTK.Utilities.Gltf.Schema.GltfObject.html#XRTK_Utilities_Gltf_Schema_GltfObject_cameras - commentId: F:XRTK.Utilities.Gltf.Schema.GltfObject.cameras - fullName: XRTK.Utilities.Gltf.Schema.GltfObject.cameras - nameWithType: GltfObject.cameras -- uid: XRTK.Utilities.Gltf.Schema.GltfObject.extensionsRequired - name: extensionsRequired - href: api/XRTK.Utilities.Gltf.Schema.GltfObject.html#XRTK_Utilities_Gltf_Schema_GltfObject_extensionsRequired - commentId: F:XRTK.Utilities.Gltf.Schema.GltfObject.extensionsRequired - fullName: XRTK.Utilities.Gltf.Schema.GltfObject.extensionsRequired - nameWithType: GltfObject.extensionsRequired -- uid: XRTK.Utilities.Gltf.Schema.GltfObject.extensionsUsed - name: extensionsUsed - href: api/XRTK.Utilities.Gltf.Schema.GltfObject.html#XRTK_Utilities_Gltf_Schema_GltfObject_extensionsUsed - commentId: F:XRTK.Utilities.Gltf.Schema.GltfObject.extensionsUsed - fullName: XRTK.Utilities.Gltf.Schema.GltfObject.extensionsUsed - nameWithType: GltfObject.extensionsUsed -- uid: XRTK.Utilities.Gltf.Schema.GltfObject.GameObjectReference - name: GameObjectReference - href: api/XRTK.Utilities.Gltf.Schema.GltfObject.html#XRTK_Utilities_Gltf_Schema_GltfObject_GameObjectReference - commentId: P:XRTK.Utilities.Gltf.Schema.GltfObject.GameObjectReference - fullName: XRTK.Utilities.Gltf.Schema.GltfObject.GameObjectReference - nameWithType: GltfObject.GameObjectReference -- uid: XRTK.Utilities.Gltf.Schema.GltfObject.GameObjectReference* - name: GameObjectReference - href: api/XRTK.Utilities.Gltf.Schema.GltfObject.html#XRTK_Utilities_Gltf_Schema_GltfObject_GameObjectReference_ - commentId: Overload:XRTK.Utilities.Gltf.Schema.GltfObject.GameObjectReference - isSpec: "True" - fullName: XRTK.Utilities.Gltf.Schema.GltfObject.GameObjectReference - nameWithType: GltfObject.GameObjectReference -- uid: XRTK.Utilities.Gltf.Schema.GltfObject.images - name: images - href: api/XRTK.Utilities.Gltf.Schema.GltfObject.html#XRTK_Utilities_Gltf_Schema_GltfObject_images - commentId: F:XRTK.Utilities.Gltf.Schema.GltfObject.images - fullName: XRTK.Utilities.Gltf.Schema.GltfObject.images - nameWithType: GltfObject.images -- uid: XRTK.Utilities.Gltf.Schema.GltfObject.materials - name: materials - href: api/XRTK.Utilities.Gltf.Schema.GltfObject.html#XRTK_Utilities_Gltf_Schema_GltfObject_materials - commentId: F:XRTK.Utilities.Gltf.Schema.GltfObject.materials - fullName: XRTK.Utilities.Gltf.Schema.GltfObject.materials - nameWithType: GltfObject.materials -- uid: XRTK.Utilities.Gltf.Schema.GltfObject.meshes - name: meshes - href: api/XRTK.Utilities.Gltf.Schema.GltfObject.html#XRTK_Utilities_Gltf_Schema_GltfObject_meshes - commentId: F:XRTK.Utilities.Gltf.Schema.GltfObject.meshes - fullName: XRTK.Utilities.Gltf.Schema.GltfObject.meshes - nameWithType: GltfObject.meshes -- uid: XRTK.Utilities.Gltf.Schema.GltfObject.Name - name: Name - href: api/XRTK.Utilities.Gltf.Schema.GltfObject.html#XRTK_Utilities_Gltf_Schema_GltfObject_Name - commentId: P:XRTK.Utilities.Gltf.Schema.GltfObject.Name - fullName: XRTK.Utilities.Gltf.Schema.GltfObject.Name - nameWithType: GltfObject.Name -- uid: XRTK.Utilities.Gltf.Schema.GltfObject.Name* - name: Name - href: api/XRTK.Utilities.Gltf.Schema.GltfObject.html#XRTK_Utilities_Gltf_Schema_GltfObject_Name_ - commentId: Overload:XRTK.Utilities.Gltf.Schema.GltfObject.Name - isSpec: "True" - fullName: XRTK.Utilities.Gltf.Schema.GltfObject.Name - nameWithType: GltfObject.Name -- uid: XRTK.Utilities.Gltf.Schema.GltfObject.nodes - name: nodes - href: api/XRTK.Utilities.Gltf.Schema.GltfObject.html#XRTK_Utilities_Gltf_Schema_GltfObject_nodes - commentId: F:XRTK.Utilities.Gltf.Schema.GltfObject.nodes - fullName: XRTK.Utilities.Gltf.Schema.GltfObject.nodes - nameWithType: GltfObject.nodes -- uid: XRTK.Utilities.Gltf.Schema.GltfObject.RegisteredExtensions - name: RegisteredExtensions - href: api/XRTK.Utilities.Gltf.Schema.GltfObject.html#XRTK_Utilities_Gltf_Schema_GltfObject_RegisteredExtensions - commentId: P:XRTK.Utilities.Gltf.Schema.GltfObject.RegisteredExtensions - fullName: XRTK.Utilities.Gltf.Schema.GltfObject.RegisteredExtensions - nameWithType: GltfObject.RegisteredExtensions -- uid: XRTK.Utilities.Gltf.Schema.GltfObject.RegisteredExtensions* - name: RegisteredExtensions - href: api/XRTK.Utilities.Gltf.Schema.GltfObject.html#XRTK_Utilities_Gltf_Schema_GltfObject_RegisteredExtensions_ - commentId: Overload:XRTK.Utilities.Gltf.Schema.GltfObject.RegisteredExtensions - isSpec: "True" - fullName: XRTK.Utilities.Gltf.Schema.GltfObject.RegisteredExtensions - nameWithType: GltfObject.RegisteredExtensions -- uid: XRTK.Utilities.Gltf.Schema.GltfObject.samplers - name: samplers - href: api/XRTK.Utilities.Gltf.Schema.GltfObject.html#XRTK_Utilities_Gltf_Schema_GltfObject_samplers - commentId: F:XRTK.Utilities.Gltf.Schema.GltfObject.samplers - fullName: XRTK.Utilities.Gltf.Schema.GltfObject.samplers - nameWithType: GltfObject.samplers -- uid: XRTK.Utilities.Gltf.Schema.GltfObject.scene - name: scene - href: api/XRTK.Utilities.Gltf.Schema.GltfObject.html#XRTK_Utilities_Gltf_Schema_GltfObject_scene - commentId: F:XRTK.Utilities.Gltf.Schema.GltfObject.scene - fullName: XRTK.Utilities.Gltf.Schema.GltfObject.scene - nameWithType: GltfObject.scene -- uid: XRTK.Utilities.Gltf.Schema.GltfObject.scenes - name: scenes - href: api/XRTK.Utilities.Gltf.Schema.GltfObject.html#XRTK_Utilities_Gltf_Schema_GltfObject_scenes - commentId: F:XRTK.Utilities.Gltf.Schema.GltfObject.scenes - fullName: XRTK.Utilities.Gltf.Schema.GltfObject.scenes - nameWithType: GltfObject.scenes -- uid: XRTK.Utilities.Gltf.Schema.GltfObject.skins - name: skins - href: api/XRTK.Utilities.Gltf.Schema.GltfObject.html#XRTK_Utilities_Gltf_Schema_GltfObject_skins - commentId: F:XRTK.Utilities.Gltf.Schema.GltfObject.skins - fullName: XRTK.Utilities.Gltf.Schema.GltfObject.skins - nameWithType: GltfObject.skins -- uid: XRTK.Utilities.Gltf.Schema.GltfObject.textures - name: textures - href: api/XRTK.Utilities.Gltf.Schema.GltfObject.html#XRTK_Utilities_Gltf_Schema_GltfObject_textures - commentId: F:XRTK.Utilities.Gltf.Schema.GltfObject.textures - fullName: XRTK.Utilities.Gltf.Schema.GltfObject.textures - nameWithType: GltfObject.textures -- uid: XRTK.Utilities.Gltf.Schema.GltfObject.Uri - name: Uri - href: api/XRTK.Utilities.Gltf.Schema.GltfObject.html#XRTK_Utilities_Gltf_Schema_GltfObject_Uri - commentId: P:XRTK.Utilities.Gltf.Schema.GltfObject.Uri - fullName: XRTK.Utilities.Gltf.Schema.GltfObject.Uri - nameWithType: GltfObject.Uri -- uid: XRTK.Utilities.Gltf.Schema.GltfObject.Uri* - name: Uri - href: api/XRTK.Utilities.Gltf.Schema.GltfObject.html#XRTK_Utilities_Gltf_Schema_GltfObject_Uri_ - commentId: Overload:XRTK.Utilities.Gltf.Schema.GltfObject.Uri - isSpec: "True" - fullName: XRTK.Utilities.Gltf.Schema.GltfObject.Uri - nameWithType: GltfObject.Uri -- uid: XRTK.Utilities.Gltf.Schema.GltfOcclusionTextureInfo - name: GltfOcclusionTextureInfo - href: api/XRTK.Utilities.Gltf.Schema.GltfOcclusionTextureInfo.html - commentId: T:XRTK.Utilities.Gltf.Schema.GltfOcclusionTextureInfo - fullName: XRTK.Utilities.Gltf.Schema.GltfOcclusionTextureInfo - nameWithType: GltfOcclusionTextureInfo -- uid: XRTK.Utilities.Gltf.Schema.GltfOcclusionTextureInfo.strength - name: strength - href: api/XRTK.Utilities.Gltf.Schema.GltfOcclusionTextureInfo.html#XRTK_Utilities_Gltf_Schema_GltfOcclusionTextureInfo_strength - commentId: F:XRTK.Utilities.Gltf.Schema.GltfOcclusionTextureInfo.strength - fullName: XRTK.Utilities.Gltf.Schema.GltfOcclusionTextureInfo.strength - nameWithType: GltfOcclusionTextureInfo.strength -- uid: XRTK.Utilities.Gltf.Schema.GltfPbrMetallicRoughness - name: GltfPbrMetallicRoughness - href: api/XRTK.Utilities.Gltf.Schema.GltfPbrMetallicRoughness.html - commentId: T:XRTK.Utilities.Gltf.Schema.GltfPbrMetallicRoughness - fullName: XRTK.Utilities.Gltf.Schema.GltfPbrMetallicRoughness - nameWithType: GltfPbrMetallicRoughness -- uid: XRTK.Utilities.Gltf.Schema.GltfPbrMetallicRoughness.baseColorFactor - name: baseColorFactor - href: api/XRTK.Utilities.Gltf.Schema.GltfPbrMetallicRoughness.html#XRTK_Utilities_Gltf_Schema_GltfPbrMetallicRoughness_baseColorFactor - commentId: F:XRTK.Utilities.Gltf.Schema.GltfPbrMetallicRoughness.baseColorFactor - fullName: XRTK.Utilities.Gltf.Schema.GltfPbrMetallicRoughness.baseColorFactor - nameWithType: GltfPbrMetallicRoughness.baseColorFactor -- uid: XRTK.Utilities.Gltf.Schema.GltfPbrMetallicRoughness.baseColorTexture - name: baseColorTexture - href: api/XRTK.Utilities.Gltf.Schema.GltfPbrMetallicRoughness.html#XRTK_Utilities_Gltf_Schema_GltfPbrMetallicRoughness_baseColorTexture - commentId: F:XRTK.Utilities.Gltf.Schema.GltfPbrMetallicRoughness.baseColorTexture - fullName: XRTK.Utilities.Gltf.Schema.GltfPbrMetallicRoughness.baseColorTexture - nameWithType: GltfPbrMetallicRoughness.baseColorTexture -- uid: XRTK.Utilities.Gltf.Schema.GltfPbrMetallicRoughness.metallicFactor - name: metallicFactor - href: api/XRTK.Utilities.Gltf.Schema.GltfPbrMetallicRoughness.html#XRTK_Utilities_Gltf_Schema_GltfPbrMetallicRoughness_metallicFactor - commentId: F:XRTK.Utilities.Gltf.Schema.GltfPbrMetallicRoughness.metallicFactor - fullName: XRTK.Utilities.Gltf.Schema.GltfPbrMetallicRoughness.metallicFactor - nameWithType: GltfPbrMetallicRoughness.metallicFactor -- uid: XRTK.Utilities.Gltf.Schema.GltfPbrMetallicRoughness.metallicRoughnessTexture - name: metallicRoughnessTexture - href: api/XRTK.Utilities.Gltf.Schema.GltfPbrMetallicRoughness.html#XRTK_Utilities_Gltf_Schema_GltfPbrMetallicRoughness_metallicRoughnessTexture - commentId: F:XRTK.Utilities.Gltf.Schema.GltfPbrMetallicRoughness.metallicRoughnessTexture - fullName: XRTK.Utilities.Gltf.Schema.GltfPbrMetallicRoughness.metallicRoughnessTexture - nameWithType: GltfPbrMetallicRoughness.metallicRoughnessTexture -- uid: XRTK.Utilities.Gltf.Schema.GltfPbrMetallicRoughness.roughnessFactor - name: roughnessFactor - href: api/XRTK.Utilities.Gltf.Schema.GltfPbrMetallicRoughness.html#XRTK_Utilities_Gltf_Schema_GltfPbrMetallicRoughness_roughnessFactor - commentId: F:XRTK.Utilities.Gltf.Schema.GltfPbrMetallicRoughness.roughnessFactor - fullName: XRTK.Utilities.Gltf.Schema.GltfPbrMetallicRoughness.roughnessFactor - nameWithType: GltfPbrMetallicRoughness.roughnessFactor -- uid: XRTK.Utilities.Gltf.Schema.GltfProperty - name: GltfProperty - href: api/XRTK.Utilities.Gltf.Schema.GltfProperty.html - commentId: T:XRTK.Utilities.Gltf.Schema.GltfProperty - fullName: XRTK.Utilities.Gltf.Schema.GltfProperty - nameWithType: GltfProperty -- uid: XRTK.Utilities.Gltf.Schema.GltfProperty.Extensions - name: Extensions - href: api/XRTK.Utilities.Gltf.Schema.GltfProperty.html#XRTK_Utilities_Gltf_Schema_GltfProperty_Extensions - commentId: F:XRTK.Utilities.Gltf.Schema.GltfProperty.Extensions - fullName: XRTK.Utilities.Gltf.Schema.GltfProperty.Extensions - nameWithType: GltfProperty.Extensions -- uid: XRTK.Utilities.Gltf.Schema.GltfProperty.Extras - name: Extras - href: api/XRTK.Utilities.Gltf.Schema.GltfProperty.html#XRTK_Utilities_Gltf_Schema_GltfProperty_Extras - commentId: F:XRTK.Utilities.Gltf.Schema.GltfProperty.Extras - fullName: XRTK.Utilities.Gltf.Schema.GltfProperty.Extras - nameWithType: GltfProperty.Extras -- uid: XRTK.Utilities.Gltf.Schema.GltfSampler - name: GltfSampler - href: api/XRTK.Utilities.Gltf.Schema.GltfSampler.html - commentId: T:XRTK.Utilities.Gltf.Schema.GltfSampler - fullName: XRTK.Utilities.Gltf.Schema.GltfSampler - nameWithType: GltfSampler -- uid: XRTK.Utilities.Gltf.Schema.GltfSampler.GltfMinFilter - name: GltfMinFilter - href: api/XRTK.Utilities.Gltf.Schema.GltfSampler.html#XRTK_Utilities_Gltf_Schema_GltfSampler_GltfMinFilter - commentId: F:XRTK.Utilities.Gltf.Schema.GltfSampler.GltfMinFilter - fullName: XRTK.Utilities.Gltf.Schema.GltfSampler.GltfMinFilter - nameWithType: GltfSampler.GltfMinFilter -- uid: XRTK.Utilities.Gltf.Schema.GltfSampler.magFilter - name: magFilter - href: api/XRTK.Utilities.Gltf.Schema.GltfSampler.html#XRTK_Utilities_Gltf_Schema_GltfSampler_magFilter - commentId: F:XRTK.Utilities.Gltf.Schema.GltfSampler.magFilter - fullName: XRTK.Utilities.Gltf.Schema.GltfSampler.magFilter - nameWithType: GltfSampler.magFilter -- uid: XRTK.Utilities.Gltf.Schema.GltfSampler.wrapS - name: wrapS - href: api/XRTK.Utilities.Gltf.Schema.GltfSampler.html#XRTK_Utilities_Gltf_Schema_GltfSampler_wrapS - commentId: F:XRTK.Utilities.Gltf.Schema.GltfSampler.wrapS - fullName: XRTK.Utilities.Gltf.Schema.GltfSampler.wrapS - nameWithType: GltfSampler.wrapS -- uid: XRTK.Utilities.Gltf.Schema.GltfSampler.wrapT - name: wrapT - href: api/XRTK.Utilities.Gltf.Schema.GltfSampler.html#XRTK_Utilities_Gltf_Schema_GltfSampler_wrapT - commentId: F:XRTK.Utilities.Gltf.Schema.GltfSampler.wrapT - fullName: XRTK.Utilities.Gltf.Schema.GltfSampler.wrapT - nameWithType: GltfSampler.wrapT -- uid: XRTK.Utilities.Gltf.Schema.GltfScene - name: GltfScene - href: api/XRTK.Utilities.Gltf.Schema.GltfScene.html - commentId: T:XRTK.Utilities.Gltf.Schema.GltfScene - fullName: XRTK.Utilities.Gltf.Schema.GltfScene - nameWithType: GltfScene -- uid: XRTK.Utilities.Gltf.Schema.GltfScene.nodes - name: nodes - href: api/XRTK.Utilities.Gltf.Schema.GltfScene.html#XRTK_Utilities_Gltf_Schema_GltfScene_nodes - commentId: F:XRTK.Utilities.Gltf.Schema.GltfScene.nodes - fullName: XRTK.Utilities.Gltf.Schema.GltfScene.nodes - nameWithType: GltfScene.nodes -- uid: XRTK.Utilities.Gltf.Schema.GltfSkin - name: GltfSkin - href: api/XRTK.Utilities.Gltf.Schema.GltfSkin.html - commentId: T:XRTK.Utilities.Gltf.Schema.GltfSkin - fullName: XRTK.Utilities.Gltf.Schema.GltfSkin - nameWithType: GltfSkin -- uid: XRTK.Utilities.Gltf.Schema.GltfSkin.inverseBindMatrices - name: inverseBindMatrices - href: api/XRTK.Utilities.Gltf.Schema.GltfSkin.html#XRTK_Utilities_Gltf_Schema_GltfSkin_inverseBindMatrices - commentId: F:XRTK.Utilities.Gltf.Schema.GltfSkin.inverseBindMatrices - fullName: XRTK.Utilities.Gltf.Schema.GltfSkin.inverseBindMatrices - nameWithType: GltfSkin.inverseBindMatrices -- uid: XRTK.Utilities.Gltf.Schema.GltfSkin.joints - name: joints - href: api/XRTK.Utilities.Gltf.Schema.GltfSkin.html#XRTK_Utilities_Gltf_Schema_GltfSkin_joints - commentId: F:XRTK.Utilities.Gltf.Schema.GltfSkin.joints - fullName: XRTK.Utilities.Gltf.Schema.GltfSkin.joints - nameWithType: GltfSkin.joints -- uid: XRTK.Utilities.Gltf.Schema.GltfSkin.skeleton - name: skeleton - href: api/XRTK.Utilities.Gltf.Schema.GltfSkin.html#XRTK_Utilities_Gltf_Schema_GltfSkin_skeleton - commentId: F:XRTK.Utilities.Gltf.Schema.GltfSkin.skeleton - fullName: XRTK.Utilities.Gltf.Schema.GltfSkin.skeleton - nameWithType: GltfSkin.skeleton -- uid: XRTK.Utilities.Gltf.Schema.GltfTexture - name: GltfTexture - href: api/XRTK.Utilities.Gltf.Schema.GltfTexture.html - commentId: T:XRTK.Utilities.Gltf.Schema.GltfTexture - fullName: XRTK.Utilities.Gltf.Schema.GltfTexture - nameWithType: GltfTexture -- uid: XRTK.Utilities.Gltf.Schema.GltfTexture.sampler - name: sampler - href: api/XRTK.Utilities.Gltf.Schema.GltfTexture.html#XRTK_Utilities_Gltf_Schema_GltfTexture_sampler - commentId: F:XRTK.Utilities.Gltf.Schema.GltfTexture.sampler - fullName: XRTK.Utilities.Gltf.Schema.GltfTexture.sampler - nameWithType: GltfTexture.sampler -- uid: XRTK.Utilities.Gltf.Schema.GltfTexture.source - name: source - href: api/XRTK.Utilities.Gltf.Schema.GltfTexture.html#XRTK_Utilities_Gltf_Schema_GltfTexture_source - commentId: F:XRTK.Utilities.Gltf.Schema.GltfTexture.source - fullName: XRTK.Utilities.Gltf.Schema.GltfTexture.source - nameWithType: GltfTexture.source -- uid: XRTK.Utilities.Gltf.Schema.GltfTexture.Texture - name: Texture - href: api/XRTK.Utilities.Gltf.Schema.GltfTexture.html#XRTK_Utilities_Gltf_Schema_GltfTexture_Texture - commentId: P:XRTK.Utilities.Gltf.Schema.GltfTexture.Texture - fullName: XRTK.Utilities.Gltf.Schema.GltfTexture.Texture - nameWithType: GltfTexture.Texture -- uid: XRTK.Utilities.Gltf.Schema.GltfTexture.Texture* - name: Texture - href: api/XRTK.Utilities.Gltf.Schema.GltfTexture.html#XRTK_Utilities_Gltf_Schema_GltfTexture_Texture_ - commentId: Overload:XRTK.Utilities.Gltf.Schema.GltfTexture.Texture - isSpec: "True" - fullName: XRTK.Utilities.Gltf.Schema.GltfTexture.Texture - nameWithType: GltfTexture.Texture -- uid: XRTK.Utilities.Gltf.Schema.GltfTextureInfo - name: GltfTextureInfo - href: api/XRTK.Utilities.Gltf.Schema.GltfTextureInfo.html - commentId: T:XRTK.Utilities.Gltf.Schema.GltfTextureInfo - fullName: XRTK.Utilities.Gltf.Schema.GltfTextureInfo - nameWithType: GltfTextureInfo -- uid: XRTK.Utilities.Gltf.Schema.GltfTextureInfo.index - name: index - href: api/XRTK.Utilities.Gltf.Schema.GltfTextureInfo.html#XRTK_Utilities_Gltf_Schema_GltfTextureInfo_index - commentId: F:XRTK.Utilities.Gltf.Schema.GltfTextureInfo.index - fullName: XRTK.Utilities.Gltf.Schema.GltfTextureInfo.index - nameWithType: GltfTextureInfo.index -- uid: XRTK.Utilities.Gltf.Schema.GltfTextureInfo.textCoord - name: textCoord - href: api/XRTK.Utilities.Gltf.Schema.GltfTextureInfo.html#XRTK_Utilities_Gltf_Schema_GltfTextureInfo_textCoord - commentId: F:XRTK.Utilities.Gltf.Schema.GltfTextureInfo.textCoord - fullName: XRTK.Utilities.Gltf.Schema.GltfTextureInfo.textCoord - nameWithType: GltfTextureInfo.textCoord -- uid: XRTK.Utilities.Gltf.Schema.GltfWrapMode - name: GltfWrapMode - href: api/XRTK.Utilities.Gltf.Schema.GltfWrapMode.html - commentId: T:XRTK.Utilities.Gltf.Schema.GltfWrapMode - fullName: XRTK.Utilities.Gltf.Schema.GltfWrapMode - nameWithType: GltfWrapMode -- uid: XRTK.Utilities.Gltf.Schema.GltfWrapMode.ClampToEdge - name: ClampToEdge - href: api/XRTK.Utilities.Gltf.Schema.GltfWrapMode.html#XRTK_Utilities_Gltf_Schema_GltfWrapMode_ClampToEdge - commentId: F:XRTK.Utilities.Gltf.Schema.GltfWrapMode.ClampToEdge - fullName: XRTK.Utilities.Gltf.Schema.GltfWrapMode.ClampToEdge - nameWithType: GltfWrapMode.ClampToEdge -- uid: XRTK.Utilities.Gltf.Schema.GltfWrapMode.MirroredRepeat - name: MirroredRepeat - href: api/XRTK.Utilities.Gltf.Schema.GltfWrapMode.html#XRTK_Utilities_Gltf_Schema_GltfWrapMode_MirroredRepeat - commentId: F:XRTK.Utilities.Gltf.Schema.GltfWrapMode.MirroredRepeat - fullName: XRTK.Utilities.Gltf.Schema.GltfWrapMode.MirroredRepeat - nameWithType: GltfWrapMode.MirroredRepeat -- uid: XRTK.Utilities.Gltf.Schema.GltfWrapMode.None - name: None - href: api/XRTK.Utilities.Gltf.Schema.GltfWrapMode.html#XRTK_Utilities_Gltf_Schema_GltfWrapMode_None - commentId: F:XRTK.Utilities.Gltf.Schema.GltfWrapMode.None - fullName: XRTK.Utilities.Gltf.Schema.GltfWrapMode.None - nameWithType: GltfWrapMode.None -- uid: XRTK.Utilities.Gltf.Schema.GltfWrapMode.Repeat - name: Repeat - href: api/XRTK.Utilities.Gltf.Schema.GltfWrapMode.html#XRTK_Utilities_Gltf_Schema_GltfWrapMode_Repeat - commentId: F:XRTK.Utilities.Gltf.Schema.GltfWrapMode.Repeat - fullName: XRTK.Utilities.Gltf.Schema.GltfWrapMode.Repeat - nameWithType: GltfWrapMode.Repeat -- uid: XRTK.Utilities.Gltf.Serialization - name: XRTK.Utilities.Gltf.Serialization - href: api/XRTK.Utilities.Gltf.Serialization.html - commentId: N:XRTK.Utilities.Gltf.Serialization - fullName: XRTK.Utilities.Gltf.Serialization - nameWithType: XRTK.Utilities.Gltf.Serialization -- uid: XRTK.Utilities.Gltf.Serialization.ColliderType - name: ColliderType - href: api/XRTK.Utilities.Gltf.Serialization.ColliderType.html - commentId: T:XRTK.Utilities.Gltf.Serialization.ColliderType - fullName: XRTK.Utilities.Gltf.Serialization.ColliderType - nameWithType: ColliderType -- uid: XRTK.Utilities.Gltf.Serialization.ColliderType.Box - name: Box - href: api/XRTK.Utilities.Gltf.Serialization.ColliderType.html#XRTK_Utilities_Gltf_Serialization_ColliderType_Box - commentId: F:XRTK.Utilities.Gltf.Serialization.ColliderType.Box - fullName: XRTK.Utilities.Gltf.Serialization.ColliderType.Box - nameWithType: ColliderType.Box -- uid: XRTK.Utilities.Gltf.Serialization.ColliderType.Mesh - name: Mesh - href: api/XRTK.Utilities.Gltf.Serialization.ColliderType.html#XRTK_Utilities_Gltf_Serialization_ColliderType_Mesh - commentId: F:XRTK.Utilities.Gltf.Serialization.ColliderType.Mesh - fullName: XRTK.Utilities.Gltf.Serialization.ColliderType.Mesh - nameWithType: ColliderType.Mesh -- uid: XRTK.Utilities.Gltf.Serialization.ColliderType.MeshConvex - name: MeshConvex - href: api/XRTK.Utilities.Gltf.Serialization.ColliderType.html#XRTK_Utilities_Gltf_Serialization_ColliderType_MeshConvex - commentId: F:XRTK.Utilities.Gltf.Serialization.ColliderType.MeshConvex - fullName: XRTK.Utilities.Gltf.Serialization.ColliderType.MeshConvex - nameWithType: ColliderType.MeshConvex -- uid: XRTK.Utilities.Gltf.Serialization.ColliderType.None - name: None - href: api/XRTK.Utilities.Gltf.Serialization.ColliderType.html#XRTK_Utilities_Gltf_Serialization_ColliderType_None - commentId: F:XRTK.Utilities.Gltf.Serialization.ColliderType.None - fullName: XRTK.Utilities.Gltf.Serialization.ColliderType.None - nameWithType: ColliderType.None -- uid: XRTK.Utilities.Gltf.Serialization.ConstructGltf - name: ConstructGltf - href: api/XRTK.Utilities.Gltf.Serialization.ConstructGltf.html - commentId: T:XRTK.Utilities.Gltf.Serialization.ConstructGltf - fullName: XRTK.Utilities.Gltf.Serialization.ConstructGltf - nameWithType: ConstructGltf -- uid: XRTK.Utilities.Gltf.Serialization.ConstructGltf.Construct(XRTK.Utilities.Gltf.Schema.GltfObject) - name: Construct(GltfObject) - href: api/XRTK.Utilities.Gltf.Serialization.ConstructGltf.html#XRTK_Utilities_Gltf_Serialization_ConstructGltf_Construct_XRTK_Utilities_Gltf_Schema_GltfObject_ - commentId: M:XRTK.Utilities.Gltf.Serialization.ConstructGltf.Construct(XRTK.Utilities.Gltf.Schema.GltfObject) - fullName: XRTK.Utilities.Gltf.Serialization.ConstructGltf.Construct(XRTK.Utilities.Gltf.Schema.GltfObject) - nameWithType: ConstructGltf.Construct(GltfObject) -- uid: XRTK.Utilities.Gltf.Serialization.ConstructGltf.Construct* - name: Construct - href: api/XRTK.Utilities.Gltf.Serialization.ConstructGltf.html#XRTK_Utilities_Gltf_Serialization_ConstructGltf_Construct_ - commentId: Overload:XRTK.Utilities.Gltf.Serialization.ConstructGltf.Construct - isSpec: "True" - fullName: XRTK.Utilities.Gltf.Serialization.ConstructGltf.Construct - nameWithType: ConstructGltf.Construct -- uid: XRTK.Utilities.Gltf.Serialization.ConstructGltf.ConstructAsync(XRTK.Utilities.Gltf.Schema.GltfObject) - name: ConstructAsync(GltfObject) - href: api/XRTK.Utilities.Gltf.Serialization.ConstructGltf.html#XRTK_Utilities_Gltf_Serialization_ConstructGltf_ConstructAsync_XRTK_Utilities_Gltf_Schema_GltfObject_ - commentId: M:XRTK.Utilities.Gltf.Serialization.ConstructGltf.ConstructAsync(XRTK.Utilities.Gltf.Schema.GltfObject) - fullName: XRTK.Utilities.Gltf.Serialization.ConstructGltf.ConstructAsync(XRTK.Utilities.Gltf.Schema.GltfObject) - nameWithType: ConstructGltf.ConstructAsync(GltfObject) -- uid: XRTK.Utilities.Gltf.Serialization.ConstructGltf.ConstructAsync* - name: ConstructAsync - href: api/XRTK.Utilities.Gltf.Serialization.ConstructGltf.html#XRTK_Utilities_Gltf_Serialization_ConstructGltf_ConstructAsync_ - commentId: Overload:XRTK.Utilities.Gltf.Serialization.ConstructGltf.ConstructAsync - isSpec: "True" - fullName: XRTK.Utilities.Gltf.Serialization.ConstructGltf.ConstructAsync - nameWithType: ConstructGltf.ConstructAsync -- uid: XRTK.Utilities.Gltf.Serialization.ExportGltf - name: ExportGltf - href: api/XRTK.Utilities.Gltf.Serialization.ExportGltf.html - commentId: T:XRTK.Utilities.Gltf.Serialization.ExportGltf - fullName: XRTK.Utilities.Gltf.Serialization.ExportGltf - nameWithType: ExportGltf -- uid: XRTK.Utilities.Gltf.Serialization.GltfChunkType - name: GltfChunkType - href: api/XRTK.Utilities.Gltf.Serialization.GltfChunkType.html - commentId: T:XRTK.Utilities.Gltf.Serialization.GltfChunkType - fullName: XRTK.Utilities.Gltf.Serialization.GltfChunkType - nameWithType: GltfChunkType -- uid: XRTK.Utilities.Gltf.Serialization.GltfChunkType.BIN - name: BIN - href: api/XRTK.Utilities.Gltf.Serialization.GltfChunkType.html#XRTK_Utilities_Gltf_Serialization_GltfChunkType_BIN - commentId: F:XRTK.Utilities.Gltf.Serialization.GltfChunkType.BIN - fullName: XRTK.Utilities.Gltf.Serialization.GltfChunkType.BIN - nameWithType: GltfChunkType.BIN -- uid: XRTK.Utilities.Gltf.Serialization.GltfChunkType.Json - name: Json - href: api/XRTK.Utilities.Gltf.Serialization.GltfChunkType.html#XRTK_Utilities_Gltf_Serialization_GltfChunkType_Json - commentId: F:XRTK.Utilities.Gltf.Serialization.GltfChunkType.Json - fullName: XRTK.Utilities.Gltf.Serialization.GltfChunkType.Json - nameWithType: GltfChunkType.Json -- uid: XRTK.Utilities.Gltf.Serialization.GltfUtility - name: GltfUtility - href: api/XRTK.Utilities.Gltf.Serialization.GltfUtility.html - commentId: T:XRTK.Utilities.Gltf.Serialization.GltfUtility - fullName: XRTK.Utilities.Gltf.Serialization.GltfUtility - nameWithType: GltfUtility -- uid: XRTK.Utilities.Gltf.Serialization.GltfUtility.GetGltfObjectFromGlb(System.Byte[]) - name: GetGltfObjectFromGlb(Byte[]) - href: api/XRTK.Utilities.Gltf.Serialization.GltfUtility.html#XRTK_Utilities_Gltf_Serialization_GltfUtility_GetGltfObjectFromGlb_System_Byte___ - commentId: M:XRTK.Utilities.Gltf.Serialization.GltfUtility.GetGltfObjectFromGlb(System.Byte[]) - name.vb: GetGltfObjectFromGlb(Byte()) - fullName: XRTK.Utilities.Gltf.Serialization.GltfUtility.GetGltfObjectFromGlb(System.Byte[]) - fullName.vb: XRTK.Utilities.Gltf.Serialization.GltfUtility.GetGltfObjectFromGlb(System.Byte()) - nameWithType: GltfUtility.GetGltfObjectFromGlb(Byte[]) - nameWithType.vb: GltfUtility.GetGltfObjectFromGlb(Byte()) -- uid: XRTK.Utilities.Gltf.Serialization.GltfUtility.GetGltfObjectFromGlb* - name: GetGltfObjectFromGlb - href: api/XRTK.Utilities.Gltf.Serialization.GltfUtility.html#XRTK_Utilities_Gltf_Serialization_GltfUtility_GetGltfObjectFromGlb_ - commentId: Overload:XRTK.Utilities.Gltf.Serialization.GltfUtility.GetGltfObjectFromGlb - isSpec: "True" - fullName: XRTK.Utilities.Gltf.Serialization.GltfUtility.GetGltfObjectFromGlb - nameWithType: GltfUtility.GetGltfObjectFromGlb -- uid: XRTK.Utilities.Gltf.Serialization.GltfUtility.GetGltfObjectFromJson(System.String) - name: GetGltfObjectFromJson(String) - href: api/XRTK.Utilities.Gltf.Serialization.GltfUtility.html#XRTK_Utilities_Gltf_Serialization_GltfUtility_GetGltfObjectFromJson_System_String_ - commentId: M:XRTK.Utilities.Gltf.Serialization.GltfUtility.GetGltfObjectFromJson(System.String) - fullName: XRTK.Utilities.Gltf.Serialization.GltfUtility.GetGltfObjectFromJson(System.String) - nameWithType: GltfUtility.GetGltfObjectFromJson(String) -- uid: XRTK.Utilities.Gltf.Serialization.GltfUtility.GetGltfObjectFromJson* - name: GetGltfObjectFromJson - href: api/XRTK.Utilities.Gltf.Serialization.GltfUtility.html#XRTK_Utilities_Gltf_Serialization_GltfUtility_GetGltfObjectFromJson_ - commentId: Overload:XRTK.Utilities.Gltf.Serialization.GltfUtility.GetGltfObjectFromJson - isSpec: "True" - fullName: XRTK.Utilities.Gltf.Serialization.GltfUtility.GetGltfObjectFromJson - nameWithType: GltfUtility.GetGltfObjectFromJson -- uid: XRTK.Utilities.Gltf.Serialization.GltfUtility.ImportGltfObjectFromPathAsync(System.String) - name: ImportGltfObjectFromPathAsync(String) - href: api/XRTK.Utilities.Gltf.Serialization.GltfUtility.html#XRTK_Utilities_Gltf_Serialization_GltfUtility_ImportGltfObjectFromPathAsync_System_String_ - commentId: M:XRTK.Utilities.Gltf.Serialization.GltfUtility.ImportGltfObjectFromPathAsync(System.String) - fullName: XRTK.Utilities.Gltf.Serialization.GltfUtility.ImportGltfObjectFromPathAsync(System.String) - nameWithType: GltfUtility.ImportGltfObjectFromPathAsync(String) -- uid: XRTK.Utilities.Gltf.Serialization.GltfUtility.ImportGltfObjectFromPathAsync* - name: ImportGltfObjectFromPathAsync - href: api/XRTK.Utilities.Gltf.Serialization.GltfUtility.html#XRTK_Utilities_Gltf_Serialization_GltfUtility_ImportGltfObjectFromPathAsync_ - commentId: Overload:XRTK.Utilities.Gltf.Serialization.GltfUtility.ImportGltfObjectFromPathAsync - isSpec: "True" - fullName: XRTK.Utilities.Gltf.Serialization.GltfUtility.ImportGltfObjectFromPathAsync - nameWithType: GltfUtility.ImportGltfObjectFromPathAsync -- uid: XRTK.Utilities.Gltf.Serialization.Importers - name: XRTK.Utilities.Gltf.Serialization.Importers - href: api/XRTK.Utilities.Gltf.Serialization.Importers.html - commentId: N:XRTK.Utilities.Gltf.Serialization.Importers - fullName: XRTK.Utilities.Gltf.Serialization.Importers - nameWithType: XRTK.Utilities.Gltf.Serialization.Importers -- uid: XRTK.Utilities.Gltf.Serialization.Importers.GlbAssetImporter - name: GlbAssetImporter - href: api/XRTK.Utilities.Gltf.Serialization.Importers.GlbAssetImporter.html - commentId: T:XRTK.Utilities.Gltf.Serialization.Importers.GlbAssetImporter - fullName: XRTK.Utilities.Gltf.Serialization.Importers.GlbAssetImporter - nameWithType: GlbAssetImporter -- uid: XRTK.Utilities.Gltf.Serialization.Importers.GlbAssetImporter.OnImportAsset(UnityEditor.Experimental.AssetImporters.AssetImportContext) - name: OnImportAsset(AssetImportContext) - href: api/XRTK.Utilities.Gltf.Serialization.Importers.GlbAssetImporter.html#XRTK_Utilities_Gltf_Serialization_Importers_GlbAssetImporter_OnImportAsset_UnityEditor_Experimental_AssetImporters_AssetImportContext_ - commentId: M:XRTK.Utilities.Gltf.Serialization.Importers.GlbAssetImporter.OnImportAsset(UnityEditor.Experimental.AssetImporters.AssetImportContext) - fullName: XRTK.Utilities.Gltf.Serialization.Importers.GlbAssetImporter.OnImportAsset(UnityEditor.Experimental.AssetImporters.AssetImportContext) - nameWithType: GlbAssetImporter.OnImportAsset(AssetImportContext) -- uid: XRTK.Utilities.Gltf.Serialization.Importers.GlbAssetImporter.OnImportAsset* - name: OnImportAsset - href: api/XRTK.Utilities.Gltf.Serialization.Importers.GlbAssetImporter.html#XRTK_Utilities_Gltf_Serialization_Importers_GlbAssetImporter_OnImportAsset_ - commentId: Overload:XRTK.Utilities.Gltf.Serialization.Importers.GlbAssetImporter.OnImportAsset - isSpec: "True" - fullName: XRTK.Utilities.Gltf.Serialization.Importers.GlbAssetImporter.OnImportAsset - nameWithType: GlbAssetImporter.OnImportAsset -- uid: XRTK.Utilities.Gltf.Serialization.Importers.GltfAssetImporter - name: GltfAssetImporter - href: api/XRTK.Utilities.Gltf.Serialization.Importers.GltfAssetImporter.html - commentId: T:XRTK.Utilities.Gltf.Serialization.Importers.GltfAssetImporter - fullName: XRTK.Utilities.Gltf.Serialization.Importers.GltfAssetImporter - nameWithType: GltfAssetImporter -- uid: XRTK.Utilities.Gltf.Serialization.Importers.GltfAssetImporter.OnImportAsset(UnityEditor.Experimental.AssetImporters.AssetImportContext) - name: OnImportAsset(AssetImportContext) - href: api/XRTK.Utilities.Gltf.Serialization.Importers.GltfAssetImporter.html#XRTK_Utilities_Gltf_Serialization_Importers_GltfAssetImporter_OnImportAsset_UnityEditor_Experimental_AssetImporters_AssetImportContext_ - commentId: M:XRTK.Utilities.Gltf.Serialization.Importers.GltfAssetImporter.OnImportAsset(UnityEditor.Experimental.AssetImporters.AssetImportContext) - fullName: XRTK.Utilities.Gltf.Serialization.Importers.GltfAssetImporter.OnImportAsset(UnityEditor.Experimental.AssetImporters.AssetImportContext) - nameWithType: GltfAssetImporter.OnImportAsset(AssetImportContext) -- uid: XRTK.Utilities.Gltf.Serialization.Importers.GltfAssetImporter.OnImportAsset* - name: OnImportAsset - href: api/XRTK.Utilities.Gltf.Serialization.Importers.GltfAssetImporter.html#XRTK_Utilities_Gltf_Serialization_Importers_GltfAssetImporter_OnImportAsset_ - commentId: Overload:XRTK.Utilities.Gltf.Serialization.Importers.GltfAssetImporter.OnImportAsset - isSpec: "True" - fullName: XRTK.Utilities.Gltf.Serialization.Importers.GltfAssetImporter.OnImportAsset - nameWithType: GltfAssetImporter.OnImportAsset -- uid: XRTK.Utilities.Gltf.Serialization.Importers.GltfEditorImporter - name: GltfEditorImporter - href: api/XRTK.Utilities.Gltf.Serialization.Importers.GltfEditorImporter.html - commentId: T:XRTK.Utilities.Gltf.Serialization.Importers.GltfEditorImporter - fullName: XRTK.Utilities.Gltf.Serialization.Importers.GltfEditorImporter - nameWithType: GltfEditorImporter -- uid: XRTK.Utilities.Gltf.Serialization.Importers.GltfEditorImporter.OnImportGltfAsset(UnityEditor.Experimental.AssetImporters.AssetImportContext) - name: OnImportGltfAsset(AssetImportContext) - href: api/XRTK.Utilities.Gltf.Serialization.Importers.GltfEditorImporter.html#XRTK_Utilities_Gltf_Serialization_Importers_GltfEditorImporter_OnImportGltfAsset_UnityEditor_Experimental_AssetImporters_AssetImportContext_ - commentId: M:XRTK.Utilities.Gltf.Serialization.Importers.GltfEditorImporter.OnImportGltfAsset(UnityEditor.Experimental.AssetImporters.AssetImportContext) - fullName: XRTK.Utilities.Gltf.Serialization.Importers.GltfEditorImporter.OnImportGltfAsset(UnityEditor.Experimental.AssetImporters.AssetImportContext) - nameWithType: GltfEditorImporter.OnImportGltfAsset(AssetImportContext) -- uid: XRTK.Utilities.Gltf.Serialization.Importers.GltfEditorImporter.OnImportGltfAsset* - name: OnImportGltfAsset - href: api/XRTK.Utilities.Gltf.Serialization.Importers.GltfEditorImporter.html#XRTK_Utilities_Gltf_Serialization_Importers_GltfEditorImporter_OnImportGltfAsset_ - commentId: Overload:XRTK.Utilities.Gltf.Serialization.Importers.GltfEditorImporter.OnImportGltfAsset - isSpec: "True" - fullName: XRTK.Utilities.Gltf.Serialization.Importers.GltfEditorImporter.OnImportGltfAsset - nameWithType: GltfEditorImporter.OnImportGltfAsset -- uid: XRTK.Utilities.HandUtilities - name: HandUtilities - href: api/XRTK.Utilities.HandUtilities.html - commentId: T:XRTK.Utilities.HandUtilities - fullName: XRTK.Utilities.HandUtilities - nameWithType: HandUtilities -- uid: XRTK.Utilities.HandUtilities.GetEstimatedIndexMetacarpalPose(XRTK.Definitions.Utilities.MixedRealityPose[]) - name: GetEstimatedIndexMetacarpalPose(MixedRealityPose[]) - href: api/XRTK.Utilities.HandUtilities.html#XRTK_Utilities_HandUtilities_GetEstimatedIndexMetacarpalPose_XRTK_Definitions_Utilities_MixedRealityPose___ - commentId: M:XRTK.Utilities.HandUtilities.GetEstimatedIndexMetacarpalPose(XRTK.Definitions.Utilities.MixedRealityPose[]) - name.vb: GetEstimatedIndexMetacarpalPose(MixedRealityPose()) - fullName: XRTK.Utilities.HandUtilities.GetEstimatedIndexMetacarpalPose(XRTK.Definitions.Utilities.MixedRealityPose[]) - fullName.vb: XRTK.Utilities.HandUtilities.GetEstimatedIndexMetacarpalPose(XRTK.Definitions.Utilities.MixedRealityPose()) - nameWithType: HandUtilities.GetEstimatedIndexMetacarpalPose(MixedRealityPose[]) - nameWithType.vb: HandUtilities.GetEstimatedIndexMetacarpalPose(MixedRealityPose()) -- uid: XRTK.Utilities.HandUtilities.GetEstimatedIndexMetacarpalPose* - name: GetEstimatedIndexMetacarpalPose - href: api/XRTK.Utilities.HandUtilities.html#XRTK_Utilities_HandUtilities_GetEstimatedIndexMetacarpalPose_ - commentId: Overload:XRTK.Utilities.HandUtilities.GetEstimatedIndexMetacarpalPose - isSpec: "True" - fullName: XRTK.Utilities.HandUtilities.GetEstimatedIndexMetacarpalPose - nameWithType: HandUtilities.GetEstimatedIndexMetacarpalPose -- uid: XRTK.Utilities.HandUtilities.GetEstimatedMiddleMetacarpalPose(XRTK.Definitions.Utilities.MixedRealityPose[]) - name: GetEstimatedMiddleMetacarpalPose(MixedRealityPose[]) - href: api/XRTK.Utilities.HandUtilities.html#XRTK_Utilities_HandUtilities_GetEstimatedMiddleMetacarpalPose_XRTK_Definitions_Utilities_MixedRealityPose___ - commentId: M:XRTK.Utilities.HandUtilities.GetEstimatedMiddleMetacarpalPose(XRTK.Definitions.Utilities.MixedRealityPose[]) - name.vb: GetEstimatedMiddleMetacarpalPose(MixedRealityPose()) - fullName: XRTK.Utilities.HandUtilities.GetEstimatedMiddleMetacarpalPose(XRTK.Definitions.Utilities.MixedRealityPose[]) - fullName.vb: XRTK.Utilities.HandUtilities.GetEstimatedMiddleMetacarpalPose(XRTK.Definitions.Utilities.MixedRealityPose()) - nameWithType: HandUtilities.GetEstimatedMiddleMetacarpalPose(MixedRealityPose[]) - nameWithType.vb: HandUtilities.GetEstimatedMiddleMetacarpalPose(MixedRealityPose()) -- uid: XRTK.Utilities.HandUtilities.GetEstimatedMiddleMetacarpalPose* - name: GetEstimatedMiddleMetacarpalPose - href: api/XRTK.Utilities.HandUtilities.html#XRTK_Utilities_HandUtilities_GetEstimatedMiddleMetacarpalPose_ - commentId: Overload:XRTK.Utilities.HandUtilities.GetEstimatedMiddleMetacarpalPose - isSpec: "True" - fullName: XRTK.Utilities.HandUtilities.GetEstimatedMiddleMetacarpalPose - nameWithType: HandUtilities.GetEstimatedMiddleMetacarpalPose -- uid: XRTK.Utilities.HandUtilities.GetEstimatedPalmPose(XRTK.Definitions.Utilities.MixedRealityPose[]) - name: GetEstimatedPalmPose(MixedRealityPose[]) - href: api/XRTK.Utilities.HandUtilities.html#XRTK_Utilities_HandUtilities_GetEstimatedPalmPose_XRTK_Definitions_Utilities_MixedRealityPose___ - commentId: M:XRTK.Utilities.HandUtilities.GetEstimatedPalmPose(XRTK.Definitions.Utilities.MixedRealityPose[]) - name.vb: GetEstimatedPalmPose(MixedRealityPose()) - fullName: XRTK.Utilities.HandUtilities.GetEstimatedPalmPose(XRTK.Definitions.Utilities.MixedRealityPose[]) - fullName.vb: XRTK.Utilities.HandUtilities.GetEstimatedPalmPose(XRTK.Definitions.Utilities.MixedRealityPose()) - nameWithType: HandUtilities.GetEstimatedPalmPose(MixedRealityPose[]) - nameWithType.vb: HandUtilities.GetEstimatedPalmPose(MixedRealityPose()) -- uid: XRTK.Utilities.HandUtilities.GetEstimatedPalmPose* - name: GetEstimatedPalmPose - href: api/XRTK.Utilities.HandUtilities.html#XRTK_Utilities_HandUtilities_GetEstimatedPalmPose_ - commentId: Overload:XRTK.Utilities.HandUtilities.GetEstimatedPalmPose - isSpec: "True" - fullName: XRTK.Utilities.HandUtilities.GetEstimatedPalmPose - nameWithType: HandUtilities.GetEstimatedPalmPose -- uid: XRTK.Utilities.HandUtilities.GetEstimatedRingMetacarpalPose(XRTK.Definitions.Utilities.MixedRealityPose[]) - name: GetEstimatedRingMetacarpalPose(MixedRealityPose[]) - href: api/XRTK.Utilities.HandUtilities.html#XRTK_Utilities_HandUtilities_GetEstimatedRingMetacarpalPose_XRTK_Definitions_Utilities_MixedRealityPose___ - commentId: M:XRTK.Utilities.HandUtilities.GetEstimatedRingMetacarpalPose(XRTK.Definitions.Utilities.MixedRealityPose[]) - name.vb: GetEstimatedRingMetacarpalPose(MixedRealityPose()) - fullName: XRTK.Utilities.HandUtilities.GetEstimatedRingMetacarpalPose(XRTK.Definitions.Utilities.MixedRealityPose[]) - fullName.vb: XRTK.Utilities.HandUtilities.GetEstimatedRingMetacarpalPose(XRTK.Definitions.Utilities.MixedRealityPose()) - nameWithType: HandUtilities.GetEstimatedRingMetacarpalPose(MixedRealityPose[]) - nameWithType.vb: HandUtilities.GetEstimatedRingMetacarpalPose(MixedRealityPose()) -- uid: XRTK.Utilities.HandUtilities.GetEstimatedRingMetacarpalPose* - name: GetEstimatedRingMetacarpalPose - href: api/XRTK.Utilities.HandUtilities.html#XRTK_Utilities_HandUtilities_GetEstimatedRingMetacarpalPose_ - commentId: Overload:XRTK.Utilities.HandUtilities.GetEstimatedRingMetacarpalPose - isSpec: "True" - fullName: XRTK.Utilities.HandUtilities.GetEstimatedRingMetacarpalPose - nameWithType: HandUtilities.GetEstimatedRingMetacarpalPose -- uid: XRTK.Utilities.HoverLight - name: HoverLight - href: api/XRTK.Utilities.HoverLight.html - commentId: T:XRTK.Utilities.HoverLight - fullName: XRTK.Utilities.HoverLight - nameWithType: HoverLight -- uid: XRTK.Utilities.HoverLight.Color - name: Color - href: api/XRTK.Utilities.HoverLight.html#XRTK_Utilities_HoverLight_Color - commentId: P:XRTK.Utilities.HoverLight.Color - fullName: XRTK.Utilities.HoverLight.Color - nameWithType: HoverLight.Color -- uid: XRTK.Utilities.HoverLight.Color* - name: Color - href: api/XRTK.Utilities.HoverLight.html#XRTK_Utilities_HoverLight_Color_ - commentId: Overload:XRTK.Utilities.HoverLight.Color - isSpec: "True" - fullName: XRTK.Utilities.HoverLight.Color - nameWithType: HoverLight.Color -- uid: XRTK.Utilities.HoverLight.Radius - name: Radius - href: api/XRTK.Utilities.HoverLight.html#XRTK_Utilities_HoverLight_Radius - commentId: P:XRTK.Utilities.HoverLight.Radius - fullName: XRTK.Utilities.HoverLight.Radius - nameWithType: HoverLight.Radius -- uid: XRTK.Utilities.HoverLight.Radius* - name: Radius - href: api/XRTK.Utilities.HoverLight.html#XRTK_Utilities_HoverLight_Radius_ - commentId: Overload:XRTK.Utilities.HoverLight.Radius - isSpec: "True" - fullName: XRTK.Utilities.HoverLight.Radius - nameWithType: HoverLight.Radius -- uid: XRTK.Utilities.Lines - name: XRTK.Utilities.Lines - href: api/XRTK.Utilities.Lines.html - commentId: N:XRTK.Utilities.Lines - fullName: XRTK.Utilities.Lines - nameWithType: XRTK.Utilities.Lines -- uid: XRTK.Utilities.Lines.BezierLineDataProvider - name: BezierLineDataProvider - href: api/XRTK.Utilities.Lines.BezierLineDataProvider.html - commentId: T:XRTK.Utilities.Lines.BezierLineDataProvider - fullName: XRTK.Utilities.Lines.BezierLineDataProvider - nameWithType: BezierLineDataProvider -- uid: XRTK.Utilities.Lines.BezierLineDataProvider.GetPointInternal(System.Int32) - name: GetPointInternal(Int32) - href: api/XRTK.Utilities.Lines.BezierLineDataProvider.html#XRTK_Utilities_Lines_BezierLineDataProvider_GetPointInternal_System_Int32_ - commentId: M:XRTK.Utilities.Lines.BezierLineDataProvider.GetPointInternal(System.Int32) - fullName: XRTK.Utilities.Lines.BezierLineDataProvider.GetPointInternal(System.Int32) - nameWithType: BezierLineDataProvider.GetPointInternal(Int32) -- uid: XRTK.Utilities.Lines.BezierLineDataProvider.GetPointInternal(System.Single) - name: GetPointInternal(Single) - href: api/XRTK.Utilities.Lines.BezierLineDataProvider.html#XRTK_Utilities_Lines_BezierLineDataProvider_GetPointInternal_System_Single_ - commentId: M:XRTK.Utilities.Lines.BezierLineDataProvider.GetPointInternal(System.Single) - fullName: XRTK.Utilities.Lines.BezierLineDataProvider.GetPointInternal(System.Single) - nameWithType: BezierLineDataProvider.GetPointInternal(Single) -- uid: XRTK.Utilities.Lines.BezierLineDataProvider.GetPointInternal* - name: GetPointInternal - href: api/XRTK.Utilities.Lines.BezierLineDataProvider.html#XRTK_Utilities_Lines_BezierLineDataProvider_GetPointInternal_ - commentId: Overload:XRTK.Utilities.Lines.BezierLineDataProvider.GetPointInternal - isSpec: "True" - fullName: XRTK.Utilities.Lines.BezierLineDataProvider.GetPointInternal - nameWithType: BezierLineDataProvider.GetPointInternal -- uid: XRTK.Utilities.Lines.BezierLineDataProvider.GetUnClampedWorldLengthInternal - name: GetUnClampedWorldLengthInternal() - href: api/XRTK.Utilities.Lines.BezierLineDataProvider.html#XRTK_Utilities_Lines_BezierLineDataProvider_GetUnClampedWorldLengthInternal - commentId: M:XRTK.Utilities.Lines.BezierLineDataProvider.GetUnClampedWorldLengthInternal - fullName: XRTK.Utilities.Lines.BezierLineDataProvider.GetUnClampedWorldLengthInternal() - nameWithType: BezierLineDataProvider.GetUnClampedWorldLengthInternal() -- uid: XRTK.Utilities.Lines.BezierLineDataProvider.GetUnClampedWorldLengthInternal* - name: GetUnClampedWorldLengthInternal - href: api/XRTK.Utilities.Lines.BezierLineDataProvider.html#XRTK_Utilities_Lines_BezierLineDataProvider_GetUnClampedWorldLengthInternal_ - commentId: Overload:XRTK.Utilities.Lines.BezierLineDataProvider.GetUnClampedWorldLengthInternal - isSpec: "True" - fullName: XRTK.Utilities.Lines.BezierLineDataProvider.GetUnClampedWorldLengthInternal - nameWithType: BezierLineDataProvider.GetUnClampedWorldLengthInternal -- uid: XRTK.Utilities.Lines.BezierLineDataProvider.GetUpVectorInternal(System.Single) - name: GetUpVectorInternal(Single) - href: api/XRTK.Utilities.Lines.BezierLineDataProvider.html#XRTK_Utilities_Lines_BezierLineDataProvider_GetUpVectorInternal_System_Single_ - commentId: M:XRTK.Utilities.Lines.BezierLineDataProvider.GetUpVectorInternal(System.Single) - fullName: XRTK.Utilities.Lines.BezierLineDataProvider.GetUpVectorInternal(System.Single) - nameWithType: BezierLineDataProvider.GetUpVectorInternal(Single) -- uid: XRTK.Utilities.Lines.BezierLineDataProvider.GetUpVectorInternal* - name: GetUpVectorInternal - href: api/XRTK.Utilities.Lines.BezierLineDataProvider.html#XRTK_Utilities_Lines_BezierLineDataProvider_GetUpVectorInternal_ - commentId: Overload:XRTK.Utilities.Lines.BezierLineDataProvider.GetUpVectorInternal - isSpec: "True" - fullName: XRTK.Utilities.Lines.BezierLineDataProvider.GetUpVectorInternal - nameWithType: BezierLineDataProvider.GetUpVectorInternal -- uid: XRTK.Utilities.Lines.BezierLineDataProvider.OnValidate - name: OnValidate() - href: api/XRTK.Utilities.Lines.BezierLineDataProvider.html#XRTK_Utilities_Lines_BezierLineDataProvider_OnValidate - commentId: M:XRTK.Utilities.Lines.BezierLineDataProvider.OnValidate - fullName: XRTK.Utilities.Lines.BezierLineDataProvider.OnValidate() - nameWithType: BezierLineDataProvider.OnValidate() -- uid: XRTK.Utilities.Lines.BezierLineDataProvider.OnValidate* - name: OnValidate - href: api/XRTK.Utilities.Lines.BezierLineDataProvider.html#XRTK_Utilities_Lines_BezierLineDataProvider_OnValidate_ - commentId: Overload:XRTK.Utilities.Lines.BezierLineDataProvider.OnValidate - isSpec: "True" - fullName: XRTK.Utilities.Lines.BezierLineDataProvider.OnValidate - nameWithType: BezierLineDataProvider.OnValidate -- uid: XRTK.Utilities.Lines.BezierLineDataProvider.PointCount - name: PointCount - href: api/XRTK.Utilities.Lines.BezierLineDataProvider.html#XRTK_Utilities_Lines_BezierLineDataProvider_PointCount - commentId: P:XRTK.Utilities.Lines.BezierLineDataProvider.PointCount - fullName: XRTK.Utilities.Lines.BezierLineDataProvider.PointCount - nameWithType: BezierLineDataProvider.PointCount -- uid: XRTK.Utilities.Lines.BezierLineDataProvider.PointCount* - name: PointCount - href: api/XRTK.Utilities.Lines.BezierLineDataProvider.html#XRTK_Utilities_Lines_BezierLineDataProvider_PointCount_ - commentId: Overload:XRTK.Utilities.Lines.BezierLineDataProvider.PointCount - isSpec: "True" - fullName: XRTK.Utilities.Lines.BezierLineDataProvider.PointCount - nameWithType: BezierLineDataProvider.PointCount -- uid: XRTK.Utilities.Lines.BezierLineDataProvider.SetPointInternal(System.Int32,UnityEngine.Vector3) - name: SetPointInternal(Int32, Vector3) - href: api/XRTK.Utilities.Lines.BezierLineDataProvider.html#XRTK_Utilities_Lines_BezierLineDataProvider_SetPointInternal_System_Int32_UnityEngine_Vector3_ - commentId: M:XRTK.Utilities.Lines.BezierLineDataProvider.SetPointInternal(System.Int32,UnityEngine.Vector3) - fullName: XRTK.Utilities.Lines.BezierLineDataProvider.SetPointInternal(System.Int32, UnityEngine.Vector3) - nameWithType: BezierLineDataProvider.SetPointInternal(Int32, Vector3) -- uid: XRTK.Utilities.Lines.BezierLineDataProvider.SetPointInternal* - name: SetPointInternal - href: api/XRTK.Utilities.Lines.BezierLineDataProvider.html#XRTK_Utilities_Lines_BezierLineDataProvider_SetPointInternal_ - commentId: Overload:XRTK.Utilities.Lines.BezierLineDataProvider.SetPointInternal - isSpec: "True" - fullName: XRTK.Utilities.Lines.BezierLineDataProvider.SetPointInternal - nameWithType: BezierLineDataProvider.SetPointInternal -- uid: XRTK.Utilities.Lines.BezierLineDataProvider.Update - name: Update() - href: api/XRTK.Utilities.Lines.BezierLineDataProvider.html#XRTK_Utilities_Lines_BezierLineDataProvider_Update - commentId: M:XRTK.Utilities.Lines.BezierLineDataProvider.Update - fullName: XRTK.Utilities.Lines.BezierLineDataProvider.Update() - nameWithType: BezierLineDataProvider.Update() -- uid: XRTK.Utilities.Lines.BezierLineDataProvider.Update* - name: Update - href: api/XRTK.Utilities.Lines.BezierLineDataProvider.html#XRTK_Utilities_Lines_BezierLineDataProvider_Update_ - commentId: Overload:XRTK.Utilities.Lines.BezierLineDataProvider.Update - isSpec: "True" - fullName: XRTK.Utilities.Lines.BezierLineDataProvider.Update - nameWithType: BezierLineDataProvider.Update -- uid: XRTK.Utilities.Lines.DataProviders - name: XRTK.Utilities.Lines.DataProviders - href: api/XRTK.Utilities.Lines.DataProviders.html - commentId: N:XRTK.Utilities.Lines.DataProviders - fullName: XRTK.Utilities.Lines.DataProviders - nameWithType: XRTK.Utilities.Lines.DataProviders -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider - name: BaseMixedRealityLineDataProvider - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html - commentId: T:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider - nameWithType: BaseMixedRealityLineDataProvider -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.Distorters - name: Distorters - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_Distorters - commentId: P:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.Distorters - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.Distorters - nameWithType: BaseMixedRealityLineDataProvider.Distorters -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.Distorters* - name: Distorters - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_Distorters_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.Distorters - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.Distorters - nameWithType: BaseMixedRealityLineDataProvider.Distorters -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.DistortionMode - name: DistortionMode - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_DistortionMode - commentId: P:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.DistortionMode - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.DistortionMode - nameWithType: BaseMixedRealityLineDataProvider.DistortionMode -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.DistortionMode* - name: DistortionMode - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_DistortionMode_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.DistortionMode - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.DistortionMode - nameWithType: BaseMixedRealityLineDataProvider.DistortionMode -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.DistortionStrength - name: DistortionStrength - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_DistortionStrength - commentId: P:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.DistortionStrength - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.DistortionStrength - nameWithType: BaseMixedRealityLineDataProvider.DistortionStrength -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.DistortionStrength* - name: DistortionStrength - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_DistortionStrength_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.DistortionStrength - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.DistortionStrength - nameWithType: BaseMixedRealityLineDataProvider.DistortionStrength -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.DrawUnselectedGizmosPreview - name: DrawUnselectedGizmosPreview() - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_DrawUnselectedGizmosPreview - commentId: M:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.DrawUnselectedGizmosPreview - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.DrawUnselectedGizmosPreview() - nameWithType: BaseMixedRealityLineDataProvider.DrawUnselectedGizmosPreview() -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.DrawUnselectedGizmosPreview* - name: DrawUnselectedGizmosPreview - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_DrawUnselectedGizmosPreview_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.DrawUnselectedGizmosPreview - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.DrawUnselectedGizmosPreview - nameWithType: BaseMixedRealityLineDataProvider.DrawUnselectedGizmosPreview -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.FirstPoint - name: FirstPoint - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_FirstPoint - commentId: P:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.FirstPoint - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.FirstPoint - nameWithType: BaseMixedRealityLineDataProvider.FirstPoint -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.FirstPoint* - name: FirstPoint - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_FirstPoint_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.FirstPoint - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.FirstPoint - nameWithType: BaseMixedRealityLineDataProvider.FirstPoint -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.FlipUpVector - name: FlipUpVector - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_FlipUpVector - commentId: P:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.FlipUpVector - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.FlipUpVector - nameWithType: BaseMixedRealityLineDataProvider.FlipUpVector -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.FlipUpVector* - name: FlipUpVector - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_FlipUpVector_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.FlipUpVector - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.FlipUpVector - nameWithType: BaseMixedRealityLineDataProvider.FlipUpVector -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetClosestPoint(UnityEngine.Vector3,System.Int32,System.Int32) - name: GetClosestPoint(Vector3, Int32, Int32) - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_GetClosestPoint_UnityEngine_Vector3_System_Int32_System_Int32_ - commentId: M:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetClosestPoint(UnityEngine.Vector3,System.Int32,System.Int32) - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetClosestPoint(UnityEngine.Vector3, System.Int32, System.Int32) - nameWithType: BaseMixedRealityLineDataProvider.GetClosestPoint(Vector3, Int32, Int32) -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetClosestPoint* - name: GetClosestPoint - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_GetClosestPoint_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetClosestPoint - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetClosestPoint - nameWithType: BaseMixedRealityLineDataProvider.GetClosestPoint -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetNormalizedLengthFromWorldLength(System.Single,System.Int32) - name: GetNormalizedLengthFromWorldLength(Single, Int32) - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_GetNormalizedLengthFromWorldLength_System_Single_System_Int32_ - commentId: M:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetNormalizedLengthFromWorldLength(System.Single,System.Int32) - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetNormalizedLengthFromWorldLength(System.Single, System.Int32) - nameWithType: BaseMixedRealityLineDataProvider.GetNormalizedLengthFromWorldLength(Single, Int32) -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetNormalizedLengthFromWorldLength* - name: GetNormalizedLengthFromWorldLength - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_GetNormalizedLengthFromWorldLength_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetNormalizedLengthFromWorldLength - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetNormalizedLengthFromWorldLength - nameWithType: BaseMixedRealityLineDataProvider.GetNormalizedLengthFromWorldLength -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetNormalizedLengthFromWorldPos(UnityEngine.Vector3,System.Int32,System.Int32) - name: GetNormalizedLengthFromWorldPos(Vector3, Int32, Int32) - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_GetNormalizedLengthFromWorldPos_UnityEngine_Vector3_System_Int32_System_Int32_ - commentId: M:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetNormalizedLengthFromWorldPos(UnityEngine.Vector3,System.Int32,System.Int32) - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetNormalizedLengthFromWorldPos(UnityEngine.Vector3, System.Int32, System.Int32) - nameWithType: BaseMixedRealityLineDataProvider.GetNormalizedLengthFromWorldPos(Vector3, Int32, Int32) -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetNormalizedLengthFromWorldPos* - name: GetNormalizedLengthFromWorldPos - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_GetNormalizedLengthFromWorldPos_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetNormalizedLengthFromWorldPos - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetNormalizedLengthFromWorldPos - nameWithType: BaseMixedRealityLineDataProvider.GetNormalizedLengthFromWorldPos -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetPoint(System.Int32) - name: GetPoint(Int32) - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_GetPoint_System_Int32_ - commentId: M:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetPoint(System.Int32) - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetPoint(System.Int32) - nameWithType: BaseMixedRealityLineDataProvider.GetPoint(Int32) -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetPoint(System.Single) - name: GetPoint(Single) - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_GetPoint_System_Single_ - commentId: M:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetPoint(System.Single) - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetPoint(System.Single) - nameWithType: BaseMixedRealityLineDataProvider.GetPoint(Single) -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetPoint* - name: GetPoint - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_GetPoint_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetPoint - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetPoint - nameWithType: BaseMixedRealityLineDataProvider.GetPoint -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetPointInternal(System.Int32) - name: GetPointInternal(Int32) - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_GetPointInternal_System_Int32_ - commentId: M:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetPointInternal(System.Int32) - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetPointInternal(System.Int32) - nameWithType: BaseMixedRealityLineDataProvider.GetPointInternal(Int32) -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetPointInternal(System.Single) - name: GetPointInternal(Single) - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_GetPointInternal_System_Single_ - commentId: M:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetPointInternal(System.Single) - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetPointInternal(System.Single) - nameWithType: BaseMixedRealityLineDataProvider.GetPointInternal(Single) -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetPointInternal* - name: GetPointInternal - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_GetPointInternal_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetPointInternal - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetPointInternal - nameWithType: BaseMixedRealityLineDataProvider.GetPointInternal -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetRotation(System.Int32,XRTK.Definitions.Lines.LineRotationMode) - name: GetRotation(Int32, LineRotationMode) - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_GetRotation_System_Int32_XRTK_Definitions_Lines_LineRotationMode_ - commentId: M:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetRotation(System.Int32,XRTK.Definitions.Lines.LineRotationMode) - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetRotation(System.Int32, XRTK.Definitions.Lines.LineRotationMode) - nameWithType: BaseMixedRealityLineDataProvider.GetRotation(Int32, LineRotationMode) -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetRotation(System.Single,XRTK.Definitions.Lines.LineRotationMode) - name: GetRotation(Single, LineRotationMode) - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_GetRotation_System_Single_XRTK_Definitions_Lines_LineRotationMode_ - commentId: M:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetRotation(System.Single,XRTK.Definitions.Lines.LineRotationMode) - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetRotation(System.Single, XRTK.Definitions.Lines.LineRotationMode) - nameWithType: BaseMixedRealityLineDataProvider.GetRotation(Single, LineRotationMode) -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetRotation* - name: GetRotation - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_GetRotation_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetRotation - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetRotation - nameWithType: BaseMixedRealityLineDataProvider.GetRotation -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetUnClampedPoint(System.Single) - name: GetUnClampedPoint(Single) - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_GetUnClampedPoint_System_Single_ - commentId: M:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetUnClampedPoint(System.Single) - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetUnClampedPoint(System.Single) - nameWithType: BaseMixedRealityLineDataProvider.GetUnClampedPoint(Single) -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetUnClampedPoint* - name: GetUnClampedPoint - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_GetUnClampedPoint_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetUnClampedPoint - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetUnClampedPoint - nameWithType: BaseMixedRealityLineDataProvider.GetUnClampedPoint -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetUnClampedWorldLengthInternal - name: GetUnClampedWorldLengthInternal() - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_GetUnClampedWorldLengthInternal - commentId: M:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetUnClampedWorldLengthInternal - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetUnClampedWorldLengthInternal() - nameWithType: BaseMixedRealityLineDataProvider.GetUnClampedWorldLengthInternal() -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetUnClampedWorldLengthInternal* - name: GetUnClampedWorldLengthInternal - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_GetUnClampedWorldLengthInternal_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetUnClampedWorldLengthInternal - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetUnClampedWorldLengthInternal - nameWithType: BaseMixedRealityLineDataProvider.GetUnClampedWorldLengthInternal -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetUpVectorInternal(System.Single) - name: GetUpVectorInternal(Single) - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_GetUpVectorInternal_System_Single_ - commentId: M:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetUpVectorInternal(System.Single) - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetUpVectorInternal(System.Single) - nameWithType: BaseMixedRealityLineDataProvider.GetUpVectorInternal(Single) -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetUpVectorInternal* - name: GetUpVectorInternal - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_GetUpVectorInternal_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetUpVectorInternal - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetUpVectorInternal - nameWithType: BaseMixedRealityLineDataProvider.GetUpVectorInternal -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetVelocity(System.Single) - name: GetVelocity(Single) - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_GetVelocity_System_Single_ - commentId: M:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetVelocity(System.Single) - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetVelocity(System.Single) - nameWithType: BaseMixedRealityLineDataProvider.GetVelocity(Single) -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetVelocity* - name: GetVelocity - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_GetVelocity_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetVelocity - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.GetVelocity - nameWithType: BaseMixedRealityLineDataProvider.GetVelocity -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.LastPoint - name: LastPoint - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_LastPoint - commentId: P:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.LastPoint - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.LastPoint - nameWithType: BaseMixedRealityLineDataProvider.LastPoint -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.LastPoint* - name: LastPoint - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_LastPoint_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.LastPoint - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.LastPoint - nameWithType: BaseMixedRealityLineDataProvider.LastPoint -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.LineEndClamp - name: LineEndClamp - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_LineEndClamp - commentId: P:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.LineEndClamp - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.LineEndClamp - nameWithType: BaseMixedRealityLineDataProvider.LineEndClamp -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.LineEndClamp* - name: LineEndClamp - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_LineEndClamp_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.LineEndClamp - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.LineEndClamp - nameWithType: BaseMixedRealityLineDataProvider.LineEndClamp -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.LineStartClamp - name: LineStartClamp - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_LineStartClamp - commentId: P:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.LineStartClamp - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.LineStartClamp - nameWithType: BaseMixedRealityLineDataProvider.LineStartClamp -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.LineStartClamp* - name: LineStartClamp - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_LineStartClamp_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.LineStartClamp - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.LineStartClamp - nameWithType: BaseMixedRealityLineDataProvider.LineStartClamp -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.LineTransform - name: LineTransform - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_LineTransform - commentId: P:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.LineTransform - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.LineTransform - nameWithType: BaseMixedRealityLineDataProvider.LineTransform -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.LineTransform* - name: LineTransform - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_LineTransform_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.LineTransform - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.LineTransform - nameWithType: BaseMixedRealityLineDataProvider.LineTransform -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.Loops - name: Loops - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_Loops - commentId: P:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.Loops - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.Loops - nameWithType: BaseMixedRealityLineDataProvider.Loops -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.Loops* - name: Loops - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_Loops_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.Loops - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.Loops - nameWithType: BaseMixedRealityLineDataProvider.Loops -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.ManualUpVectorBlend - name: ManualUpVectorBlend - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_ManualUpVectorBlend - commentId: P:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.ManualUpVectorBlend - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.ManualUpVectorBlend - nameWithType: BaseMixedRealityLineDataProvider.ManualUpVectorBlend -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.ManualUpVectorBlend* - name: ManualUpVectorBlend - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_ManualUpVectorBlend_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.ManualUpVectorBlend - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.ManualUpVectorBlend - nameWithType: BaseMixedRealityLineDataProvider.ManualUpVectorBlend -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.ManualUpVectors - name: ManualUpVectors - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_ManualUpVectors - commentId: P:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.ManualUpVectors - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.ManualUpVectors - nameWithType: BaseMixedRealityLineDataProvider.ManualUpVectors -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.ManualUpVectors* - name: ManualUpVectors - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_ManualUpVectors_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.ManualUpVectors - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.ManualUpVectors - nameWithType: BaseMixedRealityLineDataProvider.ManualUpVectors -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.OnEnable - name: OnEnable() - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_OnEnable - commentId: M:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.OnEnable - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.OnEnable() - nameWithType: BaseMixedRealityLineDataProvider.OnEnable() -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.OnEnable* - name: OnEnable - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_OnEnable_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.OnEnable - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.OnEnable - nameWithType: BaseMixedRealityLineDataProvider.OnEnable -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.OnValidate - name: OnValidate() - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_OnValidate - commentId: M:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.OnValidate - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.OnValidate() - nameWithType: BaseMixedRealityLineDataProvider.OnValidate() -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.OnValidate* - name: OnValidate - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_OnValidate_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.OnValidate - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.OnValidate - nameWithType: BaseMixedRealityLineDataProvider.OnValidate -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.OriginOffset - name: OriginOffset - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_OriginOffset - commentId: P:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.OriginOffset - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.OriginOffset - nameWithType: BaseMixedRealityLineDataProvider.OriginOffset -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.OriginOffset* - name: OriginOffset - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_OriginOffset_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.OriginOffset - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.OriginOffset - nameWithType: BaseMixedRealityLineDataProvider.OriginOffset -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.PointCount - name: PointCount - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_PointCount - commentId: P:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.PointCount - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.PointCount - nameWithType: BaseMixedRealityLineDataProvider.PointCount -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.PointCount* - name: PointCount - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_PointCount_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.PointCount - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.PointCount - nameWithType: BaseMixedRealityLineDataProvider.PointCount -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.RotationMode - name: RotationMode - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_RotationMode - commentId: P:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.RotationMode - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.RotationMode - nameWithType: BaseMixedRealityLineDataProvider.RotationMode -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.RotationMode* - name: RotationMode - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_RotationMode_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.RotationMode - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.RotationMode - nameWithType: BaseMixedRealityLineDataProvider.RotationMode -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.SetPoint(System.Int32,UnityEngine.Vector3) - name: SetPoint(Int32, Vector3) - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_SetPoint_System_Int32_UnityEngine_Vector3_ - commentId: M:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.SetPoint(System.Int32,UnityEngine.Vector3) - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.SetPoint(System.Int32, UnityEngine.Vector3) - nameWithType: BaseMixedRealityLineDataProvider.SetPoint(Int32, Vector3) -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.SetPoint* - name: SetPoint - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_SetPoint_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.SetPoint - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.SetPoint - nameWithType: BaseMixedRealityLineDataProvider.SetPoint -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.SetPointInternal(System.Int32,UnityEngine.Vector3) - name: SetPointInternal(Int32, Vector3) - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_SetPointInternal_System_Int32_UnityEngine_Vector3_ - commentId: M:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.SetPointInternal(System.Int32,UnityEngine.Vector3) - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.SetPointInternal(System.Int32, UnityEngine.Vector3) - nameWithType: BaseMixedRealityLineDataProvider.SetPointInternal(Int32, Vector3) -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.SetPointInternal* - name: SetPointInternal - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_SetPointInternal_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.SetPointInternal - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.SetPointInternal - nameWithType: BaseMixedRealityLineDataProvider.SetPointInternal -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.TransformMode - name: TransformMode - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_TransformMode - commentId: P:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.TransformMode - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.TransformMode - nameWithType: BaseMixedRealityLineDataProvider.TransformMode -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.TransformMode* - name: TransformMode - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_TransformMode_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.TransformMode - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.TransformMode - nameWithType: BaseMixedRealityLineDataProvider.TransformMode -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.UnClampedWorldLength - name: UnClampedWorldLength - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_UnClampedWorldLength - commentId: P:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.UnClampedWorldLength - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.UnClampedWorldLength - nameWithType: BaseMixedRealityLineDataProvider.UnClampedWorldLength -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.UnClampedWorldLength* - name: UnClampedWorldLength - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_UnClampedWorldLength_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.UnClampedWorldLength - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.UnClampedWorldLength - nameWithType: BaseMixedRealityLineDataProvider.UnClampedWorldLength -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.UnclampedWorldLengthSearchSteps - name: UnclampedWorldLengthSearchSteps - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_UnclampedWorldLengthSearchSteps - commentId: F:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.UnclampedWorldLengthSearchSteps - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.UnclampedWorldLengthSearchSteps - nameWithType: BaseMixedRealityLineDataProvider.UnclampedWorldLengthSearchSteps -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.UniformDistortionStrength - name: UniformDistortionStrength - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_UniformDistortionStrength - commentId: P:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.UniformDistortionStrength - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.UniformDistortionStrength - nameWithType: BaseMixedRealityLineDataProvider.UniformDistortionStrength -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.UniformDistortionStrength* - name: UniformDistortionStrength - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_UniformDistortionStrength_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.UniformDistortionStrength - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.UniformDistortionStrength - nameWithType: BaseMixedRealityLineDataProvider.UniformDistortionStrength -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.Update - name: Update() - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_Update - commentId: M:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.Update - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.Update() - nameWithType: BaseMixedRealityLineDataProvider.Update() -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.Update* - name: Update - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_Update_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.Update - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.Update - nameWithType: BaseMixedRealityLineDataProvider.Update -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.UpdateMatrix - name: UpdateMatrix() - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_UpdateMatrix - commentId: M:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.UpdateMatrix - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.UpdateMatrix() - nameWithType: BaseMixedRealityLineDataProvider.UpdateMatrix() -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.UpdateMatrix* - name: UpdateMatrix - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_UpdateMatrix_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.UpdateMatrix - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.UpdateMatrix - nameWithType: BaseMixedRealityLineDataProvider.UpdateMatrix -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.VelocitySearchRange - name: VelocitySearchRange - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_VelocitySearchRange - commentId: P:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.VelocitySearchRange - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.VelocitySearchRange - nameWithType: BaseMixedRealityLineDataProvider.VelocitySearchRange -- uid: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.VelocitySearchRange* - name: VelocitySearchRange - href: api/XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_BaseMixedRealityLineDataProvider_VelocitySearchRange_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.VelocitySearchRange - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.BaseMixedRealityLineDataProvider.VelocitySearchRange - nameWithType: BaseMixedRealityLineDataProvider.VelocitySearchRange -- uid: XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider - name: EllipseLineDataProvider - href: api/XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.html - commentId: T:XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider - fullName: XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider - nameWithType: EllipseLineDataProvider -- uid: XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.GetPointInternal(System.Int32) - name: GetPointInternal(Int32) - href: api/XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_EllipseLineDataProvider_GetPointInternal_System_Int32_ - commentId: M:XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.GetPointInternal(System.Int32) - fullName: XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.GetPointInternal(System.Int32) - nameWithType: EllipseLineDataProvider.GetPointInternal(Int32) -- uid: XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.GetPointInternal(System.Single) - name: GetPointInternal(Single) - href: api/XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_EllipseLineDataProvider_GetPointInternal_System_Single_ - commentId: M:XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.GetPointInternal(System.Single) - fullName: XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.GetPointInternal(System.Single) - nameWithType: EllipseLineDataProvider.GetPointInternal(Single) -- uid: XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.GetPointInternal* - name: GetPointInternal - href: api/XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_EllipseLineDataProvider_GetPointInternal_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.GetPointInternal - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.GetPointInternal - nameWithType: EllipseLineDataProvider.GetPointInternal -- uid: XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.GetUnClampedWorldLengthInternal - name: GetUnClampedWorldLengthInternal() - href: api/XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_EllipseLineDataProvider_GetUnClampedWorldLengthInternal - commentId: M:XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.GetUnClampedWorldLengthInternal - fullName: XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.GetUnClampedWorldLengthInternal() - nameWithType: EllipseLineDataProvider.GetUnClampedWorldLengthInternal() -- uid: XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.GetUnClampedWorldLengthInternal* - name: GetUnClampedWorldLengthInternal - href: api/XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_EllipseLineDataProvider_GetUnClampedWorldLengthInternal_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.GetUnClampedWorldLengthInternal - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.GetUnClampedWorldLengthInternal - nameWithType: EllipseLineDataProvider.GetUnClampedWorldLengthInternal -- uid: XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.PointCount - name: PointCount - href: api/XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_EllipseLineDataProvider_PointCount - commentId: P:XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.PointCount - fullName: XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.PointCount - nameWithType: EllipseLineDataProvider.PointCount -- uid: XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.PointCount* - name: PointCount - href: api/XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_EllipseLineDataProvider_PointCount_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.PointCount - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.PointCount - nameWithType: EllipseLineDataProvider.PointCount -- uid: XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.Radius - name: Radius - href: api/XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_EllipseLineDataProvider_Radius - commentId: P:XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.Radius - fullName: XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.Radius - nameWithType: EllipseLineDataProvider.Radius -- uid: XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.Radius* - name: Radius - href: api/XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_EllipseLineDataProvider_Radius_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.Radius - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.Radius - nameWithType: EllipseLineDataProvider.Radius -- uid: XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.Resolution - name: Resolution - href: api/XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_EllipseLineDataProvider_Resolution - commentId: P:XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.Resolution - fullName: XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.Resolution - nameWithType: EllipseLineDataProvider.Resolution -- uid: XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.Resolution* - name: Resolution - href: api/XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_EllipseLineDataProvider_Resolution_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.Resolution - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.Resolution - nameWithType: EllipseLineDataProvider.Resolution -- uid: XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.SetPointInternal(System.Int32,UnityEngine.Vector3) - name: SetPointInternal(Int32, Vector3) - href: api/XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_EllipseLineDataProvider_SetPointInternal_System_Int32_UnityEngine_Vector3_ - commentId: M:XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.SetPointInternal(System.Int32,UnityEngine.Vector3) - fullName: XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.SetPointInternal(System.Int32, UnityEngine.Vector3) - nameWithType: EllipseLineDataProvider.SetPointInternal(Int32, Vector3) -- uid: XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.SetPointInternal* - name: SetPointInternal - href: api/XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_EllipseLineDataProvider_SetPointInternal_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.SetPointInternal - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.EllipseLineDataProvider.SetPointInternal - nameWithType: EllipseLineDataProvider.SetPointInternal -- uid: XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider - name: ParabolaConstrainedLineDataProvider - href: api/XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.html - commentId: T:XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider - fullName: XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider - nameWithType: ParabolaConstrainedLineDataProvider -- uid: XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.EndPoint - name: EndPoint - href: api/XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_ParabolaConstrainedLineDataProvider_EndPoint - commentId: P:XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.EndPoint - fullName: XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.EndPoint - nameWithType: ParabolaConstrainedLineDataProvider.EndPoint -- uid: XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.EndPoint* - name: EndPoint - href: api/XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_ParabolaConstrainedLineDataProvider_EndPoint_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.EndPoint - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.EndPoint - nameWithType: ParabolaConstrainedLineDataProvider.EndPoint -- uid: XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.GetPointInternal(System.Int32) - name: GetPointInternal(Int32) - href: api/XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_ParabolaConstrainedLineDataProvider_GetPointInternal_System_Int32_ - commentId: M:XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.GetPointInternal(System.Int32) - fullName: XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.GetPointInternal(System.Int32) - nameWithType: ParabolaConstrainedLineDataProvider.GetPointInternal(Int32) -- uid: XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.GetPointInternal(System.Single) - name: GetPointInternal(Single) - href: api/XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_ParabolaConstrainedLineDataProvider_GetPointInternal_System_Single_ - commentId: M:XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.GetPointInternal(System.Single) - fullName: XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.GetPointInternal(System.Single) - nameWithType: ParabolaConstrainedLineDataProvider.GetPointInternal(Single) -- uid: XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.GetPointInternal* - name: GetPointInternal - href: api/XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_ParabolaConstrainedLineDataProvider_GetPointInternal_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.GetPointInternal - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.GetPointInternal - nameWithType: ParabolaConstrainedLineDataProvider.GetPointInternal -- uid: XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.Height - name: Height - href: api/XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_ParabolaConstrainedLineDataProvider_Height - commentId: P:XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.Height - fullName: XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.Height - nameWithType: ParabolaConstrainedLineDataProvider.Height -- uid: XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.Height* - name: Height - href: api/XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_ParabolaConstrainedLineDataProvider_Height_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.Height - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.Height - nameWithType: ParabolaConstrainedLineDataProvider.Height -- uid: XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.OnValidate - name: OnValidate() - href: api/XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_ParabolaConstrainedLineDataProvider_OnValidate - commentId: M:XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.OnValidate - fullName: XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.OnValidate() - nameWithType: ParabolaConstrainedLineDataProvider.OnValidate() -- uid: XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.OnValidate* - name: OnValidate - href: api/XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_ParabolaConstrainedLineDataProvider_OnValidate_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.OnValidate - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.OnValidate - nameWithType: ParabolaConstrainedLineDataProvider.OnValidate -- uid: XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.PointCount - name: PointCount - href: api/XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_ParabolaConstrainedLineDataProvider_PointCount - commentId: P:XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.PointCount - fullName: XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.PointCount - nameWithType: ParabolaConstrainedLineDataProvider.PointCount -- uid: XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.PointCount* - name: PointCount - href: api/XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_ParabolaConstrainedLineDataProvider_PointCount_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.PointCount - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.PointCount - nameWithType: ParabolaConstrainedLineDataProvider.PointCount -- uid: XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.SetPointInternal(System.Int32,UnityEngine.Vector3) - name: SetPointInternal(Int32, Vector3) - href: api/XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_ParabolaConstrainedLineDataProvider_SetPointInternal_System_Int32_UnityEngine_Vector3_ - commentId: M:XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.SetPointInternal(System.Int32,UnityEngine.Vector3) - fullName: XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.SetPointInternal(System.Int32, UnityEngine.Vector3) - nameWithType: ParabolaConstrainedLineDataProvider.SetPointInternal(Int32, Vector3) -- uid: XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.SetPointInternal* - name: SetPointInternal - href: api/XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_ParabolaConstrainedLineDataProvider_SetPointInternal_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.SetPointInternal - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.SetPointInternal - nameWithType: ParabolaConstrainedLineDataProvider.SetPointInternal -- uid: XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.UpDirection - name: UpDirection - href: api/XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_ParabolaConstrainedLineDataProvider_UpDirection - commentId: P:XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.UpDirection - fullName: XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.UpDirection - nameWithType: ParabolaConstrainedLineDataProvider.UpDirection -- uid: XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.UpDirection* - name: UpDirection - href: api/XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_ParabolaConstrainedLineDataProvider_UpDirection_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.UpDirection - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.ParabolaConstrainedLineDataProvider.UpDirection - nameWithType: ParabolaConstrainedLineDataProvider.UpDirection -- uid: XRTK.Utilities.Lines.DataProviders.ParabolaLineDataProvider - name: ParabolaLineDataProvider - href: api/XRTK.Utilities.Lines.DataProviders.ParabolaLineDataProvider.html - commentId: T:XRTK.Utilities.Lines.DataProviders.ParabolaLineDataProvider - fullName: XRTK.Utilities.Lines.DataProviders.ParabolaLineDataProvider - nameWithType: ParabolaLineDataProvider -- uid: XRTK.Utilities.Lines.DataProviders.ParabolaLineDataProvider.GetUnClampedWorldLengthInternal - name: GetUnClampedWorldLengthInternal() - href: api/XRTK.Utilities.Lines.DataProviders.ParabolaLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_ParabolaLineDataProvider_GetUnClampedWorldLengthInternal - commentId: M:XRTK.Utilities.Lines.DataProviders.ParabolaLineDataProvider.GetUnClampedWorldLengthInternal - fullName: XRTK.Utilities.Lines.DataProviders.ParabolaLineDataProvider.GetUnClampedWorldLengthInternal() - nameWithType: ParabolaLineDataProvider.GetUnClampedWorldLengthInternal() -- uid: XRTK.Utilities.Lines.DataProviders.ParabolaLineDataProvider.GetUnClampedWorldLengthInternal* - name: GetUnClampedWorldLengthInternal - href: api/XRTK.Utilities.Lines.DataProviders.ParabolaLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_ParabolaLineDataProvider_GetUnClampedWorldLengthInternal_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.ParabolaLineDataProvider.GetUnClampedWorldLengthInternal - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.ParabolaLineDataProvider.GetUnClampedWorldLengthInternal - nameWithType: ParabolaLineDataProvider.GetUnClampedWorldLengthInternal -- uid: XRTK.Utilities.Lines.DataProviders.ParabolaLineDataProvider.GetUpVectorInternal(System.Single) - name: GetUpVectorInternal(Single) - href: api/XRTK.Utilities.Lines.DataProviders.ParabolaLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_ParabolaLineDataProvider_GetUpVectorInternal_System_Single_ - commentId: M:XRTK.Utilities.Lines.DataProviders.ParabolaLineDataProvider.GetUpVectorInternal(System.Single) - fullName: XRTK.Utilities.Lines.DataProviders.ParabolaLineDataProvider.GetUpVectorInternal(System.Single) - nameWithType: ParabolaLineDataProvider.GetUpVectorInternal(Single) -- uid: XRTK.Utilities.Lines.DataProviders.ParabolaLineDataProvider.GetUpVectorInternal* - name: GetUpVectorInternal - href: api/XRTK.Utilities.Lines.DataProviders.ParabolaLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_ParabolaLineDataProvider_GetUpVectorInternal_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.ParabolaLineDataProvider.GetUpVectorInternal - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.ParabolaLineDataProvider.GetUpVectorInternal - nameWithType: ParabolaLineDataProvider.GetUpVectorInternal -- uid: XRTK.Utilities.Lines.DataProviders.ParabolaLineDataProvider.OnValidate - name: OnValidate() - href: api/XRTK.Utilities.Lines.DataProviders.ParabolaLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_ParabolaLineDataProvider_OnValidate - commentId: M:XRTK.Utilities.Lines.DataProviders.ParabolaLineDataProvider.OnValidate - fullName: XRTK.Utilities.Lines.DataProviders.ParabolaLineDataProvider.OnValidate() - nameWithType: ParabolaLineDataProvider.OnValidate() -- uid: XRTK.Utilities.Lines.DataProviders.ParabolaLineDataProvider.OnValidate* - name: OnValidate - href: api/XRTK.Utilities.Lines.DataProviders.ParabolaLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_ParabolaLineDataProvider_OnValidate_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.ParabolaLineDataProvider.OnValidate - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.ParabolaLineDataProvider.OnValidate - nameWithType: ParabolaLineDataProvider.OnValidate -- uid: XRTK.Utilities.Lines.DataProviders.ParabolaLineDataProvider.StartPoint - name: StartPoint - href: api/XRTK.Utilities.Lines.DataProviders.ParabolaLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_ParabolaLineDataProvider_StartPoint - commentId: P:XRTK.Utilities.Lines.DataProviders.ParabolaLineDataProvider.StartPoint - fullName: XRTK.Utilities.Lines.DataProviders.ParabolaLineDataProvider.StartPoint - nameWithType: ParabolaLineDataProvider.StartPoint -- uid: XRTK.Utilities.Lines.DataProviders.ParabolaLineDataProvider.StartPoint* - name: StartPoint - href: api/XRTK.Utilities.Lines.DataProviders.ParabolaLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_ParabolaLineDataProvider_StartPoint_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.ParabolaLineDataProvider.StartPoint - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.ParabolaLineDataProvider.StartPoint - nameWithType: ParabolaLineDataProvider.StartPoint -- uid: XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider - name: ParabolaPhysicalLineDataProvider - href: api/XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.html - commentId: T:XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider - fullName: XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider - nameWithType: ParabolaPhysicalLineDataProvider -- uid: XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.Direction - name: Direction - href: api/XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_ParabolaPhysicalLineDataProvider_Direction - commentId: P:XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.Direction - fullName: XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.Direction - nameWithType: ParabolaPhysicalLineDataProvider.Direction -- uid: XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.Direction* - name: Direction - href: api/XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_ParabolaPhysicalLineDataProvider_Direction_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.Direction - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.Direction - nameWithType: ParabolaPhysicalLineDataProvider.Direction -- uid: XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.DistanceMultiplier - name: DistanceMultiplier - href: api/XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_ParabolaPhysicalLineDataProvider_DistanceMultiplier - commentId: P:XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.DistanceMultiplier - fullName: XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.DistanceMultiplier - nameWithType: ParabolaPhysicalLineDataProvider.DistanceMultiplier -- uid: XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.DistanceMultiplier* - name: DistanceMultiplier - href: api/XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_ParabolaPhysicalLineDataProvider_DistanceMultiplier_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.DistanceMultiplier - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.DistanceMultiplier - nameWithType: ParabolaPhysicalLineDataProvider.DistanceMultiplier -- uid: XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.GetPointInternal(System.Int32) - name: GetPointInternal(Int32) - href: api/XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_ParabolaPhysicalLineDataProvider_GetPointInternal_System_Int32_ - commentId: M:XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.GetPointInternal(System.Int32) - fullName: XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.GetPointInternal(System.Int32) - nameWithType: ParabolaPhysicalLineDataProvider.GetPointInternal(Int32) -- uid: XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.GetPointInternal(System.Single) - name: GetPointInternal(Single) - href: api/XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_ParabolaPhysicalLineDataProvider_GetPointInternal_System_Single_ - commentId: M:XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.GetPointInternal(System.Single) - fullName: XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.GetPointInternal(System.Single) - nameWithType: ParabolaPhysicalLineDataProvider.GetPointInternal(Single) -- uid: XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.GetPointInternal* - name: GetPointInternal - href: api/XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_ParabolaPhysicalLineDataProvider_GetPointInternal_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.GetPointInternal - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.GetPointInternal - nameWithType: ParabolaPhysicalLineDataProvider.GetPointInternal -- uid: XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.GetUpVectorInternal(System.Single) - name: GetUpVectorInternal(Single) - href: api/XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_ParabolaPhysicalLineDataProvider_GetUpVectorInternal_System_Single_ - commentId: M:XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.GetUpVectorInternal(System.Single) - fullName: XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.GetUpVectorInternal(System.Single) - nameWithType: ParabolaPhysicalLineDataProvider.GetUpVectorInternal(Single) -- uid: XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.GetUpVectorInternal* - name: GetUpVectorInternal - href: api/XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_ParabolaPhysicalLineDataProvider_GetUpVectorInternal_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.GetUpVectorInternal - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.GetUpVectorInternal - nameWithType: ParabolaPhysicalLineDataProvider.GetUpVectorInternal -- uid: XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.Gravity - name: Gravity - href: api/XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_ParabolaPhysicalLineDataProvider_Gravity - commentId: P:XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.Gravity - fullName: XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.Gravity - nameWithType: ParabolaPhysicalLineDataProvider.Gravity -- uid: XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.Gravity* - name: Gravity - href: api/XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_ParabolaPhysicalLineDataProvider_Gravity_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.Gravity - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.Gravity - nameWithType: ParabolaPhysicalLineDataProvider.Gravity -- uid: XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.PointCount - name: PointCount - href: api/XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_ParabolaPhysicalLineDataProvider_PointCount - commentId: P:XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.PointCount - fullName: XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.PointCount - nameWithType: ParabolaPhysicalLineDataProvider.PointCount -- uid: XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.PointCount* - name: PointCount - href: api/XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_ParabolaPhysicalLineDataProvider_PointCount_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.PointCount - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.PointCount - nameWithType: ParabolaPhysicalLineDataProvider.PointCount -- uid: XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.SetPointInternal(System.Int32,UnityEngine.Vector3) - name: SetPointInternal(Int32, Vector3) - href: api/XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_ParabolaPhysicalLineDataProvider_SetPointInternal_System_Int32_UnityEngine_Vector3_ - commentId: M:XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.SetPointInternal(System.Int32,UnityEngine.Vector3) - fullName: XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.SetPointInternal(System.Int32, UnityEngine.Vector3) - nameWithType: ParabolaPhysicalLineDataProvider.SetPointInternal(Int32, Vector3) -- uid: XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.SetPointInternal* - name: SetPointInternal - href: api/XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_ParabolaPhysicalLineDataProvider_SetPointInternal_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.SetPointInternal - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.SetPointInternal - nameWithType: ParabolaPhysicalLineDataProvider.SetPointInternal -- uid: XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.UseCustomGravity - name: UseCustomGravity - href: api/XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_ParabolaPhysicalLineDataProvider_UseCustomGravity - commentId: P:XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.UseCustomGravity - fullName: XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.UseCustomGravity - nameWithType: ParabolaPhysicalLineDataProvider.UseCustomGravity -- uid: XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.UseCustomGravity* - name: UseCustomGravity - href: api/XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_ParabolaPhysicalLineDataProvider_UseCustomGravity_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.UseCustomGravity - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.UseCustomGravity - nameWithType: ParabolaPhysicalLineDataProvider.UseCustomGravity -- uid: XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.Velocity - name: Velocity - href: api/XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_ParabolaPhysicalLineDataProvider_Velocity - commentId: P:XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.Velocity - fullName: XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.Velocity - nameWithType: ParabolaPhysicalLineDataProvider.Velocity -- uid: XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.Velocity* - name: Velocity - href: api/XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_ParabolaPhysicalLineDataProvider_Velocity_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.Velocity - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.ParabolaPhysicalLineDataProvider.Velocity - nameWithType: ParabolaPhysicalLineDataProvider.Velocity -- uid: XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider - name: RectangleLineDataProvider - href: api/XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.html - commentId: T:XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider - fullName: XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider - nameWithType: RectangleLineDataProvider -- uid: XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.DrawUnselectedGizmosPreview - name: DrawUnselectedGizmosPreview() - href: api/XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_RectangleLineDataProvider_DrawUnselectedGizmosPreview - commentId: M:XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.DrawUnselectedGizmosPreview - fullName: XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.DrawUnselectedGizmosPreview() - nameWithType: RectangleLineDataProvider.DrawUnselectedGizmosPreview() -- uid: XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.DrawUnselectedGizmosPreview* - name: DrawUnselectedGizmosPreview - href: api/XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_RectangleLineDataProvider_DrawUnselectedGizmosPreview_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.DrawUnselectedGizmosPreview - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.DrawUnselectedGizmosPreview - nameWithType: RectangleLineDataProvider.DrawUnselectedGizmosPreview -- uid: XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.GetPointInternal(System.Int32) - name: GetPointInternal(Int32) - href: api/XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_RectangleLineDataProvider_GetPointInternal_System_Int32_ - commentId: M:XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.GetPointInternal(System.Int32) - fullName: XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.GetPointInternal(System.Int32) - nameWithType: RectangleLineDataProvider.GetPointInternal(Int32) -- uid: XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.GetPointInternal(System.Single) - name: GetPointInternal(Single) - href: api/XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_RectangleLineDataProvider_GetPointInternal_System_Single_ - commentId: M:XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.GetPointInternal(System.Single) - fullName: XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.GetPointInternal(System.Single) - nameWithType: RectangleLineDataProvider.GetPointInternal(Single) -- uid: XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.GetPointInternal* - name: GetPointInternal - href: api/XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_RectangleLineDataProvider_GetPointInternal_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.GetPointInternal - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.GetPointInternal - nameWithType: RectangleLineDataProvider.GetPointInternal -- uid: XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.GetUnClampedWorldLengthInternal - name: GetUnClampedWorldLengthInternal() - href: api/XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_RectangleLineDataProvider_GetUnClampedWorldLengthInternal - commentId: M:XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.GetUnClampedWorldLengthInternal - fullName: XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.GetUnClampedWorldLengthInternal() - nameWithType: RectangleLineDataProvider.GetUnClampedWorldLengthInternal() -- uid: XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.GetUnClampedWorldLengthInternal* - name: GetUnClampedWorldLengthInternal - href: api/XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_RectangleLineDataProvider_GetUnClampedWorldLengthInternal_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.GetUnClampedWorldLengthInternal - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.GetUnClampedWorldLengthInternal - nameWithType: RectangleLineDataProvider.GetUnClampedWorldLengthInternal -- uid: XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.GetUpVectorInternal(System.Single) - name: GetUpVectorInternal(Single) - href: api/XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_RectangleLineDataProvider_GetUpVectorInternal_System_Single_ - commentId: M:XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.GetUpVectorInternal(System.Single) - fullName: XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.GetUpVectorInternal(System.Single) - nameWithType: RectangleLineDataProvider.GetUpVectorInternal(Single) -- uid: XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.GetUpVectorInternal* - name: GetUpVectorInternal - href: api/XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_RectangleLineDataProvider_GetUpVectorInternal_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.GetUpVectorInternal - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.GetUpVectorInternal - nameWithType: RectangleLineDataProvider.GetUpVectorInternal -- uid: XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.Height - name: Height - href: api/XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_RectangleLineDataProvider_Height - commentId: P:XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.Height - fullName: XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.Height - nameWithType: RectangleLineDataProvider.Height -- uid: XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.Height* - name: Height - href: api/XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_RectangleLineDataProvider_Height_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.Height - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.Height - nameWithType: RectangleLineDataProvider.Height -- uid: XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.Loops - name: Loops - href: api/XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_RectangleLineDataProvider_Loops - commentId: P:XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.Loops - fullName: XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.Loops - nameWithType: RectangleLineDataProvider.Loops -- uid: XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.Loops* - name: Loops - href: api/XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_RectangleLineDataProvider_Loops_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.Loops - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.Loops - nameWithType: RectangleLineDataProvider.Loops -- uid: XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.OnValidate - name: OnValidate() - href: api/XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_RectangleLineDataProvider_OnValidate - commentId: M:XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.OnValidate - fullName: XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.OnValidate() - nameWithType: RectangleLineDataProvider.OnValidate() -- uid: XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.OnValidate* - name: OnValidate - href: api/XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_RectangleLineDataProvider_OnValidate_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.OnValidate - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.OnValidate - nameWithType: RectangleLineDataProvider.OnValidate -- uid: XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.PointCount - name: PointCount - href: api/XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_RectangleLineDataProvider_PointCount - commentId: P:XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.PointCount - fullName: XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.PointCount - nameWithType: RectangleLineDataProvider.PointCount -- uid: XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.PointCount* - name: PointCount - href: api/XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_RectangleLineDataProvider_PointCount_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.PointCount - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.PointCount - nameWithType: RectangleLineDataProvider.PointCount -- uid: XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.SetPointInternal(System.Int32,UnityEngine.Vector3) - name: SetPointInternal(Int32, Vector3) - href: api/XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_RectangleLineDataProvider_SetPointInternal_System_Int32_UnityEngine_Vector3_ - commentId: M:XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.SetPointInternal(System.Int32,UnityEngine.Vector3) - fullName: XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.SetPointInternal(System.Int32, UnityEngine.Vector3) - nameWithType: RectangleLineDataProvider.SetPointInternal(Int32, Vector3) -- uid: XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.SetPointInternal* - name: SetPointInternal - href: api/XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_RectangleLineDataProvider_SetPointInternal_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.SetPointInternal - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.SetPointInternal - nameWithType: RectangleLineDataProvider.SetPointInternal -- uid: XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.Width - name: Width - href: api/XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_RectangleLineDataProvider_Width - commentId: P:XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.Width - fullName: XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.Width - nameWithType: RectangleLineDataProvider.Width -- uid: XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.Width* - name: Width - href: api/XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_RectangleLineDataProvider_Width_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.Width - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.Width - nameWithType: RectangleLineDataProvider.Width -- uid: XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.ZOffset - name: ZOffset - href: api/XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_RectangleLineDataProvider_ZOffset - commentId: P:XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.ZOffset - fullName: XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.ZOffset - nameWithType: RectangleLineDataProvider.ZOffset -- uid: XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.ZOffset* - name: ZOffset - href: api/XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_RectangleLineDataProvider_ZOffset_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.ZOffset - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.RectangleLineDataProvider.ZOffset - nameWithType: RectangleLineDataProvider.ZOffset -- uid: XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider - name: SimpleLineDataProvider - href: api/XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.html - commentId: T:XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider - fullName: XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider - nameWithType: SimpleLineDataProvider -- uid: XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.EndPoint - name: EndPoint - href: api/XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_SimpleLineDataProvider_EndPoint - commentId: P:XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.EndPoint - fullName: XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.EndPoint - nameWithType: SimpleLineDataProvider.EndPoint -- uid: XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.EndPoint* - name: EndPoint - href: api/XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_SimpleLineDataProvider_EndPoint_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.EndPoint - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.EndPoint - nameWithType: SimpleLineDataProvider.EndPoint -- uid: XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.GetPointInternal(System.Int32) - name: GetPointInternal(Int32) - href: api/XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_SimpleLineDataProvider_GetPointInternal_System_Int32_ - commentId: M:XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.GetPointInternal(System.Int32) - fullName: XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.GetPointInternal(System.Int32) - nameWithType: SimpleLineDataProvider.GetPointInternal(Int32) -- uid: XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.GetPointInternal(System.Single) - name: GetPointInternal(Single) - href: api/XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_SimpleLineDataProvider_GetPointInternal_System_Single_ - commentId: M:XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.GetPointInternal(System.Single) - fullName: XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.GetPointInternal(System.Single) - nameWithType: SimpleLineDataProvider.GetPointInternal(Single) -- uid: XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.GetPointInternal* - name: GetPointInternal - href: api/XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_SimpleLineDataProvider_GetPointInternal_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.GetPointInternal - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.GetPointInternal - nameWithType: SimpleLineDataProvider.GetPointInternal -- uid: XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.GetUnClampedWorldLengthInternal - name: GetUnClampedWorldLengthInternal() - href: api/XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_SimpleLineDataProvider_GetUnClampedWorldLengthInternal - commentId: M:XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.GetUnClampedWorldLengthInternal - fullName: XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.GetUnClampedWorldLengthInternal() - nameWithType: SimpleLineDataProvider.GetUnClampedWorldLengthInternal() -- uid: XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.GetUnClampedWorldLengthInternal* - name: GetUnClampedWorldLengthInternal - href: api/XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_SimpleLineDataProvider_GetUnClampedWorldLengthInternal_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.GetUnClampedWorldLengthInternal - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.GetUnClampedWorldLengthInternal - nameWithType: SimpleLineDataProvider.GetUnClampedWorldLengthInternal -- uid: XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.GetUpVectorInternal(System.Single) - name: GetUpVectorInternal(Single) - href: api/XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_SimpleLineDataProvider_GetUpVectorInternal_System_Single_ - commentId: M:XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.GetUpVectorInternal(System.Single) - fullName: XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.GetUpVectorInternal(System.Single) - nameWithType: SimpleLineDataProvider.GetUpVectorInternal(Single) -- uid: XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.GetUpVectorInternal* - name: GetUpVectorInternal - href: api/XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_SimpleLineDataProvider_GetUpVectorInternal_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.GetUpVectorInternal - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.GetUpVectorInternal - nameWithType: SimpleLineDataProvider.GetUpVectorInternal -- uid: XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.OnValidate - name: OnValidate() - href: api/XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_SimpleLineDataProvider_OnValidate - commentId: M:XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.OnValidate - fullName: XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.OnValidate() - nameWithType: SimpleLineDataProvider.OnValidate() -- uid: XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.OnValidate* - name: OnValidate - href: api/XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_SimpleLineDataProvider_OnValidate_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.OnValidate - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.OnValidate - nameWithType: SimpleLineDataProvider.OnValidate -- uid: XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.PointCount - name: PointCount - href: api/XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_SimpleLineDataProvider_PointCount - commentId: P:XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.PointCount - fullName: XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.PointCount - nameWithType: SimpleLineDataProvider.PointCount -- uid: XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.PointCount* - name: PointCount - href: api/XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_SimpleLineDataProvider_PointCount_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.PointCount - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.PointCount - nameWithType: SimpleLineDataProvider.PointCount -- uid: XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.SetPointInternal(System.Int32,UnityEngine.Vector3) - name: SetPointInternal(Int32, Vector3) - href: api/XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_SimpleLineDataProvider_SetPointInternal_System_Int32_UnityEngine_Vector3_ - commentId: M:XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.SetPointInternal(System.Int32,UnityEngine.Vector3) - fullName: XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.SetPointInternal(System.Int32, UnityEngine.Vector3) - nameWithType: SimpleLineDataProvider.SetPointInternal(Int32, Vector3) -- uid: XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.SetPointInternal* - name: SetPointInternal - href: api/XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_SimpleLineDataProvider_SetPointInternal_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.SetPointInternal - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.SetPointInternal - nameWithType: SimpleLineDataProvider.SetPointInternal -- uid: XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.StartPoint - name: StartPoint - href: api/XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_SimpleLineDataProvider_StartPoint - commentId: P:XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.StartPoint - fullName: XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.StartPoint - nameWithType: SimpleLineDataProvider.StartPoint -- uid: XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.StartPoint* - name: StartPoint - href: api/XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.html#XRTK_Utilities_Lines_DataProviders_SimpleLineDataProvider_StartPoint_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.StartPoint - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.SimpleLineDataProvider.StartPoint - nameWithType: SimpleLineDataProvider.StartPoint -- uid: XRTK.Utilities.Lines.DataProviders.SplineDataProvider - name: SplineDataProvider - href: api/XRTK.Utilities.Lines.DataProviders.SplineDataProvider.html - commentId: T:XRTK.Utilities.Lines.DataProviders.SplineDataProvider - fullName: XRTK.Utilities.Lines.DataProviders.SplineDataProvider - nameWithType: SplineDataProvider -- uid: XRTK.Utilities.Lines.DataProviders.SplineDataProvider.AlignAllControlPoints - name: AlignAllControlPoints - href: api/XRTK.Utilities.Lines.DataProviders.SplineDataProvider.html#XRTK_Utilities_Lines_DataProviders_SplineDataProvider_AlignAllControlPoints - commentId: P:XRTK.Utilities.Lines.DataProviders.SplineDataProvider.AlignAllControlPoints - fullName: XRTK.Utilities.Lines.DataProviders.SplineDataProvider.AlignAllControlPoints - nameWithType: SplineDataProvider.AlignAllControlPoints -- uid: XRTK.Utilities.Lines.DataProviders.SplineDataProvider.AlignAllControlPoints* - name: AlignAllControlPoints - href: api/XRTK.Utilities.Lines.DataProviders.SplineDataProvider.html#XRTK_Utilities_Lines_DataProviders_SplineDataProvider_AlignAllControlPoints_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.SplineDataProvider.AlignAllControlPoints - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.SplineDataProvider.AlignAllControlPoints - nameWithType: SplineDataProvider.AlignAllControlPoints -- uid: XRTK.Utilities.Lines.DataProviders.SplineDataProvider.ControlPoints - name: ControlPoints - href: api/XRTK.Utilities.Lines.DataProviders.SplineDataProvider.html#XRTK_Utilities_Lines_DataProviders_SplineDataProvider_ControlPoints - commentId: P:XRTK.Utilities.Lines.DataProviders.SplineDataProvider.ControlPoints - fullName: XRTK.Utilities.Lines.DataProviders.SplineDataProvider.ControlPoints - nameWithType: SplineDataProvider.ControlPoints -- uid: XRTK.Utilities.Lines.DataProviders.SplineDataProvider.ControlPoints* - name: ControlPoints - href: api/XRTK.Utilities.Lines.DataProviders.SplineDataProvider.html#XRTK_Utilities_Lines_DataProviders_SplineDataProvider_ControlPoints_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.SplineDataProvider.ControlPoints - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.SplineDataProvider.ControlPoints - nameWithType: SplineDataProvider.ControlPoints -- uid: XRTK.Utilities.Lines.DataProviders.SplineDataProvider.ForceUpdateAlignment - name: ForceUpdateAlignment() - href: api/XRTK.Utilities.Lines.DataProviders.SplineDataProvider.html#XRTK_Utilities_Lines_DataProviders_SplineDataProvider_ForceUpdateAlignment - commentId: M:XRTK.Utilities.Lines.DataProviders.SplineDataProvider.ForceUpdateAlignment - fullName: XRTK.Utilities.Lines.DataProviders.SplineDataProvider.ForceUpdateAlignment() - nameWithType: SplineDataProvider.ForceUpdateAlignment() -- uid: XRTK.Utilities.Lines.DataProviders.SplineDataProvider.ForceUpdateAlignment* - name: ForceUpdateAlignment - href: api/XRTK.Utilities.Lines.DataProviders.SplineDataProvider.html#XRTK_Utilities_Lines_DataProviders_SplineDataProvider_ForceUpdateAlignment_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.SplineDataProvider.ForceUpdateAlignment - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.SplineDataProvider.ForceUpdateAlignment - nameWithType: SplineDataProvider.ForceUpdateAlignment -- uid: XRTK.Utilities.Lines.DataProviders.SplineDataProvider.GetPointInternal(System.Int32) - name: GetPointInternal(Int32) - href: api/XRTK.Utilities.Lines.DataProviders.SplineDataProvider.html#XRTK_Utilities_Lines_DataProviders_SplineDataProvider_GetPointInternal_System_Int32_ - commentId: M:XRTK.Utilities.Lines.DataProviders.SplineDataProvider.GetPointInternal(System.Int32) - fullName: XRTK.Utilities.Lines.DataProviders.SplineDataProvider.GetPointInternal(System.Int32) - nameWithType: SplineDataProvider.GetPointInternal(Int32) -- uid: XRTK.Utilities.Lines.DataProviders.SplineDataProvider.GetPointInternal(System.Single) - name: GetPointInternal(Single) - href: api/XRTK.Utilities.Lines.DataProviders.SplineDataProvider.html#XRTK_Utilities_Lines_DataProviders_SplineDataProvider_GetPointInternal_System_Single_ - commentId: M:XRTK.Utilities.Lines.DataProviders.SplineDataProvider.GetPointInternal(System.Single) - fullName: XRTK.Utilities.Lines.DataProviders.SplineDataProvider.GetPointInternal(System.Single) - nameWithType: SplineDataProvider.GetPointInternal(Single) -- uid: XRTK.Utilities.Lines.DataProviders.SplineDataProvider.GetPointInternal* - name: GetPointInternal - href: api/XRTK.Utilities.Lines.DataProviders.SplineDataProvider.html#XRTK_Utilities_Lines_DataProviders_SplineDataProvider_GetPointInternal_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.SplineDataProvider.GetPointInternal - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.SplineDataProvider.GetPointInternal - nameWithType: SplineDataProvider.GetPointInternal -- uid: XRTK.Utilities.Lines.DataProviders.SplineDataProvider.GetUnClampedWorldLengthInternal - name: GetUnClampedWorldLengthInternal() - href: api/XRTK.Utilities.Lines.DataProviders.SplineDataProvider.html#XRTK_Utilities_Lines_DataProviders_SplineDataProvider_GetUnClampedWorldLengthInternal - commentId: M:XRTK.Utilities.Lines.DataProviders.SplineDataProvider.GetUnClampedWorldLengthInternal - fullName: XRTK.Utilities.Lines.DataProviders.SplineDataProvider.GetUnClampedWorldLengthInternal() - nameWithType: SplineDataProvider.GetUnClampedWorldLengthInternal() -- uid: XRTK.Utilities.Lines.DataProviders.SplineDataProvider.GetUnClampedWorldLengthInternal* - name: GetUnClampedWorldLengthInternal - href: api/XRTK.Utilities.Lines.DataProviders.SplineDataProvider.html#XRTK_Utilities_Lines_DataProviders_SplineDataProvider_GetUnClampedWorldLengthInternal_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.SplineDataProvider.GetUnClampedWorldLengthInternal - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.SplineDataProvider.GetUnClampedWorldLengthInternal - nameWithType: SplineDataProvider.GetUnClampedWorldLengthInternal -- uid: XRTK.Utilities.Lines.DataProviders.SplineDataProvider.GetUpVectorInternal(System.Single) - name: GetUpVectorInternal(Single) - href: api/XRTK.Utilities.Lines.DataProviders.SplineDataProvider.html#XRTK_Utilities_Lines_DataProviders_SplineDataProvider_GetUpVectorInternal_System_Single_ - commentId: M:XRTK.Utilities.Lines.DataProviders.SplineDataProvider.GetUpVectorInternal(System.Single) - fullName: XRTK.Utilities.Lines.DataProviders.SplineDataProvider.GetUpVectorInternal(System.Single) - nameWithType: SplineDataProvider.GetUpVectorInternal(Single) -- uid: XRTK.Utilities.Lines.DataProviders.SplineDataProvider.GetUpVectorInternal* - name: GetUpVectorInternal - href: api/XRTK.Utilities.Lines.DataProviders.SplineDataProvider.html#XRTK_Utilities_Lines_DataProviders_SplineDataProvider_GetUpVectorInternal_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.SplineDataProvider.GetUpVectorInternal - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.SplineDataProvider.GetUpVectorInternal - nameWithType: SplineDataProvider.GetUpVectorInternal -- uid: XRTK.Utilities.Lines.DataProviders.SplineDataProvider.PointCount - name: PointCount - href: api/XRTK.Utilities.Lines.DataProviders.SplineDataProvider.html#XRTK_Utilities_Lines_DataProviders_SplineDataProvider_PointCount - commentId: P:XRTK.Utilities.Lines.DataProviders.SplineDataProvider.PointCount - fullName: XRTK.Utilities.Lines.DataProviders.SplineDataProvider.PointCount - nameWithType: SplineDataProvider.PointCount -- uid: XRTK.Utilities.Lines.DataProviders.SplineDataProvider.PointCount* - name: PointCount - href: api/XRTK.Utilities.Lines.DataProviders.SplineDataProvider.html#XRTK_Utilities_Lines_DataProviders_SplineDataProvider_PointCount_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.SplineDataProvider.PointCount - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.SplineDataProvider.PointCount - nameWithType: SplineDataProvider.PointCount -- uid: XRTK.Utilities.Lines.DataProviders.SplineDataProvider.SetPointInternal(System.Int32,UnityEngine.Vector3) - name: SetPointInternal(Int32, Vector3) - href: api/XRTK.Utilities.Lines.DataProviders.SplineDataProvider.html#XRTK_Utilities_Lines_DataProviders_SplineDataProvider_SetPointInternal_System_Int32_UnityEngine_Vector3_ - commentId: M:XRTK.Utilities.Lines.DataProviders.SplineDataProvider.SetPointInternal(System.Int32,UnityEngine.Vector3) - fullName: XRTK.Utilities.Lines.DataProviders.SplineDataProvider.SetPointInternal(System.Int32, UnityEngine.Vector3) - nameWithType: SplineDataProvider.SetPointInternal(Int32, Vector3) -- uid: XRTK.Utilities.Lines.DataProviders.SplineDataProvider.SetPointInternal* - name: SetPointInternal - href: api/XRTK.Utilities.Lines.DataProviders.SplineDataProvider.html#XRTK_Utilities_Lines_DataProviders_SplineDataProvider_SetPointInternal_ - commentId: Overload:XRTK.Utilities.Lines.DataProviders.SplineDataProvider.SetPointInternal - isSpec: "True" - fullName: XRTK.Utilities.Lines.DataProviders.SplineDataProvider.SetPointInternal - nameWithType: SplineDataProvider.SetPointInternal -- uid: XRTK.Utilities.Lines.LineFollower - name: LineFollower - href: api/XRTK.Utilities.Lines.LineFollower.html - commentId: T:XRTK.Utilities.Lines.LineFollower - fullName: XRTK.Utilities.Lines.LineFollower - nameWithType: LineFollower -- uid: XRTK.Utilities.Lines.LineFollower.Follower - name: Follower - href: api/XRTK.Utilities.Lines.LineFollower.html#XRTK_Utilities_Lines_LineFollower_Follower - commentId: P:XRTK.Utilities.Lines.LineFollower.Follower - fullName: XRTK.Utilities.Lines.LineFollower.Follower - nameWithType: LineFollower.Follower -- uid: XRTK.Utilities.Lines.LineFollower.Follower* - name: Follower - href: api/XRTK.Utilities.Lines.LineFollower.html#XRTK_Utilities_Lines_LineFollower_Follower_ - commentId: Overload:XRTK.Utilities.Lines.LineFollower.Follower - isSpec: "True" - fullName: XRTK.Utilities.Lines.LineFollower.Follower - nameWithType: LineFollower.Follower -- uid: XRTK.Utilities.Lines.LineFollower.NormalizedLength - name: NormalizedLength - href: api/XRTK.Utilities.Lines.LineFollower.html#XRTK_Utilities_Lines_LineFollower_NormalizedLength - commentId: P:XRTK.Utilities.Lines.LineFollower.NormalizedLength - fullName: XRTK.Utilities.Lines.LineFollower.NormalizedLength - nameWithType: LineFollower.NormalizedLength -- uid: XRTK.Utilities.Lines.LineFollower.NormalizedLength* - name: NormalizedLength - href: api/XRTK.Utilities.Lines.LineFollower.html#XRTK_Utilities_Lines_LineFollower_NormalizedLength_ - commentId: Overload:XRTK.Utilities.Lines.LineFollower.NormalizedLength - isSpec: "True" - fullName: XRTK.Utilities.Lines.LineFollower.NormalizedLength - nameWithType: LineFollower.NormalizedLength -- uid: XRTK.Utilities.Lines.LineUtility - name: LineUtility - href: api/XRTK.Utilities.Lines.LineUtility.html - commentId: T:XRTK.Utilities.Lines.LineUtility - fullName: XRTK.Utilities.Lines.LineUtility - nameWithType: LineUtility -- uid: XRTK.Utilities.Lines.LineUtility.GetEllipsePoint(UnityEngine.Vector2,System.Single) - name: GetEllipsePoint(Vector2, Single) - href: api/XRTK.Utilities.Lines.LineUtility.html#XRTK_Utilities_Lines_LineUtility_GetEllipsePoint_UnityEngine_Vector2_System_Single_ - commentId: M:XRTK.Utilities.Lines.LineUtility.GetEllipsePoint(UnityEngine.Vector2,System.Single) - fullName: XRTK.Utilities.Lines.LineUtility.GetEllipsePoint(UnityEngine.Vector2, System.Single) - nameWithType: LineUtility.GetEllipsePoint(Vector2, Single) -- uid: XRTK.Utilities.Lines.LineUtility.GetEllipsePoint* - name: GetEllipsePoint - href: api/XRTK.Utilities.Lines.LineUtility.html#XRTK_Utilities_Lines_LineUtility_GetEllipsePoint_ - commentId: Overload:XRTK.Utilities.Lines.LineUtility.GetEllipsePoint - isSpec: "True" - fullName: XRTK.Utilities.Lines.LineUtility.GetEllipsePoint - nameWithType: LineUtility.GetEllipsePoint -- uid: XRTK.Utilities.Lines.LineUtility.GetPointAlongConstrainedParabola(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Vector3,System.Single,System.Single) - name: GetPointAlongConstrainedParabola(Vector3, Vector3, Vector3, Single, Single) - href: api/XRTK.Utilities.Lines.LineUtility.html#XRTK_Utilities_Lines_LineUtility_GetPointAlongConstrainedParabola_UnityEngine_Vector3_UnityEngine_Vector3_UnityEngine_Vector3_System_Single_System_Single_ - commentId: M:XRTK.Utilities.Lines.LineUtility.GetPointAlongConstrainedParabola(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Vector3,System.Single,System.Single) - fullName: XRTK.Utilities.Lines.LineUtility.GetPointAlongConstrainedParabola(UnityEngine.Vector3, UnityEngine.Vector3, UnityEngine.Vector3, System.Single, System.Single) - nameWithType: LineUtility.GetPointAlongConstrainedParabola(Vector3, Vector3, Vector3, Single, Single) -- uid: XRTK.Utilities.Lines.LineUtility.GetPointAlongConstrainedParabola* - name: GetPointAlongConstrainedParabola - href: api/XRTK.Utilities.Lines.LineUtility.html#XRTK_Utilities_Lines_LineUtility_GetPointAlongConstrainedParabola_ - commentId: Overload:XRTK.Utilities.Lines.LineUtility.GetPointAlongConstrainedParabola - isSpec: "True" - fullName: XRTK.Utilities.Lines.LineUtility.GetPointAlongConstrainedParabola - nameWithType: LineUtility.GetPointAlongConstrainedParabola -- uid: XRTK.Utilities.Lines.LineUtility.GetPointAlongPhysicalParabola(UnityEngine.Vector3,UnityEngine.Vector3,System.Single,UnityEngine.Vector3,System.Single) - name: GetPointAlongPhysicalParabola(Vector3, Vector3, Single, Vector3, Single) - href: api/XRTK.Utilities.Lines.LineUtility.html#XRTK_Utilities_Lines_LineUtility_GetPointAlongPhysicalParabola_UnityEngine_Vector3_UnityEngine_Vector3_System_Single_UnityEngine_Vector3_System_Single_ - commentId: M:XRTK.Utilities.Lines.LineUtility.GetPointAlongPhysicalParabola(UnityEngine.Vector3,UnityEngine.Vector3,System.Single,UnityEngine.Vector3,System.Single) - fullName: XRTK.Utilities.Lines.LineUtility.GetPointAlongPhysicalParabola(UnityEngine.Vector3, UnityEngine.Vector3, System.Single, UnityEngine.Vector3, System.Single) - nameWithType: LineUtility.GetPointAlongPhysicalParabola(Vector3, Vector3, Single, Vector3, Single) -- uid: XRTK.Utilities.Lines.LineUtility.GetPointAlongPhysicalParabola* - name: GetPointAlongPhysicalParabola - href: api/XRTK.Utilities.Lines.LineUtility.html#XRTK_Utilities_Lines_LineUtility_GetPointAlongPhysicalParabola_ - commentId: Overload:XRTK.Utilities.Lines.LineUtility.GetPointAlongPhysicalParabola - isSpec: "True" - fullName: XRTK.Utilities.Lines.LineUtility.GetPointAlongPhysicalParabola - nameWithType: LineUtility.GetPointAlongPhysicalParabola -- uid: XRTK.Utilities.Lines.LineUtility.GetPointAlongSpline(XRTK.Definitions.Utilities.MixedRealityPose[],System.Single,XRTK.Definitions.Lines.InterpolationType) - name: GetPointAlongSpline(MixedRealityPose[], Single, InterpolationType) - href: api/XRTK.Utilities.Lines.LineUtility.html#XRTK_Utilities_Lines_LineUtility_GetPointAlongSpline_XRTK_Definitions_Utilities_MixedRealityPose___System_Single_XRTK_Definitions_Lines_InterpolationType_ - commentId: M:XRTK.Utilities.Lines.LineUtility.GetPointAlongSpline(XRTK.Definitions.Utilities.MixedRealityPose[],System.Single,XRTK.Definitions.Lines.InterpolationType) - name.vb: GetPointAlongSpline(MixedRealityPose(), Single, InterpolationType) - fullName: XRTK.Utilities.Lines.LineUtility.GetPointAlongSpline(XRTK.Definitions.Utilities.MixedRealityPose[], System.Single, XRTK.Definitions.Lines.InterpolationType) - fullName.vb: XRTK.Utilities.Lines.LineUtility.GetPointAlongSpline(XRTK.Definitions.Utilities.MixedRealityPose(), System.Single, XRTK.Definitions.Lines.InterpolationType) - nameWithType: LineUtility.GetPointAlongSpline(MixedRealityPose[], Single, InterpolationType) - nameWithType.vb: LineUtility.GetPointAlongSpline(MixedRealityPose(), Single, InterpolationType) -- uid: XRTK.Utilities.Lines.LineUtility.GetPointAlongSpline* - name: GetPointAlongSpline - href: api/XRTK.Utilities.Lines.LineUtility.html#XRTK_Utilities_Lines_LineUtility_GetPointAlongSpline_ - commentId: Overload:XRTK.Utilities.Lines.LineUtility.GetPointAlongSpline - isSpec: "True" - fullName: XRTK.Utilities.Lines.LineUtility.GetPointAlongSpline - nameWithType: LineUtility.GetPointAlongSpline -- uid: XRTK.Utilities.Lines.LineUtility.GetVectorCollectionBlend(UnityEngine.Vector3[],System.Single,System.Boolean) - name: GetVectorCollectionBlend(Vector3[], Single, Boolean) - href: api/XRTK.Utilities.Lines.LineUtility.html#XRTK_Utilities_Lines_LineUtility_GetVectorCollectionBlend_UnityEngine_Vector3___System_Single_System_Boolean_ - commentId: M:XRTK.Utilities.Lines.LineUtility.GetVectorCollectionBlend(UnityEngine.Vector3[],System.Single,System.Boolean) - name.vb: GetVectorCollectionBlend(Vector3(), Single, Boolean) - fullName: XRTK.Utilities.Lines.LineUtility.GetVectorCollectionBlend(UnityEngine.Vector3[], System.Single, System.Boolean) - fullName.vb: XRTK.Utilities.Lines.LineUtility.GetVectorCollectionBlend(UnityEngine.Vector3(), System.Single, System.Boolean) - nameWithType: LineUtility.GetVectorCollectionBlend(Vector3[], Single, Boolean) - nameWithType.vb: LineUtility.GetVectorCollectionBlend(Vector3(), Single, Boolean) -- uid: XRTK.Utilities.Lines.LineUtility.GetVectorCollectionBlend* - name: GetVectorCollectionBlend - href: api/XRTK.Utilities.Lines.LineUtility.html#XRTK_Utilities_Lines_LineUtility_GetVectorCollectionBlend_ - commentId: Overload:XRTK.Utilities.Lines.LineUtility.GetVectorCollectionBlend - isSpec: "True" - fullName: XRTK.Utilities.Lines.LineUtility.GetVectorCollectionBlend - nameWithType: LineUtility.GetVectorCollectionBlend -- uid: XRTK.Utilities.Lines.LineUtility.InterpolateBezierPoints(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Vector3,System.Single) - name: InterpolateBezierPoints(Vector3, Vector3, Vector3, Vector3, Single) - href: api/XRTK.Utilities.Lines.LineUtility.html#XRTK_Utilities_Lines_LineUtility_InterpolateBezierPoints_UnityEngine_Vector3_UnityEngine_Vector3_UnityEngine_Vector3_UnityEngine_Vector3_System_Single_ - commentId: M:XRTK.Utilities.Lines.LineUtility.InterpolateBezierPoints(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Vector3,System.Single) - fullName: XRTK.Utilities.Lines.LineUtility.InterpolateBezierPoints(UnityEngine.Vector3, UnityEngine.Vector3, UnityEngine.Vector3, UnityEngine.Vector3, System.Single) - nameWithType: LineUtility.InterpolateBezierPoints(Vector3, Vector3, Vector3, Vector3, Single) -- uid: XRTK.Utilities.Lines.LineUtility.InterpolateBezierPoints* - name: InterpolateBezierPoints - href: api/XRTK.Utilities.Lines.LineUtility.html#XRTK_Utilities_Lines_LineUtility_InterpolateBezierPoints_ - commentId: Overload:XRTK.Utilities.Lines.LineUtility.InterpolateBezierPoints - isSpec: "True" - fullName: XRTK.Utilities.Lines.LineUtility.InterpolateBezierPoints - nameWithType: LineUtility.InterpolateBezierPoints -- uid: XRTK.Utilities.Lines.LineUtility.InterpolateCatmullRomPoints(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Vector3,System.Single) - name: InterpolateCatmullRomPoints(Vector3, Vector3, Vector3, Vector3, Single) - href: api/XRTK.Utilities.Lines.LineUtility.html#XRTK_Utilities_Lines_LineUtility_InterpolateCatmullRomPoints_UnityEngine_Vector3_UnityEngine_Vector3_UnityEngine_Vector3_UnityEngine_Vector3_System_Single_ - commentId: M:XRTK.Utilities.Lines.LineUtility.InterpolateCatmullRomPoints(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Vector3,System.Single) - fullName: XRTK.Utilities.Lines.LineUtility.InterpolateCatmullRomPoints(UnityEngine.Vector3, UnityEngine.Vector3, UnityEngine.Vector3, UnityEngine.Vector3, System.Single) - nameWithType: LineUtility.InterpolateCatmullRomPoints(Vector3, Vector3, Vector3, Vector3, Single) -- uid: XRTK.Utilities.Lines.LineUtility.InterpolateCatmullRomPoints* - name: InterpolateCatmullRomPoints - href: api/XRTK.Utilities.Lines.LineUtility.html#XRTK_Utilities_Lines_LineUtility_InterpolateCatmullRomPoints_ - commentId: Overload:XRTK.Utilities.Lines.LineUtility.InterpolateCatmullRomPoints - isSpec: "True" - fullName: XRTK.Utilities.Lines.LineUtility.InterpolateCatmullRomPoints - nameWithType: LineUtility.InterpolateCatmullRomPoints -- uid: XRTK.Utilities.Lines.LineUtility.InterpolateHermitePoints(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Vector3,System.Single) - name: InterpolateHermitePoints(Vector3, Vector3, Vector3, Vector3, Single) - href: api/XRTK.Utilities.Lines.LineUtility.html#XRTK_Utilities_Lines_LineUtility_InterpolateHermitePoints_UnityEngine_Vector3_UnityEngine_Vector3_UnityEngine_Vector3_UnityEngine_Vector3_System_Single_ - commentId: M:XRTK.Utilities.Lines.LineUtility.InterpolateHermitePoints(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Vector3,System.Single) - fullName: XRTK.Utilities.Lines.LineUtility.InterpolateHermitePoints(UnityEngine.Vector3, UnityEngine.Vector3, UnityEngine.Vector3, UnityEngine.Vector3, System.Single) - nameWithType: LineUtility.InterpolateHermitePoints(Vector3, Vector3, Vector3, Vector3, Single) -- uid: XRTK.Utilities.Lines.LineUtility.InterpolateHermitePoints* - name: InterpolateHermitePoints - href: api/XRTK.Utilities.Lines.LineUtility.html#XRTK_Utilities_Lines_LineUtility_InterpolateHermitePoints_ - commentId: Overload:XRTK.Utilities.Lines.LineUtility.InterpolateHermitePoints - isSpec: "True" - fullName: XRTK.Utilities.Lines.LineUtility.InterpolateHermitePoints - nameWithType: LineUtility.InterpolateHermitePoints -- uid: XRTK.Utilities.Lines.LineUtility.InterpolateVectorArray(UnityEngine.Vector3[],System.Single) - name: InterpolateVectorArray(Vector3[], Single) - href: api/XRTK.Utilities.Lines.LineUtility.html#XRTK_Utilities_Lines_LineUtility_InterpolateVectorArray_UnityEngine_Vector3___System_Single_ - commentId: M:XRTK.Utilities.Lines.LineUtility.InterpolateVectorArray(UnityEngine.Vector3[],System.Single) - name.vb: InterpolateVectorArray(Vector3(), Single) - fullName: XRTK.Utilities.Lines.LineUtility.InterpolateVectorArray(UnityEngine.Vector3[], System.Single) - fullName.vb: XRTK.Utilities.Lines.LineUtility.InterpolateVectorArray(UnityEngine.Vector3(), System.Single) - nameWithType: LineUtility.InterpolateVectorArray(Vector3[], Single) - nameWithType.vb: LineUtility.InterpolateVectorArray(Vector3(), Single) -- uid: XRTK.Utilities.Lines.LineUtility.InterpolateVectorArray* - name: InterpolateVectorArray - href: api/XRTK.Utilities.Lines.LineUtility.html#XRTK_Utilities_Lines_LineUtility_InterpolateVectorArray_ - commentId: Overload:XRTK.Utilities.Lines.LineUtility.InterpolateVectorArray - isSpec: "True" - fullName: XRTK.Utilities.Lines.LineUtility.InterpolateVectorArray - nameWithType: LineUtility.InterpolateVectorArray -- uid: XRTK.Utilities.Lines.LineUtility.Invert(UnityEngine.Color) - name: Invert(Color) - href: api/XRTK.Utilities.Lines.LineUtility.html#XRTK_Utilities_Lines_LineUtility_Invert_UnityEngine_Color_ - commentId: M:XRTK.Utilities.Lines.LineUtility.Invert(UnityEngine.Color) - fullName: XRTK.Utilities.Lines.LineUtility.Invert(UnityEngine.Color) - nameWithType: LineUtility.Invert(Color) -- uid: XRTK.Utilities.Lines.LineUtility.Invert* - name: Invert - href: api/XRTK.Utilities.Lines.LineUtility.html#XRTK_Utilities_Lines_LineUtility_Invert_ - commentId: Overload:XRTK.Utilities.Lines.LineUtility.Invert - isSpec: "True" - fullName: XRTK.Utilities.Lines.LineUtility.Invert - nameWithType: LineUtility.Invert -- uid: XRTK.Utilities.Lines.Renderers - name: XRTK.Utilities.Lines.Renderers - href: api/XRTK.Utilities.Lines.Renderers.html - commentId: N:XRTK.Utilities.Lines.Renderers - fullName: XRTK.Utilities.Lines.Renderers - nameWithType: XRTK.Utilities.Lines.Renderers -- uid: XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer - name: BaseMixedRealityLineRenderer - href: api/XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.html - commentId: T:XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer - fullName: XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer - nameWithType: BaseMixedRealityLineRenderer -- uid: XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.ColorOffset - name: ColorOffset - href: api/XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.html#XRTK_Utilities_Lines_Renderers_BaseMixedRealityLineRenderer_ColorOffset - commentId: P:XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.ColorOffset - fullName: XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.ColorOffset - nameWithType: BaseMixedRealityLineRenderer.ColorOffset -- uid: XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.ColorOffset* - name: ColorOffset - href: api/XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.html#XRTK_Utilities_Lines_Renderers_BaseMixedRealityLineRenderer_ColorOffset_ - commentId: Overload:XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.ColorOffset - isSpec: "True" - fullName: XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.ColorOffset - nameWithType: BaseMixedRealityLineRenderer.ColorOffset -- uid: XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.GetColor(System.Single) - name: GetColor(Single) - href: api/XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.html#XRTK_Utilities_Lines_Renderers_BaseMixedRealityLineRenderer_GetColor_System_Single_ - commentId: M:XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.GetColor(System.Single) - fullName: XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.GetColor(System.Single) - nameWithType: BaseMixedRealityLineRenderer.GetColor(Single) -- uid: XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.GetColor* - name: GetColor - href: api/XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.html#XRTK_Utilities_Lines_Renderers_BaseMixedRealityLineRenderer_GetColor_ - commentId: Overload:XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.GetColor - isSpec: "True" - fullName: XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.GetColor - nameWithType: BaseMixedRealityLineRenderer.GetColor -- uid: XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.GetNormalizedPointAlongLine(System.Int32) - name: GetNormalizedPointAlongLine(Int32) - href: api/XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.html#XRTK_Utilities_Lines_Renderers_BaseMixedRealityLineRenderer_GetNormalizedPointAlongLine_System_Int32_ - commentId: M:XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.GetNormalizedPointAlongLine(System.Int32) - fullName: XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.GetNormalizedPointAlongLine(System.Int32) - nameWithType: BaseMixedRealityLineRenderer.GetNormalizedPointAlongLine(Int32) -- uid: XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.GetNormalizedPointAlongLine* - name: GetNormalizedPointAlongLine - href: api/XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.html#XRTK_Utilities_Lines_Renderers_BaseMixedRealityLineRenderer_GetNormalizedPointAlongLine_ - commentId: Overload:XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.GetNormalizedPointAlongLine - isSpec: "True" - fullName: XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.GetNormalizedPointAlongLine - nameWithType: BaseMixedRealityLineRenderer.GetNormalizedPointAlongLine -- uid: XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.GetWidth(System.Single) - name: GetWidth(Single) - href: api/XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.html#XRTK_Utilities_Lines_Renderers_BaseMixedRealityLineRenderer_GetWidth_System_Single_ - commentId: M:XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.GetWidth(System.Single) - fullName: XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.GetWidth(System.Single) - nameWithType: BaseMixedRealityLineRenderer.GetWidth(Single) -- uid: XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.GetWidth* - name: GetWidth - href: api/XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.html#XRTK_Utilities_Lines_Renderers_BaseMixedRealityLineRenderer_GetWidth_ - commentId: Overload:XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.GetWidth - isSpec: "True" - fullName: XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.GetWidth - nameWithType: BaseMixedRealityLineRenderer.GetWidth -- uid: XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.LineColor - name: LineColor - href: api/XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.html#XRTK_Utilities_Lines_Renderers_BaseMixedRealityLineRenderer_LineColor - commentId: P:XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.LineColor - fullName: XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.LineColor - nameWithType: BaseMixedRealityLineRenderer.LineColor -- uid: XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.LineColor* - name: LineColor - href: api/XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.html#XRTK_Utilities_Lines_Renderers_BaseMixedRealityLineRenderer_LineColor_ - commentId: Overload:XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.LineColor - isSpec: "True" - fullName: XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.LineColor - nameWithType: BaseMixedRealityLineRenderer.LineColor -- uid: XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.LineDataSource - name: LineDataSource - href: api/XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.html#XRTK_Utilities_Lines_Renderers_BaseMixedRealityLineRenderer_LineDataSource - commentId: P:XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.LineDataSource - fullName: XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.LineDataSource - nameWithType: BaseMixedRealityLineRenderer.LineDataSource -- uid: XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.LineDataSource* - name: LineDataSource - href: api/XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.html#XRTK_Utilities_Lines_Renderers_BaseMixedRealityLineRenderer_LineDataSource_ - commentId: Overload:XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.LineDataSource - isSpec: "True" - fullName: XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.LineDataSource - nameWithType: BaseMixedRealityLineRenderer.LineDataSource -- uid: XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.LineStepCount - name: LineStepCount - href: api/XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.html#XRTK_Utilities_Lines_Renderers_BaseMixedRealityLineRenderer_LineStepCount - commentId: P:XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.LineStepCount - fullName: XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.LineStepCount - nameWithType: BaseMixedRealityLineRenderer.LineStepCount -- uid: XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.LineStepCount* - name: LineStepCount - href: api/XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.html#XRTK_Utilities_Lines_Renderers_BaseMixedRealityLineRenderer_LineStepCount_ - commentId: Overload:XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.LineStepCount - isSpec: "True" - fullName: XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.LineStepCount - nameWithType: BaseMixedRealityLineRenderer.LineStepCount -- uid: XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.LineWidth - name: LineWidth - href: api/XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.html#XRTK_Utilities_Lines_Renderers_BaseMixedRealityLineRenderer_LineWidth - commentId: P:XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.LineWidth - fullName: XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.LineWidth - nameWithType: BaseMixedRealityLineRenderer.LineWidth -- uid: XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.LineWidth* - name: LineWidth - href: api/XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.html#XRTK_Utilities_Lines_Renderers_BaseMixedRealityLineRenderer_LineWidth_ - commentId: Overload:XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.LineWidth - isSpec: "True" - fullName: XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.LineWidth - nameWithType: BaseMixedRealityLineRenderer.LineWidth -- uid: XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.PointDistributionMode - name: PointDistributionMode - href: api/XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.html#XRTK_Utilities_Lines_Renderers_BaseMixedRealityLineRenderer_PointDistributionMode - commentId: P:XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.PointDistributionMode - fullName: XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.PointDistributionMode - nameWithType: BaseMixedRealityLineRenderer.PointDistributionMode -- uid: XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.PointDistributionMode* - name: PointDistributionMode - href: api/XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.html#XRTK_Utilities_Lines_Renderers_BaseMixedRealityLineRenderer_PointDistributionMode_ - commentId: Overload:XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.PointDistributionMode - isSpec: "True" - fullName: XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.PointDistributionMode - nameWithType: BaseMixedRealityLineRenderer.PointDistributionMode -- uid: XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.StepMode - name: StepMode - href: api/XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.html#XRTK_Utilities_Lines_Renderers_BaseMixedRealityLineRenderer_StepMode - commentId: P:XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.StepMode - fullName: XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.StepMode - nameWithType: BaseMixedRealityLineRenderer.StepMode -- uid: XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.StepMode* - name: StepMode - href: api/XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.html#XRTK_Utilities_Lines_Renderers_BaseMixedRealityLineRenderer_StepMode_ - commentId: Overload:XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.StepMode - isSpec: "True" - fullName: XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.StepMode - nameWithType: BaseMixedRealityLineRenderer.StepMode -- uid: XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.UpdateLine - name: UpdateLine() - href: api/XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.html#XRTK_Utilities_Lines_Renderers_BaseMixedRealityLineRenderer_UpdateLine - commentId: M:XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.UpdateLine - fullName: XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.UpdateLine() - nameWithType: BaseMixedRealityLineRenderer.UpdateLine() -- uid: XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.UpdateLine* - name: UpdateLine - href: api/XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.html#XRTK_Utilities_Lines_Renderers_BaseMixedRealityLineRenderer_UpdateLine_ - commentId: Overload:XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.UpdateLine - isSpec: "True" - fullName: XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.UpdateLine - nameWithType: BaseMixedRealityLineRenderer.UpdateLine -- uid: XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.WidthMultiplier - name: WidthMultiplier - href: api/XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.html#XRTK_Utilities_Lines_Renderers_BaseMixedRealityLineRenderer_WidthMultiplier - commentId: P:XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.WidthMultiplier - fullName: XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.WidthMultiplier - nameWithType: BaseMixedRealityLineRenderer.WidthMultiplier -- uid: XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.WidthMultiplier* - name: WidthMultiplier - href: api/XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.html#XRTK_Utilities_Lines_Renderers_BaseMixedRealityLineRenderer_WidthMultiplier_ - commentId: Overload:XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.WidthMultiplier - isSpec: "True" - fullName: XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.WidthMultiplier - nameWithType: BaseMixedRealityLineRenderer.WidthMultiplier -- uid: XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.WidthOffset - name: WidthOffset - href: api/XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.html#XRTK_Utilities_Lines_Renderers_BaseMixedRealityLineRenderer_WidthOffset - commentId: P:XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.WidthOffset - fullName: XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.WidthOffset - nameWithType: BaseMixedRealityLineRenderer.WidthOffset -- uid: XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.WidthOffset* - name: WidthOffset - href: api/XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.html#XRTK_Utilities_Lines_Renderers_BaseMixedRealityLineRenderer_WidthOffset_ - commentId: Overload:XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.WidthOffset - isSpec: "True" - fullName: XRTK.Utilities.Lines.Renderers.BaseMixedRealityLineRenderer.WidthOffset - nameWithType: BaseMixedRealityLineRenderer.WidthOffset -- uid: XRTK.Utilities.Lines.Renderers.MeshLineRenderer - name: MeshLineRenderer - href: api/XRTK.Utilities.Lines.Renderers.MeshLineRenderer.html - commentId: T:XRTK.Utilities.Lines.Renderers.MeshLineRenderer - fullName: XRTK.Utilities.Lines.Renderers.MeshLineRenderer - nameWithType: MeshLineRenderer -- uid: XRTK.Utilities.Lines.Renderers.MeshLineRenderer.ColorProperty - name: ColorProperty - href: api/XRTK.Utilities.Lines.Renderers.MeshLineRenderer.html#XRTK_Utilities_Lines_Renderers_MeshLineRenderer_ColorProperty - commentId: P:XRTK.Utilities.Lines.Renderers.MeshLineRenderer.ColorProperty - fullName: XRTK.Utilities.Lines.Renderers.MeshLineRenderer.ColorProperty - nameWithType: MeshLineRenderer.ColorProperty -- uid: XRTK.Utilities.Lines.Renderers.MeshLineRenderer.ColorProperty* - name: ColorProperty - href: api/XRTK.Utilities.Lines.Renderers.MeshLineRenderer.html#XRTK_Utilities_Lines_Renderers_MeshLineRenderer_ColorProperty_ - commentId: Overload:XRTK.Utilities.Lines.Renderers.MeshLineRenderer.ColorProperty - isSpec: "True" - fullName: XRTK.Utilities.Lines.Renderers.MeshLineRenderer.ColorProperty - nameWithType: MeshLineRenderer.ColorProperty -- uid: XRTK.Utilities.Lines.Renderers.MeshLineRenderer.LineMaterial - name: LineMaterial - href: api/XRTK.Utilities.Lines.Renderers.MeshLineRenderer.html#XRTK_Utilities_Lines_Renderers_MeshLineRenderer_LineMaterial - commentId: P:XRTK.Utilities.Lines.Renderers.MeshLineRenderer.LineMaterial - fullName: XRTK.Utilities.Lines.Renderers.MeshLineRenderer.LineMaterial - nameWithType: MeshLineRenderer.LineMaterial -- uid: XRTK.Utilities.Lines.Renderers.MeshLineRenderer.LineMaterial* - name: LineMaterial - href: api/XRTK.Utilities.Lines.Renderers.MeshLineRenderer.html#XRTK_Utilities_Lines_Renderers_MeshLineRenderer_LineMaterial_ - commentId: Overload:XRTK.Utilities.Lines.Renderers.MeshLineRenderer.LineMaterial - isSpec: "True" - fullName: XRTK.Utilities.Lines.Renderers.MeshLineRenderer.LineMaterial - nameWithType: MeshLineRenderer.LineMaterial -- uid: XRTK.Utilities.Lines.Renderers.MeshLineRenderer.LineMesh - name: LineMesh - href: api/XRTK.Utilities.Lines.Renderers.MeshLineRenderer.html#XRTK_Utilities_Lines_Renderers_MeshLineRenderer_LineMesh - commentId: P:XRTK.Utilities.Lines.Renderers.MeshLineRenderer.LineMesh - fullName: XRTK.Utilities.Lines.Renderers.MeshLineRenderer.LineMesh - nameWithType: MeshLineRenderer.LineMesh -- uid: XRTK.Utilities.Lines.Renderers.MeshLineRenderer.LineMesh* - name: LineMesh - href: api/XRTK.Utilities.Lines.Renderers.MeshLineRenderer.html#XRTK_Utilities_Lines_Renderers_MeshLineRenderer_LineMesh_ - commentId: Overload:XRTK.Utilities.Lines.Renderers.MeshLineRenderer.LineMesh - isSpec: "True" - fullName: XRTK.Utilities.Lines.Renderers.MeshLineRenderer.LineMesh - nameWithType: MeshLineRenderer.LineMesh -- uid: XRTK.Utilities.Lines.Renderers.MeshLineRenderer.OnEnable - name: OnEnable() - href: api/XRTK.Utilities.Lines.Renderers.MeshLineRenderer.html#XRTK_Utilities_Lines_Renderers_MeshLineRenderer_OnEnable - commentId: M:XRTK.Utilities.Lines.Renderers.MeshLineRenderer.OnEnable - fullName: XRTK.Utilities.Lines.Renderers.MeshLineRenderer.OnEnable() - nameWithType: MeshLineRenderer.OnEnable() -- uid: XRTK.Utilities.Lines.Renderers.MeshLineRenderer.OnEnable* - name: OnEnable - href: api/XRTK.Utilities.Lines.Renderers.MeshLineRenderer.html#XRTK_Utilities_Lines_Renderers_MeshLineRenderer_OnEnable_ - commentId: Overload:XRTK.Utilities.Lines.Renderers.MeshLineRenderer.OnEnable - isSpec: "True" - fullName: XRTK.Utilities.Lines.Renderers.MeshLineRenderer.OnEnable - nameWithType: MeshLineRenderer.OnEnable -- uid: XRTK.Utilities.Lines.Renderers.MeshLineRenderer.UpdateLine - name: UpdateLine() - href: api/XRTK.Utilities.Lines.Renderers.MeshLineRenderer.html#XRTK_Utilities_Lines_Renderers_MeshLineRenderer_UpdateLine - commentId: M:XRTK.Utilities.Lines.Renderers.MeshLineRenderer.UpdateLine - fullName: XRTK.Utilities.Lines.Renderers.MeshLineRenderer.UpdateLine() - nameWithType: MeshLineRenderer.UpdateLine() -- uid: XRTK.Utilities.Lines.Renderers.MeshLineRenderer.UpdateLine* - name: UpdateLine - href: api/XRTK.Utilities.Lines.Renderers.MeshLineRenderer.html#XRTK_Utilities_Lines_Renderers_MeshLineRenderer_UpdateLine_ - commentId: Overload:XRTK.Utilities.Lines.Renderers.MeshLineRenderer.UpdateLine - isSpec: "True" - fullName: XRTK.Utilities.Lines.Renderers.MeshLineRenderer.UpdateLine - nameWithType: MeshLineRenderer.UpdateLine -- uid: XRTK.Utilities.Lines.Renderers.MixedRealityLineRenderer - name: MixedRealityLineRenderer - href: api/XRTK.Utilities.Lines.Renderers.MixedRealityLineRenderer.html - commentId: T:XRTK.Utilities.Lines.Renderers.MixedRealityLineRenderer - fullName: XRTK.Utilities.Lines.Renderers.MixedRealityLineRenderer - nameWithType: MixedRealityLineRenderer -- uid: XRTK.Utilities.Lines.Renderers.MixedRealityLineRenderer.LineMaterial - name: LineMaterial - href: api/XRTK.Utilities.Lines.Renderers.MixedRealityLineRenderer.html#XRTK_Utilities_Lines_Renderers_MixedRealityLineRenderer_LineMaterial - commentId: P:XRTK.Utilities.Lines.Renderers.MixedRealityLineRenderer.LineMaterial - fullName: XRTK.Utilities.Lines.Renderers.MixedRealityLineRenderer.LineMaterial - nameWithType: MixedRealityLineRenderer.LineMaterial -- uid: XRTK.Utilities.Lines.Renderers.MixedRealityLineRenderer.LineMaterial* - name: LineMaterial - href: api/XRTK.Utilities.Lines.Renderers.MixedRealityLineRenderer.html#XRTK_Utilities_Lines_Renderers_MixedRealityLineRenderer_LineMaterial_ - commentId: Overload:XRTK.Utilities.Lines.Renderers.MixedRealityLineRenderer.LineMaterial - isSpec: "True" - fullName: XRTK.Utilities.Lines.Renderers.MixedRealityLineRenderer.LineMaterial - nameWithType: MixedRealityLineRenderer.LineMaterial -- uid: XRTK.Utilities.Lines.Renderers.MixedRealityLineRenderer.RoundedCaps - name: RoundedCaps - href: api/XRTK.Utilities.Lines.Renderers.MixedRealityLineRenderer.html#XRTK_Utilities_Lines_Renderers_MixedRealityLineRenderer_RoundedCaps - commentId: P:XRTK.Utilities.Lines.Renderers.MixedRealityLineRenderer.RoundedCaps - fullName: XRTK.Utilities.Lines.Renderers.MixedRealityLineRenderer.RoundedCaps - nameWithType: MixedRealityLineRenderer.RoundedCaps -- uid: XRTK.Utilities.Lines.Renderers.MixedRealityLineRenderer.RoundedCaps* - name: RoundedCaps - href: api/XRTK.Utilities.Lines.Renderers.MixedRealityLineRenderer.html#XRTK_Utilities_Lines_Renderers_MixedRealityLineRenderer_RoundedCaps_ - commentId: Overload:XRTK.Utilities.Lines.Renderers.MixedRealityLineRenderer.RoundedCaps - isSpec: "True" - fullName: XRTK.Utilities.Lines.Renderers.MixedRealityLineRenderer.RoundedCaps - nameWithType: MixedRealityLineRenderer.RoundedCaps -- uid: XRTK.Utilities.Lines.Renderers.MixedRealityLineRenderer.RoundedEdges - name: RoundedEdges - href: api/XRTK.Utilities.Lines.Renderers.MixedRealityLineRenderer.html#XRTK_Utilities_Lines_Renderers_MixedRealityLineRenderer_RoundedEdges - commentId: P:XRTK.Utilities.Lines.Renderers.MixedRealityLineRenderer.RoundedEdges - fullName: XRTK.Utilities.Lines.Renderers.MixedRealityLineRenderer.RoundedEdges - nameWithType: MixedRealityLineRenderer.RoundedEdges -- uid: XRTK.Utilities.Lines.Renderers.MixedRealityLineRenderer.RoundedEdges* - name: RoundedEdges - href: api/XRTK.Utilities.Lines.Renderers.MixedRealityLineRenderer.html#XRTK_Utilities_Lines_Renderers_MixedRealityLineRenderer_RoundedEdges_ - commentId: Overload:XRTK.Utilities.Lines.Renderers.MixedRealityLineRenderer.RoundedEdges - isSpec: "True" - fullName: XRTK.Utilities.Lines.Renderers.MixedRealityLineRenderer.RoundedEdges - nameWithType: MixedRealityLineRenderer.RoundedEdges -- uid: XRTK.Utilities.Lines.Renderers.MixedRealityLineRenderer.UpdateLine - name: UpdateLine() - href: api/XRTK.Utilities.Lines.Renderers.MixedRealityLineRenderer.html#XRTK_Utilities_Lines_Renderers_MixedRealityLineRenderer_UpdateLine - commentId: M:XRTK.Utilities.Lines.Renderers.MixedRealityLineRenderer.UpdateLine - fullName: XRTK.Utilities.Lines.Renderers.MixedRealityLineRenderer.UpdateLine() - nameWithType: MixedRealityLineRenderer.UpdateLine() -- uid: XRTK.Utilities.Lines.Renderers.MixedRealityLineRenderer.UpdateLine* - name: UpdateLine - href: api/XRTK.Utilities.Lines.Renderers.MixedRealityLineRenderer.html#XRTK_Utilities_Lines_Renderers_MixedRealityLineRenderer_UpdateLine_ - commentId: Overload:XRTK.Utilities.Lines.Renderers.MixedRealityLineRenderer.UpdateLine - isSpec: "True" - fullName: XRTK.Utilities.Lines.Renderers.MixedRealityLineRenderer.UpdateLine - nameWithType: MixedRealityLineRenderer.UpdateLine -- uid: XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer - name: ParticleSystemLineRenderer - href: api/XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.html - commentId: T:XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer - fullName: XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer - nameWithType: ParticleSystemLineRenderer -- uid: XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.DecayGradient - name: DecayGradient - href: api/XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.html#XRTK_Utilities_Lines_Renderers_ParticleSystemLineRenderer_DecayGradient - commentId: P:XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.DecayGradient - fullName: XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.DecayGradient - nameWithType: ParticleSystemLineRenderer.DecayGradient -- uid: XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.DecayGradient* - name: DecayGradient - href: api/XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.html#XRTK_Utilities_Lines_Renderers_ParticleSystemLineRenderer_DecayGradient_ - commentId: Overload:XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.DecayGradient - isSpec: "True" - fullName: XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.DecayGradient - nameWithType: ParticleSystemLineRenderer.DecayGradient -- uid: XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.LifetimeAfterDisabled - name: LifetimeAfterDisabled - href: api/XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.html#XRTK_Utilities_Lines_Renderers_ParticleSystemLineRenderer_LifetimeAfterDisabled - commentId: P:XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.LifetimeAfterDisabled - fullName: XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.LifetimeAfterDisabled - nameWithType: ParticleSystemLineRenderer.LifetimeAfterDisabled -- uid: XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.LifetimeAfterDisabled* - name: LifetimeAfterDisabled - href: api/XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.html#XRTK_Utilities_Lines_Renderers_ParticleSystemLineRenderer_LifetimeAfterDisabled_ - commentId: Overload:XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.LifetimeAfterDisabled - isSpec: "True" - fullName: XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.LifetimeAfterDisabled - nameWithType: ParticleSystemLineRenderer.LifetimeAfterDisabled -- uid: XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.LineMaterial - name: LineMaterial - href: api/XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.html#XRTK_Utilities_Lines_Renderers_ParticleSystemLineRenderer_LineMaterial - commentId: P:XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.LineMaterial - fullName: XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.LineMaterial - nameWithType: ParticleSystemLineRenderer.LineMaterial -- uid: XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.LineMaterial* - name: LineMaterial - href: api/XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.html#XRTK_Utilities_Lines_Renderers_ParticleSystemLineRenderer_LineMaterial_ - commentId: Overload:XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.LineMaterial - isSpec: "True" - fullName: XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.LineMaterial - nameWithType: ParticleSystemLineRenderer.LineMaterial -- uid: XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.MainParticleRenderer - name: MainParticleRenderer - href: api/XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.html#XRTK_Utilities_Lines_Renderers_ParticleSystemLineRenderer_MainParticleRenderer - commentId: P:XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.MainParticleRenderer - fullName: XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.MainParticleRenderer - nameWithType: ParticleSystemLineRenderer.MainParticleRenderer -- uid: XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.MainParticleRenderer* - name: MainParticleRenderer - href: api/XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.html#XRTK_Utilities_Lines_Renderers_ParticleSystemLineRenderer_MainParticleRenderer_ - commentId: Overload:XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.MainParticleRenderer - isSpec: "True" - fullName: XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.MainParticleRenderer - nameWithType: ParticleSystemLineRenderer.MainParticleRenderer -- uid: XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.MaxParticles - name: MaxParticles - href: api/XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.html#XRTK_Utilities_Lines_Renderers_ParticleSystemLineRenderer_MaxParticles - commentId: P:XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.MaxParticles - fullName: XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.MaxParticles - nameWithType: ParticleSystemLineRenderer.MaxParticles -- uid: XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.MaxParticles* - name: MaxParticles - href: api/XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.html#XRTK_Utilities_Lines_Renderers_ParticleSystemLineRenderer_MaxParticles_ - commentId: Overload:XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.MaxParticles - isSpec: "True" - fullName: XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.MaxParticles - nameWithType: ParticleSystemLineRenderer.MaxParticles -- uid: XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.NoiseFrequency - name: NoiseFrequency - href: api/XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.html#XRTK_Utilities_Lines_Renderers_ParticleSystemLineRenderer_NoiseFrequency - commentId: P:XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.NoiseFrequency - fullName: XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.NoiseFrequency - nameWithType: ParticleSystemLineRenderer.NoiseFrequency -- uid: XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.NoiseFrequency* - name: NoiseFrequency - href: api/XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.html#XRTK_Utilities_Lines_Renderers_ParticleSystemLineRenderer_NoiseFrequency_ - commentId: Overload:XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.NoiseFrequency - isSpec: "True" - fullName: XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.NoiseFrequency - nameWithType: ParticleSystemLineRenderer.NoiseFrequency -- uid: XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.NoiseOcatives - name: NoiseOcatives - href: api/XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.html#XRTK_Utilities_Lines_Renderers_ParticleSystemLineRenderer_NoiseOcatives - commentId: P:XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.NoiseOcatives - fullName: XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.NoiseOcatives - nameWithType: ParticleSystemLineRenderer.NoiseOcatives -- uid: XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.NoiseOcatives* - name: NoiseOcatives - href: api/XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.html#XRTK_Utilities_Lines_Renderers_ParticleSystemLineRenderer_NoiseOcatives_ - commentId: Overload:XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.NoiseOcatives - isSpec: "True" - fullName: XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.NoiseOcatives - nameWithType: ParticleSystemLineRenderer.NoiseOcatives -- uid: XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.NoiseSpeed - name: NoiseSpeed - href: api/XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.html#XRTK_Utilities_Lines_Renderers_ParticleSystemLineRenderer_NoiseSpeed - commentId: P:XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.NoiseSpeed - fullName: XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.NoiseSpeed - nameWithType: ParticleSystemLineRenderer.NoiseSpeed -- uid: XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.NoiseSpeed* - name: NoiseSpeed - href: api/XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.html#XRTK_Utilities_Lines_Renderers_ParticleSystemLineRenderer_NoiseSpeed_ - commentId: Overload:XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.NoiseSpeed - isSpec: "True" - fullName: XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.NoiseSpeed - nameWithType: ParticleSystemLineRenderer.NoiseSpeed -- uid: XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.NoiseStrength - name: NoiseStrength - href: api/XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.html#XRTK_Utilities_Lines_Renderers_ParticleSystemLineRenderer_NoiseStrength - commentId: P:XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.NoiseStrength - fullName: XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.NoiseStrength - nameWithType: ParticleSystemLineRenderer.NoiseStrength -- uid: XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.NoiseStrength* - name: NoiseStrength - href: api/XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.html#XRTK_Utilities_Lines_Renderers_ParticleSystemLineRenderer_NoiseStrength_ - commentId: Overload:XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.NoiseStrength - isSpec: "True" - fullName: XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.NoiseStrength - nameWithType: ParticleSystemLineRenderer.NoiseStrength -- uid: XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.ParticleNoiseOnDisabled - name: ParticleNoiseOnDisabled - href: api/XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.html#XRTK_Utilities_Lines_Renderers_ParticleSystemLineRenderer_ParticleNoiseOnDisabled - commentId: P:XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.ParticleNoiseOnDisabled - fullName: XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.ParticleNoiseOnDisabled - nameWithType: ParticleSystemLineRenderer.ParticleNoiseOnDisabled -- uid: XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.ParticleNoiseOnDisabled* - name: ParticleNoiseOnDisabled - href: api/XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.html#XRTK_Utilities_Lines_Renderers_ParticleSystemLineRenderer_ParticleNoiseOnDisabled_ - commentId: Overload:XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.ParticleNoiseOnDisabled - isSpec: "True" - fullName: XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.ParticleNoiseOnDisabled - nameWithType: ParticleSystemLineRenderer.ParticleNoiseOnDisabled -- uid: XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.UpdateLine - name: UpdateLine() - href: api/XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.html#XRTK_Utilities_Lines_Renderers_ParticleSystemLineRenderer_UpdateLine - commentId: M:XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.UpdateLine - fullName: XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.UpdateLine() - nameWithType: ParticleSystemLineRenderer.UpdateLine() -- uid: XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.UpdateLine* - name: UpdateLine - href: api/XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.html#XRTK_Utilities_Lines_Renderers_ParticleSystemLineRenderer_UpdateLine_ - commentId: Overload:XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.UpdateLine - isSpec: "True" - fullName: XRTK.Utilities.Lines.Renderers.ParticleSystemLineRenderer.UpdateLine - nameWithType: ParticleSystemLineRenderer.UpdateLine -- uid: XRTK.Utilities.Lines.Renderers.StripMeshLineRenderer - name: StripMeshLineRenderer - href: api/XRTK.Utilities.Lines.Renderers.StripMeshLineRenderer.html - commentId: T:XRTK.Utilities.Lines.Renderers.StripMeshLineRenderer - fullName: XRTK.Utilities.Lines.Renderers.StripMeshLineRenderer - nameWithType: StripMeshLineRenderer -- uid: XRTK.Utilities.Lines.Renderers.StripMeshLineRenderer.GenerateStripMesh(System.Collections.Generic.List{UnityEngine.Vector3},System.Collections.Generic.List{UnityEngine.Color},System.Collections.Generic.List{System.Single},System.Single,System.Collections.Generic.List{UnityEngine.Vector3},UnityEngine.Mesh,UnityEngine.Vector3) - name: GenerateStripMesh(List, List, List, Single, List, Mesh, Vector3) - href: api/XRTK.Utilities.Lines.Renderers.StripMeshLineRenderer.html#XRTK_Utilities_Lines_Renderers_StripMeshLineRenderer_GenerateStripMesh_System_Collections_Generic_List_UnityEngine_Vector3__System_Collections_Generic_List_UnityEngine_Color__System_Collections_Generic_List_System_Single__System_Single_System_Collections_Generic_List_UnityEngine_Vector3__UnityEngine_Mesh_UnityEngine_Vector3_ - commentId: M:XRTK.Utilities.Lines.Renderers.StripMeshLineRenderer.GenerateStripMesh(System.Collections.Generic.List{UnityEngine.Vector3},System.Collections.Generic.List{UnityEngine.Color},System.Collections.Generic.List{System.Single},System.Single,System.Collections.Generic.List{UnityEngine.Vector3},UnityEngine.Mesh,UnityEngine.Vector3) - name.vb: GenerateStripMesh(List(Of Vector3), List(Of Color), List(Of Single), Single, List(Of Vector3), Mesh, Vector3) - fullName: XRTK.Utilities.Lines.Renderers.StripMeshLineRenderer.GenerateStripMesh(System.Collections.Generic.List, System.Collections.Generic.List, System.Collections.Generic.List, System.Single, System.Collections.Generic.List, UnityEngine.Mesh, UnityEngine.Vector3) - fullName.vb: XRTK.Utilities.Lines.Renderers.StripMeshLineRenderer.GenerateStripMesh(System.Collections.Generic.List(Of UnityEngine.Vector3), System.Collections.Generic.List(Of UnityEngine.Color), System.Collections.Generic.List(Of System.Single), System.Single, System.Collections.Generic.List(Of UnityEngine.Vector3), UnityEngine.Mesh, UnityEngine.Vector3) - nameWithType: StripMeshLineRenderer.GenerateStripMesh(List, List, List, Single, List, Mesh, Vector3) - nameWithType.vb: StripMeshLineRenderer.GenerateStripMesh(List(Of Vector3), List(Of Color), List(Of Single), Single, List(Of Vector3), Mesh, Vector3) -- uid: XRTK.Utilities.Lines.Renderers.StripMeshLineRenderer.GenerateStripMesh* - name: GenerateStripMesh - href: api/XRTK.Utilities.Lines.Renderers.StripMeshLineRenderer.html#XRTK_Utilities_Lines_Renderers_StripMeshLineRenderer_GenerateStripMesh_ - commentId: Overload:XRTK.Utilities.Lines.Renderers.StripMeshLineRenderer.GenerateStripMesh - isSpec: "True" - fullName: XRTK.Utilities.Lines.Renderers.StripMeshLineRenderer.GenerateStripMesh - nameWithType: StripMeshLineRenderer.GenerateStripMesh -- uid: XRTK.Utilities.Lines.Renderers.StripMeshLineRenderer.UpdateLine - name: UpdateLine() - href: api/XRTK.Utilities.Lines.Renderers.StripMeshLineRenderer.html#XRTK_Utilities_Lines_Renderers_StripMeshLineRenderer_UpdateLine - commentId: M:XRTK.Utilities.Lines.Renderers.StripMeshLineRenderer.UpdateLine - fullName: XRTK.Utilities.Lines.Renderers.StripMeshLineRenderer.UpdateLine() - nameWithType: StripMeshLineRenderer.UpdateLine() -- uid: XRTK.Utilities.Lines.Renderers.StripMeshLineRenderer.UpdateLine* - name: UpdateLine - href: api/XRTK.Utilities.Lines.Renderers.StripMeshLineRenderer.html#XRTK_Utilities_Lines_Renderers_StripMeshLineRenderer_UpdateLine_ - commentId: Overload:XRTK.Utilities.Lines.Renderers.StripMeshLineRenderer.UpdateLine - isSpec: "True" - fullName: XRTK.Utilities.Lines.Renderers.StripMeshLineRenderer.UpdateLine - nameWithType: StripMeshLineRenderer.UpdateLine -- uid: XRTK.Utilities.MathUtilities - name: MathUtilities - href: api/XRTK.Utilities.MathUtilities.html - commentId: T:XRTK.Utilities.MathUtilities - fullName: XRTK.Utilities.MathUtilities - nameWithType: MathUtilities -- uid: XRTK.Utilities.MathUtilities.Add(UnityEngine.Matrix4x4,UnityEngine.Matrix4x4) - name: Add(Matrix4x4, Matrix4x4) - href: api/XRTK.Utilities.MathUtilities.html#XRTK_Utilities_MathUtilities_Add_UnityEngine_Matrix4x4_UnityEngine_Matrix4x4_ - commentId: M:XRTK.Utilities.MathUtilities.Add(UnityEngine.Matrix4x4,UnityEngine.Matrix4x4) - fullName: XRTK.Utilities.MathUtilities.Add(UnityEngine.Matrix4x4, UnityEngine.Matrix4x4) - nameWithType: MathUtilities.Add(Matrix4x4, Matrix4x4) -- uid: XRTK.Utilities.MathUtilities.Add* - name: Add - href: api/XRTK.Utilities.MathUtilities.html#XRTK_Utilities_MathUtilities_Add_ - commentId: Overload:XRTK.Utilities.MathUtilities.Add - isSpec: "True" - fullName: XRTK.Utilities.MathUtilities.Add - nameWithType: MathUtilities.Add -- uid: XRTK.Utilities.MathUtilities.ClosestPointOnLineSegmentToPoint(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Vector3) - name: ClosestPointOnLineSegmentToPoint(Vector3, Vector3, Vector3) - href: api/XRTK.Utilities.MathUtilities.html#XRTK_Utilities_MathUtilities_ClosestPointOnLineSegmentToPoint_UnityEngine_Vector3_UnityEngine_Vector3_UnityEngine_Vector3_ - commentId: M:XRTK.Utilities.MathUtilities.ClosestPointOnLineSegmentToPoint(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Vector3) - fullName: XRTK.Utilities.MathUtilities.ClosestPointOnLineSegmentToPoint(UnityEngine.Vector3, UnityEngine.Vector3, UnityEngine.Vector3) - nameWithType: MathUtilities.ClosestPointOnLineSegmentToPoint(Vector3, Vector3, Vector3) -- uid: XRTK.Utilities.MathUtilities.ClosestPointOnLineSegmentToPoint* - name: ClosestPointOnLineSegmentToPoint - href: api/XRTK.Utilities.MathUtilities.html#XRTK_Utilities_MathUtilities_ClosestPointOnLineSegmentToPoint_ - commentId: Overload:XRTK.Utilities.MathUtilities.ClosestPointOnLineSegmentToPoint - isSpec: "True" - fullName: XRTK.Utilities.MathUtilities.ClosestPointOnLineSegmentToPoint - nameWithType: MathUtilities.ClosestPointOnLineSegmentToPoint -- uid: XRTK.Utilities.MathUtilities.ClosestPointOnLineToPoint(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Vector3) - name: ClosestPointOnLineToPoint(Vector3, Vector3, Vector3) - href: api/XRTK.Utilities.MathUtilities.html#XRTK_Utilities_MathUtilities_ClosestPointOnLineToPoint_UnityEngine_Vector3_UnityEngine_Vector3_UnityEngine_Vector3_ - commentId: M:XRTK.Utilities.MathUtilities.ClosestPointOnLineToPoint(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Vector3) - fullName: XRTK.Utilities.MathUtilities.ClosestPointOnLineToPoint(UnityEngine.Vector3, UnityEngine.Vector3, UnityEngine.Vector3) - nameWithType: MathUtilities.ClosestPointOnLineToPoint(Vector3, Vector3, Vector3) -- uid: XRTK.Utilities.MathUtilities.ClosestPointOnLineToPoint* - name: ClosestPointOnLineToPoint - href: api/XRTK.Utilities.MathUtilities.html#XRTK_Utilities_MathUtilities_ClosestPointOnLineToPoint_ - commentId: Overload:XRTK.Utilities.MathUtilities.ClosestPointOnLineToPoint - isSpec: "True" - fullName: XRTK.Utilities.MathUtilities.ClosestPointOnLineToPoint - nameWithType: MathUtilities.ClosestPointOnLineToPoint -- uid: XRTK.Utilities.MathUtilities.DegreesToRadians(System.Double) - name: DegreesToRadians(Double) - href: api/XRTK.Utilities.MathUtilities.html#XRTK_Utilities_MathUtilities_DegreesToRadians_System_Double_ - commentId: M:XRTK.Utilities.MathUtilities.DegreesToRadians(System.Double) - fullName: XRTK.Utilities.MathUtilities.DegreesToRadians(System.Double) - nameWithType: MathUtilities.DegreesToRadians(Double) -- uid: XRTK.Utilities.MathUtilities.DegreesToRadians* - name: DegreesToRadians - href: api/XRTK.Utilities.MathUtilities.html#XRTK_Utilities_MathUtilities_DegreesToRadians_ - commentId: Overload:XRTK.Utilities.MathUtilities.DegreesToRadians - isSpec: "True" - fullName: XRTK.Utilities.MathUtilities.DegreesToRadians - nameWithType: MathUtilities.DegreesToRadians -- uid: XRTK.Utilities.MathUtilities.DistanceOfPointToLine(UnityEngine.Ray,UnityEngine.Vector3) - name: DistanceOfPointToLine(Ray, Vector3) - href: api/XRTK.Utilities.MathUtilities.html#XRTK_Utilities_MathUtilities_DistanceOfPointToLine_UnityEngine_Ray_UnityEngine_Vector3_ - commentId: M:XRTK.Utilities.MathUtilities.DistanceOfPointToLine(UnityEngine.Ray,UnityEngine.Vector3) - fullName: XRTK.Utilities.MathUtilities.DistanceOfPointToLine(UnityEngine.Ray, UnityEngine.Vector3) - nameWithType: MathUtilities.DistanceOfPointToLine(Ray, Vector3) -- uid: XRTK.Utilities.MathUtilities.DistanceOfPointToLine(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Vector3) - name: DistanceOfPointToLine(Vector3, Vector3, Vector3) - href: api/XRTK.Utilities.MathUtilities.html#XRTK_Utilities_MathUtilities_DistanceOfPointToLine_UnityEngine_Vector3_UnityEngine_Vector3_UnityEngine_Vector3_ - commentId: M:XRTK.Utilities.MathUtilities.DistanceOfPointToLine(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Vector3) - fullName: XRTK.Utilities.MathUtilities.DistanceOfPointToLine(UnityEngine.Vector3, UnityEngine.Vector3, UnityEngine.Vector3) - nameWithType: MathUtilities.DistanceOfPointToLine(Vector3, Vector3, Vector3) -- uid: XRTK.Utilities.MathUtilities.DistanceOfPointToLine* - name: DistanceOfPointToLine - href: api/XRTK.Utilities.MathUtilities.html#XRTK_Utilities_MathUtilities_DistanceOfPointToLine_ - commentId: Overload:XRTK.Utilities.MathUtilities.DistanceOfPointToLine - isSpec: "True" - fullName: XRTK.Utilities.MathUtilities.DistanceOfPointToLine - nameWithType: MathUtilities.DistanceOfPointToLine -- uid: XRTK.Utilities.MathUtilities.DistanceOfPointToLineSegment(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Vector3) - name: DistanceOfPointToLineSegment(Vector3, Vector3, Vector3) - href: api/XRTK.Utilities.MathUtilities.html#XRTK_Utilities_MathUtilities_DistanceOfPointToLineSegment_UnityEngine_Vector3_UnityEngine_Vector3_UnityEngine_Vector3_ - commentId: M:XRTK.Utilities.MathUtilities.DistanceOfPointToLineSegment(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Vector3) - fullName: XRTK.Utilities.MathUtilities.DistanceOfPointToLineSegment(UnityEngine.Vector3, UnityEngine.Vector3, UnityEngine.Vector3) - nameWithType: MathUtilities.DistanceOfPointToLineSegment(Vector3, Vector3, Vector3) -- uid: XRTK.Utilities.MathUtilities.DistanceOfPointToLineSegment* - name: DistanceOfPointToLineSegment - href: api/XRTK.Utilities.MathUtilities.html#XRTK_Utilities_MathUtilities_DistanceOfPointToLineSegment_ - commentId: Overload:XRTK.Utilities.MathUtilities.DistanceOfPointToLineSegment - isSpec: "True" - fullName: XRTK.Utilities.MathUtilities.DistanceOfPointToLineSegment - nameWithType: MathUtilities.DistanceOfPointToLineSegment -- uid: XRTK.Utilities.MathUtilities.GetAngleBetween(UnityEngine.Vector2,UnityEngine.Vector2) - name: GetAngleBetween(Vector2, Vector2) - href: api/XRTK.Utilities.MathUtilities.html#XRTK_Utilities_MathUtilities_GetAngleBetween_UnityEngine_Vector2_UnityEngine_Vector2_ - commentId: M:XRTK.Utilities.MathUtilities.GetAngleBetween(UnityEngine.Vector2,UnityEngine.Vector2) - fullName: XRTK.Utilities.MathUtilities.GetAngleBetween(UnityEngine.Vector2, UnityEngine.Vector2) - nameWithType: MathUtilities.GetAngleBetween(Vector2, Vector2) -- uid: XRTK.Utilities.MathUtilities.GetAngleBetween* - name: GetAngleBetween - href: api/XRTK.Utilities.MathUtilities.html#XRTK_Utilities_MathUtilities_GetAngleBetween_ - commentId: Overload:XRTK.Utilities.MathUtilities.GetAngleBetween - isSpec: "True" - fullName: XRTK.Utilities.MathUtilities.GetAngleBetween - nameWithType: MathUtilities.GetAngleBetween -- uid: XRTK.Utilities.MathUtilities.InRange(UnityEngine.Vector2,UnityEngine.Vector2,UnityEngine.Vector2) - name: InRange(Vector2, Vector2, Vector2) - href: api/XRTK.Utilities.MathUtilities.html#XRTK_Utilities_MathUtilities_InRange_UnityEngine_Vector2_UnityEngine_Vector2_UnityEngine_Vector2_ - commentId: M:XRTK.Utilities.MathUtilities.InRange(UnityEngine.Vector2,UnityEngine.Vector2,UnityEngine.Vector2) - fullName: XRTK.Utilities.MathUtilities.InRange(UnityEngine.Vector2, UnityEngine.Vector2, UnityEngine.Vector2) - nameWithType: MathUtilities.InRange(Vector2, Vector2, Vector2) -- uid: XRTK.Utilities.MathUtilities.InRange(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Vector3) - name: InRange(Vector3, Vector3, Vector3) - href: api/XRTK.Utilities.MathUtilities.html#XRTK_Utilities_MathUtilities_InRange_UnityEngine_Vector3_UnityEngine_Vector3_UnityEngine_Vector3_ - commentId: M:XRTK.Utilities.MathUtilities.InRange(UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Vector3) - fullName: XRTK.Utilities.MathUtilities.InRange(UnityEngine.Vector3, UnityEngine.Vector3, UnityEngine.Vector3) - nameWithType: MathUtilities.InRange(Vector3, Vector3, Vector3) -- uid: XRTK.Utilities.MathUtilities.InRange* - name: InRange - href: api/XRTK.Utilities.MathUtilities.html#XRTK_Utilities_MathUtilities_InRange_ - commentId: Overload:XRTK.Utilities.MathUtilities.InRange - isSpec: "True" - fullName: XRTK.Utilities.MathUtilities.InRange - nameWithType: MathUtilities.InRange -- uid: XRTK.Utilities.MathUtilities.NearestPointToLines(UnityEngine.Ray,UnityEngine.Ray) - name: NearestPointToLines(Ray, Ray) - href: api/XRTK.Utilities.MathUtilities.html#XRTK_Utilities_MathUtilities_NearestPointToLines_UnityEngine_Ray_UnityEngine_Ray_ - commentId: M:XRTK.Utilities.MathUtilities.NearestPointToLines(UnityEngine.Ray,UnityEngine.Ray) - fullName: XRTK.Utilities.MathUtilities.NearestPointToLines(UnityEngine.Ray, UnityEngine.Ray) - nameWithType: MathUtilities.NearestPointToLines(Ray, Ray) -- uid: XRTK.Utilities.MathUtilities.NearestPointToLines* - name: NearestPointToLines - href: api/XRTK.Utilities.MathUtilities.html#XRTK_Utilities_MathUtilities_NearestPointToLines_ - commentId: Overload:XRTK.Utilities.MathUtilities.NearestPointToLines - isSpec: "True" - fullName: XRTK.Utilities.MathUtilities.NearestPointToLines - nameWithType: MathUtilities.NearestPointToLines -- uid: XRTK.Utilities.MathUtilities.NearestPointToLinesLeastSquares(System.Collections.Generic.IEnumerable{UnityEngine.Ray}) - name: NearestPointToLinesLeastSquares(IEnumerable) - href: api/XRTK.Utilities.MathUtilities.html#XRTK_Utilities_MathUtilities_NearestPointToLinesLeastSquares_System_Collections_Generic_IEnumerable_UnityEngine_Ray__ - commentId: M:XRTK.Utilities.MathUtilities.NearestPointToLinesLeastSquares(System.Collections.Generic.IEnumerable{UnityEngine.Ray}) - name.vb: NearestPointToLinesLeastSquares(IEnumerable(Of Ray)) - fullName: XRTK.Utilities.MathUtilities.NearestPointToLinesLeastSquares(System.Collections.Generic.IEnumerable) - fullName.vb: XRTK.Utilities.MathUtilities.NearestPointToLinesLeastSquares(System.Collections.Generic.IEnumerable(Of UnityEngine.Ray)) - nameWithType: MathUtilities.NearestPointToLinesLeastSquares(IEnumerable) - nameWithType.vb: MathUtilities.NearestPointToLinesLeastSquares(IEnumerable(Of Ray)) -- uid: XRTK.Utilities.MathUtilities.NearestPointToLinesLeastSquares* - name: NearestPointToLinesLeastSquares - href: api/XRTK.Utilities.MathUtilities.html#XRTK_Utilities_MathUtilities_NearestPointToLinesLeastSquares_ - commentId: Overload:XRTK.Utilities.MathUtilities.NearestPointToLinesLeastSquares - isSpec: "True" - fullName: XRTK.Utilities.MathUtilities.NearestPointToLinesLeastSquares - nameWithType: MathUtilities.NearestPointToLinesLeastSquares -- uid: XRTK.Utilities.MathUtilities.NearestPointToLinesRANSAC(System.Collections.Generic.List{UnityEngine.Ray},System.Int32,System.Single,System.Int32@) - name: NearestPointToLinesRANSAC(List, Int32, Single, out Int32) - href: api/XRTK.Utilities.MathUtilities.html#XRTK_Utilities_MathUtilities_NearestPointToLinesRANSAC_System_Collections_Generic_List_UnityEngine_Ray__System_Int32_System_Single_System_Int32__ - commentId: M:XRTK.Utilities.MathUtilities.NearestPointToLinesRANSAC(System.Collections.Generic.List{UnityEngine.Ray},System.Int32,System.Single,System.Int32@) - name.vb: NearestPointToLinesRANSAC(List(Of Ray), Int32, Single, ByRef Int32) - fullName: XRTK.Utilities.MathUtilities.NearestPointToLinesRANSAC(System.Collections.Generic.List, System.Int32, System.Single, out System.Int32) - fullName.vb: XRTK.Utilities.MathUtilities.NearestPointToLinesRANSAC(System.Collections.Generic.List(Of UnityEngine.Ray), System.Int32, System.Single, ByRef System.Int32) - nameWithType: MathUtilities.NearestPointToLinesRANSAC(List, Int32, Single, out Int32) - nameWithType.vb: MathUtilities.NearestPointToLinesRANSAC(List(Of Ray), Int32, Single, ByRef Int32) -- uid: XRTK.Utilities.MathUtilities.NearestPointToLinesRANSAC* - name: NearestPointToLinesRANSAC - href: api/XRTK.Utilities.MathUtilities.html#XRTK_Utilities_MathUtilities_NearestPointToLinesRANSAC_ - commentId: Overload:XRTK.Utilities.MathUtilities.NearestPointToLinesRANSAC - isSpec: "True" - fullName: XRTK.Utilities.MathUtilities.NearestPointToLinesRANSAC - nameWithType: MathUtilities.NearestPointToLinesRANSAC -- uid: XRTK.Utilities.MathUtilities.QuaternionFromMatrix(UnityEngine.Matrix4x4) - name: QuaternionFromMatrix(Matrix4x4) - href: api/XRTK.Utilities.MathUtilities.html#XRTK_Utilities_MathUtilities_QuaternionFromMatrix_UnityEngine_Matrix4x4_ - commentId: M:XRTK.Utilities.MathUtilities.QuaternionFromMatrix(UnityEngine.Matrix4x4) - fullName: XRTK.Utilities.MathUtilities.QuaternionFromMatrix(UnityEngine.Matrix4x4) - nameWithType: MathUtilities.QuaternionFromMatrix(Matrix4x4) -- uid: XRTK.Utilities.MathUtilities.QuaternionFromMatrix* - name: QuaternionFromMatrix - href: api/XRTK.Utilities.MathUtilities.html#XRTK_Utilities_MathUtilities_QuaternionFromMatrix_ - commentId: Overload:XRTK.Utilities.MathUtilities.QuaternionFromMatrix - isSpec: "True" - fullName: XRTK.Utilities.MathUtilities.QuaternionFromMatrix - nameWithType: MathUtilities.QuaternionFromMatrix -- uid: XRTK.Utilities.MathUtilities.RadiansToDegrees(System.Single) - name: RadiansToDegrees(Single) - href: api/XRTK.Utilities.MathUtilities.html#XRTK_Utilities_MathUtilities_RadiansToDegrees_System_Single_ - commentId: M:XRTK.Utilities.MathUtilities.RadiansToDegrees(System.Single) - fullName: XRTK.Utilities.MathUtilities.RadiansToDegrees(System.Single) - nameWithType: MathUtilities.RadiansToDegrees(Single) -- uid: XRTK.Utilities.MathUtilities.RadiansToDegrees* - name: RadiansToDegrees - href: api/XRTK.Utilities.MathUtilities.html#XRTK_Utilities_MathUtilities_RadiansToDegrees_ - commentId: Overload:XRTK.Utilities.MathUtilities.RadiansToDegrees - isSpec: "True" - fullName: XRTK.Utilities.MathUtilities.RadiansToDegrees - nameWithType: MathUtilities.RadiansToDegrees -- uid: XRTK.Utilities.MathUtilities.Subtract(UnityEngine.Matrix4x4,UnityEngine.Matrix4x4) - name: Subtract(Matrix4x4, Matrix4x4) - href: api/XRTK.Utilities.MathUtilities.html#XRTK_Utilities_MathUtilities_Subtract_UnityEngine_Matrix4x4_UnityEngine_Matrix4x4_ - commentId: M:XRTK.Utilities.MathUtilities.Subtract(UnityEngine.Matrix4x4,UnityEngine.Matrix4x4) - fullName: XRTK.Utilities.MathUtilities.Subtract(UnityEngine.Matrix4x4, UnityEngine.Matrix4x4) - nameWithType: MathUtilities.Subtract(Matrix4x4, Matrix4x4) -- uid: XRTK.Utilities.MathUtilities.Subtract* - name: Subtract - href: api/XRTK.Utilities.MathUtilities.html#XRTK_Utilities_MathUtilities_Subtract_ - commentId: Overload:XRTK.Utilities.MathUtilities.Subtract - isSpec: "True" - fullName: XRTK.Utilities.MathUtilities.Subtract - nameWithType: MathUtilities.Subtract -- uid: XRTK.Utilities.MathUtilities.TestPlanesAABB(UnityEngine.Plane[],System.Int32,UnityEngine.Bounds,System.Boolean@) - name: TestPlanesAABB(Plane[], Int32, Bounds, out Boolean) - href: api/XRTK.Utilities.MathUtilities.html#XRTK_Utilities_MathUtilities_TestPlanesAABB_UnityEngine_Plane___System_Int32_UnityEngine_Bounds_System_Boolean__ - commentId: M:XRTK.Utilities.MathUtilities.TestPlanesAABB(UnityEngine.Plane[],System.Int32,UnityEngine.Bounds,System.Boolean@) - name.vb: TestPlanesAABB(Plane(), Int32, Bounds, ByRef Boolean) - fullName: XRTK.Utilities.MathUtilities.TestPlanesAABB(UnityEngine.Plane[], System.Int32, UnityEngine.Bounds, out System.Boolean) - fullName.vb: XRTK.Utilities.MathUtilities.TestPlanesAABB(UnityEngine.Plane(), System.Int32, UnityEngine.Bounds, ByRef System.Boolean) - nameWithType: MathUtilities.TestPlanesAABB(Plane[], Int32, Bounds, out Boolean) - nameWithType.vb: MathUtilities.TestPlanesAABB(Plane(), Int32, Bounds, ByRef Boolean) -- uid: XRTK.Utilities.MathUtilities.TestPlanesAABB* - name: TestPlanesAABB - href: api/XRTK.Utilities.MathUtilities.html#XRTK_Utilities_MathUtilities_TestPlanesAABB_ - commentId: Overload:XRTK.Utilities.MathUtilities.TestPlanesAABB - isSpec: "True" - fullName: XRTK.Utilities.MathUtilities.TestPlanesAABB - nameWithType: MathUtilities.TestPlanesAABB -- uid: XRTK.Utilities.MathUtilities.ToTranslationRotation(UnityEngine.Matrix4x4,UnityEngine.Vector3@,UnityEngine.Quaternion@) - name: ToTranslationRotation(Matrix4x4, out Vector3, out Quaternion) - href: api/XRTK.Utilities.MathUtilities.html#XRTK_Utilities_MathUtilities_ToTranslationRotation_UnityEngine_Matrix4x4_UnityEngine_Vector3__UnityEngine_Quaternion__ - commentId: M:XRTK.Utilities.MathUtilities.ToTranslationRotation(UnityEngine.Matrix4x4,UnityEngine.Vector3@,UnityEngine.Quaternion@) - name.vb: ToTranslationRotation(Matrix4x4, ByRef Vector3, ByRef Quaternion) - fullName: XRTK.Utilities.MathUtilities.ToTranslationRotation(UnityEngine.Matrix4x4, out UnityEngine.Vector3, out UnityEngine.Quaternion) - fullName.vb: XRTK.Utilities.MathUtilities.ToTranslationRotation(UnityEngine.Matrix4x4, ByRef UnityEngine.Vector3, ByRef UnityEngine.Quaternion) - nameWithType: MathUtilities.ToTranslationRotation(Matrix4x4, out Vector3, out Quaternion) - nameWithType.vb: MathUtilities.ToTranslationRotation(Matrix4x4, ByRef Vector3, ByRef Quaternion) -- uid: XRTK.Utilities.MathUtilities.ToTranslationRotation* - name: ToTranslationRotation - href: api/XRTK.Utilities.MathUtilities.html#XRTK_Utilities_MathUtilities_ToTranslationRotation_ - commentId: Overload:XRTK.Utilities.MathUtilities.ToTranslationRotation - isSpec: "True" - fullName: XRTK.Utilities.MathUtilities.ToTranslationRotation - nameWithType: MathUtilities.ToTranslationRotation -- uid: XRTK.Utilities.MathUtilities.TransformDirectionFromTo(UnityEngine.Transform,UnityEngine.Transform,UnityEngine.Vector3) - name: TransformDirectionFromTo(Transform, Transform, Vector3) - href: api/XRTK.Utilities.MathUtilities.html#XRTK_Utilities_MathUtilities_TransformDirectionFromTo_UnityEngine_Transform_UnityEngine_Transform_UnityEngine_Vector3_ - commentId: M:XRTK.Utilities.MathUtilities.TransformDirectionFromTo(UnityEngine.Transform,UnityEngine.Transform,UnityEngine.Vector3) - fullName: XRTK.Utilities.MathUtilities.TransformDirectionFromTo(UnityEngine.Transform, UnityEngine.Transform, UnityEngine.Vector3) - nameWithType: MathUtilities.TransformDirectionFromTo(Transform, Transform, Vector3) -- uid: XRTK.Utilities.MathUtilities.TransformDirectionFromTo* - name: TransformDirectionFromTo - href: api/XRTK.Utilities.MathUtilities.html#XRTK_Utilities_MathUtilities_TransformDirectionFromTo_ - commentId: Overload:XRTK.Utilities.MathUtilities.TransformDirectionFromTo - isSpec: "True" - fullName: XRTK.Utilities.MathUtilities.TransformDirectionFromTo - nameWithType: MathUtilities.TransformDirectionFromTo -- uid: XRTK.Utilities.MathUtilities.TransformPointFromTo(UnityEngine.Transform,UnityEngine.Transform,UnityEngine.Vector3) - name: TransformPointFromTo(Transform, Transform, Vector3) - href: api/XRTK.Utilities.MathUtilities.html#XRTK_Utilities_MathUtilities_TransformPointFromTo_UnityEngine_Transform_UnityEngine_Transform_UnityEngine_Vector3_ - commentId: M:XRTK.Utilities.MathUtilities.TransformPointFromTo(UnityEngine.Transform,UnityEngine.Transform,UnityEngine.Vector3) - fullName: XRTK.Utilities.MathUtilities.TransformPointFromTo(UnityEngine.Transform, UnityEngine.Transform, UnityEngine.Vector3) - nameWithType: MathUtilities.TransformPointFromTo(Transform, Transform, Vector3) -- uid: XRTK.Utilities.MathUtilities.TransformPointFromTo* - name: TransformPointFromTo - href: api/XRTK.Utilities.MathUtilities.html#XRTK_Utilities_MathUtilities_TransformPointFromTo_ - commentId: Overload:XRTK.Utilities.MathUtilities.TransformPointFromTo - isSpec: "True" - fullName: XRTK.Utilities.MathUtilities.TransformPointFromTo - nameWithType: MathUtilities.TransformPointFromTo -- uid: XRTK.Utilities.MathUtilities.TransformRayFromTo(UnityEngine.Transform,UnityEngine.Transform,UnityEngine.Ray) - name: TransformRayFromTo(Transform, Transform, Ray) - href: api/XRTK.Utilities.MathUtilities.html#XRTK_Utilities_MathUtilities_TransformRayFromTo_UnityEngine_Transform_UnityEngine_Transform_UnityEngine_Ray_ - commentId: M:XRTK.Utilities.MathUtilities.TransformRayFromTo(UnityEngine.Transform,UnityEngine.Transform,UnityEngine.Ray) - fullName: XRTK.Utilities.MathUtilities.TransformRayFromTo(UnityEngine.Transform, UnityEngine.Transform, UnityEngine.Ray) - nameWithType: MathUtilities.TransformRayFromTo(Transform, Transform, Ray) -- uid: XRTK.Utilities.MathUtilities.TransformRayFromTo* - name: TransformRayFromTo - href: api/XRTK.Utilities.MathUtilities.html#XRTK_Utilities_MathUtilities_TransformRayFromTo_ - commentId: Overload:XRTK.Utilities.MathUtilities.TransformRayFromTo - isSpec: "True" - fullName: XRTK.Utilities.MathUtilities.TransformRayFromTo - nameWithType: MathUtilities.TransformRayFromTo -- uid: XRTK.Utilities.MathUtilities.TransformVectorFromTo(UnityEngine.Transform,UnityEngine.Transform,UnityEngine.Vector3) - name: TransformVectorFromTo(Transform, Transform, Vector3) - href: api/XRTK.Utilities.MathUtilities.html#XRTK_Utilities_MathUtilities_TransformVectorFromTo_UnityEngine_Transform_UnityEngine_Transform_UnityEngine_Vector3_ - commentId: M:XRTK.Utilities.MathUtilities.TransformVectorFromTo(UnityEngine.Transform,UnityEngine.Transform,UnityEngine.Vector3) - fullName: XRTK.Utilities.MathUtilities.TransformVectorFromTo(UnityEngine.Transform, UnityEngine.Transform, UnityEngine.Vector3) - nameWithType: MathUtilities.TransformVectorFromTo(Transform, Transform, Vector3) -- uid: XRTK.Utilities.MathUtilities.TransformVectorFromTo* - name: TransformVectorFromTo - href: api/XRTK.Utilities.MathUtilities.html#XRTK_Utilities_MathUtilities_TransformVectorFromTo_ - commentId: Overload:XRTK.Utilities.MathUtilities.TransformVectorFromTo - isSpec: "True" - fullName: XRTK.Utilities.MathUtilities.TransformVectorFromTo - nameWithType: MathUtilities.TransformVectorFromTo -- uid: XRTK.Utilities.MathUtilities.XYProject(UnityEngine.Vector3) - name: XYProject(Vector3) - href: api/XRTK.Utilities.MathUtilities.html#XRTK_Utilities_MathUtilities_XYProject_UnityEngine_Vector3_ - commentId: M:XRTK.Utilities.MathUtilities.XYProject(UnityEngine.Vector3) - fullName: XRTK.Utilities.MathUtilities.XYProject(UnityEngine.Vector3) - nameWithType: MathUtilities.XYProject(Vector3) -- uid: XRTK.Utilities.MathUtilities.XYProject* - name: XYProject - href: api/XRTK.Utilities.MathUtilities.html#XRTK_Utilities_MathUtilities_XYProject_ - commentId: Overload:XRTK.Utilities.MathUtilities.XYProject - isSpec: "True" - fullName: XRTK.Utilities.MathUtilities.XYProject - nameWithType: MathUtilities.XYProject -- uid: XRTK.Utilities.MathUtilities.XZProject(UnityEngine.Vector3) - name: XZProject(Vector3) - href: api/XRTK.Utilities.MathUtilities.html#XRTK_Utilities_MathUtilities_XZProject_UnityEngine_Vector3_ - commentId: M:XRTK.Utilities.MathUtilities.XZProject(UnityEngine.Vector3) - fullName: XRTK.Utilities.MathUtilities.XZProject(UnityEngine.Vector3) - nameWithType: MathUtilities.XZProject(Vector3) -- uid: XRTK.Utilities.MathUtilities.XZProject* - name: XZProject - href: api/XRTK.Utilities.MathUtilities.html#XRTK_Utilities_MathUtilities_XZProject_ - commentId: Overload:XRTK.Utilities.MathUtilities.XZProject - isSpec: "True" - fullName: XRTK.Utilities.MathUtilities.XZProject - nameWithType: MathUtilities.XZProject -- uid: XRTK.Utilities.MathUtilities.YZProject(UnityEngine.Vector3) - name: YZProject(Vector3) - href: api/XRTK.Utilities.MathUtilities.html#XRTK_Utilities_MathUtilities_YZProject_UnityEngine_Vector3_ - commentId: M:XRTK.Utilities.MathUtilities.YZProject(UnityEngine.Vector3) - fullName: XRTK.Utilities.MathUtilities.YZProject(UnityEngine.Vector3) - nameWithType: MathUtilities.YZProject(Vector3) -- uid: XRTK.Utilities.MathUtilities.YZProject* - name: YZProject - href: api/XRTK.Utilities.MathUtilities.html#XRTK_Utilities_MathUtilities_YZProject_ - commentId: Overload:XRTK.Utilities.MathUtilities.YZProject - isSpec: "True" - fullName: XRTK.Utilities.MathUtilities.YZProject - nameWithType: MathUtilities.YZProject -- uid: XRTK.Utilities.Physics - name: XRTK.Utilities.Physics - href: api/XRTK.Utilities.Physics.html - commentId: N:XRTK.Utilities.Physics - fullName: XRTK.Utilities.Physics - nameWithType: XRTK.Utilities.Physics -- uid: XRTK.Utilities.Physics.BaseRayStabilizer - name: BaseRayStabilizer - href: api/XRTK.Utilities.Physics.BaseRayStabilizer.html - commentId: T:XRTK.Utilities.Physics.BaseRayStabilizer - fullName: XRTK.Utilities.Physics.BaseRayStabilizer - nameWithType: BaseRayStabilizer -- uid: XRTK.Utilities.Physics.BaseRayStabilizer.StablePosition - name: StablePosition - href: api/XRTK.Utilities.Physics.BaseRayStabilizer.html#XRTK_Utilities_Physics_BaseRayStabilizer_StablePosition - commentId: P:XRTK.Utilities.Physics.BaseRayStabilizer.StablePosition - fullName: XRTK.Utilities.Physics.BaseRayStabilizer.StablePosition - nameWithType: BaseRayStabilizer.StablePosition -- uid: XRTK.Utilities.Physics.BaseRayStabilizer.StablePosition* - name: StablePosition - href: api/XRTK.Utilities.Physics.BaseRayStabilizer.html#XRTK_Utilities_Physics_BaseRayStabilizer_StablePosition_ - commentId: Overload:XRTK.Utilities.Physics.BaseRayStabilizer.StablePosition - isSpec: "True" - fullName: XRTK.Utilities.Physics.BaseRayStabilizer.StablePosition - nameWithType: BaseRayStabilizer.StablePosition -- uid: XRTK.Utilities.Physics.BaseRayStabilizer.StableRay - name: StableRay - href: api/XRTK.Utilities.Physics.BaseRayStabilizer.html#XRTK_Utilities_Physics_BaseRayStabilizer_StableRay - commentId: P:XRTK.Utilities.Physics.BaseRayStabilizer.StableRay - fullName: XRTK.Utilities.Physics.BaseRayStabilizer.StableRay - nameWithType: BaseRayStabilizer.StableRay -- uid: XRTK.Utilities.Physics.BaseRayStabilizer.StableRay* - name: StableRay - href: api/XRTK.Utilities.Physics.BaseRayStabilizer.html#XRTK_Utilities_Physics_BaseRayStabilizer_StableRay_ - commentId: Overload:XRTK.Utilities.Physics.BaseRayStabilizer.StableRay - isSpec: "True" - fullName: XRTK.Utilities.Physics.BaseRayStabilizer.StableRay - nameWithType: BaseRayStabilizer.StableRay -- uid: XRTK.Utilities.Physics.BaseRayStabilizer.StableRotation - name: StableRotation - href: api/XRTK.Utilities.Physics.BaseRayStabilizer.html#XRTK_Utilities_Physics_BaseRayStabilizer_StableRotation - commentId: P:XRTK.Utilities.Physics.BaseRayStabilizer.StableRotation - fullName: XRTK.Utilities.Physics.BaseRayStabilizer.StableRotation - nameWithType: BaseRayStabilizer.StableRotation -- uid: XRTK.Utilities.Physics.BaseRayStabilizer.StableRotation* - name: StableRotation - href: api/XRTK.Utilities.Physics.BaseRayStabilizer.html#XRTK_Utilities_Physics_BaseRayStabilizer_StableRotation_ - commentId: Overload:XRTK.Utilities.Physics.BaseRayStabilizer.StableRotation - isSpec: "True" - fullName: XRTK.Utilities.Physics.BaseRayStabilizer.StableRotation - nameWithType: BaseRayStabilizer.StableRotation -- uid: XRTK.Utilities.Physics.BaseRayStabilizer.UpdateStability(UnityEngine.Vector3,UnityEngine.Quaternion) - name: UpdateStability(Vector3, Quaternion) - href: api/XRTK.Utilities.Physics.BaseRayStabilizer.html#XRTK_Utilities_Physics_BaseRayStabilizer_UpdateStability_UnityEngine_Vector3_UnityEngine_Quaternion_ - commentId: M:XRTK.Utilities.Physics.BaseRayStabilizer.UpdateStability(UnityEngine.Vector3,UnityEngine.Quaternion) - fullName: XRTK.Utilities.Physics.BaseRayStabilizer.UpdateStability(UnityEngine.Vector3, UnityEngine.Quaternion) - nameWithType: BaseRayStabilizer.UpdateStability(Vector3, Quaternion) -- uid: XRTK.Utilities.Physics.BaseRayStabilizer.UpdateStability(UnityEngine.Vector3,UnityEngine.Vector3) - name: UpdateStability(Vector3, Vector3) - href: api/XRTK.Utilities.Physics.BaseRayStabilizer.html#XRTK_Utilities_Physics_BaseRayStabilizer_UpdateStability_UnityEngine_Vector3_UnityEngine_Vector3_ - commentId: M:XRTK.Utilities.Physics.BaseRayStabilizer.UpdateStability(UnityEngine.Vector3,UnityEngine.Vector3) - fullName: XRTK.Utilities.Physics.BaseRayStabilizer.UpdateStability(UnityEngine.Vector3, UnityEngine.Vector3) - nameWithType: BaseRayStabilizer.UpdateStability(Vector3, Vector3) -- uid: XRTK.Utilities.Physics.BaseRayStabilizer.UpdateStability* - name: UpdateStability - href: api/XRTK.Utilities.Physics.BaseRayStabilizer.html#XRTK_Utilities_Physics_BaseRayStabilizer_UpdateStability_ - commentId: Overload:XRTK.Utilities.Physics.BaseRayStabilizer.UpdateStability - isSpec: "True" - fullName: XRTK.Utilities.Physics.BaseRayStabilizer.UpdateStability - nameWithType: BaseRayStabilizer.UpdateStability -- uid: XRTK.Utilities.Physics.Distorters - name: XRTK.Utilities.Physics.Distorters - href: api/XRTK.Utilities.Physics.Distorters.html - commentId: N:XRTK.Utilities.Physics.Distorters - fullName: XRTK.Utilities.Physics.Distorters - nameWithType: XRTK.Utilities.Physics.Distorters -- uid: XRTK.Utilities.Physics.Distorters.Distorter - name: Distorter - href: api/XRTK.Utilities.Physics.Distorters.Distorter.html - commentId: T:XRTK.Utilities.Physics.Distorters.Distorter - fullName: XRTK.Utilities.Physics.Distorters.Distorter - nameWithType: Distorter -- uid: XRTK.Utilities.Physics.Distorters.Distorter.CompareTo(XRTK.Utilities.Physics.Distorters.Distorter) - name: CompareTo(Distorter) - href: api/XRTK.Utilities.Physics.Distorters.Distorter.html#XRTK_Utilities_Physics_Distorters_Distorter_CompareTo_XRTK_Utilities_Physics_Distorters_Distorter_ - commentId: M:XRTK.Utilities.Physics.Distorters.Distorter.CompareTo(XRTK.Utilities.Physics.Distorters.Distorter) - fullName: XRTK.Utilities.Physics.Distorters.Distorter.CompareTo(XRTK.Utilities.Physics.Distorters.Distorter) - nameWithType: Distorter.CompareTo(Distorter) -- uid: XRTK.Utilities.Physics.Distorters.Distorter.CompareTo* - name: CompareTo - href: api/XRTK.Utilities.Physics.Distorters.Distorter.html#XRTK_Utilities_Physics_Distorters_Distorter_CompareTo_ - commentId: Overload:XRTK.Utilities.Physics.Distorters.Distorter.CompareTo - isSpec: "True" - fullName: XRTK.Utilities.Physics.Distorters.Distorter.CompareTo - nameWithType: Distorter.CompareTo -- uid: XRTK.Utilities.Physics.Distorters.Distorter.DistortionEnabled - name: DistortionEnabled - href: api/XRTK.Utilities.Physics.Distorters.Distorter.html#XRTK_Utilities_Physics_Distorters_Distorter_DistortionEnabled - commentId: P:XRTK.Utilities.Physics.Distorters.Distorter.DistortionEnabled - fullName: XRTK.Utilities.Physics.Distorters.Distorter.DistortionEnabled - nameWithType: Distorter.DistortionEnabled -- uid: XRTK.Utilities.Physics.Distorters.Distorter.DistortionEnabled* - name: DistortionEnabled - href: api/XRTK.Utilities.Physics.Distorters.Distorter.html#XRTK_Utilities_Physics_Distorters_Distorter_DistortionEnabled_ - commentId: Overload:XRTK.Utilities.Physics.Distorters.Distorter.DistortionEnabled - isSpec: "True" - fullName: XRTK.Utilities.Physics.Distorters.Distorter.DistortionEnabled - nameWithType: Distorter.DistortionEnabled -- uid: XRTK.Utilities.Physics.Distorters.Distorter.DistortOrder - name: DistortOrder - href: api/XRTK.Utilities.Physics.Distorters.Distorter.html#XRTK_Utilities_Physics_Distorters_Distorter_DistortOrder - commentId: P:XRTK.Utilities.Physics.Distorters.Distorter.DistortOrder - fullName: XRTK.Utilities.Physics.Distorters.Distorter.DistortOrder - nameWithType: Distorter.DistortOrder -- uid: XRTK.Utilities.Physics.Distorters.Distorter.DistortOrder* - name: DistortOrder - href: api/XRTK.Utilities.Physics.Distorters.Distorter.html#XRTK_Utilities_Physics_Distorters_Distorter_DistortOrder_ - commentId: Overload:XRTK.Utilities.Physics.Distorters.Distorter.DistortOrder - isSpec: "True" - fullName: XRTK.Utilities.Physics.Distorters.Distorter.DistortOrder - nameWithType: Distorter.DistortOrder -- uid: XRTK.Utilities.Physics.Distorters.Distorter.DistortPoint(UnityEngine.Vector3,System.Single) - name: DistortPoint(Vector3, Single) - href: api/XRTK.Utilities.Physics.Distorters.Distorter.html#XRTK_Utilities_Physics_Distorters_Distorter_DistortPoint_UnityEngine_Vector3_System_Single_ - commentId: M:XRTK.Utilities.Physics.Distorters.Distorter.DistortPoint(UnityEngine.Vector3,System.Single) - fullName: XRTK.Utilities.Physics.Distorters.Distorter.DistortPoint(UnityEngine.Vector3, System.Single) - nameWithType: Distorter.DistortPoint(Vector3, Single) -- uid: XRTK.Utilities.Physics.Distorters.Distorter.DistortPoint* - name: DistortPoint - href: api/XRTK.Utilities.Physics.Distorters.Distorter.html#XRTK_Utilities_Physics_Distorters_Distorter_DistortPoint_ - commentId: Overload:XRTK.Utilities.Physics.Distorters.Distorter.DistortPoint - isSpec: "True" - fullName: XRTK.Utilities.Physics.Distorters.Distorter.DistortPoint - nameWithType: Distorter.DistortPoint -- uid: XRTK.Utilities.Physics.Distorters.Distorter.DistortPointInternal(UnityEngine.Vector3,System.Single) - name: DistortPointInternal(Vector3, Single) - href: api/XRTK.Utilities.Physics.Distorters.Distorter.html#XRTK_Utilities_Physics_Distorters_Distorter_DistortPointInternal_UnityEngine_Vector3_System_Single_ - commentId: M:XRTK.Utilities.Physics.Distorters.Distorter.DistortPointInternal(UnityEngine.Vector3,System.Single) - fullName: XRTK.Utilities.Physics.Distorters.Distorter.DistortPointInternal(UnityEngine.Vector3, System.Single) - nameWithType: Distorter.DistortPointInternal(Vector3, Single) -- uid: XRTK.Utilities.Physics.Distorters.Distorter.DistortPointInternal* - name: DistortPointInternal - href: api/XRTK.Utilities.Physics.Distorters.Distorter.html#XRTK_Utilities_Physics_Distorters_Distorter_DistortPointInternal_ - commentId: Overload:XRTK.Utilities.Physics.Distorters.Distorter.DistortPointInternal - isSpec: "True" - fullName: XRTK.Utilities.Physics.Distorters.Distorter.DistortPointInternal - nameWithType: Distorter.DistortPointInternal -- uid: XRTK.Utilities.Physics.Distorters.Distorter.DistortScale(UnityEngine.Vector3,System.Single) - name: DistortScale(Vector3, Single) - href: api/XRTK.Utilities.Physics.Distorters.Distorter.html#XRTK_Utilities_Physics_Distorters_Distorter_DistortScale_UnityEngine_Vector3_System_Single_ - commentId: M:XRTK.Utilities.Physics.Distorters.Distorter.DistortScale(UnityEngine.Vector3,System.Single) - fullName: XRTK.Utilities.Physics.Distorters.Distorter.DistortScale(UnityEngine.Vector3, System.Single) - nameWithType: Distorter.DistortScale(Vector3, Single) -- uid: XRTK.Utilities.Physics.Distorters.Distorter.DistortScale* - name: DistortScale - href: api/XRTK.Utilities.Physics.Distorters.Distorter.html#XRTK_Utilities_Physics_Distorters_Distorter_DistortScale_ - commentId: Overload:XRTK.Utilities.Physics.Distorters.Distorter.DistortScale - isSpec: "True" - fullName: XRTK.Utilities.Physics.Distorters.Distorter.DistortScale - nameWithType: Distorter.DistortScale -- uid: XRTK.Utilities.Physics.Distorters.Distorter.DistortScaleInternal(UnityEngine.Vector3,System.Single) - name: DistortScaleInternal(Vector3, Single) - href: api/XRTK.Utilities.Physics.Distorters.Distorter.html#XRTK_Utilities_Physics_Distorters_Distorter_DistortScaleInternal_UnityEngine_Vector3_System_Single_ - commentId: M:XRTK.Utilities.Physics.Distorters.Distorter.DistortScaleInternal(UnityEngine.Vector3,System.Single) - fullName: XRTK.Utilities.Physics.Distorters.Distorter.DistortScaleInternal(UnityEngine.Vector3, System.Single) - nameWithType: Distorter.DistortScaleInternal(Vector3, Single) -- uid: XRTK.Utilities.Physics.Distorters.Distorter.DistortScaleInternal* - name: DistortScaleInternal - href: api/XRTK.Utilities.Physics.Distorters.Distorter.html#XRTK_Utilities_Physics_Distorters_Distorter_DistortScaleInternal_ - commentId: Overload:XRTK.Utilities.Physics.Distorters.Distorter.DistortScaleInternal - isSpec: "True" - fullName: XRTK.Utilities.Physics.Distorters.Distorter.DistortScaleInternal - nameWithType: Distorter.DistortScaleInternal -- uid: XRTK.Utilities.Physics.Distorters.Distorter.DistortStrength - name: DistortStrength - href: api/XRTK.Utilities.Physics.Distorters.Distorter.html#XRTK_Utilities_Physics_Distorters_Distorter_DistortStrength - commentId: P:XRTK.Utilities.Physics.Distorters.Distorter.DistortStrength - fullName: XRTK.Utilities.Physics.Distorters.Distorter.DistortStrength - nameWithType: Distorter.DistortStrength -- uid: XRTK.Utilities.Physics.Distorters.Distorter.DistortStrength* - name: DistortStrength - href: api/XRTK.Utilities.Physics.Distorters.Distorter.html#XRTK_Utilities_Physics_Distorters_Distorter_DistortStrength_ - commentId: Overload:XRTK.Utilities.Physics.Distorters.Distorter.DistortStrength - isSpec: "True" - fullName: XRTK.Utilities.Physics.Distorters.Distorter.DistortStrength - nameWithType: Distorter.DistortStrength -- uid: XRTK.Utilities.Physics.Distorters.Distorter.OnEnable - name: OnEnable() - href: api/XRTK.Utilities.Physics.Distorters.Distorter.html#XRTK_Utilities_Physics_Distorters_Distorter_OnEnable - commentId: M:XRTK.Utilities.Physics.Distorters.Distorter.OnEnable - fullName: XRTK.Utilities.Physics.Distorters.Distorter.OnEnable() - nameWithType: Distorter.OnEnable() -- uid: XRTK.Utilities.Physics.Distorters.Distorter.OnEnable* - name: OnEnable - href: api/XRTK.Utilities.Physics.Distorters.Distorter.html#XRTK_Utilities_Physics_Distorters_Distorter_OnEnable_ - commentId: Overload:XRTK.Utilities.Physics.Distorters.Distorter.OnEnable - isSpec: "True" - fullName: XRTK.Utilities.Physics.Distorters.Distorter.OnEnable - nameWithType: Distorter.OnEnable -- uid: XRTK.Utilities.Physics.Distorters.DistorterBulge - name: DistorterBulge - href: api/XRTK.Utilities.Physics.Distorters.DistorterBulge.html - commentId: T:XRTK.Utilities.Physics.Distorters.DistorterBulge - fullName: XRTK.Utilities.Physics.Distorters.DistorterBulge - nameWithType: DistorterBulge -- uid: XRTK.Utilities.Physics.Distorters.DistorterBulge.BulgeFalloff - name: BulgeFalloff - href: api/XRTK.Utilities.Physics.Distorters.DistorterBulge.html#XRTK_Utilities_Physics_Distorters_DistorterBulge_BulgeFalloff - commentId: P:XRTK.Utilities.Physics.Distorters.DistorterBulge.BulgeFalloff - fullName: XRTK.Utilities.Physics.Distorters.DistorterBulge.BulgeFalloff - nameWithType: DistorterBulge.BulgeFalloff -- uid: XRTK.Utilities.Physics.Distorters.DistorterBulge.BulgeFalloff* - name: BulgeFalloff - href: api/XRTK.Utilities.Physics.Distorters.DistorterBulge.html#XRTK_Utilities_Physics_Distorters_DistorterBulge_BulgeFalloff_ - commentId: Overload:XRTK.Utilities.Physics.Distorters.DistorterBulge.BulgeFalloff - isSpec: "True" - fullName: XRTK.Utilities.Physics.Distorters.DistorterBulge.BulgeFalloff - nameWithType: DistorterBulge.BulgeFalloff -- uid: XRTK.Utilities.Physics.Distorters.DistorterBulge.BulgeLocalCenter - name: BulgeLocalCenter - href: api/XRTK.Utilities.Physics.Distorters.DistorterBulge.html#XRTK_Utilities_Physics_Distorters_DistorterBulge_BulgeLocalCenter - commentId: P:XRTK.Utilities.Physics.Distorters.DistorterBulge.BulgeLocalCenter - fullName: XRTK.Utilities.Physics.Distorters.DistorterBulge.BulgeLocalCenter - nameWithType: DistorterBulge.BulgeLocalCenter -- uid: XRTK.Utilities.Physics.Distorters.DistorterBulge.BulgeLocalCenter* - name: BulgeLocalCenter - href: api/XRTK.Utilities.Physics.Distorters.DistorterBulge.html#XRTK_Utilities_Physics_Distorters_DistorterBulge_BulgeLocalCenter_ - commentId: Overload:XRTK.Utilities.Physics.Distorters.DistorterBulge.BulgeLocalCenter - isSpec: "True" - fullName: XRTK.Utilities.Physics.Distorters.DistorterBulge.BulgeLocalCenter - nameWithType: DistorterBulge.BulgeLocalCenter -- uid: XRTK.Utilities.Physics.Distorters.DistorterBulge.BulgeRadius - name: BulgeRadius - href: api/XRTK.Utilities.Physics.Distorters.DistorterBulge.html#XRTK_Utilities_Physics_Distorters_DistorterBulge_BulgeRadius - commentId: P:XRTK.Utilities.Physics.Distorters.DistorterBulge.BulgeRadius - fullName: XRTK.Utilities.Physics.Distorters.DistorterBulge.BulgeRadius - nameWithType: DistorterBulge.BulgeRadius -- uid: XRTK.Utilities.Physics.Distorters.DistorterBulge.BulgeRadius* - name: BulgeRadius - href: api/XRTK.Utilities.Physics.Distorters.DistorterBulge.html#XRTK_Utilities_Physics_Distorters_DistorterBulge_BulgeRadius_ - commentId: Overload:XRTK.Utilities.Physics.Distorters.DistorterBulge.BulgeRadius - isSpec: "True" - fullName: XRTK.Utilities.Physics.Distorters.DistorterBulge.BulgeRadius - nameWithType: DistorterBulge.BulgeRadius -- uid: XRTK.Utilities.Physics.Distorters.DistorterBulge.BulgeStrength - name: BulgeStrength - href: api/XRTK.Utilities.Physics.Distorters.DistorterBulge.html#XRTK_Utilities_Physics_Distorters_DistorterBulge_BulgeStrength - commentId: P:XRTK.Utilities.Physics.Distorters.DistorterBulge.BulgeStrength - fullName: XRTK.Utilities.Physics.Distorters.DistorterBulge.BulgeStrength - nameWithType: DistorterBulge.BulgeStrength -- uid: XRTK.Utilities.Physics.Distorters.DistorterBulge.BulgeStrength* - name: BulgeStrength - href: api/XRTK.Utilities.Physics.Distorters.DistorterBulge.html#XRTK_Utilities_Physics_Distorters_DistorterBulge_BulgeStrength_ - commentId: Overload:XRTK.Utilities.Physics.Distorters.DistorterBulge.BulgeStrength - isSpec: "True" - fullName: XRTK.Utilities.Physics.Distorters.DistorterBulge.BulgeStrength - nameWithType: DistorterBulge.BulgeStrength -- uid: XRTK.Utilities.Physics.Distorters.DistorterBulge.BulgeWorldCenter - name: BulgeWorldCenter - href: api/XRTK.Utilities.Physics.Distorters.DistorterBulge.html#XRTK_Utilities_Physics_Distorters_DistorterBulge_BulgeWorldCenter - commentId: P:XRTK.Utilities.Physics.Distorters.DistorterBulge.BulgeWorldCenter - fullName: XRTK.Utilities.Physics.Distorters.DistorterBulge.BulgeWorldCenter - nameWithType: DistorterBulge.BulgeWorldCenter -- uid: XRTK.Utilities.Physics.Distorters.DistorterBulge.BulgeWorldCenter* - name: BulgeWorldCenter - href: api/XRTK.Utilities.Physics.Distorters.DistorterBulge.html#XRTK_Utilities_Physics_Distorters_DistorterBulge_BulgeWorldCenter_ - commentId: Overload:XRTK.Utilities.Physics.Distorters.DistorterBulge.BulgeWorldCenter - isSpec: "True" - fullName: XRTK.Utilities.Physics.Distorters.DistorterBulge.BulgeWorldCenter - nameWithType: DistorterBulge.BulgeWorldCenter -- uid: XRTK.Utilities.Physics.Distorters.DistorterBulge.DistortPointInternal(UnityEngine.Vector3,System.Single) - name: DistortPointInternal(Vector3, Single) - href: api/XRTK.Utilities.Physics.Distorters.DistorterBulge.html#XRTK_Utilities_Physics_Distorters_DistorterBulge_DistortPointInternal_UnityEngine_Vector3_System_Single_ - commentId: M:XRTK.Utilities.Physics.Distorters.DistorterBulge.DistortPointInternal(UnityEngine.Vector3,System.Single) - fullName: XRTK.Utilities.Physics.Distorters.DistorterBulge.DistortPointInternal(UnityEngine.Vector3, System.Single) - nameWithType: DistorterBulge.DistortPointInternal(Vector3, Single) -- uid: XRTK.Utilities.Physics.Distorters.DistorterBulge.DistortPointInternal* - name: DistortPointInternal - href: api/XRTK.Utilities.Physics.Distorters.DistorterBulge.html#XRTK_Utilities_Physics_Distorters_DistorterBulge_DistortPointInternal_ - commentId: Overload:XRTK.Utilities.Physics.Distorters.DistorterBulge.DistortPointInternal - isSpec: "True" - fullName: XRTK.Utilities.Physics.Distorters.DistorterBulge.DistortPointInternal - nameWithType: DistorterBulge.DistortPointInternal -- uid: XRTK.Utilities.Physics.Distorters.DistorterBulge.DistortScaleInternal(UnityEngine.Vector3,System.Single) - name: DistortScaleInternal(Vector3, Single) - href: api/XRTK.Utilities.Physics.Distorters.DistorterBulge.html#XRTK_Utilities_Physics_Distorters_DistorterBulge_DistortScaleInternal_UnityEngine_Vector3_System_Single_ - commentId: M:XRTK.Utilities.Physics.Distorters.DistorterBulge.DistortScaleInternal(UnityEngine.Vector3,System.Single) - fullName: XRTK.Utilities.Physics.Distorters.DistorterBulge.DistortScaleInternal(UnityEngine.Vector3, System.Single) - nameWithType: DistorterBulge.DistortScaleInternal(Vector3, Single) -- uid: XRTK.Utilities.Physics.Distorters.DistorterBulge.DistortScaleInternal* - name: DistortScaleInternal - href: api/XRTK.Utilities.Physics.Distorters.DistorterBulge.html#XRTK_Utilities_Physics_Distorters_DistorterBulge_DistortScaleInternal_ - commentId: Overload:XRTK.Utilities.Physics.Distorters.DistorterBulge.DistortScaleInternal - isSpec: "True" - fullName: XRTK.Utilities.Physics.Distorters.DistorterBulge.DistortScaleInternal - nameWithType: DistorterBulge.DistortScaleInternal -- uid: XRTK.Utilities.Physics.Distorters.DistorterBulge.ScaleDistort - name: ScaleDistort - href: api/XRTK.Utilities.Physics.Distorters.DistorterBulge.html#XRTK_Utilities_Physics_Distorters_DistorterBulge_ScaleDistort - commentId: P:XRTK.Utilities.Physics.Distorters.DistorterBulge.ScaleDistort - fullName: XRTK.Utilities.Physics.Distorters.DistorterBulge.ScaleDistort - nameWithType: DistorterBulge.ScaleDistort -- uid: XRTK.Utilities.Physics.Distorters.DistorterBulge.ScaleDistort* - name: ScaleDistort - href: api/XRTK.Utilities.Physics.Distorters.DistorterBulge.html#XRTK_Utilities_Physics_Distorters_DistorterBulge_ScaleDistort_ - commentId: Overload:XRTK.Utilities.Physics.Distorters.DistorterBulge.ScaleDistort - isSpec: "True" - fullName: XRTK.Utilities.Physics.Distorters.DistorterBulge.ScaleDistort - nameWithType: DistorterBulge.ScaleDistort -- uid: XRTK.Utilities.Physics.Distorters.DistorterGravity - name: DistorterGravity - href: api/XRTK.Utilities.Physics.Distorters.DistorterGravity.html - commentId: T:XRTK.Utilities.Physics.Distorters.DistorterGravity - fullName: XRTK.Utilities.Physics.Distorters.DistorterGravity - nameWithType: DistorterGravity -- uid: XRTK.Utilities.Physics.Distorters.DistorterGravity.AxisStrength - name: AxisStrength - href: api/XRTK.Utilities.Physics.Distorters.DistorterGravity.html#XRTK_Utilities_Physics_Distorters_DistorterGravity_AxisStrength - commentId: P:XRTK.Utilities.Physics.Distorters.DistorterGravity.AxisStrength - fullName: XRTK.Utilities.Physics.Distorters.DistorterGravity.AxisStrength - nameWithType: DistorterGravity.AxisStrength -- uid: XRTK.Utilities.Physics.Distorters.DistorterGravity.AxisStrength* - name: AxisStrength - href: api/XRTK.Utilities.Physics.Distorters.DistorterGravity.html#XRTK_Utilities_Physics_Distorters_DistorterGravity_AxisStrength_ - commentId: Overload:XRTK.Utilities.Physics.Distorters.DistorterGravity.AxisStrength - isSpec: "True" - fullName: XRTK.Utilities.Physics.Distorters.DistorterGravity.AxisStrength - nameWithType: DistorterGravity.AxisStrength -- uid: XRTK.Utilities.Physics.Distorters.DistorterGravity.DistortPointInternal(UnityEngine.Vector3,System.Single) - name: DistortPointInternal(Vector3, Single) - href: api/XRTK.Utilities.Physics.Distorters.DistorterGravity.html#XRTK_Utilities_Physics_Distorters_DistorterGravity_DistortPointInternal_UnityEngine_Vector3_System_Single_ - commentId: M:XRTK.Utilities.Physics.Distorters.DistorterGravity.DistortPointInternal(UnityEngine.Vector3,System.Single) - fullName: XRTK.Utilities.Physics.Distorters.DistorterGravity.DistortPointInternal(UnityEngine.Vector3, System.Single) - nameWithType: DistorterGravity.DistortPointInternal(Vector3, Single) -- uid: XRTK.Utilities.Physics.Distorters.DistorterGravity.DistortPointInternal* - name: DistortPointInternal - href: api/XRTK.Utilities.Physics.Distorters.DistorterGravity.html#XRTK_Utilities_Physics_Distorters_DistorterGravity_DistortPointInternal_ - commentId: Overload:XRTK.Utilities.Physics.Distorters.DistorterGravity.DistortPointInternal - isSpec: "True" - fullName: XRTK.Utilities.Physics.Distorters.DistorterGravity.DistortPointInternal - nameWithType: DistorterGravity.DistortPointInternal -- uid: XRTK.Utilities.Physics.Distorters.DistorterGravity.DistortScaleInternal(UnityEngine.Vector3,System.Single) - name: DistortScaleInternal(Vector3, Single) - href: api/XRTK.Utilities.Physics.Distorters.DistorterGravity.html#XRTK_Utilities_Physics_Distorters_DistorterGravity_DistortScaleInternal_UnityEngine_Vector3_System_Single_ - commentId: M:XRTK.Utilities.Physics.Distorters.DistorterGravity.DistortScaleInternal(UnityEngine.Vector3,System.Single) - fullName: XRTK.Utilities.Physics.Distorters.DistorterGravity.DistortScaleInternal(UnityEngine.Vector3, System.Single) - nameWithType: DistorterGravity.DistortScaleInternal(Vector3, Single) -- uid: XRTK.Utilities.Physics.Distorters.DistorterGravity.DistortScaleInternal* - name: DistortScaleInternal - href: api/XRTK.Utilities.Physics.Distorters.DistorterGravity.html#XRTK_Utilities_Physics_Distorters_DistorterGravity_DistortScaleInternal_ - commentId: Overload:XRTK.Utilities.Physics.Distorters.DistorterGravity.DistortScaleInternal - isSpec: "True" - fullName: XRTK.Utilities.Physics.Distorters.DistorterGravity.DistortScaleInternal - nameWithType: DistorterGravity.DistortScaleInternal -- uid: XRTK.Utilities.Physics.Distorters.DistorterGravity.GravityStrength - name: GravityStrength - href: api/XRTK.Utilities.Physics.Distorters.DistorterGravity.html#XRTK_Utilities_Physics_Distorters_DistorterGravity_GravityStrength - commentId: P:XRTK.Utilities.Physics.Distorters.DistorterGravity.GravityStrength - fullName: XRTK.Utilities.Physics.Distorters.DistorterGravity.GravityStrength - nameWithType: DistorterGravity.GravityStrength -- uid: XRTK.Utilities.Physics.Distorters.DistorterGravity.GravityStrength* - name: GravityStrength - href: api/XRTK.Utilities.Physics.Distorters.DistorterGravity.html#XRTK_Utilities_Physics_Distorters_DistorterGravity_GravityStrength_ - commentId: Overload:XRTK.Utilities.Physics.Distorters.DistorterGravity.GravityStrength - isSpec: "True" - fullName: XRTK.Utilities.Physics.Distorters.DistorterGravity.GravityStrength - nameWithType: DistorterGravity.GravityStrength -- uid: XRTK.Utilities.Physics.Distorters.DistorterGravity.LocalCenterOfGravity - name: LocalCenterOfGravity - href: api/XRTK.Utilities.Physics.Distorters.DistorterGravity.html#XRTK_Utilities_Physics_Distorters_DistorterGravity_LocalCenterOfGravity - commentId: P:XRTK.Utilities.Physics.Distorters.DistorterGravity.LocalCenterOfGravity - fullName: XRTK.Utilities.Physics.Distorters.DistorterGravity.LocalCenterOfGravity - nameWithType: DistorterGravity.LocalCenterOfGravity -- uid: XRTK.Utilities.Physics.Distorters.DistorterGravity.LocalCenterOfGravity* - name: LocalCenterOfGravity - href: api/XRTK.Utilities.Physics.Distorters.DistorterGravity.html#XRTK_Utilities_Physics_Distorters_DistorterGravity_LocalCenterOfGravity_ - commentId: Overload:XRTK.Utilities.Physics.Distorters.DistorterGravity.LocalCenterOfGravity - isSpec: "True" - fullName: XRTK.Utilities.Physics.Distorters.DistorterGravity.LocalCenterOfGravity - nameWithType: DistorterGravity.LocalCenterOfGravity -- uid: XRTK.Utilities.Physics.Distorters.DistorterGravity.OnDrawGizmos - name: OnDrawGizmos() - href: api/XRTK.Utilities.Physics.Distorters.DistorterGravity.html#XRTK_Utilities_Physics_Distorters_DistorterGravity_OnDrawGizmos - commentId: M:XRTK.Utilities.Physics.Distorters.DistorterGravity.OnDrawGizmos - fullName: XRTK.Utilities.Physics.Distorters.DistorterGravity.OnDrawGizmos() - nameWithType: DistorterGravity.OnDrawGizmos() -- uid: XRTK.Utilities.Physics.Distorters.DistorterGravity.OnDrawGizmos* - name: OnDrawGizmos - href: api/XRTK.Utilities.Physics.Distorters.DistorterGravity.html#XRTK_Utilities_Physics_Distorters_DistorterGravity_OnDrawGizmos_ - commentId: Overload:XRTK.Utilities.Physics.Distorters.DistorterGravity.OnDrawGizmos - isSpec: "True" - fullName: XRTK.Utilities.Physics.Distorters.DistorterGravity.OnDrawGizmos - nameWithType: DistorterGravity.OnDrawGizmos -- uid: XRTK.Utilities.Physics.Distorters.DistorterGravity.Radius - name: Radius - href: api/XRTK.Utilities.Physics.Distorters.DistorterGravity.html#XRTK_Utilities_Physics_Distorters_DistorterGravity_Radius - commentId: P:XRTK.Utilities.Physics.Distorters.DistorterGravity.Radius - fullName: XRTK.Utilities.Physics.Distorters.DistorterGravity.Radius - nameWithType: DistorterGravity.Radius -- uid: XRTK.Utilities.Physics.Distorters.DistorterGravity.Radius* - name: Radius - href: api/XRTK.Utilities.Physics.Distorters.DistorterGravity.html#XRTK_Utilities_Physics_Distorters_DistorterGravity_Radius_ - commentId: Overload:XRTK.Utilities.Physics.Distorters.DistorterGravity.Radius - isSpec: "True" - fullName: XRTK.Utilities.Physics.Distorters.DistorterGravity.Radius - nameWithType: DistorterGravity.Radius -- uid: XRTK.Utilities.Physics.Distorters.DistorterGravity.WorldCenterOfGravity - name: WorldCenterOfGravity - href: api/XRTK.Utilities.Physics.Distorters.DistorterGravity.html#XRTK_Utilities_Physics_Distorters_DistorterGravity_WorldCenterOfGravity - commentId: P:XRTK.Utilities.Physics.Distorters.DistorterGravity.WorldCenterOfGravity - fullName: XRTK.Utilities.Physics.Distorters.DistorterGravity.WorldCenterOfGravity - nameWithType: DistorterGravity.WorldCenterOfGravity -- uid: XRTK.Utilities.Physics.Distorters.DistorterGravity.WorldCenterOfGravity* - name: WorldCenterOfGravity - href: api/XRTK.Utilities.Physics.Distorters.DistorterGravity.html#XRTK_Utilities_Physics_Distorters_DistorterGravity_WorldCenterOfGravity_ - commentId: Overload:XRTK.Utilities.Physics.Distorters.DistorterGravity.WorldCenterOfGravity - isSpec: "True" - fullName: XRTK.Utilities.Physics.Distorters.DistorterGravity.WorldCenterOfGravity - nameWithType: DistorterGravity.WorldCenterOfGravity -- uid: XRTK.Utilities.Physics.Distorters.DistorterSimplex - name: DistorterSimplex - href: api/XRTK.Utilities.Physics.Distorters.DistorterSimplex.html - commentId: T:XRTK.Utilities.Physics.Distorters.DistorterSimplex - fullName: XRTK.Utilities.Physics.Distorters.DistorterSimplex - nameWithType: DistorterSimplex -- uid: XRTK.Utilities.Physics.Distorters.DistorterSimplex.AxisOffset - name: AxisOffset - href: api/XRTK.Utilities.Physics.Distorters.DistorterSimplex.html#XRTK_Utilities_Physics_Distorters_DistorterSimplex_AxisOffset - commentId: P:XRTK.Utilities.Physics.Distorters.DistorterSimplex.AxisOffset - fullName: XRTK.Utilities.Physics.Distorters.DistorterSimplex.AxisOffset - nameWithType: DistorterSimplex.AxisOffset -- uid: XRTK.Utilities.Physics.Distorters.DistorterSimplex.AxisOffset* - name: AxisOffset - href: api/XRTK.Utilities.Physics.Distorters.DistorterSimplex.html#XRTK_Utilities_Physics_Distorters_DistorterSimplex_AxisOffset_ - commentId: Overload:XRTK.Utilities.Physics.Distorters.DistorterSimplex.AxisOffset - isSpec: "True" - fullName: XRTK.Utilities.Physics.Distorters.DistorterSimplex.AxisOffset - nameWithType: DistorterSimplex.AxisOffset -- uid: XRTK.Utilities.Physics.Distorters.DistorterSimplex.AxisSpeed - name: AxisSpeed - href: api/XRTK.Utilities.Physics.Distorters.DistorterSimplex.html#XRTK_Utilities_Physics_Distorters_DistorterSimplex_AxisSpeed - commentId: P:XRTK.Utilities.Physics.Distorters.DistorterSimplex.AxisSpeed - fullName: XRTK.Utilities.Physics.Distorters.DistorterSimplex.AxisSpeed - nameWithType: DistorterSimplex.AxisSpeed -- uid: XRTK.Utilities.Physics.Distorters.DistorterSimplex.AxisSpeed* - name: AxisSpeed - href: api/XRTK.Utilities.Physics.Distorters.DistorterSimplex.html#XRTK_Utilities_Physics_Distorters_DistorterSimplex_AxisSpeed_ - commentId: Overload:XRTK.Utilities.Physics.Distorters.DistorterSimplex.AxisSpeed - isSpec: "True" - fullName: XRTK.Utilities.Physics.Distorters.DistorterSimplex.AxisSpeed - nameWithType: DistorterSimplex.AxisSpeed -- uid: XRTK.Utilities.Physics.Distorters.DistorterSimplex.AxisStrength - name: AxisStrength - href: api/XRTK.Utilities.Physics.Distorters.DistorterSimplex.html#XRTK_Utilities_Physics_Distorters_DistorterSimplex_AxisStrength - commentId: P:XRTK.Utilities.Physics.Distorters.DistorterSimplex.AxisStrength - fullName: XRTK.Utilities.Physics.Distorters.DistorterSimplex.AxisStrength - nameWithType: DistorterSimplex.AxisStrength -- uid: XRTK.Utilities.Physics.Distorters.DistorterSimplex.AxisStrength* - name: AxisStrength - href: api/XRTK.Utilities.Physics.Distorters.DistorterSimplex.html#XRTK_Utilities_Physics_Distorters_DistorterSimplex_AxisStrength_ - commentId: Overload:XRTK.Utilities.Physics.Distorters.DistorterSimplex.AxisStrength - isSpec: "True" - fullName: XRTK.Utilities.Physics.Distorters.DistorterSimplex.AxisStrength - nameWithType: DistorterSimplex.AxisStrength -- uid: XRTK.Utilities.Physics.Distorters.DistorterSimplex.DistortPointInternal(UnityEngine.Vector3,System.Single) - name: DistortPointInternal(Vector3, Single) - href: api/XRTK.Utilities.Physics.Distorters.DistorterSimplex.html#XRTK_Utilities_Physics_Distorters_DistorterSimplex_DistortPointInternal_UnityEngine_Vector3_System_Single_ - commentId: M:XRTK.Utilities.Physics.Distorters.DistorterSimplex.DistortPointInternal(UnityEngine.Vector3,System.Single) - fullName: XRTK.Utilities.Physics.Distorters.DistorterSimplex.DistortPointInternal(UnityEngine.Vector3, System.Single) - nameWithType: DistorterSimplex.DistortPointInternal(Vector3, Single) -- uid: XRTK.Utilities.Physics.Distorters.DistorterSimplex.DistortPointInternal* - name: DistortPointInternal - href: api/XRTK.Utilities.Physics.Distorters.DistorterSimplex.html#XRTK_Utilities_Physics_Distorters_DistorterSimplex_DistortPointInternal_ - commentId: Overload:XRTK.Utilities.Physics.Distorters.DistorterSimplex.DistortPointInternal - isSpec: "True" - fullName: XRTK.Utilities.Physics.Distorters.DistorterSimplex.DistortPointInternal - nameWithType: DistorterSimplex.DistortPointInternal -- uid: XRTK.Utilities.Physics.Distorters.DistorterSimplex.DistortScaleInternal(UnityEngine.Vector3,System.Single) - name: DistortScaleInternal(Vector3, Single) - href: api/XRTK.Utilities.Physics.Distorters.DistorterSimplex.html#XRTK_Utilities_Physics_Distorters_DistorterSimplex_DistortScaleInternal_UnityEngine_Vector3_System_Single_ - commentId: M:XRTK.Utilities.Physics.Distorters.DistorterSimplex.DistortScaleInternal(UnityEngine.Vector3,System.Single) - fullName: XRTK.Utilities.Physics.Distorters.DistorterSimplex.DistortScaleInternal(UnityEngine.Vector3, System.Single) - nameWithType: DistorterSimplex.DistortScaleInternal(Vector3, Single) -- uid: XRTK.Utilities.Physics.Distorters.DistorterSimplex.DistortScaleInternal* - name: DistortScaleInternal - href: api/XRTK.Utilities.Physics.Distorters.DistorterSimplex.html#XRTK_Utilities_Physics_Distorters_DistorterSimplex_DistortScaleInternal_ - commentId: Overload:XRTK.Utilities.Physics.Distorters.DistorterSimplex.DistortScaleInternal - isSpec: "True" - fullName: XRTK.Utilities.Physics.Distorters.DistorterSimplex.DistortScaleInternal - nameWithType: DistorterSimplex.DistortScaleInternal -- uid: XRTK.Utilities.Physics.Distorters.DistorterSimplex.ScaleDistort - name: ScaleDistort - href: api/XRTK.Utilities.Physics.Distorters.DistorterSimplex.html#XRTK_Utilities_Physics_Distorters_DistorterSimplex_ScaleDistort - commentId: P:XRTK.Utilities.Physics.Distorters.DistorterSimplex.ScaleDistort - fullName: XRTK.Utilities.Physics.Distorters.DistorterSimplex.ScaleDistort - nameWithType: DistorterSimplex.ScaleDistort -- uid: XRTK.Utilities.Physics.Distorters.DistorterSimplex.ScaleDistort* - name: ScaleDistort - href: api/XRTK.Utilities.Physics.Distorters.DistorterSimplex.html#XRTK_Utilities_Physics_Distorters_DistorterSimplex_ScaleDistort_ - commentId: Overload:XRTK.Utilities.Physics.Distorters.DistorterSimplex.ScaleDistort - isSpec: "True" - fullName: XRTK.Utilities.Physics.Distorters.DistorterSimplex.ScaleDistort - nameWithType: DistorterSimplex.ScaleDistort -- uid: XRTK.Utilities.Physics.Distorters.DistorterSimplex.ScaleMultiplier - name: ScaleMultiplier - href: api/XRTK.Utilities.Physics.Distorters.DistorterSimplex.html#XRTK_Utilities_Physics_Distorters_DistorterSimplex_ScaleMultiplier - commentId: P:XRTK.Utilities.Physics.Distorters.DistorterSimplex.ScaleMultiplier - fullName: XRTK.Utilities.Physics.Distorters.DistorterSimplex.ScaleMultiplier - nameWithType: DistorterSimplex.ScaleMultiplier -- uid: XRTK.Utilities.Physics.Distorters.DistorterSimplex.ScaleMultiplier* - name: ScaleMultiplier - href: api/XRTK.Utilities.Physics.Distorters.DistorterSimplex.html#XRTK_Utilities_Physics_Distorters_DistorterSimplex_ScaleMultiplier_ - commentId: Overload:XRTK.Utilities.Physics.Distorters.DistorterSimplex.ScaleMultiplier - isSpec: "True" - fullName: XRTK.Utilities.Physics.Distorters.DistorterSimplex.ScaleMultiplier - nameWithType: DistorterSimplex.ScaleMultiplier -- uid: XRTK.Utilities.Physics.Distorters.DistorterSimplex.StrengthMultiplier - name: StrengthMultiplier - href: api/XRTK.Utilities.Physics.Distorters.DistorterSimplex.html#XRTK_Utilities_Physics_Distorters_DistorterSimplex_StrengthMultiplier - commentId: P:XRTK.Utilities.Physics.Distorters.DistorterSimplex.StrengthMultiplier - fullName: XRTK.Utilities.Physics.Distorters.DistorterSimplex.StrengthMultiplier - nameWithType: DistorterSimplex.StrengthMultiplier -- uid: XRTK.Utilities.Physics.Distorters.DistorterSimplex.StrengthMultiplier* - name: StrengthMultiplier - href: api/XRTK.Utilities.Physics.Distorters.DistorterSimplex.html#XRTK_Utilities_Physics_Distorters_DistorterSimplex_StrengthMultiplier_ - commentId: Overload:XRTK.Utilities.Physics.Distorters.DistorterSimplex.StrengthMultiplier - isSpec: "True" - fullName: XRTK.Utilities.Physics.Distorters.DistorterSimplex.StrengthMultiplier - nameWithType: DistorterSimplex.StrengthMultiplier -- uid: XRTK.Utilities.Physics.Distorters.DistorterSimplex.UniformScaleDistort - name: UniformScaleDistort - href: api/XRTK.Utilities.Physics.Distorters.DistorterSimplex.html#XRTK_Utilities_Physics_Distorters_DistorterSimplex_UniformScaleDistort - commentId: P:XRTK.Utilities.Physics.Distorters.DistorterSimplex.UniformScaleDistort - fullName: XRTK.Utilities.Physics.Distorters.DistorterSimplex.UniformScaleDistort - nameWithType: DistorterSimplex.UniformScaleDistort -- uid: XRTK.Utilities.Physics.Distorters.DistorterSimplex.UniformScaleDistort* - name: UniformScaleDistort - href: api/XRTK.Utilities.Physics.Distorters.DistorterSimplex.html#XRTK_Utilities_Physics_Distorters_DistorterSimplex_UniformScaleDistort_ - commentId: Overload:XRTK.Utilities.Physics.Distorters.DistorterSimplex.UniformScaleDistort - isSpec: "True" - fullName: XRTK.Utilities.Physics.Distorters.DistorterSimplex.UniformScaleDistort - nameWithType: DistorterSimplex.UniformScaleDistort -- uid: XRTK.Utilities.Physics.Distorters.DistorterSphere - name: DistorterSphere - href: api/XRTK.Utilities.Physics.Distorters.DistorterSphere.html - commentId: T:XRTK.Utilities.Physics.Distorters.DistorterSphere - fullName: XRTK.Utilities.Physics.Distorters.DistorterSphere - nameWithType: DistorterSphere -- uid: XRTK.Utilities.Physics.Distorters.DistorterSphere.DistortPointInternal(UnityEngine.Vector3,System.Single) - name: DistortPointInternal(Vector3, Single) - href: api/XRTK.Utilities.Physics.Distorters.DistorterSphere.html#XRTK_Utilities_Physics_Distorters_DistorterSphere_DistortPointInternal_UnityEngine_Vector3_System_Single_ - commentId: M:XRTK.Utilities.Physics.Distorters.DistorterSphere.DistortPointInternal(UnityEngine.Vector3,System.Single) - fullName: XRTK.Utilities.Physics.Distorters.DistorterSphere.DistortPointInternal(UnityEngine.Vector3, System.Single) - nameWithType: DistorterSphere.DistortPointInternal(Vector3, Single) -- uid: XRTK.Utilities.Physics.Distorters.DistorterSphere.DistortPointInternal* - name: DistortPointInternal - href: api/XRTK.Utilities.Physics.Distorters.DistorterSphere.html#XRTK_Utilities_Physics_Distorters_DistorterSphere_DistortPointInternal_ - commentId: Overload:XRTK.Utilities.Physics.Distorters.DistorterSphere.DistortPointInternal - isSpec: "True" - fullName: XRTK.Utilities.Physics.Distorters.DistorterSphere.DistortPointInternal - nameWithType: DistorterSphere.DistortPointInternal -- uid: XRTK.Utilities.Physics.Distorters.DistorterSphere.DistortScaleInternal(UnityEngine.Vector3,System.Single) - name: DistortScaleInternal(Vector3, Single) - href: api/XRTK.Utilities.Physics.Distorters.DistorterSphere.html#XRTK_Utilities_Physics_Distorters_DistorterSphere_DistortScaleInternal_UnityEngine_Vector3_System_Single_ - commentId: M:XRTK.Utilities.Physics.Distorters.DistorterSphere.DistortScaleInternal(UnityEngine.Vector3,System.Single) - fullName: XRTK.Utilities.Physics.Distorters.DistorterSphere.DistortScaleInternal(UnityEngine.Vector3, System.Single) - nameWithType: DistorterSphere.DistortScaleInternal(Vector3, Single) -- uid: XRTK.Utilities.Physics.Distorters.DistorterSphere.DistortScaleInternal* - name: DistortScaleInternal - href: api/XRTK.Utilities.Physics.Distorters.DistorterSphere.html#XRTK_Utilities_Physics_Distorters_DistorterSphere_DistortScaleInternal_ - commentId: Overload:XRTK.Utilities.Physics.Distorters.DistorterSphere.DistortScaleInternal - isSpec: "True" - fullName: XRTK.Utilities.Physics.Distorters.DistorterSphere.DistortScaleInternal - nameWithType: DistorterSphere.DistortScaleInternal -- uid: XRTK.Utilities.Physics.Distorters.DistorterSphere.SphereCenter - name: SphereCenter - href: api/XRTK.Utilities.Physics.Distorters.DistorterSphere.html#XRTK_Utilities_Physics_Distorters_DistorterSphere_SphereCenter - commentId: P:XRTK.Utilities.Physics.Distorters.DistorterSphere.SphereCenter - fullName: XRTK.Utilities.Physics.Distorters.DistorterSphere.SphereCenter - nameWithType: DistorterSphere.SphereCenter -- uid: XRTK.Utilities.Physics.Distorters.DistorterSphere.SphereCenter* - name: SphereCenter - href: api/XRTK.Utilities.Physics.Distorters.DistorterSphere.html#XRTK_Utilities_Physics_Distorters_DistorterSphere_SphereCenter_ - commentId: Overload:XRTK.Utilities.Physics.Distorters.DistorterSphere.SphereCenter - isSpec: "True" - fullName: XRTK.Utilities.Physics.Distorters.DistorterSphere.SphereCenter - nameWithType: DistorterSphere.SphereCenter -- uid: XRTK.Utilities.Physics.Distorters.DistorterWiggly - name: DistorterWiggly - href: api/XRTK.Utilities.Physics.Distorters.DistorterWiggly.html - commentId: T:XRTK.Utilities.Physics.Distorters.DistorterWiggly - fullName: XRTK.Utilities.Physics.Distorters.DistorterWiggly - nameWithType: DistorterWiggly -- uid: XRTK.Utilities.Physics.Distorters.DistorterWiggly.AxisOffset - name: AxisOffset - href: api/XRTK.Utilities.Physics.Distorters.DistorterWiggly.html#XRTK_Utilities_Physics_Distorters_DistorterWiggly_AxisOffset - commentId: P:XRTK.Utilities.Physics.Distorters.DistorterWiggly.AxisOffset - fullName: XRTK.Utilities.Physics.Distorters.DistorterWiggly.AxisOffset - nameWithType: DistorterWiggly.AxisOffset -- uid: XRTK.Utilities.Physics.Distorters.DistorterWiggly.AxisOffset* - name: AxisOffset - href: api/XRTK.Utilities.Physics.Distorters.DistorterWiggly.html#XRTK_Utilities_Physics_Distorters_DistorterWiggly_AxisOffset_ - commentId: Overload:XRTK.Utilities.Physics.Distorters.DistorterWiggly.AxisOffset - isSpec: "True" - fullName: XRTK.Utilities.Physics.Distorters.DistorterWiggly.AxisOffset - nameWithType: DistorterWiggly.AxisOffset -- uid: XRTK.Utilities.Physics.Distorters.DistorterWiggly.AxisSpeed - name: AxisSpeed - href: api/XRTK.Utilities.Physics.Distorters.DistorterWiggly.html#XRTK_Utilities_Physics_Distorters_DistorterWiggly_AxisSpeed - commentId: P:XRTK.Utilities.Physics.Distorters.DistorterWiggly.AxisSpeed - fullName: XRTK.Utilities.Physics.Distorters.DistorterWiggly.AxisSpeed - nameWithType: DistorterWiggly.AxisSpeed -- uid: XRTK.Utilities.Physics.Distorters.DistorterWiggly.AxisSpeed* - name: AxisSpeed - href: api/XRTK.Utilities.Physics.Distorters.DistorterWiggly.html#XRTK_Utilities_Physics_Distorters_DistorterWiggly_AxisSpeed_ - commentId: Overload:XRTK.Utilities.Physics.Distorters.DistorterWiggly.AxisSpeed - isSpec: "True" - fullName: XRTK.Utilities.Physics.Distorters.DistorterWiggly.AxisSpeed - nameWithType: DistorterWiggly.AxisSpeed -- uid: XRTK.Utilities.Physics.Distorters.DistorterWiggly.AxisStrength - name: AxisStrength - href: api/XRTK.Utilities.Physics.Distorters.DistorterWiggly.html#XRTK_Utilities_Physics_Distorters_DistorterWiggly_AxisStrength - commentId: P:XRTK.Utilities.Physics.Distorters.DistorterWiggly.AxisStrength - fullName: XRTK.Utilities.Physics.Distorters.DistorterWiggly.AxisStrength - nameWithType: DistorterWiggly.AxisStrength -- uid: XRTK.Utilities.Physics.Distorters.DistorterWiggly.AxisStrength* - name: AxisStrength - href: api/XRTK.Utilities.Physics.Distorters.DistorterWiggly.html#XRTK_Utilities_Physics_Distorters_DistorterWiggly_AxisStrength_ - commentId: Overload:XRTK.Utilities.Physics.Distorters.DistorterWiggly.AxisStrength - isSpec: "True" - fullName: XRTK.Utilities.Physics.Distorters.DistorterWiggly.AxisStrength - nameWithType: DistorterWiggly.AxisStrength -- uid: XRTK.Utilities.Physics.Distorters.DistorterWiggly.DistortPointInternal(UnityEngine.Vector3,System.Single) - name: DistortPointInternal(Vector3, Single) - href: api/XRTK.Utilities.Physics.Distorters.DistorterWiggly.html#XRTK_Utilities_Physics_Distorters_DistorterWiggly_DistortPointInternal_UnityEngine_Vector3_System_Single_ - commentId: M:XRTK.Utilities.Physics.Distorters.DistorterWiggly.DistortPointInternal(UnityEngine.Vector3,System.Single) - fullName: XRTK.Utilities.Physics.Distorters.DistorterWiggly.DistortPointInternal(UnityEngine.Vector3, System.Single) - nameWithType: DistorterWiggly.DistortPointInternal(Vector3, Single) -- uid: XRTK.Utilities.Physics.Distorters.DistorterWiggly.DistortPointInternal* - name: DistortPointInternal - href: api/XRTK.Utilities.Physics.Distorters.DistorterWiggly.html#XRTK_Utilities_Physics_Distorters_DistorterWiggly_DistortPointInternal_ - commentId: Overload:XRTK.Utilities.Physics.Distorters.DistorterWiggly.DistortPointInternal - isSpec: "True" - fullName: XRTK.Utilities.Physics.Distorters.DistorterWiggly.DistortPointInternal - nameWithType: DistorterWiggly.DistortPointInternal -- uid: XRTK.Utilities.Physics.Distorters.DistorterWiggly.DistortScaleInternal(UnityEngine.Vector3,System.Single) - name: DistortScaleInternal(Vector3, Single) - href: api/XRTK.Utilities.Physics.Distorters.DistorterWiggly.html#XRTK_Utilities_Physics_Distorters_DistorterWiggly_DistortScaleInternal_UnityEngine_Vector3_System_Single_ - commentId: M:XRTK.Utilities.Physics.Distorters.DistorterWiggly.DistortScaleInternal(UnityEngine.Vector3,System.Single) - fullName: XRTK.Utilities.Physics.Distorters.DistorterWiggly.DistortScaleInternal(UnityEngine.Vector3, System.Single) - nameWithType: DistorterWiggly.DistortScaleInternal(Vector3, Single) -- uid: XRTK.Utilities.Physics.Distorters.DistorterWiggly.DistortScaleInternal* - name: DistortScaleInternal - href: api/XRTK.Utilities.Physics.Distorters.DistorterWiggly.html#XRTK_Utilities_Physics_Distorters_DistorterWiggly_DistortScaleInternal_ - commentId: Overload:XRTK.Utilities.Physics.Distorters.DistorterWiggly.DistortScaleInternal - isSpec: "True" - fullName: XRTK.Utilities.Physics.Distorters.DistorterWiggly.DistortScaleInternal - nameWithType: DistorterWiggly.DistortScaleInternal -- uid: XRTK.Utilities.Physics.Distorters.DistorterWiggly.ScaleMultiplier - name: ScaleMultiplier - href: api/XRTK.Utilities.Physics.Distorters.DistorterWiggly.html#XRTK_Utilities_Physics_Distorters_DistorterWiggly_ScaleMultiplier - commentId: P:XRTK.Utilities.Physics.Distorters.DistorterWiggly.ScaleMultiplier - fullName: XRTK.Utilities.Physics.Distorters.DistorterWiggly.ScaleMultiplier - nameWithType: DistorterWiggly.ScaleMultiplier -- uid: XRTK.Utilities.Physics.Distorters.DistorterWiggly.ScaleMultiplier* - name: ScaleMultiplier - href: api/XRTK.Utilities.Physics.Distorters.DistorterWiggly.html#XRTK_Utilities_Physics_Distorters_DistorterWiggly_ScaleMultiplier_ - commentId: Overload:XRTK.Utilities.Physics.Distorters.DistorterWiggly.ScaleMultiplier - isSpec: "True" - fullName: XRTK.Utilities.Physics.Distorters.DistorterWiggly.ScaleMultiplier - nameWithType: DistorterWiggly.ScaleMultiplier -- uid: XRTK.Utilities.Physics.Distorters.DistorterWiggly.SpeedMultiplier - name: SpeedMultiplier - href: api/XRTK.Utilities.Physics.Distorters.DistorterWiggly.html#XRTK_Utilities_Physics_Distorters_DistorterWiggly_SpeedMultiplier - commentId: P:XRTK.Utilities.Physics.Distorters.DistorterWiggly.SpeedMultiplier - fullName: XRTK.Utilities.Physics.Distorters.DistorterWiggly.SpeedMultiplier - nameWithType: DistorterWiggly.SpeedMultiplier -- uid: XRTK.Utilities.Physics.Distorters.DistorterWiggly.SpeedMultiplier* - name: SpeedMultiplier - href: api/XRTK.Utilities.Physics.Distorters.DistorterWiggly.html#XRTK_Utilities_Physics_Distorters_DistorterWiggly_SpeedMultiplier_ - commentId: Overload:XRTK.Utilities.Physics.Distorters.DistorterWiggly.SpeedMultiplier - isSpec: "True" - fullName: XRTK.Utilities.Physics.Distorters.DistorterWiggly.SpeedMultiplier - nameWithType: DistorterWiggly.SpeedMultiplier -- uid: XRTK.Utilities.Physics.Distorters.DistorterWiggly.StrengthMultiplier - name: StrengthMultiplier - href: api/XRTK.Utilities.Physics.Distorters.DistorterWiggly.html#XRTK_Utilities_Physics_Distorters_DistorterWiggly_StrengthMultiplier - commentId: P:XRTK.Utilities.Physics.Distorters.DistorterWiggly.StrengthMultiplier - fullName: XRTK.Utilities.Physics.Distorters.DistorterWiggly.StrengthMultiplier - nameWithType: DistorterWiggly.StrengthMultiplier -- uid: XRTK.Utilities.Physics.Distorters.DistorterWiggly.StrengthMultiplier* - name: StrengthMultiplier - href: api/XRTK.Utilities.Physics.Distorters.DistorterWiggly.html#XRTK_Utilities_Physics_Distorters_DistorterWiggly_StrengthMultiplier_ - commentId: Overload:XRTK.Utilities.Physics.Distorters.DistorterWiggly.StrengthMultiplier - isSpec: "True" - fullName: XRTK.Utilities.Physics.Distorters.DistorterWiggly.StrengthMultiplier - nameWithType: DistorterWiggly.StrengthMultiplier -- uid: XRTK.Utilities.Physics.GenericStabilizer - name: GenericStabilizer - href: api/XRTK.Utilities.Physics.GenericStabilizer.html - commentId: T:XRTK.Utilities.Physics.GenericStabilizer - fullName: XRTK.Utilities.Physics.GenericStabilizer - nameWithType: GenericStabilizer -- uid: XRTK.Utilities.Physics.GenericStabilizer.#ctor - name: GenericStabilizer() - href: api/XRTK.Utilities.Physics.GenericStabilizer.html#XRTK_Utilities_Physics_GenericStabilizer__ctor - commentId: M:XRTK.Utilities.Physics.GenericStabilizer.#ctor - fullName: XRTK.Utilities.Physics.GenericStabilizer.GenericStabilizer() - nameWithType: GenericStabilizer.GenericStabilizer() -- uid: XRTK.Utilities.Physics.GenericStabilizer.#ctor* - name: GenericStabilizer - href: api/XRTK.Utilities.Physics.GenericStabilizer.html#XRTK_Utilities_Physics_GenericStabilizer__ctor_ - commentId: Overload:XRTK.Utilities.Physics.GenericStabilizer.#ctor - isSpec: "True" - fullName: XRTK.Utilities.Physics.GenericStabilizer.GenericStabilizer - nameWithType: GenericStabilizer.GenericStabilizer -- uid: XRTK.Utilities.Physics.GenericStabilizer.StablePosition - name: StablePosition - href: api/XRTK.Utilities.Physics.GenericStabilizer.html#XRTK_Utilities_Physics_GenericStabilizer_StablePosition - commentId: P:XRTK.Utilities.Physics.GenericStabilizer.StablePosition - fullName: XRTK.Utilities.Physics.GenericStabilizer.StablePosition - nameWithType: GenericStabilizer.StablePosition -- uid: XRTK.Utilities.Physics.GenericStabilizer.StablePosition* - name: StablePosition - href: api/XRTK.Utilities.Physics.GenericStabilizer.html#XRTK_Utilities_Physics_GenericStabilizer_StablePosition_ - commentId: Overload:XRTK.Utilities.Physics.GenericStabilizer.StablePosition - isSpec: "True" - fullName: XRTK.Utilities.Physics.GenericStabilizer.StablePosition - nameWithType: GenericStabilizer.StablePosition -- uid: XRTK.Utilities.Physics.GenericStabilizer.StableRay - name: StableRay - href: api/XRTK.Utilities.Physics.GenericStabilizer.html#XRTK_Utilities_Physics_GenericStabilizer_StableRay - commentId: P:XRTK.Utilities.Physics.GenericStabilizer.StableRay - fullName: XRTK.Utilities.Physics.GenericStabilizer.StableRay - nameWithType: GenericStabilizer.StableRay -- uid: XRTK.Utilities.Physics.GenericStabilizer.StableRay* - name: StableRay - href: api/XRTK.Utilities.Physics.GenericStabilizer.html#XRTK_Utilities_Physics_GenericStabilizer_StableRay_ - commentId: Overload:XRTK.Utilities.Physics.GenericStabilizer.StableRay - isSpec: "True" - fullName: XRTK.Utilities.Physics.GenericStabilizer.StableRay - nameWithType: GenericStabilizer.StableRay -- uid: XRTK.Utilities.Physics.GenericStabilizer.StableRotation - name: StableRotation - href: api/XRTK.Utilities.Physics.GenericStabilizer.html#XRTK_Utilities_Physics_GenericStabilizer_StableRotation - commentId: P:XRTK.Utilities.Physics.GenericStabilizer.StableRotation - fullName: XRTK.Utilities.Physics.GenericStabilizer.StableRotation - nameWithType: GenericStabilizer.StableRotation -- uid: XRTK.Utilities.Physics.GenericStabilizer.StableRotation* - name: StableRotation - href: api/XRTK.Utilities.Physics.GenericStabilizer.html#XRTK_Utilities_Physics_GenericStabilizer_StableRotation_ - commentId: Overload:XRTK.Utilities.Physics.GenericStabilizer.StableRotation - isSpec: "True" - fullName: XRTK.Utilities.Physics.GenericStabilizer.StableRotation - nameWithType: GenericStabilizer.StableRotation -- uid: XRTK.Utilities.Physics.GenericStabilizer.StoredStabilitySamples - name: StoredStabilitySamples - href: api/XRTK.Utilities.Physics.GenericStabilizer.html#XRTK_Utilities_Physics_GenericStabilizer_StoredStabilitySamples - commentId: P:XRTK.Utilities.Physics.GenericStabilizer.StoredStabilitySamples - fullName: XRTK.Utilities.Physics.GenericStabilizer.StoredStabilitySamples - nameWithType: GenericStabilizer.StoredStabilitySamples -- uid: XRTK.Utilities.Physics.GenericStabilizer.StoredStabilitySamples* - name: StoredStabilitySamples - href: api/XRTK.Utilities.Physics.GenericStabilizer.html#XRTK_Utilities_Physics_GenericStabilizer_StoredStabilitySamples_ - commentId: Overload:XRTK.Utilities.Physics.GenericStabilizer.StoredStabilitySamples - isSpec: "True" - fullName: XRTK.Utilities.Physics.GenericStabilizer.StoredStabilitySamples - nameWithType: GenericStabilizer.StoredStabilitySamples -- uid: XRTK.Utilities.Physics.GenericStabilizer.UpdateStability(UnityEngine.Vector3,UnityEngine.Vector3) - name: UpdateStability(Vector3, Vector3) - href: api/XRTK.Utilities.Physics.GenericStabilizer.html#XRTK_Utilities_Physics_GenericStabilizer_UpdateStability_UnityEngine_Vector3_UnityEngine_Vector3_ - commentId: M:XRTK.Utilities.Physics.GenericStabilizer.UpdateStability(UnityEngine.Vector3,UnityEngine.Vector3) - fullName: XRTK.Utilities.Physics.GenericStabilizer.UpdateStability(UnityEngine.Vector3, UnityEngine.Vector3) - nameWithType: GenericStabilizer.UpdateStability(Vector3, Vector3) -- uid: XRTK.Utilities.Physics.GenericStabilizer.UpdateStability* - name: UpdateStability - href: api/XRTK.Utilities.Physics.GenericStabilizer.html#XRTK_Utilities_Physics_GenericStabilizer_UpdateStability_ - commentId: Overload:XRTK.Utilities.Physics.GenericStabilizer.UpdateStability - isSpec: "True" - fullName: XRTK.Utilities.Physics.GenericStabilizer.UpdateStability - nameWithType: GenericStabilizer.UpdateStability -- uid: XRTK.Utilities.Physics.InterpolationUtilities - name: InterpolationUtilities - href: api/XRTK.Utilities.Physics.InterpolationUtilities.html - commentId: T:XRTK.Utilities.Physics.InterpolationUtilities - fullName: XRTK.Utilities.Physics.InterpolationUtilities - nameWithType: InterpolationUtilities -- uid: XRTK.Utilities.Physics.InterpolationUtilities.ExpCoefficient(System.Single,System.Single) - name: ExpCoefficient(Single, Single) - href: api/XRTK.Utilities.Physics.InterpolationUtilities.html#XRTK_Utilities_Physics_InterpolationUtilities_ExpCoefficient_System_Single_System_Single_ - commentId: M:XRTK.Utilities.Physics.InterpolationUtilities.ExpCoefficient(System.Single,System.Single) - fullName: XRTK.Utilities.Physics.InterpolationUtilities.ExpCoefficient(System.Single, System.Single) - nameWithType: InterpolationUtilities.ExpCoefficient(Single, Single) -- uid: XRTK.Utilities.Physics.InterpolationUtilities.ExpCoefficient* - name: ExpCoefficient - href: api/XRTK.Utilities.Physics.InterpolationUtilities.html#XRTK_Utilities_Physics_InterpolationUtilities_ExpCoefficient_ - commentId: Overload:XRTK.Utilities.Physics.InterpolationUtilities.ExpCoefficient - isSpec: "True" - fullName: XRTK.Utilities.Physics.InterpolationUtilities.ExpCoefficient - nameWithType: InterpolationUtilities.ExpCoefficient -- uid: XRTK.Utilities.Physics.InterpolationUtilities.ExpDecay(System.Single,System.Single,System.Single,System.Single) - name: ExpDecay(Single, Single, Single, Single) - href: api/XRTK.Utilities.Physics.InterpolationUtilities.html#XRTK_Utilities_Physics_InterpolationUtilities_ExpDecay_System_Single_System_Single_System_Single_System_Single_ - commentId: M:XRTK.Utilities.Physics.InterpolationUtilities.ExpDecay(System.Single,System.Single,System.Single,System.Single) - fullName: XRTK.Utilities.Physics.InterpolationUtilities.ExpDecay(System.Single, System.Single, System.Single, System.Single) - nameWithType: InterpolationUtilities.ExpDecay(Single, Single, Single, Single) -- uid: XRTK.Utilities.Physics.InterpolationUtilities.ExpDecay(UnityEngine.Color,UnityEngine.Color,System.Single,System.Single) - name: ExpDecay(Color, Color, Single, Single) - href: api/XRTK.Utilities.Physics.InterpolationUtilities.html#XRTK_Utilities_Physics_InterpolationUtilities_ExpDecay_UnityEngine_Color_UnityEngine_Color_System_Single_System_Single_ - commentId: M:XRTK.Utilities.Physics.InterpolationUtilities.ExpDecay(UnityEngine.Color,UnityEngine.Color,System.Single,System.Single) - fullName: XRTK.Utilities.Physics.InterpolationUtilities.ExpDecay(UnityEngine.Color, UnityEngine.Color, System.Single, System.Single) - nameWithType: InterpolationUtilities.ExpDecay(Color, Color, Single, Single) -- uid: XRTK.Utilities.Physics.InterpolationUtilities.ExpDecay(UnityEngine.Quaternion,UnityEngine.Quaternion,System.Single,System.Single) - name: ExpDecay(Quaternion, Quaternion, Single, Single) - href: api/XRTK.Utilities.Physics.InterpolationUtilities.html#XRTK_Utilities_Physics_InterpolationUtilities_ExpDecay_UnityEngine_Quaternion_UnityEngine_Quaternion_System_Single_System_Single_ - commentId: M:XRTK.Utilities.Physics.InterpolationUtilities.ExpDecay(UnityEngine.Quaternion,UnityEngine.Quaternion,System.Single,System.Single) - fullName: XRTK.Utilities.Physics.InterpolationUtilities.ExpDecay(UnityEngine.Quaternion, UnityEngine.Quaternion, System.Single, System.Single) - nameWithType: InterpolationUtilities.ExpDecay(Quaternion, Quaternion, Single, Single) -- uid: XRTK.Utilities.Physics.InterpolationUtilities.ExpDecay(UnityEngine.Vector2,UnityEngine.Vector2,System.Single,System.Single) - name: ExpDecay(Vector2, Vector2, Single, Single) - href: api/XRTK.Utilities.Physics.InterpolationUtilities.html#XRTK_Utilities_Physics_InterpolationUtilities_ExpDecay_UnityEngine_Vector2_UnityEngine_Vector2_System_Single_System_Single_ - commentId: M:XRTK.Utilities.Physics.InterpolationUtilities.ExpDecay(UnityEngine.Vector2,UnityEngine.Vector2,System.Single,System.Single) - fullName: XRTK.Utilities.Physics.InterpolationUtilities.ExpDecay(UnityEngine.Vector2, UnityEngine.Vector2, System.Single, System.Single) - nameWithType: InterpolationUtilities.ExpDecay(Vector2, Vector2, Single, Single) -- uid: XRTK.Utilities.Physics.InterpolationUtilities.ExpDecay(UnityEngine.Vector3,UnityEngine.Vector3,System.Single,System.Single) - name: ExpDecay(Vector3, Vector3, Single, Single) - href: api/XRTK.Utilities.Physics.InterpolationUtilities.html#XRTK_Utilities_Physics_InterpolationUtilities_ExpDecay_UnityEngine_Vector3_UnityEngine_Vector3_System_Single_System_Single_ - commentId: M:XRTK.Utilities.Physics.InterpolationUtilities.ExpDecay(UnityEngine.Vector3,UnityEngine.Vector3,System.Single,System.Single) - fullName: XRTK.Utilities.Physics.InterpolationUtilities.ExpDecay(UnityEngine.Vector3, UnityEngine.Vector3, System.Single, System.Single) - nameWithType: InterpolationUtilities.ExpDecay(Vector3, Vector3, Single, Single) -- uid: XRTK.Utilities.Physics.InterpolationUtilities.ExpDecay* - name: ExpDecay - href: api/XRTK.Utilities.Physics.InterpolationUtilities.html#XRTK_Utilities_Physics_InterpolationUtilities_ExpDecay_ - commentId: Overload:XRTK.Utilities.Physics.InterpolationUtilities.ExpDecay - isSpec: "True" - fullName: XRTK.Utilities.Physics.InterpolationUtilities.ExpDecay - nameWithType: InterpolationUtilities.ExpDecay -- uid: XRTK.Utilities.Physics.Interpolator - name: Interpolator - href: api/XRTK.Utilities.Physics.Interpolator.html - commentId: T:XRTK.Utilities.Physics.Interpolator - fullName: XRTK.Utilities.Physics.Interpolator - nameWithType: Interpolator -- uid: XRTK.Utilities.Physics.Interpolator.AnimatingLocalRotation - name: AnimatingLocalRotation - href: api/XRTK.Utilities.Physics.Interpolator.html#XRTK_Utilities_Physics_Interpolator_AnimatingLocalRotation - commentId: P:XRTK.Utilities.Physics.Interpolator.AnimatingLocalRotation - fullName: XRTK.Utilities.Physics.Interpolator.AnimatingLocalRotation - nameWithType: Interpolator.AnimatingLocalRotation -- uid: XRTK.Utilities.Physics.Interpolator.AnimatingLocalRotation* - name: AnimatingLocalRotation - href: api/XRTK.Utilities.Physics.Interpolator.html#XRTK_Utilities_Physics_Interpolator_AnimatingLocalRotation_ - commentId: Overload:XRTK.Utilities.Physics.Interpolator.AnimatingLocalRotation - isSpec: "True" - fullName: XRTK.Utilities.Physics.Interpolator.AnimatingLocalRotation - nameWithType: Interpolator.AnimatingLocalRotation -- uid: XRTK.Utilities.Physics.Interpolator.AnimatingLocalScale - name: AnimatingLocalScale - href: api/XRTK.Utilities.Physics.Interpolator.html#XRTK_Utilities_Physics_Interpolator_AnimatingLocalScale - commentId: P:XRTK.Utilities.Physics.Interpolator.AnimatingLocalScale - fullName: XRTK.Utilities.Physics.Interpolator.AnimatingLocalScale - nameWithType: Interpolator.AnimatingLocalScale -- uid: XRTK.Utilities.Physics.Interpolator.AnimatingLocalScale* - name: AnimatingLocalScale - href: api/XRTK.Utilities.Physics.Interpolator.html#XRTK_Utilities_Physics_Interpolator_AnimatingLocalScale_ - commentId: Overload:XRTK.Utilities.Physics.Interpolator.AnimatingLocalScale - isSpec: "True" - fullName: XRTK.Utilities.Physics.Interpolator.AnimatingLocalScale - nameWithType: Interpolator.AnimatingLocalScale -- uid: XRTK.Utilities.Physics.Interpolator.AnimatingPosition - name: AnimatingPosition - href: api/XRTK.Utilities.Physics.Interpolator.html#XRTK_Utilities_Physics_Interpolator_AnimatingPosition - commentId: P:XRTK.Utilities.Physics.Interpolator.AnimatingPosition - fullName: XRTK.Utilities.Physics.Interpolator.AnimatingPosition - nameWithType: Interpolator.AnimatingPosition -- uid: XRTK.Utilities.Physics.Interpolator.AnimatingPosition* - name: AnimatingPosition - href: api/XRTK.Utilities.Physics.Interpolator.html#XRTK_Utilities_Physics_Interpolator_AnimatingPosition_ - commentId: Overload:XRTK.Utilities.Physics.Interpolator.AnimatingPosition - isSpec: "True" - fullName: XRTK.Utilities.Physics.Interpolator.AnimatingPosition - nameWithType: Interpolator.AnimatingPosition -- uid: XRTK.Utilities.Physics.Interpolator.AnimatingRotation - name: AnimatingRotation - href: api/XRTK.Utilities.Physics.Interpolator.html#XRTK_Utilities_Physics_Interpolator_AnimatingRotation - commentId: P:XRTK.Utilities.Physics.Interpolator.AnimatingRotation - fullName: XRTK.Utilities.Physics.Interpolator.AnimatingRotation - nameWithType: Interpolator.AnimatingRotation -- uid: XRTK.Utilities.Physics.Interpolator.AnimatingRotation* - name: AnimatingRotation - href: api/XRTK.Utilities.Physics.Interpolator.html#XRTK_Utilities_Physics_Interpolator_AnimatingRotation_ - commentId: Overload:XRTK.Utilities.Physics.Interpolator.AnimatingRotation - isSpec: "True" - fullName: XRTK.Utilities.Physics.Interpolator.AnimatingRotation - nameWithType: Interpolator.AnimatingRotation -- uid: XRTK.Utilities.Physics.Interpolator.InterpolationDone - name: InterpolationDone - href: api/XRTK.Utilities.Physics.Interpolator.html#XRTK_Utilities_Physics_Interpolator_InterpolationDone - commentId: E:XRTK.Utilities.Physics.Interpolator.InterpolationDone - fullName: XRTK.Utilities.Physics.Interpolator.InterpolationDone - nameWithType: Interpolator.InterpolationDone -- uid: XRTK.Utilities.Physics.Interpolator.InterpolationStarted - name: InterpolationStarted - href: api/XRTK.Utilities.Physics.Interpolator.html#XRTK_Utilities_Physics_Interpolator_InterpolationStarted - commentId: E:XRTK.Utilities.Physics.Interpolator.InterpolationStarted - fullName: XRTK.Utilities.Physics.Interpolator.InterpolationStarted - nameWithType: Interpolator.InterpolationStarted -- uid: XRTK.Utilities.Physics.Interpolator.NonLinearInterpolateTo(UnityEngine.Vector3,UnityEngine.Vector3,System.Single,System.Single) - name: NonLinearInterpolateTo(Vector3, Vector3, Single, Single) - href: api/XRTK.Utilities.Physics.Interpolator.html#XRTK_Utilities_Physics_Interpolator_NonLinearInterpolateTo_UnityEngine_Vector3_UnityEngine_Vector3_System_Single_System_Single_ - commentId: M:XRTK.Utilities.Physics.Interpolator.NonLinearInterpolateTo(UnityEngine.Vector3,UnityEngine.Vector3,System.Single,System.Single) - fullName: XRTK.Utilities.Physics.Interpolator.NonLinearInterpolateTo(UnityEngine.Vector3, UnityEngine.Vector3, System.Single, System.Single) - nameWithType: Interpolator.NonLinearInterpolateTo(Vector3, Vector3, Single, Single) -- uid: XRTK.Utilities.Physics.Interpolator.NonLinearInterpolateTo* - name: NonLinearInterpolateTo - href: api/XRTK.Utilities.Physics.Interpolator.html#XRTK_Utilities_Physics_Interpolator_NonLinearInterpolateTo_ - commentId: Overload:XRTK.Utilities.Physics.Interpolator.NonLinearInterpolateTo - isSpec: "True" - fullName: XRTK.Utilities.Physics.Interpolator.NonLinearInterpolateTo - nameWithType: Interpolator.NonLinearInterpolateTo -- uid: XRTK.Utilities.Physics.Interpolator.PositionVelocity - name: PositionVelocity - href: api/XRTK.Utilities.Physics.Interpolator.html#XRTK_Utilities_Physics_Interpolator_PositionVelocity - commentId: P:XRTK.Utilities.Physics.Interpolator.PositionVelocity - fullName: XRTK.Utilities.Physics.Interpolator.PositionVelocity - nameWithType: Interpolator.PositionVelocity -- uid: XRTK.Utilities.Physics.Interpolator.PositionVelocity* - name: PositionVelocity - href: api/XRTK.Utilities.Physics.Interpolator.html#XRTK_Utilities_Physics_Interpolator_PositionVelocity_ - commentId: Overload:XRTK.Utilities.Physics.Interpolator.PositionVelocity - isSpec: "True" - fullName: XRTK.Utilities.Physics.Interpolator.PositionVelocity - nameWithType: Interpolator.PositionVelocity -- uid: XRTK.Utilities.Physics.Interpolator.Reset - name: Reset() - href: api/XRTK.Utilities.Physics.Interpolator.html#XRTK_Utilities_Physics_Interpolator_Reset - commentId: M:XRTK.Utilities.Physics.Interpolator.Reset - fullName: XRTK.Utilities.Physics.Interpolator.Reset() - nameWithType: Interpolator.Reset() -- uid: XRTK.Utilities.Physics.Interpolator.Reset* - name: Reset - href: api/XRTK.Utilities.Physics.Interpolator.html#XRTK_Utilities_Physics_Interpolator_Reset_ - commentId: Overload:XRTK.Utilities.Physics.Interpolator.Reset - isSpec: "True" - fullName: XRTK.Utilities.Physics.Interpolator.Reset - nameWithType: Interpolator.Reset -- uid: XRTK.Utilities.Physics.Interpolator.Running - name: Running - href: api/XRTK.Utilities.Physics.Interpolator.html#XRTK_Utilities_Physics_Interpolator_Running - commentId: P:XRTK.Utilities.Physics.Interpolator.Running - fullName: XRTK.Utilities.Physics.Interpolator.Running - nameWithType: Interpolator.Running -- uid: XRTK.Utilities.Physics.Interpolator.Running* - name: Running - href: api/XRTK.Utilities.Physics.Interpolator.html#XRTK_Utilities_Physics_Interpolator_Running_ - commentId: Overload:XRTK.Utilities.Physics.Interpolator.Running - isSpec: "True" - fullName: XRTK.Utilities.Physics.Interpolator.Running - nameWithType: Interpolator.Running -- uid: XRTK.Utilities.Physics.Interpolator.SetTargetLocalRotation(UnityEngine.Quaternion) - name: SetTargetLocalRotation(Quaternion) - href: api/XRTK.Utilities.Physics.Interpolator.html#XRTK_Utilities_Physics_Interpolator_SetTargetLocalRotation_UnityEngine_Quaternion_ - commentId: M:XRTK.Utilities.Physics.Interpolator.SetTargetLocalRotation(UnityEngine.Quaternion) - fullName: XRTK.Utilities.Physics.Interpolator.SetTargetLocalRotation(UnityEngine.Quaternion) - nameWithType: Interpolator.SetTargetLocalRotation(Quaternion) -- uid: XRTK.Utilities.Physics.Interpolator.SetTargetLocalRotation* - name: SetTargetLocalRotation - href: api/XRTK.Utilities.Physics.Interpolator.html#XRTK_Utilities_Physics_Interpolator_SetTargetLocalRotation_ - commentId: Overload:XRTK.Utilities.Physics.Interpolator.SetTargetLocalRotation - isSpec: "True" - fullName: XRTK.Utilities.Physics.Interpolator.SetTargetLocalRotation - nameWithType: Interpolator.SetTargetLocalRotation -- uid: XRTK.Utilities.Physics.Interpolator.SetTargetLocalScale(UnityEngine.Vector3) - name: SetTargetLocalScale(Vector3) - href: api/XRTK.Utilities.Physics.Interpolator.html#XRTK_Utilities_Physics_Interpolator_SetTargetLocalScale_UnityEngine_Vector3_ - commentId: M:XRTK.Utilities.Physics.Interpolator.SetTargetLocalScale(UnityEngine.Vector3) - fullName: XRTK.Utilities.Physics.Interpolator.SetTargetLocalScale(UnityEngine.Vector3) - nameWithType: Interpolator.SetTargetLocalScale(Vector3) -- uid: XRTK.Utilities.Physics.Interpolator.SetTargetLocalScale* - name: SetTargetLocalScale - href: api/XRTK.Utilities.Physics.Interpolator.html#XRTK_Utilities_Physics_Interpolator_SetTargetLocalScale_ - commentId: Overload:XRTK.Utilities.Physics.Interpolator.SetTargetLocalScale - isSpec: "True" - fullName: XRTK.Utilities.Physics.Interpolator.SetTargetLocalScale - nameWithType: Interpolator.SetTargetLocalScale -- uid: XRTK.Utilities.Physics.Interpolator.SetTargetPosition(UnityEngine.Vector3) - name: SetTargetPosition(Vector3) - href: api/XRTK.Utilities.Physics.Interpolator.html#XRTK_Utilities_Physics_Interpolator_SetTargetPosition_UnityEngine_Vector3_ - commentId: M:XRTK.Utilities.Physics.Interpolator.SetTargetPosition(UnityEngine.Vector3) - fullName: XRTK.Utilities.Physics.Interpolator.SetTargetPosition(UnityEngine.Vector3) - nameWithType: Interpolator.SetTargetPosition(Vector3) -- uid: XRTK.Utilities.Physics.Interpolator.SetTargetPosition* - name: SetTargetPosition - href: api/XRTK.Utilities.Physics.Interpolator.html#XRTK_Utilities_Physics_Interpolator_SetTargetPosition_ - commentId: Overload:XRTK.Utilities.Physics.Interpolator.SetTargetPosition - isSpec: "True" - fullName: XRTK.Utilities.Physics.Interpolator.SetTargetPosition - nameWithType: Interpolator.SetTargetPosition -- uid: XRTK.Utilities.Physics.Interpolator.SetTargetRotation(UnityEngine.Quaternion) - name: SetTargetRotation(Quaternion) - href: api/XRTK.Utilities.Physics.Interpolator.html#XRTK_Utilities_Physics_Interpolator_SetTargetRotation_UnityEngine_Quaternion_ - commentId: M:XRTK.Utilities.Physics.Interpolator.SetTargetRotation(UnityEngine.Quaternion) - fullName: XRTK.Utilities.Physics.Interpolator.SetTargetRotation(UnityEngine.Quaternion) - nameWithType: Interpolator.SetTargetRotation(Quaternion) -- uid: XRTK.Utilities.Physics.Interpolator.SetTargetRotation* - name: SetTargetRotation - href: api/XRTK.Utilities.Physics.Interpolator.html#XRTK_Utilities_Physics_Interpolator_SetTargetRotation_ - commentId: Overload:XRTK.Utilities.Physics.Interpolator.SetTargetRotation - isSpec: "True" - fullName: XRTK.Utilities.Physics.Interpolator.SetTargetRotation - nameWithType: Interpolator.SetTargetRotation -- uid: XRTK.Utilities.Physics.Interpolator.SmoothLerpToTarget - name: SmoothLerpToTarget - href: api/XRTK.Utilities.Physics.Interpolator.html#XRTK_Utilities_Physics_Interpolator_SmoothLerpToTarget - commentId: P:XRTK.Utilities.Physics.Interpolator.SmoothLerpToTarget - fullName: XRTK.Utilities.Physics.Interpolator.SmoothLerpToTarget - nameWithType: Interpolator.SmoothLerpToTarget -- uid: XRTK.Utilities.Physics.Interpolator.SmoothLerpToTarget* - name: SmoothLerpToTarget - href: api/XRTK.Utilities.Physics.Interpolator.html#XRTK_Utilities_Physics_Interpolator_SmoothLerpToTarget_ - commentId: Overload:XRTK.Utilities.Physics.Interpolator.SmoothLerpToTarget - isSpec: "True" - fullName: XRTK.Utilities.Physics.Interpolator.SmoothLerpToTarget - nameWithType: Interpolator.SmoothLerpToTarget -- uid: XRTK.Utilities.Physics.Interpolator.SmoothPositionLerpRatio - name: SmoothPositionLerpRatio - href: api/XRTK.Utilities.Physics.Interpolator.html#XRTK_Utilities_Physics_Interpolator_SmoothPositionLerpRatio - commentId: P:XRTK.Utilities.Physics.Interpolator.SmoothPositionLerpRatio - fullName: XRTK.Utilities.Physics.Interpolator.SmoothPositionLerpRatio - nameWithType: Interpolator.SmoothPositionLerpRatio -- uid: XRTK.Utilities.Physics.Interpolator.SmoothPositionLerpRatio* - name: SmoothPositionLerpRatio - href: api/XRTK.Utilities.Physics.Interpolator.html#XRTK_Utilities_Physics_Interpolator_SmoothPositionLerpRatio_ - commentId: Overload:XRTK.Utilities.Physics.Interpolator.SmoothPositionLerpRatio - isSpec: "True" - fullName: XRTK.Utilities.Physics.Interpolator.SmoothPositionLerpRatio - nameWithType: Interpolator.SmoothPositionLerpRatio -- uid: XRTK.Utilities.Physics.Interpolator.SmoothRotationLerpRatio - name: SmoothRotationLerpRatio - href: api/XRTK.Utilities.Physics.Interpolator.html#XRTK_Utilities_Physics_Interpolator_SmoothRotationLerpRatio - commentId: P:XRTK.Utilities.Physics.Interpolator.SmoothRotationLerpRatio - fullName: XRTK.Utilities.Physics.Interpolator.SmoothRotationLerpRatio - nameWithType: Interpolator.SmoothRotationLerpRatio -- uid: XRTK.Utilities.Physics.Interpolator.SmoothRotationLerpRatio* - name: SmoothRotationLerpRatio - href: api/XRTK.Utilities.Physics.Interpolator.html#XRTK_Utilities_Physics_Interpolator_SmoothRotationLerpRatio_ - commentId: Overload:XRTK.Utilities.Physics.Interpolator.SmoothRotationLerpRatio - isSpec: "True" - fullName: XRTK.Utilities.Physics.Interpolator.SmoothRotationLerpRatio - nameWithType: Interpolator.SmoothRotationLerpRatio -- uid: XRTK.Utilities.Physics.Interpolator.SmoothScaleLerpRatio - name: SmoothScaleLerpRatio - href: api/XRTK.Utilities.Physics.Interpolator.html#XRTK_Utilities_Physics_Interpolator_SmoothScaleLerpRatio - commentId: P:XRTK.Utilities.Physics.Interpolator.SmoothScaleLerpRatio - fullName: XRTK.Utilities.Physics.Interpolator.SmoothScaleLerpRatio - nameWithType: Interpolator.SmoothScaleLerpRatio -- uid: XRTK.Utilities.Physics.Interpolator.SmoothScaleLerpRatio* - name: SmoothScaleLerpRatio - href: api/XRTK.Utilities.Physics.Interpolator.html#XRTK_Utilities_Physics_Interpolator_SmoothScaleLerpRatio_ - commentId: Overload:XRTK.Utilities.Physics.Interpolator.SmoothScaleLerpRatio - isSpec: "True" - fullName: XRTK.Utilities.Physics.Interpolator.SmoothScaleLerpRatio - nameWithType: Interpolator.SmoothScaleLerpRatio -- uid: XRTK.Utilities.Physics.Interpolator.SnapToTarget - name: SnapToTarget() - href: api/XRTK.Utilities.Physics.Interpolator.html#XRTK_Utilities_Physics_Interpolator_SnapToTarget - commentId: M:XRTK.Utilities.Physics.Interpolator.SnapToTarget - fullName: XRTK.Utilities.Physics.Interpolator.SnapToTarget() - nameWithType: Interpolator.SnapToTarget() -- uid: XRTK.Utilities.Physics.Interpolator.SnapToTarget* - name: SnapToTarget - href: api/XRTK.Utilities.Physics.Interpolator.html#XRTK_Utilities_Physics_Interpolator_SnapToTarget_ - commentId: Overload:XRTK.Utilities.Physics.Interpolator.SnapToTarget - isSpec: "True" - fullName: XRTK.Utilities.Physics.Interpolator.SnapToTarget - nameWithType: Interpolator.SnapToTarget -- uid: XRTK.Utilities.Physics.Interpolator.StopInterpolating - name: StopInterpolating() - href: api/XRTK.Utilities.Physics.Interpolator.html#XRTK_Utilities_Physics_Interpolator_StopInterpolating - commentId: M:XRTK.Utilities.Physics.Interpolator.StopInterpolating - fullName: XRTK.Utilities.Physics.Interpolator.StopInterpolating() - nameWithType: Interpolator.StopInterpolating() -- uid: XRTK.Utilities.Physics.Interpolator.StopInterpolating* - name: StopInterpolating - href: api/XRTK.Utilities.Physics.Interpolator.html#XRTK_Utilities_Physics_Interpolator_StopInterpolating_ - commentId: Overload:XRTK.Utilities.Physics.Interpolator.StopInterpolating - isSpec: "True" - fullName: XRTK.Utilities.Physics.Interpolator.StopInterpolating - nameWithType: Interpolator.StopInterpolating -- uid: XRTK.Utilities.Physics.Interpolator.TargetLocalRotation - name: TargetLocalRotation - href: api/XRTK.Utilities.Physics.Interpolator.html#XRTK_Utilities_Physics_Interpolator_TargetLocalRotation - commentId: P:XRTK.Utilities.Physics.Interpolator.TargetLocalRotation - fullName: XRTK.Utilities.Physics.Interpolator.TargetLocalRotation - nameWithType: Interpolator.TargetLocalRotation -- uid: XRTK.Utilities.Physics.Interpolator.TargetLocalRotation* - name: TargetLocalRotation - href: api/XRTK.Utilities.Physics.Interpolator.html#XRTK_Utilities_Physics_Interpolator_TargetLocalRotation_ - commentId: Overload:XRTK.Utilities.Physics.Interpolator.TargetLocalRotation - isSpec: "True" - fullName: XRTK.Utilities.Physics.Interpolator.TargetLocalRotation - nameWithType: Interpolator.TargetLocalRotation -- uid: XRTK.Utilities.Physics.Interpolator.TargetLocalScale - name: TargetLocalScale - href: api/XRTK.Utilities.Physics.Interpolator.html#XRTK_Utilities_Physics_Interpolator_TargetLocalScale - commentId: P:XRTK.Utilities.Physics.Interpolator.TargetLocalScale - fullName: XRTK.Utilities.Physics.Interpolator.TargetLocalScale - nameWithType: Interpolator.TargetLocalScale -- uid: XRTK.Utilities.Physics.Interpolator.TargetLocalScale* - name: TargetLocalScale - href: api/XRTK.Utilities.Physics.Interpolator.html#XRTK_Utilities_Physics_Interpolator_TargetLocalScale_ - commentId: Overload:XRTK.Utilities.Physics.Interpolator.TargetLocalScale - isSpec: "True" - fullName: XRTK.Utilities.Physics.Interpolator.TargetLocalScale - nameWithType: Interpolator.TargetLocalScale -- uid: XRTK.Utilities.Physics.Interpolator.TargetPosition - name: TargetPosition - href: api/XRTK.Utilities.Physics.Interpolator.html#XRTK_Utilities_Physics_Interpolator_TargetPosition - commentId: P:XRTK.Utilities.Physics.Interpolator.TargetPosition - fullName: XRTK.Utilities.Physics.Interpolator.TargetPosition - nameWithType: Interpolator.TargetPosition -- uid: XRTK.Utilities.Physics.Interpolator.TargetPosition* - name: TargetPosition - href: api/XRTK.Utilities.Physics.Interpolator.html#XRTK_Utilities_Physics_Interpolator_TargetPosition_ - commentId: Overload:XRTK.Utilities.Physics.Interpolator.TargetPosition - isSpec: "True" - fullName: XRTK.Utilities.Physics.Interpolator.TargetPosition - nameWithType: Interpolator.TargetPosition -- uid: XRTK.Utilities.Physics.Interpolator.TargetRotation - name: TargetRotation - href: api/XRTK.Utilities.Physics.Interpolator.html#XRTK_Utilities_Physics_Interpolator_TargetRotation - commentId: P:XRTK.Utilities.Physics.Interpolator.TargetRotation - fullName: XRTK.Utilities.Physics.Interpolator.TargetRotation - nameWithType: Interpolator.TargetRotation -- uid: XRTK.Utilities.Physics.Interpolator.TargetRotation* - name: TargetRotation - href: api/XRTK.Utilities.Physics.Interpolator.html#XRTK_Utilities_Physics_Interpolator_TargetRotation_ - commentId: Overload:XRTK.Utilities.Physics.Interpolator.TargetRotation - isSpec: "True" - fullName: XRTK.Utilities.Physics.Interpolator.TargetRotation - nameWithType: Interpolator.TargetRotation -- uid: XRTK.Utilities.Physics.MixedRealityRaycaster - name: MixedRealityRaycaster - href: api/XRTK.Utilities.Physics.MixedRealityRaycaster.html - commentId: T:XRTK.Utilities.Physics.MixedRealityRaycaster - fullName: XRTK.Utilities.Physics.MixedRealityRaycaster - nameWithType: MixedRealityRaycaster -- uid: XRTK.Utilities.Physics.MixedRealityRaycaster.DebugEnabled - name: DebugEnabled - href: api/XRTK.Utilities.Physics.MixedRealityRaycaster.html#XRTK_Utilities_Physics_MixedRealityRaycaster_DebugEnabled - commentId: F:XRTK.Utilities.Physics.MixedRealityRaycaster.DebugEnabled - fullName: XRTK.Utilities.Physics.MixedRealityRaycaster.DebugEnabled - nameWithType: MixedRealityRaycaster.DebugEnabled -- uid: XRTK.Utilities.Physics.MixedRealityRaycaster.RaycastBoxPhysicsStep(XRTK.Definitions.Physics.RayStep,UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Matrix4x4,System.Single,UnityEngine.LayerMask[],System.Int32,System.Boolean,UnityEngine.Vector3[]@,UnityEngine.Vector3[]@,System.Boolean[]@) - name: RaycastBoxPhysicsStep(RayStep, Vector3, Vector3, Matrix4x4, Single, LayerMask[], Int32, Boolean, out Vector3[], out Vector3[], out Boolean[]) - href: api/XRTK.Utilities.Physics.MixedRealityRaycaster.html#XRTK_Utilities_Physics_MixedRealityRaycaster_RaycastBoxPhysicsStep_XRTK_Definitions_Physics_RayStep_UnityEngine_Vector3_UnityEngine_Vector3_UnityEngine_Matrix4x4_System_Single_UnityEngine_LayerMask___System_Int32_System_Boolean_UnityEngine_Vector3____UnityEngine_Vector3____System_Boolean____ - commentId: M:XRTK.Utilities.Physics.MixedRealityRaycaster.RaycastBoxPhysicsStep(XRTK.Definitions.Physics.RayStep,UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.Matrix4x4,System.Single,UnityEngine.LayerMask[],System.Int32,System.Boolean,UnityEngine.Vector3[]@,UnityEngine.Vector3[]@,System.Boolean[]@) - name.vb: RaycastBoxPhysicsStep(RayStep, Vector3, Vector3, Matrix4x4, Single, LayerMask(), Int32, Boolean, ByRef Vector3(), ByRef Vector3(), ByRef Boolean()) - fullName: XRTK.Utilities.Physics.MixedRealityRaycaster.RaycastBoxPhysicsStep(XRTK.Definitions.Physics.RayStep, UnityEngine.Vector3, UnityEngine.Vector3, UnityEngine.Matrix4x4, System.Single, UnityEngine.LayerMask[], System.Int32, System.Boolean, out UnityEngine.Vector3[], out UnityEngine.Vector3[], out System.Boolean[]) - fullName.vb: XRTK.Utilities.Physics.MixedRealityRaycaster.RaycastBoxPhysicsStep(XRTK.Definitions.Physics.RayStep, UnityEngine.Vector3, UnityEngine.Vector3, UnityEngine.Matrix4x4, System.Single, UnityEngine.LayerMask(), System.Int32, System.Boolean, ByRef UnityEngine.Vector3(), ByRef UnityEngine.Vector3(), ByRef System.Boolean()) - nameWithType: MixedRealityRaycaster.RaycastBoxPhysicsStep(RayStep, Vector3, Vector3, Matrix4x4, Single, LayerMask[], Int32, Boolean, out Vector3[], out Vector3[], out Boolean[]) - nameWithType.vb: MixedRealityRaycaster.RaycastBoxPhysicsStep(RayStep, Vector3, Vector3, Matrix4x4, Single, LayerMask(), Int32, Boolean, ByRef Vector3(), ByRef Vector3(), ByRef Boolean()) -- uid: XRTK.Utilities.Physics.MixedRealityRaycaster.RaycastBoxPhysicsStep* - name: RaycastBoxPhysicsStep - href: api/XRTK.Utilities.Physics.MixedRealityRaycaster.html#XRTK_Utilities_Physics_MixedRealityRaycaster_RaycastBoxPhysicsStep_ - commentId: Overload:XRTK.Utilities.Physics.MixedRealityRaycaster.RaycastBoxPhysicsStep - isSpec: "True" - fullName: XRTK.Utilities.Physics.MixedRealityRaycaster.RaycastBoxPhysicsStep - nameWithType: MixedRealityRaycaster.RaycastBoxPhysicsStep -- uid: XRTK.Utilities.Physics.MixedRealityRaycaster.RaycastSimplePhysicsStep(XRTK.Definitions.Physics.RayStep,System.Single,UnityEngine.LayerMask[],UnityEngine.RaycastHit@) - name: RaycastSimplePhysicsStep(RayStep, Single, LayerMask[], out RaycastHit) - href: api/XRTK.Utilities.Physics.MixedRealityRaycaster.html#XRTK_Utilities_Physics_MixedRealityRaycaster_RaycastSimplePhysicsStep_XRTK_Definitions_Physics_RayStep_System_Single_UnityEngine_LayerMask___UnityEngine_RaycastHit__ - commentId: M:XRTK.Utilities.Physics.MixedRealityRaycaster.RaycastSimplePhysicsStep(XRTK.Definitions.Physics.RayStep,System.Single,UnityEngine.LayerMask[],UnityEngine.RaycastHit@) - name.vb: RaycastSimplePhysicsStep(RayStep, Single, LayerMask(), ByRef RaycastHit) - fullName: XRTK.Utilities.Physics.MixedRealityRaycaster.RaycastSimplePhysicsStep(XRTK.Definitions.Physics.RayStep, System.Single, UnityEngine.LayerMask[], out UnityEngine.RaycastHit) - fullName.vb: XRTK.Utilities.Physics.MixedRealityRaycaster.RaycastSimplePhysicsStep(XRTK.Definitions.Physics.RayStep, System.Single, UnityEngine.LayerMask(), ByRef UnityEngine.RaycastHit) - nameWithType: MixedRealityRaycaster.RaycastSimplePhysicsStep(RayStep, Single, LayerMask[], out RaycastHit) - nameWithType.vb: MixedRealityRaycaster.RaycastSimplePhysicsStep(RayStep, Single, LayerMask(), ByRef RaycastHit) -- uid: XRTK.Utilities.Physics.MixedRealityRaycaster.RaycastSimplePhysicsStep(XRTK.Definitions.Physics.RayStep,UnityEngine.LayerMask[],UnityEngine.RaycastHit@) - name: RaycastSimplePhysicsStep(RayStep, LayerMask[], out RaycastHit) - href: api/XRTK.Utilities.Physics.MixedRealityRaycaster.html#XRTK_Utilities_Physics_MixedRealityRaycaster_RaycastSimplePhysicsStep_XRTK_Definitions_Physics_RayStep_UnityEngine_LayerMask___UnityEngine_RaycastHit__ - commentId: M:XRTK.Utilities.Physics.MixedRealityRaycaster.RaycastSimplePhysicsStep(XRTK.Definitions.Physics.RayStep,UnityEngine.LayerMask[],UnityEngine.RaycastHit@) - name.vb: RaycastSimplePhysicsStep(RayStep, LayerMask(), ByRef RaycastHit) - fullName: XRTK.Utilities.Physics.MixedRealityRaycaster.RaycastSimplePhysicsStep(XRTK.Definitions.Physics.RayStep, UnityEngine.LayerMask[], out UnityEngine.RaycastHit) - fullName.vb: XRTK.Utilities.Physics.MixedRealityRaycaster.RaycastSimplePhysicsStep(XRTK.Definitions.Physics.RayStep, UnityEngine.LayerMask(), ByRef UnityEngine.RaycastHit) - nameWithType: MixedRealityRaycaster.RaycastSimplePhysicsStep(RayStep, LayerMask[], out RaycastHit) - nameWithType.vb: MixedRealityRaycaster.RaycastSimplePhysicsStep(RayStep, LayerMask(), ByRef RaycastHit) -- uid: XRTK.Utilities.Physics.MixedRealityRaycaster.RaycastSimplePhysicsStep* - name: RaycastSimplePhysicsStep - href: api/XRTK.Utilities.Physics.MixedRealityRaycaster.html#XRTK_Utilities_Physics_MixedRealityRaycaster_RaycastSimplePhysicsStep_ - commentId: Overload:XRTK.Utilities.Physics.MixedRealityRaycaster.RaycastSimplePhysicsStep - isSpec: "True" - fullName: XRTK.Utilities.Physics.MixedRealityRaycaster.RaycastSimplePhysicsStep - nameWithType: MixedRealityRaycaster.RaycastSimplePhysicsStep -- uid: XRTK.Utilities.Physics.MixedRealityRaycaster.RaycastSpherePhysicsStep(XRTK.Definitions.Physics.RayStep,System.Single,System.Single,UnityEngine.LayerMask[],UnityEngine.RaycastHit@) - name: RaycastSpherePhysicsStep(RayStep, Single, Single, LayerMask[], out RaycastHit) - href: api/XRTK.Utilities.Physics.MixedRealityRaycaster.html#XRTK_Utilities_Physics_MixedRealityRaycaster_RaycastSpherePhysicsStep_XRTK_Definitions_Physics_RayStep_System_Single_System_Single_UnityEngine_LayerMask___UnityEngine_RaycastHit__ - commentId: M:XRTK.Utilities.Physics.MixedRealityRaycaster.RaycastSpherePhysicsStep(XRTK.Definitions.Physics.RayStep,System.Single,System.Single,UnityEngine.LayerMask[],UnityEngine.RaycastHit@) - name.vb: RaycastSpherePhysicsStep(RayStep, Single, Single, LayerMask(), ByRef RaycastHit) - fullName: XRTK.Utilities.Physics.MixedRealityRaycaster.RaycastSpherePhysicsStep(XRTK.Definitions.Physics.RayStep, System.Single, System.Single, UnityEngine.LayerMask[], out UnityEngine.RaycastHit) - fullName.vb: XRTK.Utilities.Physics.MixedRealityRaycaster.RaycastSpherePhysicsStep(XRTK.Definitions.Physics.RayStep, System.Single, System.Single, UnityEngine.LayerMask(), ByRef UnityEngine.RaycastHit) - nameWithType: MixedRealityRaycaster.RaycastSpherePhysicsStep(RayStep, Single, Single, LayerMask[], out RaycastHit) - nameWithType.vb: MixedRealityRaycaster.RaycastSpherePhysicsStep(RayStep, Single, Single, LayerMask(), ByRef RaycastHit) -- uid: XRTK.Utilities.Physics.MixedRealityRaycaster.RaycastSpherePhysicsStep(XRTK.Definitions.Physics.RayStep,System.Single,UnityEngine.LayerMask[],UnityEngine.RaycastHit@) - name: RaycastSpherePhysicsStep(RayStep, Single, LayerMask[], out RaycastHit) - href: api/XRTK.Utilities.Physics.MixedRealityRaycaster.html#XRTK_Utilities_Physics_MixedRealityRaycaster_RaycastSpherePhysicsStep_XRTK_Definitions_Physics_RayStep_System_Single_UnityEngine_LayerMask___UnityEngine_RaycastHit__ - commentId: M:XRTK.Utilities.Physics.MixedRealityRaycaster.RaycastSpherePhysicsStep(XRTK.Definitions.Physics.RayStep,System.Single,UnityEngine.LayerMask[],UnityEngine.RaycastHit@) - name.vb: RaycastSpherePhysicsStep(RayStep, Single, LayerMask(), ByRef RaycastHit) - fullName: XRTK.Utilities.Physics.MixedRealityRaycaster.RaycastSpherePhysicsStep(XRTK.Definitions.Physics.RayStep, System.Single, UnityEngine.LayerMask[], out UnityEngine.RaycastHit) - fullName.vb: XRTK.Utilities.Physics.MixedRealityRaycaster.RaycastSpherePhysicsStep(XRTK.Definitions.Physics.RayStep, System.Single, UnityEngine.LayerMask(), ByRef UnityEngine.RaycastHit) - nameWithType: MixedRealityRaycaster.RaycastSpherePhysicsStep(RayStep, Single, LayerMask[], out RaycastHit) - nameWithType.vb: MixedRealityRaycaster.RaycastSpherePhysicsStep(RayStep, Single, LayerMask(), ByRef RaycastHit) -- uid: XRTK.Utilities.Physics.MixedRealityRaycaster.RaycastSpherePhysicsStep* - name: RaycastSpherePhysicsStep - href: api/XRTK.Utilities.Physics.MixedRealityRaycaster.html#XRTK_Utilities_Physics_MixedRealityRaycaster_RaycastSpherePhysicsStep_ - commentId: Overload:XRTK.Utilities.Physics.MixedRealityRaycaster.RaycastSpherePhysicsStep - isSpec: "True" - fullName: XRTK.Utilities.Physics.MixedRealityRaycaster.RaycastSpherePhysicsStep - nameWithType: MixedRealityRaycaster.RaycastSpherePhysicsStep -- uid: XRTK.Utilities.Physics.MixedRealityRaycaster.TryGetPrioritizedPhysicsHit(UnityEngine.RaycastHit[],UnityEngine.LayerMask[],UnityEngine.RaycastHit@) - name: TryGetPrioritizedPhysicsHit(RaycastHit[], LayerMask[], out RaycastHit) - href: api/XRTK.Utilities.Physics.MixedRealityRaycaster.html#XRTK_Utilities_Physics_MixedRealityRaycaster_TryGetPrioritizedPhysicsHit_UnityEngine_RaycastHit___UnityEngine_LayerMask___UnityEngine_RaycastHit__ - commentId: M:XRTK.Utilities.Physics.MixedRealityRaycaster.TryGetPrioritizedPhysicsHit(UnityEngine.RaycastHit[],UnityEngine.LayerMask[],UnityEngine.RaycastHit@) - name.vb: TryGetPrioritizedPhysicsHit(RaycastHit(), LayerMask(), ByRef RaycastHit) - fullName: XRTK.Utilities.Physics.MixedRealityRaycaster.TryGetPrioritizedPhysicsHit(UnityEngine.RaycastHit[], UnityEngine.LayerMask[], out UnityEngine.RaycastHit) - fullName.vb: XRTK.Utilities.Physics.MixedRealityRaycaster.TryGetPrioritizedPhysicsHit(UnityEngine.RaycastHit(), UnityEngine.LayerMask(), ByRef UnityEngine.RaycastHit) - nameWithType: MixedRealityRaycaster.TryGetPrioritizedPhysicsHit(RaycastHit[], LayerMask[], out RaycastHit) - nameWithType.vb: MixedRealityRaycaster.TryGetPrioritizedPhysicsHit(RaycastHit(), LayerMask(), ByRef RaycastHit) -- uid: XRTK.Utilities.Physics.MixedRealityRaycaster.TryGetPrioritizedPhysicsHit* - name: TryGetPrioritizedPhysicsHit - href: api/XRTK.Utilities.Physics.MixedRealityRaycaster.html#XRTK_Utilities_Physics_MixedRealityRaycaster_TryGetPrioritizedPhysicsHit_ - commentId: Overload:XRTK.Utilities.Physics.MixedRealityRaycaster.TryGetPrioritizedPhysicsHit - isSpec: "True" - fullName: XRTK.Utilities.Physics.MixedRealityRaycaster.TryGetPrioritizedPhysicsHit - nameWithType: MixedRealityRaycaster.TryGetPrioritizedPhysicsHit -- uid: XRTK.Utilities.Physics.RaycastResultComparer - name: RaycastResultComparer - href: api/XRTK.Utilities.Physics.RaycastResultComparer.html - commentId: T:XRTK.Utilities.Physics.RaycastResultComparer - fullName: XRTK.Utilities.Physics.RaycastResultComparer - nameWithType: RaycastResultComparer -- uid: XRTK.Utilities.Physics.RaycastResultComparer.Compare(XRTK.Definitions.Physics.ComparableRaycastResult,XRTK.Definitions.Physics.ComparableRaycastResult) - name: Compare(ComparableRaycastResult, ComparableRaycastResult) - href: api/XRTK.Utilities.Physics.RaycastResultComparer.html#XRTK_Utilities_Physics_RaycastResultComparer_Compare_XRTK_Definitions_Physics_ComparableRaycastResult_XRTK_Definitions_Physics_ComparableRaycastResult_ - commentId: M:XRTK.Utilities.Physics.RaycastResultComparer.Compare(XRTK.Definitions.Physics.ComparableRaycastResult,XRTK.Definitions.Physics.ComparableRaycastResult) - fullName: XRTK.Utilities.Physics.RaycastResultComparer.Compare(XRTK.Definitions.Physics.ComparableRaycastResult, XRTK.Definitions.Physics.ComparableRaycastResult) - nameWithType: RaycastResultComparer.Compare(ComparableRaycastResult, ComparableRaycastResult) -- uid: XRTK.Utilities.Physics.RaycastResultComparer.Compare* - name: Compare - href: api/XRTK.Utilities.Physics.RaycastResultComparer.html#XRTK_Utilities_Physics_RaycastResultComparer_Compare_ - commentId: Overload:XRTK.Utilities.Physics.RaycastResultComparer.Compare - isSpec: "True" - fullName: XRTK.Utilities.Physics.RaycastResultComparer.Compare - nameWithType: RaycastResultComparer.Compare -- uid: XRTK.Utilities.Physics.TwoHandMoveLogic - name: TwoHandMoveLogic - href: api/XRTK.Utilities.Physics.TwoHandMoveLogic.html - commentId: T:XRTK.Utilities.Physics.TwoHandMoveLogic - fullName: XRTK.Utilities.Physics.TwoHandMoveLogic - nameWithType: TwoHandMoveLogic -- uid: XRTK.Utilities.Physics.TwoHandMoveLogic.GetHandPivotPosition - name: GetHandPivotPosition() - href: api/XRTK.Utilities.Physics.TwoHandMoveLogic.html#XRTK_Utilities_Physics_TwoHandMoveLogic_GetHandPivotPosition - commentId: M:XRTK.Utilities.Physics.TwoHandMoveLogic.GetHandPivotPosition - fullName: XRTK.Utilities.Physics.TwoHandMoveLogic.GetHandPivotPosition() - nameWithType: TwoHandMoveLogic.GetHandPivotPosition() -- uid: XRTK.Utilities.Physics.TwoHandMoveLogic.GetHandPivotPosition* - name: GetHandPivotPosition - href: api/XRTK.Utilities.Physics.TwoHandMoveLogic.html#XRTK_Utilities_Physics_TwoHandMoveLogic_GetHandPivotPosition_ - commentId: Overload:XRTK.Utilities.Physics.TwoHandMoveLogic.GetHandPivotPosition - isSpec: "True" - fullName: XRTK.Utilities.Physics.TwoHandMoveLogic.GetHandPivotPosition - nameWithType: TwoHandMoveLogic.GetHandPivotPosition -- uid: XRTK.Utilities.Physics.TwoHandMoveLogic.Setup(UnityEngine.Vector3,UnityEngine.Transform) - name: Setup(Vector3, Transform) - href: api/XRTK.Utilities.Physics.TwoHandMoveLogic.html#XRTK_Utilities_Physics_TwoHandMoveLogic_Setup_UnityEngine_Vector3_UnityEngine_Transform_ - commentId: M:XRTK.Utilities.Physics.TwoHandMoveLogic.Setup(UnityEngine.Vector3,UnityEngine.Transform) - fullName: XRTK.Utilities.Physics.TwoHandMoveLogic.Setup(UnityEngine.Vector3, UnityEngine.Transform) - nameWithType: TwoHandMoveLogic.Setup(Vector3, Transform) -- uid: XRTK.Utilities.Physics.TwoHandMoveLogic.Setup* - name: Setup - href: api/XRTK.Utilities.Physics.TwoHandMoveLogic.html#XRTK_Utilities_Physics_TwoHandMoveLogic_Setup_ - commentId: Overload:XRTK.Utilities.Physics.TwoHandMoveLogic.Setup - isSpec: "True" - fullName: XRTK.Utilities.Physics.TwoHandMoveLogic.Setup - nameWithType: TwoHandMoveLogic.Setup -- uid: XRTK.Utilities.Physics.TwoHandMoveLogic.Update(UnityEngine.Vector3,UnityEngine.Vector3) - name: Update(Vector3, Vector3) - href: api/XRTK.Utilities.Physics.TwoHandMoveLogic.html#XRTK_Utilities_Physics_TwoHandMoveLogic_Update_UnityEngine_Vector3_UnityEngine_Vector3_ - commentId: M:XRTK.Utilities.Physics.TwoHandMoveLogic.Update(UnityEngine.Vector3,UnityEngine.Vector3) - fullName: XRTK.Utilities.Physics.TwoHandMoveLogic.Update(UnityEngine.Vector3, UnityEngine.Vector3) - nameWithType: TwoHandMoveLogic.Update(Vector3, Vector3) -- uid: XRTK.Utilities.Physics.TwoHandMoveLogic.Update* - name: Update - href: api/XRTK.Utilities.Physics.TwoHandMoveLogic.html#XRTK_Utilities_Physics_TwoHandMoveLogic_Update_ - commentId: Overload:XRTK.Utilities.Physics.TwoHandMoveLogic.Update - isSpec: "True" - fullName: XRTK.Utilities.Physics.TwoHandMoveLogic.Update - nameWithType: TwoHandMoveLogic.Update -- uid: XRTK.Utilities.Physics.TwoHandRotateLogic - name: TwoHandRotateLogic - href: api/XRTK.Utilities.Physics.TwoHandRotateLogic.html - commentId: T:XRTK.Utilities.Physics.TwoHandRotateLogic - fullName: XRTK.Utilities.Physics.TwoHandRotateLogic - nameWithType: TwoHandRotateLogic -- uid: XRTK.Utilities.Physics.TwoHandRotateLogic.#ctor(XRTK.Definitions.Utilities.RotationConstraintType) - name: TwoHandRotateLogic(RotationConstraintType) - href: api/XRTK.Utilities.Physics.TwoHandRotateLogic.html#XRTK_Utilities_Physics_TwoHandRotateLogic__ctor_XRTK_Definitions_Utilities_RotationConstraintType_ - commentId: M:XRTK.Utilities.Physics.TwoHandRotateLogic.#ctor(XRTK.Definitions.Utilities.RotationConstraintType) - fullName: XRTK.Utilities.Physics.TwoHandRotateLogic.TwoHandRotateLogic(XRTK.Definitions.Utilities.RotationConstraintType) - nameWithType: TwoHandRotateLogic.TwoHandRotateLogic(RotationConstraintType) -- uid: XRTK.Utilities.Physics.TwoHandRotateLogic.#ctor* - name: TwoHandRotateLogic - href: api/XRTK.Utilities.Physics.TwoHandRotateLogic.html#XRTK_Utilities_Physics_TwoHandRotateLogic__ctor_ - commentId: Overload:XRTK.Utilities.Physics.TwoHandRotateLogic.#ctor - isSpec: "True" - fullName: XRTK.Utilities.Physics.TwoHandRotateLogic.TwoHandRotateLogic - nameWithType: TwoHandRotateLogic.TwoHandRotateLogic -- uid: XRTK.Utilities.Physics.TwoHandRotateLogic.GetCurrentRotationConstraint - name: GetCurrentRotationConstraint() - href: api/XRTK.Utilities.Physics.TwoHandRotateLogic.html#XRTK_Utilities_Physics_TwoHandRotateLogic_GetCurrentRotationConstraint - commentId: M:XRTK.Utilities.Physics.TwoHandRotateLogic.GetCurrentRotationConstraint - fullName: XRTK.Utilities.Physics.TwoHandRotateLogic.GetCurrentRotationConstraint() - nameWithType: TwoHandRotateLogic.GetCurrentRotationConstraint() -- uid: XRTK.Utilities.Physics.TwoHandRotateLogic.GetCurrentRotationConstraint* - name: GetCurrentRotationConstraint - href: api/XRTK.Utilities.Physics.TwoHandRotateLogic.html#XRTK_Utilities_Physics_TwoHandRotateLogic_GetCurrentRotationConstraint_ - commentId: Overload:XRTK.Utilities.Physics.TwoHandRotateLogic.GetCurrentRotationConstraint - isSpec: "True" - fullName: XRTK.Utilities.Physics.TwoHandRotateLogic.GetCurrentRotationConstraint - nameWithType: TwoHandRotateLogic.GetCurrentRotationConstraint -- uid: XRTK.Utilities.Physics.TwoHandRotateLogic.Setup(System.Collections.Generic.Dictionary{System.UInt32,UnityEngine.Vector3}) - name: Setup(Dictionary) - href: api/XRTK.Utilities.Physics.TwoHandRotateLogic.html#XRTK_Utilities_Physics_TwoHandRotateLogic_Setup_System_Collections_Generic_Dictionary_System_UInt32_UnityEngine_Vector3__ - commentId: M:XRTK.Utilities.Physics.TwoHandRotateLogic.Setup(System.Collections.Generic.Dictionary{System.UInt32,UnityEngine.Vector3}) - name.vb: Setup(Dictionary(Of UInt32, Vector3)) - fullName: XRTK.Utilities.Physics.TwoHandRotateLogic.Setup(System.Collections.Generic.Dictionary) - fullName.vb: XRTK.Utilities.Physics.TwoHandRotateLogic.Setup(System.Collections.Generic.Dictionary(Of System.UInt32, UnityEngine.Vector3)) - nameWithType: TwoHandRotateLogic.Setup(Dictionary) - nameWithType.vb: TwoHandRotateLogic.Setup(Dictionary(Of UInt32, Vector3)) -- uid: XRTK.Utilities.Physics.TwoHandRotateLogic.Setup* - name: Setup - href: api/XRTK.Utilities.Physics.TwoHandRotateLogic.html#XRTK_Utilities_Physics_TwoHandRotateLogic_Setup_ - commentId: Overload:XRTK.Utilities.Physics.TwoHandRotateLogic.Setup - isSpec: "True" - fullName: XRTK.Utilities.Physics.TwoHandRotateLogic.Setup - nameWithType: TwoHandRotateLogic.Setup -- uid: XRTK.Utilities.Physics.TwoHandRotateLogic.Update(System.Collections.Generic.Dictionary{System.UInt32,UnityEngine.Vector3},UnityEngine.Quaternion) - name: Update(Dictionary, Quaternion) - href: api/XRTK.Utilities.Physics.TwoHandRotateLogic.html#XRTK_Utilities_Physics_TwoHandRotateLogic_Update_System_Collections_Generic_Dictionary_System_UInt32_UnityEngine_Vector3__UnityEngine_Quaternion_ - commentId: M:XRTK.Utilities.Physics.TwoHandRotateLogic.Update(System.Collections.Generic.Dictionary{System.UInt32,UnityEngine.Vector3},UnityEngine.Quaternion) - name.vb: Update(Dictionary(Of UInt32, Vector3), Quaternion) - fullName: XRTK.Utilities.Physics.TwoHandRotateLogic.Update(System.Collections.Generic.Dictionary, UnityEngine.Quaternion) - fullName.vb: XRTK.Utilities.Physics.TwoHandRotateLogic.Update(System.Collections.Generic.Dictionary(Of System.UInt32, UnityEngine.Vector3), UnityEngine.Quaternion) - nameWithType: TwoHandRotateLogic.Update(Dictionary, Quaternion) - nameWithType.vb: TwoHandRotateLogic.Update(Dictionary(Of UInt32, Vector3), Quaternion) -- uid: XRTK.Utilities.Physics.TwoHandRotateLogic.Update* - name: Update - href: api/XRTK.Utilities.Physics.TwoHandRotateLogic.html#XRTK_Utilities_Physics_TwoHandRotateLogic_Update_ - commentId: Overload:XRTK.Utilities.Physics.TwoHandRotateLogic.Update - isSpec: "True" - fullName: XRTK.Utilities.Physics.TwoHandRotateLogic.Update - nameWithType: TwoHandRotateLogic.Update -- uid: XRTK.Utilities.Physics.TwoHandScaleLogic - name: TwoHandScaleLogic - href: api/XRTK.Utilities.Physics.TwoHandScaleLogic.html - commentId: T:XRTK.Utilities.Physics.TwoHandScaleLogic - fullName: XRTK.Utilities.Physics.TwoHandScaleLogic - nameWithType: TwoHandScaleLogic -- uid: XRTK.Utilities.Physics.TwoHandScaleLogic.Setup(System.Collections.Generic.Dictionary{System.UInt32,UnityEngine.Vector3},UnityEngine.Transform) - name: Setup(Dictionary, Transform) - href: api/XRTK.Utilities.Physics.TwoHandScaleLogic.html#XRTK_Utilities_Physics_TwoHandScaleLogic_Setup_System_Collections_Generic_Dictionary_System_UInt32_UnityEngine_Vector3__UnityEngine_Transform_ - commentId: M:XRTK.Utilities.Physics.TwoHandScaleLogic.Setup(System.Collections.Generic.Dictionary{System.UInt32,UnityEngine.Vector3},UnityEngine.Transform) - name.vb: Setup(Dictionary(Of UInt32, Vector3), Transform) - fullName: XRTK.Utilities.Physics.TwoHandScaleLogic.Setup(System.Collections.Generic.Dictionary, UnityEngine.Transform) - fullName.vb: XRTK.Utilities.Physics.TwoHandScaleLogic.Setup(System.Collections.Generic.Dictionary(Of System.UInt32, UnityEngine.Vector3), UnityEngine.Transform) - nameWithType: TwoHandScaleLogic.Setup(Dictionary, Transform) - nameWithType.vb: TwoHandScaleLogic.Setup(Dictionary(Of UInt32, Vector3), Transform) -- uid: XRTK.Utilities.Physics.TwoHandScaleLogic.Setup* - name: Setup - href: api/XRTK.Utilities.Physics.TwoHandScaleLogic.html#XRTK_Utilities_Physics_TwoHandScaleLogic_Setup_ - commentId: Overload:XRTK.Utilities.Physics.TwoHandScaleLogic.Setup - isSpec: "True" - fullName: XRTK.Utilities.Physics.TwoHandScaleLogic.Setup - nameWithType: TwoHandScaleLogic.Setup -- uid: XRTK.Utilities.Physics.TwoHandScaleLogic.UpdateMap(System.Collections.Generic.Dictionary{System.UInt32,UnityEngine.Vector3}) - name: UpdateMap(Dictionary) - href: api/XRTK.Utilities.Physics.TwoHandScaleLogic.html#XRTK_Utilities_Physics_TwoHandScaleLogic_UpdateMap_System_Collections_Generic_Dictionary_System_UInt32_UnityEngine_Vector3__ - commentId: M:XRTK.Utilities.Physics.TwoHandScaleLogic.UpdateMap(System.Collections.Generic.Dictionary{System.UInt32,UnityEngine.Vector3}) - name.vb: UpdateMap(Dictionary(Of UInt32, Vector3)) - fullName: XRTK.Utilities.Physics.TwoHandScaleLogic.UpdateMap(System.Collections.Generic.Dictionary) - fullName.vb: XRTK.Utilities.Physics.TwoHandScaleLogic.UpdateMap(System.Collections.Generic.Dictionary(Of System.UInt32, UnityEngine.Vector3)) - nameWithType: TwoHandScaleLogic.UpdateMap(Dictionary) - nameWithType.vb: TwoHandScaleLogic.UpdateMap(Dictionary(Of UInt32, Vector3)) -- uid: XRTK.Utilities.Physics.TwoHandScaleLogic.UpdateMap* - name: UpdateMap - href: api/XRTK.Utilities.Physics.TwoHandScaleLogic.html#XRTK_Utilities_Physics_TwoHandScaleLogic_UpdateMap_ - commentId: Overload:XRTK.Utilities.Physics.TwoHandScaleLogic.UpdateMap - isSpec: "True" - fullName: XRTK.Utilities.Physics.TwoHandScaleLogic.UpdateMap - nameWithType: TwoHandScaleLogic.UpdateMap -- uid: XRTK.Utilities.Physics.VectorRollingStatistics - name: VectorRollingStatistics - href: api/XRTK.Utilities.Physics.VectorRollingStatistics.html - commentId: T:XRTK.Utilities.Physics.VectorRollingStatistics - fullName: XRTK.Utilities.Physics.VectorRollingStatistics - nameWithType: VectorRollingStatistics -- uid: XRTK.Utilities.Physics.VectorRollingStatistics.ActualSampleCount - name: ActualSampleCount - href: api/XRTK.Utilities.Physics.VectorRollingStatistics.html#XRTK_Utilities_Physics_VectorRollingStatistics_ActualSampleCount - commentId: P:XRTK.Utilities.Physics.VectorRollingStatistics.ActualSampleCount - fullName: XRTK.Utilities.Physics.VectorRollingStatistics.ActualSampleCount - nameWithType: VectorRollingStatistics.ActualSampleCount -- uid: XRTK.Utilities.Physics.VectorRollingStatistics.ActualSampleCount* - name: ActualSampleCount - href: api/XRTK.Utilities.Physics.VectorRollingStatistics.html#XRTK_Utilities_Physics_VectorRollingStatistics_ActualSampleCount_ - commentId: Overload:XRTK.Utilities.Physics.VectorRollingStatistics.ActualSampleCount - isSpec: "True" - fullName: XRTK.Utilities.Physics.VectorRollingStatistics.ActualSampleCount - nameWithType: VectorRollingStatistics.ActualSampleCount -- uid: XRTK.Utilities.Physics.VectorRollingStatistics.AddSample(UnityEngine.Vector3) - name: AddSample(Vector3) - href: api/XRTK.Utilities.Physics.VectorRollingStatistics.html#XRTK_Utilities_Physics_VectorRollingStatistics_AddSample_UnityEngine_Vector3_ - commentId: M:XRTK.Utilities.Physics.VectorRollingStatistics.AddSample(UnityEngine.Vector3) - fullName: XRTK.Utilities.Physics.VectorRollingStatistics.AddSample(UnityEngine.Vector3) - nameWithType: VectorRollingStatistics.AddSample(Vector3) -- uid: XRTK.Utilities.Physics.VectorRollingStatistics.AddSample* - name: AddSample - href: api/XRTK.Utilities.Physics.VectorRollingStatistics.html#XRTK_Utilities_Physics_VectorRollingStatistics_AddSample_ - commentId: Overload:XRTK.Utilities.Physics.VectorRollingStatistics.AddSample - isSpec: "True" - fullName: XRTK.Utilities.Physics.VectorRollingStatistics.AddSample - nameWithType: VectorRollingStatistics.AddSample -- uid: XRTK.Utilities.Physics.VectorRollingStatistics.Average - name: Average - href: api/XRTK.Utilities.Physics.VectorRollingStatistics.html#XRTK_Utilities_Physics_VectorRollingStatistics_Average - commentId: P:XRTK.Utilities.Physics.VectorRollingStatistics.Average - fullName: XRTK.Utilities.Physics.VectorRollingStatistics.Average - nameWithType: VectorRollingStatistics.Average -- uid: XRTK.Utilities.Physics.VectorRollingStatistics.Average* - name: Average - href: api/XRTK.Utilities.Physics.VectorRollingStatistics.html#XRTK_Utilities_Physics_VectorRollingStatistics_Average_ - commentId: Overload:XRTK.Utilities.Physics.VectorRollingStatistics.Average - isSpec: "True" - fullName: XRTK.Utilities.Physics.VectorRollingStatistics.Average - nameWithType: VectorRollingStatistics.Average -- uid: XRTK.Utilities.Physics.VectorRollingStatistics.CurrentStandardDeviation - name: CurrentStandardDeviation - href: api/XRTK.Utilities.Physics.VectorRollingStatistics.html#XRTK_Utilities_Physics_VectorRollingStatistics_CurrentStandardDeviation - commentId: P:XRTK.Utilities.Physics.VectorRollingStatistics.CurrentStandardDeviation - fullName: XRTK.Utilities.Physics.VectorRollingStatistics.CurrentStandardDeviation - nameWithType: VectorRollingStatistics.CurrentStandardDeviation -- uid: XRTK.Utilities.Physics.VectorRollingStatistics.CurrentStandardDeviation* - name: CurrentStandardDeviation - href: api/XRTK.Utilities.Physics.VectorRollingStatistics.html#XRTK_Utilities_Physics_VectorRollingStatistics_CurrentStandardDeviation_ - commentId: Overload:XRTK.Utilities.Physics.VectorRollingStatistics.CurrentStandardDeviation - isSpec: "True" - fullName: XRTK.Utilities.Physics.VectorRollingStatistics.CurrentStandardDeviation - nameWithType: VectorRollingStatistics.CurrentStandardDeviation -- uid: XRTK.Utilities.Physics.VectorRollingStatistics.Init(System.Int32) - name: Init(Int32) - href: api/XRTK.Utilities.Physics.VectorRollingStatistics.html#XRTK_Utilities_Physics_VectorRollingStatistics_Init_System_Int32_ - commentId: M:XRTK.Utilities.Physics.VectorRollingStatistics.Init(System.Int32) - fullName: XRTK.Utilities.Physics.VectorRollingStatistics.Init(System.Int32) - nameWithType: VectorRollingStatistics.Init(Int32) -- uid: XRTK.Utilities.Physics.VectorRollingStatistics.Init* - name: Init - href: api/XRTK.Utilities.Physics.VectorRollingStatistics.html#XRTK_Utilities_Physics_VectorRollingStatistics_Init_ - commentId: Overload:XRTK.Utilities.Physics.VectorRollingStatistics.Init - isSpec: "True" - fullName: XRTK.Utilities.Physics.VectorRollingStatistics.Init - nameWithType: VectorRollingStatistics.Init -- uid: XRTK.Utilities.Physics.VectorRollingStatistics.Reset - name: Reset() - href: api/XRTK.Utilities.Physics.VectorRollingStatistics.html#XRTK_Utilities_Physics_VectorRollingStatistics_Reset - commentId: M:XRTK.Utilities.Physics.VectorRollingStatistics.Reset - fullName: XRTK.Utilities.Physics.VectorRollingStatistics.Reset() - nameWithType: VectorRollingStatistics.Reset() -- uid: XRTK.Utilities.Physics.VectorRollingStatistics.Reset* - name: Reset - href: api/XRTK.Utilities.Physics.VectorRollingStatistics.html#XRTK_Utilities_Physics_VectorRollingStatistics_Reset_ - commentId: Overload:XRTK.Utilities.Physics.VectorRollingStatistics.Reset - isSpec: "True" - fullName: XRTK.Utilities.Physics.VectorRollingStatistics.Reset - nameWithType: VectorRollingStatistics.Reset -- uid: XRTK.Utilities.Physics.VectorRollingStatistics.StandardDeviationDeltaAfterLatestSample - name: StandardDeviationDeltaAfterLatestSample - href: api/XRTK.Utilities.Physics.VectorRollingStatistics.html#XRTK_Utilities_Physics_VectorRollingStatistics_StandardDeviationDeltaAfterLatestSample - commentId: P:XRTK.Utilities.Physics.VectorRollingStatistics.StandardDeviationDeltaAfterLatestSample - fullName: XRTK.Utilities.Physics.VectorRollingStatistics.StandardDeviationDeltaAfterLatestSample - nameWithType: VectorRollingStatistics.StandardDeviationDeltaAfterLatestSample -- uid: XRTK.Utilities.Physics.VectorRollingStatistics.StandardDeviationDeltaAfterLatestSample* - name: StandardDeviationDeltaAfterLatestSample - href: api/XRTK.Utilities.Physics.VectorRollingStatistics.html#XRTK_Utilities_Physics_VectorRollingStatistics_StandardDeviationDeltaAfterLatestSample_ - commentId: Overload:XRTK.Utilities.Physics.VectorRollingStatistics.StandardDeviationDeltaAfterLatestSample - isSpec: "True" - fullName: XRTK.Utilities.Physics.VectorRollingStatistics.StandardDeviationDeltaAfterLatestSample - nameWithType: VectorRollingStatistics.StandardDeviationDeltaAfterLatestSample -- uid: XRTK.Utilities.Physics.VectorRollingStatistics.StandardDeviationsAwayOfLatestSample - name: StandardDeviationsAwayOfLatestSample - href: api/XRTK.Utilities.Physics.VectorRollingStatistics.html#XRTK_Utilities_Physics_VectorRollingStatistics_StandardDeviationsAwayOfLatestSample - commentId: P:XRTK.Utilities.Physics.VectorRollingStatistics.StandardDeviationsAwayOfLatestSample - fullName: XRTK.Utilities.Physics.VectorRollingStatistics.StandardDeviationsAwayOfLatestSample - nameWithType: VectorRollingStatistics.StandardDeviationsAwayOfLatestSample -- uid: XRTK.Utilities.Physics.VectorRollingStatistics.StandardDeviationsAwayOfLatestSample* - name: StandardDeviationsAwayOfLatestSample - href: api/XRTK.Utilities.Physics.VectorRollingStatistics.html#XRTK_Utilities_Physics_VectorRollingStatistics_StandardDeviationsAwayOfLatestSample_ - commentId: Overload:XRTK.Utilities.Physics.VectorRollingStatistics.StandardDeviationsAwayOfLatestSample - isSpec: "True" - fullName: XRTK.Utilities.Physics.VectorRollingStatistics.StandardDeviationsAwayOfLatestSample - nameWithType: VectorRollingStatistics.StandardDeviationsAwayOfLatestSample -- uid: XRTK.Utilities.ProximityLight - name: ProximityLight - href: api/XRTK.Utilities.ProximityLight.html - commentId: T:XRTK.Utilities.ProximityLight - fullName: XRTK.Utilities.ProximityLight - nameWithType: ProximityLight -- uid: XRTK.Utilities.ProximityLight.LightSettings - name: ProximityLight.LightSettings - href: api/XRTK.Utilities.ProximityLight.LightSettings.html - commentId: T:XRTK.Utilities.ProximityLight.LightSettings - fullName: XRTK.Utilities.ProximityLight.LightSettings - nameWithType: ProximityLight.LightSettings -- uid: XRTK.Utilities.ProximityLight.LightSettings.CenterColor - name: CenterColor - href: api/XRTK.Utilities.ProximityLight.LightSettings.html#XRTK_Utilities_ProximityLight_LightSettings_CenterColor - commentId: P:XRTK.Utilities.ProximityLight.LightSettings.CenterColor - fullName: XRTK.Utilities.ProximityLight.LightSettings.CenterColor - nameWithType: ProximityLight.LightSettings.CenterColor -- uid: XRTK.Utilities.ProximityLight.LightSettings.CenterColor* - name: CenterColor - href: api/XRTK.Utilities.ProximityLight.LightSettings.html#XRTK_Utilities_ProximityLight_LightSettings_CenterColor_ - commentId: Overload:XRTK.Utilities.ProximityLight.LightSettings.CenterColor - isSpec: "True" - fullName: XRTK.Utilities.ProximityLight.LightSettings.CenterColor - nameWithType: ProximityLight.LightSettings.CenterColor -- uid: XRTK.Utilities.ProximityLight.LightSettings.FarRadius - name: FarRadius - href: api/XRTK.Utilities.ProximityLight.LightSettings.html#XRTK_Utilities_ProximityLight_LightSettings_FarRadius - commentId: P:XRTK.Utilities.ProximityLight.LightSettings.FarRadius - fullName: XRTK.Utilities.ProximityLight.LightSettings.FarRadius - nameWithType: ProximityLight.LightSettings.FarRadius -- uid: XRTK.Utilities.ProximityLight.LightSettings.FarRadius* - name: FarRadius - href: api/XRTK.Utilities.ProximityLight.LightSettings.html#XRTK_Utilities_ProximityLight_LightSettings_FarRadius_ - commentId: Overload:XRTK.Utilities.ProximityLight.LightSettings.FarRadius - isSpec: "True" - fullName: XRTK.Utilities.ProximityLight.LightSettings.FarRadius - nameWithType: ProximityLight.LightSettings.FarRadius -- uid: XRTK.Utilities.ProximityLight.LightSettings.MiddleColor - name: MiddleColor - href: api/XRTK.Utilities.ProximityLight.LightSettings.html#XRTK_Utilities_ProximityLight_LightSettings_MiddleColor - commentId: P:XRTK.Utilities.ProximityLight.LightSettings.MiddleColor - fullName: XRTK.Utilities.ProximityLight.LightSettings.MiddleColor - nameWithType: ProximityLight.LightSettings.MiddleColor -- uid: XRTK.Utilities.ProximityLight.LightSettings.MiddleColor* - name: MiddleColor - href: api/XRTK.Utilities.ProximityLight.LightSettings.html#XRTK_Utilities_ProximityLight_LightSettings_MiddleColor_ - commentId: Overload:XRTK.Utilities.ProximityLight.LightSettings.MiddleColor - isSpec: "True" - fullName: XRTK.Utilities.ProximityLight.LightSettings.MiddleColor - nameWithType: ProximityLight.LightSettings.MiddleColor -- uid: XRTK.Utilities.ProximityLight.LightSettings.MinNearSizePercentage - name: MinNearSizePercentage - href: api/XRTK.Utilities.ProximityLight.LightSettings.html#XRTK_Utilities_ProximityLight_LightSettings_MinNearSizePercentage - commentId: P:XRTK.Utilities.ProximityLight.LightSettings.MinNearSizePercentage - fullName: XRTK.Utilities.ProximityLight.LightSettings.MinNearSizePercentage - nameWithType: ProximityLight.LightSettings.MinNearSizePercentage -- uid: XRTK.Utilities.ProximityLight.LightSettings.MinNearSizePercentage* - name: MinNearSizePercentage - href: api/XRTK.Utilities.ProximityLight.LightSettings.html#XRTK_Utilities_ProximityLight_LightSettings_MinNearSizePercentage_ - commentId: Overload:XRTK.Utilities.ProximityLight.LightSettings.MinNearSizePercentage - isSpec: "True" - fullName: XRTK.Utilities.ProximityLight.LightSettings.MinNearSizePercentage - nameWithType: ProximityLight.LightSettings.MinNearSizePercentage -- uid: XRTK.Utilities.ProximityLight.LightSettings.NearDistance - name: NearDistance - href: api/XRTK.Utilities.ProximityLight.LightSettings.html#XRTK_Utilities_ProximityLight_LightSettings_NearDistance - commentId: P:XRTK.Utilities.ProximityLight.LightSettings.NearDistance - fullName: XRTK.Utilities.ProximityLight.LightSettings.NearDistance - nameWithType: ProximityLight.LightSettings.NearDistance -- uid: XRTK.Utilities.ProximityLight.LightSettings.NearDistance* - name: NearDistance - href: api/XRTK.Utilities.ProximityLight.LightSettings.html#XRTK_Utilities_ProximityLight_LightSettings_NearDistance_ - commentId: Overload:XRTK.Utilities.ProximityLight.LightSettings.NearDistance - isSpec: "True" - fullName: XRTK.Utilities.ProximityLight.LightSettings.NearDistance - nameWithType: ProximityLight.LightSettings.NearDistance -- uid: XRTK.Utilities.ProximityLight.LightSettings.NearRadius - name: NearRadius - href: api/XRTK.Utilities.ProximityLight.LightSettings.html#XRTK_Utilities_ProximityLight_LightSettings_NearRadius - commentId: P:XRTK.Utilities.ProximityLight.LightSettings.NearRadius - fullName: XRTK.Utilities.ProximityLight.LightSettings.NearRadius - nameWithType: ProximityLight.LightSettings.NearRadius -- uid: XRTK.Utilities.ProximityLight.LightSettings.NearRadius* - name: NearRadius - href: api/XRTK.Utilities.ProximityLight.LightSettings.html#XRTK_Utilities_ProximityLight_LightSettings_NearRadius_ - commentId: Overload:XRTK.Utilities.ProximityLight.LightSettings.NearRadius - isSpec: "True" - fullName: XRTK.Utilities.ProximityLight.LightSettings.NearRadius - nameWithType: ProximityLight.LightSettings.NearRadius -- uid: XRTK.Utilities.ProximityLight.LightSettings.OuterColor - name: OuterColor - href: api/XRTK.Utilities.ProximityLight.LightSettings.html#XRTK_Utilities_ProximityLight_LightSettings_OuterColor - commentId: P:XRTK.Utilities.ProximityLight.LightSettings.OuterColor - fullName: XRTK.Utilities.ProximityLight.LightSettings.OuterColor - nameWithType: ProximityLight.LightSettings.OuterColor -- uid: XRTK.Utilities.ProximityLight.LightSettings.OuterColor* - name: OuterColor - href: api/XRTK.Utilities.ProximityLight.LightSettings.html#XRTK_Utilities_ProximityLight_LightSettings_OuterColor_ - commentId: Overload:XRTK.Utilities.ProximityLight.LightSettings.OuterColor - isSpec: "True" - fullName: XRTK.Utilities.ProximityLight.LightSettings.OuterColor - nameWithType: ProximityLight.LightSettings.OuterColor -- uid: XRTK.Utilities.ProximityLight.Pulse(System.Single,System.Single,System.Single) - name: Pulse(Single, Single, Single) - href: api/XRTK.Utilities.ProximityLight.html#XRTK_Utilities_ProximityLight_Pulse_System_Single_System_Single_System_Single_ - commentId: M:XRTK.Utilities.ProximityLight.Pulse(System.Single,System.Single,System.Single) - fullName: XRTK.Utilities.ProximityLight.Pulse(System.Single, System.Single, System.Single) - nameWithType: ProximityLight.Pulse(Single, Single, Single) -- uid: XRTK.Utilities.ProximityLight.Pulse* - name: Pulse - href: api/XRTK.Utilities.ProximityLight.html#XRTK_Utilities_ProximityLight_Pulse_ - commentId: Overload:XRTK.Utilities.ProximityLight.Pulse - isSpec: "True" - fullName: XRTK.Utilities.ProximityLight.Pulse - nameWithType: ProximityLight.Pulse -- uid: XRTK.Utilities.ProximityLight.Settings - name: Settings - href: api/XRTK.Utilities.ProximityLight.html#XRTK_Utilities_ProximityLight_Settings - commentId: P:XRTK.Utilities.ProximityLight.Settings - fullName: XRTK.Utilities.ProximityLight.Settings - nameWithType: ProximityLight.Settings -- uid: XRTK.Utilities.ProximityLight.Settings* - name: Settings - href: api/XRTK.Utilities.ProximityLight.html#XRTK_Utilities_ProximityLight_Settings_ - commentId: Overload:XRTK.Utilities.ProximityLight.Settings - isSpec: "True" - fullName: XRTK.Utilities.ProximityLight.Settings - nameWithType: ProximityLight.Settings -- uid: XRTK.Utilities.Rendering - name: XRTK.Utilities.Rendering - href: api/XRTK.Utilities.Rendering.html - commentId: N:XRTK.Utilities.Rendering - fullName: XRTK.Utilities.Rendering - nameWithType: XRTK.Utilities.Rendering -- uid: XRTK.Utilities.Rendering.ClippingBox - name: ClippingBox - href: api/XRTK.Utilities.Rendering.ClippingBox.html - commentId: T:XRTK.Utilities.Rendering.ClippingBox - fullName: XRTK.Utilities.Rendering.ClippingBox - nameWithType: ClippingBox -- uid: XRTK.Utilities.Rendering.ClippingBox.ClippingSideProperty - name: ClippingSideProperty - href: api/XRTK.Utilities.Rendering.ClippingBox.html#XRTK_Utilities_Rendering_ClippingBox_ClippingSideProperty - commentId: P:XRTK.Utilities.Rendering.ClippingBox.ClippingSideProperty - fullName: XRTK.Utilities.Rendering.ClippingBox.ClippingSideProperty - nameWithType: ClippingBox.ClippingSideProperty -- uid: XRTK.Utilities.Rendering.ClippingBox.ClippingSideProperty* - name: ClippingSideProperty - href: api/XRTK.Utilities.Rendering.ClippingBox.html#XRTK_Utilities_Rendering_ClippingBox_ClippingSideProperty_ - commentId: Overload:XRTK.Utilities.Rendering.ClippingBox.ClippingSideProperty - isSpec: "True" - fullName: XRTK.Utilities.Rendering.ClippingBox.ClippingSideProperty - nameWithType: ClippingBox.ClippingSideProperty -- uid: XRTK.Utilities.Rendering.ClippingBox.Initialize - name: Initialize() - href: api/XRTK.Utilities.Rendering.ClippingBox.html#XRTK_Utilities_Rendering_ClippingBox_Initialize - commentId: M:XRTK.Utilities.Rendering.ClippingBox.Initialize - fullName: XRTK.Utilities.Rendering.ClippingBox.Initialize() - nameWithType: ClippingBox.Initialize() -- uid: XRTK.Utilities.Rendering.ClippingBox.Initialize* - name: Initialize - href: api/XRTK.Utilities.Rendering.ClippingBox.html#XRTK_Utilities_Rendering_ClippingBox_Initialize_ - commentId: Overload:XRTK.Utilities.Rendering.ClippingBox.Initialize - isSpec: "True" - fullName: XRTK.Utilities.Rendering.ClippingBox.Initialize - nameWithType: ClippingBox.Initialize -- uid: XRTK.Utilities.Rendering.ClippingBox.Keyword - name: Keyword - href: api/XRTK.Utilities.Rendering.ClippingBox.html#XRTK_Utilities_Rendering_ClippingBox_Keyword - commentId: P:XRTK.Utilities.Rendering.ClippingBox.Keyword - fullName: XRTK.Utilities.Rendering.ClippingBox.Keyword - nameWithType: ClippingBox.Keyword -- uid: XRTK.Utilities.Rendering.ClippingBox.Keyword* - name: Keyword - href: api/XRTK.Utilities.Rendering.ClippingBox.html#XRTK_Utilities_Rendering_ClippingBox_Keyword_ - commentId: Overload:XRTK.Utilities.Rendering.ClippingBox.Keyword - isSpec: "True" - fullName: XRTK.Utilities.Rendering.ClippingBox.Keyword - nameWithType: ClippingBox.Keyword -- uid: XRTK.Utilities.Rendering.ClippingBox.KeywordProperty - name: KeywordProperty - href: api/XRTK.Utilities.Rendering.ClippingBox.html#XRTK_Utilities_Rendering_ClippingBox_KeywordProperty - commentId: P:XRTK.Utilities.Rendering.ClippingBox.KeywordProperty - fullName: XRTK.Utilities.Rendering.ClippingBox.KeywordProperty - nameWithType: ClippingBox.KeywordProperty -- uid: XRTK.Utilities.Rendering.ClippingBox.KeywordProperty* - name: KeywordProperty - href: api/XRTK.Utilities.Rendering.ClippingBox.html#XRTK_Utilities_Rendering_ClippingBox_KeywordProperty_ - commentId: Overload:XRTK.Utilities.Rendering.ClippingBox.KeywordProperty - isSpec: "True" - fullName: XRTK.Utilities.Rendering.ClippingBox.KeywordProperty - nameWithType: ClippingBox.KeywordProperty -- uid: XRTK.Utilities.Rendering.ClippingBox.UpdateShaderProperties(UnityEngine.MaterialPropertyBlock) - name: UpdateShaderProperties(MaterialPropertyBlock) - href: api/XRTK.Utilities.Rendering.ClippingBox.html#XRTK_Utilities_Rendering_ClippingBox_UpdateShaderProperties_UnityEngine_MaterialPropertyBlock_ - commentId: M:XRTK.Utilities.Rendering.ClippingBox.UpdateShaderProperties(UnityEngine.MaterialPropertyBlock) - fullName: XRTK.Utilities.Rendering.ClippingBox.UpdateShaderProperties(UnityEngine.MaterialPropertyBlock) - nameWithType: ClippingBox.UpdateShaderProperties(MaterialPropertyBlock) -- uid: XRTK.Utilities.Rendering.ClippingBox.UpdateShaderProperties* - name: UpdateShaderProperties - href: api/XRTK.Utilities.Rendering.ClippingBox.html#XRTK_Utilities_Rendering_ClippingBox_UpdateShaderProperties_ - commentId: Overload:XRTK.Utilities.Rendering.ClippingBox.UpdateShaderProperties - isSpec: "True" - fullName: XRTK.Utilities.Rendering.ClippingBox.UpdateShaderProperties - nameWithType: ClippingBox.UpdateShaderProperties -- uid: XRTK.Utilities.Rendering.ClippingPlane - name: ClippingPlane - href: api/XRTK.Utilities.Rendering.ClippingPlane.html - commentId: T:XRTK.Utilities.Rendering.ClippingPlane - fullName: XRTK.Utilities.Rendering.ClippingPlane - nameWithType: ClippingPlane -- uid: XRTK.Utilities.Rendering.ClippingPlane.ClippingSideProperty - name: ClippingSideProperty - href: api/XRTK.Utilities.Rendering.ClippingPlane.html#XRTK_Utilities_Rendering_ClippingPlane_ClippingSideProperty - commentId: P:XRTK.Utilities.Rendering.ClippingPlane.ClippingSideProperty - fullName: XRTK.Utilities.Rendering.ClippingPlane.ClippingSideProperty - nameWithType: ClippingPlane.ClippingSideProperty -- uid: XRTK.Utilities.Rendering.ClippingPlane.ClippingSideProperty* - name: ClippingSideProperty - href: api/XRTK.Utilities.Rendering.ClippingPlane.html#XRTK_Utilities_Rendering_ClippingPlane_ClippingSideProperty_ - commentId: Overload:XRTK.Utilities.Rendering.ClippingPlane.ClippingSideProperty - isSpec: "True" - fullName: XRTK.Utilities.Rendering.ClippingPlane.ClippingSideProperty - nameWithType: ClippingPlane.ClippingSideProperty -- uid: XRTK.Utilities.Rendering.ClippingPlane.Initialize - name: Initialize() - href: api/XRTK.Utilities.Rendering.ClippingPlane.html#XRTK_Utilities_Rendering_ClippingPlane_Initialize - commentId: M:XRTK.Utilities.Rendering.ClippingPlane.Initialize - fullName: XRTK.Utilities.Rendering.ClippingPlane.Initialize() - nameWithType: ClippingPlane.Initialize() -- uid: XRTK.Utilities.Rendering.ClippingPlane.Initialize* - name: Initialize - href: api/XRTK.Utilities.Rendering.ClippingPlane.html#XRTK_Utilities_Rendering_ClippingPlane_Initialize_ - commentId: Overload:XRTK.Utilities.Rendering.ClippingPlane.Initialize - isSpec: "True" - fullName: XRTK.Utilities.Rendering.ClippingPlane.Initialize - nameWithType: ClippingPlane.Initialize -- uid: XRTK.Utilities.Rendering.ClippingPlane.Keyword - name: Keyword - href: api/XRTK.Utilities.Rendering.ClippingPlane.html#XRTK_Utilities_Rendering_ClippingPlane_Keyword - commentId: P:XRTK.Utilities.Rendering.ClippingPlane.Keyword - fullName: XRTK.Utilities.Rendering.ClippingPlane.Keyword - nameWithType: ClippingPlane.Keyword -- uid: XRTK.Utilities.Rendering.ClippingPlane.Keyword* - name: Keyword - href: api/XRTK.Utilities.Rendering.ClippingPlane.html#XRTK_Utilities_Rendering_ClippingPlane_Keyword_ - commentId: Overload:XRTK.Utilities.Rendering.ClippingPlane.Keyword - isSpec: "True" - fullName: XRTK.Utilities.Rendering.ClippingPlane.Keyword - nameWithType: ClippingPlane.Keyword -- uid: XRTK.Utilities.Rendering.ClippingPlane.KeywordProperty - name: KeywordProperty - href: api/XRTK.Utilities.Rendering.ClippingPlane.html#XRTK_Utilities_Rendering_ClippingPlane_KeywordProperty - commentId: P:XRTK.Utilities.Rendering.ClippingPlane.KeywordProperty - fullName: XRTK.Utilities.Rendering.ClippingPlane.KeywordProperty - nameWithType: ClippingPlane.KeywordProperty -- uid: XRTK.Utilities.Rendering.ClippingPlane.KeywordProperty* - name: KeywordProperty - href: api/XRTK.Utilities.Rendering.ClippingPlane.html#XRTK_Utilities_Rendering_ClippingPlane_KeywordProperty_ - commentId: Overload:XRTK.Utilities.Rendering.ClippingPlane.KeywordProperty - isSpec: "True" - fullName: XRTK.Utilities.Rendering.ClippingPlane.KeywordProperty - nameWithType: ClippingPlane.KeywordProperty -- uid: XRTK.Utilities.Rendering.ClippingPlane.UpdateShaderProperties(UnityEngine.MaterialPropertyBlock) - name: UpdateShaderProperties(MaterialPropertyBlock) - href: api/XRTK.Utilities.Rendering.ClippingPlane.html#XRTK_Utilities_Rendering_ClippingPlane_UpdateShaderProperties_UnityEngine_MaterialPropertyBlock_ - commentId: M:XRTK.Utilities.Rendering.ClippingPlane.UpdateShaderProperties(UnityEngine.MaterialPropertyBlock) - fullName: XRTK.Utilities.Rendering.ClippingPlane.UpdateShaderProperties(UnityEngine.MaterialPropertyBlock) - nameWithType: ClippingPlane.UpdateShaderProperties(MaterialPropertyBlock) -- uid: XRTK.Utilities.Rendering.ClippingPlane.UpdateShaderProperties* - name: UpdateShaderProperties - href: api/XRTK.Utilities.Rendering.ClippingPlane.html#XRTK_Utilities_Rendering_ClippingPlane_UpdateShaderProperties_ - commentId: Overload:XRTK.Utilities.Rendering.ClippingPlane.UpdateShaderProperties - isSpec: "True" - fullName: XRTK.Utilities.Rendering.ClippingPlane.UpdateShaderProperties - nameWithType: ClippingPlane.UpdateShaderProperties -- uid: XRTK.Utilities.Rendering.ClippingPrimitive - name: ClippingPrimitive - href: api/XRTK.Utilities.Rendering.ClippingPrimitive.html - commentId: T:XRTK.Utilities.Rendering.ClippingPrimitive - fullName: XRTK.Utilities.Rendering.ClippingPrimitive - nameWithType: ClippingPrimitive -- uid: XRTK.Utilities.Rendering.ClippingPrimitive.AddRenderer(UnityEngine.Renderer) - name: AddRenderer(Renderer) - href: api/XRTK.Utilities.Rendering.ClippingPrimitive.html#XRTK_Utilities_Rendering_ClippingPrimitive_AddRenderer_UnityEngine_Renderer_ - commentId: M:XRTK.Utilities.Rendering.ClippingPrimitive.AddRenderer(UnityEngine.Renderer) - fullName: XRTK.Utilities.Rendering.ClippingPrimitive.AddRenderer(UnityEngine.Renderer) - nameWithType: ClippingPrimitive.AddRenderer(Renderer) -- uid: XRTK.Utilities.Rendering.ClippingPrimitive.AddRenderer* - name: AddRenderer - href: api/XRTK.Utilities.Rendering.ClippingPrimitive.html#XRTK_Utilities_Rendering_ClippingPrimitive_AddRenderer_ - commentId: Overload:XRTK.Utilities.Rendering.ClippingPrimitive.AddRenderer - isSpec: "True" - fullName: XRTK.Utilities.Rendering.ClippingPrimitive.AddRenderer - nameWithType: ClippingPrimitive.AddRenderer -- uid: XRTK.Utilities.Rendering.ClippingPrimitive.AddRenderers(UnityEngine.Renderer[]) - name: AddRenderers(Renderer[]) - href: api/XRTK.Utilities.Rendering.ClippingPrimitive.html#XRTK_Utilities_Rendering_ClippingPrimitive_AddRenderers_UnityEngine_Renderer___ - commentId: M:XRTK.Utilities.Rendering.ClippingPrimitive.AddRenderers(UnityEngine.Renderer[]) - name.vb: AddRenderers(Renderer()) - fullName: XRTK.Utilities.Rendering.ClippingPrimitive.AddRenderers(UnityEngine.Renderer[]) - fullName.vb: XRTK.Utilities.Rendering.ClippingPrimitive.AddRenderers(UnityEngine.Renderer()) - nameWithType: ClippingPrimitive.AddRenderers(Renderer[]) - nameWithType.vb: ClippingPrimitive.AddRenderers(Renderer()) -- uid: XRTK.Utilities.Rendering.ClippingPrimitive.AddRenderers* - name: AddRenderers - href: api/XRTK.Utilities.Rendering.ClippingPrimitive.html#XRTK_Utilities_Rendering_ClippingPrimitive_AddRenderers_ - commentId: Overload:XRTK.Utilities.Rendering.ClippingPrimitive.AddRenderers - isSpec: "True" - fullName: XRTK.Utilities.Rendering.ClippingPrimitive.AddRenderers - nameWithType: ClippingPrimitive.AddRenderers -- uid: XRTK.Utilities.Rendering.ClippingPrimitive.ClearRenderers - name: ClearRenderers() - href: api/XRTK.Utilities.Rendering.ClippingPrimitive.html#XRTK_Utilities_Rendering_ClippingPrimitive_ClearRenderers - commentId: M:XRTK.Utilities.Rendering.ClippingPrimitive.ClearRenderers - fullName: XRTK.Utilities.Rendering.ClippingPrimitive.ClearRenderers() - nameWithType: ClippingPrimitive.ClearRenderers() -- uid: XRTK.Utilities.Rendering.ClippingPrimitive.ClearRenderers* - name: ClearRenderers - href: api/XRTK.Utilities.Rendering.ClippingPrimitive.html#XRTK_Utilities_Rendering_ClippingPrimitive_ClearRenderers_ - commentId: Overload:XRTK.Utilities.Rendering.ClippingPrimitive.ClearRenderers - isSpec: "True" - fullName: XRTK.Utilities.Rendering.ClippingPrimitive.ClearRenderers - nameWithType: ClippingPrimitive.ClearRenderers -- uid: XRTK.Utilities.Rendering.ClippingPrimitive.ClippingSide - name: ClippingSide - href: api/XRTK.Utilities.Rendering.ClippingPrimitive.html#XRTK_Utilities_Rendering_ClippingPrimitive_ClippingSide - commentId: P:XRTK.Utilities.Rendering.ClippingPrimitive.ClippingSide - fullName: XRTK.Utilities.Rendering.ClippingPrimitive.ClippingSide - nameWithType: ClippingPrimitive.ClippingSide -- uid: XRTK.Utilities.Rendering.ClippingPrimitive.ClippingSide* - name: ClippingSide - href: api/XRTK.Utilities.Rendering.ClippingPrimitive.html#XRTK_Utilities_Rendering_ClippingPrimitive_ClippingSide_ - commentId: Overload:XRTK.Utilities.Rendering.ClippingPrimitive.ClippingSide - isSpec: "True" - fullName: XRTK.Utilities.Rendering.ClippingPrimitive.ClippingSide - nameWithType: ClippingPrimitive.ClippingSide -- uid: XRTK.Utilities.Rendering.ClippingPrimitive.ClippingSideProperty - name: ClippingSideProperty - href: api/XRTK.Utilities.Rendering.ClippingPrimitive.html#XRTK_Utilities_Rendering_ClippingPrimitive_ClippingSideProperty - commentId: P:XRTK.Utilities.Rendering.ClippingPrimitive.ClippingSideProperty - fullName: XRTK.Utilities.Rendering.ClippingPrimitive.ClippingSideProperty - nameWithType: ClippingPrimitive.ClippingSideProperty -- uid: XRTK.Utilities.Rendering.ClippingPrimitive.ClippingSideProperty* - name: ClippingSideProperty - href: api/XRTK.Utilities.Rendering.ClippingPrimitive.html#XRTK_Utilities_Rendering_ClippingPrimitive_ClippingSideProperty_ - commentId: Overload:XRTK.Utilities.Rendering.ClippingPrimitive.ClippingSideProperty - isSpec: "True" - fullName: XRTK.Utilities.Rendering.ClippingPrimitive.ClippingSideProperty - nameWithType: ClippingPrimitive.ClippingSideProperty -- uid: XRTK.Utilities.Rendering.ClippingPrimitive.GetMaterial(UnityEngine.Renderer,System.Boolean) - name: GetMaterial(Renderer, Boolean) - href: api/XRTK.Utilities.Rendering.ClippingPrimitive.html#XRTK_Utilities_Rendering_ClippingPrimitive_GetMaterial_UnityEngine_Renderer_System_Boolean_ - commentId: M:XRTK.Utilities.Rendering.ClippingPrimitive.GetMaterial(UnityEngine.Renderer,System.Boolean) - fullName: XRTK.Utilities.Rendering.ClippingPrimitive.GetMaterial(UnityEngine.Renderer, System.Boolean) - nameWithType: ClippingPrimitive.GetMaterial(Renderer, Boolean) -- uid: XRTK.Utilities.Rendering.ClippingPrimitive.GetMaterial* - name: GetMaterial - href: api/XRTK.Utilities.Rendering.ClippingPrimitive.html#XRTK_Utilities_Rendering_ClippingPrimitive_GetMaterial_ - commentId: Overload:XRTK.Utilities.Rendering.ClippingPrimitive.GetMaterial - isSpec: "True" - fullName: XRTK.Utilities.Rendering.ClippingPrimitive.GetMaterial - nameWithType: ClippingPrimitive.GetMaterial -- uid: XRTK.Utilities.Rendering.ClippingPrimitive.Initialize - name: Initialize() - href: api/XRTK.Utilities.Rendering.ClippingPrimitive.html#XRTK_Utilities_Rendering_ClippingPrimitive_Initialize - commentId: M:XRTK.Utilities.Rendering.ClippingPrimitive.Initialize - fullName: XRTK.Utilities.Rendering.ClippingPrimitive.Initialize() - nameWithType: ClippingPrimitive.Initialize() -- uid: XRTK.Utilities.Rendering.ClippingPrimitive.Initialize* - name: Initialize - href: api/XRTK.Utilities.Rendering.ClippingPrimitive.html#XRTK_Utilities_Rendering_ClippingPrimitive_Initialize_ - commentId: Overload:XRTK.Utilities.Rendering.ClippingPrimitive.Initialize - isSpec: "True" - fullName: XRTK.Utilities.Rendering.ClippingPrimitive.Initialize - nameWithType: ClippingPrimitive.Initialize -- uid: XRTK.Utilities.Rendering.ClippingPrimitive.Keyword - name: Keyword - href: api/XRTK.Utilities.Rendering.ClippingPrimitive.html#XRTK_Utilities_Rendering_ClippingPrimitive_Keyword - commentId: P:XRTK.Utilities.Rendering.ClippingPrimitive.Keyword - fullName: XRTK.Utilities.Rendering.ClippingPrimitive.Keyword - nameWithType: ClippingPrimitive.Keyword -- uid: XRTK.Utilities.Rendering.ClippingPrimitive.Keyword* - name: Keyword - href: api/XRTK.Utilities.Rendering.ClippingPrimitive.html#XRTK_Utilities_Rendering_ClippingPrimitive_Keyword_ - commentId: Overload:XRTK.Utilities.Rendering.ClippingPrimitive.Keyword - isSpec: "True" - fullName: XRTK.Utilities.Rendering.ClippingPrimitive.Keyword - nameWithType: ClippingPrimitive.Keyword -- uid: XRTK.Utilities.Rendering.ClippingPrimitive.KeywordProperty - name: KeywordProperty - href: api/XRTK.Utilities.Rendering.ClippingPrimitive.html#XRTK_Utilities_Rendering_ClippingPrimitive_KeywordProperty - commentId: P:XRTK.Utilities.Rendering.ClippingPrimitive.KeywordProperty - fullName: XRTK.Utilities.Rendering.ClippingPrimitive.KeywordProperty - nameWithType: ClippingPrimitive.KeywordProperty -- uid: XRTK.Utilities.Rendering.ClippingPrimitive.KeywordProperty* - name: KeywordProperty - href: api/XRTK.Utilities.Rendering.ClippingPrimitive.html#XRTK_Utilities_Rendering_ClippingPrimitive_KeywordProperty_ - commentId: Overload:XRTK.Utilities.Rendering.ClippingPrimitive.KeywordProperty - isSpec: "True" - fullName: XRTK.Utilities.Rendering.ClippingPrimitive.KeywordProperty - nameWithType: ClippingPrimitive.KeywordProperty -- uid: XRTK.Utilities.Rendering.ClippingPrimitive.LateUpdate - name: LateUpdate() - href: api/XRTK.Utilities.Rendering.ClippingPrimitive.html#XRTK_Utilities_Rendering_ClippingPrimitive_LateUpdate - commentId: M:XRTK.Utilities.Rendering.ClippingPrimitive.LateUpdate - fullName: XRTK.Utilities.Rendering.ClippingPrimitive.LateUpdate() - nameWithType: ClippingPrimitive.LateUpdate() -- uid: XRTK.Utilities.Rendering.ClippingPrimitive.LateUpdate* - name: LateUpdate - href: api/XRTK.Utilities.Rendering.ClippingPrimitive.html#XRTK_Utilities_Rendering_ClippingPrimitive_LateUpdate_ - commentId: Overload:XRTK.Utilities.Rendering.ClippingPrimitive.LateUpdate - isSpec: "True" - fullName: XRTK.Utilities.Rendering.ClippingPrimitive.LateUpdate - nameWithType: ClippingPrimitive.LateUpdate -- uid: XRTK.Utilities.Rendering.ClippingPrimitive.OnDestroy - name: OnDestroy() - href: api/XRTK.Utilities.Rendering.ClippingPrimitive.html#XRTK_Utilities_Rendering_ClippingPrimitive_OnDestroy - commentId: M:XRTK.Utilities.Rendering.ClippingPrimitive.OnDestroy - fullName: XRTK.Utilities.Rendering.ClippingPrimitive.OnDestroy() - nameWithType: ClippingPrimitive.OnDestroy() -- uid: XRTK.Utilities.Rendering.ClippingPrimitive.OnDestroy* - name: OnDestroy - href: api/XRTK.Utilities.Rendering.ClippingPrimitive.html#XRTK_Utilities_Rendering_ClippingPrimitive_OnDestroy_ - commentId: Overload:XRTK.Utilities.Rendering.ClippingPrimitive.OnDestroy - isSpec: "True" - fullName: XRTK.Utilities.Rendering.ClippingPrimitive.OnDestroy - nameWithType: ClippingPrimitive.OnDestroy -- uid: XRTK.Utilities.Rendering.ClippingPrimitive.OnDisable - name: OnDisable() - href: api/XRTK.Utilities.Rendering.ClippingPrimitive.html#XRTK_Utilities_Rendering_ClippingPrimitive_OnDisable - commentId: M:XRTK.Utilities.Rendering.ClippingPrimitive.OnDisable - fullName: XRTK.Utilities.Rendering.ClippingPrimitive.OnDisable() - nameWithType: ClippingPrimitive.OnDisable() -- uid: XRTK.Utilities.Rendering.ClippingPrimitive.OnDisable* - name: OnDisable - href: api/XRTK.Utilities.Rendering.ClippingPrimitive.html#XRTK_Utilities_Rendering_ClippingPrimitive_OnDisable_ - commentId: Overload:XRTK.Utilities.Rendering.ClippingPrimitive.OnDisable - isSpec: "True" - fullName: XRTK.Utilities.Rendering.ClippingPrimitive.OnDisable - nameWithType: ClippingPrimitive.OnDisable -- uid: XRTK.Utilities.Rendering.ClippingPrimitive.OnEnable - name: OnEnable() - href: api/XRTK.Utilities.Rendering.ClippingPrimitive.html#XRTK_Utilities_Rendering_ClippingPrimitive_OnEnable - commentId: M:XRTK.Utilities.Rendering.ClippingPrimitive.OnEnable - fullName: XRTK.Utilities.Rendering.ClippingPrimitive.OnEnable() - nameWithType: ClippingPrimitive.OnEnable() -- uid: XRTK.Utilities.Rendering.ClippingPrimitive.OnEnable* - name: OnEnable - href: api/XRTK.Utilities.Rendering.ClippingPrimitive.html#XRTK_Utilities_Rendering_ClippingPrimitive_OnEnable_ - commentId: Overload:XRTK.Utilities.Rendering.ClippingPrimitive.OnEnable - isSpec: "True" - fullName: XRTK.Utilities.Rendering.ClippingPrimitive.OnEnable - nameWithType: ClippingPrimitive.OnEnable -- uid: XRTK.Utilities.Rendering.ClippingPrimitive.OnValidate - name: OnValidate() - href: api/XRTK.Utilities.Rendering.ClippingPrimitive.html#XRTK_Utilities_Rendering_ClippingPrimitive_OnValidate - commentId: M:XRTK.Utilities.Rendering.ClippingPrimitive.OnValidate - fullName: XRTK.Utilities.Rendering.ClippingPrimitive.OnValidate() - nameWithType: ClippingPrimitive.OnValidate() -- uid: XRTK.Utilities.Rendering.ClippingPrimitive.OnValidate* - name: OnValidate - href: api/XRTK.Utilities.Rendering.ClippingPrimitive.html#XRTK_Utilities_Rendering_ClippingPrimitive_OnValidate_ - commentId: Overload:XRTK.Utilities.Rendering.ClippingPrimitive.OnValidate - isSpec: "True" - fullName: XRTK.Utilities.Rendering.ClippingPrimitive.OnValidate - nameWithType: ClippingPrimitive.OnValidate -- uid: XRTK.Utilities.Rendering.ClippingPrimitive.RemoveRenderer(UnityEngine.Renderer) - name: RemoveRenderer(Renderer) - href: api/XRTK.Utilities.Rendering.ClippingPrimitive.html#XRTK_Utilities_Rendering_ClippingPrimitive_RemoveRenderer_UnityEngine_Renderer_ - commentId: M:XRTK.Utilities.Rendering.ClippingPrimitive.RemoveRenderer(UnityEngine.Renderer) - fullName: XRTK.Utilities.Rendering.ClippingPrimitive.RemoveRenderer(UnityEngine.Renderer) - nameWithType: ClippingPrimitive.RemoveRenderer(Renderer) -- uid: XRTK.Utilities.Rendering.ClippingPrimitive.RemoveRenderer* - name: RemoveRenderer - href: api/XRTK.Utilities.Rendering.ClippingPrimitive.html#XRTK_Utilities_Rendering_ClippingPrimitive_RemoveRenderer_ - commentId: Overload:XRTK.Utilities.Rendering.ClippingPrimitive.RemoveRenderer - isSpec: "True" - fullName: XRTK.Utilities.Rendering.ClippingPrimitive.RemoveRenderer - nameWithType: ClippingPrimitive.RemoveRenderer -- uid: XRTK.Utilities.Rendering.ClippingPrimitive.RestoreUnassignedMaterials - name: RestoreUnassignedMaterials() - href: api/XRTK.Utilities.Rendering.ClippingPrimitive.html#XRTK_Utilities_Rendering_ClippingPrimitive_RestoreUnassignedMaterials - commentId: M:XRTK.Utilities.Rendering.ClippingPrimitive.RestoreUnassignedMaterials - fullName: XRTK.Utilities.Rendering.ClippingPrimitive.RestoreUnassignedMaterials() - nameWithType: ClippingPrimitive.RestoreUnassignedMaterials() -- uid: XRTK.Utilities.Rendering.ClippingPrimitive.RestoreUnassignedMaterials* - name: RestoreUnassignedMaterials - href: api/XRTK.Utilities.Rendering.ClippingPrimitive.html#XRTK_Utilities_Rendering_ClippingPrimitive_RestoreUnassignedMaterials_ - commentId: Overload:XRTK.Utilities.Rendering.ClippingPrimitive.RestoreUnassignedMaterials - isSpec: "True" - fullName: XRTK.Utilities.Rendering.ClippingPrimitive.RestoreUnassignedMaterials - nameWithType: ClippingPrimitive.RestoreUnassignedMaterials -- uid: XRTK.Utilities.Rendering.ClippingPrimitive.Side - name: ClippingPrimitive.Side - href: api/XRTK.Utilities.Rendering.ClippingPrimitive.Side.html - commentId: T:XRTK.Utilities.Rendering.ClippingPrimitive.Side - fullName: XRTK.Utilities.Rendering.ClippingPrimitive.Side - nameWithType: ClippingPrimitive.Side -- uid: XRTK.Utilities.Rendering.ClippingPrimitive.Side.Inside - name: Inside - href: api/XRTK.Utilities.Rendering.ClippingPrimitive.Side.html#XRTK_Utilities_Rendering_ClippingPrimitive_Side_Inside - commentId: F:XRTK.Utilities.Rendering.ClippingPrimitive.Side.Inside - fullName: XRTK.Utilities.Rendering.ClippingPrimitive.Side.Inside - nameWithType: ClippingPrimitive.Side.Inside -- uid: XRTK.Utilities.Rendering.ClippingPrimitive.Side.Outside - name: Outside - href: api/XRTK.Utilities.Rendering.ClippingPrimitive.Side.html#XRTK_Utilities_Rendering_ClippingPrimitive_Side_Outside - commentId: F:XRTK.Utilities.Rendering.ClippingPrimitive.Side.Outside - fullName: XRTK.Utilities.Rendering.ClippingPrimitive.Side.Outside - nameWithType: ClippingPrimitive.Side.Outside -- uid: XRTK.Utilities.Rendering.ClippingPrimitive.ToggleClippingFeature(System.Boolean) - name: ToggleClippingFeature(Boolean) - href: api/XRTK.Utilities.Rendering.ClippingPrimitive.html#XRTK_Utilities_Rendering_ClippingPrimitive_ToggleClippingFeature_System_Boolean_ - commentId: M:XRTK.Utilities.Rendering.ClippingPrimitive.ToggleClippingFeature(System.Boolean) - fullName: XRTK.Utilities.Rendering.ClippingPrimitive.ToggleClippingFeature(System.Boolean) - nameWithType: ClippingPrimitive.ToggleClippingFeature(Boolean) -- uid: XRTK.Utilities.Rendering.ClippingPrimitive.ToggleClippingFeature(UnityEngine.Material,System.Boolean) - name: ToggleClippingFeature(Material, Boolean) - href: api/XRTK.Utilities.Rendering.ClippingPrimitive.html#XRTK_Utilities_Rendering_ClippingPrimitive_ToggleClippingFeature_UnityEngine_Material_System_Boolean_ - commentId: M:XRTK.Utilities.Rendering.ClippingPrimitive.ToggleClippingFeature(UnityEngine.Material,System.Boolean) - fullName: XRTK.Utilities.Rendering.ClippingPrimitive.ToggleClippingFeature(UnityEngine.Material, System.Boolean) - nameWithType: ClippingPrimitive.ToggleClippingFeature(Material, Boolean) -- uid: XRTK.Utilities.Rendering.ClippingPrimitive.ToggleClippingFeature* - name: ToggleClippingFeature - href: api/XRTK.Utilities.Rendering.ClippingPrimitive.html#XRTK_Utilities_Rendering_ClippingPrimitive_ToggleClippingFeature_ - commentId: Overload:XRTK.Utilities.Rendering.ClippingPrimitive.ToggleClippingFeature - isSpec: "True" - fullName: XRTK.Utilities.Rendering.ClippingPrimitive.ToggleClippingFeature - nameWithType: ClippingPrimitive.ToggleClippingFeature -- uid: XRTK.Utilities.Rendering.ClippingPrimitive.UpdateRenderers - name: UpdateRenderers() - href: api/XRTK.Utilities.Rendering.ClippingPrimitive.html#XRTK_Utilities_Rendering_ClippingPrimitive_UpdateRenderers - commentId: M:XRTK.Utilities.Rendering.ClippingPrimitive.UpdateRenderers - fullName: XRTK.Utilities.Rendering.ClippingPrimitive.UpdateRenderers() - nameWithType: ClippingPrimitive.UpdateRenderers() -- uid: XRTK.Utilities.Rendering.ClippingPrimitive.UpdateRenderers* - name: UpdateRenderers - href: api/XRTK.Utilities.Rendering.ClippingPrimitive.html#XRTK_Utilities_Rendering_ClippingPrimitive_UpdateRenderers_ - commentId: Overload:XRTK.Utilities.Rendering.ClippingPrimitive.UpdateRenderers - isSpec: "True" - fullName: XRTK.Utilities.Rendering.ClippingPrimitive.UpdateRenderers - nameWithType: ClippingPrimitive.UpdateRenderers -- uid: XRTK.Utilities.Rendering.ClippingPrimitive.UpdateShaderProperties(UnityEngine.MaterialPropertyBlock) - name: UpdateShaderProperties(MaterialPropertyBlock) - href: api/XRTK.Utilities.Rendering.ClippingPrimitive.html#XRTK_Utilities_Rendering_ClippingPrimitive_UpdateShaderProperties_UnityEngine_MaterialPropertyBlock_ - commentId: M:XRTK.Utilities.Rendering.ClippingPrimitive.UpdateShaderProperties(UnityEngine.MaterialPropertyBlock) - fullName: XRTK.Utilities.Rendering.ClippingPrimitive.UpdateShaderProperties(UnityEngine.MaterialPropertyBlock) - nameWithType: ClippingPrimitive.UpdateShaderProperties(MaterialPropertyBlock) -- uid: XRTK.Utilities.Rendering.ClippingPrimitive.UpdateShaderProperties* - name: UpdateShaderProperties - href: api/XRTK.Utilities.Rendering.ClippingPrimitive.html#XRTK_Utilities_Rendering_ClippingPrimitive_UpdateShaderProperties_ - commentId: Overload:XRTK.Utilities.Rendering.ClippingPrimitive.UpdateShaderProperties - isSpec: "True" - fullName: XRTK.Utilities.Rendering.ClippingPrimitive.UpdateShaderProperties - nameWithType: ClippingPrimitive.UpdateShaderProperties -- uid: XRTK.Utilities.Rendering.ClippingSphere - name: ClippingSphere - href: api/XRTK.Utilities.Rendering.ClippingSphere.html - commentId: T:XRTK.Utilities.Rendering.ClippingSphere - fullName: XRTK.Utilities.Rendering.ClippingSphere - nameWithType: ClippingSphere -- uid: XRTK.Utilities.Rendering.ClippingSphere.ClippingSideProperty - name: ClippingSideProperty - href: api/XRTK.Utilities.Rendering.ClippingSphere.html#XRTK_Utilities_Rendering_ClippingSphere_ClippingSideProperty - commentId: P:XRTK.Utilities.Rendering.ClippingSphere.ClippingSideProperty - fullName: XRTK.Utilities.Rendering.ClippingSphere.ClippingSideProperty - nameWithType: ClippingSphere.ClippingSideProperty -- uid: XRTK.Utilities.Rendering.ClippingSphere.ClippingSideProperty* - name: ClippingSideProperty - href: api/XRTK.Utilities.Rendering.ClippingSphere.html#XRTK_Utilities_Rendering_ClippingSphere_ClippingSideProperty_ - commentId: Overload:XRTK.Utilities.Rendering.ClippingSphere.ClippingSideProperty - isSpec: "True" - fullName: XRTK.Utilities.Rendering.ClippingSphere.ClippingSideProperty - nameWithType: ClippingSphere.ClippingSideProperty -- uid: XRTK.Utilities.Rendering.ClippingSphere.Initialize - name: Initialize() - href: api/XRTK.Utilities.Rendering.ClippingSphere.html#XRTK_Utilities_Rendering_ClippingSphere_Initialize - commentId: M:XRTK.Utilities.Rendering.ClippingSphere.Initialize - fullName: XRTK.Utilities.Rendering.ClippingSphere.Initialize() - nameWithType: ClippingSphere.Initialize() -- uid: XRTK.Utilities.Rendering.ClippingSphere.Initialize* - name: Initialize - href: api/XRTK.Utilities.Rendering.ClippingSphere.html#XRTK_Utilities_Rendering_ClippingSphere_Initialize_ - commentId: Overload:XRTK.Utilities.Rendering.ClippingSphere.Initialize - isSpec: "True" - fullName: XRTK.Utilities.Rendering.ClippingSphere.Initialize - nameWithType: ClippingSphere.Initialize -- uid: XRTK.Utilities.Rendering.ClippingSphere.Keyword - name: Keyword - href: api/XRTK.Utilities.Rendering.ClippingSphere.html#XRTK_Utilities_Rendering_ClippingSphere_Keyword - commentId: P:XRTK.Utilities.Rendering.ClippingSphere.Keyword - fullName: XRTK.Utilities.Rendering.ClippingSphere.Keyword - nameWithType: ClippingSphere.Keyword -- uid: XRTK.Utilities.Rendering.ClippingSphere.Keyword* - name: Keyword - href: api/XRTK.Utilities.Rendering.ClippingSphere.html#XRTK_Utilities_Rendering_ClippingSphere_Keyword_ - commentId: Overload:XRTK.Utilities.Rendering.ClippingSphere.Keyword - isSpec: "True" - fullName: XRTK.Utilities.Rendering.ClippingSphere.Keyword - nameWithType: ClippingSphere.Keyword -- uid: XRTK.Utilities.Rendering.ClippingSphere.KeywordProperty - name: KeywordProperty - href: api/XRTK.Utilities.Rendering.ClippingSphere.html#XRTK_Utilities_Rendering_ClippingSphere_KeywordProperty - commentId: P:XRTK.Utilities.Rendering.ClippingSphere.KeywordProperty - fullName: XRTK.Utilities.Rendering.ClippingSphere.KeywordProperty - nameWithType: ClippingSphere.KeywordProperty -- uid: XRTK.Utilities.Rendering.ClippingSphere.KeywordProperty* - name: KeywordProperty - href: api/XRTK.Utilities.Rendering.ClippingSphere.html#XRTK_Utilities_Rendering_ClippingSphere_KeywordProperty_ - commentId: Overload:XRTK.Utilities.Rendering.ClippingSphere.KeywordProperty - isSpec: "True" - fullName: XRTK.Utilities.Rendering.ClippingSphere.KeywordProperty - nameWithType: ClippingSphere.KeywordProperty -- uid: XRTK.Utilities.Rendering.ClippingSphere.Radius - name: Radius - href: api/XRTK.Utilities.Rendering.ClippingSphere.html#XRTK_Utilities_Rendering_ClippingSphere_Radius - commentId: P:XRTK.Utilities.Rendering.ClippingSphere.Radius - fullName: XRTK.Utilities.Rendering.ClippingSphere.Radius - nameWithType: ClippingSphere.Radius -- uid: XRTK.Utilities.Rendering.ClippingSphere.Radius* - name: Radius - href: api/XRTK.Utilities.Rendering.ClippingSphere.html#XRTK_Utilities_Rendering_ClippingSphere_Radius_ - commentId: Overload:XRTK.Utilities.Rendering.ClippingSphere.Radius - isSpec: "True" - fullName: XRTK.Utilities.Rendering.ClippingSphere.Radius - nameWithType: ClippingSphere.Radius -- uid: XRTK.Utilities.Rendering.ClippingSphere.UpdateShaderProperties(UnityEngine.MaterialPropertyBlock) - name: UpdateShaderProperties(MaterialPropertyBlock) - href: api/XRTK.Utilities.Rendering.ClippingSphere.html#XRTK_Utilities_Rendering_ClippingSphere_UpdateShaderProperties_UnityEngine_MaterialPropertyBlock_ - commentId: M:XRTK.Utilities.Rendering.ClippingSphere.UpdateShaderProperties(UnityEngine.MaterialPropertyBlock) - fullName: XRTK.Utilities.Rendering.ClippingSphere.UpdateShaderProperties(UnityEngine.MaterialPropertyBlock) - nameWithType: ClippingSphere.UpdateShaderProperties(MaterialPropertyBlock) -- uid: XRTK.Utilities.Rendering.ClippingSphere.UpdateShaderProperties* - name: UpdateShaderProperties - href: api/XRTK.Utilities.Rendering.ClippingSphere.html#XRTK_Utilities_Rendering_ClippingSphere_UpdateShaderProperties_ - commentId: Overload:XRTK.Utilities.Rendering.ClippingSphere.UpdateShaderProperties - isSpec: "True" - fullName: XRTK.Utilities.Rendering.ClippingSphere.UpdateShaderProperties - nameWithType: ClippingSphere.UpdateShaderProperties -- uid: XRTK.Utilities.RenderPipelineUtilities - name: RenderPipelineUtilities - href: api/XRTK.Utilities.RenderPipelineUtilities.html - commentId: T:XRTK.Utilities.RenderPipelineUtilities - fullName: XRTK.Utilities.RenderPipelineUtilities - nameWithType: RenderPipelineUtilities -- uid: XRTK.Utilities.RenderPipelineUtilities.GetActiveRenderingPipeline - name: GetActiveRenderingPipeline() - href: api/XRTK.Utilities.RenderPipelineUtilities.html#XRTK_Utilities_RenderPipelineUtilities_GetActiveRenderingPipeline - commentId: M:XRTK.Utilities.RenderPipelineUtilities.GetActiveRenderingPipeline - fullName: XRTK.Utilities.RenderPipelineUtilities.GetActiveRenderingPipeline() - nameWithType: RenderPipelineUtilities.GetActiveRenderingPipeline() -- uid: XRTK.Utilities.RenderPipelineUtilities.GetActiveRenderingPipeline* - name: GetActiveRenderingPipeline - href: api/XRTK.Utilities.RenderPipelineUtilities.html#XRTK_Utilities_RenderPipelineUtilities_GetActiveRenderingPipeline_ - commentId: Overload:XRTK.Utilities.RenderPipelineUtilities.GetActiveRenderingPipeline - isSpec: "True" - fullName: XRTK.Utilities.RenderPipelineUtilities.GetActiveRenderingPipeline - nameWithType: RenderPipelineUtilities.GetActiveRenderingPipeline -- uid: XRTK.Utilities.StopWatch - name: StopWatch - href: api/XRTK.Utilities.StopWatch.html - commentId: T:XRTK.Utilities.StopWatch - fullName: XRTK.Utilities.StopWatch - nameWithType: StopWatch -- uid: XRTK.Utilities.StopWatch.#ctor - name: StopWatch() - href: api/XRTK.Utilities.StopWatch.html#XRTK_Utilities_StopWatch__ctor - commentId: M:XRTK.Utilities.StopWatch.#ctor - fullName: XRTK.Utilities.StopWatch.StopWatch() - nameWithType: StopWatch.StopWatch() -- uid: XRTK.Utilities.StopWatch.#ctor* - name: StopWatch - href: api/XRTK.Utilities.StopWatch.html#XRTK_Utilities_StopWatch__ctor_ - commentId: Overload:XRTK.Utilities.StopWatch.#ctor - isSpec: "True" - fullName: XRTK.Utilities.StopWatch.StopWatch - nameWithType: StopWatch.StopWatch -- uid: XRTK.Utilities.StopWatch.Current - name: Current - href: api/XRTK.Utilities.StopWatch.html#XRTK_Utilities_StopWatch_Current - commentId: P:XRTK.Utilities.StopWatch.Current - fullName: XRTK.Utilities.StopWatch.Current - nameWithType: StopWatch.Current -- uid: XRTK.Utilities.StopWatch.Current* - name: Current - href: api/XRTK.Utilities.StopWatch.html#XRTK_Utilities_StopWatch_Current_ - commentId: Overload:XRTK.Utilities.StopWatch.Current - isSpec: "True" - fullName: XRTK.Utilities.StopWatch.Current - nameWithType: StopWatch.Current -- uid: XRTK.Utilities.StopWatch.Reset - name: Reset() - href: api/XRTK.Utilities.StopWatch.html#XRTK_Utilities_StopWatch_Reset - commentId: M:XRTK.Utilities.StopWatch.Reset - fullName: XRTK.Utilities.StopWatch.Reset() - nameWithType: StopWatch.Reset() -- uid: XRTK.Utilities.StopWatch.Reset* - name: Reset - href: api/XRTK.Utilities.StopWatch.html#XRTK_Utilities_StopWatch_Reset_ - commentId: Overload:XRTK.Utilities.StopWatch.Reset - isSpec: "True" - fullName: XRTK.Utilities.StopWatch.Reset - nameWithType: StopWatch.Reset -- uid: XRTK.Utilities.StopWatch.TimeStamp - name: TimeStamp - href: api/XRTK.Utilities.StopWatch.html#XRTK_Utilities_StopWatch_TimeStamp - commentId: P:XRTK.Utilities.StopWatch.TimeStamp - fullName: XRTK.Utilities.StopWatch.TimeStamp - nameWithType: StopWatch.TimeStamp -- uid: XRTK.Utilities.StopWatch.TimeStamp* - name: TimeStamp - href: api/XRTK.Utilities.StopWatch.html#XRTK_Utilities_StopWatch_TimeStamp_ - commentId: Overload:XRTK.Utilities.StopWatch.TimeStamp - isSpec: "True" - fullName: XRTK.Utilities.StopWatch.TimeStamp - nameWithType: StopWatch.TimeStamp -- uid: XRTK.Utilities.ValidateConfiguration - name: ValidateConfiguration - href: api/XRTK.Utilities.ValidateConfiguration.html - commentId: T:XRTK.Utilities.ValidateConfiguration - fullName: XRTK.Utilities.ValidateConfiguration - nameWithType: ValidateConfiguration -- uid: XRTK.Utilities.ValidateConfiguration.ValidateControllerProfiles(XRTK.Definitions.Controllers.BaseMixedRealityControllerDataProviderProfile,System.Type[],System.Boolean) - name: ValidateControllerProfiles(BaseMixedRealityControllerDataProviderProfile, Type[], Boolean) - href: api/XRTK.Utilities.ValidateConfiguration.html#XRTK_Utilities_ValidateConfiguration_ValidateControllerProfiles_XRTK_Definitions_Controllers_BaseMixedRealityControllerDataProviderProfile_System_Type___System_Boolean_ - commentId: M:XRTK.Utilities.ValidateConfiguration.ValidateControllerProfiles(XRTK.Definitions.Controllers.BaseMixedRealityControllerDataProviderProfile,System.Type[],System.Boolean) - name.vb: ValidateControllerProfiles(BaseMixedRealityControllerDataProviderProfile, Type(), Boolean) - fullName: XRTK.Utilities.ValidateConfiguration.ValidateControllerProfiles(XRTK.Definitions.Controllers.BaseMixedRealityControllerDataProviderProfile, System.Type[], System.Boolean) - fullName.vb: XRTK.Utilities.ValidateConfiguration.ValidateControllerProfiles(XRTK.Definitions.Controllers.BaseMixedRealityControllerDataProviderProfile, System.Type(), System.Boolean) - nameWithType: ValidateConfiguration.ValidateControllerProfiles(BaseMixedRealityControllerDataProviderProfile, Type[], Boolean) - nameWithType.vb: ValidateConfiguration.ValidateControllerProfiles(BaseMixedRealityControllerDataProviderProfile, Type(), Boolean) -- uid: XRTK.Utilities.ValidateConfiguration.ValidateControllerProfiles* - name: ValidateControllerProfiles - href: api/XRTK.Utilities.ValidateConfiguration.html#XRTK_Utilities_ValidateConfiguration_ValidateControllerProfiles_ - commentId: Overload:XRTK.Utilities.ValidateConfiguration.ValidateControllerProfiles - isSpec: "True" - fullName: XRTK.Utilities.ValidateConfiguration.ValidateControllerProfiles - nameWithType: ValidateConfiguration.ValidateControllerProfiles -- uid: XRTK.Utilities.ValidateConfiguration.ValidateService* - name: ValidateService - href: api/XRTK.Utilities.ValidateConfiguration.html#XRTK_Utilities_ValidateConfiguration_ValidateService_ - commentId: Overload:XRTK.Utilities.ValidateConfiguration.ValidateService - isSpec: "True" - fullName: XRTK.Utilities.ValidateConfiguration.ValidateService - nameWithType: ValidateConfiguration.ValidateService -- uid: XRTK.Utilities.ValidateConfiguration.ValidateService``1(XRTK.Definitions.BaseMixedRealityServiceProfile{``0},System.Type[],XRTK.Interfaces.IMixedRealityServiceConfiguration{``0}[],System.Boolean) - name: ValidateService(BaseMixedRealityServiceProfile, Type[], IMixedRealityServiceConfiguration[], Boolean) - href: api/XRTK.Utilities.ValidateConfiguration.html#XRTK_Utilities_ValidateConfiguration_ValidateService__1_XRTK_Definitions_BaseMixedRealityServiceProfile___0__System_Type___XRTK_Interfaces_IMixedRealityServiceConfiguration___0____System_Boolean_ - commentId: M:XRTK.Utilities.ValidateConfiguration.ValidateService``1(XRTK.Definitions.BaseMixedRealityServiceProfile{``0},System.Type[],XRTK.Interfaces.IMixedRealityServiceConfiguration{``0}[],System.Boolean) - name.vb: ValidateService(Of T)(BaseMixedRealityServiceProfile(Of T), Type(), IMixedRealityServiceConfiguration(Of T)(), Boolean) - fullName: XRTK.Utilities.ValidateConfiguration.ValidateService(XRTK.Definitions.BaseMixedRealityServiceProfile, System.Type[], XRTK.Interfaces.IMixedRealityServiceConfiguration[], System.Boolean) - fullName.vb: XRTK.Utilities.ValidateConfiguration.ValidateService(Of T)(XRTK.Definitions.BaseMixedRealityServiceProfile(Of T), System.Type(), XRTK.Interfaces.IMixedRealityServiceConfiguration(Of T)(), System.Boolean) - nameWithType: ValidateConfiguration.ValidateService(BaseMixedRealityServiceProfile, Type[], IMixedRealityServiceConfiguration[], Boolean) - nameWithType.vb: ValidateConfiguration.ValidateService(Of T)(BaseMixedRealityServiceProfile(Of T), Type(), IMixedRealityServiceConfiguration(Of T)(), Boolean) -- uid: XRTK.Utilities.WebRequestRest - name: XRTK.Utilities.WebRequestRest - href: api/XRTK.Utilities.WebRequestRest.html - commentId: N:XRTK.Utilities.WebRequestRest - fullName: XRTK.Utilities.WebRequestRest - nameWithType: XRTK.Utilities.WebRequestRest -- uid: XRTK.Utilities.WebRequestRest.Response - name: Response - href: api/XRTK.Utilities.WebRequestRest.Response.html - commentId: T:XRTK.Utilities.WebRequestRest.Response - fullName: XRTK.Utilities.WebRequestRest.Response - nameWithType: Response -- uid: XRTK.Utilities.WebRequestRest.Response.#ctor(System.Boolean,System.String,System.Byte[],System.Int64) - name: Response(Boolean, String, Byte[], Int64) - href: api/XRTK.Utilities.WebRequestRest.Response.html#XRTK_Utilities_WebRequestRest_Response__ctor_System_Boolean_System_String_System_Byte___System_Int64_ - commentId: M:XRTK.Utilities.WebRequestRest.Response.#ctor(System.Boolean,System.String,System.Byte[],System.Int64) - name.vb: Response(Boolean, String, Byte(), Int64) - fullName: XRTK.Utilities.WebRequestRest.Response.Response(System.Boolean, System.String, System.Byte[], System.Int64) - fullName.vb: XRTK.Utilities.WebRequestRest.Response.Response(System.Boolean, System.String, System.Byte(), System.Int64) - nameWithType: Response.Response(Boolean, String, Byte[], Int64) - nameWithType.vb: Response.Response(Boolean, String, Byte(), Int64) -- uid: XRTK.Utilities.WebRequestRest.Response.#ctor* - name: Response - href: api/XRTK.Utilities.WebRequestRest.Response.html#XRTK_Utilities_WebRequestRest_Response__ctor_ - commentId: Overload:XRTK.Utilities.WebRequestRest.Response.#ctor - isSpec: "True" - fullName: XRTK.Utilities.WebRequestRest.Response.Response - nameWithType: Response.Response -- uid: XRTK.Utilities.WebRequestRest.Response.ResponseBody - name: ResponseBody - href: api/XRTK.Utilities.WebRequestRest.Response.html#XRTK_Utilities_WebRequestRest_Response_ResponseBody - commentId: P:XRTK.Utilities.WebRequestRest.Response.ResponseBody - fullName: XRTK.Utilities.WebRequestRest.Response.ResponseBody - nameWithType: Response.ResponseBody -- uid: XRTK.Utilities.WebRequestRest.Response.ResponseBody* - name: ResponseBody - href: api/XRTK.Utilities.WebRequestRest.Response.html#XRTK_Utilities_WebRequestRest_Response_ResponseBody_ - commentId: Overload:XRTK.Utilities.WebRequestRest.Response.ResponseBody - isSpec: "True" - fullName: XRTK.Utilities.WebRequestRest.Response.ResponseBody - nameWithType: Response.ResponseBody -- uid: XRTK.Utilities.WebRequestRest.Response.ResponseCode - name: ResponseCode - href: api/XRTK.Utilities.WebRequestRest.Response.html#XRTK_Utilities_WebRequestRest_Response_ResponseCode - commentId: P:XRTK.Utilities.WebRequestRest.Response.ResponseCode - fullName: XRTK.Utilities.WebRequestRest.Response.ResponseCode - nameWithType: Response.ResponseCode -- uid: XRTK.Utilities.WebRequestRest.Response.ResponseCode* - name: ResponseCode - href: api/XRTK.Utilities.WebRequestRest.Response.html#XRTK_Utilities_WebRequestRest_Response_ResponseCode_ - commentId: Overload:XRTK.Utilities.WebRequestRest.Response.ResponseCode - isSpec: "True" - fullName: XRTK.Utilities.WebRequestRest.Response.ResponseCode - nameWithType: Response.ResponseCode -- uid: XRTK.Utilities.WebRequestRest.Response.ResponseData - name: ResponseData - href: api/XRTK.Utilities.WebRequestRest.Response.html#XRTK_Utilities_WebRequestRest_Response_ResponseData - commentId: P:XRTK.Utilities.WebRequestRest.Response.ResponseData - fullName: XRTK.Utilities.WebRequestRest.Response.ResponseData - nameWithType: Response.ResponseData -- uid: XRTK.Utilities.WebRequestRest.Response.ResponseData* - name: ResponseData - href: api/XRTK.Utilities.WebRequestRest.Response.html#XRTK_Utilities_WebRequestRest_Response_ResponseData_ - commentId: Overload:XRTK.Utilities.WebRequestRest.Response.ResponseData - isSpec: "True" - fullName: XRTK.Utilities.WebRequestRest.Response.ResponseData - nameWithType: Response.ResponseData -- uid: XRTK.Utilities.WebRequestRest.Response.Successful - name: Successful - href: api/XRTK.Utilities.WebRequestRest.Response.html#XRTK_Utilities_WebRequestRest_Response_Successful - commentId: P:XRTK.Utilities.WebRequestRest.Response.Successful - fullName: XRTK.Utilities.WebRequestRest.Response.Successful - nameWithType: Response.Successful -- uid: XRTK.Utilities.WebRequestRest.Response.Successful* - name: Successful - href: api/XRTK.Utilities.WebRequestRest.Response.html#XRTK_Utilities_WebRequestRest_Response_Successful_ - commentId: Overload:XRTK.Utilities.WebRequestRest.Response.Successful - isSpec: "True" - fullName: XRTK.Utilities.WebRequestRest.Response.Successful - nameWithType: Response.Successful -- uid: XRTK.Utilities.WebRequestRest.Rest - name: Rest - href: api/XRTK.Utilities.WebRequestRest.Rest.html - commentId: T:XRTK.Utilities.WebRequestRest.Rest - fullName: XRTK.Utilities.WebRequestRest.Rest - nameWithType: Rest -- uid: XRTK.Utilities.WebRequestRest.Rest.DeleteAsync(System.String,System.Collections.Generic.Dictionary{System.String,System.String},System.IProgress{System.Single},System.Int32) - name: DeleteAsync(String, Dictionary, IProgress, Int32) - href: api/XRTK.Utilities.WebRequestRest.Rest.html#XRTK_Utilities_WebRequestRest_Rest_DeleteAsync_System_String_System_Collections_Generic_Dictionary_System_String_System_String__System_IProgress_System_Single__System_Int32_ - commentId: M:XRTK.Utilities.WebRequestRest.Rest.DeleteAsync(System.String,System.Collections.Generic.Dictionary{System.String,System.String},System.IProgress{System.Single},System.Int32) - name.vb: DeleteAsync(String, Dictionary(Of String, String), IProgress(Of Single), Int32) - fullName: XRTK.Utilities.WebRequestRest.Rest.DeleteAsync(System.String, System.Collections.Generic.Dictionary, System.IProgress, System.Int32) - fullName.vb: XRTK.Utilities.WebRequestRest.Rest.DeleteAsync(System.String, System.Collections.Generic.Dictionary(Of System.String, System.String), System.IProgress(Of System.Single), System.Int32) - nameWithType: Rest.DeleteAsync(String, Dictionary, IProgress, Int32) - nameWithType.vb: Rest.DeleteAsync(String, Dictionary(Of String, String), IProgress(Of Single), Int32) -- uid: XRTK.Utilities.WebRequestRest.Rest.DeleteAsync* - name: DeleteAsync - href: api/XRTK.Utilities.WebRequestRest.Rest.html#XRTK_Utilities_WebRequestRest_Rest_DeleteAsync_ - commentId: Overload:XRTK.Utilities.WebRequestRest.Rest.DeleteAsync - isSpec: "True" - fullName: XRTK.Utilities.WebRequestRest.Rest.DeleteAsync - nameWithType: Rest.DeleteAsync -- uid: XRTK.Utilities.WebRequestRest.Rest.DeleteFileDownloadCache - name: DeleteFileDownloadCache() - href: api/XRTK.Utilities.WebRequestRest.Rest.html#XRTK_Utilities_WebRequestRest_Rest_DeleteFileDownloadCache - commentId: M:XRTK.Utilities.WebRequestRest.Rest.DeleteFileDownloadCache - fullName: XRTK.Utilities.WebRequestRest.Rest.DeleteFileDownloadCache() - nameWithType: Rest.DeleteFileDownloadCache() -- uid: XRTK.Utilities.WebRequestRest.Rest.DeleteFileDownloadCache* - name: DeleteFileDownloadCache - href: api/XRTK.Utilities.WebRequestRest.Rest.html#XRTK_Utilities_WebRequestRest_Rest_DeleteFileDownloadCache_ - commentId: Overload:XRTK.Utilities.WebRequestRest.Rest.DeleteFileDownloadCache - isSpec: "True" - fullName: XRTK.Utilities.WebRequestRest.Rest.DeleteFileDownloadCache - nameWithType: Rest.DeleteFileDownloadCache -- uid: XRTK.Utilities.WebRequestRest.Rest.DownloadAssetBundleAsync(System.String,System.Collections.Generic.Dictionary{System.String,System.String},System.IProgress{System.Single},System.Int32) - name: DownloadAssetBundleAsync(String, Dictionary, IProgress, Int32) - href: api/XRTK.Utilities.WebRequestRest.Rest.html#XRTK_Utilities_WebRequestRest_Rest_DownloadAssetBundleAsync_System_String_System_Collections_Generic_Dictionary_System_String_System_String__System_IProgress_System_Single__System_Int32_ - commentId: M:XRTK.Utilities.WebRequestRest.Rest.DownloadAssetBundleAsync(System.String,System.Collections.Generic.Dictionary{System.String,System.String},System.IProgress{System.Single},System.Int32) - name.vb: DownloadAssetBundleAsync(String, Dictionary(Of String, String), IProgress(Of Single), Int32) - fullName: XRTK.Utilities.WebRequestRest.Rest.DownloadAssetBundleAsync(System.String, System.Collections.Generic.Dictionary, System.IProgress, System.Int32) - fullName.vb: XRTK.Utilities.WebRequestRest.Rest.DownloadAssetBundleAsync(System.String, System.Collections.Generic.Dictionary(Of System.String, System.String), System.IProgress(Of System.Single), System.Int32) - nameWithType: Rest.DownloadAssetBundleAsync(String, Dictionary, IProgress, Int32) - nameWithType.vb: Rest.DownloadAssetBundleAsync(String, Dictionary(Of String, String), IProgress(Of Single), Int32) -- uid: XRTK.Utilities.WebRequestRest.Rest.DownloadAssetBundleAsync* - name: DownloadAssetBundleAsync - href: api/XRTK.Utilities.WebRequestRest.Rest.html#XRTK_Utilities_WebRequestRest_Rest_DownloadAssetBundleAsync_ - commentId: Overload:XRTK.Utilities.WebRequestRest.Rest.DownloadAssetBundleAsync - isSpec: "True" - fullName: XRTK.Utilities.WebRequestRest.Rest.DownloadAssetBundleAsync - nameWithType: Rest.DownloadAssetBundleAsync -- uid: XRTK.Utilities.WebRequestRest.Rest.DownloadAudioClipAsync(System.String,UnityEngine.AudioType,System.Collections.Generic.Dictionary{System.String,System.String},System.IProgress{System.Single},System.Int32) - name: DownloadAudioClipAsync(String, AudioType, Dictionary, IProgress, Int32) - href: api/XRTK.Utilities.WebRequestRest.Rest.html#XRTK_Utilities_WebRequestRest_Rest_DownloadAudioClipAsync_System_String_UnityEngine_AudioType_System_Collections_Generic_Dictionary_System_String_System_String__System_IProgress_System_Single__System_Int32_ - commentId: M:XRTK.Utilities.WebRequestRest.Rest.DownloadAudioClipAsync(System.String,UnityEngine.AudioType,System.Collections.Generic.Dictionary{System.String,System.String},System.IProgress{System.Single},System.Int32) - name.vb: DownloadAudioClipAsync(String, AudioType, Dictionary(Of String, String), IProgress(Of Single), Int32) - fullName: XRTK.Utilities.WebRequestRest.Rest.DownloadAudioClipAsync(System.String, UnityEngine.AudioType, System.Collections.Generic.Dictionary, System.IProgress, System.Int32) - fullName.vb: XRTK.Utilities.WebRequestRest.Rest.DownloadAudioClipAsync(System.String, UnityEngine.AudioType, System.Collections.Generic.Dictionary(Of System.String, System.String), System.IProgress(Of System.Single), System.Int32) - nameWithType: Rest.DownloadAudioClipAsync(String, AudioType, Dictionary, IProgress, Int32) - nameWithType.vb: Rest.DownloadAudioClipAsync(String, AudioType, Dictionary(Of String, String), IProgress(Of Single), Int32) -- uid: XRTK.Utilities.WebRequestRest.Rest.DownloadAudioClipAsync* - name: DownloadAudioClipAsync - href: api/XRTK.Utilities.WebRequestRest.Rest.html#XRTK_Utilities_WebRequestRest_Rest_DownloadAudioClipAsync_ - commentId: Overload:XRTK.Utilities.WebRequestRest.Rest.DownloadAudioClipAsync - isSpec: "True" - fullName: XRTK.Utilities.WebRequestRest.Rest.DownloadAudioClipAsync - nameWithType: Rest.DownloadAudioClipAsync -- uid: XRTK.Utilities.WebRequestRest.Rest.DownloadFileAsync(System.String,System.String,System.Collections.Generic.Dictionary{System.String,System.String},System.IProgress{System.Single},System.Int32) - name: DownloadFileAsync(String, String, Dictionary, IProgress, Int32) - href: api/XRTK.Utilities.WebRequestRest.Rest.html#XRTK_Utilities_WebRequestRest_Rest_DownloadFileAsync_System_String_System_String_System_Collections_Generic_Dictionary_System_String_System_String__System_IProgress_System_Single__System_Int32_ - commentId: M:XRTK.Utilities.WebRequestRest.Rest.DownloadFileAsync(System.String,System.String,System.Collections.Generic.Dictionary{System.String,System.String},System.IProgress{System.Single},System.Int32) - name.vb: DownloadFileAsync(String, String, Dictionary(Of String, String), IProgress(Of Single), Int32) - fullName: XRTK.Utilities.WebRequestRest.Rest.DownloadFileAsync(System.String, System.String, System.Collections.Generic.Dictionary, System.IProgress, System.Int32) - fullName.vb: XRTK.Utilities.WebRequestRest.Rest.DownloadFileAsync(System.String, System.String, System.Collections.Generic.Dictionary(Of System.String, System.String), System.IProgress(Of System.Single), System.Int32) - nameWithType: Rest.DownloadFileAsync(String, String, Dictionary, IProgress, Int32) - nameWithType.vb: Rest.DownloadFileAsync(String, String, Dictionary(Of String, String), IProgress(Of Single), Int32) -- uid: XRTK.Utilities.WebRequestRest.Rest.DownloadFileAsync* - name: DownloadFileAsync - href: api/XRTK.Utilities.WebRequestRest.Rest.html#XRTK_Utilities_WebRequestRest_Rest_DownloadFileAsync_ - commentId: Overload:XRTK.Utilities.WebRequestRest.Rest.DownloadFileAsync - isSpec: "True" - fullName: XRTK.Utilities.WebRequestRest.Rest.DownloadFileAsync - nameWithType: Rest.DownloadFileAsync -- uid: XRTK.Utilities.WebRequestRest.Rest.DownloadTextureAsync(System.String,System.Collections.Generic.Dictionary{System.String,System.String},System.IProgress{System.Single},System.Int32) - name: DownloadTextureAsync(String, Dictionary, IProgress, Int32) - href: api/XRTK.Utilities.WebRequestRest.Rest.html#XRTK_Utilities_WebRequestRest_Rest_DownloadTextureAsync_System_String_System_Collections_Generic_Dictionary_System_String_System_String__System_IProgress_System_Single__System_Int32_ - commentId: M:XRTK.Utilities.WebRequestRest.Rest.DownloadTextureAsync(System.String,System.Collections.Generic.Dictionary{System.String,System.String},System.IProgress{System.Single},System.Int32) - name.vb: DownloadTextureAsync(String, Dictionary(Of String, String), IProgress(Of Single), Int32) - fullName: XRTK.Utilities.WebRequestRest.Rest.DownloadTextureAsync(System.String, System.Collections.Generic.Dictionary, System.IProgress, System.Int32) - fullName.vb: XRTK.Utilities.WebRequestRest.Rest.DownloadTextureAsync(System.String, System.Collections.Generic.Dictionary(Of System.String, System.String), System.IProgress(Of System.Single), System.Int32) - nameWithType: Rest.DownloadTextureAsync(String, Dictionary, IProgress, Int32) - nameWithType.vb: Rest.DownloadTextureAsync(String, Dictionary(Of String, String), IProgress(Of Single), Int32) -- uid: XRTK.Utilities.WebRequestRest.Rest.DownloadTextureAsync* - name: DownloadTextureAsync - href: api/XRTK.Utilities.WebRequestRest.Rest.html#XRTK_Utilities_WebRequestRest_Rest_DownloadTextureAsync_ - commentId: Overload:XRTK.Utilities.WebRequestRest.Rest.DownloadTextureAsync - isSpec: "True" - fullName: XRTK.Utilities.WebRequestRest.Rest.DownloadTextureAsync - nameWithType: Rest.DownloadTextureAsync -- uid: XRTK.Utilities.WebRequestRest.Rest.GetAsync(System.String,System.Collections.Generic.Dictionary{System.String,System.String},System.IProgress{System.Single},System.Int32) - name: GetAsync(String, Dictionary, IProgress, Int32) - href: api/XRTK.Utilities.WebRequestRest.Rest.html#XRTK_Utilities_WebRequestRest_Rest_GetAsync_System_String_System_Collections_Generic_Dictionary_System_String_System_String__System_IProgress_System_Single__System_Int32_ - commentId: M:XRTK.Utilities.WebRequestRest.Rest.GetAsync(System.String,System.Collections.Generic.Dictionary{System.String,System.String},System.IProgress{System.Single},System.Int32) - name.vb: GetAsync(String, Dictionary(Of String, String), IProgress(Of Single), Int32) - fullName: XRTK.Utilities.WebRequestRest.Rest.GetAsync(System.String, System.Collections.Generic.Dictionary, System.IProgress, System.Int32) - fullName.vb: XRTK.Utilities.WebRequestRest.Rest.GetAsync(System.String, System.Collections.Generic.Dictionary(Of System.String, System.String), System.IProgress(Of System.Single), System.Int32) - nameWithType: Rest.GetAsync(String, Dictionary, IProgress, Int32) - nameWithType.vb: Rest.GetAsync(String, Dictionary(Of String, String), IProgress(Of Single), Int32) -- uid: XRTK.Utilities.WebRequestRest.Rest.GetAsync* - name: GetAsync - href: api/XRTK.Utilities.WebRequestRest.Rest.html#XRTK_Utilities_WebRequestRest_Rest_GetAsync_ - commentId: Overload:XRTK.Utilities.WebRequestRest.Rest.GetAsync - isSpec: "True" - fullName: XRTK.Utilities.WebRequestRest.Rest.GetAsync - nameWithType: Rest.GetAsync -- uid: XRTK.Utilities.WebRequestRest.Rest.GetBasicAuthentication(System.String,System.String) - name: GetBasicAuthentication(String, String) - href: api/XRTK.Utilities.WebRequestRest.Rest.html#XRTK_Utilities_WebRequestRest_Rest_GetBasicAuthentication_System_String_System_String_ - commentId: M:XRTK.Utilities.WebRequestRest.Rest.GetBasicAuthentication(System.String,System.String) - fullName: XRTK.Utilities.WebRequestRest.Rest.GetBasicAuthentication(System.String, System.String) - nameWithType: Rest.GetBasicAuthentication(String, String) -- uid: XRTK.Utilities.WebRequestRest.Rest.GetBasicAuthentication* - name: GetBasicAuthentication - href: api/XRTK.Utilities.WebRequestRest.Rest.html#XRTK_Utilities_WebRequestRest_Rest_GetBasicAuthentication_ - commentId: Overload:XRTK.Utilities.WebRequestRest.Rest.GetBasicAuthentication - isSpec: "True" - fullName: XRTK.Utilities.WebRequestRest.Rest.GetBasicAuthentication - nameWithType: Rest.GetBasicAuthentication -- uid: XRTK.Utilities.WebRequestRest.Rest.GetBearerOAuthToken(System.String) - name: GetBearerOAuthToken(String) - href: api/XRTK.Utilities.WebRequestRest.Rest.html#XRTK_Utilities_WebRequestRest_Rest_GetBearerOAuthToken_System_String_ - commentId: M:XRTK.Utilities.WebRequestRest.Rest.GetBearerOAuthToken(System.String) - fullName: XRTK.Utilities.WebRequestRest.Rest.GetBearerOAuthToken(System.String) - nameWithType: Rest.GetBearerOAuthToken(String) -- uid: XRTK.Utilities.WebRequestRest.Rest.GetBearerOAuthToken* - name: GetBearerOAuthToken - href: api/XRTK.Utilities.WebRequestRest.Rest.html#XRTK_Utilities_WebRequestRest_Rest_GetBearerOAuthToken_ - commentId: Overload:XRTK.Utilities.WebRequestRest.Rest.GetBearerOAuthToken - isSpec: "True" - fullName: XRTK.Utilities.WebRequestRest.Rest.GetBearerOAuthToken - nameWithType: Rest.GetBearerOAuthToken -- uid: XRTK.Utilities.WebRequestRest.Rest.PostAsync(System.String,System.Byte[],System.Collections.Generic.Dictionary{System.String,System.String},System.IProgress{System.Single},System.Int32) - name: PostAsync(String, Byte[], Dictionary, IProgress, Int32) - href: api/XRTK.Utilities.WebRequestRest.Rest.html#XRTK_Utilities_WebRequestRest_Rest_PostAsync_System_String_System_Byte___System_Collections_Generic_Dictionary_System_String_System_String__System_IProgress_System_Single__System_Int32_ - commentId: M:XRTK.Utilities.WebRequestRest.Rest.PostAsync(System.String,System.Byte[],System.Collections.Generic.Dictionary{System.String,System.String},System.IProgress{System.Single},System.Int32) - name.vb: PostAsync(String, Byte(), Dictionary(Of String, String), IProgress(Of Single), Int32) - fullName: XRTK.Utilities.WebRequestRest.Rest.PostAsync(System.String, System.Byte[], System.Collections.Generic.Dictionary, System.IProgress, System.Int32) - fullName.vb: XRTK.Utilities.WebRequestRest.Rest.PostAsync(System.String, System.Byte(), System.Collections.Generic.Dictionary(Of System.String, System.String), System.IProgress(Of System.Single), System.Int32) - nameWithType: Rest.PostAsync(String, Byte[], Dictionary, IProgress, Int32) - nameWithType.vb: Rest.PostAsync(String, Byte(), Dictionary(Of String, String), IProgress(Of Single), Int32) -- uid: XRTK.Utilities.WebRequestRest.Rest.PostAsync(System.String,System.Collections.Generic.Dictionary{System.String,System.String},System.IProgress{System.Single},System.Int32) - name: PostAsync(String, Dictionary, IProgress, Int32) - href: api/XRTK.Utilities.WebRequestRest.Rest.html#XRTK_Utilities_WebRequestRest_Rest_PostAsync_System_String_System_Collections_Generic_Dictionary_System_String_System_String__System_IProgress_System_Single__System_Int32_ - commentId: M:XRTK.Utilities.WebRequestRest.Rest.PostAsync(System.String,System.Collections.Generic.Dictionary{System.String,System.String},System.IProgress{System.Single},System.Int32) - name.vb: PostAsync(String, Dictionary(Of String, String), IProgress(Of Single), Int32) - fullName: XRTK.Utilities.WebRequestRest.Rest.PostAsync(System.String, System.Collections.Generic.Dictionary, System.IProgress, System.Int32) - fullName.vb: XRTK.Utilities.WebRequestRest.Rest.PostAsync(System.String, System.Collections.Generic.Dictionary(Of System.String, System.String), System.IProgress(Of System.Single), System.Int32) - nameWithType: Rest.PostAsync(String, Dictionary, IProgress, Int32) - nameWithType.vb: Rest.PostAsync(String, Dictionary(Of String, String), IProgress(Of Single), Int32) -- uid: XRTK.Utilities.WebRequestRest.Rest.PostAsync(System.String,System.String,System.Collections.Generic.Dictionary{System.String,System.String},System.IProgress{System.Single},System.Int32) - name: PostAsync(String, String, Dictionary, IProgress, Int32) - href: api/XRTK.Utilities.WebRequestRest.Rest.html#XRTK_Utilities_WebRequestRest_Rest_PostAsync_System_String_System_String_System_Collections_Generic_Dictionary_System_String_System_String__System_IProgress_System_Single__System_Int32_ - commentId: M:XRTK.Utilities.WebRequestRest.Rest.PostAsync(System.String,System.String,System.Collections.Generic.Dictionary{System.String,System.String},System.IProgress{System.Single},System.Int32) - name.vb: PostAsync(String, String, Dictionary(Of String, String), IProgress(Of Single), Int32) - fullName: XRTK.Utilities.WebRequestRest.Rest.PostAsync(System.String, System.String, System.Collections.Generic.Dictionary, System.IProgress, System.Int32) - fullName.vb: XRTK.Utilities.WebRequestRest.Rest.PostAsync(System.String, System.String, System.Collections.Generic.Dictionary(Of System.String, System.String), System.IProgress(Of System.Single), System.Int32) - nameWithType: Rest.PostAsync(String, String, Dictionary, IProgress, Int32) - nameWithType.vb: Rest.PostAsync(String, String, Dictionary(Of String, String), IProgress(Of Single), Int32) -- uid: XRTK.Utilities.WebRequestRest.Rest.PostAsync(System.String,UnityEngine.WWWForm,System.Collections.Generic.Dictionary{System.String,System.String},System.IProgress{System.Single},System.Int32) - name: PostAsync(String, WWWForm, Dictionary, IProgress, Int32) - href: api/XRTK.Utilities.WebRequestRest.Rest.html#XRTK_Utilities_WebRequestRest_Rest_PostAsync_System_String_UnityEngine_WWWForm_System_Collections_Generic_Dictionary_System_String_System_String__System_IProgress_System_Single__System_Int32_ - commentId: M:XRTK.Utilities.WebRequestRest.Rest.PostAsync(System.String,UnityEngine.WWWForm,System.Collections.Generic.Dictionary{System.String,System.String},System.IProgress{System.Single},System.Int32) - name.vb: PostAsync(String, WWWForm, Dictionary(Of String, String), IProgress(Of Single), Int32) - fullName: XRTK.Utilities.WebRequestRest.Rest.PostAsync(System.String, UnityEngine.WWWForm, System.Collections.Generic.Dictionary, System.IProgress, System.Int32) - fullName.vb: XRTK.Utilities.WebRequestRest.Rest.PostAsync(System.String, UnityEngine.WWWForm, System.Collections.Generic.Dictionary(Of System.String, System.String), System.IProgress(Of System.Single), System.Int32) - nameWithType: Rest.PostAsync(String, WWWForm, Dictionary, IProgress, Int32) - nameWithType.vb: Rest.PostAsync(String, WWWForm, Dictionary(Of String, String), IProgress(Of Single), Int32) -- uid: XRTK.Utilities.WebRequestRest.Rest.PostAsync* - name: PostAsync - href: api/XRTK.Utilities.WebRequestRest.Rest.html#XRTK_Utilities_WebRequestRest_Rest_PostAsync_ - commentId: Overload:XRTK.Utilities.WebRequestRest.Rest.PostAsync - isSpec: "True" - fullName: XRTK.Utilities.WebRequestRest.Rest.PostAsync - nameWithType: Rest.PostAsync -- uid: XRTK.Utilities.WebRequestRest.Rest.PutAsync(System.String,System.Byte[],System.Collections.Generic.Dictionary{System.String,System.String},System.IProgress{System.Single},System.Int32) - name: PutAsync(String, Byte[], Dictionary, IProgress, Int32) - href: api/XRTK.Utilities.WebRequestRest.Rest.html#XRTK_Utilities_WebRequestRest_Rest_PutAsync_System_String_System_Byte___System_Collections_Generic_Dictionary_System_String_System_String__System_IProgress_System_Single__System_Int32_ - commentId: M:XRTK.Utilities.WebRequestRest.Rest.PutAsync(System.String,System.Byte[],System.Collections.Generic.Dictionary{System.String,System.String},System.IProgress{System.Single},System.Int32) - name.vb: PutAsync(String, Byte(), Dictionary(Of String, String), IProgress(Of Single), Int32) - fullName: XRTK.Utilities.WebRequestRest.Rest.PutAsync(System.String, System.Byte[], System.Collections.Generic.Dictionary, System.IProgress, System.Int32) - fullName.vb: XRTK.Utilities.WebRequestRest.Rest.PutAsync(System.String, System.Byte(), System.Collections.Generic.Dictionary(Of System.String, System.String), System.IProgress(Of System.Single), System.Int32) - nameWithType: Rest.PutAsync(String, Byte[], Dictionary, IProgress, Int32) - nameWithType.vb: Rest.PutAsync(String, Byte(), Dictionary(Of String, String), IProgress(Of Single), Int32) -- uid: XRTK.Utilities.WebRequestRest.Rest.PutAsync(System.String,System.String,System.Collections.Generic.Dictionary{System.String,System.String},System.IProgress{System.Single},System.Int32) - name: PutAsync(String, String, Dictionary, IProgress, Int32) - href: api/XRTK.Utilities.WebRequestRest.Rest.html#XRTK_Utilities_WebRequestRest_Rest_PutAsync_System_String_System_String_System_Collections_Generic_Dictionary_System_String_System_String__System_IProgress_System_Single__System_Int32_ - commentId: M:XRTK.Utilities.WebRequestRest.Rest.PutAsync(System.String,System.String,System.Collections.Generic.Dictionary{System.String,System.String},System.IProgress{System.Single},System.Int32) - name.vb: PutAsync(String, String, Dictionary(Of String, String), IProgress(Of Single), Int32) - fullName: XRTK.Utilities.WebRequestRest.Rest.PutAsync(System.String, System.String, System.Collections.Generic.Dictionary, System.IProgress, System.Int32) - fullName.vb: XRTK.Utilities.WebRequestRest.Rest.PutAsync(System.String, System.String, System.Collections.Generic.Dictionary(Of System.String, System.String), System.IProgress(Of System.Single), System.Int32) - nameWithType: Rest.PutAsync(String, String, Dictionary, IProgress, Int32) - nameWithType.vb: Rest.PutAsync(String, String, Dictionary(Of String, String), IProgress(Of Single), Int32) -- uid: XRTK.Utilities.WebRequestRest.Rest.PutAsync* - name: PutAsync - href: api/XRTK.Utilities.WebRequestRest.Rest.html#XRTK_Utilities_WebRequestRest_Rest_PutAsync_ - commentId: Overload:XRTK.Utilities.WebRequestRest.Rest.PutAsync - isSpec: "True" - fullName: XRTK.Utilities.WebRequestRest.Rest.PutAsync - nameWithType: Rest.PutAsync -- uid: XRTK.Utilities.WebRequestRest.Rest.UseSSL - name: UseSSL - href: api/XRTK.Utilities.WebRequestRest.Rest.html#XRTK_Utilities_WebRequestRest_Rest_UseSSL - commentId: P:XRTK.Utilities.WebRequestRest.Rest.UseSSL - fullName: XRTK.Utilities.WebRequestRest.Rest.UseSSL - nameWithType: Rest.UseSSL -- uid: XRTK.Utilities.WebRequestRest.Rest.UseSSL* - name: UseSSL - href: api/XRTK.Utilities.WebRequestRest.Rest.html#XRTK_Utilities_WebRequestRest_Rest_UseSSL_ - commentId: Overload:XRTK.Utilities.WebRequestRest.Rest.UseSSL - isSpec: "True" - fullName: XRTK.Utilities.WebRequestRest.Rest.UseSSL - nameWithType: Rest.UseSSL -- uid: XRTK.Utilities.WindowsDevicePortal - name: XRTK.Utilities.WindowsDevicePortal - href: api/XRTK.Utilities.WindowsDevicePortal.html - commentId: N:XRTK.Utilities.WindowsDevicePortal - fullName: XRTK.Utilities.WindowsDevicePortal - nameWithType: XRTK.Utilities.WindowsDevicePortal -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures - name: XRTK.Utilities.WindowsDevicePortal.DataStructures - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.html - commentId: N:XRTK.Utilities.WindowsDevicePortal.DataStructures - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures - nameWithType: XRTK.Utilities.WindowsDevicePortal.DataStructures -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.ActivePowerSchemeInfo - name: ActivePowerSchemeInfo - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.ActivePowerSchemeInfo.html - commentId: T:XRTK.Utilities.WindowsDevicePortal.DataStructures.ActivePowerSchemeInfo - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.ActivePowerSchemeInfo - nameWithType: ActivePowerSchemeInfo -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.ActivePowerSchemeInfo.ActivePowerScheme - name: ActivePowerScheme - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.ActivePowerSchemeInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_ActivePowerSchemeInfo_ActivePowerScheme - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.ActivePowerSchemeInfo.ActivePowerScheme - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.ActivePowerSchemeInfo.ActivePowerScheme - nameWithType: ActivePowerSchemeInfo.ActivePowerScheme -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.AdapterInfo - name: AdapterInfo - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.AdapterInfo.html - commentId: T:XRTK.Utilities.WindowsDevicePortal.DataStructures.AdapterInfo - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.AdapterInfo - nameWithType: AdapterInfo -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.AdapterInfo.Description - name: Description - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.AdapterInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_AdapterInfo_Description - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.AdapterInfo.Description - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.AdapterInfo.Description - nameWithType: AdapterInfo.Description -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.AdapterInfo.DHCP - name: DHCP - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.AdapterInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_AdapterInfo_DHCP - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.AdapterInfo.DHCP - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.AdapterInfo.DHCP - nameWithType: AdapterInfo.DHCP -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.AdapterInfo.Gateways - name: Gateways - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.AdapterInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_AdapterInfo_Gateways - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.AdapterInfo.Gateways - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.AdapterInfo.Gateways - nameWithType: AdapterInfo.Gateways -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.AdapterInfo.HardwareAddress - name: HardwareAddress - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.AdapterInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_AdapterInfo_HardwareAddress - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.AdapterInfo.HardwareAddress - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.AdapterInfo.HardwareAddress - nameWithType: AdapterInfo.HardwareAddress -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.AdapterInfo.Index - name: Index - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.AdapterInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_AdapterInfo_Index - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.AdapterInfo.Index - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.AdapterInfo.Index - nameWithType: AdapterInfo.Index -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.AdapterInfo.IpAddresses - name: IpAddresses - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.AdapterInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_AdapterInfo_IpAddresses - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.AdapterInfo.IpAddresses - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.AdapterInfo.IpAddresses - nameWithType: AdapterInfo.IpAddresses -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.AdapterInfo.Name - name: Name - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.AdapterInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_AdapterInfo_Name - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.AdapterInfo.Name - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.AdapterInfo.Name - nameWithType: AdapterInfo.Name -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.AdapterInfo.Type - name: Type - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.AdapterInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_AdapterInfo_Type - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.AdapterInfo.Type - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.AdapterInfo.Type - nameWithType: AdapterInfo.Type -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.ApplicationInfo - name: ApplicationInfo - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.ApplicationInfo.html - commentId: T:XRTK.Utilities.WindowsDevicePortal.DataStructures.ApplicationInfo - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.ApplicationInfo - nameWithType: ApplicationInfo -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.ApplicationInfo.Name - name: Name - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.ApplicationInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_ApplicationInfo_Name - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.ApplicationInfo.Name - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.ApplicationInfo.Name - nameWithType: ApplicationInfo.Name -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.ApplicationInfo.PackageFamilyName - name: PackageFamilyName - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.ApplicationInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_ApplicationInfo_PackageFamilyName - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.ApplicationInfo.PackageFamilyName - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.ApplicationInfo.PackageFamilyName - nameWithType: ApplicationInfo.PackageFamilyName -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.ApplicationInfo.PackageFullName - name: PackageFullName - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.ApplicationInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_ApplicationInfo_PackageFullName - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.ApplicationInfo.PackageFullName - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.ApplicationInfo.PackageFullName - nameWithType: ApplicationInfo.PackageFullName -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.ApplicationInfo.PackageOrigin - name: PackageOrigin - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.ApplicationInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_ApplicationInfo_PackageOrigin - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.ApplicationInfo.PackageOrigin - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.ApplicationInfo.PackageOrigin - nameWithType: ApplicationInfo.PackageOrigin -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.ApplicationInfo.PackageRelativeId - name: PackageRelativeId - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.ApplicationInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_ApplicationInfo_PackageRelativeId - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.ApplicationInfo.PackageRelativeId - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.ApplicationInfo.PackageRelativeId - nameWithType: ApplicationInfo.PackageRelativeId -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.ApplicationInfo.Publisher - name: Publisher - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.ApplicationInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_ApplicationInfo_Publisher - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.ApplicationInfo.Publisher - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.ApplicationInfo.Publisher - nameWithType: ApplicationInfo.Publisher -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.AvailableWiFiNetworks - name: AvailableWiFiNetworks - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.AvailableWiFiNetworks.html - commentId: T:XRTK.Utilities.WindowsDevicePortal.DataStructures.AvailableWiFiNetworks - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.AvailableWiFiNetworks - nameWithType: AvailableWiFiNetworks -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.AvailableWiFiNetworks.AvailableNetworks - name: AvailableNetworks - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.AvailableWiFiNetworks.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_AvailableWiFiNetworks_AvailableNetworks - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.AvailableWiFiNetworks.AvailableNetworks - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.AvailableWiFiNetworks.AvailableNetworks - nameWithType: AvailableWiFiNetworks.AvailableNetworks -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo - name: BatteryInfo - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo.html - commentId: T:XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo - nameWithType: BatteryInfo -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo.AcOnline - name: AcOnline - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_BatteryInfo_AcOnline - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo.AcOnline - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo.AcOnline - nameWithType: BatteryInfo.AcOnline -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo.BatteryPresent - name: BatteryPresent - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_BatteryInfo_BatteryPresent - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo.BatteryPresent - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo.BatteryPresent - nameWithType: BatteryInfo.BatteryPresent -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo.Charging - name: Charging - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_BatteryInfo_Charging - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo.Charging - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo.Charging - nameWithType: BatteryInfo.Charging -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo.DefaultAlert1 - name: DefaultAlert1 - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_BatteryInfo_DefaultAlert1 - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo.DefaultAlert1 - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo.DefaultAlert1 - nameWithType: BatteryInfo.DefaultAlert1 -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo.DefaultAlert2 - name: DefaultAlert2 - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_BatteryInfo_DefaultAlert2 - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo.DefaultAlert2 - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo.DefaultAlert2 - nameWithType: BatteryInfo.DefaultAlert2 -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo.EstimatedTime - name: EstimatedTime - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_BatteryInfo_EstimatedTime - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo.EstimatedTime - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo.EstimatedTime - nameWithType: BatteryInfo.EstimatedTime -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo.IsCharging - name: IsCharging - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_BatteryInfo_IsCharging - commentId: P:XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo.IsCharging - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo.IsCharging - nameWithType: BatteryInfo.IsCharging -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo.IsCharging* - name: IsCharging - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_BatteryInfo_IsCharging_ - commentId: Overload:XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo.IsCharging - isSpec: "True" - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo.IsCharging - nameWithType: BatteryInfo.IsCharging -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo.MaximumCapacity - name: MaximumCapacity - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_BatteryInfo_MaximumCapacity - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo.MaximumCapacity - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo.MaximumCapacity - nameWithType: BatteryInfo.MaximumCapacity -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo.PercentRemaining - name: PercentRemaining - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_BatteryInfo_PercentRemaining - commentId: P:XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo.PercentRemaining - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo.PercentRemaining - nameWithType: BatteryInfo.PercentRemaining -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo.PercentRemaining* - name: PercentRemaining - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_BatteryInfo_PercentRemaining_ - commentId: Overload:XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo.PercentRemaining - isSpec: "True" - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo.PercentRemaining - nameWithType: BatteryInfo.PercentRemaining -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo.RemainingCapacity - name: RemainingCapacity - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_BatteryInfo_RemainingCapacity - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo.RemainingCapacity - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.BatteryInfo.RemainingCapacity - nameWithType: BatteryInfo.RemainingCapacity -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo - name: DeviceInfo - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.html - commentId: T:XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo - nameWithType: DeviceInfo -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.#ctor(System.String,System.String,System.String,System.String) - name: DeviceInfo(String, String, String, String) - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_DeviceInfo__ctor_System_String_System_String_System_String_System_String_ - commentId: M:XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.#ctor(System.String,System.String,System.String,System.String) - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.DeviceInfo(System.String, System.String, System.String, System.String) - nameWithType: DeviceInfo.DeviceInfo(String, String, String, String) -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.#ctor* - name: DeviceInfo - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_DeviceInfo__ctor_ - commentId: Overload:XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.#ctor - isSpec: "True" - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.DeviceInfo - nameWithType: DeviceInfo.DeviceInfo -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.Authorization - name: Authorization - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_DeviceInfo_Authorization - commentId: P:XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.Authorization - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.Authorization - nameWithType: DeviceInfo.Authorization -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.Authorization* - name: Authorization - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_DeviceInfo_Authorization_ - commentId: Overload:XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.Authorization - isSpec: "True" - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.Authorization - nameWithType: DeviceInfo.Authorization -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.BatteryInfo - name: BatteryInfo - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_DeviceInfo_BatteryInfo - commentId: P:XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.BatteryInfo - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.BatteryInfo - nameWithType: DeviceInfo.BatteryInfo -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.BatteryInfo* - name: BatteryInfo - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_DeviceInfo_BatteryInfo_ - commentId: Overload:XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.BatteryInfo - isSpec: "True" - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.BatteryInfo - nameWithType: DeviceInfo.BatteryInfo -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.CsrfToken - name: CsrfToken - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_DeviceInfo_CsrfToken - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.CsrfToken - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.CsrfToken - nameWithType: DeviceInfo.CsrfToken -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.IP - name: IP - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_DeviceInfo_IP - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.IP - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.IP - nameWithType: DeviceInfo.IP -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.MachineName - name: MachineName - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_DeviceInfo_MachineName - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.MachineName - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.MachineName - nameWithType: DeviceInfo.MachineName -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.Password - name: Password - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_DeviceInfo_Password - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.Password - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.Password - nameWithType: DeviceInfo.Password -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.PowerState - name: PowerState - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_DeviceInfo_PowerState - commentId: P:XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.PowerState - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.PowerState - nameWithType: DeviceInfo.PowerState -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.PowerState* - name: PowerState - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_DeviceInfo_PowerState_ - commentId: Overload:XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.PowerState - isSpec: "True" - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.PowerState - nameWithType: DeviceInfo.PowerState -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.User - name: User - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_DeviceInfo_User - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.User - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo.User - nameWithType: DeviceInfo.User -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceOsInfo - name: DeviceOsInfo - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceOsInfo.html - commentId: T:XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceOsInfo - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceOsInfo - nameWithType: DeviceOsInfo -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceOsInfo.ComputerName - name: ComputerName - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceOsInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_DeviceOsInfo_ComputerName - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceOsInfo.ComputerName - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceOsInfo.ComputerName - nameWithType: DeviceOsInfo.ComputerName -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceOsInfo.OsEdition - name: OsEdition - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceOsInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_DeviceOsInfo_OsEdition - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceOsInfo.OsEdition - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceOsInfo.OsEdition - nameWithType: DeviceOsInfo.OsEdition -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceOsInfo.OsEditionId - name: OsEditionId - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceOsInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_DeviceOsInfo_OsEditionId - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceOsInfo.OsEditionId - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceOsInfo.OsEditionId - nameWithType: DeviceOsInfo.OsEditionId -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceOsInfo.OsVersion - name: OsVersion - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceOsInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_DeviceOsInfo_OsVersion - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceOsInfo.OsVersion - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceOsInfo.OsVersion - nameWithType: DeviceOsInfo.OsVersion -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceOsInfo.Platform - name: Platform - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceOsInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_DeviceOsInfo_Platform - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceOsInfo.Platform - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceOsInfo.Platform - nameWithType: DeviceOsInfo.Platform -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.DevicePortalConnections - name: DevicePortalConnections - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.DevicePortalConnections.html - commentId: T:XRTK.Utilities.WindowsDevicePortal.DataStructures.DevicePortalConnections - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.DevicePortalConnections - nameWithType: DevicePortalConnections -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.DevicePortalConnections.#ctor - name: DevicePortalConnections() - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.DevicePortalConnections.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_DevicePortalConnections__ctor - commentId: M:XRTK.Utilities.WindowsDevicePortal.DataStructures.DevicePortalConnections.#ctor - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.DevicePortalConnections.DevicePortalConnections() - nameWithType: DevicePortalConnections.DevicePortalConnections() -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.DevicePortalConnections.#ctor(XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo) - name: DevicePortalConnections(DeviceInfo) - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.DevicePortalConnections.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_DevicePortalConnections__ctor_XRTK_Utilities_WindowsDevicePortal_DataStructures_DeviceInfo_ - commentId: M:XRTK.Utilities.WindowsDevicePortal.DataStructures.DevicePortalConnections.#ctor(XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo) - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.DevicePortalConnections.DevicePortalConnections(XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo) - nameWithType: DevicePortalConnections.DevicePortalConnections(DeviceInfo) -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.DevicePortalConnections.#ctor* - name: DevicePortalConnections - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.DevicePortalConnections.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_DevicePortalConnections__ctor_ - commentId: Overload:XRTK.Utilities.WindowsDevicePortal.DataStructures.DevicePortalConnections.#ctor - isSpec: "True" - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.DevicePortalConnections.DevicePortalConnections - nameWithType: DevicePortalConnections.DevicePortalConnections -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.DevicePortalConnections.Connections - name: Connections - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.DevicePortalConnections.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_DevicePortalConnections_Connections - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.DevicePortalConnections.Connections - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.DevicePortalConnections.Connections - nameWithType: DevicePortalConnections.Connections -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.DHCPInfo - name: DHCPInfo - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.DHCPInfo.html - commentId: T:XRTK.Utilities.WindowsDevicePortal.DataStructures.DHCPInfo - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.DHCPInfo - nameWithType: DHCPInfo -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.DHCPInfo.Address - name: Address - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.DHCPInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_DHCPInfo_Address - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.DHCPInfo.Address - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.DHCPInfo.Address - nameWithType: DHCPInfo.Address -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.DHCPInfo.LeaseExpires - name: LeaseExpires - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.DHCPInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_DHCPInfo_LeaseExpires - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.DHCPInfo.LeaseExpires - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.DHCPInfo.LeaseExpires - nameWithType: DHCPInfo.LeaseExpires -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.DHCPInfo.LeaseObtained - name: LeaseObtained - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.DHCPInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_DHCPInfo_LeaseObtained - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.DHCPInfo.LeaseObtained - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.DHCPInfo.LeaseObtained - nameWithType: DHCPInfo.LeaseObtained -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.FileInfo - name: FileInfo - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.FileInfo.html - commentId: T:XRTK.Utilities.WindowsDevicePortal.DataStructures.FileInfo - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.FileInfo - nameWithType: FileInfo -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.FileInfo.CurrentDir - name: CurrentDir - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.FileInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_FileInfo_CurrentDir - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.FileInfo.CurrentDir - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.FileInfo.CurrentDir - nameWithType: FileInfo.CurrentDir -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.FileInfo.DateCreated - name: DateCreated - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.FileInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_FileInfo_DateCreated - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.FileInfo.DateCreated - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.FileInfo.DateCreated - nameWithType: FileInfo.DateCreated -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.FileInfo.FileSize - name: FileSize - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.FileInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_FileInfo_FileSize - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.FileInfo.FileSize - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.FileInfo.FileSize - nameWithType: FileInfo.FileSize -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.FileInfo.Id - name: Id - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.FileInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_FileInfo_Id - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.FileInfo.Id - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.FileInfo.Id - nameWithType: FileInfo.Id -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.FileInfo.Name - name: Name - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.FileInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_FileInfo_Name - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.FileInfo.Name - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.FileInfo.Name - nameWithType: FileInfo.Name -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.FileInfo.SubPath - name: SubPath - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.FileInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_FileInfo_SubPath - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.FileInfo.SubPath - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.FileInfo.SubPath - nameWithType: FileInfo.SubPath -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.FileInfo.Type - name: Type - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.FileInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_FileInfo_Type - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.FileInfo.Type - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.FileInfo.Type - nameWithType: FileInfo.Type -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.FileList - name: FileList - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.FileList.html - commentId: T:XRTK.Utilities.WindowsDevicePortal.DataStructures.FileList - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.FileList - nameWithType: FileList -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.FileList.Items - name: Items - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.FileList.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_FileList_Items - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.FileList.Items - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.FileList.Items - nameWithType: FileList.Items -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.InstalledApps - name: InstalledApps - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.InstalledApps.html - commentId: T:XRTK.Utilities.WindowsDevicePortal.DataStructures.InstalledApps - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.InstalledApps - nameWithType: InstalledApps -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.InstalledApps.InstalledPackages - name: InstalledPackages - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.InstalledApps.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_InstalledApps_InstalledPackages - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.InstalledApps.InstalledPackages - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.InstalledApps.InstalledPackages - nameWithType: InstalledApps.InstalledPackages -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.InstallStatus - name: InstallStatus - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.InstallStatus.html - commentId: T:XRTK.Utilities.WindowsDevicePortal.DataStructures.InstallStatus - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.InstallStatus - nameWithType: InstallStatus -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.InstallStatus.Code - name: Code - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.InstallStatus.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_InstallStatus_Code - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.InstallStatus.Code - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.InstallStatus.Code - nameWithType: InstallStatus.Code -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.InstallStatus.CodeText - name: CodeText - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.InstallStatus.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_InstallStatus_CodeText - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.InstallStatus.CodeText - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.InstallStatus.CodeText - nameWithType: InstallStatus.CodeText -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.InstallStatus.Reason - name: Reason - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.InstallStatus.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_InstallStatus_Reason - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.InstallStatus.Reason - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.InstallStatus.Reason - nameWithType: InstallStatus.Reason -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.InstallStatus.Success - name: Success - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.InstallStatus.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_InstallStatus_Success - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.InstallStatus.Success - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.InstallStatus.Success - nameWithType: InstallStatus.Success -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.InterfaceInfo - name: InterfaceInfo - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.InterfaceInfo.html - commentId: T:XRTK.Utilities.WindowsDevicePortal.DataStructures.InterfaceInfo - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.InterfaceInfo - nameWithType: InterfaceInfo -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.InterfaceInfo.Description - name: Description - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.InterfaceInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_InterfaceInfo_Description - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.InterfaceInfo.Description - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.InterfaceInfo.Description - nameWithType: InterfaceInfo.Description -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.InterfaceInfo.GUID - name: GUID - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.InterfaceInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_InterfaceInfo_GUID - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.InterfaceInfo.GUID - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.InterfaceInfo.GUID - nameWithType: InterfaceInfo.GUID -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.InterfaceInfo.Index - name: Index - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.InterfaceInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_InterfaceInfo_Index - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.InterfaceInfo.Index - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.InterfaceInfo.Index - nameWithType: InterfaceInfo.Index -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.InterfaceInfo.ProfilesList - name: ProfilesList - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.InterfaceInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_InterfaceInfo_ProfilesList - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.InterfaceInfo.ProfilesList - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.InterfaceInfo.ProfilesList - nameWithType: InterfaceInfo.ProfilesList -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.IpAddressInfo - name: IpAddressInfo - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.IpAddressInfo.html - commentId: T:XRTK.Utilities.WindowsDevicePortal.DataStructures.IpAddressInfo - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.IpAddressInfo - nameWithType: IpAddressInfo -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.IpAddressInfo.IpAddress - name: IpAddress - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.IpAddressInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_IpAddressInfo_IpAddress - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.IpAddressInfo.IpAddress - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.IpAddressInfo.IpAddress - nameWithType: IpAddressInfo.IpAddress -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.IpAddressInfo.Mask - name: Mask - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.IpAddressInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_IpAddressInfo_Mask - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.IpAddressInfo.Mask - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.IpAddressInfo.Mask - nameWithType: IpAddressInfo.Mask -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.IpConfigInfo - name: IpConfigInfo - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.IpConfigInfo.html - commentId: T:XRTK.Utilities.WindowsDevicePortal.DataStructures.IpConfigInfo - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.IpConfigInfo - nameWithType: IpConfigInfo -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.IpConfigInfo.Adapters - name: Adapters - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.IpConfigInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_IpConfigInfo_Adapters - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.IpConfigInfo.Adapters - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.IpConfigInfo.Adapters - nameWithType: IpConfigInfo.Adapters -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.MachineName - name: MachineName - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.MachineName.html - commentId: T:XRTK.Utilities.WindowsDevicePortal.DataStructures.MachineName - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.MachineName - nameWithType: MachineName -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.MachineName.ComputerName - name: ComputerName - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.MachineName.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_MachineName_ComputerName - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.MachineName.ComputerName - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.MachineName.ComputerName - nameWithType: MachineName.ComputerName -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.NetworkInterfaces - name: NetworkInterfaces - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.NetworkInterfaces.html - commentId: T:XRTK.Utilities.WindowsDevicePortal.DataStructures.NetworkInterfaces - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.NetworkInterfaces - nameWithType: NetworkInterfaces -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.NetworkInterfaces.Interfaces - name: Interfaces - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.NetworkInterfaces.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_NetworkInterfaces_Interfaces - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.NetworkInterfaces.Interfaces - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.NetworkInterfaces.Interfaces - nameWithType: NetworkInterfaces.Interfaces -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.NetworkProfileInfo - name: NetworkProfileInfo - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.NetworkProfileInfo.html - commentId: T:XRTK.Utilities.WindowsDevicePortal.DataStructures.NetworkProfileInfo - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.NetworkProfileInfo - nameWithType: NetworkProfileInfo -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.NetworkProfileInfo.GroupPolicyProfile - name: GroupPolicyProfile - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.NetworkProfileInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_NetworkProfileInfo_GroupPolicyProfile - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.NetworkProfileInfo.GroupPolicyProfile - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.NetworkProfileInfo.GroupPolicyProfile - nameWithType: NetworkProfileInfo.GroupPolicyProfile -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.NetworkProfileInfo.Name - name: Name - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.NetworkProfileInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_NetworkProfileInfo_Name - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.NetworkProfileInfo.Name - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.NetworkProfileInfo.Name - nameWithType: NetworkProfileInfo.Name -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.NetworkProfileInfo.PerUserProfile - name: PerUserProfile - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.NetworkProfileInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_NetworkProfileInfo_PerUserProfile - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.NetworkProfileInfo.PerUserProfile - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.NetworkProfileInfo.PerUserProfile - nameWithType: NetworkProfileInfo.PerUserProfile -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.PowerStateInfo - name: PowerStateInfo - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.PowerStateInfo.html - commentId: T:XRTK.Utilities.WindowsDevicePortal.DataStructures.PowerStateInfo - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.PowerStateInfo - nameWithType: PowerStateInfo -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.PowerStateInfo.LowPowerState - name: LowPowerState - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.PowerStateInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_PowerStateInfo_LowPowerState - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.PowerStateInfo.LowPowerState - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.PowerStateInfo.LowPowerState - nameWithType: PowerStateInfo.LowPowerState -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.PowerStateInfo.LowPowerStateAvailable - name: LowPowerStateAvailable - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.PowerStateInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_PowerStateInfo_LowPowerStateAvailable - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.PowerStateInfo.LowPowerStateAvailable - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.PowerStateInfo.LowPowerStateAvailable - nameWithType: PowerStateInfo.LowPowerStateAvailable -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessInfo - name: ProcessInfo - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessInfo.html - commentId: T:XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessInfo - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessInfo - nameWithType: ProcessInfo -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessInfo.CPUUsage - name: CPUUsage - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_ProcessInfo_CPUUsage - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessInfo.CPUUsage - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessInfo.CPUUsage - nameWithType: ProcessInfo.CPUUsage -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessInfo.ImageName - name: ImageName - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_ProcessInfo_ImageName - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessInfo.ImageName - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessInfo.ImageName - nameWithType: ProcessInfo.ImageName -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessInfo.PageFileUsage - name: PageFileUsage - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_ProcessInfo_PageFileUsage - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessInfo.PageFileUsage - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessInfo.PageFileUsage - nameWithType: ProcessInfo.PageFileUsage -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessInfo.PrivateWorkingSet - name: PrivateWorkingSet - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_ProcessInfo_PrivateWorkingSet - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessInfo.PrivateWorkingSet - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessInfo.PrivateWorkingSet - nameWithType: ProcessInfo.PrivateWorkingSet -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessInfo.ProcessId - name: ProcessId - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_ProcessInfo_ProcessId - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessInfo.ProcessId - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessInfo.ProcessId - nameWithType: ProcessInfo.ProcessId -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessInfo.SessionId - name: SessionId - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_ProcessInfo_SessionId - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessInfo.SessionId - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessInfo.SessionId - nameWithType: ProcessInfo.SessionId -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessInfo.UserName - name: UserName - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_ProcessInfo_UserName - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessInfo.UserName - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessInfo.UserName - nameWithType: ProcessInfo.UserName -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessInfo.VirtualSize - name: VirtualSize - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_ProcessInfo_VirtualSize - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessInfo.VirtualSize - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessInfo.VirtualSize - nameWithType: ProcessInfo.VirtualSize -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessInfo.WorkingSetSize - name: WorkingSetSize - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_ProcessInfo_WorkingSetSize - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessInfo.WorkingSetSize - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessInfo.WorkingSetSize - nameWithType: ProcessInfo.WorkingSetSize -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessList - name: ProcessList - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessList.html - commentId: T:XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessList - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessList - nameWithType: ProcessList -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessList.Processes - name: Processes - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessList.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_ProcessList_Processes - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessList.Processes - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.ProcessList.Processes - nameWithType: ProcessList.Processes -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo - name: WirelessNetworkInfo - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.html - commentId: T:XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo - nameWithType: WirelessNetworkInfo -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.AlreadyConnected - name: AlreadyConnected - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_WirelessNetworkInfo_AlreadyConnected - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.AlreadyConnected - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.AlreadyConnected - nameWithType: WirelessNetworkInfo.AlreadyConnected -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.AuthenticationAlgorithm - name: AuthenticationAlgorithm - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_WirelessNetworkInfo_AuthenticationAlgorithm - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.AuthenticationAlgorithm - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.AuthenticationAlgorithm - nameWithType: WirelessNetworkInfo.AuthenticationAlgorithm -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.BSSID - name: BSSID - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_WirelessNetworkInfo_BSSID - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.BSSID - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.BSSID - nameWithType: WirelessNetworkInfo.BSSID -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.Channel - name: Channel - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_WirelessNetworkInfo_Channel - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.Channel - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.Channel - nameWithType: WirelessNetworkInfo.Channel -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.CipherAlgorithm - name: CipherAlgorithm - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_WirelessNetworkInfo_CipherAlgorithm - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.CipherAlgorithm - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.CipherAlgorithm - nameWithType: WirelessNetworkInfo.CipherAlgorithm -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.Connectable - name: Connectable - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_WirelessNetworkInfo_Connectable - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.Connectable - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.Connectable - nameWithType: WirelessNetworkInfo.Connectable -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.InfrastructureType - name: InfrastructureType - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_WirelessNetworkInfo_InfrastructureType - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.InfrastructureType - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.InfrastructureType - nameWithType: WirelessNetworkInfo.InfrastructureType -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.PhysicalTypes - name: PhysicalTypes - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_WirelessNetworkInfo_PhysicalTypes - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.PhysicalTypes - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.PhysicalTypes - nameWithType: WirelessNetworkInfo.PhysicalTypes -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.ProfileAvailable - name: ProfileAvailable - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_WirelessNetworkInfo_ProfileAvailable - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.ProfileAvailable - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.ProfileAvailable - nameWithType: WirelessNetworkInfo.ProfileAvailable -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.ProfileName - name: ProfileName - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_WirelessNetworkInfo_ProfileName - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.ProfileName - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.ProfileName - nameWithType: WirelessNetworkInfo.ProfileName -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.SecurityEnabled - name: SecurityEnabled - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_WirelessNetworkInfo_SecurityEnabled - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.SecurityEnabled - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.SecurityEnabled - nameWithType: WirelessNetworkInfo.SecurityEnabled -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.SignalQuality - name: SignalQuality - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_WirelessNetworkInfo_SignalQuality - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.SignalQuality - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.SignalQuality - nameWithType: WirelessNetworkInfo.SignalQuality -- uid: XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.SSID - name: SSID - href: api/XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.html#XRTK_Utilities_WindowsDevicePortal_DataStructures_WirelessNetworkInfo_SSID - commentId: F:XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.SSID - fullName: XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo.SSID - nameWithType: WirelessNetworkInfo.SSID -- uid: XRTK.Utilities.WindowsDevicePortal.DevicePortal - name: DevicePortal - href: api/XRTK.Utilities.WindowsDevicePortal.DevicePortal.html - commentId: T:XRTK.Utilities.WindowsDevicePortal.DevicePortal - fullName: XRTK.Utilities.WindowsDevicePortal.DevicePortal - nameWithType: DevicePortal -- uid: XRTK.Utilities.WindowsDevicePortal.DevicePortal.ConnectToWiFiNetworkAsync(XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo,XRTK.Utilities.WindowsDevicePortal.DataStructures.InterfaceInfo,XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo,System.String) - name: ConnectToWiFiNetworkAsync(DeviceInfo, InterfaceInfo, WirelessNetworkInfo, String) - href: api/XRTK.Utilities.WindowsDevicePortal.DevicePortal.html#XRTK_Utilities_WindowsDevicePortal_DevicePortal_ConnectToWiFiNetworkAsync_XRTK_Utilities_WindowsDevicePortal_DataStructures_DeviceInfo_XRTK_Utilities_WindowsDevicePortal_DataStructures_InterfaceInfo_XRTK_Utilities_WindowsDevicePortal_DataStructures_WirelessNetworkInfo_System_String_ - commentId: M:XRTK.Utilities.WindowsDevicePortal.DevicePortal.ConnectToWiFiNetworkAsync(XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo,XRTK.Utilities.WindowsDevicePortal.DataStructures.InterfaceInfo,XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo,System.String) - fullName: XRTK.Utilities.WindowsDevicePortal.DevicePortal.ConnectToWiFiNetworkAsync(XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo, XRTK.Utilities.WindowsDevicePortal.DataStructures.InterfaceInfo, XRTK.Utilities.WindowsDevicePortal.DataStructures.WirelessNetworkInfo, System.String) - nameWithType: DevicePortal.ConnectToWiFiNetworkAsync(DeviceInfo, InterfaceInfo, WirelessNetworkInfo, String) -- uid: XRTK.Utilities.WindowsDevicePortal.DevicePortal.ConnectToWiFiNetworkAsync* - name: ConnectToWiFiNetworkAsync - href: api/XRTK.Utilities.WindowsDevicePortal.DevicePortal.html#XRTK_Utilities_WindowsDevicePortal_DevicePortal_ConnectToWiFiNetworkAsync_ - commentId: Overload:XRTK.Utilities.WindowsDevicePortal.DevicePortal.ConnectToWiFiNetworkAsync - isSpec: "True" - fullName: XRTK.Utilities.WindowsDevicePortal.DevicePortal.ConnectToWiFiNetworkAsync - nameWithType: DevicePortal.ConnectToWiFiNetworkAsync -- uid: XRTK.Utilities.WindowsDevicePortal.DevicePortal.DownloadLogFileAsync(System.String,XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo,XRTK.Utilities.WindowsDevicePortal.DataStructures.ApplicationInfo) - name: DownloadLogFileAsync(String, DeviceInfo, ApplicationInfo) - href: api/XRTK.Utilities.WindowsDevicePortal.DevicePortal.html#XRTK_Utilities_WindowsDevicePortal_DevicePortal_DownloadLogFileAsync_System_String_XRTK_Utilities_WindowsDevicePortal_DataStructures_DeviceInfo_XRTK_Utilities_WindowsDevicePortal_DataStructures_ApplicationInfo_ - commentId: M:XRTK.Utilities.WindowsDevicePortal.DevicePortal.DownloadLogFileAsync(System.String,XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo,XRTK.Utilities.WindowsDevicePortal.DataStructures.ApplicationInfo) - fullName: XRTK.Utilities.WindowsDevicePortal.DevicePortal.DownloadLogFileAsync(System.String, XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo, XRTK.Utilities.WindowsDevicePortal.DataStructures.ApplicationInfo) - nameWithType: DevicePortal.DownloadLogFileAsync(String, DeviceInfo, ApplicationInfo) -- uid: XRTK.Utilities.WindowsDevicePortal.DevicePortal.DownloadLogFileAsync* - name: DownloadLogFileAsync - href: api/XRTK.Utilities.WindowsDevicePortal.DevicePortal.html#XRTK_Utilities_WindowsDevicePortal_DevicePortal_DownloadLogFileAsync_ - commentId: Overload:XRTK.Utilities.WindowsDevicePortal.DevicePortal.DownloadLogFileAsync - isSpec: "True" - fullName: XRTK.Utilities.WindowsDevicePortal.DevicePortal.DownloadLogFileAsync - nameWithType: DevicePortal.DownloadLogFileAsync -- uid: XRTK.Utilities.WindowsDevicePortal.DevicePortal.EnsureAuthenticationAsync(XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo) - name: EnsureAuthenticationAsync(DeviceInfo) - href: api/XRTK.Utilities.WindowsDevicePortal.DevicePortal.html#XRTK_Utilities_WindowsDevicePortal_DevicePortal_EnsureAuthenticationAsync_XRTK_Utilities_WindowsDevicePortal_DataStructures_DeviceInfo_ - commentId: M:XRTK.Utilities.WindowsDevicePortal.DevicePortal.EnsureAuthenticationAsync(XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo) - fullName: XRTK.Utilities.WindowsDevicePortal.DevicePortal.EnsureAuthenticationAsync(XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo) - nameWithType: DevicePortal.EnsureAuthenticationAsync(DeviceInfo) -- uid: XRTK.Utilities.WindowsDevicePortal.DevicePortal.EnsureAuthenticationAsync* - name: EnsureAuthenticationAsync - href: api/XRTK.Utilities.WindowsDevicePortal.DevicePortal.html#XRTK_Utilities_WindowsDevicePortal_DevicePortal_EnsureAuthenticationAsync_ - commentId: Overload:XRTK.Utilities.WindowsDevicePortal.DevicePortal.EnsureAuthenticationAsync - isSpec: "True" - fullName: XRTK.Utilities.WindowsDevicePortal.DevicePortal.EnsureAuthenticationAsync - nameWithType: DevicePortal.EnsureAuthenticationAsync -- uid: XRTK.Utilities.WindowsDevicePortal.DevicePortal.FinalizeUrl(System.String) - name: FinalizeUrl(String) - href: api/XRTK.Utilities.WindowsDevicePortal.DevicePortal.html#XRTK_Utilities_WindowsDevicePortal_DevicePortal_FinalizeUrl_System_String_ - commentId: M:XRTK.Utilities.WindowsDevicePortal.DevicePortal.FinalizeUrl(System.String) - fullName: XRTK.Utilities.WindowsDevicePortal.DevicePortal.FinalizeUrl(System.String) - nameWithType: DevicePortal.FinalizeUrl(String) -- uid: XRTK.Utilities.WindowsDevicePortal.DevicePortal.FinalizeUrl* - name: FinalizeUrl - href: api/XRTK.Utilities.WindowsDevicePortal.DevicePortal.html#XRTK_Utilities_WindowsDevicePortal_DevicePortal_FinalizeUrl_ - commentId: Overload:XRTK.Utilities.WindowsDevicePortal.DevicePortal.FinalizeUrl - isSpec: "True" - fullName: XRTK.Utilities.WindowsDevicePortal.DevicePortal.FinalizeUrl - nameWithType: DevicePortal.FinalizeUrl -- uid: XRTK.Utilities.WindowsDevicePortal.DevicePortal.GetAllInstalledAppsAsync(XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo) - name: GetAllInstalledAppsAsync(DeviceInfo) - href: api/XRTK.Utilities.WindowsDevicePortal.DevicePortal.html#XRTK_Utilities_WindowsDevicePortal_DevicePortal_GetAllInstalledAppsAsync_XRTK_Utilities_WindowsDevicePortal_DataStructures_DeviceInfo_ - commentId: M:XRTK.Utilities.WindowsDevicePortal.DevicePortal.GetAllInstalledAppsAsync(XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo) - fullName: XRTK.Utilities.WindowsDevicePortal.DevicePortal.GetAllInstalledAppsAsync(XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo) - nameWithType: DevicePortal.GetAllInstalledAppsAsync(DeviceInfo) -- uid: XRTK.Utilities.WindowsDevicePortal.DevicePortal.GetAllInstalledAppsAsync* - name: GetAllInstalledAppsAsync - href: api/XRTK.Utilities.WindowsDevicePortal.DevicePortal.html#XRTK_Utilities_WindowsDevicePortal_DevicePortal_GetAllInstalledAppsAsync_ - commentId: Overload:XRTK.Utilities.WindowsDevicePortal.DevicePortal.GetAllInstalledAppsAsync - isSpec: "True" - fullName: XRTK.Utilities.WindowsDevicePortal.DevicePortal.GetAllInstalledAppsAsync - nameWithType: DevicePortal.GetAllInstalledAppsAsync -- uid: XRTK.Utilities.WindowsDevicePortal.DevicePortal.GetAvailableWiFiNetworksAsync(XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo,XRTK.Utilities.WindowsDevicePortal.DataStructures.InterfaceInfo) - name: GetAvailableWiFiNetworksAsync(DeviceInfo, InterfaceInfo) - href: api/XRTK.Utilities.WindowsDevicePortal.DevicePortal.html#XRTK_Utilities_WindowsDevicePortal_DevicePortal_GetAvailableWiFiNetworksAsync_XRTK_Utilities_WindowsDevicePortal_DataStructures_DeviceInfo_XRTK_Utilities_WindowsDevicePortal_DataStructures_InterfaceInfo_ - commentId: M:XRTK.Utilities.WindowsDevicePortal.DevicePortal.GetAvailableWiFiNetworksAsync(XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo,XRTK.Utilities.WindowsDevicePortal.DataStructures.InterfaceInfo) - fullName: XRTK.Utilities.WindowsDevicePortal.DevicePortal.GetAvailableWiFiNetworksAsync(XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo, XRTK.Utilities.WindowsDevicePortal.DataStructures.InterfaceInfo) - nameWithType: DevicePortal.GetAvailableWiFiNetworksAsync(DeviceInfo, InterfaceInfo) -- uid: XRTK.Utilities.WindowsDevicePortal.DevicePortal.GetAvailableWiFiNetworksAsync* - name: GetAvailableWiFiNetworksAsync - href: api/XRTK.Utilities.WindowsDevicePortal.DevicePortal.html#XRTK_Utilities_WindowsDevicePortal_DevicePortal_GetAvailableWiFiNetworksAsync_ - commentId: Overload:XRTK.Utilities.WindowsDevicePortal.DevicePortal.GetAvailableWiFiNetworksAsync - isSpec: "True" - fullName: XRTK.Utilities.WindowsDevicePortal.DevicePortal.GetAvailableWiFiNetworksAsync - nameWithType: DevicePortal.GetAvailableWiFiNetworksAsync -- uid: XRTK.Utilities.WindowsDevicePortal.DevicePortal.GetBatteryStateAsync(XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo) - name: GetBatteryStateAsync(DeviceInfo) - href: api/XRTK.Utilities.WindowsDevicePortal.DevicePortal.html#XRTK_Utilities_WindowsDevicePortal_DevicePortal_GetBatteryStateAsync_XRTK_Utilities_WindowsDevicePortal_DataStructures_DeviceInfo_ - commentId: M:XRTK.Utilities.WindowsDevicePortal.DevicePortal.GetBatteryStateAsync(XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo) - fullName: XRTK.Utilities.WindowsDevicePortal.DevicePortal.GetBatteryStateAsync(XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo) - nameWithType: DevicePortal.GetBatteryStateAsync(DeviceInfo) -- uid: XRTK.Utilities.WindowsDevicePortal.DevicePortal.GetBatteryStateAsync* - name: GetBatteryStateAsync - href: api/XRTK.Utilities.WindowsDevicePortal.DevicePortal.html#XRTK_Utilities_WindowsDevicePortal_DevicePortal_GetBatteryStateAsync_ - commentId: Overload:XRTK.Utilities.WindowsDevicePortal.DevicePortal.GetBatteryStateAsync - isSpec: "True" - fullName: XRTK.Utilities.WindowsDevicePortal.DevicePortal.GetBatteryStateAsync - nameWithType: DevicePortal.GetBatteryStateAsync -- uid: XRTK.Utilities.WindowsDevicePortal.DevicePortal.GetDeviceOsInfoAsync(XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo) - name: GetDeviceOsInfoAsync(DeviceInfo) - href: api/XRTK.Utilities.WindowsDevicePortal.DevicePortal.html#XRTK_Utilities_WindowsDevicePortal_DevicePortal_GetDeviceOsInfoAsync_XRTK_Utilities_WindowsDevicePortal_DataStructures_DeviceInfo_ - commentId: M:XRTK.Utilities.WindowsDevicePortal.DevicePortal.GetDeviceOsInfoAsync(XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo) - fullName: XRTK.Utilities.WindowsDevicePortal.DevicePortal.GetDeviceOsInfoAsync(XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo) - nameWithType: DevicePortal.GetDeviceOsInfoAsync(DeviceInfo) -- uid: XRTK.Utilities.WindowsDevicePortal.DevicePortal.GetDeviceOsInfoAsync* - name: GetDeviceOsInfoAsync - href: api/XRTK.Utilities.WindowsDevicePortal.DevicePortal.html#XRTK_Utilities_WindowsDevicePortal_DevicePortal_GetDeviceOsInfoAsync_ - commentId: Overload:XRTK.Utilities.WindowsDevicePortal.DevicePortal.GetDeviceOsInfoAsync - isSpec: "True" - fullName: XRTK.Utilities.WindowsDevicePortal.DevicePortal.GetDeviceOsInfoAsync - nameWithType: DevicePortal.GetDeviceOsInfoAsync -- uid: XRTK.Utilities.WindowsDevicePortal.DevicePortal.GetIpConfigInfoAsync(XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo) - name: GetIpConfigInfoAsync(DeviceInfo) - href: api/XRTK.Utilities.WindowsDevicePortal.DevicePortal.html#XRTK_Utilities_WindowsDevicePortal_DevicePortal_GetIpConfigInfoAsync_XRTK_Utilities_WindowsDevicePortal_DataStructures_DeviceInfo_ - commentId: M:XRTK.Utilities.WindowsDevicePortal.DevicePortal.GetIpConfigInfoAsync(XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo) - fullName: XRTK.Utilities.WindowsDevicePortal.DevicePortal.GetIpConfigInfoAsync(XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo) - nameWithType: DevicePortal.GetIpConfigInfoAsync(DeviceInfo) -- uid: XRTK.Utilities.WindowsDevicePortal.DevicePortal.GetIpConfigInfoAsync* - name: GetIpConfigInfoAsync - href: api/XRTK.Utilities.WindowsDevicePortal.DevicePortal.html#XRTK_Utilities_WindowsDevicePortal_DevicePortal_GetIpConfigInfoAsync_ - commentId: Overload:XRTK.Utilities.WindowsDevicePortal.DevicePortal.GetIpConfigInfoAsync - isSpec: "True" - fullName: XRTK.Utilities.WindowsDevicePortal.DevicePortal.GetIpConfigInfoAsync - nameWithType: DevicePortal.GetIpConfigInfoAsync -- uid: XRTK.Utilities.WindowsDevicePortal.DevicePortal.GetMachineNameAsync(XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo) - name: GetMachineNameAsync(DeviceInfo) - href: api/XRTK.Utilities.WindowsDevicePortal.DevicePortal.html#XRTK_Utilities_WindowsDevicePortal_DevicePortal_GetMachineNameAsync_XRTK_Utilities_WindowsDevicePortal_DataStructures_DeviceInfo_ - commentId: M:XRTK.Utilities.WindowsDevicePortal.DevicePortal.GetMachineNameAsync(XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo) - fullName: XRTK.Utilities.WindowsDevicePortal.DevicePortal.GetMachineNameAsync(XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo) - nameWithType: DevicePortal.GetMachineNameAsync(DeviceInfo) -- uid: XRTK.Utilities.WindowsDevicePortal.DevicePortal.GetMachineNameAsync* - name: GetMachineNameAsync - href: api/XRTK.Utilities.WindowsDevicePortal.DevicePortal.html#XRTK_Utilities_WindowsDevicePortal_DevicePortal_GetMachineNameAsync_ - commentId: Overload:XRTK.Utilities.WindowsDevicePortal.DevicePortal.GetMachineNameAsync - isSpec: "True" - fullName: XRTK.Utilities.WindowsDevicePortal.DevicePortal.GetMachineNameAsync - nameWithType: DevicePortal.GetMachineNameAsync -- uid: XRTK.Utilities.WindowsDevicePortal.DevicePortal.GetPowerStateAsync(XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo) - name: GetPowerStateAsync(DeviceInfo) - href: api/XRTK.Utilities.WindowsDevicePortal.DevicePortal.html#XRTK_Utilities_WindowsDevicePortal_DevicePortal_GetPowerStateAsync_XRTK_Utilities_WindowsDevicePortal_DataStructures_DeviceInfo_ - commentId: M:XRTK.Utilities.WindowsDevicePortal.DevicePortal.GetPowerStateAsync(XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo) - fullName: XRTK.Utilities.WindowsDevicePortal.DevicePortal.GetPowerStateAsync(XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo) - nameWithType: DevicePortal.GetPowerStateAsync(DeviceInfo) -- uid: XRTK.Utilities.WindowsDevicePortal.DevicePortal.GetPowerStateAsync* - name: GetPowerStateAsync - href: api/XRTK.Utilities.WindowsDevicePortal.DevicePortal.html#XRTK_Utilities_WindowsDevicePortal_DevicePortal_GetPowerStateAsync_ - commentId: Overload:XRTK.Utilities.WindowsDevicePortal.DevicePortal.GetPowerStateAsync - isSpec: "True" - fullName: XRTK.Utilities.WindowsDevicePortal.DevicePortal.GetPowerStateAsync - nameWithType: DevicePortal.GetPowerStateAsync -- uid: XRTK.Utilities.WindowsDevicePortal.DevicePortal.GetWiFiNetworkInterfacesAsync(XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo) - name: GetWiFiNetworkInterfacesAsync(DeviceInfo) - href: api/XRTK.Utilities.WindowsDevicePortal.DevicePortal.html#XRTK_Utilities_WindowsDevicePortal_DevicePortal_GetWiFiNetworkInterfacesAsync_XRTK_Utilities_WindowsDevicePortal_DataStructures_DeviceInfo_ - commentId: M:XRTK.Utilities.WindowsDevicePortal.DevicePortal.GetWiFiNetworkInterfacesAsync(XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo) - fullName: XRTK.Utilities.WindowsDevicePortal.DevicePortal.GetWiFiNetworkInterfacesAsync(XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo) - nameWithType: DevicePortal.GetWiFiNetworkInterfacesAsync(DeviceInfo) -- uid: XRTK.Utilities.WindowsDevicePortal.DevicePortal.GetWiFiNetworkInterfacesAsync* - name: GetWiFiNetworkInterfacesAsync - href: api/XRTK.Utilities.WindowsDevicePortal.DevicePortal.html#XRTK_Utilities_WindowsDevicePortal_DevicePortal_GetWiFiNetworkInterfacesAsync_ - commentId: Overload:XRTK.Utilities.WindowsDevicePortal.DevicePortal.GetWiFiNetworkInterfacesAsync - isSpec: "True" - fullName: XRTK.Utilities.WindowsDevicePortal.DevicePortal.GetWiFiNetworkInterfacesAsync - nameWithType: DevicePortal.GetWiFiNetworkInterfacesAsync -- uid: XRTK.Utilities.WindowsDevicePortal.DevicePortal.InstallAppAsync(System.String,XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo,System.Boolean) - name: InstallAppAsync(String, DeviceInfo, Boolean) - href: api/XRTK.Utilities.WindowsDevicePortal.DevicePortal.html#XRTK_Utilities_WindowsDevicePortal_DevicePortal_InstallAppAsync_System_String_XRTK_Utilities_WindowsDevicePortal_DataStructures_DeviceInfo_System_Boolean_ - commentId: M:XRTK.Utilities.WindowsDevicePortal.DevicePortal.InstallAppAsync(System.String,XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo,System.Boolean) - fullName: XRTK.Utilities.WindowsDevicePortal.DevicePortal.InstallAppAsync(System.String, XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo, System.Boolean) - nameWithType: DevicePortal.InstallAppAsync(String, DeviceInfo, Boolean) -- uid: XRTK.Utilities.WindowsDevicePortal.DevicePortal.InstallAppAsync* - name: InstallAppAsync - href: api/XRTK.Utilities.WindowsDevicePortal.DevicePortal.html#XRTK_Utilities_WindowsDevicePortal_DevicePortal_InstallAppAsync_ - commentId: Overload:XRTK.Utilities.WindowsDevicePortal.DevicePortal.InstallAppAsync - isSpec: "True" - fullName: XRTK.Utilities.WindowsDevicePortal.DevicePortal.InstallAppAsync - nameWithType: DevicePortal.InstallAppAsync -- uid: XRTK.Utilities.WindowsDevicePortal.DevicePortal.IsAppInstalledAsync(System.String,XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo) - name: IsAppInstalledAsync(String, DeviceInfo) - href: api/XRTK.Utilities.WindowsDevicePortal.DevicePortal.html#XRTK_Utilities_WindowsDevicePortal_DevicePortal_IsAppInstalledAsync_System_String_XRTK_Utilities_WindowsDevicePortal_DataStructures_DeviceInfo_ - commentId: M:XRTK.Utilities.WindowsDevicePortal.DevicePortal.IsAppInstalledAsync(System.String,XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo) - fullName: XRTK.Utilities.WindowsDevicePortal.DevicePortal.IsAppInstalledAsync(System.String, XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo) - nameWithType: DevicePortal.IsAppInstalledAsync(String, DeviceInfo) -- uid: XRTK.Utilities.WindowsDevicePortal.DevicePortal.IsAppInstalledAsync* - name: IsAppInstalledAsync - href: api/XRTK.Utilities.WindowsDevicePortal.DevicePortal.html#XRTK_Utilities_WindowsDevicePortal_DevicePortal_IsAppInstalledAsync_ - commentId: Overload:XRTK.Utilities.WindowsDevicePortal.DevicePortal.IsAppInstalledAsync - isSpec: "True" - fullName: XRTK.Utilities.WindowsDevicePortal.DevicePortal.IsAppInstalledAsync - nameWithType: DevicePortal.IsAppInstalledAsync -- uid: XRTK.Utilities.WindowsDevicePortal.DevicePortal.IsAppRunningAsync(System.String,XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo,XRTK.Utilities.WindowsDevicePortal.DataStructures.ApplicationInfo) - name: IsAppRunningAsync(String, DeviceInfo, ApplicationInfo) - href: api/XRTK.Utilities.WindowsDevicePortal.DevicePortal.html#XRTK_Utilities_WindowsDevicePortal_DevicePortal_IsAppRunningAsync_System_String_XRTK_Utilities_WindowsDevicePortal_DataStructures_DeviceInfo_XRTK_Utilities_WindowsDevicePortal_DataStructures_ApplicationInfo_ - commentId: M:XRTK.Utilities.WindowsDevicePortal.DevicePortal.IsAppRunningAsync(System.String,XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo,XRTK.Utilities.WindowsDevicePortal.DataStructures.ApplicationInfo) - fullName: XRTK.Utilities.WindowsDevicePortal.DevicePortal.IsAppRunningAsync(System.String, XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo, XRTK.Utilities.WindowsDevicePortal.DataStructures.ApplicationInfo) - nameWithType: DevicePortal.IsAppRunningAsync(String, DeviceInfo, ApplicationInfo) -- uid: XRTK.Utilities.WindowsDevicePortal.DevicePortal.IsAppRunningAsync* - name: IsAppRunningAsync - href: api/XRTK.Utilities.WindowsDevicePortal.DevicePortal.html#XRTK_Utilities_WindowsDevicePortal_DevicePortal_IsAppRunningAsync_ - commentId: Overload:XRTK.Utilities.WindowsDevicePortal.DevicePortal.IsAppRunningAsync - isSpec: "True" - fullName: XRTK.Utilities.WindowsDevicePortal.DevicePortal.IsAppRunningAsync - nameWithType: DevicePortal.IsAppRunningAsync -- uid: XRTK.Utilities.WindowsDevicePortal.DevicePortal.LaunchAppAsync(System.String,XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo,XRTK.Utilities.WindowsDevicePortal.DataStructures.ApplicationInfo) - name: LaunchAppAsync(String, DeviceInfo, ApplicationInfo) - href: api/XRTK.Utilities.WindowsDevicePortal.DevicePortal.html#XRTK_Utilities_WindowsDevicePortal_DevicePortal_LaunchAppAsync_System_String_XRTK_Utilities_WindowsDevicePortal_DataStructures_DeviceInfo_XRTK_Utilities_WindowsDevicePortal_DataStructures_ApplicationInfo_ - commentId: M:XRTK.Utilities.WindowsDevicePortal.DevicePortal.LaunchAppAsync(System.String,XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo,XRTK.Utilities.WindowsDevicePortal.DataStructures.ApplicationInfo) - fullName: XRTK.Utilities.WindowsDevicePortal.DevicePortal.LaunchAppAsync(System.String, XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo, XRTK.Utilities.WindowsDevicePortal.DataStructures.ApplicationInfo) - nameWithType: DevicePortal.LaunchAppAsync(String, DeviceInfo, ApplicationInfo) -- uid: XRTK.Utilities.WindowsDevicePortal.DevicePortal.LaunchAppAsync* - name: LaunchAppAsync - href: api/XRTK.Utilities.WindowsDevicePortal.DevicePortal.html#XRTK_Utilities_WindowsDevicePortal_DevicePortal_LaunchAppAsync_ - commentId: Overload:XRTK.Utilities.WindowsDevicePortal.DevicePortal.LaunchAppAsync - isSpec: "True" - fullName: XRTK.Utilities.WindowsDevicePortal.DevicePortal.LaunchAppAsync - nameWithType: DevicePortal.LaunchAppAsync -- uid: XRTK.Utilities.WindowsDevicePortal.DevicePortal.OpenWebPortal(XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo) - name: OpenWebPortal(DeviceInfo) - href: api/XRTK.Utilities.WindowsDevicePortal.DevicePortal.html#XRTK_Utilities_WindowsDevicePortal_DevicePortal_OpenWebPortal_XRTK_Utilities_WindowsDevicePortal_DataStructures_DeviceInfo_ - commentId: M:XRTK.Utilities.WindowsDevicePortal.DevicePortal.OpenWebPortal(XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo) - fullName: XRTK.Utilities.WindowsDevicePortal.DevicePortal.OpenWebPortal(XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo) - nameWithType: DevicePortal.OpenWebPortal(DeviceInfo) -- uid: XRTK.Utilities.WindowsDevicePortal.DevicePortal.OpenWebPortal* - name: OpenWebPortal - href: api/XRTK.Utilities.WindowsDevicePortal.DevicePortal.html#XRTK_Utilities_WindowsDevicePortal_DevicePortal_OpenWebPortal_ - commentId: Overload:XRTK.Utilities.WindowsDevicePortal.DevicePortal.OpenWebPortal - isSpec: "True" - fullName: XRTK.Utilities.WindowsDevicePortal.DevicePortal.OpenWebPortal - nameWithType: DevicePortal.OpenWebPortal -- uid: XRTK.Utilities.WindowsDevicePortal.DevicePortal.RefreshCsrfTokenAsync(XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo) - name: RefreshCsrfTokenAsync(DeviceInfo) - href: api/XRTK.Utilities.WindowsDevicePortal.DevicePortal.html#XRTK_Utilities_WindowsDevicePortal_DevicePortal_RefreshCsrfTokenAsync_XRTK_Utilities_WindowsDevicePortal_DataStructures_DeviceInfo_ - commentId: M:XRTK.Utilities.WindowsDevicePortal.DevicePortal.RefreshCsrfTokenAsync(XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo) - fullName: XRTK.Utilities.WindowsDevicePortal.DevicePortal.RefreshCsrfTokenAsync(XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo) - nameWithType: DevicePortal.RefreshCsrfTokenAsync(DeviceInfo) -- uid: XRTK.Utilities.WindowsDevicePortal.DevicePortal.RefreshCsrfTokenAsync* - name: RefreshCsrfTokenAsync - href: api/XRTK.Utilities.WindowsDevicePortal.DevicePortal.html#XRTK_Utilities_WindowsDevicePortal_DevicePortal_RefreshCsrfTokenAsync_ - commentId: Overload:XRTK.Utilities.WindowsDevicePortal.DevicePortal.RefreshCsrfTokenAsync - isSpec: "True" - fullName: XRTK.Utilities.WindowsDevicePortal.DevicePortal.RefreshCsrfTokenAsync - nameWithType: DevicePortal.RefreshCsrfTokenAsync -- uid: XRTK.Utilities.WindowsDevicePortal.DevicePortal.RestartAsync(XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo) - name: RestartAsync(DeviceInfo) - href: api/XRTK.Utilities.WindowsDevicePortal.DevicePortal.html#XRTK_Utilities_WindowsDevicePortal_DevicePortal_RestartAsync_XRTK_Utilities_WindowsDevicePortal_DataStructures_DeviceInfo_ - commentId: M:XRTK.Utilities.WindowsDevicePortal.DevicePortal.RestartAsync(XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo) - fullName: XRTK.Utilities.WindowsDevicePortal.DevicePortal.RestartAsync(XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo) - nameWithType: DevicePortal.RestartAsync(DeviceInfo) -- uid: XRTK.Utilities.WindowsDevicePortal.DevicePortal.RestartAsync* - name: RestartAsync - href: api/XRTK.Utilities.WindowsDevicePortal.DevicePortal.html#XRTK_Utilities_WindowsDevicePortal_DevicePortal_RestartAsync_ - commentId: Overload:XRTK.Utilities.WindowsDevicePortal.DevicePortal.RestartAsync - isSpec: "True" - fullName: XRTK.Utilities.WindowsDevicePortal.DevicePortal.RestartAsync - nameWithType: DevicePortal.RestartAsync -- uid: XRTK.Utilities.WindowsDevicePortal.DevicePortal.ShutdownAsync(XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo) - name: ShutdownAsync(DeviceInfo) - href: api/XRTK.Utilities.WindowsDevicePortal.DevicePortal.html#XRTK_Utilities_WindowsDevicePortal_DevicePortal_ShutdownAsync_XRTK_Utilities_WindowsDevicePortal_DataStructures_DeviceInfo_ - commentId: M:XRTK.Utilities.WindowsDevicePortal.DevicePortal.ShutdownAsync(XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo) - fullName: XRTK.Utilities.WindowsDevicePortal.DevicePortal.ShutdownAsync(XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo) - nameWithType: DevicePortal.ShutdownAsync(DeviceInfo) -- uid: XRTK.Utilities.WindowsDevicePortal.DevicePortal.ShutdownAsync* - name: ShutdownAsync - href: api/XRTK.Utilities.WindowsDevicePortal.DevicePortal.html#XRTK_Utilities_WindowsDevicePortal_DevicePortal_ShutdownAsync_ - commentId: Overload:XRTK.Utilities.WindowsDevicePortal.DevicePortal.ShutdownAsync - isSpec: "True" - fullName: XRTK.Utilities.WindowsDevicePortal.DevicePortal.ShutdownAsync - nameWithType: DevicePortal.ShutdownAsync -- uid: XRTK.Utilities.WindowsDevicePortal.DevicePortal.StopAppAsync(System.String,XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo,XRTK.Utilities.WindowsDevicePortal.DataStructures.ApplicationInfo) - name: StopAppAsync(String, DeviceInfo, ApplicationInfo) - href: api/XRTK.Utilities.WindowsDevicePortal.DevicePortal.html#XRTK_Utilities_WindowsDevicePortal_DevicePortal_StopAppAsync_System_String_XRTK_Utilities_WindowsDevicePortal_DataStructures_DeviceInfo_XRTK_Utilities_WindowsDevicePortal_DataStructures_ApplicationInfo_ - commentId: M:XRTK.Utilities.WindowsDevicePortal.DevicePortal.StopAppAsync(System.String,XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo,XRTK.Utilities.WindowsDevicePortal.DataStructures.ApplicationInfo) - fullName: XRTK.Utilities.WindowsDevicePortal.DevicePortal.StopAppAsync(System.String, XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo, XRTK.Utilities.WindowsDevicePortal.DataStructures.ApplicationInfo) - nameWithType: DevicePortal.StopAppAsync(String, DeviceInfo, ApplicationInfo) -- uid: XRTK.Utilities.WindowsDevicePortal.DevicePortal.StopAppAsync* - name: StopAppAsync - href: api/XRTK.Utilities.WindowsDevicePortal.DevicePortal.html#XRTK_Utilities_WindowsDevicePortal_DevicePortal_StopAppAsync_ - commentId: Overload:XRTK.Utilities.WindowsDevicePortal.DevicePortal.StopAppAsync - isSpec: "True" - fullName: XRTK.Utilities.WindowsDevicePortal.DevicePortal.StopAppAsync - nameWithType: DevicePortal.StopAppAsync -- uid: XRTK.Utilities.WindowsDevicePortal.DevicePortal.UninstallAppAsync(System.String,XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo,XRTK.Utilities.WindowsDevicePortal.DataStructures.ApplicationInfo) - name: UninstallAppAsync(String, DeviceInfo, ApplicationInfo) - href: api/XRTK.Utilities.WindowsDevicePortal.DevicePortal.html#XRTK_Utilities_WindowsDevicePortal_DevicePortal_UninstallAppAsync_System_String_XRTK_Utilities_WindowsDevicePortal_DataStructures_DeviceInfo_XRTK_Utilities_WindowsDevicePortal_DataStructures_ApplicationInfo_ - commentId: M:XRTK.Utilities.WindowsDevicePortal.DevicePortal.UninstallAppAsync(System.String,XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo,XRTK.Utilities.WindowsDevicePortal.DataStructures.ApplicationInfo) - fullName: XRTK.Utilities.WindowsDevicePortal.DevicePortal.UninstallAppAsync(System.String, XRTK.Utilities.WindowsDevicePortal.DataStructures.DeviceInfo, XRTK.Utilities.WindowsDevicePortal.DataStructures.ApplicationInfo) - nameWithType: DevicePortal.UninstallAppAsync(String, DeviceInfo, ApplicationInfo) -- uid: XRTK.Utilities.WindowsDevicePortal.DevicePortal.UninstallAppAsync* - name: UninstallAppAsync - href: api/XRTK.Utilities.WindowsDevicePortal.DevicePortal.html#XRTK_Utilities_WindowsDevicePortal_DevicePortal_UninstallAppAsync_ - commentId: Overload:XRTK.Utilities.WindowsDevicePortal.DevicePortal.UninstallAppAsync - isSpec: "True" - fullName: XRTK.Utilities.WindowsDevicePortal.DevicePortal.UninstallAppAsync - nameWithType: DevicePortal.UninstallAppAsync -- uid: XRTK.Utilities.XRDeviceUtilities - name: XRDeviceUtilities - href: api/XRTK.Utilities.XRDeviceUtilities.html - commentId: T:XRTK.Utilities.XRDeviceUtilities - fullName: XRTK.Utilities.XRDeviceUtilities - nameWithType: XRDeviceUtilities -- uid: XRTK.Utilities.XRDeviceUtilities.IsDevicePresent - name: IsDevicePresent - href: api/XRTK.Utilities.XRDeviceUtilities.html#XRTK_Utilities_XRDeviceUtilities_IsDevicePresent - commentId: P:XRTK.Utilities.XRDeviceUtilities.IsDevicePresent - fullName: XRTK.Utilities.XRDeviceUtilities.IsDevicePresent - nameWithType: XRDeviceUtilities.IsDevicePresent -- uid: XRTK.Utilities.XRDeviceUtilities.IsDevicePresent* - name: IsDevicePresent - href: api/XRTK.Utilities.XRDeviceUtilities.html#XRTK_Utilities_XRDeviceUtilities_IsDevicePresent_ - commentId: Overload:XRTK.Utilities.XRDeviceUtilities.IsDevicePresent - isSpec: "True" - fullName: XRTK.Utilities.XRDeviceUtilities.IsDevicePresent - nameWithType: XRDeviceUtilities.IsDevicePresent -- uid: XRTK.WindowsMixedReality.Definitions - name: XRTK.WindowsMixedReality.Definitions - href: api/XRTK.WindowsMixedReality.Definitions.html - commentId: N:XRTK.WindowsMixedReality.Definitions - fullName: XRTK.WindowsMixedReality.Definitions - nameWithType: XRTK.WindowsMixedReality.Definitions -- uid: XRTK.WindowsMixedReality.Definitions.WindowsGestureSettings - name: WindowsGestureSettings - href: api/XRTK.WindowsMixedReality.Definitions.WindowsGestureSettings.html - commentId: T:XRTK.WindowsMixedReality.Definitions.WindowsGestureSettings - fullName: XRTK.WindowsMixedReality.Definitions.WindowsGestureSettings - nameWithType: WindowsGestureSettings -- uid: XRTK.WindowsMixedReality.Definitions.WindowsGestureSettings.DoubleTap - name: DoubleTap - href: api/XRTK.WindowsMixedReality.Definitions.WindowsGestureSettings.html#XRTK_WindowsMixedReality_Definitions_WindowsGestureSettings_DoubleTap - commentId: F:XRTK.WindowsMixedReality.Definitions.WindowsGestureSettings.DoubleTap - fullName: XRTK.WindowsMixedReality.Definitions.WindowsGestureSettings.DoubleTap - nameWithType: WindowsGestureSettings.DoubleTap -- uid: XRTK.WindowsMixedReality.Definitions.WindowsGestureSettings.Hold - name: Hold - href: api/XRTK.WindowsMixedReality.Definitions.WindowsGestureSettings.html#XRTK_WindowsMixedReality_Definitions_WindowsGestureSettings_Hold - commentId: F:XRTK.WindowsMixedReality.Definitions.WindowsGestureSettings.Hold - fullName: XRTK.WindowsMixedReality.Definitions.WindowsGestureSettings.Hold - nameWithType: WindowsGestureSettings.Hold -- uid: XRTK.WindowsMixedReality.Definitions.WindowsGestureSettings.ManipulationTranslate - name: ManipulationTranslate - href: api/XRTK.WindowsMixedReality.Definitions.WindowsGestureSettings.html#XRTK_WindowsMixedReality_Definitions_WindowsGestureSettings_ManipulationTranslate - commentId: F:XRTK.WindowsMixedReality.Definitions.WindowsGestureSettings.ManipulationTranslate - fullName: XRTK.WindowsMixedReality.Definitions.WindowsGestureSettings.ManipulationTranslate - nameWithType: WindowsGestureSettings.ManipulationTranslate -- uid: XRTK.WindowsMixedReality.Definitions.WindowsGestureSettings.NavigationRailsX - name: NavigationRailsX - href: api/XRTK.WindowsMixedReality.Definitions.WindowsGestureSettings.html#XRTK_WindowsMixedReality_Definitions_WindowsGestureSettings_NavigationRailsX - commentId: F:XRTK.WindowsMixedReality.Definitions.WindowsGestureSettings.NavigationRailsX - fullName: XRTK.WindowsMixedReality.Definitions.WindowsGestureSettings.NavigationRailsX - nameWithType: WindowsGestureSettings.NavigationRailsX -- uid: XRTK.WindowsMixedReality.Definitions.WindowsGestureSettings.NavigationRailsY - name: NavigationRailsY - href: api/XRTK.WindowsMixedReality.Definitions.WindowsGestureSettings.html#XRTK_WindowsMixedReality_Definitions_WindowsGestureSettings_NavigationRailsY - commentId: F:XRTK.WindowsMixedReality.Definitions.WindowsGestureSettings.NavigationRailsY - fullName: XRTK.WindowsMixedReality.Definitions.WindowsGestureSettings.NavigationRailsY - nameWithType: WindowsGestureSettings.NavigationRailsY -- uid: XRTK.WindowsMixedReality.Definitions.WindowsGestureSettings.NavigationRailsZ - name: NavigationRailsZ - href: api/XRTK.WindowsMixedReality.Definitions.WindowsGestureSettings.html#XRTK_WindowsMixedReality_Definitions_WindowsGestureSettings_NavigationRailsZ - commentId: F:XRTK.WindowsMixedReality.Definitions.WindowsGestureSettings.NavigationRailsZ - fullName: XRTK.WindowsMixedReality.Definitions.WindowsGestureSettings.NavigationRailsZ - nameWithType: WindowsGestureSettings.NavigationRailsZ -- uid: XRTK.WindowsMixedReality.Definitions.WindowsGestureSettings.NavigationX - name: NavigationX - href: api/XRTK.WindowsMixedReality.Definitions.WindowsGestureSettings.html#XRTK_WindowsMixedReality_Definitions_WindowsGestureSettings_NavigationX - commentId: F:XRTK.WindowsMixedReality.Definitions.WindowsGestureSettings.NavigationX - fullName: XRTK.WindowsMixedReality.Definitions.WindowsGestureSettings.NavigationX - nameWithType: WindowsGestureSettings.NavigationX -- uid: XRTK.WindowsMixedReality.Definitions.WindowsGestureSettings.NavigationY - name: NavigationY - href: api/XRTK.WindowsMixedReality.Definitions.WindowsGestureSettings.html#XRTK_WindowsMixedReality_Definitions_WindowsGestureSettings_NavigationY - commentId: F:XRTK.WindowsMixedReality.Definitions.WindowsGestureSettings.NavigationY - fullName: XRTK.WindowsMixedReality.Definitions.WindowsGestureSettings.NavigationY - nameWithType: WindowsGestureSettings.NavigationY -- uid: XRTK.WindowsMixedReality.Definitions.WindowsGestureSettings.NavigationZ - name: NavigationZ - href: api/XRTK.WindowsMixedReality.Definitions.WindowsGestureSettings.html#XRTK_WindowsMixedReality_Definitions_WindowsGestureSettings_NavigationZ - commentId: F:XRTK.WindowsMixedReality.Definitions.WindowsGestureSettings.NavigationZ - fullName: XRTK.WindowsMixedReality.Definitions.WindowsGestureSettings.NavigationZ - nameWithType: WindowsGestureSettings.NavigationZ -- uid: XRTK.WindowsMixedReality.Definitions.WindowsGestureSettings.Tap - name: Tap - href: api/XRTK.WindowsMixedReality.Definitions.WindowsGestureSettings.html#XRTK_WindowsMixedReality_Definitions_WindowsGestureSettings_Tap - commentId: F:XRTK.WindowsMixedReality.Definitions.WindowsGestureSettings.Tap - fullName: XRTK.WindowsMixedReality.Definitions.WindowsGestureSettings.Tap - nameWithType: WindowsGestureSettings.Tap -- uid: XRTK.WindowsMixedReality.Editor - name: XRTK.WindowsMixedReality.Editor - href: api/XRTK.WindowsMixedReality.Editor.html - commentId: N:XRTK.WindowsMixedReality.Editor - fullName: XRTK.WindowsMixedReality.Editor - nameWithType: XRTK.WindowsMixedReality.Editor -- uid: XRTK.WindowsMixedReality.Editor.Profiles - name: XRTK.WindowsMixedReality.Editor.Profiles - href: api/XRTK.WindowsMixedReality.Editor.Profiles.html - commentId: N:XRTK.WindowsMixedReality.Editor.Profiles - fullName: XRTK.WindowsMixedReality.Editor.Profiles - nameWithType: XRTK.WindowsMixedReality.Editor.Profiles -- uid: XRTK.WindowsMixedReality.Editor.Profiles.WindowsMixedRealityControllerDataProviderProfileInspector - name: WindowsMixedRealityControllerDataProviderProfileInspector - href: api/XRTK.WindowsMixedReality.Editor.Profiles.WindowsMixedRealityControllerDataProviderProfileInspector.html - commentId: T:XRTK.WindowsMixedReality.Editor.Profiles.WindowsMixedRealityControllerDataProviderProfileInspector - fullName: XRTK.WindowsMixedReality.Editor.Profiles.WindowsMixedRealityControllerDataProviderProfileInspector - nameWithType: WindowsMixedRealityControllerDataProviderProfileInspector -- uid: XRTK.WindowsMixedReality.Editor.Profiles.WindowsMixedRealityControllerDataProviderProfileInspector.OnEnable - name: OnEnable() - href: api/XRTK.WindowsMixedReality.Editor.Profiles.WindowsMixedRealityControllerDataProviderProfileInspector.html#XRTK_WindowsMixedReality_Editor_Profiles_WindowsMixedRealityControllerDataProviderProfileInspector_OnEnable - commentId: M:XRTK.WindowsMixedReality.Editor.Profiles.WindowsMixedRealityControllerDataProviderProfileInspector.OnEnable - fullName: XRTK.WindowsMixedReality.Editor.Profiles.WindowsMixedRealityControllerDataProviderProfileInspector.OnEnable() - nameWithType: WindowsMixedRealityControllerDataProviderProfileInspector.OnEnable() -- uid: XRTK.WindowsMixedReality.Editor.Profiles.WindowsMixedRealityControllerDataProviderProfileInspector.OnEnable* - name: OnEnable - href: api/XRTK.WindowsMixedReality.Editor.Profiles.WindowsMixedRealityControllerDataProviderProfileInspector.html#XRTK_WindowsMixedReality_Editor_Profiles_WindowsMixedRealityControllerDataProviderProfileInspector_OnEnable_ - commentId: Overload:XRTK.WindowsMixedReality.Editor.Profiles.WindowsMixedRealityControllerDataProviderProfileInspector.OnEnable - isSpec: "True" - fullName: XRTK.WindowsMixedReality.Editor.Profiles.WindowsMixedRealityControllerDataProviderProfileInspector.OnEnable - nameWithType: WindowsMixedRealityControllerDataProviderProfileInspector.OnEnable -- uid: XRTK.WindowsMixedReality.Editor.Profiles.WindowsMixedRealityControllerDataProviderProfileInspector.OnInspectorGUI - name: OnInspectorGUI() - href: api/XRTK.WindowsMixedReality.Editor.Profiles.WindowsMixedRealityControllerDataProviderProfileInspector.html#XRTK_WindowsMixedReality_Editor_Profiles_WindowsMixedRealityControllerDataProviderProfileInspector_OnInspectorGUI - commentId: M:XRTK.WindowsMixedReality.Editor.Profiles.WindowsMixedRealityControllerDataProviderProfileInspector.OnInspectorGUI - fullName: XRTK.WindowsMixedReality.Editor.Profiles.WindowsMixedRealityControllerDataProviderProfileInspector.OnInspectorGUI() - nameWithType: WindowsMixedRealityControllerDataProviderProfileInspector.OnInspectorGUI() -- uid: XRTK.WindowsMixedReality.Editor.Profiles.WindowsMixedRealityControllerDataProviderProfileInspector.OnInspectorGUI* - name: OnInspectorGUI - href: api/XRTK.WindowsMixedReality.Editor.Profiles.WindowsMixedRealityControllerDataProviderProfileInspector.html#XRTK_WindowsMixedReality_Editor_Profiles_WindowsMixedRealityControllerDataProviderProfileInspector_OnInspectorGUI_ - commentId: Overload:XRTK.WindowsMixedReality.Editor.Profiles.WindowsMixedRealityControllerDataProviderProfileInspector.OnInspectorGUI - isSpec: "True" - fullName: XRTK.WindowsMixedReality.Editor.Profiles.WindowsMixedRealityControllerDataProviderProfileInspector.OnInspectorGUI - nameWithType: WindowsMixedRealityControllerDataProviderProfileInspector.OnInspectorGUI -- uid: XRTK.WindowsMixedReality.Editor.WindowsMixedRealityPathFinder - name: WindowsMixedRealityPathFinder - href: api/XRTK.WindowsMixedReality.Editor.WindowsMixedRealityPathFinder.html - commentId: T:XRTK.WindowsMixedReality.Editor.WindowsMixedRealityPathFinder - fullName: XRTK.WindowsMixedReality.Editor.WindowsMixedRealityPathFinder - nameWithType: WindowsMixedRealityPathFinder -- uid: XRTK.WindowsMixedReality.Editor.WindowsMixedRealityPathFinder.Location - name: Location - href: api/XRTK.WindowsMixedReality.Editor.WindowsMixedRealityPathFinder.html#XRTK_WindowsMixedReality_Editor_WindowsMixedRealityPathFinder_Location - commentId: P:XRTK.WindowsMixedReality.Editor.WindowsMixedRealityPathFinder.Location - fullName: XRTK.WindowsMixedReality.Editor.WindowsMixedRealityPathFinder.Location - nameWithType: WindowsMixedRealityPathFinder.Location -- uid: XRTK.WindowsMixedReality.Editor.WindowsMixedRealityPathFinder.Location* - name: Location - href: api/XRTK.WindowsMixedReality.Editor.WindowsMixedRealityPathFinder.html#XRTK_WindowsMixedReality_Editor_WindowsMixedRealityPathFinder_Location_ - commentId: Overload:XRTK.WindowsMixedReality.Editor.WindowsMixedRealityPathFinder.Location - isSpec: "True" - fullName: XRTK.WindowsMixedReality.Editor.WindowsMixedRealityPathFinder.Location - nameWithType: WindowsMixedRealityPathFinder.Location -- uid: XRTK.WindowsMixedReality.Profiles - name: XRTK.WindowsMixedReality.Profiles - href: api/XRTK.WindowsMixedReality.Profiles.html - commentId: N:XRTK.WindowsMixedReality.Profiles - fullName: XRTK.WindowsMixedReality.Profiles - nameWithType: XRTK.WindowsMixedReality.Profiles -- uid: XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile - name: WindowsMixedRealityControllerDataProviderProfile - href: api/XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile.html - commentId: T:XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile - fullName: XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile - nameWithType: WindowsMixedRealityControllerDataProviderProfile -- uid: XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile.GetDefaultControllerOptions - name: GetDefaultControllerOptions() - href: api/XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile.html#XRTK_WindowsMixedReality_Profiles_WindowsMixedRealityControllerDataProviderProfile_GetDefaultControllerOptions - commentId: M:XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile.GetDefaultControllerOptions - fullName: XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile.GetDefaultControllerOptions() - nameWithType: WindowsMixedRealityControllerDataProviderProfile.GetDefaultControllerOptions() -- uid: XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile.GetDefaultControllerOptions* - name: GetDefaultControllerOptions - href: api/XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile.html#XRTK_WindowsMixedReality_Profiles_WindowsMixedRealityControllerDataProviderProfile_GetDefaultControllerOptions_ - commentId: Overload:XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile.GetDefaultControllerOptions - isSpec: "True" - fullName: XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile.GetDefaultControllerOptions - nameWithType: WindowsMixedRealityControllerDataProviderProfile.GetDefaultControllerOptions -- uid: XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile.ManipulationGestures - name: ManipulationGestures - href: api/XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile.html#XRTK_WindowsMixedReality_Profiles_WindowsMixedRealityControllerDataProviderProfile_ManipulationGestures - commentId: P:XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile.ManipulationGestures - fullName: XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile.ManipulationGestures - nameWithType: WindowsMixedRealityControllerDataProviderProfile.ManipulationGestures -- uid: XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile.ManipulationGestures* - name: ManipulationGestures - href: api/XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile.html#XRTK_WindowsMixedReality_Profiles_WindowsMixedRealityControllerDataProviderProfile_ManipulationGestures_ - commentId: Overload:XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile.ManipulationGestures - isSpec: "True" - fullName: XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile.ManipulationGestures - nameWithType: WindowsMixedRealityControllerDataProviderProfile.ManipulationGestures -- uid: XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile.NavigationGestures - name: NavigationGestures - href: api/XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile.html#XRTK_WindowsMixedReality_Profiles_WindowsMixedRealityControllerDataProviderProfile_NavigationGestures - commentId: P:XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile.NavigationGestures - fullName: XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile.NavigationGestures - nameWithType: WindowsMixedRealityControllerDataProviderProfile.NavigationGestures -- uid: XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile.NavigationGestures* - name: NavigationGestures - href: api/XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile.html#XRTK_WindowsMixedReality_Profiles_WindowsMixedRealityControllerDataProviderProfile_NavigationGestures_ - commentId: Overload:XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile.NavigationGestures - isSpec: "True" - fullName: XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile.NavigationGestures - nameWithType: WindowsMixedRealityControllerDataProviderProfile.NavigationGestures -- uid: XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile.RailsNavigationGestures - name: RailsNavigationGestures - href: api/XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile.html#XRTK_WindowsMixedReality_Profiles_WindowsMixedRealityControllerDataProviderProfile_RailsNavigationGestures - commentId: P:XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile.RailsNavigationGestures - fullName: XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile.RailsNavigationGestures - nameWithType: WindowsMixedRealityControllerDataProviderProfile.RailsNavigationGestures -- uid: XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile.RailsNavigationGestures* - name: RailsNavigationGestures - href: api/XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile.html#XRTK_WindowsMixedReality_Profiles_WindowsMixedRealityControllerDataProviderProfile_RailsNavigationGestures_ - commentId: Overload:XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile.RailsNavigationGestures - isSpec: "True" - fullName: XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile.RailsNavigationGestures - nameWithType: WindowsMixedRealityControllerDataProviderProfile.RailsNavigationGestures -- uid: XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile.UseRailsNavigation - name: UseRailsNavigation - href: api/XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile.html#XRTK_WindowsMixedReality_Profiles_WindowsMixedRealityControllerDataProviderProfile_UseRailsNavigation - commentId: P:XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile.UseRailsNavigation - fullName: XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile.UseRailsNavigation - nameWithType: WindowsMixedRealityControllerDataProviderProfile.UseRailsNavigation -- uid: XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile.UseRailsNavigation* - name: UseRailsNavigation - href: api/XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile.html#XRTK_WindowsMixedReality_Profiles_WindowsMixedRealityControllerDataProviderProfile_UseRailsNavigation_ - commentId: Overload:XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile.UseRailsNavigation - isSpec: "True" - fullName: XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile.UseRailsNavigation - nameWithType: WindowsMixedRealityControllerDataProviderProfile.UseRailsNavigation -- uid: XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile.WindowsGestureAutoStart - name: WindowsGestureAutoStart - href: api/XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile.html#XRTK_WindowsMixedReality_Profiles_WindowsMixedRealityControllerDataProviderProfile_WindowsGestureAutoStart - commentId: P:XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile.WindowsGestureAutoStart - fullName: XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile.WindowsGestureAutoStart - nameWithType: WindowsMixedRealityControllerDataProviderProfile.WindowsGestureAutoStart -- uid: XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile.WindowsGestureAutoStart* - name: WindowsGestureAutoStart - href: api/XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile.html#XRTK_WindowsMixedReality_Profiles_WindowsMixedRealityControllerDataProviderProfile_WindowsGestureAutoStart_ - commentId: Overload:XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile.WindowsGestureAutoStart - isSpec: "True" - fullName: XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile.WindowsGestureAutoStart - nameWithType: WindowsMixedRealityControllerDataProviderProfile.WindowsGestureAutoStart -- uid: XRTK.WindowsMixedReality.Profiles.WindowsMixedRealitySpatialMeshObserverProfile - name: WindowsMixedRealitySpatialMeshObserverProfile - href: api/XRTK.WindowsMixedReality.Profiles.WindowsMixedRealitySpatialMeshObserverProfile.html - commentId: T:XRTK.WindowsMixedReality.Profiles.WindowsMixedRealitySpatialMeshObserverProfile - fullName: XRTK.WindowsMixedReality.Profiles.WindowsMixedRealitySpatialMeshObserverProfile - nameWithType: WindowsMixedRealitySpatialMeshObserverProfile -- uid: XRTK.WindowsMixedReality.Profiles.WindowsMixedRealitySpatialMeshObserverProfile.TrianglesPerCubicMeter - name: TrianglesPerCubicMeter - href: api/XRTK.WindowsMixedReality.Profiles.WindowsMixedRealitySpatialMeshObserverProfile.html#XRTK_WindowsMixedReality_Profiles_WindowsMixedRealitySpatialMeshObserverProfile_TrianglesPerCubicMeter - commentId: P:XRTK.WindowsMixedReality.Profiles.WindowsMixedRealitySpatialMeshObserverProfile.TrianglesPerCubicMeter - fullName: XRTK.WindowsMixedReality.Profiles.WindowsMixedRealitySpatialMeshObserverProfile.TrianglesPerCubicMeter - nameWithType: WindowsMixedRealitySpatialMeshObserverProfile.TrianglesPerCubicMeter -- uid: XRTK.WindowsMixedReality.Profiles.WindowsMixedRealitySpatialMeshObserverProfile.TrianglesPerCubicMeter* - name: TrianglesPerCubicMeter - href: api/XRTK.WindowsMixedReality.Profiles.WindowsMixedRealitySpatialMeshObserverProfile.html#XRTK_WindowsMixedReality_Profiles_WindowsMixedRealitySpatialMeshObserverProfile_TrianglesPerCubicMeter_ - commentId: Overload:XRTK.WindowsMixedReality.Profiles.WindowsMixedRealitySpatialMeshObserverProfile.TrianglesPerCubicMeter - isSpec: "True" - fullName: XRTK.WindowsMixedReality.Profiles.WindowsMixedRealitySpatialMeshObserverProfile.TrianglesPerCubicMeter - nameWithType: WindowsMixedRealitySpatialMeshObserverProfile.TrianglesPerCubicMeter -- uid: XRTK.WindowsMixedReality.Providers.BoundarySystem - name: XRTK.WindowsMixedReality.Providers.BoundarySystem - href: api/XRTK.WindowsMixedReality.Providers.BoundarySystem.html - commentId: N:XRTK.WindowsMixedReality.Providers.BoundarySystem - fullName: XRTK.WindowsMixedReality.Providers.BoundarySystem - nameWithType: XRTK.WindowsMixedReality.Providers.BoundarySystem -- uid: XRTK.WindowsMixedReality.Providers.BoundarySystem.WindowsMixedRealityBoundaryDataProvider - name: WindowsMixedRealityBoundaryDataProvider - href: api/XRTK.WindowsMixedReality.Providers.BoundarySystem.WindowsMixedRealityBoundaryDataProvider.html - commentId: T:XRTK.WindowsMixedReality.Providers.BoundarySystem.WindowsMixedRealityBoundaryDataProvider - fullName: XRTK.WindowsMixedReality.Providers.BoundarySystem.WindowsMixedRealityBoundaryDataProvider - nameWithType: WindowsMixedRealityBoundaryDataProvider -- uid: XRTK.WindowsMixedReality.Providers.BoundarySystem.WindowsMixedRealityBoundaryDataProvider.#ctor(System.String,System.UInt32,XRTK.Definitions.BaseMixedRealityProfile,XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem) - name: WindowsMixedRealityBoundaryDataProvider(String, UInt32, BaseMixedRealityProfile, IMixedRealityBoundarySystem) - href: api/XRTK.WindowsMixedReality.Providers.BoundarySystem.WindowsMixedRealityBoundaryDataProvider.html#XRTK_WindowsMixedReality_Providers_BoundarySystem_WindowsMixedRealityBoundaryDataProvider__ctor_System_String_System_UInt32_XRTK_Definitions_BaseMixedRealityProfile_XRTK_Interfaces_BoundarySystem_IMixedRealityBoundarySystem_ - commentId: M:XRTK.WindowsMixedReality.Providers.BoundarySystem.WindowsMixedRealityBoundaryDataProvider.#ctor(System.String,System.UInt32,XRTK.Definitions.BaseMixedRealityProfile,XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem) - fullName: XRTK.WindowsMixedReality.Providers.BoundarySystem.WindowsMixedRealityBoundaryDataProvider.WindowsMixedRealityBoundaryDataProvider(System.String, System.UInt32, XRTK.Definitions.BaseMixedRealityProfile, XRTK.Interfaces.BoundarySystem.IMixedRealityBoundarySystem) - nameWithType: WindowsMixedRealityBoundaryDataProvider.WindowsMixedRealityBoundaryDataProvider(String, UInt32, BaseMixedRealityProfile, IMixedRealityBoundarySystem) -- uid: XRTK.WindowsMixedReality.Providers.BoundarySystem.WindowsMixedRealityBoundaryDataProvider.#ctor* - name: WindowsMixedRealityBoundaryDataProvider - href: api/XRTK.WindowsMixedReality.Providers.BoundarySystem.WindowsMixedRealityBoundaryDataProvider.html#XRTK_WindowsMixedReality_Providers_BoundarySystem_WindowsMixedRealityBoundaryDataProvider__ctor_ - commentId: Overload:XRTK.WindowsMixedReality.Providers.BoundarySystem.WindowsMixedRealityBoundaryDataProvider.#ctor - isSpec: "True" - fullName: XRTK.WindowsMixedReality.Providers.BoundarySystem.WindowsMixedRealityBoundaryDataProvider.WindowsMixedRealityBoundaryDataProvider - nameWithType: WindowsMixedRealityBoundaryDataProvider.WindowsMixedRealityBoundaryDataProvider -- uid: XRTK.WindowsMixedReality.Providers.BoundarySystem.WindowsMixedRealityBoundaryDataProvider.Enable - name: Enable() - href: api/XRTK.WindowsMixedReality.Providers.BoundarySystem.WindowsMixedRealityBoundaryDataProvider.html#XRTK_WindowsMixedReality_Providers_BoundarySystem_WindowsMixedRealityBoundaryDataProvider_Enable - commentId: M:XRTK.WindowsMixedReality.Providers.BoundarySystem.WindowsMixedRealityBoundaryDataProvider.Enable - fullName: XRTK.WindowsMixedReality.Providers.BoundarySystem.WindowsMixedRealityBoundaryDataProvider.Enable() - nameWithType: WindowsMixedRealityBoundaryDataProvider.Enable() -- uid: XRTK.WindowsMixedReality.Providers.BoundarySystem.WindowsMixedRealityBoundaryDataProvider.Enable* - name: Enable - href: api/XRTK.WindowsMixedReality.Providers.BoundarySystem.WindowsMixedRealityBoundaryDataProvider.html#XRTK_WindowsMixedReality_Providers_BoundarySystem_WindowsMixedRealityBoundaryDataProvider_Enable_ - commentId: Overload:XRTK.WindowsMixedReality.Providers.BoundarySystem.WindowsMixedRealityBoundaryDataProvider.Enable - isSpec: "True" - fullName: XRTK.WindowsMixedReality.Providers.BoundarySystem.WindowsMixedRealityBoundaryDataProvider.Enable - nameWithType: WindowsMixedRealityBoundaryDataProvider.Enable -- uid: XRTK.WindowsMixedReality.Providers.BoundarySystem.WindowsMixedRealityBoundaryDataProvider.IsPlatformConfigured - name: IsPlatformConfigured - href: api/XRTK.WindowsMixedReality.Providers.BoundarySystem.WindowsMixedRealityBoundaryDataProvider.html#XRTK_WindowsMixedReality_Providers_BoundarySystem_WindowsMixedRealityBoundaryDataProvider_IsPlatformConfigured - commentId: P:XRTK.WindowsMixedReality.Providers.BoundarySystem.WindowsMixedRealityBoundaryDataProvider.IsPlatformConfigured - fullName: XRTK.WindowsMixedReality.Providers.BoundarySystem.WindowsMixedRealityBoundaryDataProvider.IsPlatformConfigured - nameWithType: WindowsMixedRealityBoundaryDataProvider.IsPlatformConfigured -- uid: XRTK.WindowsMixedReality.Providers.BoundarySystem.WindowsMixedRealityBoundaryDataProvider.IsPlatformConfigured* - name: IsPlatformConfigured - href: api/XRTK.WindowsMixedReality.Providers.BoundarySystem.WindowsMixedRealityBoundaryDataProvider.html#XRTK_WindowsMixedReality_Providers_BoundarySystem_WindowsMixedRealityBoundaryDataProvider_IsPlatformConfigured_ - commentId: Overload:XRTK.WindowsMixedReality.Providers.BoundarySystem.WindowsMixedRealityBoundaryDataProvider.IsPlatformConfigured - isSpec: "True" - fullName: XRTK.WindowsMixedReality.Providers.BoundarySystem.WindowsMixedRealityBoundaryDataProvider.IsPlatformConfigured - nameWithType: WindowsMixedRealityBoundaryDataProvider.IsPlatformConfigured -- uid: XRTK.WindowsMixedReality.Providers.BoundarySystem.WindowsMixedRealityBoundaryDataProvider.TryGetBoundaryGeometry(System.Collections.Generic.List{UnityEngine.Vector3}@) - name: TryGetBoundaryGeometry(ref List) - href: api/XRTK.WindowsMixedReality.Providers.BoundarySystem.WindowsMixedRealityBoundaryDataProvider.html#XRTK_WindowsMixedReality_Providers_BoundarySystem_WindowsMixedRealityBoundaryDataProvider_TryGetBoundaryGeometry_System_Collections_Generic_List_UnityEngine_Vector3___ - commentId: M:XRTK.WindowsMixedReality.Providers.BoundarySystem.WindowsMixedRealityBoundaryDataProvider.TryGetBoundaryGeometry(System.Collections.Generic.List{UnityEngine.Vector3}@) - name.vb: TryGetBoundaryGeometry(ByRef List(Of Vector3)) - fullName: XRTK.WindowsMixedReality.Providers.BoundarySystem.WindowsMixedRealityBoundaryDataProvider.TryGetBoundaryGeometry(ref System.Collections.Generic.List) - fullName.vb: XRTK.WindowsMixedReality.Providers.BoundarySystem.WindowsMixedRealityBoundaryDataProvider.TryGetBoundaryGeometry(ByRef System.Collections.Generic.List(Of UnityEngine.Vector3)) - nameWithType: WindowsMixedRealityBoundaryDataProvider.TryGetBoundaryGeometry(ref List) - nameWithType.vb: WindowsMixedRealityBoundaryDataProvider.TryGetBoundaryGeometry(ByRef List(Of Vector3)) -- uid: XRTK.WindowsMixedReality.Providers.BoundarySystem.WindowsMixedRealityBoundaryDataProvider.TryGetBoundaryGeometry* - name: TryGetBoundaryGeometry - href: api/XRTK.WindowsMixedReality.Providers.BoundarySystem.WindowsMixedRealityBoundaryDataProvider.html#XRTK_WindowsMixedReality_Providers_BoundarySystem_WindowsMixedRealityBoundaryDataProvider_TryGetBoundaryGeometry_ - commentId: Overload:XRTK.WindowsMixedReality.Providers.BoundarySystem.WindowsMixedRealityBoundaryDataProvider.TryGetBoundaryGeometry - isSpec: "True" - fullName: XRTK.WindowsMixedReality.Providers.BoundarySystem.WindowsMixedRealityBoundaryDataProvider.TryGetBoundaryGeometry - nameWithType: WindowsMixedRealityBoundaryDataProvider.TryGetBoundaryGeometry -- uid: XRTK.WindowsMixedReality.Providers.BoundarySystem.WindowsMixedRealityBoundaryDataProvider.Visibility - name: Visibility - href: api/XRTK.WindowsMixedReality.Providers.BoundarySystem.WindowsMixedRealityBoundaryDataProvider.html#XRTK_WindowsMixedReality_Providers_BoundarySystem_WindowsMixedRealityBoundaryDataProvider_Visibility - commentId: P:XRTK.WindowsMixedReality.Providers.BoundarySystem.WindowsMixedRealityBoundaryDataProvider.Visibility - fullName: XRTK.WindowsMixedReality.Providers.BoundarySystem.WindowsMixedRealityBoundaryDataProvider.Visibility - nameWithType: WindowsMixedRealityBoundaryDataProvider.Visibility -- uid: XRTK.WindowsMixedReality.Providers.BoundarySystem.WindowsMixedRealityBoundaryDataProvider.Visibility* - name: Visibility - href: api/XRTK.WindowsMixedReality.Providers.BoundarySystem.WindowsMixedRealityBoundaryDataProvider.html#XRTK_WindowsMixedReality_Providers_BoundarySystem_WindowsMixedRealityBoundaryDataProvider_Visibility_ - commentId: Overload:XRTK.WindowsMixedReality.Providers.BoundarySystem.WindowsMixedRealityBoundaryDataProvider.Visibility - isSpec: "True" - fullName: XRTK.WindowsMixedReality.Providers.BoundarySystem.WindowsMixedRealityBoundaryDataProvider.Visibility - nameWithType: WindowsMixedRealityBoundaryDataProvider.Visibility -- uid: XRTK.WindowsMixedReality.Providers.CameraSystem - name: XRTK.WindowsMixedReality.Providers.CameraSystem - href: api/XRTK.WindowsMixedReality.Providers.CameraSystem.html - commentId: N:XRTK.WindowsMixedReality.Providers.CameraSystem - fullName: XRTK.WindowsMixedReality.Providers.CameraSystem - nameWithType: XRTK.WindowsMixedReality.Providers.CameraSystem -- uid: XRTK.WindowsMixedReality.Providers.CameraSystem.WindowsMixedRealityCameraDataProvider - name: WindowsMixedRealityCameraDataProvider - href: api/XRTK.WindowsMixedReality.Providers.CameraSystem.WindowsMixedRealityCameraDataProvider.html - commentId: T:XRTK.WindowsMixedReality.Providers.CameraSystem.WindowsMixedRealityCameraDataProvider - fullName: XRTK.WindowsMixedReality.Providers.CameraSystem.WindowsMixedRealityCameraDataProvider - nameWithType: WindowsMixedRealityCameraDataProvider -- uid: XRTK.WindowsMixedReality.Providers.CameraSystem.WindowsMixedRealityCameraDataProvider.#ctor(System.String,System.UInt32,XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile,XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem) - name: WindowsMixedRealityCameraDataProvider(String, UInt32, BaseMixedRealityCameraDataProviderProfile, IMixedRealityCameraSystem) - href: api/XRTK.WindowsMixedReality.Providers.CameraSystem.WindowsMixedRealityCameraDataProvider.html#XRTK_WindowsMixedReality_Providers_CameraSystem_WindowsMixedRealityCameraDataProvider__ctor_System_String_System_UInt32_XRTK_Definitions_CameraSystem_BaseMixedRealityCameraDataProviderProfile_XRTK_Interfaces_CameraSystem_IMixedRealityCameraSystem_ - commentId: M:XRTK.WindowsMixedReality.Providers.CameraSystem.WindowsMixedRealityCameraDataProvider.#ctor(System.String,System.UInt32,XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile,XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem) - fullName: XRTK.WindowsMixedReality.Providers.CameraSystem.WindowsMixedRealityCameraDataProvider.WindowsMixedRealityCameraDataProvider(System.String, System.UInt32, XRTK.Definitions.CameraSystem.BaseMixedRealityCameraDataProviderProfile, XRTK.Interfaces.CameraSystem.IMixedRealityCameraSystem) - nameWithType: WindowsMixedRealityCameraDataProvider.WindowsMixedRealityCameraDataProvider(String, UInt32, BaseMixedRealityCameraDataProviderProfile, IMixedRealityCameraSystem) -- uid: XRTK.WindowsMixedReality.Providers.CameraSystem.WindowsMixedRealityCameraDataProvider.#ctor* - name: WindowsMixedRealityCameraDataProvider - href: api/XRTK.WindowsMixedReality.Providers.CameraSystem.WindowsMixedRealityCameraDataProvider.html#XRTK_WindowsMixedReality_Providers_CameraSystem_WindowsMixedRealityCameraDataProvider__ctor_ - commentId: Overload:XRTK.WindowsMixedReality.Providers.CameraSystem.WindowsMixedRealityCameraDataProvider.#ctor - isSpec: "True" - fullName: XRTK.WindowsMixedReality.Providers.CameraSystem.WindowsMixedRealityCameraDataProvider.WindowsMixedRealityCameraDataProvider - nameWithType: WindowsMixedRealityCameraDataProvider.WindowsMixedRealityCameraDataProvider -- uid: XRTK.WindowsMixedReality.Providers.CameraSystem.WindowsMixedRealityCameraDataProvider.IsOpaque - name: IsOpaque - href: api/XRTK.WindowsMixedReality.Providers.CameraSystem.WindowsMixedRealityCameraDataProvider.html#XRTK_WindowsMixedReality_Providers_CameraSystem_WindowsMixedRealityCameraDataProvider_IsOpaque - commentId: P:XRTK.WindowsMixedReality.Providers.CameraSystem.WindowsMixedRealityCameraDataProvider.IsOpaque - fullName: XRTK.WindowsMixedReality.Providers.CameraSystem.WindowsMixedRealityCameraDataProvider.IsOpaque - nameWithType: WindowsMixedRealityCameraDataProvider.IsOpaque -- uid: XRTK.WindowsMixedReality.Providers.CameraSystem.WindowsMixedRealityCameraDataProvider.IsOpaque* - name: IsOpaque - href: api/XRTK.WindowsMixedReality.Providers.CameraSystem.WindowsMixedRealityCameraDataProvider.html#XRTK_WindowsMixedReality_Providers_CameraSystem_WindowsMixedRealityCameraDataProvider_IsOpaque_ - commentId: Overload:XRTK.WindowsMixedReality.Providers.CameraSystem.WindowsMixedRealityCameraDataProvider.IsOpaque - isSpec: "True" - fullName: XRTK.WindowsMixedReality.Providers.CameraSystem.WindowsMixedRealityCameraDataProvider.IsOpaque - nameWithType: WindowsMixedRealityCameraDataProvider.IsOpaque -- uid: XRTK.WindowsMixedReality.Providers.Controllers - name: XRTK.WindowsMixedReality.Providers.Controllers - href: api/XRTK.WindowsMixedReality.Providers.Controllers.html - commentId: N:XRTK.WindowsMixedReality.Providers.Controllers - fullName: XRTK.WindowsMixedReality.Providers.Controllers - nameWithType: XRTK.WindowsMixedReality.Providers.Controllers -- uid: XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityControllerDataProvider - name: WindowsMixedRealityControllerDataProvider - href: api/XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityControllerDataProvider.html - commentId: T:XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityControllerDataProvider - fullName: XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityControllerDataProvider - nameWithType: WindowsMixedRealityControllerDataProvider -- uid: XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityControllerDataProvider.#ctor(System.String,System.UInt32,XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile,XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - name: WindowsMixedRealityControllerDataProvider(String, UInt32, WindowsMixedRealityControllerDataProviderProfile, IMixedRealityInputSystem) - href: api/XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityControllerDataProvider.html#XRTK_WindowsMixedReality_Providers_Controllers_WindowsMixedRealityControllerDataProvider__ctor_System_String_System_UInt32_XRTK_WindowsMixedReality_Profiles_WindowsMixedRealityControllerDataProviderProfile_XRTK_Interfaces_InputSystem_IMixedRealityInputSystem_ - commentId: M:XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityControllerDataProvider.#ctor(System.String,System.UInt32,XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile,XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - fullName: XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityControllerDataProvider.WindowsMixedRealityControllerDataProvider(System.String, System.UInt32, XRTK.WindowsMixedReality.Profiles.WindowsMixedRealityControllerDataProviderProfile, XRTK.Interfaces.InputSystem.IMixedRealityInputSystem) - nameWithType: WindowsMixedRealityControllerDataProvider.WindowsMixedRealityControllerDataProvider(String, UInt32, WindowsMixedRealityControllerDataProviderProfile, IMixedRealityInputSystem) -- uid: XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityControllerDataProvider.#ctor* - name: WindowsMixedRealityControllerDataProvider - href: api/XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityControllerDataProvider.html#XRTK_WindowsMixedReality_Providers_Controllers_WindowsMixedRealityControllerDataProvider__ctor_ - commentId: Overload:XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityControllerDataProvider.#ctor - isSpec: "True" - fullName: XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityControllerDataProvider.WindowsMixedRealityControllerDataProvider - nameWithType: WindowsMixedRealityControllerDataProvider.WindowsMixedRealityControllerDataProvider -- uid: XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityHololensOneController - name: WindowsMixedRealityHololensOneController - href: api/XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityHololensOneController.html - commentId: T:XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityHololensOneController - fullName: XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityHololensOneController - nameWithType: WindowsMixedRealityHololensOneController -- uid: XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityHololensOneController.#ctor(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider,XRTK.Definitions.Devices.TrackingState,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - name: WindowsMixedRealityHololensOneController(IMixedRealityControllerDataProvider, TrackingState, Handedness, MixedRealityControllerMappingProfile) - href: api/XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityHololensOneController.html#XRTK_WindowsMixedReality_Providers_Controllers_WindowsMixedRealityHololensOneController__ctor_XRTK_Interfaces_Providers_Controllers_IMixedRealityControllerDataProvider_XRTK_Definitions_Devices_TrackingState_XRTK_Definitions_Utilities_Handedness_XRTK_Definitions_Controllers_MixedRealityControllerMappingProfile_ - commentId: M:XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityHololensOneController.#ctor(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider,XRTK.Definitions.Devices.TrackingState,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - fullName: XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityHololensOneController.WindowsMixedRealityHololensOneController(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider, XRTK.Definitions.Devices.TrackingState, XRTK.Definitions.Utilities.Handedness, XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - nameWithType: WindowsMixedRealityHololensOneController.WindowsMixedRealityHololensOneController(IMixedRealityControllerDataProvider, TrackingState, Handedness, MixedRealityControllerMappingProfile) -- uid: XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityHololensOneController.#ctor* - name: WindowsMixedRealityHololensOneController - href: api/XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityHololensOneController.html#XRTK_WindowsMixedReality_Providers_Controllers_WindowsMixedRealityHololensOneController__ctor_ - commentId: Overload:XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityHololensOneController.#ctor - isSpec: "True" - fullName: XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityHololensOneController.WindowsMixedRealityHololensOneController - nameWithType: WindowsMixedRealityHololensOneController.WindowsMixedRealityHololensOneController -- uid: XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityHololensOneController.DefaultInteractions - name: DefaultInteractions - href: api/XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityHololensOneController.html#XRTK_WindowsMixedReality_Providers_Controllers_WindowsMixedRealityHololensOneController_DefaultInteractions - commentId: P:XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityHololensOneController.DefaultInteractions - fullName: XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityHololensOneController.DefaultInteractions - nameWithType: WindowsMixedRealityHololensOneController.DefaultInteractions -- uid: XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityHololensOneController.DefaultInteractions* - name: DefaultInteractions - href: api/XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityHololensOneController.html#XRTK_WindowsMixedReality_Providers_Controllers_WindowsMixedRealityHololensOneController_DefaultInteractions_ - commentId: Overload:XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityHololensOneController.DefaultInteractions - isSpec: "True" - fullName: XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityHololensOneController.DefaultInteractions - nameWithType: WindowsMixedRealityHololensOneController.DefaultInteractions -- uid: XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityMotionController - name: WindowsMixedRealityMotionController - href: api/XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityMotionController.html - commentId: T:XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityMotionController - fullName: XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityMotionController - nameWithType: WindowsMixedRealityMotionController -- uid: XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityMotionController.#ctor - name: WindowsMixedRealityMotionController() - href: api/XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityMotionController.html#XRTK_WindowsMixedReality_Providers_Controllers_WindowsMixedRealityMotionController__ctor - commentId: M:XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityMotionController.#ctor - fullName: XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityMotionController.WindowsMixedRealityMotionController() - nameWithType: WindowsMixedRealityMotionController.WindowsMixedRealityMotionController() -- uid: XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityMotionController.#ctor(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider,XRTK.Definitions.Devices.TrackingState,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - name: WindowsMixedRealityMotionController(IMixedRealityControllerDataProvider, TrackingState, Handedness, MixedRealityControllerMappingProfile) - href: api/XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityMotionController.html#XRTK_WindowsMixedReality_Providers_Controllers_WindowsMixedRealityMotionController__ctor_XRTK_Interfaces_Providers_Controllers_IMixedRealityControllerDataProvider_XRTK_Definitions_Devices_TrackingState_XRTK_Definitions_Utilities_Handedness_XRTK_Definitions_Controllers_MixedRealityControllerMappingProfile_ - commentId: M:XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityMotionController.#ctor(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider,XRTK.Definitions.Devices.TrackingState,XRTK.Definitions.Utilities.Handedness,XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - fullName: XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityMotionController.WindowsMixedRealityMotionController(XRTK.Interfaces.Providers.Controllers.IMixedRealityControllerDataProvider, XRTK.Definitions.Devices.TrackingState, XRTK.Definitions.Utilities.Handedness, XRTK.Definitions.Controllers.MixedRealityControllerMappingProfile) - nameWithType: WindowsMixedRealityMotionController.WindowsMixedRealityMotionController(IMixedRealityControllerDataProvider, TrackingState, Handedness, MixedRealityControllerMappingProfile) -- uid: XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityMotionController.#ctor* - name: WindowsMixedRealityMotionController - href: api/XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityMotionController.html#XRTK_WindowsMixedReality_Providers_Controllers_WindowsMixedRealityMotionController__ctor_ - commentId: Overload:XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityMotionController.#ctor - isSpec: "True" - fullName: XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityMotionController.WindowsMixedRealityMotionController - nameWithType: WindowsMixedRealityMotionController.WindowsMixedRealityMotionController -- uid: XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityMotionController.DefaultInteractions - name: DefaultInteractions - href: api/XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityMotionController.html#XRTK_WindowsMixedReality_Providers_Controllers_WindowsMixedRealityMotionController_DefaultInteractions - commentId: P:XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityMotionController.DefaultInteractions - fullName: XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityMotionController.DefaultInteractions - nameWithType: WindowsMixedRealityMotionController.DefaultInteractions -- uid: XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityMotionController.DefaultInteractions* - name: DefaultInteractions - href: api/XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityMotionController.html#XRTK_WindowsMixedReality_Providers_Controllers_WindowsMixedRealityMotionController_DefaultInteractions_ - commentId: Overload:XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityMotionController.DefaultInteractions - isSpec: "True" - fullName: XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityMotionController.DefaultInteractions - nameWithType: WindowsMixedRealityMotionController.DefaultInteractions -- uid: XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityMotionController.DefaultLeftHandedInteractions - name: DefaultLeftHandedInteractions - href: api/XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityMotionController.html#XRTK_WindowsMixedReality_Providers_Controllers_WindowsMixedRealityMotionController_DefaultLeftHandedInteractions - commentId: P:XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityMotionController.DefaultLeftHandedInteractions - fullName: XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityMotionController.DefaultLeftHandedInteractions - nameWithType: WindowsMixedRealityMotionController.DefaultLeftHandedInteractions -- uid: XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityMotionController.DefaultLeftHandedInteractions* - name: DefaultLeftHandedInteractions - href: api/XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityMotionController.html#XRTK_WindowsMixedReality_Providers_Controllers_WindowsMixedRealityMotionController_DefaultLeftHandedInteractions_ - commentId: Overload:XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityMotionController.DefaultLeftHandedInteractions - isSpec: "True" - fullName: XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityMotionController.DefaultLeftHandedInteractions - nameWithType: WindowsMixedRealityMotionController.DefaultLeftHandedInteractions -- uid: XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityMotionController.DefaultRightHandedInteractions - name: DefaultRightHandedInteractions - href: api/XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityMotionController.html#XRTK_WindowsMixedReality_Providers_Controllers_WindowsMixedRealityMotionController_DefaultRightHandedInteractions - commentId: P:XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityMotionController.DefaultRightHandedInteractions - fullName: XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityMotionController.DefaultRightHandedInteractions - nameWithType: WindowsMixedRealityMotionController.DefaultRightHandedInteractions -- uid: XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityMotionController.DefaultRightHandedInteractions* - name: DefaultRightHandedInteractions - href: api/XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityMotionController.html#XRTK_WindowsMixedReality_Providers_Controllers_WindowsMixedRealityMotionController_DefaultRightHandedInteractions_ - commentId: Overload:XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityMotionController.DefaultRightHandedInteractions - isSpec: "True" - fullName: XRTK.WindowsMixedReality.Providers.Controllers.WindowsMixedRealityMotionController.DefaultRightHandedInteractions - nameWithType: WindowsMixedRealityMotionController.DefaultRightHandedInteractions -- uid: XRTK.WindowsMixedReality.Providers.SpatialAwarenessSystem.SpatialObservers - name: XRTK.WindowsMixedReality.Providers.SpatialAwarenessSystem.SpatialObservers - href: api/XRTK.WindowsMixedReality.Providers.SpatialAwarenessSystem.SpatialObservers.html - commentId: N:XRTK.WindowsMixedReality.Providers.SpatialAwarenessSystem.SpatialObservers - fullName: XRTK.WindowsMixedReality.Providers.SpatialAwarenessSystem.SpatialObservers - nameWithType: XRTK.WindowsMixedReality.Providers.SpatialAwarenessSystem.SpatialObservers -- uid: XRTK.WindowsMixedReality.Providers.SpatialAwarenessSystem.SpatialObservers.WindowsMixedRealitySpatialMeshObserver - name: WindowsMixedRealitySpatialMeshObserver - href: api/XRTK.WindowsMixedReality.Providers.SpatialAwarenessSystem.SpatialObservers.WindowsMixedRealitySpatialMeshObserver.html - commentId: T:XRTK.WindowsMixedReality.Providers.SpatialAwarenessSystem.SpatialObservers.WindowsMixedRealitySpatialMeshObserver - fullName: XRTK.WindowsMixedReality.Providers.SpatialAwarenessSystem.SpatialObservers.WindowsMixedRealitySpatialMeshObserver - nameWithType: WindowsMixedRealitySpatialMeshObserver -- uid: XRTK.WindowsMixedReality.Providers.SpatialAwarenessSystem.SpatialObservers.WindowsMixedRealitySpatialMeshObserver.#ctor(System.String,System.UInt32,XRTK.WindowsMixedReality.Profiles.WindowsMixedRealitySpatialMeshObserverProfile,XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem) - name: WindowsMixedRealitySpatialMeshObserver(String, UInt32, WindowsMixedRealitySpatialMeshObserverProfile, IMixedRealitySpatialAwarenessSystem) - href: api/XRTK.WindowsMixedReality.Providers.SpatialAwarenessSystem.SpatialObservers.WindowsMixedRealitySpatialMeshObserver.html#XRTK_WindowsMixedReality_Providers_SpatialAwarenessSystem_SpatialObservers_WindowsMixedRealitySpatialMeshObserver__ctor_System_String_System_UInt32_XRTK_WindowsMixedReality_Profiles_WindowsMixedRealitySpatialMeshObserverProfile_XRTK_Interfaces_SpatialAwarenessSystem_IMixedRealitySpatialAwarenessSystem_ - commentId: M:XRTK.WindowsMixedReality.Providers.SpatialAwarenessSystem.SpatialObservers.WindowsMixedRealitySpatialMeshObserver.#ctor(System.String,System.UInt32,XRTK.WindowsMixedReality.Profiles.WindowsMixedRealitySpatialMeshObserverProfile,XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem) - fullName: XRTK.WindowsMixedReality.Providers.SpatialAwarenessSystem.SpatialObservers.WindowsMixedRealitySpatialMeshObserver.WindowsMixedRealitySpatialMeshObserver(System.String, System.UInt32, XRTK.WindowsMixedReality.Profiles.WindowsMixedRealitySpatialMeshObserverProfile, XRTK.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem) - nameWithType: WindowsMixedRealitySpatialMeshObserver.WindowsMixedRealitySpatialMeshObserver(String, UInt32, WindowsMixedRealitySpatialMeshObserverProfile, IMixedRealitySpatialAwarenessSystem) -- uid: XRTK.WindowsMixedReality.Providers.SpatialAwarenessSystem.SpatialObservers.WindowsMixedRealitySpatialMeshObserver.#ctor* - name: WindowsMixedRealitySpatialMeshObserver - href: api/XRTK.WindowsMixedReality.Providers.SpatialAwarenessSystem.SpatialObservers.WindowsMixedRealitySpatialMeshObserver.html#XRTK_WindowsMixedReality_Providers_SpatialAwarenessSystem_SpatialObservers_WindowsMixedRealitySpatialMeshObserver__ctor_ - commentId: Overload:XRTK.WindowsMixedReality.Providers.SpatialAwarenessSystem.SpatialObservers.WindowsMixedRealitySpatialMeshObserver.#ctor - isSpec: "True" - fullName: XRTK.WindowsMixedReality.Providers.SpatialAwarenessSystem.SpatialObservers.WindowsMixedRealitySpatialMeshObserver.WindowsMixedRealitySpatialMeshObserver - nameWithType: WindowsMixedRealitySpatialMeshObserver.WindowsMixedRealitySpatialMeshObserver -- uid: XRTK.WindowsMixedReality.Utilities - name: XRTK.WindowsMixedReality.Utilities - href: api/XRTK.WindowsMixedReality.Utilities.html - commentId: N:XRTK.WindowsMixedReality.Utilities - fullName: XRTK.WindowsMixedReality.Utilities - nameWithType: XRTK.WindowsMixedReality.Utilities -- uid: XRTK.WindowsMixedReality.Utilities.WindowsMixedRealityHandDataConverter - name: WindowsMixedRealityHandDataConverter - href: api/XRTK.WindowsMixedReality.Utilities.WindowsMixedRealityHandDataConverter.html - commentId: T:XRTK.WindowsMixedReality.Utilities.WindowsMixedRealityHandDataConverter - fullName: XRTK.WindowsMixedReality.Utilities.WindowsMixedRealityHandDataConverter - nameWithType: WindowsMixedRealityHandDataConverter diff --git a/images/Branding/Roadmap.png b/images/Branding/Roadmap.png deleted file mode 100644 index f649b9720..000000000 Binary files a/images/Branding/Roadmap.png and /dev/null differ diff --git a/images/Branding/XRTK-Background.png b/images/Branding/XRTK-Background.png deleted file mode 100644 index 5e69151c1..000000000 Binary files a/images/Branding/XRTK-Background.png and /dev/null differ diff --git a/images/Branding/XRTK_Logo_1200x250.png b/images/Branding/XRTK_Logo_1200x250.png deleted file mode 100644 index b993c6d04..000000000 Binary files a/images/Branding/XRTK_Logo_1200x250.png and /dev/null differ diff --git a/images/Branding/XRTK_Logo_250x250.png b/images/Branding/XRTK_Logo_250x250.png deleted file mode 100644 index 3dfd79b40..000000000 Binary files a/images/Branding/XRTK_Logo_250x250.png and /dev/null differ diff --git a/images/Branding/XRTK_Logo_948x474.png b/images/Branding/XRTK_Logo_948x474.png deleted file mode 100644 index 69777a5d5..000000000 Binary files a/images/Branding/XRTK_Logo_948x474.png and /dev/null differ diff --git a/images/Branding/XRTK_Logo_sm.png b/images/Branding/XRTK_Logo_sm.png deleted file mode 100644 index 84e87770c..000000000 Binary files a/images/Branding/XRTK_Logo_sm.png and /dev/null differ diff --git a/images/Branding/xrtk_logo.psd b/images/Branding/xrtk_logo.psd deleted file mode 100644 index 2da667033..000000000 Binary files a/images/Branding/xrtk_logo.psd and /dev/null differ diff --git a/images/Branding/xrtk_logo_3kx3k_transparent.png b/images/Branding/xrtk_logo_3kx3k_transparent.png deleted file mode 100644 index 2bc515b7b..000000000 Binary files a/images/Branding/xrtk_logo_3kx3k_transparent.png and /dev/null differ diff --git a/images/Branding/xrtk_logo_black_3kx3k.png b/images/Branding/xrtk_logo_black_3kx3k.png deleted file mode 100644 index cef0833c1..000000000 Binary files a/images/Branding/xrtk_logo_black_3kx3k.png and /dev/null differ diff --git a/images/Branding/xrtk_logo_white_3kx3k.png b/images/Branding/xrtk_logo_white_3kx3k.png deleted file mode 100644 index 1ed06181d..000000000 Binary files a/images/Branding/xrtk_logo_white_3kx3k.png and /dev/null differ diff --git a/images/Configuration/AdditionalServices/AdditionalServiceProvidersList.png b/images/Configuration/AdditionalServices/AdditionalServiceProvidersList.png deleted file mode 100644 index 63ddd46e1..000000000 Binary files a/images/Configuration/AdditionalServices/AdditionalServiceProvidersList.png and /dev/null differ diff --git a/images/Configuration/AdditionalServices/AdditionalServiceProvidersProfile.png b/images/Configuration/AdditionalServices/AdditionalServiceProvidersProfile.png deleted file mode 100644 index 05ac3a183..000000000 Binary files a/images/Configuration/AdditionalServices/AdditionalServiceProvidersProfile.png and /dev/null differ diff --git a/images/Configuration/BoundarySystem/BoundarySystemProfile.png b/images/Configuration/BoundarySystem/BoundarySystemProfile.png deleted file mode 100644 index 276dd3d59..000000000 Binary files a/images/Configuration/BoundarySystem/BoundarySystemProfile.png and /dev/null differ diff --git a/images/Configuration/BoundarySystem/BoundarySystemSettings.png b/images/Configuration/BoundarySystem/BoundarySystemSettings.png deleted file mode 100644 index 4c50a531b..000000000 Binary files a/images/Configuration/BoundarySystem/BoundarySystemSettings.png and /dev/null differ diff --git a/images/Configuration/CameraSystem/CameraSystemOptions.png b/images/Configuration/CameraSystem/CameraSystemOptions.png deleted file mode 100644 index 08e14a92b..000000000 Binary files a/images/Configuration/CameraSystem/CameraSystemOptions.png and /dev/null differ diff --git a/images/Configuration/CameraSystem/CameraSystemProfile.png b/images/Configuration/CameraSystem/CameraSystemProfile.png deleted file mode 100644 index f0b30b4b4..000000000 Binary files a/images/Configuration/CameraSystem/CameraSystemProfile.png and /dev/null differ diff --git a/images/Configuration/CameraSystem/CameraSystemSettings.png b/images/Configuration/CameraSystem/CameraSystemSettings.png deleted file mode 100644 index 0fece47f6..000000000 Binary files a/images/Configuration/CameraSystem/CameraSystemSettings.png and /dev/null differ diff --git a/images/Configuration/Diagnostics/DiagnosticsDataProviders.png b/images/Configuration/Diagnostics/DiagnosticsDataProviders.png deleted file mode 100644 index fb37789bc..000000000 Binary files a/images/Configuration/Diagnostics/DiagnosticsDataProviders.png and /dev/null differ diff --git a/images/Configuration/Diagnostics/DiagnosticsSettings.png b/images/Configuration/Diagnostics/DiagnosticsSettings.png deleted file mode 100644 index 644b5b89a..000000000 Binary files a/images/Configuration/Diagnostics/DiagnosticsSettings.png and /dev/null differ diff --git a/images/Configuration/Diagnostics/DiagnosticsSystemProfile.png b/images/Configuration/Diagnostics/DiagnosticsSystemProfile.png deleted file mode 100644 index 1829c41ae..000000000 Binary files a/images/Configuration/Diagnostics/DiagnosticsSystemProfile.png and /dev/null differ diff --git a/images/Configuration/Diagnostics/DiagnosticsSystemSettings.png b/images/Configuration/Diagnostics/DiagnosticsSystemSettings.png deleted file mode 100644 index f4ce404f5..000000000 Binary files a/images/Configuration/Diagnostics/DiagnosticsSystemSettings.png and /dev/null differ diff --git a/images/Configuration/InputSystem/ConfiguredControllerDataProviders.png b/images/Configuration/InputSystem/ConfiguredControllerDataProviders.png deleted file mode 100644 index ee4202867..000000000 Binary files a/images/Configuration/InputSystem/ConfiguredControllerDataProviders.png and /dev/null differ diff --git a/images/Configuration/InputSystem/ControllerDataProvider.png b/images/Configuration/InputSystem/ControllerDataProvider.png deleted file mode 100644 index e28c22490..000000000 Binary files a/images/Configuration/InputSystem/ControllerDataProvider.png and /dev/null differ diff --git a/images/Configuration/InputSystem/ControllerDataProviderProfile.png b/images/Configuration/InputSystem/ControllerDataProviderProfile.png deleted file mode 100644 index 36d441d26..000000000 Binary files a/images/Configuration/InputSystem/ControllerDataProviderProfile.png and /dev/null differ diff --git a/images/Configuration/InputSystem/ControllerProfile.png b/images/Configuration/InputSystem/ControllerProfile.png deleted file mode 100644 index 6ad560a6e..000000000 Binary files a/images/Configuration/InputSystem/ControllerProfile.png and /dev/null differ diff --git a/images/Configuration/InputSystem/GlobalHandSettings.png b/images/Configuration/InputSystem/GlobalHandSettings.png deleted file mode 100644 index 46d567a66..000000000 Binary files a/images/Configuration/InputSystem/GlobalHandSettings.png and /dev/null differ diff --git a/images/Configuration/InputSystem/GlobalPointerSettings.png b/images/Configuration/InputSystem/GlobalPointerSettings.png deleted file mode 100644 index 7ec37c055..000000000 Binary files a/images/Configuration/InputSystem/GlobalPointerSettings.png and /dev/null differ diff --git a/images/Configuration/InputSystem/InputActions.png b/images/Configuration/InputSystem/InputActions.png deleted file mode 100644 index 4bf68a2be..000000000 Binary files a/images/Configuration/InputSystem/InputActions.png and /dev/null differ diff --git a/images/Configuration/InputSystem/InputSystemProfile.png b/images/Configuration/InputSystem/InputSystemProfile.png deleted file mode 100644 index 45fa00e7c..000000000 Binary files a/images/Configuration/InputSystem/InputSystemProfile.png and /dev/null differ diff --git a/images/Configuration/InputSystem/InputSystemSettings.png b/images/Configuration/InputSystem/InputSystemSettings.png deleted file mode 100644 index 353befd80..000000000 Binary files a/images/Configuration/InputSystem/InputSystemSettings.png and /dev/null differ diff --git a/images/Configuration/InputSystem/ShortcutControllerActionMappings.png b/images/Configuration/InputSystem/ShortcutControllerActionMappings.png deleted file mode 100644 index 70119dcc5..000000000 Binary files a/images/Configuration/InputSystem/ShortcutControllerActionMappings.png and /dev/null differ diff --git a/images/Configuration/MixedRealityProfileCloneButton.png b/images/Configuration/MixedRealityProfileCloneButton.png deleted file mode 100644 index 669682bfc..000000000 Binary files a/images/Configuration/MixedRealityProfileCloneButton.png and /dev/null differ diff --git a/images/Configuration/MixedRealityProfileView.png b/images/Configuration/MixedRealityProfileView.png deleted file mode 100644 index 010fd907e..000000000 Binary files a/images/Configuration/MixedRealityProfileView.png and /dev/null differ diff --git a/images/Configuration/MixedRealityToolkitConfiguration.png b/images/Configuration/MixedRealityToolkitConfiguration.png deleted file mode 100644 index 85792ac5e..000000000 Binary files a/images/Configuration/MixedRealityToolkitConfiguration.png and /dev/null differ diff --git a/images/Configuration/Platforms/PlatformConfigurationDefaults.png b/images/Configuration/Platforms/PlatformConfigurationDefaults.png deleted file mode 100644 index dae7885ee..000000000 Binary files a/images/Configuration/Platforms/PlatformConfigurationDefaults.png and /dev/null differ diff --git a/images/Configuration/Platforms/PlatformSelector.png b/images/Configuration/Platforms/PlatformSelector.png deleted file mode 100644 index 9a10e8dea..000000000 Binary files a/images/Configuration/Platforms/PlatformSelector.png and /dev/null differ diff --git a/images/Configuration/Platforms/PlatformServiceConfigurationProfile.png b/images/Configuration/Platforms/PlatformServiceConfigurationProfile.png deleted file mode 100644 index f5a8476fd..000000000 Binary files a/images/Configuration/Platforms/PlatformServiceConfigurationProfile.png and /dev/null differ diff --git a/images/Configuration/SpatialAwareness/SpatialAwarenessDataProviders.png b/images/Configuration/SpatialAwareness/SpatialAwarenessDataProviders.png deleted file mode 100644 index 77baab05b..000000000 Binary files a/images/Configuration/SpatialAwareness/SpatialAwarenessDataProviders.png and /dev/null differ diff --git a/images/Configuration/SpatialAwareness/SpatialAwarenessSystemProfile.png b/images/Configuration/SpatialAwareness/SpatialAwarenessSystemProfile.png deleted file mode 100644 index 1680e63ba..000000000 Binary files a/images/Configuration/SpatialAwareness/SpatialAwarenessSystemProfile.png and /dev/null differ diff --git a/images/Configuration/SpatialAwareness/SpatialAwarenessSystemSettings.png b/images/Configuration/SpatialAwareness/SpatialAwarenessSystemSettings.png deleted file mode 100644 index 8587334b1..000000000 Binary files a/images/Configuration/SpatialAwareness/SpatialAwarenessSystemSettings.png and /dev/null differ diff --git a/images/Configuration/SpatialAwareness/SpatialMeshObserverOptions.png b/images/Configuration/SpatialAwareness/SpatialMeshObserverOptions.png deleted file mode 100644 index b05b33e53..000000000 Binary files a/images/Configuration/SpatialAwareness/SpatialMeshObserverOptions.png and /dev/null differ diff --git a/images/Configuration/SpatialAwareness/SpatialSurfaceObserverOptions.png b/images/Configuration/SpatialAwareness/SpatialSurfaceObserverOptions.png deleted file mode 100644 index cfb7d2852..000000000 Binary files a/images/Configuration/SpatialAwareness/SpatialSurfaceObserverOptions.png and /dev/null differ diff --git a/images/Configuration/TeleportSystem/TeleportSystemDataProviders.png b/images/Configuration/TeleportSystem/TeleportSystemDataProviders.png deleted file mode 100644 index 2570a5a99..000000000 Binary files a/images/Configuration/TeleportSystem/TeleportSystemDataProviders.png and /dev/null differ diff --git a/images/Configuration/TeleportSystem/TeleportSystemProfile.png b/images/Configuration/TeleportSystem/TeleportSystemProfile.png deleted file mode 100644 index e4326085f..000000000 Binary files a/images/Configuration/TeleportSystem/TeleportSystemProfile.png and /dev/null differ diff --git a/images/Configuration/TeleportSystem/TeleportSystemSettings.png b/images/Configuration/TeleportSystem/TeleportSystemSettings.png deleted file mode 100644 index 0a653bfcd..000000000 Binary files a/images/Configuration/TeleportSystem/TeleportSystemSettings.png and /dev/null differ diff --git a/images/Configuration/TeleportSystem/TeleportValidationOptions.png b/images/Configuration/TeleportSystem/TeleportValidationOptions.png deleted file mode 100644 index daeaa81c6..000000000 Binary files a/images/Configuration/TeleportSystem/TeleportValidationOptions.png and /dev/null differ diff --git a/images/DownloadingTheXRTK/LocatePackagesFolder.png b/images/DownloadingTheXRTK/LocatePackagesFolder.png deleted file mode 100644 index e96f2ebaa..000000000 Binary files a/images/DownloadingTheXRTK/LocatePackagesFolder.png and /dev/null differ diff --git a/images/DownloadingTheXRTK/PackageManager.png b/images/DownloadingTheXRTK/PackageManager.png deleted file mode 100644 index 6afe10928..000000000 Binary files a/images/DownloadingTheXRTK/PackageManager.png and /dev/null differ diff --git a/images/DownloadingTheXRTK/ScopedRegistry.png b/images/DownloadingTheXRTK/ScopedRegistry.png deleted file mode 100644 index b20282119..000000000 Binary files a/images/DownloadingTheXRTK/ScopedRegistry.png and /dev/null differ diff --git a/images/DownloadingTheXRTK/SymbolicLinkWizard.png b/images/DownloadingTheXRTK/SymbolicLinkWizard.png deleted file mode 100644 index d275df74c..000000000 Binary files a/images/DownloadingTheXRTK/SymbolicLinkWizard.png and /dev/null differ diff --git a/images/DownloadingTheXRTK/SymbolicLinks.png b/images/DownloadingTheXRTK/SymbolicLinks.png deleted file mode 100644 index d487b85b3..000000000 Binary files a/images/DownloadingTheXRTK/SymbolicLinks.png and /dev/null differ diff --git a/images/DownloadingTheXRTK/UnityPackageManager-Advanced.jpg b/images/DownloadingTheXRTK/UnityPackageManager-Advanced.jpg deleted file mode 100644 index 905f5411c..000000000 Binary files a/images/DownloadingTheXRTK/UnityPackageManager-Advanced.jpg and /dev/null differ diff --git a/images/DownloadingTheXRTK/UnityPackageManager-MyRegistries.jpg b/images/DownloadingTheXRTK/UnityPackageManager-MyRegistries.jpg deleted file mode 100644 index 975b488b1..000000000 Binary files a/images/DownloadingTheXRTK/UnityPackageManager-MyRegistries.jpg and /dev/null differ diff --git a/images/DownloadingTheXRTK/UnityPackageManager-ScopedRegistries.jpg b/images/DownloadingTheXRTK/UnityPackageManager-ScopedRegistries.jpg deleted file mode 100644 index 5291faf30..000000000 Binary files a/images/DownloadingTheXRTK/UnityPackageManager-ScopedRegistries.jpg and /dev/null differ diff --git a/images/DownloadingTheXRTK/UnityPackageManager-XRTKRegistries.jpg b/images/DownloadingTheXRTK/UnityPackageManager-XRTKRegistries.jpg deleted file mode 100644 index 955afa4fc..000000000 Binary files a/images/DownloadingTheXRTK/UnityPackageManager-XRTKRegistries.jpg and /dev/null differ diff --git a/images/DownloadingTheXRTK/XRTKAutoInstallAsset.png b/images/DownloadingTheXRTK/XRTKAutoInstallAsset.png deleted file mode 100644 index ec7d38886..000000000 Binary files a/images/DownloadingTheXRTK/XRTKAutoInstallAsset.png and /dev/null differ diff --git a/images/DownloadingTheXRTK/XRTKPackageList.png b/images/DownloadingTheXRTK/XRTKPackageList.png deleted file mode 100644 index 3160639a9..000000000 Binary files a/images/DownloadingTheXRTK/XRTKPackageList.png and /dev/null differ diff --git a/images/FAQ/DefaultCameraSettings.png b/images/FAQ/DefaultCameraSettings.png deleted file mode 100644 index 679b8d768..000000000 Binary files a/images/FAQ/DefaultCameraSettings.png and /dev/null differ diff --git a/images/GettingStarted/MixedRealityBuildWindow.png b/images/GettingStarted/MixedRealityBuildWindow.png deleted file mode 100644 index 0be104035..000000000 Binary files a/images/GettingStarted/MixedRealityBuildWindow.png and /dev/null differ diff --git a/images/GettingStarted/MixedRealityConfigure.png b/images/GettingStarted/MixedRealityConfigure.png deleted file mode 100644 index 365913217..000000000 Binary files a/images/GettingStarted/MixedRealityConfigure.png and /dev/null differ diff --git a/images/GettingStarted/MixedRealityScene.png b/images/GettingStarted/MixedRealityScene.png deleted file mode 100644 index f725d9ab5..000000000 Binary files a/images/GettingStarted/MixedRealityScene.png and /dev/null differ diff --git a/images/GettingStarted/NewPlatformPrompt.png b/images/GettingStarted/NewPlatformPrompt.png deleted file mode 100644 index 38ed17029..000000000 Binary files a/images/GettingStarted/NewPlatformPrompt.png and /dev/null differ diff --git a/images/GettingStarted/UnityPackageManager-XRTK.png b/images/GettingStarted/UnityPackageManager-XRTK.png deleted file mode 100644 index 7b8d73986..000000000 Binary files a/images/GettingStarted/UnityPackageManager-XRTK.png and /dev/null differ diff --git a/images/GettingStarted/XR_SDK_Manager.png b/images/GettingStarted/XR_SDK_Manager.png deleted file mode 100644 index dbe73493b..000000000 Binary files a/images/GettingStarted/XR_SDK_Manager.png and /dev/null differ diff --git a/images/Sponsors/vim_logo.jpg b/images/Sponsors/vim_logo.jpg deleted file mode 100644 index 4ad09a400..000000000 Binary files a/images/Sponsors/vim_logo.jpg and /dev/null differ diff --git a/images/TemplateGeneration/BranchMetaFiles.png b/images/TemplateGeneration/BranchMetaFiles.png deleted file mode 100644 index bd5bb9e1b..000000000 Binary files a/images/TemplateGeneration/BranchMetaFiles.png and /dev/null differ diff --git a/images/TemplateGeneration/BranchProtections-01.png b/images/TemplateGeneration/BranchProtections-01.png deleted file mode 100644 index 1c85130a2..000000000 Binary files a/images/TemplateGeneration/BranchProtections-01.png and /dev/null differ diff --git a/images/TemplateGeneration/BranchProtections-02.png b/images/TemplateGeneration/BranchProtections-02.png deleted file mode 100644 index a4c49f539..000000000 Binary files a/images/TemplateGeneration/BranchProtections-02.png and /dev/null differ diff --git a/images/TemplateGeneration/CloneLocalRepo.png b/images/TemplateGeneration/CloneLocalRepo.png deleted file mode 100644 index cd349c787..000000000 Binary files a/images/TemplateGeneration/CloneLocalRepo.png and /dev/null differ diff --git a/images/TemplateGeneration/CloneRepo.png b/images/TemplateGeneration/CloneRepo.png deleted file mode 100644 index c4ecc166d..000000000 Binary files a/images/TemplateGeneration/CloneRepo.png and /dev/null differ diff --git a/images/TemplateGeneration/CommitToMaster.png b/images/TemplateGeneration/CommitToMaster.png deleted file mode 100644 index 6be45c5e1..000000000 Binary files a/images/TemplateGeneration/CommitToMaster.png and /dev/null differ diff --git a/images/TemplateGeneration/CommitToMetaFiles.png b/images/TemplateGeneration/CommitToMetaFiles.png deleted file mode 100644 index a409568d0..000000000 Binary files a/images/TemplateGeneration/CommitToMetaFiles.png and /dev/null differ diff --git a/images/TemplateGeneration/DefaultBranch.png b/images/TemplateGeneration/DefaultBranch.png deleted file mode 100644 index ddfdc9023..000000000 Binary files a/images/TemplateGeneration/DefaultBranch.png and /dev/null differ diff --git a/images/TemplateGeneration/DevelopmentBranch.png b/images/TemplateGeneration/DevelopmentBranch.png deleted file mode 100644 index c2ea36ef3..000000000 Binary files a/images/TemplateGeneration/DevelopmentBranch.png and /dev/null differ diff --git a/images/TemplateGeneration/DevelopmentCommit.png b/images/TemplateGeneration/DevelopmentCommit.png deleted file mode 100644 index d4f464e6d..000000000 Binary files a/images/TemplateGeneration/DevelopmentCommit.png and /dev/null differ diff --git a/images/TemplateGeneration/DisableFeatures.png b/images/TemplateGeneration/DisableFeatures.png deleted file mode 100644 index 4b7465c3f..000000000 Binary files a/images/TemplateGeneration/DisableFeatures.png and /dev/null differ diff --git a/images/TemplateGeneration/LaunchUnity.png b/images/TemplateGeneration/LaunchUnity.png deleted file mode 100644 index d97cd5d5c..000000000 Binary files a/images/TemplateGeneration/LaunchUnity.png and /dev/null differ diff --git a/images/TemplateGeneration/MergeButtonFeatures.png b/images/TemplateGeneration/MergeButtonFeatures.png deleted file mode 100644 index f307358ad..000000000 Binary files a/images/TemplateGeneration/MergeButtonFeatures.png and /dev/null differ diff --git a/images/TemplateGeneration/NewPipeline-01.png b/images/TemplateGeneration/NewPipeline-01.png deleted file mode 100644 index b229a0feb..000000000 Binary files a/images/TemplateGeneration/NewPipeline-01.png and /dev/null differ diff --git a/images/TemplateGeneration/NewPipeline-02.png b/images/TemplateGeneration/NewPipeline-02.png deleted file mode 100644 index ebd1dbb9b..000000000 Binary files a/images/TemplateGeneration/NewPipeline-02.png and /dev/null differ diff --git a/images/TemplateGeneration/NewPipeline-03.png b/images/TemplateGeneration/NewPipeline-03.png deleted file mode 100644 index 0669dbf57..000000000 Binary files a/images/TemplateGeneration/NewPipeline-03.png and /dev/null differ diff --git a/images/TemplateGeneration/NewPipeline-04.png b/images/TemplateGeneration/NewPipeline-04.png deleted file mode 100644 index eba0f11c7..000000000 Binary files a/images/TemplateGeneration/NewPipeline-04.png and /dev/null differ diff --git a/images/TemplateGeneration/NewPipeline-05.png b/images/TemplateGeneration/NewPipeline-05.png deleted file mode 100644 index be0de2147..000000000 Binary files a/images/TemplateGeneration/NewPipeline-05.png and /dev/null differ diff --git a/images/TemplateGeneration/NewPipeline-06.png b/images/TemplateGeneration/NewPipeline-06.png deleted file mode 100644 index 996dff542..000000000 Binary files a/images/TemplateGeneration/NewPipeline-06.png and /dev/null differ diff --git a/images/TemplateGeneration/NewPipeline-07.png b/images/TemplateGeneration/NewPipeline-07.png deleted file mode 100644 index 10de8e5cc..000000000 Binary files a/images/TemplateGeneration/NewPipeline-07.png and /dev/null differ diff --git a/images/TemplateGeneration/NewPipeline-08.png b/images/TemplateGeneration/NewPipeline-08.png deleted file mode 100644 index ada9605be..000000000 Binary files a/images/TemplateGeneration/NewPipeline-08.png and /dev/null differ diff --git a/images/TemplateGeneration/NewRepoButton.png b/images/TemplateGeneration/NewRepoButton.png deleted file mode 100644 index 68c1bc97b..000000000 Binary files a/images/TemplateGeneration/NewRepoButton.png and /dev/null differ diff --git a/images/TemplateGeneration/NewRepoSettings.png b/images/TemplateGeneration/NewRepoSettings.png deleted file mode 100644 index 4ca656cf1..000000000 Binary files a/images/TemplateGeneration/NewRepoSettings.png and /dev/null differ diff --git a/images/TemplateGeneration/ProjectRootExplorer.png b/images/TemplateGeneration/ProjectRootExplorer.png deleted file mode 100644 index a04087a62..000000000 Binary files a/images/TemplateGeneration/ProjectRootExplorer.png and /dev/null differ diff --git a/images/TemplateGeneration/PullRequest-01.png b/images/TemplateGeneration/PullRequest-01.png deleted file mode 100644 index 9b34c3c15..000000000 Binary files a/images/TemplateGeneration/PullRequest-01.png and /dev/null differ diff --git a/images/TemplateGeneration/PullRequest-02.png b/images/TemplateGeneration/PullRequest-02.png deleted file mode 100644 index a966b7722..000000000 Binary files a/images/TemplateGeneration/PullRequest-02.png and /dev/null differ diff --git a/images/TemplateGeneration/PullRequest-03.png b/images/TemplateGeneration/PullRequest-03.png deleted file mode 100644 index e76a49563..000000000 Binary files a/images/TemplateGeneration/PullRequest-03.png and /dev/null differ diff --git a/images/TemplateGeneration/RunPowershell.png b/images/TemplateGeneration/RunPowershell.png deleted file mode 100644 index 567114df9..000000000 Binary files a/images/TemplateGeneration/RunPowershell.png and /dev/null differ diff --git a/XRTK-Core/Packages/com.xrtk.core/package.json b/package.json similarity index 96% rename from XRTK-Core/Packages/com.xrtk.core/package.json rename to package.json index a3a05940b..eca66107c 100644 --- a/XRTK-Core/Packages/com.xrtk.core/package.json +++ b/package.json @@ -10,7 +10,7 @@ "Mixed Reality", "DI" ], - "version": "0.3.5", + "version": "0.3.6", "unity": "2021.3", "license": "MIT", "repository": { @@ -27,4 +27,4 @@ "com.unity.editorcoroutines": "1.0.0", "com.unity.addressables": "1.19.19" } -} \ No newline at end of file +} diff --git a/XRTK-Core/Packages/com.xrtk.core/package.json.meta b/package.json.meta similarity index 100% rename from XRTK-Core/Packages/com.xrtk.core/package.json.meta rename to package.json.meta diff --git a/toc.yml b/toc.yml deleted file mode 100644 index 3108ce079..000000000 --- a/toc.yml +++ /dev/null @@ -1,10 +0,0 @@ -- name: Articles - href: articles/ - topicHref: articles/00-GettingStarted.md -- name: API Reference - href: api/ - topicHref: api/index.md -- name: Source Code - href: https://github.com/XRTK/XRTK-Core -- name: Releases - href: https://github.com/XRTK/XRTK-Core/releases