| 
UID2积分8682帖子2905主题199论坛币13044 威望16 EP值2349 MP值15 阅读权限200注册时间2011-8-3在线时间2597 小时最后登录2024-8-28
 
   
 | 
| 说明: 本文适用于TCAX Beta3及以后版本 
 
 内置特效
 
 是一些编写好的可以直接拿来用于特效制作的脚本. 存放在TCAX程序根目录中的scripts文件夹下, 共有6种类型的内置特效脚本. 通过脚本的排列组合 (同一个脚本可以在一个特效中使用多次, 一句特效也能使用多个脚本), 以及设定好ASS Style, 即可方便制地作出特效.
 
 
 使用实例
 
 下载地址: http://tcxcore.googlecode.com/files/test_built_in.zip
 
 
 使用方式
 
 通过直接编辑TCC文件来使用内置特效. 指定使用的脚本可以通过: < py file = !特效类型_ID.py> (见实例).
 
 实例 (灰色部分建议不要改动, 红色部分为指定内所用脚本, 绿色部分为设置Style)
 
 # tcc file version
 
 < tcc file version = 1.0 >
 
 
 # mode configuration
 
 < inherit ass header = false >
 < k mode = syllable >
 < text layout = horizontal >
 < tcaxpy init = true >
 < tcaxpy user = false >
 < tcaxpy fin = true >
 
 
 # py settings
 
 < py file = !in_009.py >    < beg line = 1 >    < end line = 0 >
 < py file = !main_001.py >    < beg line = 1 >    < end line = 0 >
 < py file = !eft_003.py >    < beg line = 1 >    < end line = 0 >
 < py file = !eft_002.py >    < beg line = 1 >    < end line = 0 >
 < py file = !out_003.py >    < beg line = 1 >    < end line = 0 >
 < py file = !ext_001.py >    < beg line = 1 >    < end line = 0 >
 
 
 # main settings
 
 < k-timed ass file = Railgun_ED_k.ass >
 < font file = DFGRyuSekiG-W9.TTC >    < font face id = 2 >    < font size = 41 >
 < fx width = 1280 >    < fx height = 720 >    < fx fps = 23.976 >
 < alignment = 2 >
 < x offset = 20 >    < y offset = 15 >
 < spacing = 2 >    < space scale = 1.0 >
 
 
 # style settings
 
 < font face name = "" >
 < bord = 3 >    < shad = 0 >
 < primary color = FF0000 >    < secondary color = 8000AA >    < outline color = FFFF00 >    < back color = 000000 >
 < primary alpha = 0 >    < secondary alpha = 0 >    < outline alpha = 0 >    < back alpha = 100 >
 
 
 # additional settings
 
 < blur = 1.0 >
 
 
 | 
 |