This repository has been archived on 2023-04-11. You can view files and clone it, but cannot push or open issues or pull requests.

7 lines
126 B
GDScript3
Raw Normal View History

2020-04-30 19:16:46 -04:00
extends Area2D
const ROTATION_SPEED = 1
func _process(delta):
$Sprite.rotation = $Sprite.rotation + delta * ROTATION_SPEED