![]() |
CloudOnce v2.7.5
Unified Game Services API
|
▼NCloudOnce | |
▼NCloudPrefs | |
CCloudBool | Used to store bools in the cloud. |
CCloudCurrencyFloat | Used to create virtual currencies that gets stored in the cloud. This type uses float values. It has a special conflict resolution system based on this article: https://developer.android.com/training/cloudsave/conflict-res.html |
CCloudCurrencyInt | Used to create virtual currencies that gets stored in the cloud. This type uses int values. It has a special conflict resolution system based on this article: https://developer.android.com/training/cloudsave/conflict-res.html |
CCloudDateTime | |
CCloudDecimal | Used to store decimals in the cloud. |
CCloudDouble | Used to store doubles in the cloud. |
CCloudFloat | Used to store floats in the cloud. |
CCloudInt | Used to store ints in the cloud. |
CCloudLong | |
CCloudString | Used to store strings in the cloud. |
CCloudUInt | Used to store uints in the cloud. |
▼NInternal | |
▼NEditor | |
▼NData | |
CCloudConfig | Data-class for storing CloudOnce configuration. |
CCloudVariableData | Stores info about cloud variables declared in the CloudOnce Editor |
CPlatformIdData | Stores achievement/leaderboard IDs for each supported platform as well as an internal ID. |
CPluginVersion | Contains plug-in version information. |
▼NUtils | |
CAndroidManifestModifier | Updates AndroidManifest.xml with the appropriate permissions and activities. |
CBuildUtils | Build utilities used by the CloudOnce editor. |
CGPGAndroidSetup | |
▼CGPGSStrings | |
CAndroidSetup | |
CNearbyConnections | |
CSetup | |
CGPGSUtil | |
CiOSPostBuild | Automatic operations called after an iOS build. |
CSerializationUtils | Serialization utilities used by the CloudOnce editor. |
CValidationUtils | Validation utilities used by the CloudOnce editor. |
CCloudOnceEditor | Editor window for setting CloudOnce configuration |
CCloudOnceUpgrader | |
CEditorJsonHelper | Helper methods for serialization and deserialization |
CMenuLinks | Adds helpful links as menu items. |
▼NProviders | |
CDummyProvider | Dummy provider for unsupported platforms. |
CDummyStorageWrapper | Dummy storage wrapper for unsupported platforms. |
CGenericAchievementsWrapper | Provides access to achievement functionality. |
CGenericLeaderboardsWrapper | Provides access to leaderboard functionality. |
CGooglePlayGamesCloudProvider | Google Play Game Services implementation of ICloudProvider. |
CGooglePlayGamesCloudSaveWrapper | This wrapper encapsulates the platform specific code needed to provide cloud storage on the Google Play platform. |
CICloudProvider | Interface for accessing platform-agnostic cloud functionality. |
CICloudStorageProvider | Interface for platform-agnostic access to cloud save. |
CiOSCloudProvider | Apple Game Center implementation of ICloudProvider |
CiOSCloudSaveWrapper | This wrapper encapsulates the platform specific code needed to provide cloud storage on the iOS platform. |
CTestProvider | Provides a minimal implementation of ICloudProvider, for development and testing. |
CTestProviderStorageWrapper | For testing cloud save in the editor |
▼NUtils | |
CAppleAchievementUtils | iOS Game Center implementation of IAchievementUtils |
CAppleLeaderboardUtils | iOS Game Center implementation of ILeaderboardUtils |
CCloudOnceUtils | Utilities used by CloudOnce's Internal systems. |
CEditorAchievementUtils | Unity Editor implementation of IAchievementUtils |
CEditorLeaderboardUtils | Unity Editor implementation of ILeaderboardUtils |
CGoogleAchievementUtils | Google Play Game Services implementation of IAchievementUtils |
CGoogleLeaderboardUtils | Google Play Game Services implementation of ILeaderboardUtils |
CIAchievementUtils | Interface for platform-agnostic achievement utilities |
CILeaderboardUtils | Interface for platform-agnostic leaderboard utilities |
CInternetConnectionUtils | |
CAchievementsBridge | Provides a bridge between C# code and the CloudOnceAchievements iOS plug-in. |
CCloudOnceEvents | |
CCloudProviderBase | Base class for the Cloud service providers. |
CConflictResolver | Handles data conflict resolution. |
CCurrencyValue | Data-class to store currency value. |
CDataManager | Stores and retrieves key-value pairs. Serializes and deserializes GameData to/from the cloud and the local disk. In case of conflicts it uses ConflictResolver to figure out what data to keep and what to discard. |
CGameData | Container class for the data the DataManager manages ;) |
CiCloudBridge | Provides a bridge between C# code and the CloudOnceSave iOS plug-in. |
CiCloudListener | Used to listen for messages from the CloudOnceSave iOS plug-in. |
CIJsonConvertible | |
CIJsonDeserializable | |
CIJsonSerializable | |
CIPersistent | Used by cloud preferences to facilitate loading and saving of data. |
CJsonHelper | Helper methods for serialization and deserialization |
CJSONObject | |
CPersistentCurrency | A currency that is stored in the cloud. |
CPersistentValue | A preference that is stored in the cloud. |
CSyncableCurrency | Handles virtual currencies. Keeps a record of all the earnings and purchases for every device the user has. This way the balance should always be accurate. |
CSyncableItem | Data-class for regular cloud preferences. Takes care of serialization and deserialization of the data. The value can be reset to default or altered. |
CSyncableItemMetaData | Holds data about a SyncableItem. |
CUnexpectedCollectionElementTypeException | Used by the DataManager when a value type is not as expected. This will usually mean that the same Key has been used for more than one cloud preference, or that something has gone wrong during serialization/deserialization. |
CUnifiedAchievement | A cross-platform achievement. Class has methods for unlocking, revealing and incrementing the achievement that will work for all supported platforms. Only intended to be used by CloudOnce internal classes. |
CUnifiedLeaderboard | A cross-platform leaderboard. Class has a method for submitting score that will work for all supported platforms. Only intended to be used by CloudOnce internal classes. |
▼NQuickStart | |
CAchievementsButton | Attach this to your Achievements GUI button. |
CDeactivateOnAwakeIfNotGoogle | Attach this to any object that should be deactivated if it's not on Google Play. For example the Google Sign out/in button. |
CDeactivateOnCloudOnceEvent | Deactivate the GameObject that the scripts is attached to when the selected CloudOnce event is called. Could for example be used on a loading screen. |
CGoogleSignOutButton | Google requires that players are provided with a sign-out option: https://developers.google.com/games/services/checklist |
CInitializeCloudOnce | Attach this anywhere in the scene you want the players to log in to the native services. |
CLeaderboardsButton | Attach this to your Leaderboards GUI button. |
CLoadSceneOnCloudOnceEvent | Loads a scene when the selected CloudOnce event is called. |
CAchievements | Empty class that is overwritten by the CloudOnce Editor. |
CCloud | Access point to the current platform-specific Cloud service provider |
CCloudRequestResult | Used for callbacks when calling on methods in the native bridge plug-ins |