- Edited
It only does so on the X-axis, not on the Z-axis as well. I tried making it with a CharacterBody3D, but it behaved really weirdly, and I didn't understand how to use the velocity.bounce() function
extends Node3D
const SPEED = 40.0
const MIN_BOUNCE_DISTANCE = 0.2
@onready var ray: RayCast3D = $RayCast3D
@onready var timer: Timer = $Timer
var velocity : Vector3
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _physics_process(delta):
position += transform.basis * Vector3(0, 0, -SPEED) * delta
if ray.is_colliding():
var normal := ray.get_collision_normal()
velocity = velocity.bounce(normal)
var collider := ray.get_collider()
print("bullet hit %s" % [collider])
rotation *= -1
Here is the link to the gameplay
So I now realize this was kinda a dumb question, Godot doesn't really know what direction it's looking when I change the rotation, but the bounce() function still does not work by itself. What can I do to make it work?