LoginLogin
Nintendo shutting down 3DS + Wii U online services, see our post

XSCREEN

Root / Documentation / [.]

Created:
Set/get the display mode. * Syntax ```sbsyntax XSCREEN width%, height% {, sampleFactor% {, interpolation% {, aspect# }}} XSCREEN OUT width%, height% {, sampleFactor% {, interpolation% {, aspect# }}} ``` |*Parameter | Description | |`width%`|#rs=2 Width and height of the display mode, in pixels.\ Must be in multiples of 4. `width%` must be between 128 and 1280. `height%` must be between 128 and 720. | |`height%`| |`sampleFactor%`|Factor to use for supersampling. (optional, default 1.)\ `width% * sampleFactor%` must not be greater than 1280 and `height% * sampleFactor%` must not be greater than 720. | |`interpolation%`|Interpolation mode used for scaling the screen (optional.) {|* Number | Description | |0|Bilinear (default)| |1|Smart Nearest-Neighbor| |2|Nearest-Neighbor|}| |`aspect#`|Display aspect ratio to use. (optional, default `width% / height%`)| * Examples ```sb4 'set the display to 720p XSCREEN 1280,720 ``` ```sb4 'check the current display setting XSCREEN OUT W%,H% PRINT W%,H% ``` * Notes ** Additional Effects `XSCREEN` also automatically adjusts the sizing of the console text screen and graphic page sprite.

No posts yet (will you be the first?)