Tile image in EDC file

This code snippet shows how to create a tiled background using fill option of image part.
images {
   image: "image.png" COMP;
}
   
collections {
   group {
		name: "main";
		parts{
         part { name: "background";
            type: IMAGE;
            description { state: "default" 0;
               align: 0 0;
               rel1.relative: 0 0;
               rel2.relative: 1 1;
               image {
                  normal: "image.png";
                  middle: DEFAULT;
               }
               fill {
              		type: TILE;	
               }
            }
			}
		}   
	}
}

Responses

0 Replies