5

我正在尝试在 silverlight 5 中实现 3d 模型碰撞。为此,我正在创建一个 BoundingBox(就像在 XNA4.0 中一样):

我在此链接中看到了相同的问题VertexBuffer.GetData() 和 Silverlight 5,但没有找到答案。

 public BoundingBox GetBoundingBoxFromModel(Model model)
    {            
        BoundingBox boundingBox = new BoundingBox();

            foreach (ModelMeshPart part in model.Meshes[0].MeshParts)
            {
                VertexPositionNormalTexture[] vertices = new VertexPositionNormalTexture[part.NumVertices];
                Vector3[] vertexs = new Vector3[vertices.Length];

                part.VertexBuffer.GetData<VertexPositionNormalTexture>(vertices);                    


                for (int index = 0; index < vertexs.Length; index++)
                {
                    vertexs[index] = vertices[index].Position;
                }

                boundingBox = BoundingBox.CreateMerged(boundingBox, BoundingBox.CreateFromPoints(vertexs));
            }            
        return boundingBox;
    }
4

1 回答 1

0

出于安全原因,Microsoft 拒绝访问 GPU。所以他们有暂停 GetData() 方法。要在 Silverlight 5 中解决此问题,您可以编写自定义内容管道来加载对象并尝试读取顶点数据,它可以解决您的问题。

于 2013-04-17T03:15:18.370 回答