MegaFFD3x3x3WarpEditor.cs 406 B

12345678910111213141516
  1. using UnityEditor;
  2. using UnityEngine;
  3. [CanEditMultipleObjects, CustomEditor(typeof(MegaFFD3x3x3Warp))]
  4. public class MegaFFD3x3x3WarpEditor : MegaFFDWarpEditor
  5. {
  6. [MenuItem("GameObject/Create Other/MegaFiers/Warps/FFD 3x3x3")]
  7. static void CreateStarShape()
  8. {
  9. CreateFFDWarp("FFD 3x3x3", typeof(MegaFFD3x3x3Warp));
  10. }
  11. public override string GetHelpString() { return "FFD3x3x3 Warp by Chris West"; }
  12. }