Table of Contents

Function Definition: clear()

Parameters

Description

The function removes all marks made by the pen or stamping. It is the only pen block that the Stage can use.

Example

The example demonstrates how to make the sprite track and stamp its image on the mouse when the space key is pressed in Python.

Code

sprite = Sprite('Tobi')
pen = Pen()

pen.clear()

while True:
  if (sprite.iskeypressed("space")):
    sprite.setx(sprite.mousex())
    sprite.sety(sprite.mousey())
    pen.stamp()

Output

Read More
All articles loaded
No more articles to load