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
•
All
Classes
Namespaces
Functions
Variables
Properties
Events
Pages
ARLocationProviderInspector.cs
1
using
UnityEngine;
2
using
UnityEditor;
3
4
namespace
ARLocation
5
{
6
[CustomEditor(typeof(ARLocationProvider))]
7
public
class
ARLocationProviderInspector
: Editor
8
{
9
public
override
void
OnInspectorGUI()
10
{
11
DrawDefaultInspector();
12
13
if
(GUILayout.Button(
"Open AR+GPS Location configuration"
))
14
{
15
Selection.activeObject = Resources.Load<
ARLocationConfig
>(
"ARLocationConfig"
);
16
}
17
}
18
}
19
}
ARLocation.ARLocationProviderInspector
Definition:
ARLocationProviderInspector.cs:8
ARLocation.ARLocationConfig
This scriptable object holds the global configuration data for the AR + GPS Location plugin.
Definition:
ARLocationConfig.cs:12
ARLocation
Definition:
ARLocationConfigInspector.cs:7
Assets
ARLocation
Editor
ARLocationProviderInspector.cs
Generated by
1.8.20