Home
last modified time | relevance | path

Searched refs:extSpeed (Results 1 – 4 of 4) sorted by relevance

/dports/games/cake/cake_src/cake/
H A Dclient.cpp49 VectorSet(extSpeed, 0, 0, 0); // initialization in Client()
205 VectorClear(extSpeed); in ResetMovement()
453 extSpeed[2] = jump_height; in Jump()
644 extSpeed[0] = (dest[0] - cam.pos[0])*curr_world->gravity / extSpeed[2]; in JumpTo()
645 extSpeed[1] = (dest[1] - cam.pos[1])*curr_world->gravity / extSpeed[2]; in JumpTo()
673 VectorClear(extSpeed); in TeleportTo()
819 if (extSpeed[2] < -curr_world->maxvspeed) extSpeed[2] = -curr_world->maxvspeed; in CheckCollision()
848 VectorClear(extSpeed); in CheckCollision()
852 if (extSpeed[2] && !flying) in CheckCollision()
865 if (extSpeed[2] > 0 && trace.fraction < 1) in CheckCollision()
[all …]
H A Dclient.h302 vec3_t extSpeed; /**< external speed used for jumping */ variable
/dports/games/openclaw/OpenClaw-0.0-51-gbac7730/OpenClaw/Engine/Actor/Components/
H A DConveyorBeltComponent.cpp26 Point extSpeed(m_Speed, 0); in VUpdate() local
28 pPhysicsComponent->SetExternalConveyorBeltSpeed(extSpeed); in VUpdate()
H A DPhysicsComponent.h120 …void SetExternalConveyorBeltSpeed(const Point& extSpeed) { m_ExternalConveyorBeltSpeed = extSpeed;… in SetExternalConveyorBeltSpeed() argument