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
9namespace Grindstone {
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}
Definition Source.hpp:9
Definition Asset.hpp:44
Definition AudioSourceComponent.hpp:10