Interface IMixedRealityServiceInspector
Used to populate service facades with content. To use, create a class that implements this interface and mark it with the MixedRealityServiceInspector attribute.
Namespace: Microsoft.MixedReality.Toolkit.Editor
Assembly: cs.temp.dll.dll
Syntax
public interface IMixedRealityServiceInspector
Properties
AlwaysDrawSceneGUI
If true, DrawSceneGUI will be called even when facade object is not selected.
Declaration
bool AlwaysDrawSceneGUI { get; }
Property Value
Type | Description |
---|---|
Boolean |
DrawProfileField
If true, inspector will include a field for the service's profile at the top (if applicable)
Declaration
bool DrawProfileField { get; }
Property Value
Type | Description |
---|---|
Boolean |
Methods
DrawGizmos(Object)
Used to draw gizmos in the scene
Declaration
void DrawGizmos(object target)
Parameters
Type | Name | Description |
---|---|---|
Object | target |
DrawInspectorGUI(Object)
Used to draw an inspector for a service facade.
Declaration
void DrawInspectorGUI(object target)
Parameters
Type | Name | Description |
---|---|---|
Object | target |
DrawSceneGUI(Object, SceneView)
Used to draw handles and visualizations in scene view.
Declaration
void DrawSceneGUI(object target, SceneView sceneView)
Parameters
Type | Name | Description |
---|---|---|
Object | target | |
SceneView | sceneView |