This commit is contained in:
CortexCore
2025-03-24 14:42:40 +08:00
parent 18239a5ae4
commit 9845d20f7f
99 changed files with 5418 additions and 5512 deletions

View File

@@ -0,0 +1,23 @@
using System.Collections;
using System.Collections.Generic;
using MonKey;
using Pinwheel.Griffin;
using UnityEditor;
using UnityEngine;
namespace Net.Project.B.Po
{
public static class PolarisCommand
{
[Command(nameof(Shrinkwrap), "Shrinkwrap Terrain By Scene Colliders"), MenuItem("Tools/Terrain/Snrinkwrap")]
public static void Shrinkwrap()
{
var terrain = Object.FindObjectOfType<GStylizedTerrain>();
if (terrain is null)
{
Debug.LogError("未找到地形");
return;
}
}
}
}