Karl Ramberg uploaded a new version of MorphicExtras to project The Trunk:
http://source.squeak.org/trunk/MorphicExtras-kfr.229.mcz==================== Summary ====================
Name: MorphicExtras-kfr.229
Author: kfr
Time: 15 April 2018, 2:12:19.020131 pm
UUID: 499ecdd9-d87e-dc46-9f0b-b262d237f5a2
Ancestors: MorphicExtras-kfr.228
Fix for bouncing atoms bounds, added menu item to make it bounce without infection, fix spelling in menu.
=============== Diff against MorphicExtras-kfr.228 ===============
Item was changed:
----- Method: BouncingAtomsMorph>>addCustomMenuItems:hand: (in category 'menu') -----
addCustomMenuItems: aCustomMenu hand: aHandMorph
super addCustomMenuItems: aCustomMenu hand: aHandMorph.
+ aCustomMenu add: 'start bouncing' translated action: #startStepping.
+ aCustomMenu add: 'start infection' translated action: #startInfection.
- aCustomMenu add: 'startInfection' translated action: #startInfection.
aCustomMenu add: 'set atom count' translated action: #setAtomCount.
aCustomMenu add: 'show infection history' translated action: #showInfectionHistory:.
!
Item was added:
+ ----- Method: BouncingAtomsMorph>>justDroppedInto:event: (in category 'initialization') -----
+ justDroppedInto: aWorld event: evt
+
+ damageReported := false.
+ self changed
+
+ !