MegaFFD4x4x4WarpEditor.cs 405 B

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