Skip to content
This repository was archived by the owner on Mar 9, 2023. It is now read-only.

Commit 5df7c88

Browse files
committed
Merge branch 'master' of github.com:0V/RxVRTK
2 parents 4d72c32 + f27a431 commit 5df7c88

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# RxVRTK
2+
Extensions for converting all VRTK event to UniRx stream
3+
4+
## Usage
5+
```
6+
VRTK_ControllerEvents controllerEvents = GetComponent<VRTK_ControllerEvents>();
7+
8+
controllerEvents.TriggerPressedAsObservable()
9+
.Subscribe(_ =>
10+
{
11+
Debug.Log("Trigger Pressed!");
12+
});
13+
14+
```

0 commit comments

Comments
 (0)