blob: a448d87587d24d18a372aad002af24184a6bde69 (
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
|
<?xml version="1.0" encoding="utf-8"?>
<window>
<animation type="WindowOpen" reversible="false">
<effect type="zoom" start="80" end="100" center="960,540" tween="back" time="240" />
<effect type="fade" end="100" time="240" />
</animation>
<animation type="WindowClose" reversible="false">
<effect type="zoom" start="100" end="80" center="960,540" easing="in" tween="back" time="240" />
<effect type="fade" start="100" end="0" time="240" />
</animation>
<controls>
<control type="group">
<visible>String.IsEmpty(Window(Home).Property(script.cinemavision.running))</visible>
<animation type="Visible" reversible="false">
<effect type="zoom" start="80" end="100" center="960,540" tween="back" time="240" />
<effect type="fade" end="100" time="240" />
</animation>
<animation type="Hidden" reversible="false">
<effect type="zoom" start="100" end="80" center="960,540" easing="in" tween="back" time="240" />
<effect type="fade" start="100" end="0" time="240" />
</animation>
<visible>!Window.IsActive(startup)</visible>
<control type="image">
<texture>colors/black.png</texture>
<include>FullScreenDimensions</include>
<animation effect="fade" start="100" end="70" time="0" condition="true">Conditional</animation>
<animation effect="fade" start="100" end="0" time="240" condition="Window.IsVisible(fullscreenvideo)">Conditional</animation>
<animation effect="fade" end="100" time="560">WindowOpen</animation>
<animation effect="fade" start="100" end="0" time="240">WindowClose</animation>
</control>
<control type="image">
<depth>DepthMax</depth>
<left>920</left>
<top>513</top>
<width>80</width>
<height>80</height>
<aspectratio>keep</aspectratio>
<animation effect="rotate" end="-45" center="auto" time="200" delay="600" loop="true" reversible="false" condition="true">Conditional</animation>
<texture colordiffuse="button_focus">spinner.png</texture>
<animation effect="fade" end="100" time="300" delay="200">WindowOpen</animation>
</control>
<control type="image">
<depth>DepthMax</depth>
<left>935</left>
<top>528</top>
<width>50</width>
<height>50</height>
<aspectratio>keep</aspectratio>
<animation effect="rotate" end="45" center="auto" time="200" delay="600" loop="true" reversible="false" condition="true">Conditional</animation>
<texture flipx="true" colordiffuse="button_focus">spinner.png</texture>
<animation effect="fade" end="100" time="300" delay="200">WindowOpen</animation>
</control>
<control type="progress" id="10">
<left>920</left>
<top>620</top>
<width>80</width>
<height>24</height>
<animation effect="fade" end="100" time="300" delay="200">WindowOpen</animation>
</control>
</control>
</controls>
</window>
|