object.localizedName

Type String
Revision Release 2024.3703
Keywords steam, steamworks, achievements, AchievementInfo, localizedName
See also AchievementInfo
steamworks.*

Overview

A string providing a localized human-readable name of the achievement. This is configured by the app developer on the Steamworks website. If a localized name for the client system's current locale is not defined on the Steamworks website, the achievement's API Name column string will be returned.

Example

local steamworks = require( "plugin.steamworks" )

local achievementInfo = steamworks.getAchievementInfo( "achievementName" )

if ( achievementInfo ) then
    print( "Achievement Name: " .. achievementInfo.localizedName )
end