Only my version Godot 3 beta bad working?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By uvokin33
:warning: Old Version Published before Godot 3 was released.

When I decided transfer my project from Godot 2 to Godot 3 I collided with few problems:
1)not displaying print(“something”) in console
2)i can’t turn to global(autorun) variables
3)when I am doing a mistake in scripts, in console and script editor(default, gdscript) doesn’t showing it.
4)when I turn on synchronize scenes or scripts it isn’t working

:bust_in_silhouette: Reply From: Zylann
  1. printing works for me in beta 1, not sure why it doesn’t for you :confused: Maybe your code isn’t running in the first place? (some functions were renamed, like _fixed_process => _physics_process)

  2. Not sure what you mean, autoload works too. It’s likely your old project config was not loaded because it is incompatible with 3.0.

  3. Again, works in beta 1 if I do a syntax error for example, and runtime errors get displayed too, although you need to focus the editor (the game window doesn’t minimizes).

  4. Works too for scenes, didn’t test scripts though. If you can reproduce this bug on a simple project, feel free to post an issue on Github.

I created a new project and autorun working, but synchronize, errors and print doesn’t working.

autoload options https://imgur.com/a/l8nKz
autoload script Imgur: The magic of the Internet
main script https://imgur.com/a/AIaU8
running project https://imgur.com/a/mNPhI
and try change scene Imgur: The magic of the Internet

uvokin33 | 2017-12-10 10:20

What is printed in the system console?

Zylann | 2017-12-10 16:08

I went into the settings and in the tab network-> debug-> remote host changed from 169.254.200.129 (was by default) to 127.0.0.1 and I started showing errors.

uvokin33 | 2017-12-11 09:27

Aaah yeah I had this too, debugging went broken for me for some time, then I changed debug host to be 127.0.0.1 and it fixed most issues.

Zylann | 2017-12-11 19:14