fixup after rebase

This commit is contained in:
Joakim Kilby
2024-05-17 12:20:10 +02:00
parent d7885280f7
commit 98c8452f10
3 changed files with 2 additions and 11 deletions

View File

@@ -95,7 +95,6 @@ inline interaction::InteractionMonitor* interactionMonitor;
inline interaction::JoystickInputStates* joystickInputStates;
inline interaction::WebsocketInputStates* websocketInputStates;
inline interaction::KeybindingManager* keybindingManager;
inline interaction::KeyframeRecording* keyframeRecording;
inline interaction::NavigationHandler* navigationHandler;
inline interaction::SessionRecording* sessionRecording;
inline interaction::KeyframeRecording* keyframeRecording;

View File

@@ -627,14 +627,6 @@ void RenderableModel::initialize() {
for (const std::unique_ptr<LightSource>& ls : _lightSources) {
ls->initialize();
if (_castShadow) {
SceneGraphLightSource* ptr = dynamic_cast<SceneGraphLightSource*>(ls.get());
if (ptr != nullptr) {
const auto parent = this->parent();
ptr->registerShadowCaster(parent->identifier());
}
}
}
if (_lightSource.size() > 0) {

View File

@@ -1020,8 +1020,8 @@ void RenderableGlobe::update(const UpdateData& data) {
const events::Event* e = global::eventEngine->firstEvent();
while (e) {
switch (e->type) {
case events::Event::Type::SceneGraphNodeAdded:
case events::Event::Type::SceneGraphNodeRemoved:
case events::Event::Type::PropertyTreeUpdated:
case events::Event::Type::PropertyTreePruned:
case events::Event::Type::RenderableDisabled:
case events::Event::Type::RenderableEnabled:
case events::Event::Type::Custom: