Skip to content

Instantly share code, notes, and snippets.

@SatoshiRobatoFujimoto
Last active August 29, 2018 03:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SatoshiRobatoFujimoto/85cea672f27567484ff322457f60a581 to your computer and use it in GitHub Desktop.
Save SatoshiRobatoFujimoto/85cea672f27567484ff322457f60a581 to your computer and use it in GitHub Desktop.
ガチラボ vol.8
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using HoloToolkit.Unity.InputModule;
public class DrawingManager : MonoBehaviour, ISourceStateHandler, IInputHandler
{
// Use this for initialization
void Start()
{
InputManager.Instance.PushFallbackInputHandler(gameObject);
}
// Update is called once per frame
void Update()
{
}
public void OnInputDown(InputEventData eventData)
{
Debug.Log("Down");
}
public void OnInputUp(InputEventData eventData)
{
Debug.Log("Up");
}
public void OnSourceDetected(SourceStateEventData eventData)
{
Debug.Log("Detected");
}
public void OnSourceLost(SourceStateEventData eventData)
{
Debug.Log("Lost");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment