forked from Shardstone/trail-into-darkness
19 lines
420 B
C#
19 lines
420 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace Jovian.Utilities {
|
|
public class CollisionExtractor : MonoBehaviour {
|
|
|
|
public GameObject root;
|
|
public GameObject targetPrefab;
|
|
|
|
// Script only used inside the editor
|
|
private void Awake() {
|
|
if(!Application.isEditor) {
|
|
Destroy(this);
|
|
}
|
|
}
|
|
}
|
|
}
|