Skip to content

Commit

Permalink
merged with develop
Browse files Browse the repository at this point in the history
  • Loading branch information
smnwttbr committed Jun 6, 2024
1 parent e71dfa0 commit 7518fd6
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
using UnityEngine.InputSystem;
using UnityEngine.InputSystem.Layouts;
using UnityEngine.InputSystem.Controls;
using UnityEngine;

namespace UnityEngine.InputSystem.Interactions
{
public class SwipeInteraction : IInputInteraction
{
[RuntimeInitializeOnLoadMethod]
public static void Init()
{
Debug.Log("SwipeInteraction Init");
InputSystem.RegisterInteraction<SwipeInteraction>();
}

public void Process(ref InputInteractionContext context)
{
Debug.Log("Swipe.Process");
}

public void Reset()
{
}
}
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 7518fd6

Please sign in to comment.