Skip to content

Instantly share code, notes, and snippets.

@jakevsrobots
Created September 29, 2014 14:21
Show Gist options
  • Save jakevsrobots/238958399e54fa6dc726 to your computer and use it in GitHub Desktop.
Save jakevsrobots/238958399e54fa6dc726 to your computer and use it in GitHub Desktop.
PrefabGenerator
using UnityEngine;
using System.Collections;
public class PrefabGenerator : MonoBehaviour
{
public GameObject prefab;
public Transform position;
public string triggerTag;
void OnTriggerEnter(Collider other)
{
if(other.tag == triggerTag)
Instantiate(prefab, position.position, Quaternion.identity);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment