-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexo.py
More file actions
89 lines (86 loc) · 1.27 KB
/
Copy pathexo.py
File metadata and controls
89 lines (86 loc) · 1.27 KB
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
class EXOTemplate:
INIT="""[exedit]
width={project_width}
height={project_height}
rate={project_framerate}
scale=1
length={project_length}
audio_rate=44100
audio_ch=2
"""
BACK="""[{obj_id}]
start={start}
end={end}
layer={layer}
overlay=1
camera=0
[{obj_id}.0]
_name=画像ファイル
file={file}
[{obj_id}.1]
_name=標準描画
X={x}.0
Y={y}.0
Z=0.0
拡大率=100.00
透明度=0.0
回転=0.00
blend=0
[{obj_id}.2]
_name=クリッピング
上={clip_up}
下={clip_bottom}
左=0
右=0
"""
FRONT="""[{obj_id}]
start={start}
end={end}
layer={layer}
overlay=1
camera=0
[{obj_id}.0]
_name=画像ファイル
file={file}
[{obj_id}.1]
_name=クリッピング
上={clip_up}
下={clip_bottom}
左=0,0,1
右=0
中心の位置を変更=0
[{obj_id}.2]
_name=標準描画
X={x}.0
Y={y}.0
Z=0.0
拡大率=100.00
透明度=0.0
回転=0.00
blend=0
"""
FRONT_CHAIN="""[{obj_id}]
start={start}
end={end}
layer={layer}
overlay=1
camera=0
chain=1
[{obj_id}.0]
_name=画像ファイル
[{obj_id}.1]
_name=クリッピング
上={clip_up}
下={clip_bottom}
左={left},{right},1
右=0
中心の位置を変更=0
[{obj_id}.2]
_name=標準描画
X={x}.0
Y={y}.0
Z=0.0
拡大率=100.00
透明度=0.0
回転=0.00
"""