zscript-doc/api/level/SectorEffect.md

23 lines
311 B
Markdown
Raw Permalink Normal View History

2018-12-29 16:05:19 -08:00
# SectorEffect
A thinker which is attached to a sector and effects it in some way.
```
class SectorEffect : Thinker
{
2019-08-14 03:32:51 -07:00
protected Sector m_Sector;
2018-12-29 16:05:19 -08:00
2019-08-14 03:32:51 -07:00
Sector GetSector();
2018-12-29 16:05:19 -08:00
}
```
2019-08-14 03:31:41 -07:00
### `m_Sector`
2018-12-29 16:05:19 -08:00
2019-08-14 03:31:41 -07:00
The sector this effect is attached to.
2018-12-29 16:05:19 -08:00
2019-08-14 03:31:41 -07:00
### `GetSector`
2018-12-29 16:05:19 -08:00
2019-08-14 03:31:41 -07:00
Returns the sector this effect is attached to.
2018-12-29 16:05:19 -08:00
<!-- EOF -->