Added debug labels
This commit is contained in:
3
character/Attack.gd
Normal file
3
character/Attack.gd
Normal file
@ -0,0 +1,3 @@
|
||||
class_name Attack
|
||||
|
||||
var damage: float
|
44
character/Character.gd
Normal file
44
character/Character.gd
Normal file
@ -0,0 +1,44 @@
|
||||
class_name Character
|
||||
extends CharacterBody3D
|
||||
|
||||
@export var model: Node3D
|
||||
@export var move_speed: float = 4.5
|
||||
@export var rotation_speed: float = 20.0
|
||||
|
||||
const JUMP_VELOCITY := 4.5
|
||||
const DECELERATE := 0.75
|
||||
|
||||
var direction: Vector3
|
||||
var angle: float
|
||||
var gravity: float = ProjectSettings.get_setting("physics/3d/default_gravity")
|
||||
|
||||
func _process(delta):
|
||||
if direction:
|
||||
angle = atan2(direction.x, direction.z)
|
||||
|
||||
model.rotation.y = lerp_angle(model.rotation.y, angle, rotation_speed * delta)
|
||||
|
||||
func _physics_process(delta):
|
||||
if direction:
|
||||
velocity.x = direction.x * move_speed
|
||||
velocity.z = direction.z * move_speed
|
||||
else:
|
||||
velocity.x *= DECELERATE
|
||||
velocity.z *= DECELERATE
|
||||
|
||||
if !is_on_floor():
|
||||
velocity.y -= gravity * delta
|
||||
|
||||
move_and_slide()
|
||||
|
||||
func jump():
|
||||
if !is_on_floor():
|
||||
return
|
||||
|
||||
velocity.y = JUMP_VELOCITY
|
||||
|
||||
func dash():
|
||||
print("dash")
|
||||
|
||||
func attack():
|
||||
print("attack")
|
2
character/CharacterController.gd
Normal file
2
character/CharacterController.gd
Normal file
@ -0,0 +1,2 @@
|
||||
class_name CharacterController
|
||||
extends Node
|
14
character/HealthComponent.gd
Normal file
14
character/HealthComponent.gd
Normal file
@ -0,0 +1,14 @@
|
||||
class_name HealthComponent
|
||||
extends Node
|
||||
|
||||
@export var max_health: float
|
||||
var health: float
|
||||
|
||||
func _ready():
|
||||
pass
|
||||
|
||||
func take_damage(attack: Attack):
|
||||
health -= attack.damage
|
||||
|
||||
if health <= 0:
|
||||
get_parent().queue_free()
|
6
character/HealthComponent.tscn
Normal file
6
character/HealthComponent.tscn
Normal file
@ -0,0 +1,6 @@
|
||||
[gd_scene load_steps=2 format=3 uid="uid://2bbycjulf00g"]
|
||||
|
||||
[ext_resource type="Script" path="res://character/HealthComponent.gd" id="1_403dm"]
|
||||
|
||||
[node name="HealthComponent" type="Node"]
|
||||
script = ExtResource("1_403dm")
|
Reference in New Issue
Block a user