mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-02-13 15:02:37 +08:00
Fix.
This commit is contained in:
parent
1c2b1e02bf
commit
2ebb00f377
@ -38,7 +38,7 @@ class EmptyHunyuanLatentVideo(io.ComfyNode):
|
|||||||
def define_schema(cls):
|
def define_schema(cls):
|
||||||
return io.Schema(
|
return io.Schema(
|
||||||
node_id="EmptyHunyuanLatentVideo",
|
node_id="EmptyHunyuanLatentVideo",
|
||||||
display_name="Empty Hunyuan 1.0 Latent Video",
|
display_name="Empty HunyuanVideo 1.0 Latent",
|
||||||
category="latent/video",
|
category="latent/video",
|
||||||
inputs=[
|
inputs=[
|
||||||
io.Int.Input("width", default=848, min=16, max=nodes.MAX_RESOLUTION, step=16),
|
io.Int.Input("width", default=848, min=16, max=nodes.MAX_RESOLUTION, step=16),
|
||||||
@ -64,6 +64,7 @@ class EmptyHunyuanVideo15Latent(EmptyHunyuanLatentVideo):
|
|||||||
def define_schema(cls):
|
def define_schema(cls):
|
||||||
schema = super().define_schema()
|
schema = super().define_schema()
|
||||||
schema.node_id = "EmptyHunyuanVideo15Latent"
|
schema.node_id = "EmptyHunyuanVideo15Latent"
|
||||||
|
schema.display_name = display_name="Empty HunyuanVideo 1.5 Latent",
|
||||||
return schema
|
return schema
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
@ -80,7 +81,6 @@ class HunyuanVideo15ImageToVideo(io.ComfyNode):
|
|||||||
def define_schema(cls):
|
def define_schema(cls):
|
||||||
return io.Schema(
|
return io.Schema(
|
||||||
node_id="HunyuanVideo15ImageToVideo",
|
node_id="HunyuanVideo15ImageToVideo",
|
||||||
display_name="Empty Hunyuan 1.5 Latent Video",
|
|
||||||
category="conditioning/video_models",
|
category="conditioning/video_models",
|
||||||
inputs=[
|
inputs=[
|
||||||
io.Conditioning.Input("positive"),
|
io.Conditioning.Input("positive"),
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user