3
0

MaterialCanvasTestData.h 701 B

12345678910111213141516171819202122232425
  1. /*
  2. * Copyright (c) Contributors to the Open 3D Engine Project.
  3. * For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. *
  5. * SPDX-License-Identifier: Apache-2.0 OR MIT
  6. *
  7. */
  8. #pragma once
  9. #include <AzCore/std/string/string.h>
  10. namespace AtomToolsFramework
  11. {
  12. struct DynamicNodeConfig;
  13. }
  14. namespace MaterialCanvas
  15. {
  16. // Convert the node title into a filename for saving test data
  17. AZStd::string GetTestDataPathForNodeConfig(const AtomToolsFramework::DynamicNodeConfig& nodeConfig);
  18. // Create and save several test node configurations that will be loaded by the dynamic node manager
  19. void CreateTestNodes();
  20. } // namespace MaterialCanvas