mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-01-18 23:42:11 +00:00
Merge branch 'udmf-linedef-executors' into udmf-executor-triggers
This commit is contained in:
commit
3cc66ba9cb
3 changed files with 12 additions and 2 deletions
|
@ -2000,11 +2000,12 @@ linedeftypes
|
||||||
title = "Set Tagged Sector's Ceiling Height/Texture";
|
title = "Set Tagged Sector's Ceiling Height/Texture";
|
||||||
prefix = "(401)";
|
prefix = "(401)";
|
||||||
flags8text = "[3] Set delay by backside sector";
|
flags8text = "[3] Set delay by backside sector";
|
||||||
|
flags64text = "[6] Keep floor flat";
|
||||||
}
|
}
|
||||||
|
|
||||||
402
|
402
|
||||||
{
|
{
|
||||||
title = "Set Tagged Sector's Light Level";
|
title = "Copy Light Level to Tagged Sectors";
|
||||||
prefix = "(402)";
|
prefix = "(402)";
|
||||||
flags8text = "[3] Set delay by backside sector";
|
flags8text = "[3] Set delay by backside sector";
|
||||||
}
|
}
|
||||||
|
@ -2090,6 +2091,14 @@ linedeftypes
|
||||||
prefix = "(435)";
|
prefix = "(435)";
|
||||||
flags8text = "[3] Set delay by backside sector";
|
flags8text = "[3] Set delay by backside sector";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
467
|
||||||
|
{
|
||||||
|
title = "Set Tagged Sector's Light Level";
|
||||||
|
prefix = "(467)";
|
||||||
|
flags8text = "[3] Set delay by backside sector";
|
||||||
|
flags256text = "[8] Set relative to current";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
linedefexecplane
|
linedefexecplane
|
||||||
|
|
|
@ -231,6 +231,7 @@ void T_MoveFloor(floormove_t *movefloor)
|
||||||
remove = true;
|
remove = true;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
remove = true;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -3759,7 +3759,7 @@ static void P_ConvertBinaryMap(void)
|
||||||
case 401: //Set tagged sector's ceiling height/texture
|
case 401: //Set tagged sector's ceiling height/texture
|
||||||
lines[i].args[0] = tag;
|
lines[i].args[0] = tag;
|
||||||
lines[i].args[1] = lines[i].special - 400;
|
lines[i].args[1] = lines[i].special - 400;
|
||||||
lines[i].args[2] = !!(lines[i].flags & ML_NOCLIMB);
|
lines[i].args[2] = !(lines[i].flags & ML_NOCLIMB);
|
||||||
lines[i].special = 400;
|
lines[i].special = 400;
|
||||||
break;
|
break;
|
||||||
case 402: //Copy light level
|
case 402: //Copy light level
|
||||||
|
|
Loading…
Reference in a new issue