文字一级父层组控制

最基本父级加子级

| | |
子 子 子

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
def text groupP1 {
content = " "
fontSize = 100%
x = 50%
y = 50%
anchorX = 0.5
anchorY = 0.5
rotateZ = 0
alpha = 1
zIndex = 10
}
set groupP1 { }0s
then set groupP1{scale = 0.5 }0.6s,"cubic-bezier(0.95,0.05,0.795,0.035)"//easing22
//1.68 2.26

def text t1 {
parent = "groupP1"
content = "あ"
fontFamily = "MS Gothic"
fontSize = 15.6%
anchorX = 0.5
anchorY = 0.5
color = 0xffffff
textShadow = 0
strokeWidth = 0
zIndex = 10
alpha = 0
x = 50%
y = 50%
}

def text t2 {
parent = "groupP1"
content = "ら"
fontFamily = "MS Gothic"
fontSize = 15.6%
anchorX = 0.5
anchorY = 0.5
color = 0xffffff
textShadow = 0
strokeWidth = 0
zIndex = 10
alpha = 0
x = 50%
y = 50%
}

def text t3 {
parent = "groupP1"
content = "ま"
fontFamily = "MS Gothic"
fontSize = 15.6%
anchorX = 0.5
anchorY = 0.5
color = 0xffffff
textShadow = 0
strokeWidth = 0
zIndex = 10
alpha = 0
x = 50%
y = 50%
}

set t1{alpha = 1 x= 25% y= 37% }0s,"step-end"
then set t1{x= 34.7% y= 50%}1s,"cubic-bezier(0.19,1,0.22,1)"//easing23

set t2{alpha = 1 x= 50% y= 74% }0.1s,"step-end"
then set t2{x= 50% y= 50%}1s,"cubic-bezier(0.19,1,0.22,1)"//easing23

set t3{alpha = 1 x= 75% y= 31% }0.2s,"step-end"
then set t3{x= 66% y= 50%}1s,"cubic-bezier(0.19,1,0.22,1)"//easing23

文字并联属性

通过设置多级父级实现属性并联执行
子2
|
子1

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
def text tP1 {
content = " "
fontSize = 100%
x = 50%
y = 50%
anchorX = 0.5
anchorY = 0.5
rotateZ = 0
scale = 1
}
set tP1 { scale = 2 }1s,"cubic-bezier(0.95,0.05,0.795,0.035)"//easing22


def text t1 {
parent = "tP1"
content = "孤独"
fontFamily = "MS Gothic"
fontSize = 10%
anchorX = 0.5
anchorY = 0.5
color = 0xffffff
textShadow = 0
strokeWidth = 0
zIndex = 10
x = 50%
y = 50%
}

set t1 { y= 100% }0s
then set t1 { y= 50%}1s,"cubic-bezier(0.19,1,0.22,1)"//easing23

小幅度版

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
def text tP1 {
content = " "
fontSize = 100%
x = 50%
y = 50%
anchorX = 0.5
anchorY = 0.5
rotateZ = 0
scale = 1
}
set tP1 { scale = 1.25 }0.5s,"cubic-bezier(0.6,0.04,0.98,0.335)"//easing22


def text t1 {
parent = "tP1"
content = "孤独"
fontFamily = "MS Gothic"
fontSize = 10%
anchorX = 0.5
anchorY = 0.5
color = 0xffffff
textShadow = 0
strokeWidth = 0
zIndex = 10
x = 50%
y = 50%
}

set t1 { y= 60% }0s
then set t1 { y= 50%}1s,"cubic-bezier(0.19,1,0.22,1)"//easing23