Remove picture id from reference nodes

This commit is contained in:
2026-09-02 13:20:38 +00:00
parent 6684c5f2e0
commit c8ddedbd57
4 changed files with 23 additions and 36 deletions
+1 -18
View File
@@ -1611,13 +1611,6 @@ class DumasCharacterReferenceNode:
return {
"required": {
"image": ("IMAGE", {"tooltip": "Character reference image."}),
"picture_id": (
["1", "2", "3", "4", "5", "6", "7", "8", "9"],
{
"default": "1",
"tooltip": "Authoring picture number for this reference.",
},
),
"character_id": (
"STRING",
{
@@ -1726,7 +1719,6 @@ class DumasCharacterReferenceNode:
def build_reference(
self,
image,
picture_id,
character_id,
name,
alias,
@@ -1747,7 +1739,6 @@ class DumasCharacterReferenceNode:
explicit_id=character_id,
name=name,
aliases=alias,
picture_id=picture_id,
description=description,
wardrobe=wardrobe,
general=general,
@@ -1779,13 +1770,6 @@ class DumasLocationReferenceNode:
return {
"required": {
"image": ("IMAGE", {"tooltip": "Location or environment reference image."}),
"picture_id": (
["1", "2", "3", "4", "5", "6", "7", "8", "9"],
{
"default": "1",
"tooltip": "Authoring picture number for this reference.",
},
),
"location_id": (
"STRING",
{
@@ -1829,7 +1813,7 @@ class DumasLocationReferenceNode:
}
}
def build_reference(self, image, picture_id, location_id, name, alias, description, general):
def build_reference(self, image, location_id, name, alias, description, general):
return (
make_reference(
kind="location",
@@ -1837,7 +1821,6 @@ class DumasLocationReferenceNode:
explicit_id=location_id,
name=name,
aliases=alias,
picture_id=picture_id,
description=description,
general=general,
facts={},