The Trunk: MorphicExtras-jl.196.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-jl.196.mcz

commits-2
David T. Lewis uploaded a new version of MorphicExtras to project The Trunk:
http://source.squeak.org/trunk/MorphicExtras-jl.196.mcz

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

Name: MorphicExtras-jl.196
Author: jl
Time: 1 September 2016, 3:59:47.545565 pm
UUID: f54f2528-43a4-cf49-beb9-42b4ab57aebf
Ancestors: MorphicExtras-tfel.195

added Kedama (Particles) to default flap

=============== Diff against MorphicExtras-tfel.195 ===============

Item was changed:
  ----- Method: Flaps class>>defaultsQuadsDefiningPlugInSuppliesFlap (in category 'predefined flaps') -----
  defaultsQuadsDefiningPlugInSuppliesFlap
  "Answer a list of quads which define the objects to appear in the default Supplies flap used in the Plug-in image"
 
+ "PartsBin reconstructAllPartsIcons"
+
  ^  #(
  (ObjectsTool newStandAlone 'Object Catalog' 'A tool that lets you browse the catalog of available objects')
  "(AllScriptsTool allScriptsToolForActiveWorld 'All Scripts' 'Stop, Step, and Go buttons for controlling all your scripts at once.  The tool can also be "opened up" to control each script in your project individually.')"
  (TrashCanMorph new 'Trash' 'A tool for discarding objects')
  (GrabPatchMorph new 'Grab Patch' 'Allows you to create a new Sketch by grabbing a rectangular patch from the screen')
  (LassoPatchMorph new 'Lasso' 'Allows you to create a new Sketch by lassoing an area from the screen')
 
  (StickyPadMorph newStandAlone 'Sticky Pad' 'Each time you obtain one of these pastel, translucent, borderless rectangles, it will be a different color from the previous time.')
  "(PaintInvokingMorph new 'Paint' 'Drop this into an area to start making a fresh painting there')"
  (TextMorph boldAuthoringPrototype 'Text' 'Text that you can edit into anything you desire.')
  (RecordingControlsMorph authoringPrototype 'Sound' 'A device for making sound recordings.')
  (RectangleMorph authoringPrototype 'Rectangle' 'A rectangle')
  (RectangleMorph roundRectPrototype 'RoundRect' 'A rectangle with rounded corners')
  (EllipseMorph authoringPrototype 'Ellipse' 'An ellipse or circle')
  (StarMorph authoringPrototype 'Star' 'A star')
  (CurveMorph authoringPrototype 'Curve' 'A curve')
  (PolygonMorph authoringPrototype 'Polygon' 'A straight-sided figure with any number of sides')
  (ScriptableButton authoringPrototype 'Button' 'A Scriptable button')
  (BookMorph nextPageButton 'NextPage' 'A button that takes you to the next page')
  (BookMorph previousPageButton 'PreviousPage' 'A button that takes you to the previous page')
  "(ScriptingSystem prototypicalHolder 'Holder' 'A place for storing alternative pictures in an animation, etc.')"
  (PasteUpMorph authoringPrototype 'Playfield' 'A place for assembling parts or for staging animations')
  (SimpleSliderMorph authoringPrototype 'Slider' 'A slider for showing and setting numeric values.')
  (JoystickMorph authoringPrototype 'Joystick' 'A joystick-like control')
  (BookMorph authoringPrototype 'Book' 'A multi-paged structure')
  "(ClockMorph authoringPrototype 'Clock' 'A simple digital clock')"
+ (KedamaMorph authoringPrototype 'Particles' 'A Kedama World with pre-made components')
  (RandomNumberTile new 'Random' 'A random-number tile for use with tile scripting')) asOrderedCollection!