DLC Data
Like what your seeing?
Support us as a GitHub Sponsor and get instant access to all our assets, exclusive tools and assets, escalated support and issue tracking and our gratitude. These articles are made possible by our GitHub Sponsors ... become a sponsor today!
Introduction
Wraps the concept of a DLC in a simple struct. This struct is implicitly convertible to and from uint, AppData and the native Steam API type of AppId_t
Fields and Attributes
AppId
Returns the native Steam API type AppId_t for this DLC object
Available
Returns true if the DLC is available to the user, false otherwise
Name
Returns the localized name of the DLC for the user if any otherwise returns the default name
Is Subscribed
Returns true if the user is subscribed to this DLC ... that is does this user own or otherwise currently have access to this DLC.
Is Installed
Returns true if the user has installed this DLC ...
note that most modern DLC do not have anything to install, typically in a modern game the "main" game contains all content and DLC ownership simply acts as an unlock. This is particularly important for multiplayer games where the content is required in order for players to play together.
Install Directory
The directory information if any, if the DLC is installed, this can be null.
Download Progress
Returns a value from 0 to 1 indicating the download progress of the DLC if downloading is relivent.
Earliest Purchase Time
Note it may be possible for the user to have access to the DLC without having purchased, such as free weekened, barrowing from from friends and family, etc. If this date is older than the release of your game such as the 1st of January 1970 then the DLC has not been purchased.
Methods
Install
Request the DLC be installed, this is a request and may be refused, Valve does not give feedback either way.
Uninstall
Requests the DLC be uninstalled, this is a request and may be refused, Valve does not give feedback either way.
Open Store
Opens the Steam overlay to the DLC item's store page. The flag is optional, please see the EOverlayToStoreFlag options here.
Get
There are several static get methods that can be used to return a DlcData object based on various IDs
Last updated