mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-12 23:54:35 +00:00
Invisible and Custom bridges now have RenderRadius -1 to prevent excessive linking
This commit is contained in:
parent
44c19b5ad9
commit
38cb7aeaaa
1 changed files with 2 additions and 0 deletions
|
@ -32,6 +32,7 @@ class CustomBridge : Actor native
|
||||||
+NOLIFTDROP
|
+NOLIFTDROP
|
||||||
+ACTLIKEBRIDGE
|
+ACTLIKEBRIDGE
|
||||||
Radius 32;
|
Radius 32;
|
||||||
|
RenderRadius -1;
|
||||||
Height 2;
|
Height 2;
|
||||||
RenderStyle "None";
|
RenderStyle "None";
|
||||||
}
|
}
|
||||||
|
@ -85,6 +86,7 @@ class InvisibleBridge : Actor native
|
||||||
{
|
{
|
||||||
RenderStyle "None";
|
RenderStyle "None";
|
||||||
Radius 32;
|
Radius 32;
|
||||||
|
RenderRadius -1;
|
||||||
Height 4;
|
Height 4;
|
||||||
+SOLID
|
+SOLID
|
||||||
+NOGRAVITY
|
+NOGRAVITY
|
||||||
|
|
Loading…
Reference in a new issue