-
-
Notifications
You must be signed in to change notification settings - Fork 27
Open
Labels
bugSomething isn't workingSomething isn't working
Description
The believe the following three statements should be identical.
LimboConsole.register_command(multiply, "m1")
LimboConsole.register_command(
func multiply(a: float, b: float) -> void:
LimboConsole.info("a * b: " + str(a * b)),
"m2")
LimboConsole.register_command(
func(a: float, b: float) -> void:
LimboConsole.info("a * b: " + str(a * b)),
"m3")
func multiply(a: float, b: float) -> void:
LimboConsole.info("a * b: " + str(a * b))However, the third one doesn't show up.
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working
