Enable soundservice in datamodelinstance

This commit is contained in:
Vulpovile
2023-11-06 18:44:42 -08:00
parent d8a2fe7495
commit 8726e1e3e3
2 changed files with 14 additions and 13 deletions

View File

@@ -22,9 +22,9 @@ namespace B3D{
// Functions
void play();
private:
float soundVolume;
std::string soundId;
bool playOnRemove;
bool looped;
Reflection::ReflectionProperty<float> soundVolume;
Reflection::ReflectionProperty<std::string> soundId;
Reflection::ReflectionProperty<bool> playOnRemove;
Reflection::ReflectionProperty<bool> looped;
};
}