mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-10 19:03:12 +02:00
23 lines
454 B
C
23 lines
454 B
C
//
|
|
// BackgroundMode.h
|
|
// libraries/physics/src
|
|
//
|
|
// Copyright 2015 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
#ifndef hifi_BackgroundMode_h
|
|
#define hifi_BackgroundMode_h
|
|
|
|
enum BackgroundMode {
|
|
BACKGROUND_MODE_INHERIT,
|
|
BACKGROUND_MODE_SKYBOX,
|
|
|
|
BACKGROUND_MODE_ITEM_COUNT,
|
|
};
|
|
|
|
|
|
#endif // hifi_BackgroundMode_h
|
|
|