Etoys: Etoys-kfr.110.mcz

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

Etoys: Etoys-kfr.110.mcz

commits-2
Karl Ramberg uploaded a new version of Etoys to project Etoys:
http://source.squeak.org/etoys/Etoys-kfr.110.mcz

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

Name: Etoys-kfr.110
Author: kfr
Time: 27 February 2012, 10:22:16 pm
UUID: f08ff330-336a-4949-80bb-6eacad1f8df1
Ancestors: Etoys-Richo.109

Adde balloon help: 'Move toward the given object. If the object has an instance variable named speed, the speed of the motion will be governed by that value'

=============== Diff against Etoys-Richo.109 ===============

Item was changed:
  ----- Method: Morph class>>additionsToViewerCategoryMotion (in category '*eToys-scripting') -----
  additionsToViewerCategoryMotion
  "Answer viewer additions for the 'motion' category"
 
  ^#(
  motion
  (
  (slot x 'The x coordinate' Number readWrite Player getX Player setX:)
  (slot y   'The y coordinate' Number readWrite Player getY Player setY:)
  (slot heading  'Which direction the object is facing.  0 is straight up' Number readWrite Player getHeading Player setHeading:)
  (command forward: 'Moves the object forward in the direction it is heading' Number)
  (slot obtrudes 'whether the object sticks out over its container''s edge' Boolean readOnly Player getObtrudes unused unused)
  (command turnToward: 'turn toward the given object' Player)
+ (command moveToward: 'Move toward the given object. If the object has an instance variable named speed, the speed of the motion will be governed by that value' Player)
- (command moveToward: 'move toward the given object' Player)
  (command turn: 'Change the heading of the object by the specified amount' Number)
  (command bounce: 'bounce off the edge if hit' Sound)
  (command wrap 'wrap off the edge if appropriate')
  (command followPath 'follow the yellow brick road')
  (command goToRightOf: 'place this object to the right of another' Player)
  )
  )
 
  !

_______________________________________________
etoys-dev mailing list
[hidden email]
http://lists.squeakland.org/mailman/listinfo/etoys-dev