Discard.view

From AGI Wiki
Revision as of 21:04, 2 August 2013 by Andrew Branscom (talk | contribs) (Created page with "The '''discard.view''' command removes a view resource from memory. There is an indirect version of this command called '''discard.view....")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

The discard.view command removes a view resource from memory. There is an indirect version of this command called discard.view.v.

discard.view(viewNumber);

View viewNumber is discarded from memory.

Parameters

For discard.view

  • viewNumber: a number, 0-255, specifying which view resource to remove from memory

For discard.view.v

  • viewNumber: a variable, v0-v255, whose value specifies which view resource to remove from memory

Possible errors

Examples

The following example uses discard.view to remove view 203 from memory:

load.view(203); discard.view(203);

The next example uses discard.view.v to accomplish the same task:

load.view(203); v100 = 203; discard.view.v(v100);


See also

Sources

Some of the text in the article is taken from the AGI Studio help file.