Wrath of Zeus
Made by Torchlight Games for CSE 125 SP24
Loading...
Searching...
No Matches
constants.hpp
Go to the documentation of this file.
1#pragma once
2
3#define QUIET_VOLUME 50.0f
4#define MIDDLE_VOLUME 75.0f
5#define FULL_VOLUME 100.0f
6
7#define DEFAULT_VOLUME FULL_VOLUME
8
9// Sound values fitting for something that should be audible only very close
10#define SHORT_ATTEN 50.0f
11#define SHORT_DIST 5.0f
12
13// Sound values fitting for something that should be audible within a 10x10 room
14#define MEDIUM_ATTEN 5.0f
15#define MEDIUM_DIST 20.0f
16
17// Sound values fitting for something that should be heard from very far
18#define FAR_ATTEN 1.0f
19#define FAR_DIST 80.0f