Firstborn/Library/PackageCache/com.unity.inputsystem@1.5.1/Samples~/DocsExamples/ExampleActionsAssetCsWrappe...
Schaken-Mods 9092858a58 updated to the latest editor
I updated everything to the latest Unity Editor. Also realized I had the wrong shaders on my hairs, those are fixed and the hairs look MUCH better!
2023-05-07 17:43:11 -05:00

40 lines
925 B
C#

using UnityEngine;
using UnityEngine.InputSystem;
public class DocsExampleActionsAssetCsWrapper : MonoBehaviour
{
// this field will contain the actions wrapper instance
ExampleActions actions;
void Awake()
{
// instantiate the actions wrapper class
actions = new ExampleActions();
// for the "jump" action, we add a callback method for when it is performed
actions.gameplay.jump.performed += OnJump;
}
void Update()
{
// our update loop polls the "move" action value each frame
Vector2 moveVector = actions.gameplay.move.ReadValue<Vector2>();
}
private void OnJump(InputAction.CallbackContext context)
{
// this is the "jump" action callback method
Debug.Log("Jump!");
}
void OnEnable()
{
actions.gameplay.Enable();
}
void OnDisable()
{
actions.gameplay.Disable();
}
}