Table of Contents

Function Definition: show()

Parameters

Description

If the sprite is hidden, it will show the sprite. If the sprite is already showing, nothing will change.

Example

The example demonstrates the show and hides of the sprite in Python.

Code

sprite = Sprite('Tobi')
import time

sprite.gotoxy(0, 0)
sprite.setsize(200)

while True:
  sprite.show()
  time.sleep(1)
  sprite.hide()
  time.sleep(1)
Read More
All articles loaded
No more articles to load