Etoys: MorphicExtras-kfr.34.mcz

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

Etoys: MorphicExtras-kfr.34.mcz

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

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

Name: MorphicExtras-kfr.34
Author: kfr
Time: 11 October 2011, 10:48:18 am
UUID: 2fc7ec27-e64e-aa46-865a-e864465bfd55
Ancestors: MorphicExtras-kfr.33

Add missing Player extentions

=============== Diff against MorphicExtras-kfr.33 ===============

Item was added:
+ ----- Method: Player>>applyEffects (in category '*MorphicExtras-WebCam') -----
+ applyEffects
+ costume applyFxNow!

Item was added:
+ ----- Method: Player>>captureFrame (in category '*MorphicExtras-WebCam') -----
+ captureFrame
+ costume captureFrameNow!

Item was added:
+ ----- Method: Player>>getActualFPS (in category '*MorphicExtras-WebCam') -----
+ getActualFPS
+ ^ costume getActualFPS!

Item was added:
+ ----- Method: Player>>getAutoSnapshot (in category '*MorphicExtras-WebCam') -----
+ getAutoSnapshot
+ ^ costume getAutoSnapshot
+ !

Item was added:
+ ----- Method: Player>>getCamNum (in category '*MorphicExtras-WebCam') -----
+ getCamNum
+ | camNum |
+ camNum := costume getCamNum.
+ " self setName: 'Camera',camNum asString.
+ " ^ camNum.
+ !

Item was added:
+ ----- Method: Player>>getFrameCount (in category '*MorphicExtras-WebCam') -----
+ getFrameCount
+ ^ costume getFrameCount!

Item was added:
+ ----- Method: Player>>getFxHolder (in category '*MorphicExtras-WebCam') -----
+ getFxHolder
+ ^ costume getFxHolder.
+ !

Item was added:
+ ----- Method: Player>>getIsFxEnabled (in category '*MorphicExtras-WebCam') -----
+ getIsFxEnabled
+ ^ costume getIsFxEnabled.
+ !

Item was added:
+ ----- Method: Player>>getIsLiveDisplay (in category '*MorphicExtras-WebCam') -----
+ getIsLiveDisplay
+ ^ costume getIsLiveDisplay!

Item was added:
+ ----- Method: Player>>getManualCapture (in category '*MorphicExtras-WebCam') -----
+ getManualCapture
+ ^ costume getManualCapture!

Item was added:
+ ----- Method: Player>>getMaxFPS (in category '*MorphicExtras-WebCam') -----
+ getMaxFPS
+ ^ costume getMaxFPS!

Item was added:
+ ----- Method: Player>>getOverlayControls (in category '*MorphicExtras-WebCam') -----
+ getOverlayControls
+ ^ costume getOverlayControls!

Item was added:
+ ----- Method: Player>>getOverlayControls: (in category '*MorphicExtras-WebCam') -----
+ getOverlayControls: aBoolean
+ ^ costume getOverlayControls!

Item was added:
+ ----- Method: Player>>getSkipFrames (in category '*MorphicExtras-WebCam') -----
+ getSkipFrames
+ ^ costume getSkipFrames!

Item was added:
+ ----- Method: Player>>getSnapshotHolder (in category '*MorphicExtras-WebCam') -----
+ getSnapshotHolder
+ ^ costume getSnapshotHolder.
+ !

Item was added:
+ ----- Method: Player>>getSnapshotLimit (in category '*MorphicExtras-WebCam') -----
+ getSnapshotLimit
+ ^ costume getSnapshotLimit
+ !

Item was added:
+ ----- Method: Player>>getUseFrameSize (in category '*MorphicExtras-WebCam') -----
+ getUseFrameSize
+ ^ costume getUseFrameSize.
+ !

Item was added:
+ ----- Method: Player>>getWebCamIsOn (in category '*MorphicExtras-WebCam') -----
+ getWebCamIsOn
+ ^ costume getWebCamIsOn!

Item was added:
+ ----- Method: Player>>getWebCamResolution (in category '*MorphicExtras-WebCam') -----
+ getWebCamResolution
+ ^ costume getWebCamResolution!

Item was added:
+ ----- Method: Player>>getWorldH (in category '*MorphicExtras-WebCam') -----
+ getWorldH
+ ^ costume getWorldH!

Item was added:
+ ----- Method: Player>>getWorldW (in category '*MorphicExtras-WebCam') -----
+ getWorldW
+ ^ costume getWorldW!

Item was added:
+ ----- Method: Player>>setAutoSnapshot: (in category '*MorphicExtras-WebCam') -----
+ setAutoSnapshot: aBoolean
+ costume setAutoSnapshot: aBoolean
+ !

Item was added:
+ ----- Method: Player>>setCamNum: (in category '*MorphicExtras-WebCam') -----
+ setCamNum: num
+ costume setCamNum: num!

Item was added:
+ ----- Method: Player>>setFrameCount: (in category '*MorphicExtras-WebCam') -----
+ setFrameCount: aNumber
+ costume setFrameCount: aNumber!

Item was added:
+ ----- Method: Player>>setFxHolder: (in category '*MorphicExtras-WebCam') -----
+ setFxHolder: aMorph
+ costume setFxHolder: aMorph
+ !

Item was added:
+ ----- Method: Player>>setIsFxEnabled: (in category '*MorphicExtras-WebCam') -----
+ setIsFxEnabled: aBoolean
+ costume setIsFxEnabled: aBoolean
+ !

Item was added:
+ ----- Method: Player>>setIsLiveDisplay: (in category '*MorphicExtras-WebCam') -----
+ setIsLiveDisplay: aBoolean
+ costume setIsLiveDisplay: aBoolean!

Item was added:
+ ----- Method: Player>>setManualCapture: (in category '*MorphicExtras-WebCam') -----
+ setManualCapture: aBoolean
+ costume setManualCapture: aBoolean!

Item was added:
+ ----- Method: Player>>setMaxFPS: (in category '*MorphicExtras-WebCam') -----
+ setMaxFPS: aNumber
+ costume setMaxFPS: aNumber!

Item was added:
+ ----- Method: Player>>setOverlayControls: (in category '*MorphicExtras-WebCam') -----
+ setOverlayControls: aBoolean
+ costume setOverlayControls: aBoolean!

Item was added:
+ ----- Method: Player>>setSkipFrames: (in category '*MorphicExtras-WebCam') -----
+ setSkipFrames: aNumber
+ costume setSkipFrames: aNumber!

Item was added:
+ ----- Method: Player>>setSnapshotHolder: (in category '*MorphicExtras-WebCam') -----
+ setSnapshotHolder: aPlayer
+ costume setSnapshotHolder: aPlayer costume
+ !

Item was added:
+ ----- Method: Player>>setSnapshotLimit: (in category '*MorphicExtras-WebCam') -----
+ setSnapshotLimit: aNumber
+ costume setSnapshotLimit: aNumber
+ !

Item was added:
+ ----- Method: Player>>setUseFrameSize: (in category '*MorphicExtras-WebCam') -----
+ setUseFrameSize: aBoolean
+ costume setUseFrameSize: aBoolean!

Item was added:
+ ----- Method: Player>>setWebCamIsOn: (in category '*MorphicExtras-WebCam') -----
+ setWebCamIsOn: aBoolean
+ costume setWebCamIsOn: aBoolean!

Item was added:
+ ----- Method: Player>>setWebCamResolution: (in category '*MorphicExtras-WebCam') -----
+ setWebCamResolution: aSymbol
+ costume setWebCamResolution: aSymbol!

Item was added:
+ ----- Method: Player>>takeSnapshot (in category '*MorphicExtras-WebCam') -----
+ takeSnapshot
+ costume snapshotNow!

Item was added:
+ ----- Method: Player>>updateDisplay (in category '*MorphicExtras-WebCam') -----
+ updateDisplay
+ costume updateDisplayNow!

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