日本語で読みたかったので自分用に作成。
自分用なのでMarkdownで書いたやつをGithub Gist任せにしてそのまま上げてるだけです。
こちらを参考にしてます。
目次が長すぎるのでスマホだと読みづらいかも。
バージョン: v0.10.15
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!python3 | |
# coding: utf-8 | |
# 必要なモジュール | |
import os.path | |
import time | |
import sys | |
import re | |
from urllib.request import urlopen | |
from bs4 import BeautifulSoup |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- === エディタ上で表示する情報を返す === | |
function GetInfo() | |
local info = { | |
name = "rect-wipe-in", | |
displayname = { | |
en = "Rect-wipe-in", | |
ja = "ワイプ(四角形/内側)" | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--track0:時間(s),0,10,0.5,0.01 | |
--track1:重み,0.01,6.00,2.00,0.01 | |
--check0:イン→アウト,0 | |
--dialog:フェードイン/chk,fade_in=1;フェードアウト/chk,fade_out=1; | |
local effect_time = obj.track0 | |
local power = 1.0 / obj.track1 | |
local is_in_out = obj.check0 == 1 | |
local t = obj.time | |
local tt = obj.totaltime |