@@ -58,9 +58,12 @@ protected ModelExportException(SerializationInfo info, StreamingContext context)
58
58
}
59
59
60
60
/// <summary>
61
- /// The ModelExporter class can be used to export Unity game objects to an FBX File.
62
- /// To do so, simply use its ExportObject and ExportObjects methods. The default export
61
+ /// Use the ModelExporter class to export Unity GameObjects to an FBX file.
62
+ /// <para>
63
+ /// Use the ExportObject and ExportObjects methods. The default export
63
64
/// options are used when exporting the objects to the FBX file.
65
+ /// <para>
66
+ /// <para>For information on using the ModelExporter class.</para>
64
67
/// </summary>
65
68
public sealed class ModelExporter : System . IDisposable
66
69
{
@@ -4051,7 +4054,7 @@ bool ExportMesh (GameObject gameObject, FbxNode fbxNode)
4051
4054
internal int NumTriangles { set ; get ; }
4052
4055
4053
4056
/// <summary>
4054
- /// Clean up this class on garbage collection
4057
+ /// Cleans up this class on garbage collection
4055
4058
/// </summary>
4056
4059
public void Dispose ( )
4057
4060
{
@@ -4098,33 +4101,39 @@ internal static string ExportObject (
4098
4101
}
4099
4102
4100
4103
/// <summary>
4101
- /// Exports an array of Unity game objects to an FBX file.
4102
- /// Returns the FBX file path if successful, otherwise returns null.
4104
+ /// Exports an array of Unity GameObjects to an FBX file.
4103
4105
/// </summary>
4106
+ /// <returns>
4107
+ /// Returns the FBX file path if successful; otherwise returns null.
4108
+ /// </returns>
4104
4109
/// <param name="filePath">Absolute file path to use for the FBX file.</param>
4105
- /// <param name="objects">Array of Unity objects to export.</param>
4110
+ /// <param name="objects">Array of Unity GameObjects to export.</param>
4106
4111
[ SecurityPermission ( SecurityAction . LinkDemand ) ]
4107
4112
public static string ExportObjects ( string filePath , UnityEngine . Object [ ] objects = null )
4108
4113
{
4109
4114
return ExportObjects ( filePath , objects , exportOptions : null , exportData : null ) ;
4110
4115
}
4111
4116
4112
4117
/// <summary>
4113
- /// Exports a single Unity game object to an FBX file.
4114
- /// Returns the FBX file path if successful, otherwise returns null.
4118
+ /// Exports a single Unity GameObject to an FBX file.
4115
4119
/// </summary>
4120
+ /// <returns>
4121
+ /// The FBX file path if successful; otherwise null.
4122
+ /// </returns>
4116
4123
/// <param name="filePath">Absolute file path to use for the FBX file.</param>
4117
- /// <param name="singleObject">The Unity object to export.</param>
4124
+ /// <param name="singleObject">The Unity GameObject to export.</param>
4118
4125
[ SecurityPermission ( SecurityAction . LinkDemand ) ]
4119
4126
public static string ExportObject ( string filePath , UnityEngine . Object singleObject )
4120
4127
{
4121
4128
return ExportObjects ( filePath , new Object [ ] { singleObject } , exportOptions : null ) ;
4122
4129
}
4123
4130
4124
4131
/// <summary>
4125
- /// Export a list of (Game) objects to FBX file.
4126
- /// Use the SaveFile panel to allow user to enter a file name.
4127
- /// <summary>
4132
+ /// Exports a list of GameObjects to an FBX file.
4133
+ /// <para>
4134
+ /// Use the SaveFile panel to allow the user to enter a file name.
4135
+ /// </para>
4136
+ /// </summary>
4128
4137
[ SecurityPermission ( SecurityAction . LinkDemand ) ]
4129
4138
internal static string ExportObjects (
4130
4139
string filePath ,
0 commit comments