diff --git a/Adding-new-objects.md b/Adding-new-objects.md index 6c7d1f1..d55c385 100644 --- a/Adding-new-objects.md +++ b/Adding-new-objects.md @@ -19,7 +19,10 @@ So to create a new object, choose one of the two to extend, and then create a cl - `static type() -> string` - Returns the type of the object (should be constant, non translatable). - Examples: "Text", "Function"... -- `static typeMultiple() -> string` +- `static displayType() -> string` + - Returns the (potentially translated) string for the type of this object objects of this type (used in the editor dialog, as well as the creation buttons). + - Examples: "Texts", "Functions"... +- `static displayTypeMultiple() -> string` - Returns the string for multiple objects of this type (used in objects list for a category of objects). - Examples: "Texts", "Functions"... - `static createable() -> boolean`