GetTextureScale
Gets the placement scale of texture propertyName.
Read time 1 minuteLast updated 4 days ago
Definition
- Type: Method
- Namespace: UnityEngine
- Assembly: UnityEngine.CoreModule
GetTextureScale(string)
Gets the placement scale of texture .
propertyNamepublic Vector2 GetTextureScale(string name)
Parameters
The name of the property.
Returns
Type | Description |
|---|---|
| Vector2 |
Remarks
Common texture names used by Unity's builtin shaders:
"_MainTex""_BumpMap""_Cube"Additional Resources: Material.mainTextureScale property, Material.SetTextureScale.
GetTextureScale(int)
Gets the placement scale of texture .
propertyNamepublic Vector2 GetTextureScale(int nameID)
Parameters
The name ID of the property retrieved by Shader.PropertyToID.
Returns
Type | Description |
|---|---|
| Vector2 |
Remarks
Common texture names used by Unity's builtin shaders:
"_MainTex""_BumpMap""_Cube"Additional Resources: Material.mainTextureScale property, Material.SetTextureScale.