1
0
mirror of https://github.com/xiaopeng12138/MaiDXR.git synced 2024-12-02 22:37:16 +01:00
MaiDXR/Assets/Scripts/TouchToSerial.cs

35 lines
649 B
C#
Raw Permalink Normal View History

2022-01-05 19:44:30 +01:00
using System;
using System.Runtime.InteropServices;
using System.Collections;
using UnityEngine;
public class TouchToSerial : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
//Serial.SendTouch();
2022-01-05 19:44:30 +01:00
}
public int Area;
2022-01-05 20:38:10 +01:00
private void OnTriggerEnter(Collider other)
2022-01-05 19:44:30 +01:00
{
Serial.ChangeTouch((int)Area, true);
Serial.SendTouch();
}
2022-01-05 20:38:10 +01:00
private void OnTriggerExit(Collider other)
2022-01-05 19:44:30 +01:00
{
Serial.ChangeTouch((int)Area, false);
Serial.SendTouch();
//Serial.ResetTouch();
}
}