CoDriven Advanced UI documentation

Go back

CmImage

Description

CmImage is a control based on Unity UI Toolkit's VisualElement that displays images. It provides flexible image display capabilities with support for different scale modes. CmImage allows you to display images with various scaling and positioning options, making it suitable for UI elements like icons, thumbnails, and decorative elements.

Creating a CmImage

You can create a CmImage using:

// With screen and events handler parameters
CmImage image = new CmImage(GetScreen(), cmUIEventsHandler: GetUIEventsHandler());

CmImage Control Built-In Methods

    // returns Unity VisualElement that represents the Image
    public override VisualElement GetVisualElement()
    {
        return _image;
    }

Scale Modes

CmImage supports various scale modes through the CmImageScaleMode enum:

public enum CmImageScaleMode
{
    ScaleToFit,      // Scales image to fit within the container while maintaining aspect ratio
    ScaleAndCrop,    // Scales image to fill container, cropping if necessary
    Stretch,         // Stretches the image to fill the container, ignoring aspect ratio
    Original,        // Displays the image at its original size
    StretchToFill    // Similar to Stretch but ensures full coverage
}

Style CmImage Elements

CmImage.GetModifiersBuilder() will return modifiers that you can use to style CmImage.

public class CmImageModifiers : ICmControlModifiers
{
    // Apply Image and background styling to the image container
    public CmImageModifiers Image(CmModifierImageAndBackground modifier)
}

So you can style CmImage using the modifiers pattern:

CmImage image = new CmImage();
var modifiers = CmImage.GetModifiersBuilder();

// Apply styling
modifiers.Image(new CmModifierImageAndBackground(CmSelector.DefaultState)
    .AnimDuration(500)
    .FillMaxWidth()
    .FillMaxHeight()
    .____NextSelector(CmSelector.Hover)
    .Scale(1.3f)
);