lint fixes
Some checks failed
Continuous Integration / Code Formatting (pull_request) Successful in 27s
Continuous Integration / Code Quality Check (pull_request) Successful in 29s
Continuous Integration / Test Execution (pull_request) Failing after 33s
Continuous Integration / CI Summary (pull_request) Failing after 5s
Some checks failed
Continuous Integration / Code Formatting (pull_request) Successful in 27s
Continuous Integration / Code Quality Check (pull_request) Successful in 29s
Continuous Integration / Test Execution (pull_request) Failing after 33s
Continuous Integration / CI Summary (pull_request) Failing after 5s
This commit is contained in:
@@ -1,6 +1,10 @@
|
||||
# Example of how to use the ValueStepper component in any scene
|
||||
extends Control
|
||||
|
||||
# Example of setting up custom navigation
|
||||
var navigable_steppers: Array[ValueStepper] = []
|
||||
var current_stepper_index: int = 0
|
||||
|
||||
@onready
|
||||
var language_stepper: ValueStepper = $VBoxContainer/Examples/LanguageContainer/LanguageStepper
|
||||
@onready
|
||||
@@ -9,10 +13,6 @@ var difficulty_stepper: ValueStepper = $VBoxContainer/Examples/DifficultyContain
|
||||
var resolution_stepper: ValueStepper = $VBoxContainer/Examples/ResolutionContainer/ResolutionStepper
|
||||
@onready var custom_stepper: ValueStepper = $VBoxContainer/Examples/CustomContainer/CustomStepper
|
||||
|
||||
# Example of setting up custom navigation
|
||||
var navigable_steppers: Array[ValueStepper] = []
|
||||
var current_stepper_index: int = 0
|
||||
|
||||
|
||||
func _ready():
|
||||
DebugManager.log_info("ValueStepper example ready", "Example")
|
||||
|
||||
Reference in New Issue
Block a user