working force push with raycast

This commit is contained in:
Darius 2025-01-13 19:30:08 -05:00
parent 36595fc9a6
commit 80a771f3a9
5 changed files with 91 additions and 18 deletions

View File

@ -20,3 +20,26 @@ config/icon="res://icon.svg"
folder_colors={ folder_colors={
"res://scripts/": "yellow" "res://scripts/": "yellow"
} }
[input]
right={
"deadzone": 0.5,
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":68,"key_label":0,"unicode":100,"location":0,"echo":false,"script":null)
]
}
left={
"deadzone": 0.5,
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":65,"key_label":0,"unicode":97,"location":0,"echo":false,"script":null)
]
}
jump={
"deadzone": 0.5,
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":32,"key_label":0,"unicode":32,"location":0,"echo":false,"script":null)
]
}
shove={
"deadzone": 0.5,
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":88,"key_label":0,"unicode":120,"location":0,"echo":false,"script":null)
]
}

View File

@ -1,9 +1,9 @@
[gd_scene load_steps=9 format=3 uid="uid://dcmyx5g6dksl8"] [gd_scene load_steps=8 format=3 uid="uid://dcmyx5g6dksl8"]
[ext_resource type="PackedScene" uid="uid://d1ej2kiy7jcpv" path="res://scenes/crate.tscn" id="1_uivx3"] [ext_resource type="PackedScene" uid="uid://d1ej2kiy7jcpv" path="res://scenes/crate.tscn" id="1_uivx3"]
[ext_resource type="Script" path="res://scripts/gamecontroller.gd" id="1_vhl00"] [ext_resource type="Script" path="res://scripts/gamecontroller.gd" id="1_vhl00"]
[ext_resource type="Script" path="res://scripts/charactercontroller.gd" id="2_6rbcc"]
[ext_resource type="Script" path="res://scripts/trigger.gd" id="3_2qbah"] [ext_resource type="Script" path="res://scripts/trigger.gd" id="3_2qbah"]
[ext_resource type="PackedScene" uid="uid://b75mow511wmmb" path="res://scenes/player.tscn" id="3_8h5jv"]
[sub_resource type="RectangleShape2D" id="RectangleShape2D_1cyeq"] [sub_resource type="RectangleShape2D" id="RectangleShape2D_1cyeq"]
size = Vector2(101, 20) size = Vector2(101, 20)
@ -11,8 +11,6 @@ size = Vector2(101, 20)
[sub_resource type="WorldBoundaryShape2D" id="WorldBoundaryShape2D_bqh70"] [sub_resource type="WorldBoundaryShape2D" id="WorldBoundaryShape2D_bqh70"]
distance = -395.0 distance = -395.0
[sub_resource type="CircleShape2D" id="CircleShape2D_i8a0m"]
[sub_resource type="CircleShape2D" id="CircleShape2D_mfh1j"] [sub_resource type="CircleShape2D" id="CircleShape2D_mfh1j"]
[node name="Game" type="Node2D"] [node name="Game" type="Node2D"]
@ -47,14 +45,7 @@ rotation = 0.806532
[node name="CollisionShape2D" type="CollisionShape2D" parent="floor"] [node name="CollisionShape2D" type="CollisionShape2D" parent="floor"]
shape = SubResource("WorldBoundaryShape2D_bqh70") shape = SubResource("WorldBoundaryShape2D_bqh70")
[node name="CharacterBody2D" type="CharacterBody2D" parent="."] [node name="CharacterBody2D" parent="." instance=ExtResource("3_8h5jv")]
position = Vector2(443, 322)
script = ExtResource("2_6rbcc")
metadata/_edit_group_ = true
[node name="CollisionShape2D" type="CollisionShape2D" parent="CharacterBody2D"]
shape = SubResource("CircleShape2D_i8a0m")
debug_color = Color(1, 0, 0, 0.419608)
[node name="Area2D" type="Area2D" parent="."] [node name="Area2D" type="Area2D" parent="."]
position = Vector2(513, 319) position = Vector2(513, 319)

View File

@ -0,0 +1,19 @@
[gd_scene load_steps=3 format=3 uid="uid://b75mow511wmmb"]
[ext_resource type="Script" path="res://scripts/charactercontroller.gd" id="1_racyk"]
[sub_resource type="CircleShape2D" id="CircleShape2D_i8a0m"]
[node name="CharacterBody2D" type="CharacterBody2D"]
script = ExtResource("1_racyk")
metadata/_edit_group_ = true
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
shape = SubResource("CircleShape2D_i8a0m")
debug_color = Color(1, 0, 0, 0.419608)
[node name="RightRay" type="RayCast2D" parent="."]
target_position = Vector2(25, 0)
[node name="LeftRay" type="RayCast2D" parent="."]
target_position = Vector2(-25, 0)

View File

@ -3,8 +3,16 @@ extends CharacterBody2D
const SPEED = 300.0 const SPEED = 300.0
const JUMP_VELOCITY = -400.0 const JUMP_VELOCITY = -400.0
const PUSH_FORCE = 48 const BUMP_FORCE = 50
# Shove Attack Variables
@onready var right_ray: RayCast2D = $RightRay
@onready var left_ray: RayCast2D = $LeftRay
var faceLeft = false
var pushTarget
var pushRightEnabled = false
var pushLeftEnabled = false
@export var PUSH_FORCE = 700
func _physics_process(delta: float) -> void: func _physics_process(delta: float) -> void:
# Add the gravity. # Add the gravity.
@ -12,19 +20,51 @@ func _physics_process(delta: float) -> void:
velocity += get_gravity() * delta velocity += get_gravity() * delta
# Handle jump. # Handle jump.
if Input.is_action_just_pressed("ui_accept") and is_on_floor(): if Input.is_action_just_pressed("jump") and is_on_floor():
velocity.y = JUMP_VELOCITY velocity.y = JUMP_VELOCITY
# Shove Attack
if Input.is_action_just_pressed("shove"):
if pushRightEnabled && faceLeft == false:
pushTarget.apply_central_impulse(Vector2(1,0) * PUSH_FORCE * 2)
if pushLeftEnabled && faceLeft == true:
pushTarget.apply_central_impulse(Vector2(-1,0) * PUSH_FORCE * 2)
# Get the input direction and handle the movement/deceleration. # Get the input direction and handle the movement/deceleration.
# As good practice, you should replace UI actions with custom gameplay actions. # As good practice, you should replace UI actions with custom gameplay actions.
var direction := Input.get_axis("ui_left", "ui_right") var direction := Input.get_axis("left", "right")
if direction: if direction:
velocity.x = direction * SPEED velocity.x = direction * SPEED
if direction <0:
faceLeft = true
if direction >0:
faceLeft = false
else: else:
velocity.x = move_toward(velocity.x, 0, SPEED) velocity.x = move_toward(velocity.x, 0, SPEED)
move_and_slide() move_and_slide()
if right_ray.is_colliding():
# print("Right ray contact!")
if not faceLeft:
var collider = right_ray.get_collider()
if collider is RigidBody2D:
pushTarget = collider
pushRightEnabled = true
else:
pushRightEnabled = false
if left_ray.is_colliding():
if faceLeft:
var collider = left_ray.get_collider()
if collider is RigidBody2D:
pushTarget = collider
pushLeftEnabled = true
else:
pushLeftEnabled = false
for i in get_slide_collision_count(): for i in get_slide_collision_count():
var c = get_slide_collision(i) var c = get_slide_collision(i)
if c.get_collider() is RigidBody2D: if c.get_collider() is RigidBody2D:
c.get_collider().apply_central_impulse(-c.get_normal() * PUSH_FORCE) c.get_collider().apply_central_impulse(-c.get_normal() * BUMP_FORCE)

View File

@ -10,10 +10,10 @@ func _ready() -> void:
timer.wait_time = 1 timer.wait_time = 1
timer.one_shot = false timer.one_shot = false
timer.connect("timeout", secondCounter) timer.connect("timeout", secondCounter)
timer.start() #timer.start()
pass # Replace with function body. pass # Replace with function body.
func secondCounter(): func secondCounter():
print("one second") # print("one second")
countdown -=1 countdown -=1
if countdown <=0: if countdown <=0:
print("YOU LOSE") print("YOU LOSE")