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

TrailRenderer.numCornerVertices

建议修改

成功!

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

关闭

提交失败

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

关闭

取消

切换到手册
public int numCornerVertices;

描述

将其设置为大于 0 的值,以在轨迹的每个段之间获得圆角。

该值控制在每个连接处添加多少个顶点,较高的值将产生更平滑的结果。

using UnityEngine;
using System.Collections;

[RequireComponent(typeof(TrailRenderer))] public class ExampleClass : MonoBehaviour { public int numCapVertices = 0; public int numCornerVertices = 0; private TrailRenderer tr;

void Start() { tr = GetComponent<TrailRenderer>(); tr.material = new Material(Shader.Find("Sprites/Default")); tr.minVertexDistance = 0.5f; }

void Update() { tr.numCapVertices = numCapVertices; tr.numCornerVertices = numCornerVertices; tr.transform.position = new Vector3(Mathf.Sin(Time.time * 1.51f) * 7.0f, Mathf.Cos(Time.time * 1.27f) * 4.0f, 0.0f); }

void OnGUI() { GUI.Label(new Rect(25, 20, 200, 30), "Num Cap Vertices"); numCapVertices = (int)GUI.HorizontalSlider(new Rect(165, 25, 200, 30), (float)numCapVertices, 0.0f, 20.0f);

GUI.Label(new Rect(25, 60, 200, 30), "Num Corner Vertices"); numCornerVertices = (int)GUI.HorizontalSlider(new Rect(165, 65, 200, 30), (float)numCornerVertices, 0.0f, 20.0f); } }