14 lines
280 B
C#
14 lines
280 B
C#
using UnityEngine;
|
|
|
|
namespace VRCPrefabs.CyanEmu
|
|
{
|
|
[AddComponentMenu("")]
|
|
public class CyanEmuSpawnHelper : MonoBehaviour
|
|
{
|
|
public void ReapObject()
|
|
{
|
|
this.Log("Reaping Object " + name);
|
|
Destroy(gameObject);
|
|
}
|
|
}
|
|
} |