mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-10 06:41:41 +00:00
- fixed: RenderRadius needs to be serialized.
- fixed: CustomBridge can be visible so it shouldn't be completely excluded from the render lists.
This commit is contained in:
parent
38cb7aeaaa
commit
89b7cf4262
2 changed files with 1 additions and 1 deletions
|
@ -374,6 +374,7 @@ void AActor::Serialize(FSerializer &arc)
|
|||
A("floorsector", floorsector)
|
||||
A("ceilingsector", ceilingsector)
|
||||
A("radius", radius)
|
||||
A("renderradius", renderradius)
|
||||
A("height", Height)
|
||||
A("ppassheight", projectilepassheight)
|
||||
A("vel", Vel)
|
||||
|
|
|
@ -32,7 +32,6 @@ class CustomBridge : Actor native
|
|||
+NOLIFTDROP
|
||||
+ACTLIKEBRIDGE
|
||||
Radius 32;
|
||||
RenderRadius -1;
|
||||
Height 2;
|
||||
RenderStyle "None";
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue