Passen Sie die Konvertierung von Nicht-PBR-Materialien an, bevor Sie 3D-Szenen in GLTF 2,0-Format in C# speichern

Nicht-PBR-zu-PBR-Material umwandlung

Dieses C#-Code beispiel zeigt, wie Sie Material in PBR-Material konvertieren und dann eine 3D-Szene im GLTF-Format mit einer C# 3D-Datei manipulation und-konvertierung API speichern:

C#

 // initialize a new 3D scene

var s = new Scene();

var box = new Box();

s.RootNode.CreateChildNode("box1", box).Material = new PhongMaterial() {DiffuseColor = new Vector3(1, 0, 1)};

GLTFSaveOptions opt = new GLTFSaveOptions(FileFormat.GLTF2);

//Custom material converter to convert PhongMaterial to PbrMaterial

opt.MaterialConverter = (Material material) => {
    var pbr = PbrMaterial.FromMaterial(material);
    //customize your own PBR material here, you can get the original OBJ's material from the parameter mat.
    //to create a compatible material with obj2gltf, use following definition:
    pbr.MetallicFactor = 0;
    pbr.RoughnessFactor = 0.98;
    return pbr;
};

// save in GLTF 2.0 format

s.Save("test.gltf", opt);

Ressourcen

  1. Online-Tutorial