Invalid Call. Nonexistant function 'disabled' in base 'button'

Godot Version

4.3

Question

Invalid Call. Nonexistant function ‘disabled’ in base ‘button’

This just flat out makes no sense :gdsweat:

There is a ‘disabled’ function with buttons. but what do i know ¯_(ツ)_/¯

disabled is a property, so you cannot use it with parenthesis.

You probably have:

$Button.disabled()

Maybe you mean to use this to set the button to disabled

$Button.disabled = true
2 Likes

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.