Grindstone Game Engine
v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
AudioSourceComponent.hpp
1
#pragma once
2
3
#include "EngineCore/Reflection/ComponentReflection.hpp"
4
#include "EngineCore/ECS/Entity.hpp"
5
#include "Common/Math.hpp"
6
#include "../Source.hpp"
7
#include "../AudioClip.hpp"
8
9
namespace
Grindstone {
10
struct
AudioSourceComponent
{
11
AssetReference<Audio::AudioClipAsset>
audioClip;
12
bool
isLooping =
false
;
13
float
volume = 1.f;
14
float
pitch = 1.f;
15
Audio::Source
* source =
nullptr
;
16
17
REFLECT(
"AudioSource"
)
18
};
19
20
void
SetupAudioSourceComponent(entt::registry& registry, entt::entity);
21
void
DestroyAudioSourceComponent(entt::registry& registry, entt::entity);
22
}
Grindstone::Audio::Source
Definition
Source.hpp:9
Grindstone::AssetReference
Definition
Asset.hpp:44
Grindstone::AudioSourceComponent
Definition
AudioSourceComponent.hpp:10
sources
code
Plugins
AudioOpenAL
Components
AudioSourceComponent.hpp
Generated by
1.12.0