This reference page is linked to from the following overview topics: Library File Descriptions.
Interface to Asset Tracking System.
This interface gives access to the Asset Tracking System. This includes control over the Asset Tracking dialog, support dialogs, and version control system integration. It also provides access to the Asset Repathing UI functionality and file dependency information. The version control system related methods (such as checkin, checkout, etc.) incorporate the common dialogs used for all providers. For lower level access to providers use the IATSProvider interface.
#include <IATSMax.h>
Public Member Functions |
|
Dialog Access
|
|
virtual bool | GetVisible ()=0 |
Get visibility state of dialog. |
|
virtual void | SetVisible (bool bVisible)=0 |
Set visibility state of dialog. |
|
virtual int | NumFilesSelected ()=0 |
Number of files selected in dialog. |
|
virtual int | GetSelectedFiles (MaxSDK::Array< MSTR > &fileList)=0 |
Get selected files. |
|
virtual int | GetFilesByFileSystemStatus (DWORD dwFSStatus, MaxSDK::Array< MSTR > &fileList)=0 |
Get a tab of files based on their file
system status. |
|
virtual DWORD | GetFileSystemStatus (const MCHAR *szFilename)=0 |
Return the file system status of the
specified file. |
|
virtual int | GetResolvedPaths (const MaxSDK::Array< MSTR > &fileList, MaxSDK::Array< MSTR > &resolvedFileList)=0 |
Get the resolved file paths for a given list
of files. |
|
virtual int | GetDependencyFileList (Animatable *animatable, MaxSDK::Array< MSTR > &fileList, bool includeRefHierarchy)=0 |
Get the list of files that are used by the
given Animatable.
|
|
virtual int | NumFiles ()=0 |
Number of files in dialog. |
|
virtual int | GetFiles (MaxSDK::Array< MSTR > &fileList)=0 |
Get files. |
|
virtual int | GetATSFileList (ATSFileList &atsFileList, bool bSetAllActive, bool bTagExcluded)=0 |
Populate an ATSFileList
object. |
|
virtual int | GetDependentFiles (const MCHAR *szFile, bool bRecurse, MaxSDK::Array< MSTR > &fileList, bool bIncludeOutputFiles=true)=0 |
Get list of dependent files. |
|
virtual bool | IsInputFile (const MCHAR *szFile)=0 |
Determine if a file is an input file and a
true dependent file. |
|
virtual void | SelectFiles (const MaxSDK::Array< MSTR > &fileList)=0 |
Select files. |
|
virtual void | ClearSelection ()=0 |
Clears all selections in dialog. |
|
virtual void | Refresh ()=0 |
Refreshes the dialog. |
|
Options
|
|
virtual bool | GetDisabled ()=0 |
Get disabled state of dialog. |
|
virtual void | SetDisabled (bool bDisabled)=0 |
Set disabled state of dialog. |
|
virtual bool | GetSilent ()=0 |
Get silent state of dialog. |
|
virtual void | SetSilent (bool bSilent)=0 |
Set silent state of dialog. |
|
virtual bool | GetAutoLogin ()=0 |
Get autologin state of dialog. |
|
virtual void | SetAutoLogin (bool bAutoLogin)=0 |
Set autologin state of dialog. |
|
virtual bool | GetTreeView ()=0 |
Get state of tree view. |
|
virtual void | SetTreeView (bool bTreeView)=0 |
Set state of tree view. |
|
virtual bool | GetTableView ()=0 |
Get state of table view. |
|
virtual void | SetTableView (bool bTableView)=0 |
Set state of table view. |
|
virtual bool | GetCheckNetworkPaths () const =0 |
Get state of Check Network Path property.
|
|
virtual void | SetCheckNetworkPaths (bool bCheckPaths)=0 |
Set state of Check Network Path property.
|
|
virtual bool | GetDisplayExcluded ()=0 |
Get display state of excluded files.
|
|
virtual void | SetDisplayExcluded (bool bDisplay)=0 |
Set display state of excluded files.
|
|
virtual bool | GetExcludeOutputFiles ()=0 |
Get the exclusion state of output files.
|
|
virtual void | SetExcludeOutputFiles (bool bExclude)=0 |
Set the exclusion state of output files.
|
|
Aux Dialog
|
|
virtual void | ShowPromptsDialog ()=0 |
Display Prompts dialog. |
|
virtual void | ShowWorkingCommentDialog ()=0 |
Display Working Comment dialog. |
|
virtual void | ShowStatusLogDialog ()=0 |
Display Status Log dialog. |
|
Providers
|
|
virtual int | NumProviders ()=0 |
Number of registered providers. |
|
virtual IATSProvider * | GetProvider (int iProviderIndex)=0 |
Get IATSProvider pointer. |
|
virtual const MCHAR * | GetProviderName (int iProviderIndex)=0 |
Get ATS Provider name. |
|
virtual int | GetActiveProvider ()=0 |
Get active ATS Provider index. |
|
virtual void | SetActiveProvider (int iProviderIndex)=0 |
Set active ATS Provider. |
|
virtual bool | LoginProvider (int iProviderIndex)=0 |
Login to specified ATS Provider. |
|
virtual bool | LogoutProvider (int iProviderIndex)=0 |
Logout of specified ATS Provider. |
|
virtual bool | IsFileExcluded (int iProviderIndex, const MCHAR *szFile)=0 |
Determine if a file is excluded by an
ATS Provider.
|
|
virtual bool | IsFileShareLocked (int iProviderIndex, const MCHAR *szFile)=0 |
Determine if a file is share locked by an
ATS Provider.
|
|
virtual bool | Checkin (int iProviderIndex, const MaxSDK::Array< MSTR > &fileList, MSTR &strComment)=0 |
Checkin list of files to an ATS Provider. |
|
virtual bool | Checkout (int iProviderIndex, const MaxSDK::Array< MSTR > &fileList, MSTR &strComment)=0 |
Checkout list of files to an ATS Provider. |
|
virtual bool | UnCheckout (int iProviderIndex, const MaxSDK::Array< MSTR > &fileList)=0 |
Undo Checkout for list of files fr an
ATS Provider.
|
|
virtual bool | AddFiles (int iProviderIndex, const MaxSDK::Array< MSTR > &fileList, MSTR &strComment, Tab< bool > *pIsHidden=NULL)=0 |
Add list of files to an ATS Provider. |
|
virtual bool | GetLatest (int iProviderIndex, const MaxSDK::Array< MSTR > &fileList)=0 |
Get latest version of list of files for an
ATS Provider.
|
|
Policies
|
|
virtual void | CheckForDependentFiles (int iProviderIndex, MCHAR *szFilename)=0 |
Policy check for dependent files. |
|
virtual void | CheckForCheckedOutFiles (int iProviderIndex)=0 |
Policy check for checked out files. |
|
virtual void | CheckForUnControlledFiles (int iProviderIndex)=0 |
Policy check for uncontrolled files.
|
|
virtual void | CheckForOutDatedFiles (int iProviderIndex)=0 |
Policy check for out dated files. |
|
virtual void | CheckForSceneFileCheckOut (int iProviderIndex)=0 |
Policy check scene file. |
|
Misc
|
|
virtual void | SetWorkingComment (const MCHAR *szComment)=0 |
Set the current Working Comment. |
|
virtual const MCHAR * | GetWorkingComment ()=0 |
Get the current Working Comment. |
|
virtual void | AppendStatusLog (const MCHAR *szStatus)=0 |
Append status message to Status Log.
|
|
virtual void | ClearStatusLog ()=0 |
Clear the contents of the Status Log.
|
|
virtual const MCHAR * | GetStatusLog ()=0 |
Get the conents of the Status Log. |
|
Repathing functionality - via UI
|
|
virtual bool | SetPath (const MCHAR *aNewPath, bool aCreateOutputFolder=false)=0 |
Sets the path on all listed assets to the
passed in path. |
|
virtual bool | SetPathOnSelection (const MCHAR *aNewPath, bool aCreateOutputFolder=false)=0 |
Sets the path on the asset selection set.
|
|
virtual bool | RetargetCommonRoot (const MCHAR *aNewPath, bool aCreateOutputFolder=false)=0 |
Retargets the common-root portion of all
assets listed in the ATS. |
|
virtual bool | RetargetCommonRootOfSelection (const MCHAR *aNewPath, bool aCreateOutputFolder=false)=0 |
Retargets the common-root portion of assets
selected in the ATS.
|
|
virtual bool | RetargetSelection (const MCHAR *aNewPath, bool aCreateOutputFolder=false)=0 |
Retargets single-asset selection to the
value passed in. |
|
virtual bool | ResolveSelectionToUNC ()=0 |
Resolve the current selection set to its UNC
equivalent,. |
|
virtual bool | ResolveSelectionRelativeToProjectFolder ()=0 |
Converts the current selection set to
relative paths. |
|
virtual bool | ResolveSelectionToAbsolute ()=0 |
Converts the current selection set to
absolute paths. |
|
Repathing functionality - generic
|
|
virtual bool | RetargetAssets (ReferenceTarget &refTarget, const MCHAR *aOldPath, const MCHAR *aNewPath, bool aCreateOutputFolder=false)=0 |
Generically remaps assets declared by a
ReferenceTarget. |
virtual bool GetVisible | ( | ) | [pure virtual] |
virtual void SetVisible | ( | bool | bVisible | ) | [pure virtual] |
Set visibility state of dialog.
[in] | bVisible | true to display dialog, false to hide dialog |
virtual int NumFilesSelected | ( | ) | [pure virtual] |
Number of files selected in dialog.
virtual int GetSelectedFiles | ( | MaxSDK::Array< MSTR > & | fileList | ) | [pure virtual] |
Get selected files.
[out] | fileList | reference to a Tab of TSTRs. This parameter will be filled with a copy of the selected files names |
virtual int GetFilesByFileSystemStatus | ( | DWORD | dwFSStatus, |
MaxSDK::Array< MSTR > & | fileList | ||
) | [pure virtual] |
Get a tab of files based on their file system status.
[in] | dwFSStatus | is a mask of kATSFSStatusXXX flags used to match against file entries. |
[out] | fileList | reference to a Tab of TSTRs. This parameter will be filled with a copy of the files matching the dwFSStatus flags. |
virtual DWORD GetFileSystemStatus | ( | const MCHAR * | szFilename | ) | [pure virtual] |
Return the file system status of the specified file.
[in] | szFilename | string containing the filename to retrieve status from. |
virtual int GetResolvedPaths | ( | const MaxSDK::Array< MSTR > & | fileList, |
MaxSDK::Array< MSTR > & | resolvedFileList | ||
) | [pure virtual] |
Get the resolved file paths for a given list of files.
[in] | fileList | reference to a Tab of TSTRs. |
[out] | resolvedFileList | reference to a Tab of TSTRs that contains the same number of entries in fileList. If the file was found or is still missing the entry in resolvedFileList will be the same as fileList. If the file was resolved the entry in resolvedFileList will contains the resolved file path. Resolved files are files not found in the location specified within the scene file but are found using the standard and user defined search paths. |
virtual int GetDependencyFileList | ( | Animatable * | animatable, |
MaxSDK::Array< MSTR > & | fileList, | ||
bool | includeRefHierarchy | ||
) | [pure virtual] |
Get the list of files that are used by the given Animatable.
[in] | animatable | The animatable for which the file dependencies are to be listed. |
[out] | fileList | The table through which the file list is returned. |
[in] | includeRefHierarchy | Set to true to list dependencies of the entire reference hierarchy; set to false to limit the list to 'animatable'. |
virtual int NumFiles | ( | ) | [pure virtual] |
virtual int GetFiles | ( | MaxSDK::Array< MSTR > & | fileList | ) | [pure virtual] |
Get files.
[out] | fileList | reference to a Tab of TSTRs. This parameter will be filled with a copy of the files names in the dialog |
virtual int GetATSFileList | ( | ATSFileList & | atsFileList, |
bool | bSetAllActive, | ||
bool | bTagExcluded | ||
) | [pure virtual] |
Populate an ATSFileList object.
[out] | atsFileList | reference to an ATSFileList object. |
[in] | bSetAllActive | specifies if all of the files added to the ATSFileList object will be marked as active (kATSStatusActive) |
[in] | bTagExcluded | specifies if files excluded from the current provider should be marked as excluded (kATSStatusExcluded) |
virtual int GetDependentFiles | ( | const MCHAR * | szFile, |
bool | bRecurse, | ||
MaxSDK::Array< MSTR > & | fileList, | ||
bool | bIncludeOutputFiles =
true |
||
) | [pure virtual] |
Get list of dependent files.
[in] | szFile | string containing the filename to list dependent files from |
[in] | bRecurse | specifies if method should include all dependent files |
[out] | fileList | reference to a Tab of TSTRs. This parameter will be filled with a copy of the dependent files names |
[in] | bIncludeOutputFiles | specifies if output files should be included in dependency list |
virtual bool IsInputFile | ( | const MCHAR * | szFile | ) | [pure virtual] |
Determine if a file is an input file and a true dependent file.
[in] | szFile | string that contains the file name |
virtual void SelectFiles | ( | const MaxSDK::Array< MSTR > & | fileList | ) | [pure virtual] |
Select files.
[in] | fileList | reference to a Tab of TSTRs. This parameter specifies the list of files to select in the dialog. |
virtual void ClearSelection | ( | ) | [pure virtual] |
Clears all selections in dialog.
virtual void Refresh | ( | ) | [pure virtual] |
Refreshes the dialog.
This method both updates the dependent file list and if connected to an ATS Provider it will query the server for updated version control status
virtual bool GetDisabled | ( | ) | [pure virtual] |
virtual void SetDisabled | ( | bool | bDisabled | ) | [pure virtual] |
Set disabled state of dialog.
[in] | bDisabled | true to disable, false to enable |
virtual bool GetSilent | ( | ) | [pure virtual] |
Get silent state of dialog.
If connected to an ATS Provider, the provider might not respect the silent flag and display dialogs.
virtual void SetSilent | ( | bool | bSilent | ) | [pure virtual] |
Set silent state of dialog.
[in] | bSilent | true to silent, false to enable |
virtual bool GetAutoLogin | ( | ) | [pure virtual] |
Get autologin state of dialog.
This will attempt to login to all registered ATS Providers when a project (scene file) is open.
virtual void SetAutoLogin | ( | bool | bAutoLogin | ) | [pure virtual] |
Set autologin state of dialog.
[in] | bAutoLogin | true to auto login, false to enable |
virtual bool GetTreeView | ( | ) | [pure virtual] |
Get state of tree view.
virtual void SetTreeView | ( | bool | bTreeView | ) | [pure virtual] |
Set state of tree view.
[in] | bTreeView | true to display tree view, false to display table view |
virtual bool GetTableView | ( | ) | [pure virtual] |
Get state of table view.
virtual void SetTableView | ( | bool | bTableView | ) | [pure virtual] |
Set state of table view.
[in] | bTableView | true to display table view, false to display tree view |
virtual bool GetCheckNetworkPaths | ( | ) | const [pure virtual] |
Get state of Check Network Path property.
virtual void SetCheckNetworkPaths | ( | bool | bCheckPaths | ) | [pure virtual] |
Set state of Check Network Path property.
[in] | bCheckPaths | true if the ATS should check for the existence of files on network drives |
virtual bool GetDisplayExcluded | ( | ) | [pure virtual] |
Get display state of excluded files.
virtual void SetDisplayExcluded | ( | bool | bDisplay | ) | [pure virtual] |
Set display state of excluded files.
[in] | bDisplay | true to display excluded, false to hide excluded files |
virtual bool GetExcludeOutputFiles | ( | ) | [pure virtual] |
Get the exclusion state of output files.
virtual void SetExcludeOutputFiles | ( | bool | bExclude | ) | [pure virtual] |
Set the exclusion state of output files.
[in] | bExclude | true to exclude output files, false to include output files |
virtual void ShowPromptsDialog | ( | ) | [pure virtual] |
Display Prompts dialog.
virtual void ShowWorkingCommentDialog | ( | ) | [pure virtual] |
Display Working Comment dialog.
virtual void ShowStatusLogDialog | ( | ) | [pure virtual] |
Display Status Log dialog.
virtual int NumProviders | ( | ) | [pure virtual] |
Number of registered providers.
virtual IATSProvider* GetProvider | ( | int | iProviderIndex | ) | [pure virtual] |
Get IATSProvider pointer.
[in] | iProviderIndex | 0-based index of ATS Provider |
virtual const MCHAR* GetProviderName | ( | int | iProviderIndex | ) | [pure virtual] |
virtual int GetActiveProvider | ( | ) | [pure virtual] |
virtual void SetActiveProvider | ( | int | iProviderIndex | ) | [pure virtual] |
virtual bool LoginProvider | ( | int | iProviderIndex | ) | [pure virtual] |
virtual bool LogoutProvider | ( | int | iProviderIndex | ) | [pure virtual] |
virtual bool IsFileExcluded | ( | int | iProviderIndex, |
const MCHAR * | szFile | ||
) | [pure virtual] |
virtual bool IsFileShareLocked | ( | int | iProviderIndex, |
const MCHAR * | szFile | ||
) | [pure virtual] |
Determine if a file is share locked by an ATS Provider.
A file is considered share locked if the file is checked out by another user at a shared location. Share locked files should be treated as read-only by users who are accessing the file and are not the owner of the lock.
[in] | iProviderIndex | 0-based index of ATS Provider. If iProviderIndex is -1, the method will check all providers for a share locked status. |
[in] | szFile | string that contains the file name |
virtual bool Checkin | ( | int | iProviderIndex, |
const MaxSDK::Array< MSTR > & | fileList, | ||
MSTR & | strComment | ||
) | [pure virtual] |
virtual bool Checkout | ( | int | iProviderIndex, |
const MaxSDK::Array< MSTR > & | fileList, | ||
MSTR & | strComment | ||
) | [pure virtual] |
virtual bool UnCheckout | ( | int | iProviderIndex, |
const MaxSDK::Array< MSTR > & | fileList | ||
) | [pure virtual] |
virtual bool AddFiles | ( | int | iProviderIndex, |
const MaxSDK::Array< MSTR > & | fileList, | ||
MSTR & | strComment, | ||
Tab< bool > * | pIsHidden =
NULL |
||
) | [pure virtual] |
Add list of files to an ATS Provider.
[in] | iProviderIndex | 0-based index of ATS Provider |
[in] | fileList | reference to a Tab of TSTRs. |
[in] | strComment | reference to MSTR |
[in] | pIsHidden | optional pointer to Tab<bool> that corresponds to the fileList. A true entry indicates that the file will be added with a hidden status (if supported by the provider). |
virtual bool GetLatest | ( | int | iProviderIndex, |
const MaxSDK::Array< MSTR > & | fileList | ||
) | [pure virtual] |
virtual void CheckForDependentFiles | ( | int | iProviderIndex, |
MCHAR * | szFilename | ||
) | [pure virtual] |
virtual void CheckForCheckedOutFiles | ( | int | iProviderIndex | ) | [pure virtual] |
Policy check for checked out files.
This will warn the user of any files that are currently checked out. This is typically called when a scene is about to be closed and the user should check in any checked out files.
[in] | iProviderIndex | 0-based index of ATS Provider |
virtual void CheckForUnControlledFiles | ( | int | iProviderIndex | ) | [pure virtual] |
virtual void CheckForOutDatedFiles | ( | int | iProviderIndex | ) | [pure virtual] |
Policy check for out dated files.
This will warn the user of any files that are not up to date. This is typically called when a scene is loaded and the user should update outdated files.
[in] | iProviderIndex | 0-based index of ATS Provider |
virtual void CheckForSceneFileCheckOut | ( | int | iProviderIndex | ) | [pure virtual] |
Policy check scene file.
This will warn the user if the scene file is under control and it is not checked out. This is typically called when a scene is loaded.
[in] | iProviderIndex | 0-based index of ATS Provider |
virtual void SetWorkingComment | ( | const MCHAR * | szComment | ) | [pure virtual] |
Set the current Working Comment.
[in] | szComment | string that contains the comment |
virtual const MCHAR* GetWorkingComment | ( | ) | [pure virtual] |
Get the current Working Comment.
virtual void AppendStatusLog | ( | const MCHAR * | szStatus | ) | [pure virtual] |
Append status message to Status Log.
[in] | szStatus | string that contains the status message |
virtual void ClearStatusLog | ( | ) | [pure virtual] |
Clear the contents of the Status Log.
virtual const MCHAR* GetStatusLog | ( | ) | [pure virtual] |
Get the conents of the Status Log.
virtual bool SetPath | ( | const MCHAR * | aNewPath, |
bool | aCreateOutputFolder =
false |
||
) | [pure virtual] |
Sets the path on all listed assets to the passed in path.
Sets the path component of all listed assets to the value passed in to this function.
Note: If the Resolve files and folders to UNC paths option is turned on then this function will automatically convert mapped-drive paths to their UNC equivalent.
[in] | aNewPath | The path value that will be applied to all listed assets. |
[in] | aCreateOutputFolder | If repathing an output directory, and the path being repathed to does not exist, create path folder(s). |
virtual bool SetPathOnSelection | ( | const MCHAR * | aNewPath, |
bool | aCreateOutputFolder =
false |
||
) | [pure virtual] |
Sets the path on the asset selection set.
Sets the path component of selected assets to the value passed in to this function.
Note: If the Resolve files and folders to UNC paths option is turned on then this function will automatically convert mapped-drive paths to their UNC equivalent.
[in] | aNewPath | The path value that will be applied to all selected assets. |
[in] | aCreateOutputFolder | If repathing an output directory, and the path being repathed to does not exist, create path folder(s). |
virtual bool RetargetCommonRoot | ( | const MCHAR * | aNewPath, |
bool | aCreateOutputFolder =
false |
||
) | [pure virtual] |
Retargets the common-root portion of all assets listed in the ATS.
Will retarget the common-root of all assets to the value passed in. For example, if all assets belong to C:\ but are found in different sub-directories of C:\, then only the C:\ will be repathed.
Note: If the Resolve files and folders to UNC paths option is turned on then this function will automatically convert mapped-drive paths to their UNC equivalent.
[in] | aNewPath | The path portion that will be prepended in the place of the common-root. |
[in] | aCreateOutputFolder | If repathing an output directory, and the path being repathed to does not exist, create path folder(s). |
virtual bool RetargetCommonRootOfSelection | ( | const MCHAR * | aNewPath, |
bool | aCreateOutputFolder =
false |
||
) | [pure virtual] |
Retargets the common-root portion of assets selected in the ATS.
Will retarget the common-root of selected assets to the value passed in. For example, if the selected assets belong to C:/resources/projectA/ but are found in different sub-directories of that folder, then only the C:/resources/projectA/ portion will be repathed.
Note: If the Resolve files and folders to UNC paths option is turned on then this function will automatically convert mapped-drive paths to their UNC equivalent.
[in] | aNewPath | The path portion that will be prepended in the place of the common-root. |
[in] | aCreateOutputFolder | If repathing an output directory, and the path being repathed to does not exist, create path folder(s). |
virtual bool RetargetSelection | ( | const MCHAR * | aNewPath, |
bool | aCreateOutputFolder =
false |
||
) | [pure virtual] |
Retargets single-asset selection to the value passed in.
Retargets a single asset to the value passed-into this function.
Note: If the Resolve files and folders to UNC paths option is turned on then this function will automatically convert mapped-drive paths to their UNC equivalent.
[in] | aNewPath | The value (including filename) that the single asset should be retargetd to. |
[in] | aCreateOutputFolder | If repathing an output directory, and the path being repathed to does not exist, create path folder(s). |
virtual bool ResolveSelectionToUNC | ( | ) | [pure virtual] |
Resolve the current selection set to its UNC equivalent,.
Resolves the current selection set to UNC, regardless of the current application setting.
virtual bool ResolveSelectionRelativeToProjectFolder | ( | ) | [pure virtual] |
Converts the current selection set to relative paths.
Converts the current selection set to relative paths. If the asset is Found (meaning that it is found in the search path) in a location other than that pointed to by the absolute path, then the relative path will be calculated based on this Found location. If not, then the absolute path is converted to an relative path relative to the current Project Folder setting, if possible.
virtual bool ResolveSelectionToAbsolute | ( | ) | [pure virtual] |
Converts the current selection set to absolute paths.
Converts the current selection set paths to absolute paths. If the asset is Found (meaning that it is found in the search path), then the absolute path will point to the found location. If not, then the relative path is converted to an absolute path relative to the current Project Folder setting.
virtual bool RetargetAssets | ( | ReferenceTarget & | refTarget, |
const MCHAR * | aOldPath, | ||
const MCHAR * | aNewPath, | ||
bool | aCreateOutputFolder =
false |
||
) | [pure virtual] |
Generically remaps assets declared by a ReferenceTarget.
Generically remaps assets declared by ReferenceTarget whose path value is equal to aOldPath (case-insensitive comparison), to the value aNewPath passed-in. This method calls the EnumAuxFiles implementation of ReferenceTarget to get a listing of assets.
[in] | refTarget | The ReferenceTarget object from which assets are declared |
[in] | aOldPath | Used to determine which asset to retarget. Any asset declared with this path will be retargeted to aNewPath. |
[in] | aNewPath | The retarget value. |
[in] | aCreateOutputFolder | If repathing an output directory, and the path being repathed to does not exist, create path folder(s). |