Version: 2022.3
public float shadowBias ;

描述

应用阴影偏差以防止自我阴影瑕疵。指定的值是每一段的线宽比例。

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { private LineRenderer lr;

void Start() { lr = GetComponent<LineRenderer>(); lr.material = new Material(Shader.Find("Standard")); lr.castShadows = true; lr.receiveShadows = true; lr.shadowBias = 0.3f;

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