This commit is contained in:
2014-04-10 07:39:44 +02:00
parent 6addc391b5
commit d7fa9eb70f
8 changed files with 287 additions and 12 deletions
+5 -5
View File
@@ -10,11 +10,11 @@ namespace Components
struct SoundEmitter : Component
{
float Gain;
float MaxDistance;
float ReferenceDistance;
float Pitch;
bool Loop;
float Gain = 1.f;
float MaxDistance = 1.f;
float ReferenceDistance = 1.f;
float Pitch = 1.f;
bool Loop = false;
std::string Path;
};