AR + GPS Location
3.0.0
Main Page
Related Pages
Packages
Packages
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
a
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
x
Functions
c
d
e
f
g
h
l
n
o
p
r
s
t
u
v
Variables
a
c
d
h
i
l
m
o
p
s
t
u
x
Properties
Events
Files
File List
▼
AR + GPS Location
3.5.1
Unity AR+GPS Location
►
Packages
►
Classes
▼
Files
▼
File List
▼
Assets
▼
ARLocation
►
Editor
▼
Scripts
►
ARSession
►
Components
►
Location
►
Math
►
ScriptableObjects
▼
Utils
ConditionalPropertyAttribute.cs
CreatePointOfInterestTextMeshes.cs
DebugCanvas.cs
DevCameraController.cs
FaceCamera.cs
FadeOutTextMesh.cs
FollowCameraPosition.cs
Logger.cs
Misc.cs
MovingAveragePosition.cs
RotateObject.cs
SelectScene.cs
ShowHideSelfOnPointerClick.cs
Singleton.cs
SmoothMove.cs
ARLocation.cs
•
All
Classes
Namespaces
Functions
Variables
Properties
Events
Pages
ShowHideSelfOnPointerClick.cs
1
using
UnityEngine;
2
3
namespace
ARLocation.Utils
4
{
5
6
public
class
ShowHideSelfOnPointerClick
: MonoBehaviour
7
{
8
private
Canvas canvas;
9
10
// Use this for initialization
11
void
Start()
12
{
13
canvas = GetComponent<Canvas>();
14
}
15
16
// Update is called once per frame
17
void
Update()
18
{
19
if
(Input.GetMouseButtonDown(0))
20
{
21
canvas.enabled = !canvas.enabled;
22
}
23
}
24
}
25
}
ARLocation.Utils
Definition:
CreatePointOfInterestTextMeshes.cs:9
ARLocation.Utils.ShowHideSelfOnPointerClick
Definition:
ShowHideSelfOnPointerClick.cs:7
Assets
ARLocation
Scripts
Utils
ShowHideSelfOnPointerClick.cs
Generated by
1.8.20