Add tooltip component and integrate it into the scene; adjust audio volume for coin sound effect

This commit is contained in:
2025-05-03 04:34:31 +02:00
parent 8c9afeee27
commit 17387c32ea
8 changed files with 144 additions and 7 deletions

View File

@@ -10,7 +10,7 @@ void fragment() {
COLOR = texture(TEXTURE, UV);
// Convert degrees to radians
float angle_rad = radians(shine_angle_deg);
// Calculate direction vector for the shine line
vec2 shine_dir = vec2(cos(angle_rad), sin(angle_rad));