コード例 #1
0
void VsSpring::CreateJoints()
{
	Spring::CreateJoints();
	VsLine::CreateParts();

	SetupPhysics();
}
コード例 #2
0
ファイル: LevelManager.c プロジェクト: yoyz/genesis
void LevelManager_SetupSection()
{
    LevelManager_SetScrollMode();
    setupSection();
    spawnObjects();
    ResetScrollData();
    SetupPhysics(levelData.foreground);
    insideOfDoors = 1;
}
コード例 #3
0
void VFpsCameraEntity::InitFunction()
{
  VFreeCamera::InitFunction();

  // The character controller component only needs to be set up once
  // it will be serialized too when exporting.
  SetupPhysics(); 

  CommonInit();
}
コード例 #4
0
void VsDistanceJoint::CreateJoint()
{
	SetupGraphics();
	SetupPhysics();
}
コード例 #5
0
void VsSpring::Physics_Resize()
{
	 VsRigidBody::Physics_Resize();
	 SetupPhysics();
}
コード例 #6
0
void VsSpring::InitializeAttachments()
{
	Spring::InitializeAttachments();
	SetupPhysics();
}
コード例 #7
0
void BlBallSocket::CreateJoint()
{
	SetupGraphics();
	SetupPhysics();
}
コード例 #8
0
void VsJoint::UpdatePositionAndRotationFromMatrix()
{
	VsBody::UpdatePositionAndRotationFromMatrix();
	SetupPhysics();
}