I found some errors (or maybe just something that needs updating) in the documentation for Godot 3.0 stable on the "your first game" of the step by step section. Is there a simple way to send a report or how do i go about making a pull request? My baboon brain cant figure this out.
If anyone is interested the problem was that the code example provided for the MOB.gd the func ready() is missing a $AnimatedSprite.play(), the enemies would appear static at the beginning of the scene otherwise.
The other problem was in MAIN.gd in the _on_MobTimer_timeout() with the line $MobPath/MobSpawnLocation.set_offset(randi()) there is no set_offset member function, i think the correct code for this was $MobPath/MobSpawnLocation.offset = randi().
Im not even sure if this is the right place to make this kinds of questions, any tips appreciated.