Re-integrated anim in trunk, fixing the 999-layer limit at the same time

git-svn-id: svn://pulkomandy.tk/GrafX2/trunk@1841 416bcca6-2ee7-4201-b75f-2eb2f807beb1
This commit is contained in:
Yves Rizoud
2011-10-19 23:35:56 +00:00
parent 775ee56ed0
commit 8fb16e7089
28 changed files with 753 additions and 174 deletions

View File

@@ -1657,6 +1657,54 @@ T_Key_config ConfigKey[NB_SHORTCUTS] = {
true,
0,
0},
{200,
"Set frame time",
"Opens a window where you",
"can set the current animation",
"frame duration.",
true,
0, // No shortcut
0},
{201,
"Go to first frame",
"Edits the first frame of",
"an animation",
"",
true,
0, // No shortcut
0},
{202,
"Go to last frame",
"Edits the last frame of",
"an animation",
"",
true,
0, // No shortcut
0},
{203,
"Go to previous frame",
"Edits the previous frame of",
"an animation",
"",
true,
0, // No shortcut
0},
{204,
"Go to next frame",
"Edits the next frame of",
"an animation",
"",
true,
0, // No shortcut
0},
{205,
"Preview animation",
"Runs the current animation.",
"",
"",
true,
0, // No shortcut
0},
};
word Ordering[NB_SHORTCUTS]=
@@ -1861,4 +1909,10 @@ word Ordering[NB_SHORTCUTS]=
SPECIAL_CYCLE_MODE,
SPECIAL_FORMAT_CHECKER,
SPECIAL_FORMAT_CHECKER_MENU,
0x100+BUTTON_ANIM_TIME,
0x100+BUTTON_ANIM_FIRST_FRAME,
0x100+BUTTON_ANIM_LAST_FRAME,
0x100+BUTTON_ANIM_PREV_FRAME,
0x100+BUTTON_ANIM_NEXT_FRAME,
0x100+BUTTON_ANIM_PLAY,
};