10 lines
191 B
GDScript
10 lines
191 B
GDScript
class_name KeyProps
|
|
|
|
var physical_key: Key
|
|
var width_ratio: float
|
|
|
|
|
|
func _init(_physical_key: Key, _width_ratio: float = 1) -> void:
|
|
physical_key = _physical_key
|
|
width_ratio = _width_ratio
|