unity Sprite获取width
时间: 2023-12-10 17:42:58 浏览: 224
unity 截图功能,输出Sprite和base64
你可以使用 Sprite 的 bounds 属性获取 Sprite 的宽度。具体方法如下:
```csharp
Sprite sprite = // 获取 Sprite 对象
float width = sprite.bounds.size.x;
```
其中,bounds.size.x 表示 Sprite 在 X 轴上的大小,即宽度。
阅读全文