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
// This code is licensed under MIT license | |
using UnityEngine; | |
public class OscEyeTrackingSenderExample : MonoBehaviour | |
{ | |
public string OscTargetIp = "127.0.0.1"; | |
public int OscTargetPort = 9000; | |
public Transform EyeRoot; | |
public Transform EyeTarget; |
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
// This code is licensed under MIT license | |
using UnityEngine; | |
public class OscTrackerSenderExample : MonoBehaviour | |
{ | |
public float UserHeightInMeters = 1.7f; | |
public string OscTargetIp = "127.0.0.1"; | |
public int OscTargetPort = 9000; | |
public Transform HeadReference; |