ユーザ用ツール

サイト用ツール


faq

文書の過去の版を表示しています。


■ ■ ■ ■ FAQ ■ ■ ■ ■

Q.BGMのフェードインはどうすればよいですか?

A.fadebgmタグを使います


[macro name=‗BGM_FADEIN]
@bgmopt volume=0
@playbgm storage=%storage
@fadebgm time=%time|1000 volume=100
[endmacro]

※iOSはfadebgmが効きません(2021.07現在)

Q.SEのフェードアウト、フェードインはありますか?

A.fadeseタグを使います。

[macro name=FADEIN_SE]
@stopse buf=%buf|0
@seopt volume=0 buf=%buf|0
@playse buf=%buf|0 storage=%se loop=%loop|false
@fadese volume=100 buf=%buf time=%time|1000
[endmacro]

[macro name=FADEOUT_SE]
@fadese volume=0 buf=%buf|0 time=%time|1000
@ws buf=%buf|0 canskip=true
@seopt volume=100 buf=%buf|0
[endmacro]

※iOSはfadebgmが効きません(2021.07現在)

Q.顔絵の切替時に一瞬暗くなるのですがなんとかなりますか?

A.fronttext=trueを指定したレイヤのtransで発生します。
以下のマクロで代替えできます。

[macro name=change_face]
@image layer=newface storage=%hoge opacity=0 fronttext=true visible=true left=xxx top=xxx
@move layer=newface path=(,,255) time=500
@wm
@copylay srclayer=newface destlayer=oldface
@freeimage layer=newface
[endmacro]
faq.1627008176.txt.gz · 最終更新: 2021/07/23 11:42 by yam