Skip to content

Commit

Permalink
Doom3GroupNode is now StaticGeometryNode
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Mott committed Dec 1, 2021
1 parent 3d34ff6 commit ee3c898
Show file tree
Hide file tree
Showing 8 changed files with 104 additions and 97 deletions.
2 changes: 1 addition & 1 deletion radiantcore/CMakeLists.txt
Expand Up @@ -33,7 +33,7 @@ add_library(radiantcore MODULE
entity/curve/CurveEditInstance.cpp
entity/curve/CurveNURBS.cpp
entity/SpawnArgs.cpp
entity/doom3group/Doom3GroupNode.cpp
entity/doom3group/StaticGeometryNode.cpp
entity/eclassmodel/EclassModelNode.cpp
entity/EntityModule.cpp
entity/EntityNode.cpp
Expand Down
4 changes: 2 additions & 2 deletions radiantcore/entity/EntityModule.cpp
Expand Up @@ -15,7 +15,7 @@
#include "SpawnArgs.h"

#include "light/LightNode.h"
#include "doom3group/Doom3GroupNode.h"
#include "doom3group/StaticGeometryNode.h"
#include "speaker/SpeakerNode.h"
#include "generic/GenericEntityNode.h"
#include "eclassmodel/EclassModelNode.h"
Expand Down Expand Up @@ -76,7 +76,7 @@ IEntityNodePtr createNodeForEntity(const IEntityClassPtr& eclass)
else if (!eclass->isFixedSize())
{
// Variable size entity
node = Doom3GroupNode::Create(eclass);
node = StaticGeometryNode::Create(eclass);
}
else if (!eclass->getAttribute("model").getValue().empty())
{
Expand Down

0 comments on commit ee3c898

Please sign in to comment.