imageInfo 函数

语法

  • float imageInfo(filePath, attribute)

参数

  1. filePathstring
    纹理路径。 有关搜索位置的信息,请参阅资产搜索
  2. attribute - selector
    指定纹理维度。
    • sx - 宽度
    • sy - 高度

返回

返回图像分辨率。

描述

imageInfo 函数用于返回在 filePath 中定义的纹理图像分辨率,具体取决于指定的 attribute 选择器。

示例


imageInfo(myTexture.jpg, sy)
# result = 1024 (height of the texture in pixels)

imageInfo(myTexture.jpg, sx)
# result = 512 (width of the texture in pixels)