This section is for those users that have been given access to the Steam API for publishing your game to that platform and that want to use the possibilities that the Steam Workshop and Community gives you for adding and generating user content in your projects. The simplest form of user generated content is the ability for the user to take and share screenshots, which is facilitated using the following two functions:
The rest of the function on this page are related to using the Steam Worksop and some of them require the Steam App ID for your project as well as a User ID for the person playing the game or their user name, which can be found using the following functions:
Before using any of the built in functions for the Steam UGC (User Generated Content) API you need to have set up your game correctly from the Steam dashboard and you should have read through the required documentation found here:
NOTE: You need to have your game accepted for the Steam online store and have access to the developer areas of the Steam API documentation.
All subscribed UGC items will be downloaded by the Steam client automatically, and you should have code in the Steam Asynchronous Event to catch this and store the ID of the UGC that has been downloaded for use in the other UGC functions.
IMPORTANT! Steam UGC IDs can be huge numbers over 600,000,000. This means that sometimes you may need to store these as a string rather than try and store them as a real value, especially if working with buffers or trying to write the value to a text file (since this will convert it to a simplified standard format like "6.6624e+003" which will cause issues being read back).
The normal workflow for getting UGC into your game would be as follows:
The following sections explain all the functions required to get UGC functioning in GameMaker Studio 2:
The following functions are essentially "wrapper" functions for those supplied in the Steam API for creating and uploading content to their servers. As such, we recommend that you read over the linked Steam documentation before using them to gain a greater understanding of how they work: Creating And Uploading Content.
Once your user content has been created and the workshop has it available for download, people can subscribe to it through the Steam App or through the Web portal. However GameMaker Studio 2 also includes the following functions to use the Steam API for creating and canceling subscriptions as well as for getting information about what the user is subscribed to currently:
There are also a large number of functions available to query the Steam API about the UGC items available:
You can get a preview image of any UGC item from the workshop by using the function steam_ugc_send_query() to get the preview file handle of the image, and then calling the following function: