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.
defend-together/client/scripts/entities/LifeCrystal.gd

7 lines
126 B
GDScript

extends Area2D
const ROTATION_SPEED = 1
func _process(delta):
$Sprite.rotation = $Sprite.rotation + delta * ROTATION_SPEED