2011-03-22 23:53:44 +00:00
|
|
|
Widget:
|
2012-08-07 09:45:53 +00:00
|
|
|
canvas:
|
2011-03-22 23:53:44 +00:00
|
|
|
|
2012-08-07 09:45:53 +00:00
|
|
|
StencilPush
|
2011-03-22 23:53:44 +00:00
|
|
|
|
2012-08-07 09:45:53 +00:00
|
|
|
# create a rectangle mask, from pos 100, 100, with a 100, 100 size.
|
|
|
|
Rectangle:
|
|
|
|
pos: 100, 100
|
|
|
|
size: 100, 100
|
2011-03-22 23:53:44 +00:00
|
|
|
|
2012-08-07 09:45:53 +00:00
|
|
|
StencilUse
|
2011-03-22 23:53:44 +00:00
|
|
|
|
2012-08-07 09:45:53 +00:00
|
|
|
# we want to show a big green rectangle, however, the previous stencil
|
|
|
|
# mask will crop us :)
|
|
|
|
Color:
|
|
|
|
rgb: 0, 1, 0
|
|
|
|
Rectangle:
|
|
|
|
size: 900, 900
|
2011-03-22 23:53:44 +00:00
|
|
|
|
2012-08-07 09:45:53 +00:00
|
|
|
StencilUnUse
|
2012-04-16 14:20:08 +00:00
|
|
|
|
2012-08-07 09:45:53 +00:00
|
|
|
# Remove the mask previously set
|
|
|
|
Rectangle:
|
|
|
|
pos: 100, 100
|
|
|
|
size: 100, 100
|
2012-04-16 14:20:08 +00:00
|
|
|
|
2012-08-07 09:45:53 +00:00
|
|
|
StencilPop
|