Zoom

1.1新特性。对游戏进行整体缩放,常用于必杀特写。

必要参数:

可选参数:
scale = value (float)
摄像机缩放比例,1为100%,2.5为缩放至原大小的250%,不能小于1,否则会无效。
注意:该比例以当前屏幕缩放(CameraZoom)为基础进行缩放,而不是在CameraZoom=1.0时候。
如当前CameraZoom=0.5,此参数scale=2.5,则最终得到的屏幕缩放比例为:0.5*2.5=1.25,即此时的屏幕大小为125%。
如果人物在不停的上下左右移动,导致CameraZoom数值变化,那么最终的屏幕缩放也会随之变化。
故如果在带有缩放的场景(zoomout zoomin)中使用此缩放时,需要在CameraZoom变化时做相应变化。

pos = x, y(int)
摄像机变焦的位置,该位置相对于场景中心。该位置为绝对屏幕坐标。

lag = value(float)
变焦的速度,大于和等于1会无效(必须大于0,小于1),数值越小速度越快,数值越大速度越慢。

替代语法:

示例1:
[State -2]
type = Zoom
triggerall = !ishelper
trigger1 = win
scale = 1.5
pos = pos x,-15
lag = 0.1

[State -2]
type = Zoom
triggerall = !ishelper
trigger1 = lose
scale = 1.5
pos = (enemy,pos x),-15
lag = 0.1

示例2:
[State -2, 1.5倍缩放,请确保p1在屏幕中央附近]
type = Zoom
triggerall = !ishelper
trigger1 = 1
scale = 1.5/CameraZoom
pos = pos x,pos y
lag = 0.1

示例3:
[State -2, 1.5倍缩放]
type = Zoom
triggerall = !ishelper
trigger1 = 1
scale = 1.5
pos = pos x,pos y
lag = 0.1

[State -2]
type = ScreenBound
triggerall = !ishelper
trigger1 = 1
value = 1