@@ -251,13 +251,55 @@ var Layer = new Class({
251251 return this ;
252252 } ,
253253
254+ scaleX : function ( value )
255+ {
256+ Actions . ScaleX ( this . children . entries , value ) ;
257+
258+ return this ;
259+ } ,
260+
261+ scaleXY : function ( x , y )
262+ {
263+ Actions . ScaleXY ( this . children . entries , x , y ) ;
264+
265+ return this ;
266+ } ,
267+
268+ scaleY : function ( value )
269+ {
270+ Actions . ScaleY ( this . children . entries , value ) ;
271+
272+ return this ;
273+ } ,
274+
254275 setRotation : function ( value , step )
255276 {
256277 Actions . SetRotation ( this . children . entries , value , step ) ;
257278
258279 return this ;
259280 } ,
260281
282+ setScale : function ( x , y , stepX , stepY )
283+ {
284+ Actions . SetScale ( this . children . entries , x , y , stepX , stepY ) ;
285+
286+ return this ;
287+ } ,
288+
289+ setScaleX : function ( value , step )
290+ {
291+ Actions . SetScaleX ( this . children . entries , value , step ) ;
292+
293+ return this ;
294+ } ,
295+
296+ setScaleY : function ( value , step )
297+ {
298+ Actions . SetScaleY ( this . children . entries , value , step ) ;
299+
300+ return this ;
301+ } ,
302+
261303 setVisible : function ( value )
262304 {
263305 Actions . SetVisible ( this . children . entries , value ) ;
0 commit comments