In the C# (.NET 1.1, Visual Studio 2003) program that I have to modify there is a Direct3D object. It is initially loaded from an X file. Then number of vertices are added to it dynamically. Then I need to save this resulting object as a new X file.

Being new to Direct3D I can't quite figure it out - when I save Mesh, the resulting X file only contains the initial frame (from static X file) but none of the vertices that are added later. On the screen, Direct3D drawing is displaying all the static and dynamic data correctly.

Can I fix this? Is there a different route I should be taking in order to save X file?


    ...

    Device device = new Device(deviceAdapter, deviceCapability.DeviceType,
    panel1, deviceFlags, presentParams);

    ...

    ExtendedMaterial[] materials = null;
    System.IO.Stream stream = System.Reflection.Assembly.GetExecutingAssembly().GetManifestResourceStream("MyNameSpace.StaticResourceXFile.x");
    Mesh mesh = Mesh.FromStream(stream, MeshFlags.SystemMemory, device, out materials);
    int[] adjacency = new int[3 * unoptimisedMesh.NumberFaces];
    WeldEpsilons weldEpsilons = new WeldEpsilons();
    unoptimisedMesh.GenerateAdjacency(0.0f, adjacency);
    unoptimisedMesh.WeldVertices(WeldEpsilonsFlags.WeldAll, weldEpsilons, adjacency);
    mesh = mesh.Optimize(MeshFlags.OptimizeVertexCache | MeshFlags.OptimizeCompact, adjacency);

    ...

    generateImage(); // private function, creates listOfVertexesToDraw

    foreach (IVertexDraw vertexDraw in listOfVertexesToDraw)
    {
    vertexDraw.CreateVertexBuffer(device);
    }


    ...

    mesh.Save(@"C:\Temp\MyFile.x", adjacency, materials , XFileFormat.Text);
    // the file is valid, but doesn't have vertices in listOfVertexesToDraw
    // the device on the screen displays everything correctly

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.