Subversion Repositories AndroidProjects

Rev

Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

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

        SegmentButton "sounds"
        {
                position 240, 300;
                size 280, 100;
                caption "SOUNDS: ON";
                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 "sounds";
                                
                pushSound "menu_push";
        }
        
        SegmentButton "music"
        {
                position 240, 450;
                size 280, 100;
                caption "MUSIC: ON";
                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 "music";
                                
                pushSound "menu_push";
        }

        SegmentButton "back"
        {
                position 240, 600;
                size 280, 100;
                caption "BACK";
                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 "back";
                                
                pushSound "menu_push";
        }

}