Pinging @britzl for help! I’m not getting any data from the steamworks SDK listener. I have it set up as below in the init for my script ( steam_extension_enabled is definitely true because the stats line gets called). I bundle the game in debug mode, add the steam_appid.txt file and launch the game with Steam open. I can then open the Steam overlay using Shift+Tab, which I would expect to trigger the GameOverlayActivated_t (callback) event - but I get nothing. Any ideas for what I’ve missed?
if steam_extension_enabled then
steamworks.init()
print("Steamworks: Requesting current stats. Completed?", steamworks.user_stats_request_current_stats())
steamworks.set_listener(function(self, e, t)
print(e)
pprint(t)
end)
end