mirror of
https://github.com/nothke/quality-control.git
synced 2025-08-31 23:53:44 +00:00
Added interaction, hand, rigidbody dragging, picking up hammer
This commit is contained in:
13
Assets/Scripts/Interactables/InteractableTest.cs
Normal file
13
Assets/Scripts/Interactables/InteractableTest.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
using Nothke.Interaction;
|
||||
|
||||
public class InteractableTest : Interactable
|
||||
{
|
||||
public override void Use(InteractionController im)
|
||||
{
|
||||
base.Use(im);
|
||||
Debug.Log("works!");
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user