ConvertToPrefabSettings.cs 4.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. using UnityEngine;
  2. namespace UnityEditor.Formats.Fbx.Exporter
  3. {
  4. [CustomEditor (typeof(ConvertToPrefabSettings))]
  5. internal class ConvertToPrefabSettingsEditor : UnityEditor.Editor
  6. {
  7. private const float LabelWidth = 175;
  8. private const float FieldOffset = 18;
  9. private string[] exportFormatOptions = new string[]{ "ASCII", "Binary" };
  10. private string[] includeOptions = new string[]{"Model(s) + Animation"};
  11. private string[] lodOptions = new string[]{"All Levels"};
  12. private string[] objPositionOptions { get { return new string[]{"Local Pivot"}; }}
  13. public override void OnInspectorGUI ()
  14. {
  15. var exportSettings = ((ConvertToPrefabSettings)target).info;
  16. EditorGUIUtility.labelWidth = LabelWidth;
  17. GUILayout.BeginHorizontal();
  18. EditorGUILayout.LabelField(new GUIContent("Export Format", "Export the FBX file in the standard binary format." +
  19. " Select ASCII to export the FBX file in ASCII format."), GUILayout.Width(LabelWidth - FieldOffset));
  20. exportSettings.SetExportFormat((ExportSettings.ExportFormat)EditorGUILayout.Popup((int)exportSettings.ExportFormat, exportFormatOptions));
  21. GUILayout.EndHorizontal();
  22. GUILayout.BeginHorizontal();
  23. EditorGUILayout.LabelField(new GUIContent("Include", "Select whether to export models, animation or both."), GUILayout.Width(LabelWidth - FieldOffset));
  24. // always greyed out, show only to let user know what will happen
  25. EditorGUI.BeginDisabledGroup(true);
  26. EditorGUILayout.Popup(0, includeOptions);
  27. EditorGUI.EndDisabledGroup ();
  28. GUILayout.EndHorizontal();
  29. GUILayout.BeginHorizontal();
  30. EditorGUILayout.LabelField(new GUIContent("LOD level", "Select which LOD to export."), GUILayout.Width(LabelWidth - FieldOffset));
  31. // always greyed out, show only to let user know what will happen
  32. EditorGUI.BeginDisabledGroup(true);
  33. EditorGUILayout.Popup(0, lodOptions);
  34. EditorGUI.EndDisabledGroup ();
  35. GUILayout.EndHorizontal();
  36. GUILayout.BeginHorizontal();
  37. EditorGUILayout.LabelField(new GUIContent("Object(s) Position", "Select an option for exporting object's transform."), GUILayout.Width(LabelWidth - FieldOffset));
  38. // always greyed out, show only to let user know what will happen
  39. EditorGUI.BeginDisabledGroup(true);
  40. EditorGUILayout.Popup(0, objPositionOptions);
  41. EditorGUI.EndDisabledGroup ();
  42. GUILayout.EndHorizontal();
  43. exportSettings.SetAnimatedSkinnedMesh(EditorGUILayout.Toggle ("Animated Skinned Mesh", exportSettings.AnimateSkinnedMesh));
  44. exportSettings.SetUseMayaCompatibleNames(EditorGUILayout.Toggle (
  45. new GUIContent ("Compatible Naming",
  46. "In Maya some symbols such as spaces and accents get replaced when importing an FBX " +
  47. "(e.g. \"foo bar\" becomes \"fooFBXASC032bar\"). " +
  48. "On export, convert the names of GameObjects so they are Maya compatible." +
  49. (exportSettings.UseMayaCompatibleNames ? "" :
  50. "\n\nWARNING: Disabling this feature may result in lost material connections," +
  51. " and unexpected character replacements in Maya.")
  52. ),
  53. exportSettings.UseMayaCompatibleNames));
  54. }
  55. }
  56. internal class ConvertToPrefabSettings : ExportOptionsSettingsBase<ConvertToPrefabSettingsSerialize>
  57. {}
  58. [System.Serializable]
  59. internal class ConvertToPrefabSettingsSerialize : ExportOptionsSettingsSerializeBase
  60. {
  61. public override ExportSettings.Include ModelAnimIncludeOption { get { return ExportSettings.Include.ModelAndAnim; } }
  62. public override ExportSettings.LODExportType LODExportType { get { return ExportSettings.LODExportType.All; } }
  63. public override ExportSettings.ObjectPosition ObjectPosition { get { return ExportSettings.ObjectPosition.Reset; } }
  64. public override bool ExportUnrendered { get { return true; } }
  65. public override bool AllowSceneModification { get { return true; } }
  66. }
  67. }