Version: 5.3 (switch to 5.4b)
言語English
  • C#
  • JS

スクリプト言語

好きな言語を選択してください。選択した言語でスクリプトコードが表示されます。

Light.range

マニュアルに切り替える
public float range;

説明

ライトの大きさを設定する。

See Also: Light component.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public float duration = 3.0F; public float originalRange; public Light lt; void Start() { lt = GetComponent<Light>(); originalRange = lt.range; } void Update() { float amplitude = Mathf.PingPong(Time.time, duration); amplitude = amplitude / duration * 0.5F + 0.5F; lt.range = originalRange * amplitude; } }