Pano2VR 7 Docs / Scale an Element Based on Player Width

Scale an Element Based on Player Width

You can use logic blocks to create a responsive skin (where the skin elements scale to the player's width). This will require a logic block with multiple expressions.


Let’s scale a text box to twice its size when the player is wider than 1000 pixels and to 1.5 times its size when the player is wider than 600 pixels.

  1. Open the Skin Editor.

  2. Add a Text Box.

  3. Go to the Appearance panel for the Text Box.

  4. Click on the arrows next to Scaling. This will open the Logic Block Settings dialog.

  5. Double-click in the table to add the first condition to the first expression (for when the player width is greater than 1000 pixels). The default Trigger will show up, which is exactly what we need, Player Width.

    Set the Comparison to Greater Than (>). And set the Value to 1000.

    Set the target value to 2 for X and Y.

    Condition one added
    Condition one added

    So far, this explains if the player width is wider than 1000 pixels, then scale up the text box twice its size.

  6. Add a second expression (for when the player width is greater than 600 pixels).

    Click the green plus sign to add another table (expression). Add Player Width for the Target and set the Comparison to Greater Than (>). The value is 600.

    Set the target value to 1.5 for X and Y.

    Condition two added
    Condition two added

    This expression explains that if the width is greater than 600 pixels, then the text should be scaled up 1.5 times its size.

  7. Select Enabled under Transition so it’s a smooth scale.

  8. Save the skin.

✭ Note: The expressions are read top down. This means that the first expression found to be true will be used. In this example, if the screen width is greater than 1000 pixels, then the first expression will be used and the rest below will be ignored.

With scaling you have to be a little careful that images don’t become pixelated. You can also use the Is Mobile trigger to create responsive skins. Go here to read how and download a sample project.

See also…

Last modified: May 17, 2022