UDIMTiles(bpy_struct)

base class — bpy_struct

class bpy.types.UDIMTiles(bpy_struct)

Collection of UDIM tiles

active

Active Image Tile

Type:UDIMTile, (never None)
active_index

Active index in tiles array

Type:int in [0, inf], default 0
new(tile_number, label="")

Add a tile to the image

Parameters:
  • tile_number (int in [1, inf]) – Number of the newly created tile
  • label (string, (optional, never None)) – Optional label for the tile
Returns:

Newly created image tile

Return type:

UDIMTile

get(tile_number)

Get a tile based on its tile number

Parameters:tile_number (int in [0, inf]) – Number of the tile
Returns:The tile
Return type:UDIMTile
remove(tile)

Remove an image tile

Parameters:tile (UDIMTile, (never None)) – Image tile to remove
classmethod bl_rna_get_subclass(id, default=None)
Parameters:id (string) – The RNA type identifier.
Returns:The RNA type or default when not found.
Return type:bpy.types.Struct subclass
classmethod bl_rna_get_subclass_py(id, default=None)
Parameters:id (string) – The RNA type identifier.
Returns:The class or default when not found.
Return type:type

Inherited Properties

Inherited Functions

References