How to make swipe ball throw mechanics in godot in 3d

78 Views Asked by At

I have made this script which is working fine but in reverse direction.

extends KinematicBody

var velocity = Vector3.ZERO
var touch_pos

func _input(event):
    if event is InputEventScreenTouch:
        if event.pressed:
            # Store touch position
            touch_pos = Vector3(event.position.x, event.position.y, 0)
        else:
            # Calculate swipe direction
            var swipe_dir = Vector3(event.position.x, event.position.y, 0) - touch_pos
            # Set ball velocity
            velocity = -swipe_dir.normalized() * 10

func _physics_process(delta):
    # Update ball position
    move_and_slide(velocity)

I solved the problem of revrse swipe i.e, firstly the ball was moving opposite direction of my swipe, if I swipe down to up so it goes down I solved it by using velocity = -swipe_dir.normalized() * 10 by placing negative sign but my original problem of reverse throwing means it is getting swipe towards my screen or say camera. In simple words I want to make it go in forward direction but it is going in backward direction and please don't get confused with -swipe_dir.normalized() * 10.

Thanks

0

There are 0 best solutions below