This site is currently in read-only mode during migration to a new platform.
You cannot post questions, answers or comments, as they would be lost during the migration otherwise.
0 votes

cannot connect to button's signals, cause error "Object NULL" - Why?
Screen from GD Engine

extends LineEdit

onready var But = $Camera2D/Button

func _ready():
    var m = self.text
    var But = $Camera2D/Button
    print(But) #[Object:null]
    But.connect("button_down", self, "_g")

func _g(text):
    print(self.text)
Godot version 3.5 Stable
in Engine by (12 points)

1 Answer

0 votes

It's because $Camera2D/Button doesn't exist.

Start typing "$Cam".., and then see what the auto-complete brings up.

by (1,055 points)
Welcome to Godot Engine Q&A, where you can ask questions and receive answers from other members of the community.

Please make sure to read Frequently asked questions and How to use this Q&A? before posting your first questions.
Social login is currently unavailable. If you've previously logged in with a Facebook or GitHub account, use the I forgot my password link in the login box to set a password for your account. If you still can't access your account, send an email to [email protected] with your username.