Legacy Documentation: Version 4.6(go to latest)
Language: English
  • C#
  • JS
  • Boo

Script language

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

Material.mainTextureOffset

public var mainTextureOffset: Vector2;

Description

The texture offset of the main texture.

The same as using GetTextureOffset or SetTextureOffset with "_MainTex" name.

See Also: SetTextureOffset, GetTextureOffset.

	// Scroll main texture based on time

var scrollSpeed : float = 0.5;

function Update() { var offset : float = Time.time * scrollSpeed; renderer.material.mainTextureOffset = Vector2 (offset, 0); }