Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWalter Bender <walter@walter-laptop.(none)>2009-10-17 20:04:07 (GMT)
committer Walter Bender <walter@walter-laptop.(none)>2009-10-17 20:04:07 (GMT)
commit1aac97d1abfdd2a2551ff0a429ac1ace9b4ba26d (patch)
tree5082fbfd491fb803fc5dc1e838512dddf2d9ab20
parent18c467b75af317e730b58b358fb0f15ef3971cca (diff)
lc sprite name
-rw-r--r--tasetup.py38
1 files changed, 19 insertions, 19 deletions
diff --git a/tasetup.py b/tasetup.py
index c19f4f4..cfe8854 100644
--- a/tasetup.py
+++ b/tasetup.py
@@ -101,21 +101,6 @@ selectors = (
('division','/','ari'),
('remainder','%','ari2'),
('plus','+','ari'))),
- ('sensors', 55,
- (('kbinput','kbinput','noarg2'),
- ('keyboard','keyboard','num'),
- ('nop','userdefined','onearg',100),
- ('myfunc','myfunc','myfunc',_('x'),100),
- ('push','push','onearg'),
- ('pop','pop','num'),
- ('printheap','heap','noarg2'),
- ('clearheap','emptyheap','noarg2'),
- ('leftpos','leftpos','num'),
- ('toppos','toppos','num'),
- ('rightpos','rightpos','num'),
- ('bottompos','bottompos','num'),
- ('hres','hres','num'),
- ('vres','vres','num'))),
('flow', 55,
(('wait','wait','onearg',1),
('forever','forever','forever'),
@@ -144,6 +129,21 @@ selectors = (
('string','','string',_('name'),str,strcheck),
# not selectable, but here for backward compatability
('storeinbox','storeinbox','1sarg',_('box'),100))),
+ ('sensors', 55,
+ (('kbinput','kbinput','noarg2'),
+ ('keyboard','keyboard','num'),
+ ('nop','userdefined','onearg',100),
+ ('myfunc','myfunc','myfunc',_('x'),100),
+ ('push','push','onearg'),
+ ('pop','pop','num'),
+ ('printheap','heap','noarg2'),
+ ('clearheap','emptyheap','noarg2'),
+ ('leftpos','leftpos','num'),
+ ('toppos','toppos','num'),
+ ('rightpos','rightpos','num'),
+ ('bottompos','bottompos','num'),
+ ('hres','hres','num'),
+ ('vres','vres','num'))),
('templates',55,
(('journal','','media','','',''),
('audiooff','','audio','','',''),
@@ -274,11 +274,11 @@ def setup_misc(tw):
tw.media_shapes['pythonloaded'] = \
load_image(tw.path_lang, 'sensors', 'nop-loaded')
# coordinare systems
- tw.Cartesian_coordinates_spr = sprNew(tw, tw.width/2-600, tw.height/2-450, \
+ tw.cartesian_coordinates_spr = sprNew(tw, tw.width/2-600, tw.height/2-450, \
load_image(tw.path, '', "Cartesian"))
- tw.Cartesian_coordinates_spr.type = 'coordinates'
- setlayer(tw.Cartesian_coordinates_spr, 610)
- hide(tw.Cartesian_coordinates_spr)
+ tw.cartesian_coordinates_spr.type = 'coordinates'
+ setlayer(tw.cartesian_coordinates_spr, 610)
+ hide(tw.cartesian_coordinates_spr)
tw.polar_coordinates_spr = sprNew(tw, tw.width/2-600, tw.height/2-450, \
load_image(tw.path, '', "polar"))
tw.polar_coordinates_spr.type = 'coordinates'