RAMSES Documentation  27.0.130
Information for RAMSES users and developers
EVisibilityMode.h
Go to the documentation of this file.
1 // -------------------------------------------------------------------------
2 // Copyright (C) 2019 BMW AG
3 // -------------------------------------------------------------------------
4 // This Source Code Form is subject to the terms of the Mozilla Public
5 // License, v. 2.0. If a copy of the MPL was not distributed with this
6 // file, You can obtain one at https://mozilla.org/MPL/2.0/.
7 // -------------------------------------------------------------------------
8 
9 #ifndef RAMSES_EVISIBILITYMODE_H
10 #define RAMSES_EVISIBILITYMODE_H
11 
12 #include <stdint.h>
13 
14 namespace ramses
15 {
20  enum class EVisibilityMode : uint32_t
21  {
22  Off = 0,
23  Invisible,
24  Visible
25  };
26 }
27 
28 #endif
The RAMSES namespace contains all client side objects and functions used to implement RAMSES applicat...
Definition: AnimatedProperty.h:15
EVisibilityMode
Definition: EVisibilityMode.h:21
@ Invisible
A node shall be invisible, but the node shall trigger its resources to be loaded.
@ Off
A node shall be invisible and the node shall not trigger its resources to be loaded.
@ Visible
A node shall be fully loaded and visible.