Renegade Public Forums
C&C: Renegade --> Dying since 2003™, resurrected in 2024!
Home » Tiberian Technologies / Blackhand Studios » Tiberian Technologies Forum » Set_Attack no longer seems to account for Bullseye offset
Re: Set_Attack no longer seems to account for Bullseye offset [message #487654 is a reply to message #487653] Mon, 19 May 2014 12:08 Go to previous messageGo to previous message
Jerad2142 is currently offline  Jerad2142
Messages: 3805
Registered: July 2006
Location: USA
Karma:
General (3 Stars)
Yeah sorry about that, bit distract just typing up my responses at work, I don't have access to this chunk of code your showing. I do see we have Get_Bullseye_Offset_Z, so obviously we might still be able to do
Vector3 SoldierGameObj::Get_Bullseye_Position()
{
  if (Vehicle)
    return Vehicle->Get_Bullseye_Position();

  RenderObjClass* model = Peek_Physical_Object()->Peek_Model();

  int boneIndex = model->Get_Bone_Index("target");
  if (boneIndex > 0)
    return model->Get_Bone_Transform(boneIndex).Get_Translation();

  boneIndex = model->Get_Bone_Index("C SPINE1");
  if (boneIndex > 0)
    return model->Get_Bone_Transform(boneIndex).Get_Translation();


  Vector3 pos;
  Get_Position(&pos);
  pos.Z += Is_Crouched() ? 0.5f : Get_Bullseye_Offset_Z();
  return pos;
}

Unless that stuff has been changed as well.


 
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Previous Topic: Level Edit
Next Topic: nulling damage script?
Goto Forum:
  


Current Time: Tue May 14 15:28:15 MST 2024

Total time taken to generate the page: 0.00847 seconds