Liberi
An exergame built for kids with CP!
TimeLimit.cs
1 using UnityEngine;
2 using System.Collections;
3 using System.Collections.Generic;
4 using Janus;
5 using System.Linq;
6 using System.Reflection;
7 using System;
8 
12 [AddComponentMenu("Liberi/Time Limit")]
13 [Script(ScriptRole.Logic)]
14 public class TimeLimit : MonoBehaviour
15 {
16  public float Duration;
17 
18  void OnSpawn()
19  {
20  if (Duration > 0f)
21  StartCoroutine(WaitForDespawn());
22  }
23 
24  IEnumerator WaitForDespawn()
25  {
26  yield return new WaitForSeconds(Duration);
27  Sync.Despawn(this);
28  }
29 }
static void Despawn(GameObject go)
Despawn the given object.
Definition: Sync.Static.cs:779
A component that automatically despawns the object after n seconds.
Definition: TimeLimit.cs:14
This class server two main functions: 1) As a MonoBehaviour, it allows for network synchronization of...
Definition: Sync.cs:13