Liberi
An exergame built for kids with CP!
Main Page
Classes
Files
File List
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
}
InvisibleWall
An invisible wall component which draws a gizmo in the Scene view.
Definition:
InvisibleWall.cs:13
System
InvisibleWall.Color
Color Color
The gizmo color.
Definition:
InvisibleWall.cs:18
UnityEngine
Liberi
Assets
Scripts
Components
InvisibleWall.cs
Generated by
1.8.10