10000 Fix WindowsMixedRealityControllerDataProvider name by FejZa · Pull Request #49 · XRTK/com.xrtk.wmr · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
This repository was archived by the owner on May 13, 2022. It is now read-only.

Fix WindowsMixedRealityControllerDataProvider name #49

Merged
merged 2 commits into from
8000 Jan 16, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ namespace XRTK.WindowsMixedReality.Controllers
/// <summary>
/// The device manager for Windows Mixed Reality controllers.
/// </summary>
public class WindowsMixedRealityDataProvider : BaseControllerDataProvider
public class WindowsMixedRealityControllerDataProvider : BaseControllerDataProvider
{
/// <summary>
/// Constructor.
/// </summary>
/// <param name="name"></param>
/// <param name="priority"></param>
/// <param name="profile"></param>
public WindowsMixedRealityDataProvider(string name, uint priority, WindowsMixedRealityControllerDataProviderProfile profile)
public WindowsMixedRealityControllerDataProvider(string name, uint priority, WindowsMixedRealityControllerDataProviderProfile profile)
: base(name, priority, profile)
{
#if UNITY_WSA
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"mixed",
"reality"
],
"version": "0.1.9",
"version": "0.1.10",
"unity": "2019.1",
"license": "MIT",
"author": "XRTK Team (https://github.com/XRTK)",
Expand Down
0