// // Created by Sam Gondelman on 1/15/19. // Copyright 2019 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_PulseMode_h #define hifi_PulseMode_h #include "QString" /**jsdoc *

Pulse modes for color and alpha pulsing.

* * * * * * * * * *
ValueDescription
"none"No pulsing.
"in"Pulse in phase with the pulse period.
"out"Pulse out of phase with the pulse period.
* @typedef {string} Entities.PulseMode */ enum class PulseMode { NONE = 0, IN_PHASE, OUT_PHASE }; class PulseModeHelpers { public: static QString getNameForPulseMode(PulseMode mode); }; #endif // hifi_PulseMode_h