The Trunk: MorphicExtras-ct.272.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: MorphicExtras-ct.272.mcz

commits-2
Marcel Taeumel uploaded a new version of MorphicExtras to project The Trunk:
http://source.squeak.org/trunk/MorphicExtras-ct.272.mcz

==================== Summary ====================

Name: MorphicExtras-ct.272
Author: ct
Time: 1 October 2019, 8:41:27.291339 pm
UUID: cca75098-d7f2-1244-979f-65da19056be2
Ancestors: MorphicExtras-ct.267

Adds MovingEyeMorph example. This one is rather for fun, but I promise you it will visually upgrade Objectland a lot :-)

Depends on Graphics-ct.422.

This commit is part of reconstruction of Objectland (also known as "The Worlds of Squeak"). For more information, see: http://forum.world.st/The-Inbox-MorphicExtras-ct-267-mcz-td5104764.html

=============== Diff against MorphicExtras-ct.267 ===============

Item was added:
+ ----- Method: MovingEyeMorph class>>extraExampleSqueakIsWatchingYou (in category '*MorphicExtras-examples') -----
+ extraExampleSqueakIsWatchingYou
+ "MovingEyeMorph extraExampleSqueakIsWatchingYou openInHand"
+
+ ^ Form squeakIcon asMorph
+ addMorph: self new spec: (MorphSpec center: 0.39 @ 0.55 extent: 0.1 @ 0.15);
+ addMorph: self new spec: (MorphSpec center: 0.59 @ 0.56 extent: 0.1 @ 0.15);
+ yourself!