User Tools

Site Tools


en:spritedim

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

en:spritedim [2016/01/01 22:42]
en:spritedim [2020/02/28 10:46] (current)
Line 1: Line 1:
 +===== Spritedim( Statement) =====
 +==== Format ====
 +**spritedim** //posint_expr//\\
 +**spritedim** ( //posint_expr// )
 +==== Description ====
 +Create sprite placeholders in memory.  Sprites are accessed in your program by a sprite number from 0 to n-1.
 +
 +==== Example ====
 +<code>
 +# creates a sprite with number 0
 +clg
 +fastgraphics
 +spritedim 1
 +a$="Basic 256"
 +Text 0,0,a$
 +spriteslice 0,0,0,textwidth (a$),textheight()
 +spriteshow 0
 +
 +# rotates and enlarges sprite
 +for n=0 to 2*pi step .002
 +clg
 +spriteplace 0,150,150,n,n
 +refresh
 +next n
 +</code>
 +
 +==== See Also ====
 +{{page>en:start#Graphics - sprites&noheader}}
 +
 +==== History ==== 
 +|0.9.6n|New To Version|