From 1f809cf43fd71cc63c917507f8653c71f96848b9 Mon Sep 17 00:00:00 2001 From: skyace65 Date: Mon, 5 Feb 2018 20:30:40 -0500 Subject: [PATCH] Remove old GDScript functions --- getting_started/step_by_step/scripting_continued.rst | 9 --------- 1 file changed, 9 deletions(-) diff --git a/getting_started/step_by_step/scripting_continued.rst b/getting_started/step_by_step/scripting_continued.rst index 8601a16fe..a591aadf3 100644 --- a/getting_started/step_by_step/scripting_continued.rst +++ b/getting_started/step_by_step/scripting_continued.rst @@ -221,15 +221,6 @@ follows, can be applied to nodes: # This is called every physics frame. pass - func _paused(): - # Called when game is paused. After this call, the node will not receive - # any more process callbacks. - pass - - func _unpaused(): - # Called when game is unpaused. - pass - .. code-tab:: csharp public override void _EnterTree()