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

@@ -0,0 +1,13 @@
class_name SteamIntegration
extends Node
var app_id: String = "3575090"
func _init() -> void:
OS.set_environment("STEAM_APP_ID", app_id)
OS.set_environment("STEAM_GAME_ID", app_id)
func _ready() -> void:
pass