Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using UnityEngine;
- public class TUIOServerLauncher : MonoBehaviour
- {
- public bool Engage;
- public string param = "TrippleA";
- void Start()
- {
- if (Engage)
- {
- var path = Application.dataPath + "/Touch2Tuio.exe " + param;
- Application.OpenURL(path);
- //guiText.text = path;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment