6 lines
97 B
GDScript
6 lines
97 B
GDScript
extends Control
|
|
|
|
@export var x_offset : int = 0
|
|
|
|
func _ready() -> void:
|
|
self.size.x += x_offset
|