Some checks failed
Create tag and build when new code gets to main / Export (push) Failing after 6m41s
14 lines
234 B
GDScript
14 lines
234 B
GDScript
# default value provider, simple returns the initial value
|
|
class_name DefaultValueProvider
|
|
extends ValueProvider
|
|
|
|
var _value: Variant
|
|
|
|
|
|
func _init(value: Variant) -> void:
|
|
_value = value
|
|
|
|
|
|
func get_value() -> Variant:
|
|
return _value
|