You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
687 B
C#
24 lines
687 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace Autohand{
|
|
[RequireComponent(typeof(Hand)), DefaultExecutionOrder(10000)]
|
|
public class HandAdvancedOptions : MonoBehaviour{
|
|
[Tooltip("Meant for things childed under the Hand. These transforms will not be set to the hand layer on start")]
|
|
public List<Collider> ignoreHandCollider = new List<Collider>();
|
|
|
|
|
|
Hand hand;
|
|
|
|
void Awake(){
|
|
hand = GetComponent<Hand>();
|
|
}
|
|
|
|
void Start() {
|
|
for (int i = 0; i < ignoreHandCollider.Count; i++)
|
|
hand.HandIgnoreCollider(ignoreHandCollider[i], true);
|
|
}
|
|
|
|
}
|
|
} |