Liberi
An exergame built for kids with CP!
InvisibleWall.cs
1 using UnityEngine;
2 using System;
3 using System.Collections;
4 using System.Collections.Generic;
5 using System.Linq;
6 using System.Net;
7 using Lidgren.Network;
8 
12 [AddComponentMenu("Liberi/Invisible Wall")]
13 public class InvisibleWall : MonoBehaviour
14 {
18  public Color Color = new Color(1f, .5f, 1f, .5f);
19 
20  void OnDrawGizmos ()
21  {
22  Gizmos.color = Color;
23 
24  if (collider != null)
25  Gizmos.DrawCube(collider.bounds.center, collider.bounds.size);
26  else Gizmos.DrawCube(transform.position, transform.localScale);
27  }
28 }
An invisible wall component which draws a gizmo in the Scene view.
Color Color
The gizmo color.