var shadowBias : float
Description
Shadow mapping bias
See Also: shadows property.
using UnityEngine;
using System.Collections;
public class example :
MonoBehaviour {
void Awake() {
light.shadowBias = 0.2F;
}
}
import UnityEngine
import System.Collections
class example(
MonoBehaviour):
def
Awake():
light.shadowBias = 0.2F