mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-10 07:12:50 +02:00
22 lines
453 B
C
22 lines
453 B
C
//
|
|
// BackgroundMode.h
|
|
// libraries/physcis/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_ATMOSPHERE,
|
|
BACKGROUND_MODE_SKYBOX,
|
|
};
|
|
|
|
|
|
#endif // hifi_BackgroundMode_h
|
|
|