mrtk_developmentreleases/2.0.0releases/2.1.0releases/2.2.0releases/2.3.0releases/2.4.0releases/2.5.0releases/2.5.1releases/2.5.2releases/2.5.3

We've moved!

Starting from MRTK 2.6, we are publishing both conceptual docs and API references on docs.microsoft.com. For conceptual docs, please visit our new landing page. For API references, please visit the MRTK-Unity section of the dot net API explorer. Existing content will remain here but will not be updated further.

Search Results for

    Show / Hide Table of Contents

    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
    In This Article
    • Properties
      • AlwaysDrawSceneGUI
      • DrawProfileField
    • Methods
      • DrawGizmos(Object)
      • DrawInspectorGUI(Object)
      • DrawSceneGUI(Object, SceneView)
    Back to top Generated by DocFX