SC2Mapster Wiki
Advertisement

Unclipped

Description

Allows a frame to be rendered outside its parent countainer bounds. Normally if a Frame were to render part or all of it outside the parent bounds, it will only display what fits inside the bounds. Unclipped frames will render in its entirety on the screens regardless of any of its parents. This has a performance cost, so use with caution.

Options

val
true or false

Usage

Example where the width of a frame named "myCustomFrame" is set to 250.

<Frame name="myCustomFrame">
    <Unclipped val="true" />
</Frame>
Advertisement