SkyboxNode.h 447 B

12345678910111213141516171819202122232425
  1. // Copyright (C) 2009-2022, Panagiotis Christopoulos Charitos and contributors.
  2. // All rights reserved.
  3. // Code licensed under the BSD License.
  4. // http://www.anki3d.org/LICENSE
  5. #pragma once
  6. #include <AnKi/Scene/SceneNode.h>
  7. namespace anki {
  8. /// @addtogroup scene
  9. /// @{
  10. /// Skybox properties node.
  11. class SkyboxNode : public SceneNode
  12. {
  13. public:
  14. SkyboxNode(SceneGraph* scene, CString name);
  15. ~SkyboxNode();
  16. };
  17. /// @}
  18. } // end namespace anki