Remove pixverse_template from PixVerse Transition Video node (#155)

This commit is contained in:
Jedrzej Kosinski 2025-05-05 22:57:59 -05:00 committed by GitHub
parent 79f098187f
commit 98bfa52ccf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -404,12 +404,6 @@ class PixverseTransitionVideoNode(ComfyNodeABC):
"tooltip": "An optional text description of undesired elements on an image.", "tooltip": "An optional text description of undesired elements on an image.",
}, },
), ),
"pixverse_template": (
PixverseIO.TEMPLATE,
{
"tooltip": "An optional template to influence style of generation, created by the PixVerse Template node."
}
)
}, },
"hidden": { "hidden": {
"auth_token": "AUTH_TOKEN_COMFY_ORG", "auth_token": "AUTH_TOKEN_COMFY_ORG",
@ -426,7 +420,6 @@ class PixverseTransitionVideoNode(ComfyNodeABC):
motion_mode: str, motion_mode: str,
seed, seed,
negative_prompt: str=None, negative_prompt: str=None,
pixverse_template: int=None,
auth_token=None, auth_token=None,
**kwargs, **kwargs,
): ):
@ -457,7 +450,6 @@ class PixverseTransitionVideoNode(ComfyNodeABC):
duration=duration_seconds, duration=duration_seconds,
motion_mode=motion_mode, motion_mode=motion_mode,
negative_prompt=negative_prompt if negative_prompt else None, negative_prompt=negative_prompt if negative_prompt else None,
template_id=pixverse_template,
seed=seed, seed=seed,
), ),
auth_token=auth_token, auth_token=auth_token,