blob: edcbdb258f1ef015ab6d765bfb0c2f75d6a756ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
extends KinematicBody2D
class_name PlayerCharacter
export (int) var speed = 8
export (float) var walk_wobble_coeff = 5
var velocity = Vector2()
var look_dir = 1 # right = 1
# left = -1
func get_input():
velocity = Vector2()
if Input.is_action_pressed('ui_right'):
velocity.x += 1
if Input.is_action_pressed('ui_left'):
velocity.x -= 1
if Input.is_action_pressed('ui_down'):
velocity.y += 1
if Input.is_action_pressed('ui_up'):
velocity.y -= 1
velocity = velocity.normalized() * speed
func _process(_delta):
# Update walking wobble
var is_moving = velocity.length_squared() > .0
if is_moving:
var time = OS.get_system_time_msecs() / 1000.0
var rot = 0.2 * sin(walk_wobble_coeff * time)
$Sprite.set_rotation(rot)
else:
$Sprite.set_rotation(0)
# Look at walking direction
if velocity[0] > .0:
look_dir = 1
elif velocity[0] < .0:
look_dir = -1
$Sprite.set_scale(Vector2(look_dir, 1))
func _physics_process(_delta):
get_input()
velocity = move_and_slide(velocity)
func change_level():
print("change_level()")
|