From 2042b5eb2235e91b1da02e185241c2385c9dda3a Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Thu, 4 Jun 2020 09:51:22 +0200 Subject: [PATCH] Remove `extends` snippet which no longer works since Godot 3.0 - Remove `set_process(true)`/`set_process_input(true)` snippets since these are enabled automatically in Godot 3.0 onwards. --- configurations/snippets.json | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/configurations/snippets.json b/configurations/snippets.json index 3858cda..37f74d9 100644 --- a/configurations/snippets.json +++ b/configurations/snippets.json @@ -160,13 +160,6 @@ ] }, - "Is instance of a class": { - "prefix": "extends", - "body": [ - "${1:instance} extends ${2:class_name}" - ] - }, - "Is instance of a class or script": { "prefix": "is", "body": [ @@ -197,20 +190,7 @@ "" ] }, - - "Enable process function": { - "prefix": "process", - "body": [ - "set_process(true)" - ] - }, - "Enable process input function": { - "prefix": "processin", - "body": [ - "set_process_input(true)" - ] - }, "pass statement": { "prefix": "pass", "body": [