mirror of
https://github.com/Relintai/pandemonium_demo_projects.git
synced 2024-12-21 13:56:50 +01:00
8 lines
132 B
GDScript
8 lines
132 B
GDScript
extends Node
|
|
|
|
# A simple script to rotate the model.
|
|
onready var model = $Model
|
|
|
|
func _process(delta):
|
|
model.rotate_y(delta * 0.7)
|