版本: Unity 6 (6000.0)
语言英语
  • C#

LineRenderer.textureMode

建议更改

成功!

感谢您帮助我们提高 Unity 文档的质量。虽然我们无法接受所有提交内容,但我们会阅读用户提出的每个建议,并在适当的情况下进行更新。

关闭

提交失败

由于某种原因,您的建议更改无法提交。请<a>稍后再试</a>。感谢您抽出时间帮助我们提高 Unity 文档的质量。

关闭

取消

切换到手册
public LineTextureMode textureMode;

描述

选择线条纹理的 U 坐标是平铺还是拉伸。

拉伸将纹理映射到线条上,不重复。平铺将纹理映射到线条上,每世界单位重复一次。要更改重复率,请使用 LineRenderer.textureScaleMaterial.SetTextureScale

using UnityEngine;
using System.Collections;
using UnityEditor;

[RequireComponent(typeof(LineRenderer))] public class ExampleClass : MonoBehaviour { public LineTextureMode textureMode = LineTextureMode.Stretch; public float textureScale = 1.0f; private LineRenderer lr;

void Start() { lr = GetComponent<LineRenderer>(); lr.material = new Material(Shader.Find("Sprites/Default"));

// Set some positions Vector3[] positions = new Vector3[3]; positions[0] = new Vector3(-2.0f, -1.0f, 0.0f); positions[1] = new Vector3(0.0f, -0.5f, 0.0f); positions[2] = new Vector3(2.0f, -1.0f, 0.0f); lr.positionCount = positions.Length; lr.SetPositions(positions); }

void Update() { lr.textureMode = textureMode; lr.textureScale = new Vector2(textureScale, 1.0f); }

void OnGUI() { textureMode = GUI.Toggle(new Rect(25, 25, 200, 30), textureMode == LineTextureMode.Tile, "Tiled") ? LineTextureMode.Tile : LineTextureMode.Stretch;

GUI.Label(new Rect(25, 60, 200, 30), "Texture Scale"); textureScale = GUI.HorizontalSlider(new Rect(125, 65, 200, 30), textureScale, 0.1f, 4.0f); } }