GrappleTest/Player/BasicCharacter/AnimationController.gd

86 lines
2.2 KiB
GDScript3
Raw Normal View History

2024-02-22 00:10:13 -06:00
extends Sprite2D
@onready var player = $"../"
2024-02-26 08:28:11 -06:00
var spinAccel = 0
2024-02-24 12:12:57 -06:00
2024-02-22 00:10:13 -06:00
func spin(veloc, delta):
var vertSpinMult = abs(veloc.y) * clamp(veloc.x, -1, 1) / 1.5
2024-02-24 12:12:57 -06:00
var spinFactor = (veloc.x + vertSpinMult) / 30
2024-02-22 00:10:13 -06:00
2024-02-26 08:28:11 -06:00
if player.direction or abs(player.velocity.x) > 100:
2024-02-22 00:10:13 -06:00
rotation = lerp(rotation, rotation + (spinFactor), delta)
else:
2024-02-26 08:28:11 -06:00
rotation = lerp(rotation, snappedf(rotation + (spinFactor * delta * 2), PI / 2), delta * 5)
2024-02-22 00:10:13 -06:00
var landed = 0
2024-02-26 08:28:11 -06:00
@onready var slidingVariants = [$"WallslidingNeutral", $"WallslidingUp", $"WallslidingDown"]
func disableSlidingVariants(keep=null):
for variant in slidingVariants:
if variant != keep:
variant.emitting = false
2024-02-22 00:10:13 -06:00
func _process(delta):
var velocity = player.velocity
2024-02-26 08:28:11 -06:00
var grapple = $"GrappleCore"
2024-02-22 00:10:13 -06:00
var floored = player.is_on_floor()
2024-02-26 08:28:11 -06:00
if player.isWallSliding():
var wallSlidingParticles = slidingVariants[0]
if abs(velocity.y) < 150:
wallSlidingParticles = slidingVariants[1]
elif abs(velocity.y) > 300:
wallSlidingParticles = slidingVariants[2]
disableSlidingVariants(wallSlidingParticles)
2024-02-24 12:12:57 -06:00
wallSlidingParticles.emitting = true
2024-02-26 08:28:11 -06:00
wallSlidingParticles.global_position = player.position + (player.get_wall_normal() * -8 * player.scale.x)
2024-02-24 12:12:57 -06:00
wallSlidingParticles.global_rotation = player.get_wall_normal().x * deg_to_rad(45)
2024-02-26 08:28:11 -06:00
2024-02-24 12:12:57 -06:00
else:
2024-02-26 08:28:11 -06:00
disableSlidingVariants()
2024-02-22 00:10:13 -06:00
if not floored:
spin(velocity, delta)
landed = velocity.y
2024-02-26 08:28:11 -06:00
#scale = Vector2.ONE
2024-02-24 12:12:57 -06:00
2024-02-26 08:28:11 -06:00
if player.isWallSliding():
2024-02-24 12:12:57 -06:00
rotation = lerp(rotation, deg_to_rad(30) * player.get_wall_normal().x + snappedf(rotation, PI / 2), delta * 15)
2024-02-22 00:10:13 -06:00
else:
2024-02-24 12:12:57 -06:00
var floorRot = player.get_floor_normal().angle() + (PI / 2)
if abs(rotation - floorRot) > 0.9:
rotation = floorRot
rotation = lerp(rotation, floorRot, delta * 10)
2024-02-22 00:10:13 -06:00
if landed:
2024-02-24 12:12:57 -06:00
rotation = 0
2024-02-22 00:10:13 -06:00
scale.y = 1 - (landed / 800)
scale.x = 1 + (landed / 800)
landed = 0
2024-02-24 12:12:57 -06:00
scale.y = lerp(scale.y, 1.0, delta * 7)
scale.x = lerp(scale.x, 1.0, delta * 7)
2024-02-26 08:28:11 -06:00
scale.y = clamp(scale.y, 0.25, INF)
2024-02-24 12:12:57 -06:00
scale.x = clamp(scale.x, 0.1, INF)
2024-02-26 08:28:11 -06:00
#modulate.h = abs(player.position.x / 400.)
2024-02-22 00:10:13 -06:00
offset.y = (8 * pow(scale.y, -1) - 8)
2024-02-24 12:12:57 -06:00
offset.x = 0
2024-02-26 08:28:11 -06:00
grapple.offset = offset
func _on_character_jumped():
if not player.direction:
rotation = 0
scale.y = 1.5
scale.x = 0.5