aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/ClientHamr/extantz/extantz.edc
diff options
context:
space:
mode:
authorDavid Walter Seikel2013-01-13 17:51:58 +1000
committerDavid Walter Seikel2013-01-13 17:51:58 +1000
commit4fe55afb81dddb5bec09d1a874c42459ba947847 (patch)
tree5e8f1c834de75cddc2c33509457a00e9a2d1cb33 /ClientHamr/extantz/extantz.edc
parentAdded more media, including a link to the Irrlicht media, and some images fro... (diff)
downloadSledjHamr-4fe55afb81dddb5bec09d1a874c42459ba947847.zip
SledjHamr-4fe55afb81dddb5bec09d1a874c42459ba947847.tar.gz
SledjHamr-4fe55afb81dddb5bec09d1a874c42459ba947847.tar.bz2
SledjHamr-4fe55afb81dddb5bec09d1a874c42459ba947847.tar.xz
Major rework of extantz to get Elementary, ePhysics, Evas_GL, and Irrlicht to play nice together.
Diffstat (limited to 'ClientHamr/extantz/extantz.edc')
-rw-r--r--ClientHamr/extantz/extantz.edc30
1 files changed, 30 insertions, 0 deletions
diff --git a/ClientHamr/extantz/extantz.edc b/ClientHamr/extantz/extantz.edc
new file mode 100644
index 0000000..b4ed0b3
--- /dev/null
+++ b/ClientHamr/extantz/extantz.edc
@@ -0,0 +1,30 @@
1externals {
2 external: "elm";
3}
4
5collections {
6#define ADD_CUBE(_group, _file) \
7 images { \
8 image: #_file##".png" COMP; \
9 } \
10 group { \
11 name: #_group; \
12 parts { \
13 part { \
14 name: "cube"; \
15 type: IMAGE; \
16 mouse_events: 1; \
17 repeat_events: 0; \
18 description { \
19 state: "default" 0.0; \
20 image.normal: #_file##".png"; \
21 } \
22 } \
23 } \
24 }
25
26ADD_CUBE(blue-cube, cube-blue);
27ADD_CUBE(purple-cube, cube-purple);
28
29#undef ADD_CUBE
30}