From 61572a57e9814d15c4ceb0013b7b9908a6a4b1c5 Mon Sep 17 00:00:00 2001 From: Julian Murgia Date: Wed, 26 Jul 2017 13:12:44 +0200 Subject: [PATCH] Corrects usage of 'is' instead of 'extends' for testing node inheritance. --- doc/base/classes.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/base/classes.xml b/doc/base/classes.xml index a2c5f2fd7d8..4b2f3336cd8 100644 --- a/doc/base/classes.xml +++ b/doc/base/classes.xml @@ -14062,7 +14062,7 @@ Add a custom type, which will appear in the list of nodes or resources. An icon can be optionally passed. When given node or resource is selected, the base type will be instanced (ie, "Spatial", "Control", "Resource"), then the script will be loaded and set to this object. - You can use the [method EditorPlugin.handles] to check if your custom object is being edited by checking the script or using 'extends' keyword. + You can use the [method EditorPlugin.handles] to check if your custom object is being edited by checking the script or using 'is' keyword. During run-time, this will be a simple object with a script so this function does not need to be called then.