[etoys-dev] Etoys: MorphicExtras-kfr.43.mcz

commits at source.squeak.org commits at source.squeak.org
Fri Oct 14 13:47:02 EDT 2011


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

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

Name: MorphicExtras-kfr.43
Author: kfr
Time: 14 October 2011, 7:46:25 pm
UUID: 1f0527c7-2f1c-5844-9b52-38ebf3c05f67
Ancestors: MorphicExtras-kfr.42

Fix ObjectsTool entry. Renamed morph to player.

=============== Diff against MorphicExtras-kfr.42 ===============

Item was changed:
  ----- Method: WebCamMorph class>>additionsToViewerCategories (in category 'scripting') -----
  additionsToViewerCategories
  	"Answer a list of (<categoryName> <list of category specs>) pairs that characterize the phrases this kind of morph wishes to add to various Viewer categories."
  	^ #(
  
  	(#'camera' (
  		(slot resolution '160x120, 320x240 or 640x480' 
  			WebCamResolution readWrite Player getWebCamResolution Player setWebCamResolution:)
  		(slot cameraIsOn 'Whether the camera is on/off' Boolean readWrite Player getWebCamIsOn Player setWebCamIsOn:)
+ 		(slot useFrameSize 'Resize the player to match the cameras frame size' 
- 		(slot useFrameSize 'Resize the morph to match the cameras frame size' 
  			Boolean readWrite Player getUseFrameSize Player setUseFrameSize:)
+ 		(slot lastFrame 'A player with the last frame' Player readOnly	Player getLastFrame unused unused)
- 		(slot lastFrame 'A morph with the last frame' Player readOnly	Player getLastFrame unused unused)
  		(slot graphic 	'The picture currently being worn' Graphic	 readOnly Player getVideoGraphic unused unused)
  	))
  
  )
  !

Item was changed:
  ----- Method: WebCamMorph class>>descriptionForPartsBin (in category 'parts bin') -----
  descriptionForPartsBin
  	^ self
+ 		partName: 'Camera' translatedNoop
- 		partName: 'WebCam' translatedNoop
  		categories: {'Multimedia' translatedNoop}
+ 		documentation: 'Web camera player.' translatedNoop
- 		documentation: 'WebCam player.' translatedNoop
  		sampleImageForm: self icon!



More information about the etoys-dev mailing list