Initial Commit
This commit is contained in:
6
scenes/ground_scroll.gd
Normal file
6
scenes/ground_scroll.gd
Normal file
@ -0,0 +1,6 @@
|
||||
extends MeshInstance3D
|
||||
|
||||
@export var rotationSpeed: float = 10
|
||||
|
||||
func _process(delta: float) -> void:
|
||||
rotation.x -= clampf(rotationSpeed, -rotationSpeed * delta, rotationSpeed * delta)
|
Reference in New Issue
Block a user