Here is a little snipet
Open the console, load the RB and type: matTexture
def matTexture()
model = Sketchup.active_model
materials = model.materials
mat = Sketchup.active_model.materials.current
mat_name = mat.display_name
texture = mat.texture
if texture
t_height = texture.height
t_width = texture.width
UI.messagebox( "Material " + mat_name + "\n\nCurrent size:\n" + "Height: " + t_height.to_s + " inches\n" + "Width: " + t_width.to_s + " inches")
else
UI.messagebox("No texture applied to this material",MB_OK)
end
end
Please select a material first
Retrieved values are in INCHES
Hope this helps