The Inbox: MorphicExtras-ct.282.mcz

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

The Inbox: MorphicExtras-ct.282.mcz

commits-2
A new version of MorphicExtras was added to project The Inbox:
http://source.squeak.org/inbox/MorphicExtras-ct.282.mcz

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

Name: MorphicExtras-ct.282
Author: ct
Time: 19 September 2020, 2:54:12.200788 pm
UUID: 6fe94ab1-2bf7-4c51-9bf3-dc6089fb8b64
Ancestors: MorphicExtras-kfr.276

Adds MovingEyeMorph examples. Replaces MorphicExtras-ct.272, which can be moved into the treated inbox. Uses updated squeak icon resource.

Depends on Morphic-ct.1688 and Graphics-ct.437.

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-kfr.276 ===============

Item was added:
+ ----- Method: MovingEyeMorph class>>extraExampleSqueakGhostIsWatchingYou (in category '*MorphicExtras-examples') -----
+ extraExampleSqueakGhostIsWatchingYou
+ "MovingEyeMorph extraExampleSqueakGhostIsWatchingYou openInHand"
+
+ ^ (MenuIcons largeSqueakLogoIcon collectColors: #negated) asMorph
+ changeProportionalLayout;
+ addMorph: (self color: Color white irisColor: Color black)
+ fullFrame: (LayoutFrame fractions: (0.1 @ 0.15 exactCenter: 0.39 @ 0.55));
+ addMorph: (self color: Color white irisColor: Color black)
+ fullFrame: (LayoutFrame fractions: (0.1 @ 0.15 exactCenter: 0.59 @ 0.56));
+ yourself!

Item was added:
+ ----- Method: MovingEyeMorph class>>extraExampleSqueakIsWatchingYou (in category '*MorphicExtras-examples') -----
+ extraExampleSqueakIsWatchingYou
+ "MovingEyeMorph extraExampleSqueakIsWatchingYou openInHand"
+
+ ^ MenuIcons largeSqueakLogoIcon asMorph
+ changeProportionalLayout;
+ addMorph: self new fullFrame: (LayoutFrame fractions: (
+ 0.1 @ 0.15 exactCenter: 0.39 @ 0.55));
+ addMorph: self new fullFrame: (LayoutFrame fractions: (
+ 0.1 @ 0.15 exactCenter: 0.59 @ 0.56));
+ yourself!