Advertisement
Christophe3D

Tao3D: List of colors

Dec 3rd, 2014
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.55 KB | None | 0 0
  1. texte -> "Rien"
  2.  
  3.  
  4. text_box 0, -200, 400, 200,
  5.     font "Arial", 80
  6.     align_center
  7.     vertical_align_center
  8.     text texte
  9.  
  10. clickable_rectangle with "red", "green", "blue", "black", "yellow", "pink", "turquoise", "aquamarine","salmon","grey"
  11.  
  12. clickable_rectangle Color:text ->
  13.     active_widget
  14.         color Color
  15.         rectangle 200, 0, 200, 100
  16.         on_click
  17.             texte := Color
  18.             refresh 0
  19.     rotate_z 20
  20.    
  21. draw_selection X, Y, W, H ->
  22.     color "grey", 0.4
  23.     circle X+W/2,Y, 20
  24.     circle X-W/2,Y, 20
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement