'From Squeak3.1alpha of 28 February 2001 [latest update: #4008] on 10 May 2001 at 8:24:20 pm'! "Change Set: WnldCopyFix-ar Date: 10 May 2001 Author: Andreas Raab Copy various properties when duplicating actors."! !WonderlandActor methodsFor: 'private' stamp: 'ar 5/10/2001 20:22'! postCopy | props | myName _ myName copy. myMaterial _ myMaterial copy. myColor _ myColor copy. myReactions _ myReactions copy. myMesh _ myMesh shallowCopy. composite _ composite copy. scaleMatrix _ scaleMatrix copy. props _ myProperties. myProperties _ nil. props = nil ifFalse:[ props keysAndValuesDo:[:k :v| self setProperty: k toValue: v]].! !