1

我想将移动对象绑定到按下按钮。当我按下按钮时,该对象迅速消失,似乎第一个翻译一直在运行。然后当我放开按钮时,它很快消失并最终到达它本来应该没有触摸按钮的位置。当我按下/释放按钮时,两者之间“弹跳”。

D3DXMATRIX worldMatrix, viewMatrix, projectionMatrix;
bool result;


// Generate the view matrix based on the camera's position.
m_Camera->Render();

// Get the world, view, and projection matrices from the camera and d3d objects.
m_Camera->GetViewMatrix(viewMatrix);
m_Direct3D->GetWorldMatrix(worldMatrix);
m_Direct3D->GetProjectionMatrix(projectionMatrix);

// Move the world matrix by the rotation value so that the object will move.
if(m_Input->IsAPressed() == true) {
D3DXMatrixTranslation(&worldMatrix, 1.0f*rotation, 0.0f, 0.0f);
}
else {
    D3DXMatrixTranslation(&worldMatrix, 0.1f*rotation, 0.0f, 0.0f);
}

// Put the model vertex and index buffers on the graphics pipeline to prepare them for drawing.
m_Model->Render(m_Direct3D->GetDeviceContext());

// Render the model using the light shader.
result = m_LightShader->Render(m_Direct3D->GetDeviceContext(), m_Model->GetIndexCount(), worldMatrix, viewMatrix, projectionMatrix, 
                               m_Model->GetTexture(), m_Light->GetDirection(), m_Light->GetDiffuseColor());


if(!result)
{
    return false;
}

// Present the rendered scene to the screen.
m_Direct3D->EndScene();

我对 DX11 还是很陌生,而且我已经环顾四周了。我在这里拉头发,试图弄清楚发生了什么。

4

1 回答 1

4

这就是你的代码所做的。如果按下按钮,则设置一个世界矩阵,否则 - 另一个。您需要做的是将世界矩阵乘以新生成的平移矩阵。请注意,这种乘法每秒会发生约 60 次,因此您只需要移动每一个非常小的距离。

你的代码应该是这样的

if (m_Input->IsAPressed() == true) {
   D3DXMATRIX translation;
   D3DXMatrixTranslation(&translation, 0.05f, 0.0f, 0.0f);
   worldMatrix *= translation;
}

你可能需要做

m_Direct3D->SetWorldMatrix(worldMatrix);

或类似的东西。我认为我不熟悉您用于 m_Camera 和 m_Direct3D 的类。

于 2012-01-16T19:19:58.733 回答