diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2015-11-21 16:21:12 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2015-12-09 08:39:12 +0100 |
commit | 6cfc3eec9726c02ab8079ff5e8b5d69be2c87ed3 (patch) | |
tree | 04ad12c92929800575a52e731cc63dfccd5ffa8c /demos/2d/shower_of_bullets | |
parent | 7589b2bf605b58fbb0e34dec8ae833708e9b54ea (diff) |
Remove systematic "Init(i)alization here" from _ready()
Diffstat (limited to 'demos/2d/shower_of_bullets')
-rw-r--r-- | demos/2d/shower_of_bullets/bullets.gd | 1 | ||||
-rw-r--r-- | demos/2d/shower_of_bullets/shower.gd | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/demos/2d/shower_of_bullets/bullets.gd b/demos/2d/shower_of_bullets/bullets.gd index b62c796f32..e0eba2682a 100644 --- a/demos/2d/shower_of_bullets/bullets.gd +++ b/demos/2d/shower_of_bullets/bullets.gd @@ -42,7 +42,6 @@ func _process(delta): func _ready(): - # Initialization here shape = Physics2DServer.shape_create(Physics2DServer.SHAPE_CIRCLE) Physics2DServer.shape_set_data(shape, 8) # Radius diff --git a/demos/2d/shower_of_bullets/shower.gd b/demos/2d/shower_of_bullets/shower.gd index 0f87c60bcd..50c1109489 100644 --- a/demos/2d/shower_of_bullets/shower.gd +++ b/demos/2d/shower_of_bullets/shower.gd @@ -22,5 +22,4 @@ func _on_player_body_exit_shape(body_id, body, body_shape, area_shape): func _ready(): - # Initialization here set_process_input(true) |