Type Boolean Revision 2017.3060 Keywords steam, steamworks, achievements, AchievementInfo, unlocked See also AchievementInfo steamworks.*
Boolean value indicating if the achievement has been unlocked by the user.
An application can unlock an achievement by calling the steamworks.setAchievementUnlocked() function or by calling the steamworks.setAchievementProgress() function set to its max progress value.
local steamworks = require( "plugin.steamworks" ) local achievementInfo = steamworks.getAchievementInfo( "achievementName" ) if ( achievementInfo ) then if ( achievementInfo.unlocked ) then -- Achievement unlocked else -- Achievement has not been unlocked yet end end