7589b2bf60
The scripts were streamlined using more or less the following conventions: - space after a comma in lists of arguments - spaces around weak operators (+, -), no spaces around strong operators (*, /) - spaces around comparison operators and compound assignment operators - space after a comment start (#) - removed trailing spaces or tabs, apart from those that delimit the function indentation level (those could be removed too but since they are added automatically by the editor when typing code, keeping them for now) - function blocks separate by two newlines - comment sentences start with an upper-case letter
34 lines
635 B
GDScript
34 lines
635 B
GDScript
|
|
extends Sprite
|
|
|
|
# Member variables
|
|
const MODE_DIRECT = 0
|
|
const MODE_CONSTANT = 1
|
|
const MODE_SMOOTH = 2
|
|
|
|
const ROTATION_SPEED = 1
|
|
const SMOOTH_SPEED = 2.0
|
|
|
|
export(int, "Direct", "Constant", "Smooth") var mode = MODE_DIRECT
|
|
|
|
|
|
func _process(delta):
|
|
var mpos = get_viewport().get_mouse_pos()
|
|
|
|
if (mode == MODE_DIRECT):
|
|
look_at(mpos)
|
|
elif (mode == MODE_CONSTANT):
|
|
var ang = get_angle_to(mpos)
|
|
var s = sign(ang)
|
|
ang = abs(ang)
|
|
|
|
rotate(min(ang, ROTATION_SPEED*delta)*s)
|
|
elif (mode == MODE_SMOOTH):
|
|
var ang = get_angle_to(mpos)
|
|
|
|
rotate(ang*delta*SMOOTH_SPEED)
|
|
|
|
|
|
func _ready():
|
|
# Initialization here
|
|
set_process(true)
|