Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Window Settings are configured in the ScreenWindowSettings.xml, typically found at

C:\ProgramData\Igloo Vision\IglooCoreEngine\settings

Multiple Windows can be configured, with each Window displaying a subsection of the Workspace Canvas.

Code Block
languagexml
<windows>
    <window>
        <winXPos>1920</winXPos>
        <winYPos>0</winYPos>
        <winWidth>1920</winWidth>
        <winHeight>1080</winHeight>
        <startX>0.000000000</startX>
        <startY>0.000000000</startY>
        <subWidth>0.000000000</subWidth>
        <subHeight>1.000000000</subHeight>
    </window>
	<window>
        <winXPos>3840</winXPos>
        <winYPos>0</winYPos>
        <winWidth>1920</winWidth>
        <winHeight>1080</winHeight>
        <startX>0.500000000</startX>
        <startY>0.000000000</startY>
        <subWidth>0.500000000</subWidth>
        <subHeight>1.000000000</subHeight>
    </window>
</windows>

  • winXPos

The X position of the top left corner of the Window in screen coordinates

  • winYPos

...

Y position of the top left corner of the Window in screen coordinates

  • winWidth

The width of the window in pixels

  • winHeight

The height of the window in pixels

  • startX

The starting X position of the canvas subsection to be drawn into the window, in normalised coordinates i.e. 0-1

  • startY

The starting Y position of the canvas subsection to be drawn into the window, in normalised coordinates i.e. 0-1

  • subWidth

The width of the canvas subsection to be drawn into the window, in normalised coordinates i.e. 0-1

  • subHeight

The height of the canvas subsection to be drawn into the window, in normalised coordinates i.e. 0-1

Examples

This example assumes you have one 1920x1080 screen and you want to display the entire canvas on this screen.

...