MegaFFD2x2x2WarpEditor.cs 405 B

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