Subversion Repositories AndroidProjects

Rev

Rev 614 | Blame | Compare with Previous | Last modification | View Log | RSS feed

Menu "TitleMenu"
{
        origin 0, 0;
        fadeTime 0.2;

        Image "bg"
        {
                position 0, 0;
                size 480, 800;
                align top, left;
                texture "data/textures/black.png";
                color 1, 1, 1, 0.7;
        }
        
        Image "dlg"
        {
                position 0, 150;
                size 480, 500;
                align top, left;
                texture "data/textures/clouds.png";
                color 1, 1, 1, 0.9;
                //color 0.35, 0.25, 0.35, 0.8;
        }
        
        Image "bar1"
        {
                position 0, 150;
                size 480, 12;
                align top, center;
                texture "data/textures/bar_horiz.png";
        }
        
        Image "bar2"
        {
                position 0, 650;
                size 480, 12;
                align top, center;
                texture "data/textures/bar_horiz.png";
        }

        SegmentButton "Exit"
        {
                position 240, 380;
                size 280, 100;
                caption "RETRY";
                align center, center;
                texture "data/textures/simplebutton.png";
                pushTexture "data/textures/simplebutton_pushed.png";
                scale 3;
                font "scoring";
                color 1, 1, 1, 1;
                pushColor 1, 1, 1, 1;
                pushOffset 0, 2;
                onTouch "restart";
                                
                //clickSound "menu_click";
                pushSound "menu_push";
        }

        SegmentButton "Exit"
        {
                position 240, 500;
                size 280, 100;
                caption "Exit to Menu";
                align center, center;
                texture "data/textures/simplebutton.png";
                pushTexture "data/textures/simplebutton_pushed.png";
                scale 3;
                font "scoring";
                color 1, 1, 1, 1;
                pushColor 1, 1, 1, 1;
                pushOffset 0, 2;
                onTouch "exit_to_menu";
                                
                //clickSound "menu_click";
                pushSound "menu_push";
        }

}