语法
- float imageInfo(filePath, attribute)
参数
- filePath - 字符串纹理路径。 有关搜索位置的信息,请参阅资产搜索。
- attribute - 选择器指定纹理维度。
- 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)