diff options
author | Chuck Miller <shadowmil@gmail.com> | 2012-07-31 12:13:35 -0400 |
---|---|---|
committer | Erik Schilling <ablu.erikschilling@googlemail.com> | 2012-08-01 13:53:26 +0200 |
commit | 0ba2b8cf8040594b0780c66d68f32aba0cc56f89 (patch) | |
tree | 866235995a84bb7bb57bedef73a65c427db0ef21 /data/graphics/gui | |
parent | 40e15ec4676cf74713685c74f8feeeab6213ade7 (diff) | |
download | mana-0ba2b8cf8040594b0780c66d68f32aba0cc56f89.tar.gz mana-0ba2b8cf8040594b0780c66d68f32aba0cc56f89.tar.bz2 mana-0ba2b8cf8040594b0780c66d68f32aba0cc56f89.tar.xz mana-0ba2b8cf8040594b0780c66d68f32aba0cc56f89.zip |
Modify the NPC Dialog to be more RPG-Like
Diffstat (limited to 'data/graphics/gui')
-rw-r--r-- | data/graphics/gui/CMakeLists.txt | 2 | ||||
-rw-r--r-- | data/graphics/gui/colors.xml | 1 | ||||
-rw-r--r-- | data/graphics/gui/npcdialog.png | bin | 0 -> 8861 bytes | |||
-rw-r--r-- | data/graphics/gui/npcdialog.xml | 18 |
4 files changed, 21 insertions, 0 deletions
diff --git a/data/graphics/gui/CMakeLists.txt b/data/graphics/gui/CMakeLists.txt index 873cc40d..51782750 100644 --- a/data/graphics/gui/CMakeLists.txt +++ b/data/graphics/gui/CMakeLists.txt @@ -29,6 +29,8 @@ SET (FILES hscroll_right_pressed.png item_shortcut_bgr.png mouse.png + npcdialog.png + npcdialog.xml progress-indicator.png radioin.png radioin_highlight.png diff --git a/data/graphics/gui/colors.xml b/data/graphics/gui/colors.xml index 4a35d081..4d3e6e62 100644 --- a/data/graphics/gui/colors.xml +++ b/data/graphics/gui/colors.xml @@ -1,5 +1,6 @@ <colors> <color id="TEXT" color="#000000" /> + <color id="NPC_DIALOG_TEXT" color="#ffffff" /> <color id="SHADOW" color="#000000" /> <color id="OUTLINE" color="#000000" /> <color id="PROGRESS_BAR" color="#ffffff" /> diff --git a/data/graphics/gui/npcdialog.png b/data/graphics/gui/npcdialog.png Binary files differnew file mode 100644 index 00000000..553a2c95 --- /dev/null +++ b/data/graphics/gui/npcdialog.png diff --git a/data/graphics/gui/npcdialog.xml b/data/graphics/gui/npcdialog.xml new file mode 100644 index 00000000..16fff1af --- /dev/null +++ b/data/graphics/gui/npcdialog.xml @@ -0,0 +1,18 @@ +<skinset name="NpcDialog" image="npcdialog.png"> + <widget type="Window"> + <!-- Top Row --> + <part type="top-left-corner" xpos="0" ypos="0" width="4" height="4" /> + <part type="top-edge" xpos="4" ypos="0" width="32" height="4" /> + <part type="top-right-corner" xpos="36" ypos="0" width="4" height="4" /> + + <!-- Middle Row --> + <part type="left-edge" xpos="0" ypos="4" width="4" height="216" /> + <part type="bg-quad" xpos="4" ypos="4" width="32" height="216" /> + <part type="right-edge" xpos="36" ypos="4" width="4" height="216" /> + + <!-- Bottom Row --> + <part type="bottom-left-corner" xpos="0" ypos="220" width="4" height="4" /> + <part type="bottom-edge" xpos="4" ypos="220" width="32" height="4" /> + <part type="bottom-right-corner" xpos="36" ypos="220" width="4" height="4" /> + </widget> +</skinset> |