플래시 플레이어에서는 회전시키기 위해 rotation 속성을 사용하지만
Starling 에서는 radian 값을 사용한다.
degree 를 사용하여 회전을 시키고 싶다면
starling.utils.deg2rad 함수를 사용하여 변환하면 된다.
sp.rotation = deg2rad( Math.random() * 360 );
모든 DisplayObject 는 pivotX 와 pibotY 속성을 갖고 있으며
이를 이용해서 런타임 때 중심점을 바꾸는 것도 가능.
sp.pibotX = sp.width / 2;
sp.pibotY = sp.height / 2;