Legacy Documentation: Version 2018.2 (Go to current version)
LanguageEnglish
  • C#

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); } }

Did you find this page useful? Please give it a rating: