Legacy Documentation: Version 4.6.2
Language: English
  • C#
  • JS
  • Boo

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Cubemap.format

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Sumbission failed

For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

public var format: TextureFormat;
public TextureFormat format;
public format as TextureFormat

Description

The format of the pixel data in the texture (Read Only).

Use this to determine the format of the texture.

	// Print the format of a given cubemap.
	var c : Cubemap;
	if (c != null)
		Debug.Log(c.format);
	else
		Debug.Log("No cubemap was assigned, please assing one on the inspector.");
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour {
    public Cubemap c;
    void Example() {
        if (c != null)
            Debug.Log(c.format);
        else
            Debug.Log("No cubemap was assigned, please assing one on the inspector.");
    }
}
import UnityEngine
import System.Collections

public class ExampleClass(MonoBehaviour):

	public c as Cubemap

	def Example() as void:
		if c != null:
			Debug.Log(c.format)
		else:
			Debug.Log('No cubemap was assigned, please assing one on the inspector.')