mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-14 02:27:40 -04:00
Fix Player and CGZ marker games (Cherry picked from b4e1dc352e
)
Date: Thu Jan 19 00:59:56 2012 -0500 Fix player and CGZ marker games
This commit is contained in:
@ -151,6 +151,7 @@ void pfMarkerInfo::Show(bool show)
|
||||
plEnableMsg* msg = TRACKED_NEW plEnableMsg;
|
||||
msg->SetBCastFlag(plMessage::kPropagateToChildren);
|
||||
msg->SetCmd(plEnableMsg::kDrawable);
|
||||
msg->SetCmd(plEnableMsg::kPhysical);
|
||||
msg->SetCmd(show ? plEnableMsg::kEnable : plEnableMsg::kDisable);
|
||||
msg->SetSender(pfMarkerMgr::Instance()->GetKey());
|
||||
msg->Send(fKey);
|
||||
@ -263,4 +264,4 @@ void pfMarkerInfo::IPlaySound(bool place)
|
||||
msg->SetSender(pfMarkerMgr::Instance()->GetKey());
|
||||
msg->Send(ai->GetKey());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -825,6 +825,7 @@ void plPXPhysical::ApplyHitForce()
|
||||
void plPXPhysical::ISetTransformGlobal(const hsMatrix44& l2w)
|
||||
{
|
||||
hsAssert(fActor->isDynamic(), "Shouldn't move a static actor");
|
||||
fActor->wakeUp();
|
||||
|
||||
NxMat34 mat;
|
||||
|
||||
@ -996,15 +997,7 @@ plKey plPXPhysical::GetSceneNode() const
|
||||
|
||||
void plPXPhysical::SetSceneNode(plKey newNode)
|
||||
{
|
||||
#ifdef HS_DEBUGGING
|
||||
plKey oldNode = GetSceneNode();
|
||||
char msg[1024];
|
||||
if (newNode)
|
||||
sprintf(msg,"Physical object %s cannot change scenes. Already in %s, trying to switch to %s.",fObjectKey->GetName(),oldNode->GetName(),newNode->GetName());
|
||||
else
|
||||
sprintf(msg,"Physical object %s cannot change scenes. Already in %s, trying to switch to <nil key>.",fObjectKey->GetName(),oldNode->GetName());
|
||||
hsAssert(oldNode == newNode, msg);
|
||||
#endif // HS_DEBUGGING
|
||||
// Not Supported
|
||||
}
|
||||
|
||||
/////////////////////////////////////////////////////////////////////
|
||||
|
Reference in New Issue
Block a user