Karl Ramberg uploaded a new version of MorphicExtras to project Etoys:
http://source.squeak.org/etoys/MorphicExtras-kfr.54.mcz==================== Summary ====================
Name: MorphicExtras-kfr.54
Author: kfr
Time: 20 October 2011, 12:33:24 am
UUID: 8f1140d4-c2ef-bb43-b567-845fc2ad3d4d
Ancestors: MorphicExtras-kfr.53
Missed some extensions
=============== Diff against MorphicExtras-kfr.53 ===============
Item was added:
+ ----- Method: Player>>getGifPlaying (in category '*MorphicExtras-AdditionalMorphs') -----
+ getGifPlaying
+ ^self getValueFromCostume: #isStepping!
Item was added:
+ ----- Method: Player>>getOpaque (in category '*MorphicExtras-AdditionalMorphs') -----
+ getOpaque
+ ^self getValueFromCostume: #isOpaque!
Item was added:
+ ----- Method: Player>>isOpaque: (in category '*MorphicExtras-AdditionalMorphs') -----
+ isOpaque: aBoolean
+ self costume isOpaque: aBoolean!
Item was added:
+ ----- Method: Player>>isStepping (in category '*MorphicExtras-AdditionalMorphs') -----
+ isStepping
+ ^self costume isStepping!
Item was added:
+ ----- Method: Player>>setGifPlaying: (in category '*MorphicExtras-AdditionalMorphs') -----
+ setGifPlaying: aBoolean
+ self setCostumeSlot: #setStepping: toValue: aBoolean
+ !
Item was added:
+ ----- Method: Player>>setOpaque: (in category '*MorphicExtras-AdditionalMorphs') -----
+ setOpaque: aBoolean
+ self setCostumeSlot: #isOpaque: toValue: aBoolean!
Item was added:
+ ----- Method: Player>>setStepping: (in category '*MorphicExtras-AdditionalMorphs') -----
+ setStepping: aBoolean
+ self costume setStepping:aBoolean
+
+ !
_______________________________________________
etoys-dev mailing list
[hidden email]
http://lists.squeakland.org/mailman/listinfo/etoys-dev