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.

Material.SetTextureOffset

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 function SetTextureOffset(propertyName: string, offset: Vector2): void;
public void SetTextureOffset(string propertyName, Vector2 offset);
public def SetTextureOffset(propertyName as string, offset as Vector2) as void

Description

Sets the placement offset of texture propertyName.

Common texture names used by Unity's builtin shaders:
"_MainTex" is the main diffuse texture. This can also be accessed via mainTextureOffset property.
"_BumpMap" is the normal map.
"_Cube" is the reflection cubemap.

See Also: mainTextureOffset property, GetTextureOffset.

	// Scroll main texture based on time

var scrollSpeed : float = 0.5;

function Update () { var offset : float = Time.time * scrollSpeed; renderer.material.SetTextureOffset ("_MainTex", Vector2(offset,0)); }
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour {
    public float scrollSpeed = 0.5F;
    void Update() {
        float offset = Time.time * scrollSpeed;
        renderer.material.SetTextureOffset("_MainTex", new Vector2(offset, 0));
    }
}
import UnityEngine
import System.Collections

public class ExampleClass(MonoBehaviour):

	public scrollSpeed as float = 0.5F

	def Update() as void:
		offset as float = (Time.time * scrollSpeed)
		renderer.material.SetTextureOffset('_MainTex', Vector2(offset, 0))