2024-01-16 22:01:16 +00:00
|
|
|
extends Camera3D
|
|
|
|
|
2024-02-05 22:42:04 +00:00
|
|
|
@export_group("Main")
|
|
|
|
@export var follow_node: Node3D
|
|
|
|
@export var pivot_node: Node3D
|
|
|
|
|
|
|
|
@export_group("Follow")
|
|
|
|
@export var follow_enabled: bool
|
2024-01-16 22:01:16 +00:00
|
|
|
@export var follow_speed: float
|
|
|
|
|
2024-02-07 22:02:27 +00:00
|
|
|
@export_group("Shake")
|
|
|
|
@export var shake_strength := 1.0
|
|
|
|
@export var shake_decay := 0.8
|
|
|
|
@export var shake_noise: Noise
|
|
|
|
|
|
|
|
var trauma := 0.0
|
|
|
|
var trauma_time := 0.0
|
|
|
|
|
2024-01-16 22:01:16 +00:00
|
|
|
func _ready():
|
|
|
|
Global.camera = self
|
|
|
|
|
|
|
|
func _process(delta):
|
2024-01-17 20:48:35 +00:00
|
|
|
if Global.player == null:
|
|
|
|
return
|
|
|
|
|
2024-02-05 22:42:04 +00:00
|
|
|
if follow_enabled:
|
|
|
|
follow_node.position = lerp(follow_node.position, Global.player.position, follow_speed * delta)
|
|
|
|
else:
|
|
|
|
follow_node.position = Global.player.position
|
2024-01-16 22:01:16 +00:00
|
|
|
|
2024-02-07 22:02:27 +00:00
|
|
|
if trauma:
|
|
|
|
trauma = max(trauma - shake_decay * delta, 0)
|
|
|
|
trauma_time += 4096 * delta
|
|
|
|
_shake(trauma_time)
|
|
|
|
else:
|
|
|
|
look_at(pivot_node.global_position)
|
|
|
|
trauma_time = 0
|
|
|
|
|
|
|
|
func _shake(time):
|
|
|
|
var trauma_sq := trauma * trauma
|
|
|
|
rotation.x += shake_noise.get_noise_2d(time, 0) * trauma_sq * shake_strength
|
|
|
|
rotation.y += shake_noise.get_noise_2d(time, 1) * trauma_sq * shake_strength
|
|
|
|
rotation.z += shake_noise.get_noise_2d(time, 2) * trauma_sq * shake_strength
|
|
|
|
|
|
|
|
func add_shake(amount: float):
|
|
|
|
trauma = min(trauma + amount, 1.0)
|