Unity 模型切割工具,CSG,任意图案,任意切割

强大的Unity 3D 模型切割工具

工具下载链接: CSG翻译版

效果:

使用:

Unity 模型切割工具,CSG,任意图案,任意切割_第1张图片

切割完成后选择切割好的模型可以保存模型(默认在Assets目录)

Unity 模型切割工具,CSG,任意图案,任意切割_第2张图片
Unity 模型切割工具,CSG,任意图案,任意切割_第3张图片

主要功能代码(不用编辑器窗口的使用方法)

主要类(此类没有继承MonoBehaviour 所以无法挂载到物体上,用的时候需要New):
Unity 模型切割工具,CSG,任意图案,任意切割_第4张图片
调用的方法:

public GameObject GetBooleanObj(BooleanType booleanType)
{
    GameObject BooleanObj = null;
    if (Target==null|| Brush==null)
    {
        Debug.Log("缺少目标,请确认布尔物体是否存在");
        return null;
    }
    switch (booleanType)
    {
        case BooleanType.正常切割:
            BooleanObj=CreateModel(CSG.Operation.Subtract);
            break;
        case BooleanType.交叉:
            BooleanObj = CreateModel(CSG.Operation.Intersection);
            break;
        case BooleanType.合并:
            BooleanObj = CreateModel(CSG.Operation.Union);
            break;
    }
    return BooleanObj;
}

你可能感兴趣的:(Unity插件,plugin,模型布尔运算,unity,unity3d,算法)