From bbcdf88f825d67780706aaf52729f49117cd1a60 Mon Sep 17 00:00:00 2001 From: Utsav Singh Date: Mon, 3 Jul 2023 12:21:06 +0200 Subject: [PATCH] Fix #108960: Replace archived link from custom nodes template Replace archived link with working blender api docs link related to the same content (properties and custom-properties) Pull Request: https://projects.blender.org/blender/blender/pulls/109103 --- scripts/templates_py/custom_nodes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/templates_py/custom_nodes.py b/scripts/templates_py/custom_nodes.py index 73b38bcb27f..d337bebb1f9 100644 --- a/scripts/templates_py/custom_nodes.py +++ b/scripts/templates_py/custom_nodes.py @@ -75,7 +75,7 @@ class MyCustomNode(MyCustomTreeNode, Node): # === Custom Properties === # These work just like custom properties in ID data blocks # Extensive information can be found under - # http://wiki.blender.org/index.php/Doc:2.6/Manual/Extensions/Python/Properties + # https://docs.blender.org/api/current/bpy.props.html my_string_prop: bpy.props.StringProperty() my_float_prop: bpy.props.FloatProperty(default=3.1415926)