-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f55acb4
commit 06d521d
Showing
1 changed file
with
43 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,47 @@ | ||
# | ||
# ██████ ██ ██████ ██████ ██ ███████ ████████ ███████ ██████ ██ ██ | ||
# ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | ||
# ██ ███ ██ ██ ███ ██ ███ ██ █████ ██ █████ ██ ███████ | ||
# ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | ||
# ██████ ██ ██████ ██████ ███████ ███████ ██ ███████ ██████ ██ ██ | ||
# | ||
# OSC Router Configuration | ||
# | ||
[Setup] | ||
# | ||
# Port listening for OSC [Default 9001] | ||
# | ||
port_rx = 9001 | ||
# | ||
# IP Address of Headpat Device | ||
device_ips = GIGGLE.TECH.DEVICE.IP | ||
# | ||
# Unity Proximity parameter[s] | ||
proximity_parameters_multi = proximity_01 | ||
# | ||
max_speed_parameter = max_speed | ||
# | ||
advanced_mode = true | ||
# | ||
[Config] | ||
# | ||
# Min Speed of Haptic Motor [5-100] | ||
min_speed = 2 | ||
# | ||
# Max Speed of Haptic Motor [Recommend 25] | ||
max_speed = 25 | ||
# | ||
# Max Speed Scalar [10-100] | ||
max_speed_scale = 100 | ||
# | ||
# OSC Timeout [seconds] | ||
timeout = 5 | ||
|
||
# Giggle Tech OSC Router Configuration | ||
|
||
[Setup] | ||
# Port listening for OSC (Default: 9001) | ||
port_rx = 9001 | ||
|
||
# IP Addresses of Headpat Devices | ||
# Enter your device IP address here | ||
device_ips = YOUR.DEVICE.IP.HERE | ||
|
||
# Example of how to enter multiple device IPs: | ||
# device_ips = 192.168.1.69 192.168.1.70 192.168.1.99 192.168.1.72 | ||
|
||
# Unity Proximity Parameters | ||
# Specify the Unity proximity parameter | ||
#proximity_parameters_multi = proximity_01 | ||
|
||
# Example of how to use multiple devices: | ||
# proximity_parameters_multi = proximity_01 proximity_02 proximity_03 proximity_04 | ||
|
||
# Maximum Speed Parameter | ||
max_speed_parameter = max_speed | ||
|
||
# Velocity Control Mode (True = Velocity / False = Proximity) | ||
# Note: This mode is not tested for multiple devices. Refer to Discord for more information. | ||
# Adjustments can be made in the advanced section below. | ||
advanced_mode = false | ||
|
||
[Config] | ||
# Minimum Speed of Haptic Motor (5-100) | ||
min_speed = 2 | ||
|
||
# Maximum Speed of Haptic Motor (Recommended: 5-25) | ||
max_speed = 25 | ||
|
||
# Maximum Speed Scalar (10-100) | ||
max_speed_scale = 100 | ||
|
||
# OSC Timeout (seconds) | ||
timeout = 5 | ||
|
||
[Advanced] | ||
# Velocity Control Parameters | ||
# Adjust these parameters to achieve the desired effect. | ||
outer_proximity = 0 | ||
inner_proximity = 0.7 | ||
velocity_scalar = 20 |