mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2025-01-19 06:51:09 +00:00
Fixed BCS importing and added missing sector actions (#785)
This commit is contained in:
parent
d16ffe135a
commit
5f677e9ad6
3 changed files with 37 additions and 1 deletions
|
@ -9,7 +9,7 @@ compilers
|
|||
{
|
||||
interface = "AccCompiler";
|
||||
program = "bcc.exe";
|
||||
zcommon = "zcommon.acs";
|
||||
zcommon = "zcommon.bcs";
|
||||
std = "std.acs";
|
||||
}
|
||||
}
|
||||
|
|
0
Build/Compilers/BCC/zcommon.acs → Build/Compilers/BCC/zcommon.bcs
Executable file → Normal file
0
Build/Compilers/BCC/zcommon.acs → Build/Compilers/BCC/zcommon.bcs
Executable file → Normal file
|
@ -971,6 +971,42 @@ zdoom
|
|||
fixedsize = true;
|
||||
sprite = "internal:action";
|
||||
|
||||
9600
|
||||
{
|
||||
title = "Sector Floor Damaged";
|
||||
class = "SecActDamageFloor";
|
||||
}
|
||||
|
||||
9601
|
||||
{
|
||||
title = "Sector Ceiling Damaged";
|
||||
class = "SecActDamageCeiling";
|
||||
}
|
||||
|
||||
9602
|
||||
{
|
||||
title = "Sector Floor Died";
|
||||
class = "SecActDeathFloor";
|
||||
}
|
||||
|
||||
9603
|
||||
{
|
||||
title = "Sector Ceiling Died";
|
||||
class = "SecActDeathCeiling";
|
||||
}
|
||||
|
||||
9604
|
||||
{
|
||||
title = "3D Sector Damaged";
|
||||
class = "SecActDamage3D";
|
||||
}
|
||||
|
||||
9605
|
||||
{
|
||||
title = "3D Sector Died";
|
||||
class = "SecActDeath3D";
|
||||
}
|
||||
|
||||
9082
|
||||
{
|
||||
title = "Silent Sector";
|
||||
|
|
Loading…
Reference in a new issue