Method | Description | |
---|---|---|
Initialize ( System.Action onComplete ) : void |
Loads the package (downloading resources as required) and invokes the EntryPoint method upon completion.
|
|
Package ( string entryPoint, string scriptUrls, string resourceUrls ) : System |
Constructor.
|
Method | Description | |
---|---|---|
Initialize ( ) : void | ||
InvokeEntryPoint ( ) : void | ||
Package ( string entryPoint ) : System | ||
Package ( string entryPoint, string scriptUrls ) : System |
public Initialize ( System.Action onComplete ) : void | ||
onComplete | System.Action | Action to invoke upon completion. |
return | void |
public Package ( string entryPoint, string scriptUrls, string resourceUrls ) : System | ||
entryPoint | string | The entry point method to invoke. |
scriptUrls | string | /// The paths to the script(s) required for the package. /// If multiple scripts a semi-colon (;) seperated list is expected. /// |
resourceUrls | string | /// The paths to the resource file(s) that are required by the package (images, CSS). /// Multiple files are seperated by a semi-colon (;). /// Images (.png .jpg) are pre-loaded using the [ImagePreloader]. /// |
return | System |