summaryrefslogtreecommitdiff
path: root/ui/main.menu
diff options
context:
space:
mode:
authorIronClawTrem <louie.nutman@gmail.com>2020-02-16 03:40:06 +0000
committerIronClawTrem <louie.nutman@gmail.com>2020-02-16 03:40:06 +0000
commit425decdf7e9284d15aa726e3ae96b9942fb0e3ea (patch)
tree6c0dd7edfefff1be7b9e75fe0b3a0a85fe1595f3 /ui/main.menu
parentccb0b2e4d6674a7a00c9bf491f08fc73b6898c54 (diff)
create tremded branch
Diffstat (limited to 'ui/main.menu')
-rw-r--r--ui/main.menu163
1 files changed, 0 insertions, 163 deletions
diff --git a/ui/main.menu b/ui/main.menu
deleted file mode 100644
index 488fe69..0000000
--- a/ui/main.menu
+++ /dev/null
@@ -1,163 +0,0 @@
-#include "ui/menudef.h"
-
-{
- assetGlobalDef
- {
- font "fonts/font" 26 // font
- smallFont "fonts/smallfont" 20 // font
- bigFont "fonts/bigfont" 34 // font
- cursor "ui/assets/3_cursor3" // cursor
- gradientBar "ui/assets/gradientbar2.tga" // gradient bar
- itemFocusSound "sound/misc/menu2.wav" // sound for item getting focus (via keyboard or mouse )
-
- fadeClamp 1.0 // sets the fadeup alpha
- fadeCycle 1 // how often fade happens in milliseconds
- fadeAmount 0.1 // amount to adjust alpha per cycle
-
- shadowColor 0.1 0.1 0.1 0.25 // shadow color
- }
-
-
-
-
-
- menuDef
- {
- name main
- fullScreen MENU_TRUE
- rect 0 0 640 480 // Size and position of the menu
- visible MENU_TRUE // Visible on open
- focusColor 1 .75 0 1 // Menu focus color for text and items
-
- onOpen { uiScript stopRefresh ; playlooped "sound/ui/heartbeat.wav" }
- onESC { open quit_popmenu }
-
- itemDef
- {
- name background
- rect 0 0 640 480
- style WINDOW_STYLE_SHADER
- backcolor 0 0 0 1
- visible 1
- decoration
- background "ui/assets/mainmenu.jpg"
- }
-
- itemDef
- {
- name splashmodel
- rect 0 0 640 480
- type ITEM_TYPE_MODEL
- style WINDOW_STYLE_EMPTY
- asset_model "models/splash/splash_screen.md3"
- model_fovx 32.0
- model_fovy 24.0
- model_angle 180
- visible 1
- decoration
- }
-
- itemDef
- {
- name mainmenu
- text "Play"
- type ITEM_TYPE_BUTTON
- style WINDOW_STYLE_EMPTY
- textstyle ITEM_TEXTSTYLE_NORMAL
- rect 472 20 128 20
- textalign ITEM_ALIGN_RIGHT
- textalignx 128
- textaligny 20
- textscale .416
- forecolor 1 1 1 1
- visible 1
- action
- {
- play "sound/misc/menu1.wav";
- close main;
- open joinserver
- }
- }
-
- itemDef
- {
- name mainmenu
- text "Options"
- type ITEM_TYPE_BUTTON
- style WINDOW_STYLE_EMPTY
- textstyle ITEM_TEXTSTYLE_NORMAL
- textscale .416
- rect 472 40 128 20
- textalignx 128
- textaligny 20
- textalign ITEM_ALIGN_RIGHT
- backcolor 0 0 0 0
- forecolor 1 1 1 1
- visible 1
- action
- {
- play "sound/misc/menu1.wav";
- open simple_options
- }
- }
-
- itemDef
- {
- name mainmenu
- text "Mods"
- type ITEM_TYPE_BUTTON
- style WINDOW_STYLE_EMPTY
- textstyle ITEM_TEXTSTYLE_NORMAL
- textscale .416
- rect 472 60 128 20
- textalignx 128
- textaligny 20
- textalign ITEM_ALIGN_RIGHT
- backcolor 0 0 0 0
- forecolor 1 1 1 1
- visible 1
- action
- {
- play "sound/misc/menu1.wav";
- open mod
- }
- }
-
- itemDef
- {
- name mainmenu
- text "Quit"
- type ITEM_TYPE_BUTTON
- style WINDOW_STYLE_EMPTY
- textstyle ITEM_TEXTSTYLE_NORMAL
- rect 472 80 128 20
- textalignx 128
- textaligny 20
- textscale .416
- textalign ITEM_ALIGN_RIGHT
- forecolor 1 1 1 1
- visible 1
- action
- {
- play "sound/misc/menu1.wav";
- open quit_popmenu
- }
- }
-
- itemDef
- {
- name copyright
- text "Tremulous (C) 2005-2006 darklegion development"
- style WINDOW_STYLE_EMPTY
- textstyle ITEM_TEXTSTYLE_NORMAL
- textscale .25
- rect 0 440 640 40
- textalign 1
- textaligny 32
- textalignx 320
- forecolor .75 .75 .75 .75
- visible 1
- decoration
- }
- }
-}