You can not 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
858 B
24 lines
858 B
// --------------------------------------------------------------------------------------------------------------------
|
|
// <copyright file="OnStartDelete.cs" company="Exit Games GmbH">
|
|
// Part of: Photon Unity Utilities,
|
|
// </copyright>
|
|
// <summary>
|
|
// This component will destroy the GameObject it is attached to (in Start()).
|
|
// </summary>
|
|
// <author>developer@exitgames.com</author>
|
|
// --------------------------------------------------------------------------------------------------------------------
|
|
|
|
using UnityEngine;
|
|
|
|
namespace Photon.Chat.UtilityScripts
|
|
{
|
|
/// <summary>This component will destroy the GameObject it is attached to (in Start()).</summary>
|
|
public class OnStartDelete : MonoBehaviour
|
|
{
|
|
// Use this for initialization
|
|
private void Start()
|
|
{
|
|
Destroy(this.gameObject);
|
|
}
|
|
}
|
|
} |