You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

16 lines
428 B

#pragma strict
public var grumpy:Texture2D;
private var grumpyRect:LTRect;
function Start () {
grumpyRect = new LTRect( -grumpy.width, 0.5*Screen.height - grumpy.height/2.0, grumpy.width, grumpy.height );
// Slide in
LeanTween.move(grumpyRect, new Vector2(0.5*Screen.width - grumpy.width/2.0, grumpyRect.rect.y ), 1.0).setEase(LeanTweenType.easeOutQuad);
}
function OnGUI(){
GUI.DrawTexture( grumpyRect.rect, grumpy);
}