11 lines
214 B
C#
11 lines
214 B
C#
using UnityEngine;
|
|
|
|
namespace VarjoExample
|
|
{
|
|
[RequireComponent(typeof(Rigidbody))]
|
|
public class Interactable : MonoBehaviour
|
|
{
|
|
[HideInInspector]
|
|
public Hand activeHand = null;
|
|
}
|
|
} |