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
GDScript3
Raw Normal View History

2020-05-01 01:16:46 +02:00
extends Area2D
const ROTATION_SPEED = 1
func _process(delta):
$Sprite.rotation = $Sprite.rotation + delta * ROTATION_SPEED