Guides

SDK_BaseSystem

extends SDK_Base

Overview

The Base System SDK script provides a bridge to core system SDK methods.

This is an abstract class to implement the interface required by all implemented SDKs.

Class Methods

IsDisplayOnDesktop/0

public abstract bool IsDisplayOnDesktop();

  • Parameters
    • none
  • Returns
    • bool - Returns true if the display is extending the desktop

The IsDisplayOnDesktop method returns true if the display is extending the desktop.

ShouldAppRenderWithLowResources/0

public abstract bool ShouldAppRenderWithLowResources();

  • Parameters
    • none
  • Returns
    • bool - Returns true if the Unity app should render with low resources.

The ShouldAppRenderWithLowResources method is used to determine if the Unity app should use low resource mode. Typically true when the dashboard is showing.

ForceInterleavedReprojectionOn/1

public abstract void ForceInterleavedReprojectionOn(bool force);

  • Parameters
    • bool force - If true then Interleaved Reprojection will be forced on, if false it will not be forced on.
  • Returns
    • none

The ForceInterleavedReprojectionOn method determines whether Interleaved Reprojection should be forced on or off.