@fibbojs / 3d / FCharacterControllerK
Class: abstract
FCharacterControllerK
An abstract pre-defined character controller based on Kinematic rigidbodies.
Extends
Extended by
Constructors
new FCharacterControllerK()
new FCharacterControllerK(
scene
,options
):FCharacterControllerK
Parameters
• scene: FScene
• options: FCharacterControllerOptions
Returns
Overrides
FCharacterController
.constructor
Defined in
3d/src/controllers/FCharacterControllerK.ts:24
Methods
frame()
abstract
frame(delta
):void
Update the controller. Should be called every frame. The purpose of this method is to update the component transform based on the controller logic.
Parameters
• delta: number
The time since the last frame.
Returns
void
Inherited from
Defined in
core/dist/index.d.ts:26
getCorrectedMovements()
getCorrectedMovements():
FVector3
Return the corrected movements for the current frame.
Returns
Defined in
3d/src/controllers/FCharacterControllerK.ts:48
getCorrectedRotation()
getCorrectedRotation():
Quaternion
Return the corrected rotation for the current frame. Uses the camera so the character nevers faces the camera.
Returns
Quaternion
Inherited from
FCharacterController
.getCorrectedRotation
Defined in
3d/src/controllers/FCharacterController.ts:122
Properties
characterController
characterController:
KinematicCharacterController
The character controller that will be used to move the character.
Defined in
3d/src/controllers/FCharacterControllerK.ts:22
component
component:
FComponent
The component attached to the controller. It is redefined here to get the correct type (with 3D properties).
Inherited from
FCharacterController
.component
Defined in
3d/src/controllers/FController.ts:17
inputs
inputs:
object
The inputs that will be used to move the character.
backward
backward:
boolean
forward
forward:
boolean
left
left:
boolean
right
right:
boolean
Inherited from
Defined in
3d/src/controllers/FCharacterController.ts:25
scene
scene:
FScene
The scene where the character is.
Inherited from
Defined in
3d/src/controllers/FCharacterController.ts:40
speed
speed:
number
The speed of the character.
Inherited from
Defined in
3d/src/controllers/FCharacterController.ts:35
yVelocity
yVelocity:
number
The y velocity of the character. Used to apply gravity.