3dmax中VRay的3d导出glb的模型是黑白的,没有带贴图

错误案例:导出的3dmax.jlb文件在vue中运行,是黑色的

解决办法:直接用下面的代码运行

复制代码
import pymxs
from pymxs import runtime as rt

def convert_vray_to_physical_material(convert_to_physical=True):
    """
    将场景中所有 VRayMtl 转换为 Physical Material 或 Standard Material
    :param convert_to_physical: True=转Physical Material, False=转Standard Material
    """
    rt.redrawViews()  # 刷新视图

    # 获取场景中所有VRay材质
    vray_materials = [mat for mat in rt.sceneMaterials if rt.isKindOf(mat, rt.VRayMtl)]
    
    if not vray_materials:
        rt.messageBox("场景中没有找到 VRayMtl 材质!", title="提示")
        return

    for vray_mat in vray_materials:
        try:
            new_mat = None
            mat_name = vray_mat.name
            
            if convert_to_physical:
                # 创建 Physical Material
                new_mat = rt.PhysicalMaterial()
                new_mat.name = f"{mat_name}_Physical"
                
                # 复制基础属性
                if hasattr(vray_mat, "diffuse"):
                    new_mat.base_color = vray_mat.diffuse
                
                if hasattr(vray_mat, "reflection"):
                    new_mat.metalness = 0.0  # 非金属
                    new_mat.roughness = 1.0 - vray_mat.reflection_glossiness
                    new_mat.ior = 1.5  # 默认值
            else:
                # 创建 Standard Material
                new_mat = rt.StandardMaterial()
                new_mat.name = f"{mat_name}_Standard"
                
                # 复制基础属性
                if hasattr(vray_mat, "diffuse"):
                    new_mat.diffuse = vray_mat.diffuse
                
                if hasattr(vray_mat, "reflection"):
                    new_mat.specular_level = vray_mat.reflection_amount * 100
                    new_mat.glossiness = vray_mat.reflection_glossiness * 100

            # 替换材质
            rt.replaceInstances(vray_mat, new_mat)
            print(f"已转换材质: {mat_name} -> {new_mat.name}")
        except Exception as e:
            print(f"转换失败: {vray_mat.name} | 错误: {str(e)}")

    rt.messageBox(f"转换完成!共处理 {len(vray_materials)} 个VRay材质。", title="完成")

# 调用示例(默认转Physical Material)
convert_vray_to_physical_material(convert_to_physical=True)

插件安装步骤

  1. 保存脚本

    • 将上述代码复制到记事本,保存为 VRayToPhysicalMaterialConverter.py(确保扩展名是 .py)。
  2. 安装到3ds Max

    • 方法1(临时运行)

      打开3ds Max → 菜单栏 ScriptingRun Script → 选择该脚本文件。

    • 方法2(永久安装)

      将脚本文件放入3ds Max的脚本目录(如 C:\Users\<用户名>\AppData\Local\Autodesk\3dsMax\<版本>\ENU\scripts\),然后通过 MAXScript监听器 输入以下命令加载:

      python.executeFile("VRayToPhysicalMaterialConverter.py")

  3. 自定义按钮(可选)

    • 打开 Customize User InterfaceToolbars → 新建一个工具栏。

    • Category 中选择 Python,找到脚本名称拖到工具栏即可生成按钮。

运行后的结果:

相关推荐
看到我请叫我铁锤14 小时前
vue3中THINGJS初始化步骤
前端·javascript·vue.js·3d
棒棒的皮皮1 天前
【Python】Open3d用于3D测高项目
python·3d·open3d
CV实验室2 天前
CV论文速递:覆盖视频生成与理解、3D视觉与运动迁移、多模态与跨模态智能、专用场景视觉技术等方向 (11.17-11.21)
人工智能·计算机视觉·3d·论文·音视频·视频生成
Highcharts.js3 天前
使用 Highcharts 3D图表入门
3d·highcharts·使用文档·3d图表·交互图表·三维图表·3d 可视化
O***p6043 天前
C++在游戏中的Ogre3D
游戏·3d·ogre
sdjnled2293 天前
山东裸眼3D立体LED显示屏专业服务商
人工智能·3d
徒慕风流3 天前
GeoSight:基于 Open3D 与 PySide6 的参数化 3D 模型处理与实时点云监控工具
计算机视觉·3d·信号处理
三条猫4 天前
将3D CAD 模型结构树转换为图结构,用于训练CAD AI的思路
人工智能·3d·ai·cad·模型训练·图结构·结构树
二川bro5 天前
第59节:常见问题汇编 - 60个典型问题解答
javascript·3d·threejs
摄影图5 天前
显示器办公桌面图片素材推荐:从杂乱到有序的桌面美学灵感
贴图