Initial commit (1/2)

This commit is contained in:
Алкесей Мирнеков 2023-11-05 16:23:18 +03:00 committed by GitHub
commit 3411c5796d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
66 changed files with 2261 additions and 0 deletions

8
scripts/SpeedLine.gd Normal file
View file

@ -0,0 +1,8 @@
extends Line2D
@onready var MSEngine = $"../../../Engine"
func _process(_delta):
var SpeedPercentage : float = MSEngine.Speed / MSEngine.MaxSpeed * 100
var NewPoints = [Vector2.ZERO, Vector2(SpeedPercentage, 0)]
points = PackedVector2Array(NewPoints)