blob: 5cc7196835accdd754f9be22fe4f7e52c0ee47e2 (
plain)
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
<?xml version="1.0"?>
<compiz>
<plugin name="3d" useBcop="true">
<_short>3D Windows</_short>
<_long>Elevates windows while rotating the cube</_long>
<category>Effects</category>
<deps>
<requirement>
<plugin>cube</plugin>
</requirement>
<relation type="before">
<plugin>cube</plugin>
</relation>
</deps>
<screen>
<group>
<_short>Misc. Options</_short>
<option name="window_match" type="match">
<_short>Window Match</_short>
<_long>Windows that should be handled by 3D</_long>
<default>Toolbar | Utility | Dialog | Normal | Unknown</default>
</option>
<option name="space" type="float">
<_short>Window Space</_short>
<_long>Change the amount of space between the windows.</_long>
<default>0.02</default>
<min>0.0</min>
<max>1.0</max>
<precision>0.001</precision>
</option>
<option name="speed" type="float">
<_short>Animation Speed</_short>
<_long>Change the speed of the 3D animation</_long>
<default>0.02</default>
<min>0.0</min>
<max>1.0</max>
<precision>0.001</precision>
</option>
<option name="width" type="float">
<_short>Window Width</_short>
<_long>Window width</_long>
<default>0.3</default>
<min>0.0</min>
<max>1.0</max>
<precision>0.001</precision>
</option>
<option name="mipmaps" type="bool">
<_short>Create Mipmaps</_short>
<_long>This will create mipmaps which improve overall texture appearence, and reduce jagged edges.</_long>
<default>false</default>
</option>
<option name="disable_culling" type="bool">
<_short>Draw Window Backsides</_short>
<_long>Enables the drawing of the backside of windows.</_long>
<default>true</default>
</option>
<option name="disable_caps" type="bool">
<_short>Disable Caps for Inside Cube</_short>
<_long>Disables the drawing of the cube caps when the inside cube mode is set.</_long>
<default>true</default>
</option>
<option name="manual_only" type="bool">
<_short>3D Only On Mouse Rotate</_short>
<_long>Initiates the 3D display only if rotate is mouse driven. (Ex. You rotate the cube via the mouse)</_long>
<default>true</default>
</option>
</group>
<group>
<_short>Corner Bevelling</_short>
<option name="bevel" type="int">
<_short>Bevel Corners</_short>
<_long>Roundoff corners for consistency with rounded decorations</_long>
<default>0</default>
<min>0</min>
<max>20</max>
</option>
<option name="bevel_topleft" type="bool">
<_short>Bevel Top Left</_short>
<_long>Bevel top left corner</_long>
<default>true</default>
</option>
<option name="bevel_topright" type="bool">
<_short>Bevel Top Right</_short>
<_long>Bevel top right corner</_long>
<default>true</default>
</option>
<option name="bevel_bottomleft" type="bool">
<_short>Bevel Bottom Left</_short>
<_long>Bevel bottom left corner</_long>
<default>false</default>
</option>
<option name="bevel_bottomright" type="bool">
<_short>Bevel Bottom Right</_short>
<_long>Bevel bottom right corner</_long>
<default>false</default>
</option>
</group>
</screen>
</plugin>
</compiz>
|