- add messages for sector light change, thinker creation, and destruction
This commit is contained in:
parent
766b558119
commit
a4e3aca33c
7 changed files with 42 additions and 0 deletions
|
|
@ -416,6 +416,18 @@ void DoomLevelMesh::SideTextureChanged(struct side_t* side, int section)
|
|||
// UpdateSide(level, side->Index());
|
||||
}
|
||||
|
||||
void DoomLevelMesh::SectorLightChanged(struct sector_t* sector)
|
||||
{
|
||||
};
|
||||
|
||||
void DoomLevelMesh::SectorLightThinkerCreated(struct sector_t* sector, class DLighting* lightthinker)
|
||||
{
|
||||
};
|
||||
|
||||
void DoomLevelMesh::SectorLightThinkerDestroyed(struct sector_t* sector, class DLighting* lightthinker)
|
||||
{
|
||||
};
|
||||
|
||||
void DoomLevelMesh::UpdateSide(FLevelLocals& doomMap, unsigned int sideIndex)
|
||||
{
|
||||
FreeSide(doomMap, sideIndex);
|
||||
|
|
|
|||
|
|
@ -74,6 +74,9 @@ public:
|
|||
void CeilingTextureChanged(struct sector_t* sector) override;
|
||||
void SectorChangedOther(struct sector_t* sector) override;
|
||||
void SideTextureChanged(struct side_t* side, int section) override;
|
||||
void SectorLightChanged(struct sector_t* sector) override;
|
||||
void SectorLightThinkerCreated(struct sector_t* sector, class DLighting* lightthinker) override;
|
||||
void SectorLightThinkerDestroyed(struct sector_t* sector, class DLighting* lightthinker) override;
|
||||
|
||||
private:
|
||||
void CreateSurfaces(FLevelLocals& doomMap);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue