Merge branch 'main' of https://github.com/MarcEricMartel/FirstPersonSlapper
This commit is contained in:
commit
2c41cf90fc
@ -1,10 +1,11 @@
|
|||||||
extends KinematicBody
|
extends KinematicBody
|
||||||
|
|
||||||
export var speed = 20
|
export var speed = 40
|
||||||
|
|
||||||
export var h_acceleration = 6
|
export var h_acceleration = 6
|
||||||
export var air_acceleration = 1
|
export var air_acceleration = 1
|
||||||
export var normal_acceleration = 6
|
export var normal_acceleration = 6
|
||||||
export var gravity = 40
|
export var gravity = 100
|
||||||
export var jump = 30
|
export var jump = 30
|
||||||
|
|
||||||
export var mouse_sensitivity = 0.03
|
export var mouse_sensitivity = 0.03
|
||||||
@ -64,6 +65,7 @@ func _physics_process(delta):
|
|||||||
elif Input.is_action_pressed("move_right"):
|
elif Input.is_action_pressed("move_right"):
|
||||||
direction += transform.basis.x
|
direction += transform.basis.x
|
||||||
|
|
||||||
|
|
||||||
direction = direction.normalized()
|
direction = direction.normalized()
|
||||||
h_velocity = h_velocity.linear_interpolate(direction * speed, h_acceleration * delta)
|
h_velocity = h_velocity.linear_interpolate(direction * speed, h_acceleration * delta)
|
||||||
movement.z = h_velocity.z + gravity_vec.z
|
movement.z = h_velocity.z + gravity_vec.z
|
||||||
|
@ -50,6 +50,11 @@ uncapture_mouse={
|
|||||||
"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777240,"physical_scancode":0,"unicode":0,"echo":false,"script":null)
|
"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777240,"physical_scancode":0,"unicode":0,"echo":false,"script":null)
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
sprint={
|
||||||
|
"deadzone": 0.5,
|
||||||
|
"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777237,"physical_scancode":0,"unicode":0,"echo":false,"script":null)
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
[physics]
|
[physics]
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user