This repository has been archived on 2022-01-09. You can view files and clone it, but cannot push or open issues/pull-requests.
liblast/Player.gd

31 lines
604 B
GDScript
Raw Normal View History

2020-06-14 00:29:58 +02:00
extends KinematicBody
const GRAVITY = 9.8
var velocity = Vector3.ZERO
# Declare member variables here. Examples:
# var a = 2
# var b = "text"
func gravity(delta):
self.velocity.y -= GRAVITY * delta
func motion(delta):
self.move_and_slide(velocity, Vector3.UP)
#rpc("move_and_slide", velocity, Vector3.UP)
func _physics_process(delta):
gravity(delta)
motion(delta)
# Called when the node enters the scene tree for the first time.
func _ready():
pass # Replace with function body.
# Called every frame. 'delta' is the elapsed time since the previous frame.
#func _process(delta):
# pass