mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-13 07:57:52 +00:00
- added option to set custom end sequences: Use 'next = endsequence, "sequencename" in MAPINFO.
SVN r2929 (trunk)
This commit is contained in:
parent
45f3ef91d3
commit
d969b141b8
1 changed files with 6 additions and 0 deletions
|
@ -771,6 +771,12 @@ FName FMapInfoParser::CheckEndSequence()
|
||||||
{
|
{
|
||||||
seqname = "Inter_Titlescreen";
|
seqname = "Inter_Titlescreen";
|
||||||
}
|
}
|
||||||
|
else if (sc.Compare("endsequence"))
|
||||||
|
{
|
||||||
|
ParseComma();
|
||||||
|
sc.MustGetString();
|
||||||
|
seqname = sc.String;
|
||||||
|
}
|
||||||
|
|
||||||
if (seqname != NULL)
|
if (seqname != NULL)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue