Skip to content

Instantly share code, notes, and snippets.

@tsubaki
Created January 8, 2019 14:21
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 tsubaki/94c07795cdf87863a7294f697577060c to your computer and use it in GitHub Desktop.
Save tsubaki/94c07795cdf87863a7294f697577060c to your computer and use it in GitHub Desktop.
using UnityEngine;
using UnityEngine.Experimental.Input;
public class MyInputSampleTest : MonoBehaviour, ISampleActions
{
[SerializeField] MyInputSample input;
private void Awake()
{
input.Sample.SetCallbacks(this);
}
private void OnEnable()
{
input.Enable();
}
private void OnDisable()
{
input.Disable();
}
public void OnFire(InputAction.CallbackContext context)
{
Debug.Log("Fire");
}
public void OnMousePosiiton(InputAction.CallbackContext context)
{
var value = context.ReadValue<Vector2>();
Debug.Log(value);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment