Skip to content

Instantly share code, notes, and snippets.

@zorawar87
Last active August 29, 2015 14:26
Show Gist options
  • Save zorawar87/b4be0e4311058867e92a to your computer and use it in GitHub Desktop.
Save zorawar87/b4be0e4311058867e92a to your computer and use it in GitHub Desktop.
using UnityEngine;
using System.Collections;
using Leap;
public class Instantiation : MonoBehaviour {
//public Rigidbody projectile;
public GameObject projectile;
public int limiter=5;
public float boxSeparation =4f;
HandController leap;
HandModel[] hands;
//Controller controller;
//Rigidbody clone;
void Start(){
leap = GetComponent<HandController> ();
/*controller.EnableGesture(Gesture.GestureType.TYPE_SWIPE);
controller.Config.SetFloat("Gesture.Swipe.MinLength", 20.0f);
controller.Config.SetFloat("Gesture.Swipe.MinVelocity", 50f);
controller.Config.Save();*/
}
void Update() {
HandModel[] hands = leap.GetAllGraphicsHands ();
CreateClones (hands);
}
void CreateClones(HandModel[] hands){
//CloneCode
GameObject[] clones = GameObject.FindGameObjectsWithTag("Clone");
if (clones.Length < limiter) {
for (int i=0; i<=clones.Length;i++){
//!!!!GETS POSITION OF FIRST HAND!!!!!
Vector3 position = hands[0].GetPalmPosition ();
if(i != 0){
Debug.Log("i!=0");
if (
(clones[i].transform.position.x <= clones[i-1].transform.position.x *boxSeparation) &&
(clones[i].transform.position.y <= clones[i-1].transform.position.y *boxSeparation) &&
(clones[i].transform.position.z <= clones[i-1].transform.position.z *boxSeparation)
){
Debug.Log ("Shouldn't work");
}
} else{
print ("FromInstant");
Instantiate (projectile, position, transform.rotation);
}
}
Debug.Log ("done");
}else{
Debug.Log ("fail"+GameObject.FindGameObjectsWithTag("Clone").Length);
for(int i=0; i<limiter;i++){
Destroy(GameObject.FindGameObjectWithTag("Clone"));
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment