How do you shrink sprites?
How to SPSCALE Shrink sprites
legofordmnCreated:
How would I make a code where if I pushed up on the d-pad , it would make a Sprite larger and larger, and if I hit down on the d-pad it would continuously shrink a Sprite?
How would I make a code where if I pushed up on the d-pad , it would make a Sprite larger and larger, and if I hit down on the d-pad it would continuously shrink a Sprite?
SPSET 0,413 '🐠 SCALE# = 2.0 'Start at double size. WHILE 1 'Forever: VSYNC 'Wait a frame. IF BUTTON()==#UP && SCALE#< 32 THEN:INC SCALE#,0.1 'If UP is pressed, and the scale is not too high, then increase scale. IF BUTTON()==#DOWN && SCALE#>0.1 THEN:DEC SCALE#,0.1 'If DOWN is pressed, and the scale is not too low, then decrease scale. SPSCALE 0,SCALE#,SCALE# 'Apply scale to sprite. 'Note that a scale of zero or lower results in an error. WEND