Fade

Inherits from : IWait

{
    "key": "fade_1",
    "time": "2",
    "layer": -50,
    "from": {
        "r" : 1,
        "g" : 1,
        "b" : 1,
        "a" : 1
    },
    "to": {
        "r" : 0,
        "g" : 0,
        "b" : 0,
        "a" : 0
    },
    "type": "Fade"
}
    
key type notes
key string 参照キー
time float フェード時間(s)
layer int 表示レイヤー
position JNVector3 位置
from JNColor フェードの始点色
to JNColor フェードの終点色


FadeIn

Inherits from : IWait

{
    "key": "fade_1",
    "time": "1",
    "layer": -50,
    "color": {
        "r" : 1,
        "g" : 1,
        "b" : 1
    },
    "type": "FadeIn"
}
    
key type notes
key string 参照キー
time float フェード時間(s)
layer int 表示レイヤー
position JNVector3 位置
color JNColor


FadeOut

Inherits from : IWait

{
    "key": "fade_1",
    "time": "1",
    "layer": -50,
    "color": {
        "r" : 1,
        "g" : 1,
        "b" : 1
    },
    "type": "FadeOut"
}
    
key type notes
key string 参照キー
time float フェード時間(s)
layer int 表示レイヤー
position JNVector3 位置
color JNColor


FadeOff

Inherits from : IWait

{
    "key": "fade_1",
    "time": "1",
    "layer": -50,
    "color": {
        "r" : 1,
        "g" : 1,
        "b" : 1
    },
    "type": "FadeOff"
}
    
key type notes
key string 参照キー
time float フェード時間(s)
layer int 表示レイヤー
position JNVector3 位置
color JNColor
FadeOutとの違い