Getting Configuration Information
Information on the plugin setup (licensing, compatibility, ...) can be gathered from the static Configuration class.
Get Compatibility Information
For example, it is possible to get information on the currently install plugin compatibility with :
public static Compatibility IsPluginCompatible(out string message)
setup (licensing compatibility
Get Licensing Information
It is possible to check if a license is activated with :
public static bool IsLicenseValid()
For more information on how to manage licenses from code in the plugin, please check the API documentation.
Check for Updates
To check for updates from code, first do a check :
public static void CheckForUpdate()
Then, get the update check status with :
public static Plugin4UnityI.checkForUpdatesReturn UpdateStatus
For more information, please check the API Documentation.