Class AnimateWithTextRequest
Creates a pixel art animation based on text description and parameters.
Supported image sizes:
- 64x64
Supported features: - Text-guided animation generation
- Inpainting
- Init image
- Forced palette
- Multiple frames
public class AnimateWithTextRequest : PixelLabAnimateRequest
- Inheritance
-
objectRESTRequestBodyAnimateWithTextRequest
- Inherited Members
- Extension Methods
Properties
ActionDescription
Required. Action description
public string ActionDescription { get; set; }
Property Value
- string
Description
Required. Character description
public string Description { get; set; }
Property Value
- string
Direction
public PixelLabTypes.Direction? Direction { get; set; }
Property Value
FrameCount
Optional. Length of full animation (the model will always generate 4 frames)
public int? FrameCount { get; set; }
Property Value
- int?
ImageGuidanceScale
Optional. How closely to follow the reference image Min: 1, Max: 20, Default: 1.4
public float? ImageGuidanceScale { get; set; }
Property Value
- float?
NegativeDescription
Optional. Negative prompt to guide what not to generate
public string NegativeDescription { get; set; }
Property Value
- string
StartFrame
Optional. Starting frame index of the full animation Min: 0, Max: 20, Default: 0
public int? StartFrame { get; set; }
Property Value
- int?
TextGuidanceScale
Optional. How closely to follow the text description Min: 1, Max: 20, Default: 8
public float? TextGuidanceScale { get; set; }
Property Value
- float?
View
public PixelLabTypes.CameraView? View { get; set; }