Method | Description | |
---|---|---|
Preload ( ) : void | ||
Preloader ( string rootFolder ) : System |
Constructs a preloader object to help preload shape manager.
|
|
Preloader ( string rootFolder, IEnumerable |
Constructs a preloader object to help preload a specific version of shape manager.
|
|
Preloader ( string rootFolder, LibraryVersion version ) : System |
Construct a Preloader by specifying a required library version.
|
|
Preloader ( string rootFolder, string shapeManagerPath, LibraryVersion version ) : System |
Constructs a preloader object to help preload the specified version of shape manager from the given directory.
|
public Preloader ( string rootFolder ) : System | ||
rootFolder | string | Full path of the directory that contains /// LibG_xxx folder, where 'xxx' represents the library version. In a /// typical setup this would be the same directory that contains Dynamo /// core modules. This must represent a valid directory. /// |
return | System |
public Preloader ( string rootFolder, IEnumerable |
||
rootFolder | string | Full path of the directory that contains /// LibG_xxx folder, where 'xxx' represents the library version. In a /// typical setup this would be the same directory that contains Dynamo /// core modules. This must represent a valid directory. /// |
versions | IEnumerable |
A list of version numbers to check for in order /// of preference. This argument cannot be null or empty. |
return | System |
public Preloader ( string rootFolder, LibraryVersion version ) : System | ||
rootFolder | string | Full path of the directory that contains /// LibG_xxx folder, where 'xxx' represents the library version. In a /// typical setup this would be the same directory that contains Dynamo /// core modules. This must represent a valid directory. /// |
version | LibraryVersion | The version of shape manager. |
return | System |
public Preloader ( string rootFolder, string shapeManagerPath, LibraryVersion version ) : System | ||
rootFolder | string | Full path of the directory that contains /// LibG_xxx folder, where 'xxx' represents the library version. In a /// typical setup this would be the same directory that contains Dynamo /// core modules. This must represent a valid directory. /// |
shapeManagerPath | string | The directory from where shape manager /// binaries can be preloaded from. |
version | LibraryVersion | The version of shape manager. |
return | System |