Browse Subversion Repository
Contents of /trunk/LipSync/LipSync/Editor/CommandType.cs
Parent Directory
| Revision Log
Revision 20 -
( show annotations)
( download)
Sun Apr 11 06:29:55 2010 UTC
(3 years, 2 months ago)
by kbinani
File size: 1172 byte(s)
[trunk] NicoCommentのプラグイン設定を変更するとクラッシュするのを修正; コード冒頭の著作権表記(年)を更新
| 1 |
/*
|
| 2 |
* CommandType.cs
|
| 3 |
* Copyright (c) 2007-2010 kbinani
|
| 4 |
*
|
| 5 |
* This file is part of LipSync.
|
| 6 |
*
|
| 7 |
* LipSync is free software; you can redistribute it and/or
|
| 8 |
* modify it under the terms of the BSD License.
|
| 9 |
*
|
| 10 |
* LipSync is distributed in the hope that it will be useful,
|
| 11 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
| 12 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
| 13 |
*/
|
| 14 |
namespace LipSync {
|
| 15 |
|
| 16 |
public enum CommandType {
|
| 17 |
nothing,
|
| 18 |
addEntry,
|
| 19 |
deleteEntry,
|
| 20 |
editEntry,
|
| 21 |
addTimeTable,
|
| 22 |
deleteTimeTable,
|
| 23 |
editTimeTable,
|
| 24 |
addGroup, // CommandTarget == characterの時のみ
|
| 25 |
editGroup, // CommandTarget == characterの時のみ
|
| 26 |
deleteGroup, // CommandTarget == characterの時のみ
|
| 27 |
setPosition,
|
| 28 |
setImage,
|
| 29 |
changePluginConfig,
|
| 30 |
changeFps,
|
| 31 |
changeVideoSize,
|
| 32 |
shiftTimeTable,
|
| 33 |
changeScale,
|
| 34 |
setMP3,
|
| 35 |
addTelop,
|
| 36 |
addTelopRange,
|
| 37 |
editTelop,
|
| 38 |
deleteTelop,
|
| 39 |
deleteTelopRange,
|
| 40 |
setAvi,
|
| 41 |
changeBackgroundColor,
|
| 42 |
}
|
| 43 |
|
| 44 |
}
|
| 
|