36 results for "jump"
Tells the Character to jump on the next movement update by setting `bPressedJump` to true.
Tracks how many jumps the character has performed since last landing.
Stores the value of `JumpCurrentCount` captured at the start of `CheckJumpInput`, before that function potentially increments the counter.
Amount of jump force time remaining in seconds, when `JumpMaxHoldTime` is greater than zero.
Tracks the total time in seconds that the jump key has been continuously held.
The maximum number of jumps the character can perform before needing to land.
The maximum time in seconds the jump key can be held to continue receiving upward velocity.
The instantaneous vertical velocity applied to the character when a jump begins.
Returns true if the Character is currently allowed to jump.
Called each frame by CharacterMovementComponent to process jump input.
Called each frame after CheckJumpInput to update JumpKeyHoldTime and clear bPressedJump once the hold window expires.
Returns the maximum duration the jump key can be held to continue receiving upward force.
Returns whether the replicated `bProxyIsJumpForceApplied` flag is currently set, indicating the Character is under active jump force on simulated proxies.
Returns true while the jump key is held and the hold time has not yet exceeded JumpMaxHoldTime, meaning the jump is still actively applying upward force.
Immediately moves the montage playback position to the start of the named section.
Jumps the montage playback position to the end of the named section rather than its start.
Called by CharacterMovementComponent when the character reaches the peak of a jump.
Event fired when the character has just started a jump.
The C++ implementation body for the OnJumped BlueprintNativeEvent.
Multicast delegate broadcast when the character reaches the apex of a jump.
Stores the world time at which a replicated jump force event started on a simulated proxy.
Marks the character as no longer attempting to jump, clearing jump-related state flags and timers.
Sets the `bProxyIsJumpForceApplied` replicated flag and marks the property dirty for replication.
Clears the jump input flag (`bPressedJump`) and resets the hold timer so the Character stops receiving jump Z-velocity on the next movement update.
ACharacter extends APawn with a CapsuleComponent for collision, a SkeletalMeshComponent for visual representation, and a CharacterMovementComponent for walking, running, jumping, swimming, and flying.
Draws Character-specific debug information (movement state, jump state, based movement) to the HUD canvas when `showdebug` is active.
Registers which properties are replicated to remote machines and under what conditions.
Returns true if the character is currently in the Falling movement mode, which includes both the upward and downward phases of a jump.
Jumps the montage playhead to a specific time position without restarting it.
Delegate broadcast whenever a montage moves to a new section, either by natural playback progression or via Montage_SetNextSection or Montage_JumpToSection.
Called by CharacterMovementComponent whenever the movement mode changes (e.
Called by the Controller when the pawn is restarted after being possessed.
An animation asset that sequences animation segments into named sections, supports blend in/out, and can be played, stopped, and jumped between sections at runtime via UAnimInstance.
The movement component used by ACharacter.
A data asset representing a single logical input action (e.
Adjusts InOutAngle1 so that the difference between it and InAngle0 is at most 180 degrees, preventing large jumps when interpolating rotation components converted from quaternions.