0 votes

i want to get node from Main.scene to script in block.scene

get_tree().get_parent().get_rect().size.x

the block.scene not in the main.scene beacuse block.scene will automatically show up

how to get_tree sprite in other scene ?
here is the screenshot
https://ibb.co/c1xLcgw

enter image description here

Godot version 3.3.2
in Engine by (14 points)

1 Answer

0 votes

This is bad concept design, because your components will be tightly coupled. Instead, you can pass reference to Main node to your block.gd when you instance this node, for example:

# block.gd
var main 

# main.gd
var block = Block.instance()
block.main = self

so instead of get_tree().get_parent() you will simply write main.

Or you can expose it as member of Singleton class (https://docs.godotengine.org/en/stable/getting_started/step_by_step/singletons_autoload.html)

# provider.gd
var main

# main.gd
func _init():
  Provider.main = self

then get_tree().get_parent() can be written as Provider.main.

by (1,650 points)

i see.. thank you for the answer... i'll try it then

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.