Consider supporting us as a GitHub Sponsor and get instant access to all our Unity 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
This tool simply exposes features present in the API and settings to the inspector.
This is not required to use these features it is simply a helper tool allowing user's who are more comfortable working with editor inspectors and game object rather than classic C# objects and scripting to make use of the related feature.
The Inventory Manager exposes the Changed event to the inspector which will alert you when the local user's inventory has changed.
This component also exposes commonly use fields from the SteamSettings.Client.inventory settings. This is simply a pass through you do not need to use the Inventory Manager to access these. The purpose of this class is simply to simplify working with the API for user's that are uncomfortable with Scriptable Objects.
Namespace
usingHeathenEngineering.SteamworksIntegration;
Definition
publicclassInventoryManager:MonoBehaviour
Fields and Attributes
CurrencyCode
publicCurrency.Code CurrencyCode =>get;
Returns the currency code as read from Steam
CurrencySymbol
publicstring CurrencySymbol =>get;
Returns the string symbol (£, $, €, etc.) related to the currency code as read from Steam.
Items
publicstringList<ItemDefinition> Items =>get;
Returns the list of items configured for this app
Events
evtChanged
Triggered whenever the local user's inventory is updated from Steam.
Returns the sub-set of items configured for this app that are not hidden, not store hidden and that have a valid price configuraiton. This should be the same set of items visible to Steam's store.