-
Notifications
You must be signed in to change notification settings - Fork 0
/
layout.edc
40 lines (38 loc) · 919 Bytes
/
layout.edc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
collections {
images {
image: "logo.png" COMP;
}
group { name: "main";
min : 50 20;
max: 721 700;
parts {
part { name: "rect";
type: SWALLOW;
description { state: "default" 0.0;
rel1.relative: 0.0 0.0;
rel2.relative: 1.0 1.0;
//image.normal:"logo.png";
//aspect:1 1;
//aspect_preference: BOTH;
/*color: 223 136 170 255;*/
}
}
}
/*
programs {
program { name: "mouse_down";
signal: "mouse,down,1";
source: "logo";
action: STATE_SET "hide" 0.0;
target: "logo";
}
program { name: "mouse_up";
signal: "mouse,up,1";
source: "logo";
action: STATE_SET "default" 0.0;
target: "logo";
}
}
*/
}
}