Browse Source

Export bullet speed in godot editor

DricomDragon 3 years ago
parent
commit
31cac6895e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      godot/scripts/Launcher.gd

+ 1 - 1
godot/scripts/Launcher.gd

@@ -9,7 +9,7 @@ enum State {
 	WAITING,
 }
 
-const BULLET_SPEED = 500.0
+export var BULLET_SPEED = 500.0
 
 var _ballScene = preload("res://scenes/Ball.tscn")