@Forks4Swords said:
I'm having the same issue as well. Whenever I go to test, the window pops up, then goes unresponsive. There are no errors in the error tab, but the debug has a line like so !
it does not specify which line is in error
This is my first time using Godot and I'm running it on Windows 8.1 64bit
I know this answer is late, but in case anyone else runs into similar issues:
First, I should mention that it DOES tell you which line caused the error. It is in the "Stack Frames" box at the bottom where it says:
0- res://game.gd:57
In this case, this is telling you that the error is in that file on line 57. And the error is the same one that Krayon gives the fix for above, you forgot to reference the y component of the position. So you need to change line 57:
if (right_pos > 0 and Input.is_action_pressed("right_move_up")): #INCORRECT!
to this:
if(right_pos.y > 0 and Input.is_action_pressed("right_move_up")): #CORRECT!