123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582 |
- /*
- * Copyright (c) Contributors to the Open 3D Engine Project.
- * For complete copyright and license terms please see the LICENSE at the root of this distribution.
- *
- * SPDX-License-Identifier: Apache-2.0 OR MIT
- *
- */
- #include <MeshExampleComponent.h>
- #include <Atom/Component/DebugCamera/ArcBallControllerComponent.h>
- #include <Atom/Component/DebugCamera/NoClipControllerComponent.h>
- #include <Atom/RHI/Device.h>
- #include <Atom/RHI/Factory.h>
- #include <Atom/RPI.Public/View.h>
- #include <Atom/RPI.Reflect/Model/ModelAsset.h>
- #include <Atom/RPI.Reflect/Material/MaterialAsset.h>
- #include <Atom/RPI.Reflect/Asset/AssetUtils.h>
- #include <AzCore/Asset/AssetManagerBus.h>
- #include <AzCore/Component/Entity.h>
- #include <AzCore/IO/IOUtils.h>
- #include <AzCore/Serialization/SerializeContext.h>
- #include <AzCore/std/smart_ptr/make_shared.h>
- #include <AzCore/std/sort.h>
- #include <AzFramework/Components/TransformComponent.h>
- #include <AzFramework/Input/Devices/Mouse/InputDeviceMouse.h>
- #include <SampleComponentManager.h>
- #include <SampleComponentConfig.h>
- #include <EntityUtilityFunctions.h>
- #include <Automation/ScriptableImGui.h>
- #include <Automation/ScriptRunnerBus.h>
- #include <RHI/BasicRHIComponent.h>
- namespace AtomSampleViewer
- {
- const char* MeshExampleComponent::CameraControllerNameTable[CameraControllerCount] =
- {
- "ArcBall",
- "NoClip"
- };
- void MeshExampleComponent::Reflect(AZ::ReflectContext* context)
- {
- if (AZ::SerializeContext* serializeContext = azrtti_cast<AZ::SerializeContext*>(context))
- {
- serializeContext->Class<MeshExampleComponent, AZ::Component>()
- ->Version(0)
- ;
- }
- }
- MeshExampleComponent::MeshExampleComponent()
- : m_materialBrowser("@user@/MeshExampleComponent/material_browser.xml")
- , m_modelBrowser("@user@/MeshExampleComponent/model_browser.xml")
- , m_imguiSidebar("@user@/MeshExampleComponent/sidebar.xml")
- {
- m_changedHandler = AZ::Render::MeshFeatureProcessorInterface::ModelChangedEvent::Handler
- {
- [&](AZ::Data::Instance<AZ::RPI::Model> model)
- {
- ScriptRunnerRequestBus::Broadcast(&ScriptRunnerRequests::ResumeScript);
- // This handler will be connected to the feature processor so that when the model is updated, the camera
- // controller will reset. This ensures the camera is a reasonable distance from the model when it resizes.
- ResetCameraController();
- UpdateGroundPlane();
- }
- };
- }
- void MeshExampleComponent::DefaultWindowCreated()
- {
- AZ::Render::Bootstrap::DefaultWindowBus::BroadcastResult(m_windowContext, &AZ::Render::Bootstrap::DefaultWindowBus::Events::GetDefaultWindowContext);
- }
- void MeshExampleComponent::CreateLowEndPipeline()
- {
- AZ::RPI::RenderPipelineDescriptor pipelineDesc;
- pipelineDesc.m_mainViewTagName = "MainCamera";
- pipelineDesc.m_name = "LowEndPipeline";
- pipelineDesc.m_materialPipelineTag = "LowEndPipeline";
- pipelineDesc.m_rootPassTemplate = "LowEndPipelineTemplate";
- pipelineDesc.m_renderSettings.m_multisampleState.m_samples = 1;
- SampleComponentManagerRequestBus::BroadcastResult(
- pipelineDesc.m_renderSettings.m_multisampleState.m_samples,
- &SampleComponentManagerRequests::GetNumMSAASamples);
- m_lowEndPipeline = AZ::RPI::RenderPipeline::CreateRenderPipelineForWindow(pipelineDesc, *m_windowContext);
- }
- void MeshExampleComponent::DestroyLowEndPipeline()
- {
- m_lowEndPipeline = nullptr;
- }
- void MeshExampleComponent::CreateDeferredPipeline()
- {
- AZ::RPI::RenderPipelineDescriptor pipelineDesc;
- pipelineDesc.m_mainViewTagName = "MainCamera";
- pipelineDesc.m_name = "DeferredPipeline";
- pipelineDesc.m_materialPipelineTag = "DeferredPipeline";
- pipelineDesc.m_rootPassTemplate = "DeferredPipelineTemplate";
- pipelineDesc.m_renderSettings.m_multisampleState.m_samples = 1;
- SampleComponentManagerRequestBus::BroadcastResult(
- pipelineDesc.m_renderSettings.m_multisampleState.m_samples,
- &SampleComponentManagerRequests::GetNumMSAASamples);
- pipelineDesc.m_allowModification = true; // MainPipeline allows modifications, so the DeferredPipeline must as well, to get a consistent result.
- m_deferredPipeline = AZ::RPI::RenderPipeline::CreateRenderPipelineForWindow(pipelineDesc, *m_windowContext);
- }
- void MeshExampleComponent::DestroyDeferredPipeline()
- {
- m_deferredPipeline = nullptr;
- }
- void MeshExampleComponent::CreateMultiViewXRPipeline()
- {
- AZ::RPI::RenderPipelineDescriptor pipelineDesc;
- pipelineDesc.m_mainViewTagName = "MainCamera";
- pipelineDesc.m_name = "MultiViewPipeline";
- pipelineDesc.m_rootPassTemplate = "MultiViewPipelineTemplate";
- pipelineDesc.m_renderSettings.m_multisampleState.m_samples = 1;
- m_multiViewXRPipeline = AZ::RPI::RenderPipeline::CreateRenderPipelineForWindow(pipelineDesc, *m_windowContext);
- }
- void MeshExampleComponent::DestroyMultiViewXRPipeline()
- {
- m_multiViewXRPipeline = nullptr;
- }
- void MeshExampleComponent::ActivateLowEndPipeline()
- {
- AZ::RPI::RenderPipelinePtr prevPipeline = m_scene->GetDefaultRenderPipeline();
- if (!m_originalPipeline)
- {
- m_originalPipeline = prevPipeline;
- }
- m_lowEndPipeline->GetRootPass()->SetEnabled(true); // PassSystem::RemoveRenderPipeline was calling SetEnabled(false)
- m_scene->AddRenderPipeline(m_lowEndPipeline);
- m_lowEndPipeline->SetDefaultView(prevPipeline->GetDefaultView());
- m_scene->RemoveRenderPipeline(prevPipeline->GetId());
- m_imguiScope = {}; // I'm not sure why this is needed. Something must be wrong in the ImGuiActiveContextScope class
- m_imguiScope = AZ::Render::ImGuiActiveContextScope::FromPass({ m_lowEndPipeline->GetId().GetCStr(), "ImGuiPass" });
- }
- void MeshExampleComponent::ActivateDeferredPipeline()
- {
- AZ::RPI::RenderPipelinePtr prevPipeline = m_scene->GetDefaultRenderPipeline();
- if (!m_originalPipeline)
- {
- m_originalPipeline = prevPipeline;
- }
- m_deferredPipeline->GetRootPass()->SetEnabled(true); // PassSystem::RemoveRenderPipeline was calling SetEnabled(false)
- m_scene->AddRenderPipeline(m_deferredPipeline);
- m_deferredPipeline->SetDefaultView(prevPipeline->GetDefaultView());
- m_scene->RemoveRenderPipeline(prevPipeline->GetId());
- m_imguiScope = {}; // I'm not sure why this is needed. Something must be wrong in the ImGuiActiveContextScope class
- m_imguiScope = AZ::Render::ImGuiActiveContextScope::FromPass({m_deferredPipeline->GetId().GetCStr(), "ImGuiPass"});
- }
- void MeshExampleComponent::ActivateOriginalPipeline()
- {
- m_imguiScope = {}; // restores previous ImGui context.
- AZ::RPI::RenderPipelinePtr prevPipeline = m_scene->GetDefaultRenderPipeline();
- m_originalPipeline->GetRootPass()->SetEnabled(true); // PassSystem::RemoveRenderPipeline was calling SetEnabled(false)
- m_scene->AddRenderPipeline(m_originalPipeline);
- m_scene->RemoveRenderPipeline(prevPipeline->GetId());
- }
- void MeshExampleComponent::ActivateMultiViewXRPipeline()
- {
- AZ::RPI::RenderPipelinePtr prevPipeline = m_scene->GetDefaultRenderPipeline();
- if (!m_originalPipeline)
- {
- m_originalPipeline = prevPipeline;
- }
- m_multiViewXRPipeline->GetRootPass()->SetEnabled(true);
- m_scene->AddRenderPipeline(m_multiViewXRPipeline);
- m_multiViewXRPipeline->SetDefaultView(prevPipeline->GetDefaultView());
- m_scene->RemoveRenderPipeline(prevPipeline->GetId());
- m_imguiScope = {};
- m_imguiScope = AZ::Render::ImGuiActiveContextScope::FromPass({ m_multiViewXRPipeline->GetId().GetCStr(), "ImGuiPass" });
- }
- void MeshExampleComponent::Activate()
- {
- UseArcBallCameraController();
- m_materialBrowser.SetFilter([this](const AZ::Data::AssetInfo& assetInfo)
- {
- if (!AzFramework::StringFunc::Path::IsExtension(assetInfo.m_relativePath.c_str(), "azmaterial"))
- {
- return false;
- }
- if (m_showModelMaterials)
- {
- return true;
- }
- // Return true only if the azmaterial was generated from a ".material" file.
- // Materials with subid == 0, are 99.99% guaranteed to be generated from a ".material" file.
- // Without this assurance We would need to call AzToolsFramework::AssetSystem::AssetSystemRequest::GetSourceInfoBySourceUUID()
- // to figure out what's the source of this azmaterial. But, Atom can not include AzToolsFramework.
- return assetInfo.m_assetId.m_subId == 0;
- });
- m_modelBrowser.SetFilter([](const AZ::Data::AssetInfo& assetInfo)
- {
- return assetInfo.m_assetType == azrtti_typeid<AZ::RPI::ModelAsset>();
- });
- m_materialBrowser.Activate();
- m_modelBrowser.Activate();
- m_imguiSidebar.Activate();
- InitLightingPresets(true);
- AZ::Data::Asset<AZ::RPI::MaterialAsset> groundPlaneMaterialAsset = AZ::RPI::AssetUtils::LoadAssetByProductPath<AZ::RPI::MaterialAsset>(DefaultPbrMaterialPath, AZ::RPI::AssetUtils::TraceLevel::Error);
- m_groundPlaneMaterial = AZ::RPI::Material::FindOrCreate(groundPlaneMaterialAsset);
- m_groundPlaneModelAsset = AZ::RPI::AssetUtils::GetAssetByProductPath<AZ::RPI::ModelAsset>("objects/plane.azmodel", AZ::RPI::AssetUtils::TraceLevel::Assert);
- AZ::TickBus::Handler::BusConnect();
- AZ::Render::Bootstrap::DefaultWindowNotificationBus::Handler::BusConnect();
- CreateLowEndPipeline();
- CreateDeferredPipeline();
- CreateMultiViewXRPipeline();
- }
- void MeshExampleComponent::Deactivate()
- {
- if (m_useLowEndPipeline || m_useDeferredPipeline || m_useMultiViewXRPipeline)
- {
- ActivateOriginalPipeline();
- }
- DestroyLowEndPipeline();
- DestroyDeferredPipeline();
- DestroyMultiViewXRPipeline();
- AZ::Render::Bootstrap::DefaultWindowNotificationBus::Handler::BusDisconnect();
- AZ::TickBus::Handler::BusDisconnect();
- m_imguiSidebar.Deactivate();
- m_materialBrowser.Deactivate();
- m_modelBrowser.Deactivate();
- RemoveController();
-
- GetMeshFeatureProcessor()->ReleaseMesh(m_meshHandle);
- GetMeshFeatureProcessor()->ReleaseMesh(m_groundPlandMeshHandle);
- m_modelAsset = {};
- m_groundPlaneModelAsset = {};
- m_customMaterialInstance = nullptr;
- ShutdownLightingPresets();
- }
- void MeshExampleComponent::OnTick([[maybe_unused]] float deltaTime, [[maybe_unused]] AZ::ScriptTimePoint time)
- {
- bool modelNeedsUpdate = false;
- // Switch pipeline before any imGui actions (switching pipelines switches imGui scope)
- if (m_switchPipeline)
- {
- if (m_useLowEndPipeline)
- {
- ActivateLowEndPipeline();
- }
- else if (m_useDeferredPipeline)
- {
- ActivateDeferredPipeline();
- }
- else if (m_useMultiViewXRPipeline)
- {
- ActivateMultiViewXRPipeline();
- }
- else
- {
- ActivateOriginalPipeline();
- }
- m_switchPipeline = false;
- }
- if (m_imguiSidebar.Begin())
- {
- ImGuiLightingPreset();
- ImGuiAssetBrowser::WidgetSettings assetBrowserSettings;
- if (ScriptableImGui::Checkbox("Use Low End Pipeline", &m_useLowEndPipeline))
- {
- m_switchPipeline = true;
- m_useDeferredPipeline = false;
- m_useMultiViewXRPipeline = false;
- }
- if (ScriptableImGui::Checkbox("Use Deferred Pipeline", &m_useDeferredPipeline))
- {
- m_switchPipeline = true;
- m_useLowEndPipeline = false;
- m_useMultiViewXRPipeline = false;
- }
- if (ScriptableImGui::Checkbox("Use MultiViewXR Pipeline", &m_useMultiViewXRPipeline))
- {
- m_switchPipeline = true;
- m_useLowEndPipeline = false;
- m_useDeferredPipeline = false;
- }
-
- modelNeedsUpdate |= ScriptableImGui::Checkbox("Enable Material Override", &m_enableMaterialOverride);
-
- if (ScriptableImGui::Checkbox("Show Ground Plane", &m_showGroundPlane))
- {
- if (m_showGroundPlane)
- {
- CreateGroundPlane();
- UpdateGroundPlane();
- }
- else
- {
- RemoveGroundPlane();
- }
- }
- if (ScriptableImGui::Checkbox("Show Model Materials", &m_showModelMaterials))
- {
- modelNeedsUpdate = true;
- m_materialBrowser.SetNeedsRefresh();
- }
- assetBrowserSettings.m_labels.m_root = "Materials";
- modelNeedsUpdate |= m_materialBrowser.Tick(assetBrowserSettings);
- ImGui::Spacing();
- ImGui::Separator();
- ImGui::Spacing();
- assetBrowserSettings.m_labels.m_root = "Models";
- bool modelChanged = m_modelBrowser.Tick(assetBrowserSettings);
- modelNeedsUpdate |= modelChanged;
- if (modelChanged)
- {
- // Reset LOD override when the model changes.
- m_lodConfig.m_lodType = AZ::RPI::Cullable::LodType::Default;
- }
- AZ::Data::Instance<AZ::RPI::Model> model = GetMeshFeatureProcessor()->GetModel(m_meshHandle);
- if (model)
- {
- const char* NoLodOverrideText = "No LOD Override";
- const char* LodFormatString = "LOD %i";
- AZStd::string previewText = m_lodConfig.m_lodType == AZ::RPI::Cullable::LodType::Default ?
- NoLodOverrideText :
- AZStd::string::format(LodFormatString, m_lodConfig.m_lodOverride);
- if (ScriptableImGui::BeginCombo("", previewText.c_str()))
- {
- if (ScriptableImGui::Selectable(NoLodOverrideText, m_lodConfig.m_lodType == AZ::RPI::Cullable::LodType::Default))
- {
- m_lodConfig.m_lodType = AZ::RPI::Cullable::LodType::Default;
- GetMeshFeatureProcessor()->SetMeshLodConfiguration(m_meshHandle, m_lodConfig);
- }
- for (uint32_t i = 0; i < model->GetLodCount(); ++i)
- {
- AZStd::string name = AZStd::string::format(LodFormatString, i);
- if (ScriptableImGui::Selectable(name.c_str(), m_lodConfig.m_lodOverride == i))
- {
- m_lodConfig.m_lodType = AZ::RPI::Cullable::LodType::SpecificLod;
- m_lodConfig.m_lodOverride = static_cast<AZ::RPI::Cullable::LodOverride>(i);
- GetMeshFeatureProcessor()->SetMeshLodConfiguration(m_meshHandle, m_lodConfig);
- }
- }
- ScriptableImGui::EndCombo();
- }
- }
- ImGui::Spacing();
- ImGui::Separator();
- ImGui::Spacing();
- // Camera controls
- {
- int32_t* currentControllerTypeIndex = reinterpret_cast<int32_t*>(&m_currentCameraControllerType);
- ImGui::LabelText("##CameraControllerLabel", "Camera Controller:");
- if (ScriptableImGui::Combo("##CameraController", currentControllerTypeIndex, CameraControllerNameTable, CameraControllerCount))
- {
- ResetCameraController();
- }
- }
- ImGui::Spacing();
- ImGui::Separator();
- ImGui::Spacing();
- if (m_customMaterialInstance && ImGui::Button("Material Details..."))
- {
- m_imguiMaterialDetails.OpenDialog();
- }
- m_imguiSidebar.End();
- }
- m_imguiMaterialDetails.Tick(&GetMeshFeatureProcessor()->GetDrawPackets(m_meshHandle));
- if (modelNeedsUpdate)
- {
- ModelChange();
- }
- }
- void MeshExampleComponent::ModelChange()
- {
- if (!m_modelBrowser.GetSelectedAssetId().IsValid())
- {
- m_modelAsset = {};
- GetMeshFeatureProcessor()->ReleaseMesh(m_meshHandle);
- return;
- }
- // If a material hasn't been selected, just choose the first one
- // If for some reason no materials are available log an error
- AZ::Data::AssetId selectedMaterialAssetId = m_materialBrowser.GetSelectedAssetId();
- if (!selectedMaterialAssetId.IsValid())
- {
- selectedMaterialAssetId = AZ::RPI::AssetUtils::GetAssetIdForProductPath(DefaultPbrMaterialPath, AZ::RPI::AssetUtils::TraceLevel::Error);
- if (!selectedMaterialAssetId.IsValid())
- {
- AZ_Error("MeshExampleComponent", false, "Failed to select model, no material available to render with.");
- return;
- }
- }
- if (m_enableMaterialOverride && selectedMaterialAssetId.IsValid())
- {
- AZ::Data::Asset<AZ::RPI::MaterialAsset> materialAsset;
- materialAsset.Create(selectedMaterialAssetId);
- m_customMaterialInstance = AZ::RPI::Material::FindOrCreate(materialAsset);
- }
- else
- {
- m_customMaterialInstance = nullptr;
- }
- if (m_modelAsset.GetId() != m_modelBrowser.GetSelectedAssetId())
- {
- ScriptRunnerRequestBus::Broadcast(&ScriptRunnerRequests::PauseScript);
- m_modelAsset.Create(m_modelBrowser.GetSelectedAssetId());
- GetMeshFeatureProcessor()->ReleaseMesh(m_meshHandle);
- m_meshHandle = GetMeshFeatureProcessor()->AcquireMesh(AZ::Render::MeshHandleDescriptor{ m_modelAsset }, m_customMaterialInstance);
- GetMeshFeatureProcessor()->SetTransform(m_meshHandle, AZ::Transform::CreateIdentity());
- GetMeshFeatureProcessor()->ConnectModelChangeEventHandler(m_meshHandle, m_changedHandler);
- GetMeshFeatureProcessor()->SetMeshLodConfiguration(m_meshHandle, m_lodConfig);
- }
- else
- {
- GetMeshFeatureProcessor()->SetCustomMaterials(m_meshHandle, m_customMaterialInstance);
- }
- }
-
- void MeshExampleComponent::CreateGroundPlane()
- {
- m_groundPlandMeshHandle = GetMeshFeatureProcessor()->AcquireMesh(AZ::Render::MeshHandleDescriptor{ m_groundPlaneModelAsset }, m_groundPlaneMaterial);
- }
- void MeshExampleComponent::UpdateGroundPlane()
- {
- if (m_groundPlandMeshHandle.IsValid())
- {
- AZ::Transform groundPlaneTransform = AZ::Transform::CreateIdentity();
- if (m_modelAsset)
- {
- AZ::Vector3 modelCenter;
- float modelRadius;
- m_modelAsset->GetAabb().GetAsSphere(modelCenter, modelRadius);
- static const float GroundPlaneRelativeScale = 4.0f;
- static const float GroundPlaneOffset = 0.01f;
- groundPlaneTransform.SetUniformScale(GroundPlaneRelativeScale * modelRadius);
- groundPlaneTransform.SetTranslation(AZ::Vector3(0.0f, 0.0f, m_modelAsset->GetAabb().GetMin().GetZ() - GroundPlaneOffset));
- }
- GetMeshFeatureProcessor()->SetTransform(m_groundPlandMeshHandle, groundPlaneTransform);
- }
- }
- void MeshExampleComponent::RemoveGroundPlane()
- {
- GetMeshFeatureProcessor()->ReleaseMesh(m_groundPlandMeshHandle);
- }
- void MeshExampleComponent::OnEntityDestruction(const AZ::EntityId& entityId)
- {
- AZ::EntityBus::MultiHandler::BusDisconnect(entityId);
- }
- void MeshExampleComponent::UseArcBallCameraController()
- {
- AZ::Debug::CameraControllerRequestBus::Event(GetCameraEntityId(), &AZ::Debug::CameraControllerRequestBus::Events::Enable,
- azrtti_typeid<AZ::Debug::ArcBallControllerComponent>());
- }
- void MeshExampleComponent::UseNoClipCameraController()
- {
- AZ::Debug::CameraControllerRequestBus::Event(GetCameraEntityId(), &AZ::Debug::CameraControllerRequestBus::Events::Enable,
- azrtti_typeid<AZ::Debug::NoClipControllerComponent>());
- }
- void MeshExampleComponent::RemoveController()
- {
- AZ::Debug::CameraControllerRequestBus::Event(GetCameraEntityId(), &AZ::Debug::CameraControllerRequestBus::Events::Disable);
- }
- void MeshExampleComponent::SetArcBallControllerParams()
- {
- if (!m_modelBrowser.GetSelectedAssetId().IsValid() || !m_modelAsset.IsReady())
- {
- return;
- }
- // Adjust the arc-ball controller so that it has bounds that make sense for the current model
-
- AZ::Vector3 center;
- float radius;
- m_modelAsset->GetAabb().GetAsSphere(center, radius);
- const float startingDistance = radius * ArcballRadiusDefaultModifier;
- const float minDistance = radius * ArcballRadiusMinModifier;
- const float maxDistance = radius * ArcballRadiusMaxModifier;
- AZ::Debug::ArcBallControllerRequestBus::Event(GetCameraEntityId(), &AZ::Debug::ArcBallControllerRequestBus::Events::SetCenter, center);
- AZ::Debug::ArcBallControllerRequestBus::Event(GetCameraEntityId(), &AZ::Debug::ArcBallControllerRequestBus::Events::SetDistance, startingDistance);
- AZ::Debug::ArcBallControllerRequestBus::Event(GetCameraEntityId(), &AZ::Debug::ArcBallControllerRequestBus::Events::SetMinDistance, minDistance);
- AZ::Debug::ArcBallControllerRequestBus::Event(GetCameraEntityId(), &AZ::Debug::ArcBallControllerRequestBus::Events::SetMaxDistance, maxDistance);
- }
- void MeshExampleComponent::ResetCameraController()
- {
- RemoveController();
- if (m_currentCameraControllerType == CameraControllerType::ArcBall)
- {
- UseArcBallCameraController();
- SetArcBallControllerParams();
- }
- else if (m_currentCameraControllerType == CameraControllerType::NoClip)
- {
- UseNoClipCameraController();
- }
- }
- } // namespace AtomSampleViewer
|