Skip to content

Clear Pictures

Clear Pictures

Removes all displayed pictures from screen.

Properties

System

Name Explanation Type
ID The ID of the picture to use. Variable or Value
Include Persisted Pictures Whether to also clear pictures that persist between scenes. Toggle

Examples

Clear All Non-Persistent Pictures

This removes all currently displayed pictures from the screen, excluding those that persist between scenes.

clear_pictures();
{"Data":{"IncludeStatic":false,"Metadata":null},"TypeName":"MAR.Game.Shared.Models.Scripts.Commands.Picture.ClearPicturesCommand"}

Clear All Pictures Including Persistent Ones

This removes all currently displayed pictures from the screen, including those that persist between scenes.

clear_pictures(include_static);
{"Data":{"IncludeStatic":true,"Metadata":null},"TypeName":"MAR.Game.Shared.Models.Scripts.Commands.Picture.ClearPicturesCommand"}