Texture.width
public int width;
Description 描述
Width of the texture in pixels. (Read Only)
using UnityEngine;
public class Example : MonoBehaviour { // Print texture size to the Console Texture texture; void Start() { print("Size is " + texture.width + " by " + texture.height); } }