本文整理汇总了C++中IView::SetCurrentParams方法的典型用法代码示例。如果您正苦于以下问题:C++ IView::SetCurrentParams方法的具体用法?C++ IView::SetCurrentParams怎么用?C++ IView::SetCurrentParams使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IView
的用法示例。
在下文中一共展示了IView::SetCurrentParams方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: ProcessEvent
virtual void ProcessEvent( EFlowEvent event,SActivationInfo* pActInfo )
{
switch (event)
{
case eFE_Initialize:
{
CreateView();
return;
}
break;
case eFE_Activate:
{
if (IsPortActive(pActInfo, EIP_Enable))
{
if (m_pView == NULL)
CreateView();
if (m_pView == NULL)
return;
if (pActInfo->pEntity == NULL)
return;
SViewParams params;
params.justActivated = true;
params.fov = DEG2RAD(GetPortFloat(pActInfo, EIP_FOV));
params.blend = GetPortBool(pActInfo, EIP_Blend);
params.blendFOVOffset = DEG2RAD(GetPortFloat(pActInfo, EIP_BlendFOVOffset));
params.blendFOVSpeed = GetPortFloat(pActInfo, EIP_BlendFOVSpeed);
params.blendPosOffset = GetPortVec3(pActInfo, EIP_BlendPosOffset);
params.blendPosSpeed = GetPortFloat(pActInfo, EIP_BlendPosSpeed);
params.blendRotSpeed = GetPortFloat(pActInfo, EIP_BlendRotSpeed);
params.blendRotOffset = Quat::CreateRotationXYZ(static_cast<Ang3>(GetPortVec3(pActInfo, EIP_BlendRotOffset)));
m_pView->SetCurrentParams(params);
m_pView->LinkTo(pActInfo->pEntity);
m_pViewSystem->SetActiveView(m_pView);
}
else if (IsPortActive(pActInfo, EIP_Disable))
{
if (m_pLocalPlayerView)
m_pViewSystem->SetActiveView(m_pLocalPlayerView);
}
else if (IsPortActive(pActInfo, EIP_FOV))
{
SViewParams params;
params.fov = DEG2RAD(GetPortFloat(pActInfo, EIP_FOV));
m_pView->SetCurrentParams(params);
}
}
break;
}
}