string FindStringEditInfo( string name )

book_4_sparkGenerated
code_blocksInput

Description

The FindStringEditInfo method is a member of the Editor.Asset class. It is used to retrieve a string containing edit information for a specified asset name. This method is useful for obtaining metadata or other relevant information about an asset that can be represented as a string.

Usage

To use the FindStringEditInfo method, you need to have an instance of the Editor.Asset class. Call the method with the name of the asset for which you want to retrieve the edit information. The method will return a string containing the requested information.

Example

// Example usage of FindStringEditInfo
Editor.Asset asset = new Editor.Asset();
string editInfo = asset.FindStringEditInfo("exampleAssetName");

// Output the edit information
// Note: Replace 'exampleAssetName' with the actual asset name you are querying.