The Title
property of the SceneFile
class represents the title of a scene file. This property is marked as obsolete, and it is recommended to use the GetMetadata
method instead to retrieve metadata information, including the title.
The Title
property of the SceneFile
class represents the title of a scene file. This property is marked as obsolete, and it is recommended to use the GetMetadata
method instead to retrieve metadata information, including the title.
To access the title of a scene file, it is recommended to use the GetMetadata
method with the appropriate parameters instead of directly accessing the Title
property. This ensures that you are using the most up-to-date and supported method for retrieving metadata.
// Example of using GetMetadata to retrieve the title SceneFile sceneFile = new SceneFile(); string title = sceneFile.GetMetadata("title", "Default Title"); // Avoid using the obsolete Title property deprecatedTitle = sceneFile.Title; // This is obsolete and not recommended